123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138# 1 "src/vendor/gluten/lwt-unix/ssl_io_real.ml"(*----------------------------------------------------------------------------
* Copyright (c) 2019 António 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 copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 COPYRIGHT HOLDER 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.
*---------------------------------------------------------------------------*)openLwt.Infixtypedescriptor=Lwt_ssl.socketmoduleIo:Gluten_lwt.IOwithtypesocket=descriptorandtypeaddr=Unix.sockaddr=structtypesocket=Lwt_ssl.sockettypeaddr=Unix.sockaddrletclosessl=letfd=Lwt_ssl.get_fdsslinmatchLwt_unix.statefdwith|Closed->Lwt.return_unit|_->Lwt_ssl.ssl_shutdownssl>>=fun()->Lwt.catch(fun()->Lwt.wrap2Lwt_ssl.shutdownsslUnix.SHUTDOWN_ALL)(function|Unix.Unix_error(Unix.ENOTCONN,_,_)->Lwt.return_unit|exn->Lwt.failexn)>>=fun()->(matchLwt_unix.statefdwith|Lwt_unix.Closed->Lwt.return_unit|_->Lwt.catch(fun()->Lwt_ssl.closessl)(fun_exn->Lwt.return_unit))letreadsslbigstring~off~len=Lwt.catch(fun()->Lwt_ssl.read_bytessslbigstringofflen>|=function|0->`Eof|n->`Okn)(function|Unix.Unix_error(Unix.EBADF,_,_)->Lwt.return`Eof|exn->Lwt.async(fun()->closessl);Lwt.failexn)letwritevssliovecs=Lwt.catch(fun()->Lwt_list.fold_left_s(funacc{Faraday.buffer;off;len}->Lwt_ssl.write_bytessslbufferofflen>|=funwritten->acc+written)0iovecs>|=funn->`Okn)(function|Unix.Unix_error(Unix.EBADF,"check_descriptor",_)->Lwt.return`Closed|exn->Lwt.failexn)(* From RFC8446§6.1:
* The client and the server must share knowledge that the connection is
* ending in order to avoid a truncation attack.
*
* Note: In the SSL / TLS runtimes we can't just shutdown one part of the
* full-duplex connection, as both sides must know that the underlying TLS
* conection is closing. *)letshutdown_receive_ssl=()endletmake_default_client?alpn_protocolssocket=letclient_ctx=Ssl.create_contextSsl.SSLv23Ssl.Client_contextinSsl.disable_protocolsclient_ctx[Ssl.SSLv23];Ssl.honor_cipher_orderclient_ctx;(matchalpn_protocolswith|Someprotos->Ssl.set_context_alpn_protosclient_ctxprotos|None->());Lwt_ssl.ssl_connectsocketclient_ctxletrecfirst_matchl1=function|[]->None|x::_whenList.memxl1->Somex|_::xs->first_matchl1xsletmake_server?alpn_protocols~certfile~keyfilesocket=letserver_ctx=Ssl.create_contextSsl.SSLv23Ssl.Server_contextinSsl.disable_protocolsserver_ctx[Ssl.SSLv23];Ssl.use_certificateserver_ctxcertfilekeyfile;(matchalpn_protocolswith|Someprotos->Ssl.set_context_alpn_protosserver_ctxprotos;Ssl.set_context_alpn_select_callbackserver_ctx(funclient_protos->first_matchclient_protosprotos);|None->());Lwt_ssl.ssl_acceptsocketserver_ctx