protocol-quic 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/ext/ngtcp2/AUTHORS +44 -0
- data/ext/ngtcp2/CMakeLists.txt +431 -0
- data/ext/ngtcp2/CMakeOptions.txt +17 -0
- data/ext/ngtcp2/COPYING +22 -0
- data/ext/ngtcp2/ChangeLog +0 -0
- data/ext/ngtcp2/Makefile.am +60 -0
- data/ext/ngtcp2/NEWS +0 -0
- data/ext/ngtcp2/README +1 -0
- data/ext/ngtcp2/README.rst +258 -0
- data/ext/ngtcp2/ci/build_boringssl.sh +10 -0
- data/ext/ngtcp2/ci/build_nghttp3.sh +9 -0
- data/ext/ngtcp2/ci/build_openssl1.sh +8 -0
- data/ext/ngtcp2/ci/build_openssl1_cross.sh +9 -0
- data/ext/ngtcp2/ci/build_openssl3.sh +8 -0
- data/ext/ngtcp2/ci/build_picotls.sh +26 -0
- data/ext/ngtcp2/ci/build_wolfssl.sh +9 -0
- data/ext/ngtcp2/ci/gen-certificate.sh +8 -0
- data/ext/ngtcp2/cmake/ExtractValidFlags.cmake +31 -0
- data/ext/ngtcp2/cmake/FindCUnit.cmake +40 -0
- data/ext/ngtcp2/cmake/FindJemalloc.cmake +40 -0
- data/ext/ngtcp2/cmake/FindLibev.cmake +38 -0
- data/ext/ngtcp2/cmake/FindLibnghttp3.cmake +41 -0
- data/ext/ngtcp2/cmake/Findwolfssl.cmake +41 -0
- data/ext/ngtcp2/cmake/Version.cmake +11 -0
- data/ext/ngtcp2/cmakeconfig.h.in +36 -0
- data/ext/ngtcp2/configure.ac +755 -0
- data/ext/ngtcp2/crypto/CMakeLists.txt +56 -0
- data/ext/ngtcp2/crypto/Makefile.am +49 -0
- data/ext/ngtcp2/crypto/boringssl/CMakeLists.txt +64 -0
- data/ext/ngtcp2/crypto/boringssl/Makefile.am +39 -0
- data/ext/ngtcp2/crypto/boringssl/boringssl.c +630 -0
- data/ext/ngtcp2/crypto/boringssl/libngtcp2_crypto_boringssl.pc.in +33 -0
- data/ext/ngtcp2/crypto/gnutls/CMakeLists.txt +86 -0
- data/ext/ngtcp2/crypto/gnutls/Makefile.am +43 -0
- data/ext/ngtcp2/crypto/gnutls/gnutls.c +644 -0
- data/ext/ngtcp2/crypto/gnutls/libngtcp2_crypto_gnutls.pc.in +33 -0
- data/ext/ngtcp2/crypto/includes/CMakeLists.txt +56 -0
- data/ext/ngtcp2/crypto/includes/Makefile.am +45 -0
- data/ext/ngtcp2/crypto/includes/ngtcp2/ngtcp2_crypto.h +893 -0
- data/ext/ngtcp2/crypto/includes/ngtcp2/ngtcp2_crypto_boringssl.h +104 -0
- data/ext/ngtcp2/crypto/includes/ngtcp2/ngtcp2_crypto_gnutls.h +107 -0
- data/ext/ngtcp2/crypto/includes/ngtcp2/ngtcp2_crypto_openssl.h +132 -0
- data/ext/ngtcp2/crypto/includes/ngtcp2/ngtcp2_crypto_picotls.h +246 -0
- data/ext/ngtcp2/crypto/includes/ngtcp2/ngtcp2_crypto_wolfssl.h +106 -0
- data/ext/ngtcp2/crypto/openssl/CMakeLists.txt +86 -0
- data/ext/ngtcp2/crypto/openssl/Makefile.am +43 -0
- data/ext/ngtcp2/crypto/openssl/libngtcp2_crypto_openssl.pc.in +33 -0
- data/ext/ngtcp2/crypto/openssl/openssl.c +807 -0
- data/ext/ngtcp2/crypto/picotls/CMakeLists.txt +65 -0
- data/ext/ngtcp2/crypto/picotls/Makefile.am +39 -0
- data/ext/ngtcp2/crypto/picotls/libngtcp2_crypto_picotls.pc.in +33 -0
- data/ext/ngtcp2/crypto/picotls/picotls.c +707 -0
- data/ext/ngtcp2/crypto/shared.c +1431 -0
- data/ext/ngtcp2/crypto/shared.h +350 -0
- data/ext/ngtcp2/crypto/wolfssl/CMakeLists.txt +84 -0
- data/ext/ngtcp2/crypto/wolfssl/Makefile.am +43 -0
- data/ext/ngtcp2/crypto/wolfssl/libngtcp2_crypto_wolfssl.pc.in +33 -0
- data/ext/ngtcp2/crypto/wolfssl/wolfssl.c +534 -0
- data/ext/ngtcp2/doc/Makefile.am +65 -0
- data/ext/ngtcp2/doc/make.bat +35 -0
- data/ext/ngtcp2/doc/mkapiref.py +356 -0
- data/ext/ngtcp2/doc/source/conf.py.in +94 -0
- data/ext/ngtcp2/doc/source/index.rst +22 -0
- data/ext/ngtcp2/doc/source/programmers-guide.rst +476 -0
- data/ext/ngtcp2/docker/Dockerfile +39 -0
- data/ext/ngtcp2/examples/CMakeLists.txt +361 -0
- data/ext/ngtcp2/examples/Makefile.am +228 -0
- data/ext/ngtcp2/examples/client.cc +3049 -0
- data/ext/ngtcp2/examples/client.h +192 -0
- data/ext/ngtcp2/examples/client_base.cc +202 -0
- data/ext/ngtcp2/examples/client_base.h +213 -0
- data/ext/ngtcp2/examples/debug.cc +298 -0
- data/ext/ngtcp2/examples/debug.h +124 -0
- data/ext/ngtcp2/examples/examplestest.cc +84 -0
- data/ext/ngtcp2/examples/gtlssimpleclient.c +720 -0
- data/ext/ngtcp2/examples/h09client.cc +2601 -0
- data/ext/ngtcp2/examples/h09client.h +196 -0
- data/ext/ngtcp2/examples/h09server.cc +3024 -0
- data/ext/ngtcp2/examples/h09server.h +237 -0
- data/ext/ngtcp2/examples/http.cc +138 -0
- data/ext/ngtcp2/examples/http.h +44 -0
- data/ext/ngtcp2/examples/network.h +80 -0
- data/ext/ngtcp2/examples/server.cc +3731 -0
- data/ext/ngtcp2/examples/server.h +256 -0
- data/ext/ngtcp2/examples/server_base.cc +58 -0
- data/ext/ngtcp2/examples/server_base.h +195 -0
- data/ext/ngtcp2/examples/shared.cc +385 -0
- data/ext/ngtcp2/examples/shared.h +96 -0
- data/ext/ngtcp2/examples/simpleclient.c +683 -0
- data/ext/ngtcp2/examples/template.h +71 -0
- data/ext/ngtcp2/examples/tests/README.rst +60 -0
- data/ext/ngtcp2/examples/tests/__init__.py +0 -0
- data/ext/ngtcp2/examples/tests/config.ini.in +32 -0
- data/ext/ngtcp2/examples/tests/conftest.py +28 -0
- data/ext/ngtcp2/examples/tests/ngtcp2test/__init__.py +6 -0
- data/ext/ngtcp2/examples/tests/ngtcp2test/certs.py +476 -0
- data/ext/ngtcp2/examples/tests/ngtcp2test/client.py +187 -0
- data/ext/ngtcp2/examples/tests/ngtcp2test/env.py +191 -0
- data/ext/ngtcp2/examples/tests/ngtcp2test/log.py +101 -0
- data/ext/ngtcp2/examples/tests/ngtcp2test/server.py +137 -0
- data/ext/ngtcp2/examples/tests/ngtcp2test/tls.py +983 -0
- data/ext/ngtcp2/examples/tests/test_01_handshake.py +30 -0
- data/ext/ngtcp2/examples/tests/test_02_resume.py +46 -0
- data/ext/ngtcp2/examples/tests/test_03_earlydata.py +56 -0
- data/ext/ngtcp2/examples/tests/test_04_clientcert.py +57 -0
- data/ext/ngtcp2/examples/tests/test_05_ciphers.py +46 -0
- data/ext/ngtcp2/examples/tls_client_context.h +52 -0
- data/ext/ngtcp2/examples/tls_client_context_boringssl.cc +126 -0
- data/ext/ngtcp2/examples/tls_client_context_boringssl.h +49 -0
- data/ext/ngtcp2/examples/tls_client_context_gnutls.cc +74 -0
- data/ext/ngtcp2/examples/tls_client_context_gnutls.h +50 -0
- data/ext/ngtcp2/examples/tls_client_context_openssl.cc +137 -0
- data/ext/ngtcp2/examples/tls_client_context_openssl.h +49 -0
- data/ext/ngtcp2/examples/tls_client_context_picotls.cc +158 -0
- data/ext/ngtcp2/examples/tls_client_context_picotls.h +53 -0
- data/ext/ngtcp2/examples/tls_client_context_wolfssl.cc +177 -0
- data/ext/ngtcp2/examples/tls_client_context_wolfssl.h +51 -0
- data/ext/ngtcp2/examples/tls_client_session.h +52 -0
- data/ext/ngtcp2/examples/tls_client_session_boringssl.cc +110 -0
- data/ext/ngtcp2/examples/tls_client_session_boringssl.h +52 -0
- data/ext/ngtcp2/examples/tls_client_session_gnutls.cc +190 -0
- data/ext/ngtcp2/examples/tls_client_session_gnutls.h +52 -0
- data/ext/ngtcp2/examples/tls_client_session_openssl.cc +113 -0
- data/ext/ngtcp2/examples/tls_client_session_openssl.h +52 -0
- data/ext/ngtcp2/examples/tls_client_session_picotls.cc +147 -0
- data/ext/ngtcp2/examples/tls_client_session_picotls.h +52 -0
- data/ext/ngtcp2/examples/tls_client_session_wolfssl.cc +160 -0
- data/ext/ngtcp2/examples/tls_client_session_wolfssl.h +52 -0
- data/ext/ngtcp2/examples/tls_server_context.h +52 -0
- data/ext/ngtcp2/examples/tls_server_context_boringssl.cc +257 -0
- data/ext/ngtcp2/examples/tls_server_context_boringssl.h +54 -0
- data/ext/ngtcp2/examples/tls_server_context_gnutls.cc +99 -0
- data/ext/ngtcp2/examples/tls_server_context_gnutls.h +59 -0
- data/ext/ngtcp2/examples/tls_server_context_openssl.cc +338 -0
- data/ext/ngtcp2/examples/tls_server_context_openssl.h +54 -0
- data/ext/ngtcp2/examples/tls_server_context_picotls.cc +321 -0
- data/ext/ngtcp2/examples/tls_server_context_picotls.h +58 -0
- data/ext/ngtcp2/examples/tls_server_context_wolfssl.cc +284 -0
- data/ext/ngtcp2/examples/tls_server_context_wolfssl.h +55 -0
- data/ext/ngtcp2/examples/tls_server_session.h +52 -0
- data/ext/ngtcp2/examples/tls_server_session_boringssl.cc +84 -0
- data/ext/ngtcp2/examples/tls_server_session_boringssl.h +47 -0
- data/ext/ngtcp2/examples/tls_server_session_gnutls.cc +155 -0
- data/ext/ngtcp2/examples/tls_server_session_gnutls.h +46 -0
- data/ext/ngtcp2/examples/tls_server_session_openssl.cc +54 -0
- data/ext/ngtcp2/examples/tls_server_session_openssl.h +47 -0
- data/ext/ngtcp2/examples/tls_server_session_picotls.cc +70 -0
- data/ext/ngtcp2/examples/tls_server_session_picotls.h +47 -0
- data/ext/ngtcp2/examples/tls_server_session_wolfssl.cc +55 -0
- data/ext/ngtcp2/examples/tls_server_session_wolfssl.h +47 -0
- data/ext/ngtcp2/examples/tls_session_base_gnutls.cc +87 -0
- data/ext/ngtcp2/examples/tls_session_base_gnutls.h +51 -0
- data/ext/ngtcp2/examples/tls_session_base_openssl.cc +54 -0
- data/ext/ngtcp2/examples/tls_session_base_openssl.h +52 -0
- data/ext/ngtcp2/examples/tls_session_base_picotls.cc +56 -0
- data/ext/ngtcp2/examples/tls_session_base_picotls.h +54 -0
- data/ext/ngtcp2/examples/tls_session_base_wolfssl.cc +54 -0
- data/ext/ngtcp2/examples/tls_session_base_wolfssl.h +54 -0
- data/ext/ngtcp2/examples/tls_shared_picotls.cc +59 -0
- data/ext/ngtcp2/examples/tls_shared_picotls.h +36 -0
- data/ext/ngtcp2/examples/util.cc +646 -0
- data/ext/ngtcp2/examples/util.h +361 -0
- data/ext/ngtcp2/examples/util_gnutls.cc +136 -0
- data/ext/ngtcp2/examples/util_openssl.cc +131 -0
- data/ext/ngtcp2/examples/util_test.cc +237 -0
- data/ext/ngtcp2/examples/util_test.h +45 -0
- data/ext/ngtcp2/examples/util_wolfssl.cc +130 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/ack +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/ack_ecn +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/connection_close +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/crypto +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/data_blocked +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/datagram +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/datagram_len +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/max_data +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/max_stream_data +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/max_streams +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/new_connection_id +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/new_token +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/path_challenge +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/path_response +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/reset_stream +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/retire_connection_id +1 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/stop_sending +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/stream +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/stream_data_blocked +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/stream_len +0 -0
- data/ext/ngtcp2/fuzz/corpus/decode_frame/streams_blocked +0 -0
- data/ext/ngtcp2/fuzz/corpus/ksl/random +0 -0
- data/ext/ngtcp2/fuzz/decode_frame.cc +25 -0
- data/ext/ngtcp2/fuzz/ksl.cc +77 -0
- data/ext/ngtcp2/interop/Dockerfile +39 -0
- data/ext/ngtcp2/interop/run_endpoint.sh +93 -0
- data/ext/ngtcp2/lib/CMakeLists.txt +110 -0
- data/ext/ngtcp2/lib/Makefile.am +122 -0
- data/ext/ngtcp2/lib/includes/CMakeLists.txt +4 -0
- data/ext/ngtcp2/lib/includes/Makefile.am +25 -0
- data/ext/ngtcp2/lib/includes/ngtcp2/ngtcp2.h +5843 -0
- data/ext/ngtcp2/lib/includes/ngtcp2/version.h.in +51 -0
- data/ext/ngtcp2/lib/libngtcp2.pc.in +33 -0
- data/ext/ngtcp2/lib/ngtcp2_acktr.c +335 -0
- data/ext/ngtcp2/lib/ngtcp2_acktr.h +221 -0
- data/ext/ngtcp2/lib/ngtcp2_addr.c +117 -0
- data/ext/ngtcp2/lib/ngtcp2_addr.h +69 -0
- data/ext/ngtcp2/lib/ngtcp2_balloc.c +90 -0
- data/ext/ngtcp2/lib/ngtcp2_balloc.h +91 -0
- data/ext/ngtcp2/lib/ngtcp2_bbr.c +693 -0
- data/ext/ngtcp2/lib/ngtcp2_bbr.h +157 -0
- data/ext/ngtcp2/lib/ngtcp2_bbr2.c +1490 -0
- data/ext/ngtcp2/lib/ngtcp2_bbr2.h +149 -0
- data/ext/ngtcp2/lib/ngtcp2_buf.c +56 -0
- data/ext/ngtcp2/lib/ngtcp2_buf.h +108 -0
- data/ext/ngtcp2/lib/ngtcp2_cc.c +616 -0
- data/ext/ngtcp2/lib/ngtcp2_cc.h +422 -0
- data/ext/ngtcp2/lib/ngtcp2_cid.c +147 -0
- data/ext/ngtcp2/lib/ngtcp2_cid.h +175 -0
- data/ext/ngtcp2/lib/ngtcp2_conn.c +13731 -0
- data/ext/ngtcp2/lib/ngtcp2_conn.h +1119 -0
- data/ext/ngtcp2/lib/ngtcp2_conn_stat.h +131 -0
- data/ext/ngtcp2/lib/ngtcp2_conv.c +291 -0
- data/ext/ngtcp2/lib/ngtcp2_conv.h +208 -0
- data/ext/ngtcp2/lib/ngtcp2_crypto.c +895 -0
- data/ext/ngtcp2/lib/ngtcp2_crypto.h +148 -0
- data/ext/ngtcp2/lib/ngtcp2_err.c +154 -0
- data/ext/ngtcp2/lib/ngtcp2_err.h +34 -0
- data/ext/ngtcp2/lib/ngtcp2_gaptr.c +167 -0
- data/ext/ngtcp2/lib/ngtcp2_gaptr.h +98 -0
- data/ext/ngtcp2/lib/ngtcp2_idtr.c +79 -0
- data/ext/ngtcp2/lib/ngtcp2_idtr.h +89 -0
- data/ext/ngtcp2/lib/ngtcp2_ksl.c +819 -0
- data/ext/ngtcp2/lib/ngtcp2_ksl.h +345 -0
- data/ext/ngtcp2/lib/ngtcp2_log.c +822 -0
- data/ext/ngtcp2/lib/ngtcp2_log.h +123 -0
- data/ext/ngtcp2/lib/ngtcp2_macro.h +58 -0
- data/ext/ngtcp2/lib/ngtcp2_map.c +336 -0
- data/ext/ngtcp2/lib/ngtcp2_map.h +136 -0
- data/ext/ngtcp2/lib/ngtcp2_mem.c +113 -0
- data/ext/ngtcp2/lib/ngtcp2_mem.h +72 -0
- data/ext/ngtcp2/lib/ngtcp2_net.h +136 -0
- data/ext/ngtcp2/lib/ngtcp2_objalloc.c +40 -0
- data/ext/ngtcp2/lib/ngtcp2_objalloc.h +140 -0
- data/ext/ngtcp2/lib/ngtcp2_opl.c +46 -0
- data/ext/ngtcp2/lib/ngtcp2_opl.h +65 -0
- data/ext/ngtcp2/lib/ngtcp2_path.c +77 -0
- data/ext/ngtcp2/lib/ngtcp2_path.h +49 -0
- data/ext/ngtcp2/lib/ngtcp2_pkt.c +2527 -0
- data/ext/ngtcp2/lib/ngtcp2_pkt.h +1235 -0
- data/ext/ngtcp2/lib/ngtcp2_pmtud.c +160 -0
- data/ext/ngtcp2/lib/ngtcp2_pmtud.h +123 -0
- data/ext/ngtcp2/lib/ngtcp2_ppe.c +230 -0
- data/ext/ngtcp2/lib/ngtcp2_ppe.h +153 -0
- data/ext/ngtcp2/lib/ngtcp2_pq.c +164 -0
- data/ext/ngtcp2/lib/ngtcp2_pq.h +126 -0
- data/ext/ngtcp2/lib/ngtcp2_pv.c +172 -0
- data/ext/ngtcp2/lib/ngtcp2_pv.h +194 -0
- data/ext/ngtcp2/lib/ngtcp2_qlog.c +1219 -0
- data/ext/ngtcp2/lib/ngtcp2_qlog.h +161 -0
- data/ext/ngtcp2/lib/ngtcp2_range.c +61 -0
- data/ext/ngtcp2/lib/ngtcp2_range.h +80 -0
- data/ext/ngtcp2/lib/ngtcp2_rcvry.h +40 -0
- data/ext/ngtcp2/lib/ngtcp2_ringbuf.c +121 -0
- data/ext/ngtcp2/lib/ngtcp2_ringbuf.h +132 -0
- data/ext/ngtcp2/lib/ngtcp2_rob.c +319 -0
- data/ext/ngtcp2/lib/ngtcp2_rob.h +197 -0
- data/ext/ngtcp2/lib/ngtcp2_rst.c +138 -0
- data/ext/ngtcp2/lib/ngtcp2_rst.h +86 -0
- data/ext/ngtcp2/lib/ngtcp2_rtb.c +1676 -0
- data/ext/ngtcp2/lib/ngtcp2_rtb.h +468 -0
- data/ext/ngtcp2/lib/ngtcp2_str.c +233 -0
- data/ext/ngtcp2/lib/ngtcp2_str.h +94 -0
- data/ext/ngtcp2/lib/ngtcp2_strm.c +698 -0
- data/ext/ngtcp2/lib/ngtcp2_strm.h +310 -0
- data/ext/ngtcp2/lib/ngtcp2_unreachable.c +71 -0
- data/ext/ngtcp2/lib/ngtcp2_unreachable.h +46 -0
- data/ext/ngtcp2/lib/ngtcp2_vec.c +243 -0
- data/ext/ngtcp2/lib/ngtcp2_vec.h +120 -0
- data/ext/ngtcp2/lib/ngtcp2_version.c +39 -0
- data/ext/ngtcp2/lib/ngtcp2_window_filter.c +99 -0
- data/ext/ngtcp2/lib/ngtcp2_window_filter.h +65 -0
- data/ext/ngtcp2/m4/ax_check_compile_flag.m4 +74 -0
- data/ext/ngtcp2/m4/ax_cxx_compile_stdcxx.m4 +1009 -0
- data/ext/ngtcp2/tests/CMakeLists.txt +68 -0
- data/ext/ngtcp2/tests/Makefile.am +94 -0
- data/ext/ngtcp2/tests/main.c +358 -0
- data/ext/ngtcp2/tests/ngtcp2_acktr_test.c +367 -0
- data/ext/ngtcp2/tests/ngtcp2_acktr_test.h +37 -0
- data/ext/ngtcp2/tests/ngtcp2_conn_test.c +9821 -0
- data/ext/ngtcp2/tests/ngtcp2_conn_test.h +104 -0
- data/ext/ngtcp2/tests/ngtcp2_conv_test.c +430 -0
- data/ext/ngtcp2/tests/ngtcp2_conv_test.h +46 -0
- data/ext/ngtcp2/tests/ngtcp2_crypto_test.c +667 -0
- data/ext/ngtcp2/tests/ngtcp2_crypto_test.h +35 -0
- data/ext/ngtcp2/tests/ngtcp2_gaptr_test.c +127 -0
- data/ext/ngtcp2/tests/ngtcp2_gaptr_test.h +36 -0
- data/ext/ngtcp2/tests/ngtcp2_idtr_test.c +79 -0
- data/ext/ngtcp2/tests/ngtcp2_idtr_test.h +34 -0
- data/ext/ngtcp2/tests/ngtcp2_ksl_test.c +502 -0
- data/ext/ngtcp2/tests/ngtcp2_ksl_test.h +39 -0
- data/ext/ngtcp2/tests/ngtcp2_map_test.c +206 -0
- data/ext/ngtcp2/tests/ngtcp2_map_test.h +38 -0
- data/ext/ngtcp2/tests/ngtcp2_pkt_test.c +1645 -0
- data/ext/ngtcp2/tests/ngtcp2_pkt_test.h +68 -0
- data/ext/ngtcp2/tests/ngtcp2_pmtud_test.c +153 -0
- data/ext/ngtcp2/tests/ngtcp2_pmtud_test.h +34 -0
- data/ext/ngtcp2/tests/ngtcp2_pv_test.c +129 -0
- data/ext/ngtcp2/tests/ngtcp2_pv_test.h +35 -0
- data/ext/ngtcp2/tests/ngtcp2_range_test.c +105 -0
- data/ext/ngtcp2/tests/ngtcp2_range_test.h +36 -0
- data/ext/ngtcp2/tests/ngtcp2_ringbuf_test.c +91 -0
- data/ext/ngtcp2/tests/ngtcp2_ringbuf_test.h +35 -0
- data/ext/ngtcp2/tests/ngtcp2_rob_test.c +552 -0
- data/ext/ngtcp2/tests/ngtcp2_rob_test.h +37 -0
- data/ext/ngtcp2/tests/ngtcp2_rtb_test.c +470 -0
- data/ext/ngtcp2/tests/ngtcp2_rtb_test.h +38 -0
- data/ext/ngtcp2/tests/ngtcp2_str_test.c +96 -0
- data/ext/ngtcp2/tests/ngtcp2_str_test.h +36 -0
- data/ext/ngtcp2/tests/ngtcp2_strm_test.c +575 -0
- data/ext/ngtcp2/tests/ngtcp2_strm_test.h +36 -0
- data/ext/ngtcp2/tests/ngtcp2_test_helper.c +404 -0
- data/ext/ngtcp2/tests/ngtcp2_test_helper.h +191 -0
- data/ext/ngtcp2/tests/ngtcp2_vec_test.c +426 -0
- data/ext/ngtcp2/tests/ngtcp2_vec_test.h +36 -0
- data/ext/ngtcp2/third-party/CMakeLists.txt +34 -0
- data/ext/ngtcp2/third-party/Makefile.am +31 -0
- data/ext/ngtcp2/third-party/http-parser/AUTHORS +68 -0
- data/ext/ngtcp2/third-party/http-parser/LICENSE-MIT +23 -0
- data/ext/ngtcp2/third-party/http-parser/Makefile +157 -0
- data/ext/ngtcp2/third-party/http-parser/README.md +246 -0
- data/ext/ngtcp2/third-party/http-parser/bench.c +111 -0
- data/ext/ngtcp2/third-party/http-parser/contrib/parsertrace.c +160 -0
- data/ext/ngtcp2/third-party/http-parser/contrib/url_parser.c +47 -0
- data/ext/ngtcp2/third-party/http-parser/http_parser.c +2419 -0
- data/ext/ngtcp2/third-party/http-parser/http_parser.gyp +111 -0
- data/ext/ngtcp2/third-party/http-parser/http_parser.h +431 -0
- data/ext/ngtcp2/third-party/http-parser/test.c +4411 -0
- data/lib/protocol/quic/version.rb +10 -0
- data/lib/protocol/quic.rb +9 -0
- data/license.md +21 -0
- data.tar.gz.sig +1 -0
- metadata +424 -0
- metadata.gz.sig +1 -0
|
@@ -0,0 +1,644 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* ngtcp2
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2020 ngtcp2 contributors
|
|
5
|
+
*
|
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
|
7
|
+
* a copy of this software and associated documentation files (the
|
|
8
|
+
* "Software"), to deal in the Software without restriction, including
|
|
9
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
|
10
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
11
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
|
12
|
+
* the following conditions:
|
|
13
|
+
*
|
|
14
|
+
* The above copyright notice and this permission notice shall be
|
|
15
|
+
* included in all copies or substantial portions of the Software.
|
|
16
|
+
*
|
|
17
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
18
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
20
|
+
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
21
|
+
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
22
|
+
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
23
|
+
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24
|
+
*/
|
|
25
|
+
#ifdef HAVE_CONFIG_H
|
|
26
|
+
# include <config.h>
|
|
27
|
+
#endif /* HAVE_CONFIG_H */
|
|
28
|
+
|
|
29
|
+
#include <assert.h>
|
|
30
|
+
|
|
31
|
+
#include <ngtcp2/ngtcp2_crypto.h>
|
|
32
|
+
#include <ngtcp2/ngtcp2_crypto_gnutls.h>
|
|
33
|
+
|
|
34
|
+
#include <gnutls/gnutls.h>
|
|
35
|
+
#include <gnutls/crypto.h>
|
|
36
|
+
#include <string.h>
|
|
37
|
+
|
|
38
|
+
#include "shared.h"
|
|
39
|
+
|
|
40
|
+
ngtcp2_crypto_aead *ngtcp2_crypto_aead_aes_128_gcm(ngtcp2_crypto_aead *aead) {
|
|
41
|
+
return ngtcp2_crypto_aead_init(aead, (void *)GNUTLS_CIPHER_AES_128_GCM);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
ngtcp2_crypto_md *ngtcp2_crypto_md_sha256(ngtcp2_crypto_md *md) {
|
|
45
|
+
md->native_handle = (void *)GNUTLS_DIG_SHA256;
|
|
46
|
+
return md;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
ngtcp2_crypto_ctx *ngtcp2_crypto_ctx_initial(ngtcp2_crypto_ctx *ctx) {
|
|
50
|
+
ngtcp2_crypto_aead_init(&ctx->aead, (void *)GNUTLS_CIPHER_AES_128_GCM);
|
|
51
|
+
ctx->md.native_handle = (void *)GNUTLS_DIG_SHA256;
|
|
52
|
+
ctx->hp.native_handle = (void *)GNUTLS_CIPHER_AES_128_CBC;
|
|
53
|
+
ctx->max_encryption = 0;
|
|
54
|
+
ctx->max_decryption_failure = 0;
|
|
55
|
+
return ctx;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
ngtcp2_crypto_aead *ngtcp2_crypto_aead_init(ngtcp2_crypto_aead *aead,
|
|
59
|
+
void *aead_native_handle) {
|
|
60
|
+
aead->native_handle = aead_native_handle;
|
|
61
|
+
aead->max_overhead = gnutls_cipher_get_tag_size(
|
|
62
|
+
(gnutls_cipher_algorithm_t)(intptr_t)aead_native_handle);
|
|
63
|
+
return aead;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
ngtcp2_crypto_aead *ngtcp2_crypto_aead_retry(ngtcp2_crypto_aead *aead) {
|
|
67
|
+
return ngtcp2_crypto_aead_init(aead, (void *)GNUTLS_CIPHER_AES_128_GCM);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
static gnutls_cipher_algorithm_t
|
|
71
|
+
crypto_get_hp(gnutls_cipher_algorithm_t cipher) {
|
|
72
|
+
switch (cipher) {
|
|
73
|
+
case GNUTLS_CIPHER_AES_128_GCM:
|
|
74
|
+
case GNUTLS_CIPHER_AES_128_CCM:
|
|
75
|
+
return GNUTLS_CIPHER_AES_128_CBC;
|
|
76
|
+
case GNUTLS_CIPHER_AES_256_GCM:
|
|
77
|
+
case GNUTLS_CIPHER_AES_256_CCM:
|
|
78
|
+
return GNUTLS_CIPHER_AES_256_CBC;
|
|
79
|
+
case GNUTLS_CIPHER_CHACHA20_POLY1305:
|
|
80
|
+
return GNUTLS_CIPHER_CHACHA20_32;
|
|
81
|
+
default:
|
|
82
|
+
return GNUTLS_CIPHER_UNKNOWN;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
static uint64_t
|
|
87
|
+
crypto_get_aead_max_encryption(gnutls_cipher_algorithm_t cipher) {
|
|
88
|
+
switch (cipher) {
|
|
89
|
+
case GNUTLS_CIPHER_AES_128_GCM:
|
|
90
|
+
case GNUTLS_CIPHER_AES_256_GCM:
|
|
91
|
+
return NGTCP2_CRYPTO_MAX_ENCRYPTION_AES_GCM;
|
|
92
|
+
case GNUTLS_CIPHER_CHACHA20_POLY1305:
|
|
93
|
+
return NGTCP2_CRYPTO_MAX_ENCRYPTION_CHACHA20_POLY1305;
|
|
94
|
+
case GNUTLS_CIPHER_AES_128_CCM:
|
|
95
|
+
case GNUTLS_CIPHER_AES_256_CCM:
|
|
96
|
+
return NGTCP2_CRYPTO_MAX_ENCRYPTION_AES_CCM;
|
|
97
|
+
default:
|
|
98
|
+
return 0;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
static uint64_t
|
|
103
|
+
crypto_get_aead_max_decryption_failure(gnutls_cipher_algorithm_t cipher) {
|
|
104
|
+
switch (cipher) {
|
|
105
|
+
case GNUTLS_CIPHER_AES_128_GCM:
|
|
106
|
+
case GNUTLS_CIPHER_AES_256_GCM:
|
|
107
|
+
return NGTCP2_CRYPTO_MAX_DECRYPTION_FAILURE_AES_GCM;
|
|
108
|
+
case GNUTLS_CIPHER_CHACHA20_POLY1305:
|
|
109
|
+
return NGTCP2_CRYPTO_MAX_DECRYPTION_FAILURE_CHACHA20_POLY1305;
|
|
110
|
+
case GNUTLS_CIPHER_AES_128_CCM:
|
|
111
|
+
case GNUTLS_CIPHER_AES_256_CCM:
|
|
112
|
+
return NGTCP2_CRYPTO_MAX_DECRYPTION_FAILURE_AES_CCM;
|
|
113
|
+
default:
|
|
114
|
+
return 0;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
ngtcp2_crypto_ctx *ngtcp2_crypto_ctx_tls(ngtcp2_crypto_ctx *ctx,
|
|
119
|
+
void *tls_native_handle) {
|
|
120
|
+
gnutls_session_t session = tls_native_handle;
|
|
121
|
+
gnutls_cipher_algorithm_t cipher;
|
|
122
|
+
gnutls_digest_algorithm_t hash;
|
|
123
|
+
gnutls_cipher_algorithm_t hp_cipher;
|
|
124
|
+
|
|
125
|
+
cipher = gnutls_cipher_get(session);
|
|
126
|
+
if (cipher != GNUTLS_CIPHER_UNKNOWN && cipher != GNUTLS_CIPHER_NULL) {
|
|
127
|
+
ngtcp2_crypto_aead_init(&ctx->aead, (void *)cipher);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
hash = gnutls_prf_hash_get(session);
|
|
131
|
+
if (hash != GNUTLS_DIG_UNKNOWN && hash != GNUTLS_DIG_NULL) {
|
|
132
|
+
ctx->md.native_handle = (void *)hash;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
hp_cipher = crypto_get_hp(cipher);
|
|
136
|
+
if (hp_cipher != GNUTLS_CIPHER_UNKNOWN) {
|
|
137
|
+
ctx->hp.native_handle = (void *)hp_cipher;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
ctx->max_encryption = crypto_get_aead_max_encryption(cipher);
|
|
141
|
+
ctx->max_decryption_failure = crypto_get_aead_max_decryption_failure(cipher);
|
|
142
|
+
|
|
143
|
+
return ctx;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
ngtcp2_crypto_ctx *ngtcp2_crypto_ctx_tls_early(ngtcp2_crypto_ctx *ctx,
|
|
147
|
+
void *tls_native_handle) {
|
|
148
|
+
gnutls_session_t session = tls_native_handle;
|
|
149
|
+
gnutls_cipher_algorithm_t cipher;
|
|
150
|
+
gnutls_digest_algorithm_t hash;
|
|
151
|
+
gnutls_cipher_algorithm_t hp_cipher;
|
|
152
|
+
|
|
153
|
+
cipher = gnutls_early_cipher_get(session);
|
|
154
|
+
if (cipher != GNUTLS_CIPHER_UNKNOWN && cipher != GNUTLS_CIPHER_NULL) {
|
|
155
|
+
ngtcp2_crypto_aead_init(&ctx->aead, (void *)cipher);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
hash = gnutls_early_prf_hash_get(session);
|
|
159
|
+
if (hash != GNUTLS_DIG_UNKNOWN && hash != GNUTLS_DIG_NULL) {
|
|
160
|
+
ctx->md.native_handle = (void *)hash;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
hp_cipher = crypto_get_hp(cipher);
|
|
164
|
+
if (hp_cipher != GNUTLS_CIPHER_UNKNOWN) {
|
|
165
|
+
ctx->hp.native_handle = (void *)hp_cipher;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
ctx->max_encryption = crypto_get_aead_max_encryption(cipher);
|
|
169
|
+
ctx->max_decryption_failure = crypto_get_aead_max_decryption_failure(cipher);
|
|
170
|
+
|
|
171
|
+
return ctx;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
size_t ngtcp2_crypto_md_hashlen(const ngtcp2_crypto_md *md) {
|
|
175
|
+
return gnutls_hash_get_len(
|
|
176
|
+
(gnutls_digest_algorithm_t)(intptr_t)md->native_handle);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
size_t ngtcp2_crypto_aead_keylen(const ngtcp2_crypto_aead *aead) {
|
|
180
|
+
return gnutls_cipher_get_key_size(
|
|
181
|
+
(gnutls_cipher_algorithm_t)(intptr_t)aead->native_handle);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
size_t ngtcp2_crypto_aead_noncelen(const ngtcp2_crypto_aead *aead) {
|
|
185
|
+
return gnutls_cipher_get_iv_size(
|
|
186
|
+
(gnutls_cipher_algorithm_t)(intptr_t)aead->native_handle);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
int ngtcp2_crypto_aead_ctx_encrypt_init(ngtcp2_crypto_aead_ctx *aead_ctx,
|
|
190
|
+
const ngtcp2_crypto_aead *aead,
|
|
191
|
+
const uint8_t *key, size_t noncelen) {
|
|
192
|
+
gnutls_cipher_algorithm_t cipher =
|
|
193
|
+
(gnutls_cipher_algorithm_t)(intptr_t)aead->native_handle;
|
|
194
|
+
gnutls_aead_cipher_hd_t hd;
|
|
195
|
+
gnutls_datum_t _key;
|
|
196
|
+
|
|
197
|
+
(void)noncelen;
|
|
198
|
+
|
|
199
|
+
_key.data = (void *)key;
|
|
200
|
+
_key.size = (unsigned int)ngtcp2_crypto_aead_keylen(aead);
|
|
201
|
+
|
|
202
|
+
if (gnutls_aead_cipher_init(&hd, cipher, &_key) != 0) {
|
|
203
|
+
return -1;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
aead_ctx->native_handle = hd;
|
|
207
|
+
|
|
208
|
+
return 0;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
int ngtcp2_crypto_aead_ctx_decrypt_init(ngtcp2_crypto_aead_ctx *aead_ctx,
|
|
212
|
+
const ngtcp2_crypto_aead *aead,
|
|
213
|
+
const uint8_t *key, size_t noncelen) {
|
|
214
|
+
gnutls_cipher_algorithm_t cipher =
|
|
215
|
+
(gnutls_cipher_algorithm_t)(intptr_t)aead->native_handle;
|
|
216
|
+
gnutls_aead_cipher_hd_t hd;
|
|
217
|
+
gnutls_datum_t _key;
|
|
218
|
+
|
|
219
|
+
(void)noncelen;
|
|
220
|
+
|
|
221
|
+
_key.data = (void *)key;
|
|
222
|
+
_key.size = (unsigned int)ngtcp2_crypto_aead_keylen(aead);
|
|
223
|
+
|
|
224
|
+
if (gnutls_aead_cipher_init(&hd, cipher, &_key) != 0) {
|
|
225
|
+
return -1;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
aead_ctx->native_handle = hd;
|
|
229
|
+
|
|
230
|
+
return 0;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
void ngtcp2_crypto_aead_ctx_free(ngtcp2_crypto_aead_ctx *aead_ctx) {
|
|
234
|
+
if (aead_ctx->native_handle) {
|
|
235
|
+
gnutls_aead_cipher_deinit(aead_ctx->native_handle);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
int ngtcp2_crypto_cipher_ctx_encrypt_init(ngtcp2_crypto_cipher_ctx *cipher_ctx,
|
|
240
|
+
const ngtcp2_crypto_cipher *cipher,
|
|
241
|
+
const uint8_t *key) {
|
|
242
|
+
gnutls_cipher_algorithm_t _cipher =
|
|
243
|
+
(gnutls_cipher_algorithm_t)(intptr_t)cipher->native_handle;
|
|
244
|
+
gnutls_cipher_hd_t hd;
|
|
245
|
+
gnutls_datum_t _key;
|
|
246
|
+
|
|
247
|
+
_key.data = (void *)key;
|
|
248
|
+
_key.size = (unsigned int)gnutls_cipher_get_key_size(_cipher);
|
|
249
|
+
|
|
250
|
+
if (gnutls_cipher_init(&hd, _cipher, &_key, NULL) != 0) {
|
|
251
|
+
return -1;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
cipher_ctx->native_handle = hd;
|
|
255
|
+
|
|
256
|
+
return 0;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
void ngtcp2_crypto_cipher_ctx_free(ngtcp2_crypto_cipher_ctx *cipher_ctx) {
|
|
260
|
+
if (cipher_ctx->native_handle) {
|
|
261
|
+
gnutls_cipher_deinit(cipher_ctx->native_handle);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
int ngtcp2_crypto_hkdf_extract(uint8_t *dest, const ngtcp2_crypto_md *md,
|
|
266
|
+
const uint8_t *secret, size_t secretlen,
|
|
267
|
+
const uint8_t *salt, size_t saltlen) {
|
|
268
|
+
gnutls_mac_algorithm_t prf =
|
|
269
|
+
(gnutls_mac_algorithm_t)(intptr_t)md->native_handle;
|
|
270
|
+
gnutls_datum_t _secret = {(void *)secret, (unsigned int)secretlen};
|
|
271
|
+
gnutls_datum_t _salt = {(void *)salt, (unsigned int)saltlen};
|
|
272
|
+
|
|
273
|
+
if (gnutls_hkdf_extract(prf, &_secret, &_salt, dest) != 0) {
|
|
274
|
+
return -1;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
return 0;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
int ngtcp2_crypto_hkdf_expand(uint8_t *dest, size_t destlen,
|
|
281
|
+
const ngtcp2_crypto_md *md, const uint8_t *secret,
|
|
282
|
+
size_t secretlen, const uint8_t *info,
|
|
283
|
+
size_t infolen) {
|
|
284
|
+
gnutls_mac_algorithm_t prf =
|
|
285
|
+
(gnutls_mac_algorithm_t)(intptr_t)md->native_handle;
|
|
286
|
+
gnutls_datum_t _secret = {(void *)secret, (unsigned int)secretlen};
|
|
287
|
+
gnutls_datum_t _info = {(void *)info, (unsigned int)infolen};
|
|
288
|
+
|
|
289
|
+
if (gnutls_hkdf_expand(prf, &_secret, &_info, dest, destlen) != 0) {
|
|
290
|
+
return -1;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
return 0;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
int ngtcp2_crypto_hkdf(uint8_t *dest, size_t destlen,
|
|
297
|
+
const ngtcp2_crypto_md *md, const uint8_t *secret,
|
|
298
|
+
size_t secretlen, const uint8_t *salt, size_t saltlen,
|
|
299
|
+
const uint8_t *info, size_t infolen) {
|
|
300
|
+
gnutls_mac_algorithm_t prf =
|
|
301
|
+
(gnutls_mac_algorithm_t)(intptr_t)md->native_handle;
|
|
302
|
+
size_t keylen = ngtcp2_crypto_md_hashlen(md);
|
|
303
|
+
uint8_t key[64];
|
|
304
|
+
gnutls_datum_t _secret = {(void *)secret, (unsigned int)secretlen};
|
|
305
|
+
gnutls_datum_t _key = {(void *)key, (unsigned int)keylen};
|
|
306
|
+
gnutls_datum_t _salt = {(void *)salt, (unsigned int)saltlen};
|
|
307
|
+
gnutls_datum_t _info = {(void *)info, (unsigned int)infolen};
|
|
308
|
+
|
|
309
|
+
assert(keylen <= sizeof(key));
|
|
310
|
+
|
|
311
|
+
if (gnutls_hkdf_extract(prf, &_secret, &_salt, key) != 0) {
|
|
312
|
+
return -1;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
if (gnutls_hkdf_expand(prf, &_key, &_info, dest, destlen) != 0) {
|
|
316
|
+
return -1;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
return 0;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
int ngtcp2_crypto_encrypt(uint8_t *dest, const ngtcp2_crypto_aead *aead,
|
|
323
|
+
const ngtcp2_crypto_aead_ctx *aead_ctx,
|
|
324
|
+
const uint8_t *plaintext, size_t plaintextlen,
|
|
325
|
+
const uint8_t *nonce, size_t noncelen,
|
|
326
|
+
const uint8_t *aad, size_t aadlen) {
|
|
327
|
+
gnutls_cipher_algorithm_t cipher =
|
|
328
|
+
(gnutls_cipher_algorithm_t)(intptr_t)aead->native_handle;
|
|
329
|
+
gnutls_aead_cipher_hd_t hd = aead_ctx->native_handle;
|
|
330
|
+
size_t taglen = gnutls_cipher_get_tag_size(cipher);
|
|
331
|
+
size_t ciphertextlen = plaintextlen + taglen;
|
|
332
|
+
|
|
333
|
+
if (gnutls_aead_cipher_encrypt(hd, nonce, noncelen, aad, aadlen, taglen,
|
|
334
|
+
plaintext, plaintextlen, dest,
|
|
335
|
+
&ciphertextlen) != 0) {
|
|
336
|
+
return -1;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
return 0;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
int ngtcp2_crypto_decrypt(uint8_t *dest, const ngtcp2_crypto_aead *aead,
|
|
343
|
+
const ngtcp2_crypto_aead_ctx *aead_ctx,
|
|
344
|
+
const uint8_t *ciphertext, size_t ciphertextlen,
|
|
345
|
+
const uint8_t *nonce, size_t noncelen,
|
|
346
|
+
const uint8_t *aad, size_t aadlen) {
|
|
347
|
+
gnutls_cipher_algorithm_t cipher =
|
|
348
|
+
(gnutls_cipher_algorithm_t)(intptr_t)aead->native_handle;
|
|
349
|
+
gnutls_aead_cipher_hd_t hd = aead_ctx->native_handle;
|
|
350
|
+
size_t taglen = gnutls_cipher_get_tag_size(cipher);
|
|
351
|
+
size_t plaintextlen;
|
|
352
|
+
|
|
353
|
+
if (taglen > ciphertextlen) {
|
|
354
|
+
return -1;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
plaintextlen = ciphertextlen - taglen;
|
|
358
|
+
|
|
359
|
+
if (gnutls_aead_cipher_decrypt(hd, nonce, noncelen, aad, aadlen, taglen,
|
|
360
|
+
ciphertext, ciphertextlen, dest,
|
|
361
|
+
&plaintextlen) != 0) {
|
|
362
|
+
return -1;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
return 0;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
int ngtcp2_crypto_hp_mask(uint8_t *dest, const ngtcp2_crypto_cipher *hp,
|
|
369
|
+
const ngtcp2_crypto_cipher_ctx *hp_ctx,
|
|
370
|
+
const uint8_t *sample) {
|
|
371
|
+
gnutls_cipher_algorithm_t cipher =
|
|
372
|
+
(gnutls_cipher_algorithm_t)(intptr_t)hp->native_handle;
|
|
373
|
+
gnutls_cipher_hd_t hd = hp_ctx->native_handle;
|
|
374
|
+
|
|
375
|
+
switch (cipher) {
|
|
376
|
+
case GNUTLS_CIPHER_AES_128_CBC:
|
|
377
|
+
case GNUTLS_CIPHER_AES_256_CBC: {
|
|
378
|
+
uint8_t iv[16];
|
|
379
|
+
uint8_t buf[16];
|
|
380
|
+
|
|
381
|
+
/* Emulate one block AES-ECB by invalidating the effect of IV */
|
|
382
|
+
memset(iv, 0, sizeof(iv));
|
|
383
|
+
|
|
384
|
+
gnutls_cipher_set_iv(hd, iv, sizeof(iv));
|
|
385
|
+
|
|
386
|
+
if (gnutls_cipher_encrypt2(hd, sample, 16, buf, sizeof(buf)) != 0) {
|
|
387
|
+
return -1;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
memcpy(dest, buf, 5);
|
|
391
|
+
} break;
|
|
392
|
+
|
|
393
|
+
case GNUTLS_CIPHER_CHACHA20_32: {
|
|
394
|
+
static const uint8_t PLAINTEXT[] = "\x00\x00\x00\x00\x00";
|
|
395
|
+
uint8_t buf[5 + 16];
|
|
396
|
+
size_t buflen = sizeof(buf);
|
|
397
|
+
|
|
398
|
+
gnutls_cipher_set_iv(hd, (void *)sample, 16);
|
|
399
|
+
|
|
400
|
+
if (gnutls_cipher_encrypt2(hd, PLAINTEXT, sizeof(PLAINTEXT) - 1, buf,
|
|
401
|
+
buflen) != 0) {
|
|
402
|
+
return -1;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
memcpy(dest, buf, 5);
|
|
406
|
+
} break;
|
|
407
|
+
default:
|
|
408
|
+
assert(0);
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
return 0;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
ngtcp2_crypto_level ngtcp2_crypto_gnutls_from_gnutls_record_encryption_level(
|
|
415
|
+
gnutls_record_encryption_level_t gtls_level) {
|
|
416
|
+
switch (gtls_level) {
|
|
417
|
+
case GNUTLS_ENCRYPTION_LEVEL_INITIAL:
|
|
418
|
+
return NGTCP2_CRYPTO_LEVEL_INITIAL;
|
|
419
|
+
case GNUTLS_ENCRYPTION_LEVEL_HANDSHAKE:
|
|
420
|
+
return NGTCP2_CRYPTO_LEVEL_HANDSHAKE;
|
|
421
|
+
case GNUTLS_ENCRYPTION_LEVEL_APPLICATION:
|
|
422
|
+
return NGTCP2_CRYPTO_LEVEL_APPLICATION;
|
|
423
|
+
case GNUTLS_ENCRYPTION_LEVEL_EARLY:
|
|
424
|
+
return NGTCP2_CRYPTO_LEVEL_EARLY;
|
|
425
|
+
default:
|
|
426
|
+
assert(0);
|
|
427
|
+
abort();
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
gnutls_record_encryption_level_t
|
|
432
|
+
ngtcp2_crypto_gnutls_from_ngtcp2_level(ngtcp2_crypto_level crypto_level) {
|
|
433
|
+
switch (crypto_level) {
|
|
434
|
+
case NGTCP2_CRYPTO_LEVEL_INITIAL:
|
|
435
|
+
return GNUTLS_ENCRYPTION_LEVEL_INITIAL;
|
|
436
|
+
case NGTCP2_CRYPTO_LEVEL_HANDSHAKE:
|
|
437
|
+
return GNUTLS_ENCRYPTION_LEVEL_HANDSHAKE;
|
|
438
|
+
case NGTCP2_CRYPTO_LEVEL_APPLICATION:
|
|
439
|
+
return GNUTLS_ENCRYPTION_LEVEL_APPLICATION;
|
|
440
|
+
case NGTCP2_CRYPTO_LEVEL_EARLY:
|
|
441
|
+
return GNUTLS_ENCRYPTION_LEVEL_EARLY;
|
|
442
|
+
default:
|
|
443
|
+
assert(0);
|
|
444
|
+
abort();
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
int ngtcp2_crypto_read_write_crypto_data(ngtcp2_conn *conn,
|
|
449
|
+
ngtcp2_crypto_level crypto_level,
|
|
450
|
+
const uint8_t *data, size_t datalen) {
|
|
451
|
+
gnutls_session_t session = ngtcp2_conn_get_tls_native_handle(conn);
|
|
452
|
+
int rv;
|
|
453
|
+
|
|
454
|
+
if (datalen > 0) {
|
|
455
|
+
rv = gnutls_handshake_write(
|
|
456
|
+
session, ngtcp2_crypto_gnutls_from_ngtcp2_level(crypto_level), data,
|
|
457
|
+
datalen);
|
|
458
|
+
if (rv != 0) {
|
|
459
|
+
if (!gnutls_error_is_fatal(rv)) {
|
|
460
|
+
return 0;
|
|
461
|
+
}
|
|
462
|
+
gnutls_alert_send_appropriate(session, rv);
|
|
463
|
+
return -1;
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
if (!ngtcp2_conn_get_handshake_completed(conn)) {
|
|
468
|
+
rv = gnutls_handshake(session);
|
|
469
|
+
if (rv < 0) {
|
|
470
|
+
if (!gnutls_error_is_fatal(rv)) {
|
|
471
|
+
return 0;
|
|
472
|
+
}
|
|
473
|
+
gnutls_alert_send_appropriate(session, rv);
|
|
474
|
+
return -1;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
ngtcp2_conn_handshake_completed(conn);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
return 0;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
int ngtcp2_crypto_set_remote_transport_params(ngtcp2_conn *conn, void *tls) {
|
|
484
|
+
(void)conn;
|
|
485
|
+
(void)tls;
|
|
486
|
+
/* Nothing to do; GnuTLS applications are supposed to register the
|
|
487
|
+
quic_transport_parameters extension with
|
|
488
|
+
gnutls_session_ext_register. */
|
|
489
|
+
return 0;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
int ngtcp2_crypto_set_local_transport_params(void *tls, const uint8_t *buf,
|
|
493
|
+
size_t len) {
|
|
494
|
+
(void)tls;
|
|
495
|
+
(void)buf;
|
|
496
|
+
(void)len;
|
|
497
|
+
/* Nothing to do; GnuTLS applications are supposed to register the
|
|
498
|
+
quic_transport_parameters extension with
|
|
499
|
+
gnutls_session_ext_register. */
|
|
500
|
+
return 0;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
int ngtcp2_crypto_get_path_challenge_data_cb(ngtcp2_conn *conn, uint8_t *data,
|
|
504
|
+
void *user_data) {
|
|
505
|
+
(void)conn;
|
|
506
|
+
(void)user_data;
|
|
507
|
+
|
|
508
|
+
if (gnutls_rnd(GNUTLS_RND_RANDOM, data, NGTCP2_PATH_CHALLENGE_DATALEN) != 0) {
|
|
509
|
+
return NGTCP2_ERR_CALLBACK_FAILURE;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
return 0;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
int ngtcp2_crypto_random(uint8_t *data, size_t datalen) {
|
|
516
|
+
if (gnutls_rnd(GNUTLS_RND_RANDOM, data, datalen) != 0) {
|
|
517
|
+
return -1;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
return 0;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
static int secret_func(gnutls_session_t session,
|
|
524
|
+
gnutls_record_encryption_level_t gtls_level,
|
|
525
|
+
const void *rx_secret, const void *tx_secret,
|
|
526
|
+
size_t secretlen) {
|
|
527
|
+
ngtcp2_crypto_conn_ref *conn_ref = gnutls_session_get_ptr(session);
|
|
528
|
+
ngtcp2_conn *conn = conn_ref->get_conn(conn_ref);
|
|
529
|
+
ngtcp2_crypto_level level =
|
|
530
|
+
ngtcp2_crypto_gnutls_from_gnutls_record_encryption_level(gtls_level);
|
|
531
|
+
|
|
532
|
+
if (rx_secret &&
|
|
533
|
+
ngtcp2_crypto_derive_and_install_rx_key(conn, NULL, NULL, NULL, level,
|
|
534
|
+
rx_secret, secretlen) != 0) {
|
|
535
|
+
return -1;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
if (tx_secret &&
|
|
539
|
+
ngtcp2_crypto_derive_and_install_tx_key(conn, NULL, NULL, NULL, level,
|
|
540
|
+
tx_secret, secretlen) != 0) {
|
|
541
|
+
return -1;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
return 0;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
static int read_func(gnutls_session_t session,
|
|
548
|
+
gnutls_record_encryption_level_t gtls_level,
|
|
549
|
+
gnutls_handshake_description_t htype, const void *data,
|
|
550
|
+
size_t datalen) {
|
|
551
|
+
ngtcp2_crypto_conn_ref *conn_ref = gnutls_session_get_ptr(session);
|
|
552
|
+
ngtcp2_conn *conn = conn_ref->get_conn(conn_ref);
|
|
553
|
+
ngtcp2_crypto_level level =
|
|
554
|
+
ngtcp2_crypto_gnutls_from_gnutls_record_encryption_level(gtls_level);
|
|
555
|
+
int rv;
|
|
556
|
+
|
|
557
|
+
if (htype == GNUTLS_HANDSHAKE_CHANGE_CIPHER_SPEC) {
|
|
558
|
+
return 0;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
rv = ngtcp2_conn_submit_crypto_data(conn, level, data, datalen);
|
|
562
|
+
if (rv != 0) {
|
|
563
|
+
ngtcp2_conn_set_tls_error(conn, rv);
|
|
564
|
+
return -1;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
return 0;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
static int alert_read_func(gnutls_session_t session,
|
|
571
|
+
gnutls_record_encryption_level_t gtls_level,
|
|
572
|
+
gnutls_alert_level_t alert_level,
|
|
573
|
+
gnutls_alert_description_t alert_desc) {
|
|
574
|
+
ngtcp2_crypto_conn_ref *conn_ref = gnutls_session_get_ptr(session);
|
|
575
|
+
ngtcp2_conn *conn = conn_ref->get_conn(conn_ref);
|
|
576
|
+
(void)gtls_level;
|
|
577
|
+
(void)alert_level;
|
|
578
|
+
|
|
579
|
+
ngtcp2_conn_set_tls_alert(conn, (uint8_t)alert_desc);
|
|
580
|
+
|
|
581
|
+
return 0;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
static int tp_recv_func(gnutls_session_t session, const uint8_t *data,
|
|
585
|
+
size_t datalen) {
|
|
586
|
+
ngtcp2_crypto_conn_ref *conn_ref = gnutls_session_get_ptr(session);
|
|
587
|
+
ngtcp2_conn *conn = conn_ref->get_conn(conn_ref);
|
|
588
|
+
int rv;
|
|
589
|
+
|
|
590
|
+
rv = ngtcp2_conn_decode_remote_transport_params(conn, data, datalen);
|
|
591
|
+
if (rv != 0) {
|
|
592
|
+
ngtcp2_conn_set_tls_error(conn, rv);
|
|
593
|
+
return -1;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
return 0;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
static int tp_send_func(gnutls_session_t session, gnutls_buffer_t extdata) {
|
|
600
|
+
ngtcp2_crypto_conn_ref *conn_ref = gnutls_session_get_ptr(session);
|
|
601
|
+
ngtcp2_conn *conn = conn_ref->get_conn(conn_ref);
|
|
602
|
+
uint8_t buf[256];
|
|
603
|
+
ngtcp2_ssize nwrite;
|
|
604
|
+
int rv;
|
|
605
|
+
|
|
606
|
+
nwrite = ngtcp2_conn_encode_local_transport_params(conn, buf, sizeof(buf));
|
|
607
|
+
if (nwrite < 0) {
|
|
608
|
+
return -1;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
rv = gnutls_buffer_append_data(extdata, buf, (size_t)nwrite);
|
|
612
|
+
if (rv != 0) {
|
|
613
|
+
return -1;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
return 0;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
static int crypto_gnutls_configure_session(gnutls_session_t session) {
|
|
620
|
+
int rv;
|
|
621
|
+
|
|
622
|
+
gnutls_handshake_set_secret_function(session, secret_func);
|
|
623
|
+
gnutls_handshake_set_read_function(session, read_func);
|
|
624
|
+
gnutls_alert_set_read_function(session, alert_read_func);
|
|
625
|
+
|
|
626
|
+
rv = gnutls_session_ext_register(
|
|
627
|
+
session, "QUIC Transport Parameters",
|
|
628
|
+
NGTCP2_TLSEXT_QUIC_TRANSPORT_PARAMETERS_V1, GNUTLS_EXT_TLS, tp_recv_func,
|
|
629
|
+
tp_send_func, NULL, NULL, NULL,
|
|
630
|
+
GNUTLS_EXT_FLAG_TLS | GNUTLS_EXT_FLAG_CLIENT_HELLO | GNUTLS_EXT_FLAG_EE);
|
|
631
|
+
if (rv != 0) {
|
|
632
|
+
return -1;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
return 0;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
int ngtcp2_crypto_gnutls_configure_server_session(gnutls_session_t session) {
|
|
639
|
+
return crypto_gnutls_configure_session(session);
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
int ngtcp2_crypto_gnutls_configure_client_session(gnutls_session_t session) {
|
|
643
|
+
return crypto_gnutls_configure_session(session);
|
|
644
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# ngtcp2
|
|
2
|
+
|
|
3
|
+
# Copyright (c) 2020 ngtcp2 contributors
|
|
4
|
+
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
# a copy of this software and associated documentation files (the
|
|
7
|
+
# "Software"), to deal in the Software without restriction, including
|
|
8
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
# the following conditions:
|
|
12
|
+
|
|
13
|
+
# The above copyright notice and this permission notice shall be
|
|
14
|
+
# included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
prefix=@prefix@
|
|
24
|
+
exec_prefix=@exec_prefix@
|
|
25
|
+
libdir=@libdir@
|
|
26
|
+
includedir=@includedir@
|
|
27
|
+
|
|
28
|
+
Name: libngtcp2_crypto_gnutls
|
|
29
|
+
Description: ngtcp2 GnuTLS crypto library
|
|
30
|
+
URL: https://github.com/ngtcp2/ngtcp2
|
|
31
|
+
Version: @VERSION@
|
|
32
|
+
Libs: -L${libdir} -lngtcp2_crypto_gnutls
|
|
33
|
+
Cflags: -I${includedir}
|