mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-07 11:45:36 -05:00
643 lines
19 KiB
OCaml
643 lines
19 KiB
OCaml
type input_stream = (bytes -> int -> int -> int) * (unit -> unit)
|
|
(** An input stream is a function to read bytes into a buffer,
|
|
and a function to close *)
|
|
|
|
type output_stream = (string -> int -> int -> unit) * (unit -> unit) * (unit -> unit)
|
|
(** An output stream is a function to output bytes, a function to [flush],
|
|
and a function to close. *)
|
|
|
|
module Buf_ = struct
|
|
type t = {
|
|
mutable bytes: bytes;
|
|
mutable i: int;
|
|
}
|
|
|
|
let create ?(size=4_096) () : t =
|
|
{ bytes=Bytes.make size ' '; i=0 }
|
|
|
|
let size self = self.i
|
|
let clear self : unit =
|
|
if Bytes.length self.bytes > 4_096 * 1_024 then (
|
|
self.bytes <- Bytes.make 4096 ' '; (* free big buffer *)
|
|
);
|
|
self.i <- 0
|
|
|
|
let resize self new_size : unit =
|
|
let new_buf = Bytes.make new_size ' ' in
|
|
Bytes.blit self.bytes 0 new_buf 0 self.i;
|
|
self.bytes <- new_buf
|
|
|
|
let ensure_size self n : unit =
|
|
if Bytes.length self.bytes < n then (
|
|
resize self n;
|
|
)
|
|
|
|
let add_string (self:t) s i len : unit =
|
|
if Bytes.length self.bytes < self.i + len then (
|
|
resize self (self.i + self.i / 8 + len + 10);
|
|
);
|
|
Bytes.blit_string s i self.bytes self.i len;
|
|
self.i <- self.i + len
|
|
|
|
let read_once (self:t) ~read : int =
|
|
(* resize if needed *)
|
|
if self.i = Bytes.length self.bytes then (
|
|
resize self (self.i + self.i / 8 + 10);
|
|
);
|
|
let n_rd = read self.bytes self.i (Bytes.length self.bytes - self.i) in
|
|
self.i <- self.i + n_rd;
|
|
n_rd
|
|
|
|
(* remove the first [i] bytes *)
|
|
let remove_prefix (self:t) (i:int) : unit =
|
|
if i > self.i then invalid_arg "Buf_.contents_slice";
|
|
if i<self.i then (
|
|
Bytes.blit self.bytes i self.bytes 0 (self.i - i);
|
|
);
|
|
self.i <- self.i - i
|
|
|
|
let contents (self:t) : string = Bytes.sub_string self.bytes 0 self.i
|
|
|
|
let contents_slice (self:t) i len : string =
|
|
if i+len > self.i then invalid_arg "Buf_.contents_slice";
|
|
Bytes.sub_string self.bytes i len
|
|
|
|
let contents_and_clear (self:t) : string =
|
|
let x = contents self in
|
|
clear self;
|
|
x
|
|
end
|
|
|
|
module Input_stream = struct
|
|
type t = input_stream
|
|
|
|
let close (_,cl : t) = cl ()
|
|
let of_chan ic : t = input ic, fun () -> close_in ic
|
|
let of_chan_close_noerr ic : t = input ic, fun () -> close_in_noerr ic
|
|
|
|
let of_buf_ ?(i=0) ?len ~get_len ~blit s : t =
|
|
let off = ref i in
|
|
let s_len = match len with
|
|
| Some n -> min n (get_len s-i)
|
|
| None -> get_len s-i
|
|
in
|
|
let read buf i len =
|
|
let n = min len (s_len - !off) in
|
|
if n > 0 then (
|
|
blit s !off buf i n;
|
|
off := !off + n;
|
|
);
|
|
n
|
|
in
|
|
read, (fun () -> ())
|
|
|
|
let of_string ?i ?len s : t =
|
|
of_buf_ ?i ?len ~get_len:String.length ~blit:Bytes.blit_string s
|
|
|
|
let of_bytes ?i ?len s : t =
|
|
of_buf_ ?i ?len ~get_len:Bytes.length ~blit:Bytes.blit s
|
|
|
|
let with_file file f =
|
|
let ic = open_in file in
|
|
try
|
|
let x = f (of_chan_close_noerr ic) in
|
|
close_in ic;
|
|
x
|
|
with e ->
|
|
close_in_noerr ic;
|
|
raise e
|
|
|
|
let read_all ?(buf=Buf_.create()) (self:t) : string =
|
|
let (read, _) = self in
|
|
let continue = ref true in
|
|
while !continue do
|
|
let n_rd = Buf_.read_once buf ~read in
|
|
if n_rd = 0 then (
|
|
continue := false
|
|
)
|
|
done;
|
|
Buf_.contents_and_clear buf
|
|
|
|
let read_exactly ~too_short ?buf (self:t) (n:int) : unit =
|
|
let buf = match buf with
|
|
| Some buf ->
|
|
Buf_.ensure_size buf n;
|
|
buf
|
|
| None -> Buf_.create ~size:n ()
|
|
in
|
|
let i = ref 0 in
|
|
while !i < n do
|
|
let is_read, _ = self in
|
|
let n_read = is_read buf.bytes !i (n- !i) in
|
|
if n_read=0 then too_short();
|
|
i := !i + n_read
|
|
done
|
|
|
|
let read_line ?(buf=Buf_.create()) (self:t) : string =
|
|
let rec read_chunk acc =
|
|
Buf_.clear buf;
|
|
let is_read, _ = self in
|
|
let _n = Buf_.read_once buf ~read:is_read in
|
|
match Bytes.index buf.Buf_.bytes '\n' with
|
|
| i ->
|
|
let s = Buf_.contents_slice buf 0 i in
|
|
Buf_.remove_prefix buf (i+1);
|
|
s :: acc
|
|
| exception Not_found ->
|
|
read_chunk (Buf_.contents_and_clear buf :: acc)
|
|
in
|
|
match read_chunk [] with
|
|
| [] -> ""
|
|
| [s] -> s
|
|
| [s1;s2] -> s1^s2
|
|
| l -> String.concat "" l
|
|
|
|
end
|
|
|
|
module Output_stream = struct
|
|
type t = output_stream
|
|
|
|
let of_chan oc : t =
|
|
(output_substring oc, (fun () -> flush oc), (fun () -> close_out oc))
|
|
|
|
let of_chan_close_noerr oc : t =
|
|
(output_substring oc, (fun () -> flush oc), (fun () -> close_out_noerr oc))
|
|
|
|
let of_buf (buf:Buf_.t) : t =
|
|
let wr b i len =
|
|
Buf_.add_string buf b i len
|
|
in
|
|
(wr, (fun()->()), (fun()->()))
|
|
|
|
let with_file file f =
|
|
let oc = open_out file in
|
|
try
|
|
let x = f (of_chan_close_noerr oc) in
|
|
close_out oc;
|
|
x
|
|
with e ->
|
|
close_out_noerr oc;
|
|
raise e
|
|
|
|
let write (self:t) s =
|
|
let wr, _, _ = self in
|
|
wr s 0 (String.length s)
|
|
let flush self : unit = let _, fl, _ = self in fl()
|
|
let close self : unit = let _, _, cl = self in cl()
|
|
end
|
|
|
|
let pipe ?(buf=Buf_.create()) (is:input_stream) (os:output_stream) : unit =
|
|
let continue = ref true in
|
|
while !continue do
|
|
Buf_.clear buf;
|
|
let rd, _ = is in
|
|
let n = Buf_.read_once buf ~read:rd in
|
|
if n=0 then (
|
|
continue := false
|
|
) else (
|
|
let wr, _, _ = os in
|
|
wr (Bytes.unsafe_to_string buf.bytes) 0 n
|
|
)
|
|
done;
|
|
Output_stream.flush os;
|
|
Input_stream.close is;
|
|
Output_stream.close os;
|
|
()
|
|
|
|
|
|
exception Bad_req of int * string
|
|
let bad_reqf c fmt = Printf.ksprintf (fun s ->raise (Bad_req (c,s))) fmt
|
|
|
|
let _debug_on = ref (
|
|
match String.trim @@ Sys.getenv "HTTP_DBG" with
|
|
| "" -> false | _ -> true | exception _ -> false
|
|
)
|
|
let _enable_debug b = _debug_on := b
|
|
let _debug k =
|
|
if !_debug_on then (
|
|
k (fun fmt->
|
|
Printf.fprintf stdout "[thread %d]: " Thread.(id @@ self());
|
|
Printf.kfprintf (fun oc -> Printf.fprintf oc "\n%!") stdout fmt)
|
|
)
|
|
|
|
module Response_code = struct
|
|
type t = int
|
|
|
|
let ok = 200
|
|
let not_found = 404
|
|
let descr = function
|
|
| 100 -> "Continue"
|
|
| 200 -> "OK"
|
|
| 201 -> "Created"
|
|
| 202 -> "Accepted"
|
|
| 204 -> "No content"
|
|
| 300 -> "Multiple choices"
|
|
| 301 -> "Moved permanently"
|
|
| 302 -> "Found"
|
|
| 400 -> "Bad request"
|
|
| 403 -> "Forbidden"
|
|
| 404 -> "Not found"
|
|
| 405 -> "Method not allowed"
|
|
| 408 -> "Request timeout"
|
|
| 409 -> "Conflict"
|
|
| 410 -> "Gone"
|
|
| 411 -> "Length required"
|
|
| 413 -> "Payload too large"
|
|
| 417 -> "Expectation failed"
|
|
| 500 -> "Internal server error"
|
|
| 501 -> "Not implemented"
|
|
| 503 -> "Service unavailable"
|
|
| n -> "Unknown response code " ^ string_of_int n (* TODO *)
|
|
end
|
|
|
|
type 'a resp_result = ('a, Response_code.t * string) result
|
|
let unwrap_resp_result = function
|
|
| Ok x -> x
|
|
| Error (c,s) -> raise (Bad_req (c,s))
|
|
|
|
module Meth = struct
|
|
type t = [
|
|
| `GET
|
|
| `PUT
|
|
| `POST
|
|
| `HEAD
|
|
| `DELETE
|
|
]
|
|
|
|
let to_string = function
|
|
| `GET -> "GET"
|
|
| `PUT -> "PUT"
|
|
| `HEAD -> "HEAD"
|
|
| `POST -> "POST"
|
|
| `DELETE -> "DELETE"
|
|
let pp out s = Format.pp_print_string out (to_string s)
|
|
|
|
let of_string = function
|
|
| "GET" -> `GET
|
|
| "PUT" -> `PUT
|
|
| "POST" -> `POST
|
|
| "HEAD" -> `HEAD
|
|
| "DELETE" -> `DELETE
|
|
| s -> bad_reqf 400 "unknown method %S" s
|
|
end
|
|
|
|
module Headers = struct
|
|
type t = (string * string) list
|
|
let contains = List.mem_assoc
|
|
let get x h = try Some (List.assoc x h) with Not_found -> None
|
|
let set x y h = (x,y) :: List.filter (fun (k,_) -> k<>x) h
|
|
let pp out l =
|
|
let pp_pair out (k,v) = Format.fprintf out "@[<h>%s: %s@]" k v in
|
|
Format.fprintf out "@[<v>%a@]" (Format.pp_print_list pp_pair) l
|
|
|
|
let parse_ ~buf (is:input_stream) : t =
|
|
let rec loop acc =
|
|
let line = Input_stream.read_line ~buf is in
|
|
if line = "\r" then (
|
|
List.rev acc
|
|
) else (
|
|
let k,v =
|
|
try Scanf.sscanf line "%s@: %s@\r" (fun k v->k,v)
|
|
with _ -> bad_reqf 400 "invalid header line: %S" line
|
|
in
|
|
loop ((k,v)::acc)
|
|
)
|
|
in
|
|
loop []
|
|
end
|
|
|
|
module Request = struct
|
|
type 'body t = {
|
|
meth: Meth.t;
|
|
headers: Headers.t;
|
|
path: string;
|
|
body: 'body;
|
|
}
|
|
|
|
let headers self = self.headers
|
|
let meth self = self.meth
|
|
let path self = self.path
|
|
let body self = self.body
|
|
|
|
let get_header self h = Headers.get h self.headers
|
|
let get_header_int self h = match get_header self h with
|
|
| Some x -> (try Some (int_of_string x) with _ -> None)
|
|
| None -> None
|
|
|
|
let pp out self : unit =
|
|
Format.fprintf out "{@[meth=%s;@ headers=%a;@ path=%S;@ body=%S@]}"
|
|
(Meth.to_string self.meth) Headers.pp self.headers
|
|
self.path self.body
|
|
|
|
let read_body ~buf (is:input_stream) (n:int) : string =
|
|
_debug (fun k->k "read body of size %d" n);
|
|
Input_stream.read_exactly ~buf is n
|
|
~too_short:(fun () -> bad_reqf 400 "body is too short");
|
|
Buf_.contents_and_clear buf
|
|
|
|
let read_body_chunked ~buf:buf_line ~size:max_size (is:input_stream) : string =
|
|
_debug (fun k->k "read body with chunked encoding (max-size: %d)" max_size);
|
|
let buf_res = Buf_.create() in (* store the accumulated chunks *)
|
|
let rec read_chunks () =
|
|
Buf_.clear buf_line;
|
|
let line = Input_stream.read_line ~buf:buf_line is in
|
|
(* parse chunk length, ignore extensions *)
|
|
let chunk_size =
|
|
if String.trim line = "" then 0
|
|
else
|
|
try Scanf.sscanf line "%x %s@\r" (fun n _ext -> n)
|
|
with _ -> bad_reqf 400 "cannot read chunk size from line %S" line
|
|
in
|
|
_debug (fun k->k "chunk size: %d" chunk_size);
|
|
if chunk_size = 0 then (
|
|
Buf_.contents buf_res (* done *)
|
|
) else (
|
|
let new_size = chunk_size + Buf_.size buf_res in
|
|
(* is the body bigger than expected? *)
|
|
if max_size>0 && new_size > max_size then (
|
|
bad_reqf 413
|
|
"body size was supposed to be %d, but at least %d bytes received"
|
|
max_size new_size
|
|
);
|
|
Input_stream.read_exactly
|
|
~too_short:(fun () -> bad_reqf 400 "chunk is too short")
|
|
is ~buf:buf_res chunk_size;
|
|
_debug (fun k->k "read a chunk of size %d" chunk_size);
|
|
read_chunks()
|
|
)
|
|
in
|
|
read_chunks()
|
|
|
|
(* parse request, but not body (yet) *)
|
|
let parse_req_start ~buf (is:input_stream) : unit t option resp_result =
|
|
try
|
|
let line = Input_stream.read_line ~buf is in
|
|
let meth, path =
|
|
try Scanf.sscanf line "%s %s HTTP/1.1\r" (fun x y->x,y)
|
|
with _ -> raise (Bad_req (400, "Invalid request line"))
|
|
in
|
|
let meth = Meth.of_string meth in
|
|
let headers = Headers.parse_ ~buf is in
|
|
_debug (fun k->k "got meth: %s, path %S" (Meth.to_string meth) path);
|
|
Ok (Some {meth; path; headers; body=()})
|
|
with
|
|
| End_of_file | Sys_error _ -> Ok None
|
|
| Bad_req (c,s) -> Error (c,s)
|
|
| e ->
|
|
Error (400, Printexc.to_string e)
|
|
|
|
(* parse body, given the headers *)
|
|
let parse_body_ ~buf (req:input_stream t) : string t resp_result =
|
|
try
|
|
let n =
|
|
match List.assoc "Content-Length" req.headers |> int_of_string with
|
|
| n -> n (* body of fixed size *)
|
|
| exception Not_found -> 0
|
|
| exception _ -> bad_reqf 400 "invalid content-length"
|
|
in
|
|
let body =
|
|
match List.assoc "Transfer-Encoding" req.headers |> String.trim with
|
|
| "chunked" -> read_body_chunked ~buf ~size:n req.body (* body sent by chunks *)
|
|
| s -> bad_reqf 500 "cannot handle transfer encoding: %s" s
|
|
| exception Not_found ->
|
|
read_body ~buf req.body n
|
|
in
|
|
Ok {req with body}
|
|
with
|
|
| End_of_file -> Error (400, "unexpected end of file")
|
|
| Bad_req (c,s) -> Error (c,s)
|
|
| e ->
|
|
Error (400, Printexc.to_string e)
|
|
|
|
let read_body_full ?buf (self:input_stream t) : string t =
|
|
try
|
|
let body = Input_stream.read_all ?buf self.body in
|
|
{ self with body }
|
|
with
|
|
| Bad_req _ as e -> raise e
|
|
| e -> bad_reqf 500 "failed to read body: %s" (Printexc.to_string e)
|
|
end
|
|
|
|
module Response = struct
|
|
type body = [`String of string | `Stream of input_stream]
|
|
type t = {
|
|
code: Response_code.t;
|
|
headers: Headers.t;
|
|
body: body;
|
|
}
|
|
|
|
(* TODO: if query had ["Accept-Encoding", "chunked"], we cna reply with chunks,
|
|
if [body] was a stream|string instead of just a string *)
|
|
|
|
let make_raw ?(headers=[]) ~code body : t =
|
|
(* add content length to response *)
|
|
let headers =
|
|
Headers.set "Content-Length" (string_of_int (String.length body)) headers
|
|
in
|
|
{ code; headers; body=`String body; }
|
|
|
|
let make_raw_stream ?(headers=[]) ~code body : t =
|
|
(* add content length to response *)
|
|
let headers = Headers.set "Transfer-Encoding" "chunked" headers in
|
|
{ code; headers; body=`Stream body; }
|
|
|
|
let make_string ?headers r = match r with
|
|
| Ok body -> make_raw ?headers ~code:200 body
|
|
| Error (code,msg) -> make_raw ?headers ~code msg
|
|
|
|
let make_stream ?headers r = match r with
|
|
| Ok body -> make_raw_stream ?headers ~code:200 body
|
|
| Error (code,msg) -> make_raw ?headers ~code msg
|
|
|
|
let make ?headers r : t = match r with
|
|
| Ok (`String body) -> make_raw ?headers ~code:200 body
|
|
| Ok (`Stream body) -> make_raw_stream ?headers ~code:200 body
|
|
| Error (code,msg) -> make_raw ?headers ~code msg
|
|
|
|
let fail ?headers ~code fmt =
|
|
Printf.ksprintf (fun msg -> make_raw ?headers ~code msg) fmt
|
|
let fail_raise ~code fmt =
|
|
Printf.ksprintf (fun msg -> raise (Bad_req (code,msg))) fmt
|
|
|
|
let pp out self : unit =
|
|
let pp_body out = function
|
|
| `String s -> Format.fprintf out "%S" s
|
|
| `Stream _ -> Format.pp_print_string out "<stream>"
|
|
in
|
|
Format.fprintf out "{@[code=%d;@ headers=%a;@ body=%a@]}"
|
|
self.code Headers.pp self.headers pp_body self.body
|
|
|
|
(* print a stream as a series of chunks *)
|
|
let output_stream_ (oc:out_channel) (str:input_stream) : unit =
|
|
let buf = Buf_.create ~size:4096 () in
|
|
let continue = ref true in
|
|
while !continue do
|
|
Buf_.clear buf;
|
|
(* next chunk *)
|
|
let read, _ = str in
|
|
let n = Buf_.read_once buf ~read in
|
|
_debug (fun k->k "send chunk of size %d" n);
|
|
Printf.fprintf oc "%x\r\n" n;
|
|
if n = 0 then (
|
|
continue := false;
|
|
) else (
|
|
output oc buf.bytes 0 n;
|
|
);
|
|
output_string oc "\r\n";
|
|
done;
|
|
()
|
|
|
|
let output_ (oc:out_channel) (self:t) : unit =
|
|
Printf.fprintf oc "HTTP/1.1 %d %s\r\n" self.code (Response_code.descr self.code);
|
|
List.iter (fun (k,v) -> Printf.fprintf oc "%s: %s\r\n" k v) self.headers;
|
|
Printf.fprintf oc "\r\n";
|
|
begin match self.body with
|
|
| `String "" -> ()
|
|
| `String s -> output_string oc s;
|
|
| `Stream str -> output_stream_ oc str;
|
|
end;
|
|
flush oc
|
|
end
|
|
|
|
type cb_path_handler = string Request.t -> Response.t
|
|
|
|
type t = {
|
|
addr: string;
|
|
port: int;
|
|
new_thread: (unit -> unit) -> unit;
|
|
masksigpipe: bool;
|
|
mutable handler: (string Request.t -> Response.t);
|
|
mutable path_handlers : (unit Request.t -> cb_path_handler resp_result option) list;
|
|
mutable cb_decode_req: (input_stream Request.t -> input_stream Request.t option) list;
|
|
mutable cb_encode_resp: (string Request.t -> Response.t -> Response.t option) list;
|
|
mutable running: bool;
|
|
}
|
|
|
|
let addr self = self.addr
|
|
let port self = self.port
|
|
|
|
let add_decode_request_cb self f = self.cb_decode_req <- f :: self.cb_decode_req
|
|
let add_encode_response_cb self f = self.cb_encode_resp <- f :: self.cb_encode_resp
|
|
let set_top_handler self f = self.handler <- f
|
|
|
|
let add_path_handler
|
|
?(accept=fun _req -> Ok ())
|
|
?meth self fmt f =
|
|
let ph req: cb_path_handler resp_result option =
|
|
match meth with
|
|
| Some m when m <> req.Request.meth -> None (* ignore *)
|
|
| _ ->
|
|
begin match Scanf.sscanf req.Request.path fmt f with
|
|
| handler ->
|
|
(* we have a handler, do we accept the request based on its headers? *)
|
|
begin match accept req with
|
|
| Ok () -> Some (Ok handler)
|
|
| Error _ as e -> Some e
|
|
end
|
|
| exception _ ->
|
|
None (* path didn't match *)
|
|
end
|
|
in
|
|
self.path_handlers <- ph :: self.path_handlers
|
|
|
|
let create
|
|
?(masksigpipe=true)
|
|
?(new_thread=(fun f -> ignore (Thread.create f () : Thread.t)))
|
|
?(addr="127.0.0.1") ?(port=8080) () : t =
|
|
let handler _req = Response.fail ~code:404 "no top handler" in
|
|
{ new_thread; addr; port; masksigpipe; handler; running= true;
|
|
path_handlers=[];
|
|
cb_encode_resp=[]; cb_decode_req=[];
|
|
}
|
|
|
|
let stop s = s.running <- false
|
|
|
|
let find_map f l =
|
|
let rec aux f = function
|
|
| [] -> None
|
|
| x::l' ->
|
|
match f x with
|
|
| Some _ as res -> res
|
|
| None -> aux f l'
|
|
in aux f l
|
|
|
|
let handle_client_ (self:t) (client_sock:Unix.file_descr) : unit =
|
|
let ic = Unix.in_channel_of_descr client_sock in
|
|
let oc = Unix.out_channel_of_descr client_sock in
|
|
let buf = Buf_.create() in
|
|
let is = Input_stream.of_chan ic in
|
|
let continue = ref true in
|
|
while !continue && self.running do
|
|
_debug (fun k->k "read next request");
|
|
match Request.parse_req_start ~buf is with
|
|
| Ok None -> continue := false
|
|
| Error (c,s) ->
|
|
let res = Response.make_raw ~code:c s in
|
|
Response.output_ oc res
|
|
| Ok (Some req) ->
|
|
let res =
|
|
try
|
|
(* is there a handler for this path? *)
|
|
let handler =
|
|
match find_map (fun ph -> ph req) self.path_handlers with
|
|
| Some f -> unwrap_resp_result f
|
|
| None -> self.handler
|
|
in
|
|
(* handle expectations *)
|
|
begin match List.assoc "Expect" req.Request.headers with
|
|
| "100-continue" ->
|
|
_debug (fun k->k "send back: 100 CONTINUE");
|
|
Response.output_ oc (Response.make_raw ~code:100 "");
|
|
| s -> bad_reqf 417 "unknown expectation %s" s
|
|
| exception Not_found -> ()
|
|
end;
|
|
(* preprocess request's input stream *)
|
|
let req = {req with body=is} in
|
|
let req =
|
|
List.fold_left
|
|
(fun req cb -> match cb req with None -> req | Some r' -> r')
|
|
req self.cb_decode_req
|
|
in
|
|
(* now actually read request's body *)
|
|
let req = Request.parse_body_ ~buf req |> unwrap_resp_result in
|
|
let resp = handler req in
|
|
(* post-process response *)
|
|
List.fold_left
|
|
(fun resp cb -> match cb req resp with None -> resp | Some r' -> r')
|
|
resp self.cb_encode_resp
|
|
with
|
|
| Bad_req (code,s) ->
|
|
continue := false;
|
|
Response.make_raw ~code s
|
|
| e ->
|
|
Response.fail ~code:500 "server error: %s" (Printexc.to_string e)
|
|
in
|
|
Response.output_ oc res
|
|
| exception Bad_req (code,s) ->
|
|
Response.output_ oc (Response.make_raw ~code s);
|
|
continue := false
|
|
| exception Sys_error _ ->
|
|
continue := false; (* connection broken somehow *)
|
|
Unix.close client_sock;
|
|
done;
|
|
_debug (fun k->k "done with client, exiting");
|
|
()
|
|
|
|
let run (self:t) : (unit,_) result =
|
|
try
|
|
if self.masksigpipe then (
|
|
ignore (Unix.sigprocmask Unix.SIG_BLOCK [Sys.sigpipe] : _ list);
|
|
);
|
|
let sock = Unix.socket PF_INET Unix.SOCK_STREAM 0 in
|
|
Unix.setsockopt sock Unix.SO_REUSEADDR true;
|
|
Unix.setsockopt_optint sock Unix.SO_LINGER None;
|
|
let inet_addr = Unix.inet_addr_of_string self.addr in
|
|
Unix.bind sock (Unix.ADDR_INET (inet_addr, self.port));
|
|
Unix.listen sock 10;
|
|
while self.running do
|
|
let client_sock, _ = Unix.accept sock in
|
|
self.new_thread
|
|
(fun () -> handle_client_ self client_sock);
|
|
done;
|
|
Ok ()
|
|
with e -> Error e
|