mte/unikernel/duniverse/httpun/lib/client_connection.ml
2025-11-11 02:07:51 +01:00

308 lines
9.4 KiB
OCaml

(*----------------------------------------------------------------------------
Copyright (c) 2017-2019 Inhabited Type LLC.
Copyright (c) 2019 Antonio Nuno Monteiro.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the author nor the names of his contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
----------------------------------------------------------------------------*)
module Reader = Parse.Reader
module Writer = Serialize.Writer
type error =
[ `Malformed_response of string | `Invalid_response_body_length of Response.t | `Exn of exn ]
type response_handler = Response.t -> Body.Reader.t -> unit
type error_handler = error -> unit
type t =
{ config : Config.t
; reader : Reader.response
; writer : Writer.t
; request_queue : Respd.t Queue.t
(* invariant: If [request_queue] is not empty, then the head of the queue
has already written the request headers to the wire. *)
}
let is_closed t =
Reader.is_closed t.reader && Writer.is_closed t.writer
let is_waiting t =
not (is_closed t) && Queue.is_empty t.request_queue
let is_active t =
not (Queue.is_empty t.request_queue)
let current_respd_exn t =
Queue.peek t.request_queue
let yield_reader t k = Reader.on_wakeup t.reader k
let wakeup_reader t = Reader.wakeup t.reader
let yield_writer t k = Writer.on_wakeup t.writer k
let wakeup_writer t = Writer.wakeup t.writer
let create ?(config=Config.default) () =
let request_queue = Queue.create () in
{ config
; reader = Reader.response request_queue
; writer = Writer.create ()
; request_queue
}
let create_request_body ~request t =
match Request.body_length request with
| `Fixed 0L -> Body.Writer.create_empty ~writer:t.writer
| `Fixed _ | `Chunked as encoding ->
Body.Writer.create
(Bigstringaf.create t.config.request_body_buffer_size)
~encoding
~writer:t.writer
| `Error `Bad_request ->
failwith "httpun.Client_connection.request: invalid body length"
let request t ?(flush_headers_immediately=false) request ~error_handler ~response_handler =
let request_body = create_request_body ~request t in
let respd =
Respd.create error_handler request request_body t.writer response_handler in
let handle_now = Queue.is_empty t.request_queue in
Queue.push respd t.request_queue;
if handle_now then
Respd.write_request respd;
if not flush_headers_immediately
then Writer.yield t.writer;
(* Not handling the request now means it may be pipelined.
* `advance_request_queue_if_necessary` will take care of it, but we still
* wanna wake up the writer so that the function gets called. *)
wakeup_writer t;
request_body
;;
let shutdown_reader t =
if is_active t
then Respd.close_response_body (current_respd_exn t);
Reader.force_close t.reader;
wakeup_reader t
let shutdown_writer t =
if is_active t
then Respd.close_request_body (current_respd_exn t);
Writer.close t.writer;
wakeup_writer t
let shutdown t =
shutdown_reader t;
shutdown_writer t
let set_error_and_handle t error =
Queue.iter (fun respd ->
match Respd.input_state respd with
| Wait | Ready ->
Respd.report_error respd error
| Complete ->
match Reader.next t.reader with
| `Error _ | `Read ->
Respd.report_error respd error
| _ ->
(* Don't bother reporting errors to responses that have already
* completed. *)
())
t.request_queue;
(* From RFC7230§6.5:
* A client sending a message body SHOULD monitor the network connection
* for an error response while it is transmitting the request. If the
* client sees a response that indicates the server does not wish to
* receive the message body and is closing the connection, the client
* SHOULD immediately cease transmitting the body and close its side of the
* connection. *)
shutdown t;
;;
let unexpected_eof t =
set_error_and_handle t (`Malformed_response "unexpected eof");
;;
let report_exn t exn =
set_error_and_handle t (`Exn exn)
;;
exception Local
let maybe_pipeline_queued_requests t =
(* Don't bother trying to pipeline if there aren't multiple requests in the
* queue. *)
if Queue.length t.request_queue > 1 then
try
let _ = Queue.fold (fun prev respd ->
begin match prev with
| None -> ()
| Some prev ->
match respd.Respd.state, Respd.output_state prev with
| Uninitialized, Complete ->
Respd.write_request respd;
Respd.flush_request_body respd
| _ ->
(* bail early. If we can't pipeline this request, we can't write
* next ones either. *)
raise Local
end;
Some respd)
None
t.request_queue
in ()
with
| _ -> ()
let advance_request_queue t =
ignore (Queue.take t.request_queue);
if not (Queue.is_empty t.request_queue) then begin
(* write request to the wire *)
let respd = current_respd_exn t in
match respd.state with
| Uninitialized ->
(* Only write request if it hasn't been written to the wire yet (e.g. via
* pipelining). *)
Respd.write_request respd;
wakeup_writer t
| _ -> ()
end
let rec _next_read_operation t =
if not (is_active t) then (
if Reader.is_closed t.reader
then shutdown t;
Reader.next t.reader
) else (
let respd = current_respd_exn t in
match Respd.input_state respd with
| Wait -> `Yield
| Ready -> Reader.next t.reader
| Complete -> _final_read_operation_for t respd
)
and _final_read_operation_for t respd =
let next =
if not (Respd.persistent_connection respd) then (
shutdown_reader t;
Reader.next t.reader;
) else (
match Respd.output_state respd with
| Waiting | Ready -> `Yield
| Complete ->
match Reader.next t.reader with
| `Error _ | `Read as operation ->
(* Keep reading when in a "partial" state (`Read).
* Don't advance the request queue if in an error state. *)
operation
| _ ->
advance_request_queue t;
_next_read_operation t;
)
in
wakeup_writer t;
next
;;
let next_read_operation t =
match _next_read_operation t with
| `Error (`Parse(marks, message)) ->
let message = String.concat "" [ String.concat ">" marks; ": "; message] in
set_error_and_handle t (`Malformed_response message);
`Close
| `Error (`Invalid_response_body_length _ as error) ->
set_error_and_handle t error;
`Close
| `Start -> `Read
| (`Read | `Yield | `Close) as operation -> operation
;;
let read_with_more t bs ~off ~len more =
let consumed = Reader.read_with_more t.reader bs ~off ~len more in
if is_active t then
Respd.flush_response_body (current_respd_exn t);
consumed
;;
let read t bs ~off ~len =
read_with_more t bs ~off ~len Incomplete
let read_eof t bs ~off ~len =
let bytes_read = read_with_more t bs ~off ~len Complete in
if is_active t
then unexpected_eof t;
bytes_read
;;
let rec _next_write_operation t =
if not (is_active t) then (
if Reader.is_closed t.reader
then shutdown t;
Writer.next t.writer
) else (
let respd = current_respd_exn t in
match Respd.output_state respd with
| Waiting -> `Yield
| Ready ->
Respd.flush_request_body respd;
Writer.next t.writer
| Complete -> _final_write_operation_for t respd
)
and _final_write_operation_for t respd =
if not (Respd.persistent_connection respd) then (
shutdown_writer t;
Writer.next t.writer;
) else (
(* From RFC7230§6.3.2:
* A client that supports persistent connections MAY "pipeline" its
* requests (i.e., send multiple requests without waiting for each
* response). *)
maybe_pipeline_queued_requests t;
match Respd.input_state respd with
| Wait | Ready ->
wakeup_reader t;
Writer.next t.writer;
| Complete ->
match Reader.next t.reader with
| `Error _ -> Writer.next t.writer
| _ ->
advance_request_queue t;
wakeup_reader t;
_next_write_operation t
)
;;
let next_write_operation t = _next_write_operation t
let report_write_result t result =
Writer.report_result t.writer result