2019-06-08 15:05:25 +02:00
|
|
|
/*
|
|
|
|
* nghttp2 - HTTP/2 C Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 nghttp2 contributors
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include "h2load_quic.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <openssl/err.h>
|
|
|
|
|
|
|
|
#include "h2load_http3_session.h"
|
|
|
|
|
|
|
|
namespace h2load {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
auto randgen = util::make_mt19937();
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int recv_crypto_data(ngtcp2_conn *conn, ngtcp2_crypto_level crypto_level,
|
|
|
|
uint64_t offset, const uint8_t *data, size_t datalen,
|
|
|
|
void *user_data) {
|
|
|
|
auto c = static_cast<Client *>(user_data);
|
|
|
|
|
|
|
|
if (c->quic_recv_crypto_data(crypto_level, data, datalen) != 0) {
|
|
|
|
return NGTCP2_ERR_CRYPTO;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int Client::quic_recv_crypto_data(ngtcp2_crypto_level crypto_level,
|
|
|
|
const uint8_t *data, size_t datalen) {
|
2019-08-29 10:15:59 +02:00
|
|
|
return ngtcp2_crypto_read_write_crypto_data(quic.conn, ssl, crypto_level,
|
|
|
|
data, datalen);
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int handshake_completed(ngtcp2_conn *conn, void *user_data) {
|
|
|
|
auto c = static_cast<Client *>(user_data);
|
|
|
|
|
|
|
|
if (c->quic_handshake_completed() != 0) {
|
|
|
|
return NGTCP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2019-08-29 10:15:59 +02:00
|
|
|
int Client::quic_handshake_completed() { return connection_made(); }
|
2019-06-08 15:05:25 +02:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
int recv_stream_data(ngtcp2_conn *conn, int64_t stream_id, int fin,
|
|
|
|
uint64_t offset, const uint8_t *data, size_t datalen,
|
|
|
|
void *user_data, void *stream_user_data) {
|
|
|
|
auto c = static_cast<Client *>(user_data);
|
|
|
|
if (c->quic_recv_stream_data(stream_id, fin, data, datalen) != 0) {
|
|
|
|
// TODO Better to do this gracefully rather than
|
|
|
|
// NGTCP2_ERR_CALLBACK_FAILURE. Perhaps, call
|
|
|
|
// ngtcp2_conn_write_application_close() ?
|
2019-08-31 10:33:00 +02:00
|
|
|
return NGTCP2_ERR_CALLBACK_FAILURE;
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int Client::quic_recv_stream_data(int64_t stream_id, int fin,
|
|
|
|
const uint8_t *data, size_t datalen) {
|
2019-11-20 15:40:21 +01:00
|
|
|
if (worker->current_phase == Phase::MAIN_DURATION) {
|
|
|
|
worker->stats.bytes_total += datalen;
|
|
|
|
}
|
|
|
|
|
2019-06-08 15:05:25 +02:00
|
|
|
auto s = static_cast<Http3Session *>(session.get());
|
|
|
|
auto nconsumed = s->read_stream(stream_id, data, datalen, fin);
|
|
|
|
if (nconsumed == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngtcp2_conn_extend_max_stream_offset(quic.conn, stream_id, nconsumed);
|
|
|
|
ngtcp2_conn_extend_max_offset(quic.conn, nconsumed);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-31 10:33:11 +02:00
|
|
|
namespace {
|
|
|
|
int acked_stream_data_offset(ngtcp2_conn *conn, int64_t stream_id,
|
|
|
|
uint64_t offset, size_t datalen, void *user_data,
|
|
|
|
void *stream_user_data) {
|
|
|
|
auto c = static_cast<Client *>(user_data);
|
|
|
|
if (c->quic_acked_stream_data_offset(stream_id, datalen) != 0) {
|
|
|
|
return NGTCP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int Client::quic_acked_stream_data_offset(int64_t stream_id, size_t datalen) {
|
|
|
|
auto s = static_cast<Http3Session *>(session.get());
|
|
|
|
if (s->add_ack_offset(stream_id, datalen) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-06-08 15:05:25 +02:00
|
|
|
namespace {
|
2019-07-14 15:11:42 +02:00
|
|
|
int stream_close(ngtcp2_conn *conn, int64_t stream_id, uint64_t app_error_code,
|
2019-06-08 15:05:25 +02:00
|
|
|
void *user_data, void *stream_user_data) {
|
|
|
|
auto c = static_cast<Client *>(user_data);
|
|
|
|
if (c->quic_stream_close(stream_id, app_error_code) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2019-07-14 15:11:42 +02:00
|
|
|
int Client::quic_stream_close(int64_t stream_id, uint64_t app_error_code) {
|
2019-06-08 15:05:25 +02:00
|
|
|
auto s = static_cast<Http3Session *>(session.get());
|
2019-11-06 14:49:22 +01:00
|
|
|
if (s->close_stream(stream_id, app_error_code == 0 ? NGHTTP3_H3_NO_ERROR
|
2019-09-16 06:28:18 +02:00
|
|
|
: app_error_code) != 0) {
|
2019-06-08 15:05:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int stream_reset(ngtcp2_conn *conn, int64_t stream_id, uint64_t final_size,
|
2019-07-14 15:11:42 +02:00
|
|
|
uint64_t app_error_code, void *user_data,
|
2019-06-08 15:05:25 +02:00
|
|
|
void *stream_user_data) {
|
|
|
|
auto c = static_cast<Client *>(user_data);
|
|
|
|
if (c->quic_stream_reset(stream_id, app_error_code) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2019-07-14 15:11:42 +02:00
|
|
|
int Client::quic_stream_reset(int64_t stream_id, uint64_t app_error_code) {
|
2019-06-08 15:05:25 +02:00
|
|
|
auto s = static_cast<Http3Session *>(session.get());
|
|
|
|
if (s->reset_stream(stream_id) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int extend_max_local_streams_bidi(ngtcp2_conn *conn, uint64_t max_streams,
|
|
|
|
void *user_data) {
|
|
|
|
auto c = static_cast<Client *>(user_data);
|
|
|
|
|
|
|
|
if (c->quic_extend_max_local_streams() != 0) {
|
|
|
|
return NGTCP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int Client::quic_extend_max_local_streams() {
|
|
|
|
auto s = static_cast<Http3Session *>(session.get());
|
|
|
|
if (s->extend_max_local_streams() != 0) {
|
|
|
|
return NGTCP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int get_new_connection_id(ngtcp2_conn *conn, ngtcp2_cid *cid, uint8_t *token,
|
|
|
|
size_t cidlen, void *user_data) {
|
|
|
|
auto dis = std::uniform_int_distribution<uint8_t>(
|
|
|
|
0, std::numeric_limits<uint8_t>::max());
|
|
|
|
auto f = [&dis]() { return dis(randgen); };
|
|
|
|
|
|
|
|
std::generate_n(cid->data, cidlen, f);
|
|
|
|
cid->datalen = cidlen;
|
|
|
|
std::generate_n(token, NGTCP2_STATELESS_RESET_TOKENLEN, f);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void debug_log_printf(void *user_data, const char *fmt, ...) {
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
2019-07-24 16:15:15 +02:00
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void generate_cid(ngtcp2_cid &dest) {
|
|
|
|
auto dis = std::uniform_int_distribution<uint8_t>(
|
|
|
|
0, std::numeric_limits<uint8_t>::max());
|
|
|
|
dest.datalen = 8;
|
|
|
|
std::generate_n(dest.data, dest.datalen, [&dis]() { return dis(randgen); });
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2019-07-24 16:15:38 +02:00
|
|
|
namespace {
|
|
|
|
int select_preferred_addr(ngtcp2_conn *conn, ngtcp2_addr *dest,
|
|
|
|
const ngtcp2_preferred_addr *paddr, void *user_data) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2019-06-08 15:05:25 +02:00
|
|
|
namespace {
|
|
|
|
ngtcp2_tstamp timestamp(struct ev_loop *loop) {
|
|
|
|
return ev_now(loop) * NGTCP2_SECONDS;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2019-08-29 10:15:59 +02:00
|
|
|
ngtcp2_crypto_level from_ossl_level(OSSL_ENCRYPTION_LEVEL ossl_level) {
|
|
|
|
switch (ossl_level) {
|
|
|
|
case ssl_encryption_initial:
|
|
|
|
return NGTCP2_CRYPTO_LEVEL_INITIAL;
|
|
|
|
case ssl_encryption_early_data:
|
|
|
|
return NGTCP2_CRYPTO_LEVEL_EARLY;
|
|
|
|
case ssl_encryption_handshake:
|
|
|
|
return NGTCP2_CRYPTO_LEVEL_HANDSHAKE;
|
|
|
|
case ssl_encryption_application:
|
|
|
|
return NGTCP2_CRYPTO_LEVEL_APP;
|
|
|
|
default:
|
|
|
|
assert(0);
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2019-08-29 10:15:59 +02:00
|
|
|
int set_encryption_secrets(SSL *ssl, OSSL_ENCRYPTION_LEVEL ossl_level,
|
|
|
|
const uint8_t *rx_secret, const uint8_t *tx_secret,
|
|
|
|
size_t secret_len) {
|
|
|
|
auto c = static_cast<Client *>(SSL_get_app_data(ssl));
|
2019-06-08 15:05:25 +02:00
|
|
|
|
2019-08-29 10:15:59 +02:00
|
|
|
if (c->quic_on_key(from_ossl_level(ossl_level), rx_secret, tx_secret,
|
|
|
|
secret_len) != 0) {
|
|
|
|
return 0;
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2019-08-29 10:15:59 +02:00
|
|
|
int add_handshake_data(SSL *ssl, OSSL_ENCRYPTION_LEVEL ossl_level,
|
|
|
|
const uint8_t *data, size_t len) {
|
|
|
|
auto c = static_cast<Client *>(SSL_get_app_data(ssl));
|
|
|
|
c->quic_write_client_handshake(from_ossl_level(ossl_level), data, len);
|
2019-06-08 15:05:25 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2019-08-29 10:15:59 +02:00
|
|
|
int flush_flight(SSL *ssl) { return 1; }
|
2019-06-08 15:05:25 +02:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2019-08-29 10:15:59 +02:00
|
|
|
int send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert) {
|
|
|
|
auto c = static_cast<Client *>(SSL_get_app_data(ssl));
|
|
|
|
c->quic_set_tls_alert(alert);
|
2019-06-08 15:05:25 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2019-08-29 10:15:59 +02:00
|
|
|
auto quic_method = SSL_QUIC_METHOD{
|
|
|
|
set_encryption_secrets,
|
|
|
|
add_handshake_data,
|
|
|
|
flush_flight,
|
|
|
|
send_alert,
|
|
|
|
};
|
2019-06-08 15:05:25 +02:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int Client::quic_init(const sockaddr *local_addr, socklen_t local_addrlen,
|
|
|
|
const sockaddr *remote_addr, socklen_t remote_addrlen) {
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
if (!ssl) {
|
|
|
|
ssl = SSL_new(worker->ssl_ctx);
|
|
|
|
|
|
|
|
SSL_set_app_data(ssl, this);
|
|
|
|
SSL_set_connect_state(ssl);
|
2019-08-29 10:15:59 +02:00
|
|
|
SSL_set_quic_method(ssl, &quic_method);
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (remote_addr->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
quic.max_pktlen = NGTCP2_MAX_PKTLEN_IPV4;
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
quic.max_pktlen = NGTCP2_MAX_PKTLEN_IPV6;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto callbacks = ngtcp2_conn_callbacks{
|
2020-05-22 15:11:50 +02:00
|
|
|
ngtcp2_crypto_client_initial_cb,
|
2019-06-08 15:05:25 +02:00
|
|
|
nullptr, // recv_client_initial
|
|
|
|
h2load::recv_crypto_data,
|
|
|
|
h2load::handshake_completed,
|
|
|
|
nullptr, // recv_version_negotiation
|
2019-08-29 10:15:59 +02:00
|
|
|
ngtcp2_crypto_encrypt_cb,
|
|
|
|
ngtcp2_crypto_decrypt_cb,
|
|
|
|
ngtcp2_crypto_hp_mask_cb,
|
2019-06-08 15:05:25 +02:00
|
|
|
h2load::recv_stream_data,
|
|
|
|
nullptr, // acked_crypto_offset
|
2019-08-31 10:33:11 +02:00
|
|
|
h2load::acked_stream_data_offset,
|
2019-06-08 15:05:25 +02:00
|
|
|
nullptr, // stream_open
|
|
|
|
h2load::stream_close,
|
|
|
|
nullptr, // recv_stateless_reset
|
2020-05-22 15:11:50 +02:00
|
|
|
ngtcp2_crypto_recv_retry_cb,
|
2019-06-08 15:05:25 +02:00
|
|
|
h2load::extend_max_local_streams_bidi,
|
|
|
|
nullptr, // extend_max_local_streams_uni
|
|
|
|
nullptr, // rand
|
|
|
|
get_new_connection_id,
|
|
|
|
nullptr, // remove_connection_id
|
2019-12-28 02:09:17 +01:00
|
|
|
ngtcp2_crypto_update_key_cb,
|
2019-06-08 15:05:25 +02:00
|
|
|
nullptr, // path_validation
|
2019-07-24 16:15:38 +02:00
|
|
|
select_preferred_addr,
|
2019-06-08 15:05:25 +02:00
|
|
|
h2load::stream_reset,
|
|
|
|
nullptr, // extend_max_remote_streams_bidi
|
|
|
|
nullptr, // extend_max_remote_streams_uni
|
|
|
|
nullptr, // extend_max_stream_data
|
|
|
|
};
|
|
|
|
|
|
|
|
ngtcp2_cid scid, dcid;
|
|
|
|
generate_cid(scid);
|
|
|
|
generate_cid(dcid);
|
|
|
|
|
2019-06-15 10:49:46 +02:00
|
|
|
auto config = worker->config;
|
|
|
|
|
2019-06-08 15:05:25 +02:00
|
|
|
ngtcp2_settings settings;
|
|
|
|
ngtcp2_settings_default(&settings);
|
2019-07-24 16:15:15 +02:00
|
|
|
if (config->verbose) {
|
|
|
|
settings.log_printf = debug_log_printf;
|
|
|
|
}
|
2019-06-08 15:05:25 +02:00
|
|
|
settings.initial_ts = timestamp(worker->loop);
|
2019-10-03 03:11:37 +02:00
|
|
|
auto ¶ms = settings.transport_params;
|
|
|
|
params.initial_max_stream_data_bidi_local = (1 << config->window_bits) - 1;
|
|
|
|
params.initial_max_stream_data_uni = (1 << config->window_bits) - 1;
|
|
|
|
params.initial_max_data = (1 << config->connection_window_bits) - 1;
|
|
|
|
params.initial_max_streams_bidi = 0;
|
|
|
|
params.initial_max_streams_uni = 100;
|
2020-01-30 09:01:56 +01:00
|
|
|
params.max_idle_timeout = 30 * NGTCP2_SECONDS;
|
2020-05-22 15:11:50 +02:00
|
|
|
params.max_udp_payload_size = quic.max_pktlen;
|
2019-06-08 15:05:25 +02:00
|
|
|
|
|
|
|
auto path = ngtcp2_path{
|
|
|
|
{local_addrlen,
|
|
|
|
const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(local_addr))},
|
|
|
|
{remote_addrlen,
|
|
|
|
const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(remote_addr))},
|
|
|
|
};
|
|
|
|
|
|
|
|
rv = ngtcp2_conn_client_new(&quic.conn, &dcid, &scid, &path, NGTCP2_PROTO_VER,
|
|
|
|
&callbacks, &settings, nullptr, this);
|
|
|
|
if (rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-05-22 15:11:50 +02:00
|
|
|
ngtcp2_conn_set_tls(quic.conn, ssl);
|
2019-06-08 15:05:25 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Client::quic_free() { ngtcp2_conn_del(quic.conn); }
|
|
|
|
|
|
|
|
void Client::quic_close_connection() {
|
|
|
|
if (!quic.conn) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::array<uint8_t, 1500> buf;
|
2019-11-09 10:00:46 +01:00
|
|
|
ngtcp2_ssize nwrite;
|
2019-06-08 15:05:25 +02:00
|
|
|
ngtcp2_path_storage ps;
|
|
|
|
ngtcp2_path_storage_zero(&ps);
|
|
|
|
|
|
|
|
switch (quic.last_error.type) {
|
|
|
|
case quic::ErrorType::TransportVersionNegotiation:
|
|
|
|
return;
|
|
|
|
case quic::ErrorType::Transport:
|
|
|
|
nwrite = ngtcp2_conn_write_connection_close(
|
|
|
|
quic.conn, &ps.path, buf.data(), quic.max_pktlen, quic.last_error.code,
|
|
|
|
timestamp(worker->loop));
|
|
|
|
break;
|
|
|
|
case quic::ErrorType::Application:
|
|
|
|
nwrite = ngtcp2_conn_write_application_close(
|
|
|
|
quic.conn, &ps.path, buf.data(), quic.max_pktlen, quic.last_error.code,
|
|
|
|
timestamp(worker->loop));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nwrite < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
write_udp(reinterpret_cast<sockaddr *>(ps.path.remote.addr),
|
|
|
|
ps.path.remote.addrlen, buf.data(), nwrite);
|
|
|
|
}
|
|
|
|
|
2019-08-29 10:15:59 +02:00
|
|
|
int Client::quic_on_key(ngtcp2_crypto_level level, const uint8_t *rx_secret,
|
|
|
|
const uint8_t *tx_secret, size_t secretlen) {
|
2020-05-22 15:11:50 +02:00
|
|
|
if (ngtcp2_crypto_derive_and_install_rx_key(quic.conn, ssl, nullptr, nullptr,
|
2020-04-02 10:44:41 +02:00
|
|
|
nullptr, level, rx_secret,
|
|
|
|
secretlen) != 0) {
|
|
|
|
std::cerr << "ngtcp2_crypto_derive_and_install_rx_key() failed"
|
|
|
|
<< std::endl;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngtcp2_crypto_derive_and_install_tx_key(quic.conn, ssl, nullptr, nullptr,
|
|
|
|
nullptr, level, tx_secret,
|
|
|
|
secretlen) != 0) {
|
|
|
|
std::cerr << "ngtcp2_crypto_derive_and_install_tx_key() failed"
|
|
|
|
<< std::endl;
|
2019-06-08 15:05:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2019-08-29 10:15:59 +02:00
|
|
|
if (level == NGTCP2_CRYPTO_LEVEL_APP) {
|
|
|
|
auto s = std::make_unique<Http3Session>(this);
|
|
|
|
if (s->init_conn() == -1) {
|
2019-06-08 15:05:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2019-08-29 10:15:59 +02:00
|
|
|
session = std::move(s);
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Client::quic_set_tls_alert(uint8_t alert) {
|
|
|
|
quic.last_error = quic::err_transport_tls(alert);
|
|
|
|
}
|
|
|
|
|
2019-08-29 10:15:59 +02:00
|
|
|
void Client::quic_write_client_handshake(ngtcp2_crypto_level level,
|
|
|
|
const uint8_t *data, size_t datalen) {
|
|
|
|
assert(level < 2);
|
|
|
|
auto &crypto = quic.crypto[level];
|
2019-06-08 15:05:25 +02:00
|
|
|
assert(crypto.data.size() >= crypto.datalen + datalen);
|
|
|
|
|
|
|
|
auto p = std::begin(crypto.data) + crypto.datalen;
|
|
|
|
std::copy_n(data, datalen, p);
|
|
|
|
crypto.datalen += datalen;
|
|
|
|
|
2019-08-29 10:15:59 +02:00
|
|
|
ngtcp2_conn_submit_crypto_data(quic.conn, level, p, datalen);
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void quic_pkt_timeout_cb(struct ev_loop *loop, ev_timer *w, int revents) {
|
|
|
|
auto c = static_cast<Client *>(w->data);
|
|
|
|
|
|
|
|
if (c->quic_pkt_timeout() != 0) {
|
|
|
|
c->fail();
|
|
|
|
c->worker->free_client(c);
|
|
|
|
delete c;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int Client::quic_pkt_timeout() {
|
|
|
|
int rv;
|
|
|
|
auto now = timestamp(worker->loop);
|
|
|
|
|
|
|
|
if (ngtcp2_conn_loss_detection_expiry(quic.conn) <= now) {
|
|
|
|
rv = ngtcp2_conn_on_loss_detection_timer(quic.conn, now);
|
|
|
|
if (rv != 0) {
|
|
|
|
quic.last_error = quic::err_transport(NGTCP2_ERR_INTERNAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ngtcp2_conn_ack_delay_expiry(quic.conn) <= now) {
|
|
|
|
ngtcp2_conn_cancel_expired_ack_delay_timer(quic.conn, now);
|
|
|
|
}
|
2019-07-24 16:13:25 +02:00
|
|
|
|
|
|
|
return write_quic();
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Client::quic_restart_pkt_timer() {
|
|
|
|
auto expiry = ngtcp2_conn_get_expiry(quic.conn);
|
|
|
|
auto now = timestamp(worker->loop);
|
2019-09-07 16:27:29 +02:00
|
|
|
auto t = expiry > now ? static_cast<ev_tstamp>(expiry - now) / NGTCP2_SECONDS
|
|
|
|
: 1e-9;
|
2019-06-08 15:05:25 +02:00
|
|
|
quic.pkt_timer.repeat = t;
|
|
|
|
ev_timer_again(worker->loop, &quic.pkt_timer);
|
|
|
|
}
|
|
|
|
|
|
|
|
int Client::read_quic() {
|
|
|
|
std::array<uint8_t, 1500> buf;
|
|
|
|
sockaddr_union su;
|
|
|
|
socklen_t addrlen = sizeof(su);
|
|
|
|
int rv;
|
2019-11-20 15:40:51 +01:00
|
|
|
size_t pktcnt = 0;
|
2019-06-08 15:05:25 +02:00
|
|
|
|
2019-11-20 15:40:51 +01:00
|
|
|
for (;;) {
|
|
|
|
auto nread =
|
|
|
|
recvfrom(fd, buf.data(), buf.size(), MSG_DONTWAIT, &su.sa, &addrlen);
|
|
|
|
if (nread == -1) {
|
|
|
|
return 0;
|
|
|
|
}
|
2019-06-08 15:05:25 +02:00
|
|
|
|
2019-11-20 15:40:51 +01:00
|
|
|
assert(quic.conn);
|
2019-06-08 15:05:25 +02:00
|
|
|
|
2019-11-20 15:40:51 +01:00
|
|
|
auto path = ngtcp2_path{
|
|
|
|
{local_addr.len, reinterpret_cast<uint8_t *>(&local_addr.su.sa)},
|
|
|
|
{addrlen, reinterpret_cast<uint8_t *>(&su.sa)},
|
|
|
|
};
|
2019-06-08 15:05:25 +02:00
|
|
|
|
2019-11-20 15:40:51 +01:00
|
|
|
rv = ngtcp2_conn_read_pkt(quic.conn, &path, buf.data(), nread,
|
|
|
|
timestamp(worker->loop));
|
|
|
|
if (rv != 0) {
|
|
|
|
std::cerr << "ngtcp2_conn_read_pkt: " << ngtcp2_strerror(rv) << std::endl;
|
|
|
|
return -1;
|
|
|
|
}
|
2019-06-08 15:05:25 +02:00
|
|
|
|
2019-11-20 15:40:51 +01:00
|
|
|
if (pktcnt == 10) {
|
|
|
|
break;
|
|
|
|
}
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Client::write_quic() {
|
2019-11-20 15:40:51 +01:00
|
|
|
ev_io_stop(worker->loop, &wev);
|
|
|
|
|
2019-06-08 15:05:25 +02:00
|
|
|
if (quic.close_requested) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::array<nghttp3_vec, 16> vec;
|
|
|
|
std::array<uint8_t, 1500> buf;
|
|
|
|
ngtcp2_path_storage ps;
|
|
|
|
|
|
|
|
ngtcp2_path_storage_zero(&ps);
|
|
|
|
|
2019-06-15 07:41:25 +02:00
|
|
|
auto s = static_cast<Http3Session *>(session.get());
|
|
|
|
|
2019-06-08 15:05:25 +02:00
|
|
|
for (;;) {
|
2019-09-08 04:14:50 +02:00
|
|
|
int64_t stream_id = -1;
|
|
|
|
int fin = 0;
|
2019-06-08 15:05:25 +02:00
|
|
|
ssize_t sveccnt = 0;
|
|
|
|
|
2019-09-08 05:31:37 +02:00
|
|
|
if (session && ngtcp2_conn_get_max_data_left(quic.conn)) {
|
2019-06-08 15:05:25 +02:00
|
|
|
sveccnt = s->write_stream(stream_id, fin, vec.data(), vec.size());
|
|
|
|
if (sveccnt == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 10:00:46 +01:00
|
|
|
ngtcp2_ssize ndatalen;
|
2019-06-08 15:05:25 +02:00
|
|
|
auto v = vec.data();
|
|
|
|
auto vcnt = static_cast<size_t>(sveccnt);
|
|
|
|
|
2019-09-08 05:31:37 +02:00
|
|
|
auto nwrite = ngtcp2_conn_writev_stream(
|
|
|
|
quic.conn, &ps.path, buf.data(), quic.max_pktlen, &ndatalen,
|
|
|
|
NGTCP2_WRITE_STREAM_FLAG_MORE, stream_id, fin,
|
|
|
|
reinterpret_cast<const ngtcp2_vec *>(v), vcnt, timestamp(worker->loop));
|
|
|
|
if (nwrite < 0) {
|
|
|
|
switch (nwrite) {
|
|
|
|
case NGTCP2_ERR_STREAM_DATA_BLOCKED:
|
|
|
|
case NGTCP2_ERR_STREAM_SHUT_WR:
|
2020-04-04 09:28:38 +02:00
|
|
|
assert(ndatalen == -1);
|
2019-06-08 15:05:25 +02:00
|
|
|
|
2019-09-08 05:31:37 +02:00
|
|
|
if (s->block_stream(stream_id) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
case NGTCP2_ERR_WRITE_STREAM_MORE:
|
|
|
|
assert(ndatalen > 0);
|
2019-06-08 15:05:25 +02:00
|
|
|
if (s->add_write_offset(stream_id, ndatalen) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2019-09-08 05:31:37 +02:00
|
|
|
continue;
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
|
2020-04-04 09:10:04 +02:00
|
|
|
quic.last_error = quic::err_transport(nwrite);
|
|
|
|
return -1;
|
2019-09-08 05:31:37 +02:00
|
|
|
}
|
2019-06-08 15:05:25 +02:00
|
|
|
|
2020-04-04 09:28:38 +02:00
|
|
|
assert(ndatalen == -1);
|
|
|
|
|
2019-09-08 05:31:37 +02:00
|
|
|
quic_restart_pkt_timer();
|
2019-06-08 15:05:25 +02:00
|
|
|
|
2019-09-08 05:31:37 +02:00
|
|
|
if (nwrite == 0) {
|
2019-06-08 15:05:25 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2019-09-08 05:31:37 +02:00
|
|
|
|
|
|
|
write_udp(reinterpret_cast<sockaddr *>(ps.path.remote.addr),
|
|
|
|
ps.path.remote.addrlen, buf.data(), nwrite);
|
2019-06-08 15:05:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace h2load
|