Skip to content

Commit

Permalink
QUIC QTX: Allow QLOG instance retrieval via callback
Browse files Browse the repository at this point in the history
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from #23535)
  • Loading branch information
hlandau authored and t8m committed Feb 19, 2024
1 parent 410270d commit 9f2349a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 10 deletions.
10 changes: 6 additions & 4 deletions include/internal/quic_record_tx.h
Expand Up @@ -49,8 +49,9 @@ typedef struct ossl_qtx_args_st {
/* Maximum datagram payload length (MDPL) for TX purposes. */
size_t mdpl;

/* QLOG instance to use, or NULL. */
QLOG *qlog;
/* Callback returning QLOG instance to use, or NULL. */
QLOG *(*get_qlog_cb)(void *arg);
void *get_qlog_cb_arg;
} OSSL_QTX_ARGS;

/* Instantiates a new QTX. */
Expand All @@ -68,8 +69,9 @@ void ossl_qtx_set_msg_callback(OSSL_QTX *qtx, ossl_msg_cb msg_callback,
SSL *msg_callback_ssl);
void ossl_qtx_set_msg_callback_arg(OSSL_QTX *qtx, void *msg_callback_arg);

/* Change QLOG instance in use after instantiation. */
void ossl_qtx_set0_qlog(OSSL_QTX *qtx, QLOG *qlog);
/* Change QLOG instance retrieval callback in use after instantiation. */
void ossl_qtx_set_qlog_cb(OSSL_QTX *qtx, QLOG *(*get_qlog_cb)(void *arg),
void *get_qlog_cb_arg);

/*
* Secret Management
Expand Down
25 changes: 19 additions & 6 deletions ssl/quic/quic_record_tx.c
Expand Up @@ -61,8 +61,9 @@ struct ossl_qtx_st {
/* TX BIO. */
BIO *bio;

/* QLOG instance if in use, or NULL. */
QLOG *qlog;
/* QLOG instance retrieval callback if in use, or NULL. */
QLOG *(*get_qlog_cb)(void *arg);
void *get_qlog_cb_arg;

/* TX maximum datagram payload length. */
size_t mdpl;
Expand Down Expand Up @@ -124,7 +125,9 @@ OSSL_QTX *ossl_qtx_new(const OSSL_QTX_ARGS *args)
qtx->propq = args->propq;
qtx->bio = args->bio;
qtx->mdpl = args->mdpl;
qtx->qlog = args->qlog;
qtx->get_qlog_cb = args->get_qlog_cb;
qtx->get_qlog_cb_arg = args->get_qlog_cb_arg;

return qtx;
}

Expand Down Expand Up @@ -167,9 +170,11 @@ void ossl_qtx_set_mutator(OSSL_QTX *qtx, ossl_mutate_packet_cb mutatecb,
qtx->mutatearg = mutatearg;
}

void ossl_qtx_set0_qlog(OSSL_QTX *qtx, QLOG *qlog)
void ossl_qtx_set_qlog_cb(OSSL_QTX *qtx, QLOG *(*get_qlog_cb)(void *arg),
void *get_qlog_cb_arg)
{
qtx->qlog = qlog;
qtx->get_qlog_cb = get_qlog_cb;
qtx->get_qlog_cb_arg = get_qlog_cb_arg;
}

int ossl_qtx_provide_secret(OSSL_QTX *qtx,
Expand Down Expand Up @@ -738,6 +743,14 @@ static TXE *qtx_ensure_cons(OSSL_QTX *qtx)
return txe;
}

static QLOG *qtx_get_qlog(OSSL_QTX *qtx)
{
if (qtx->get_qlog_cb == NULL)
return NULL;

return qtx->get_qlog_cb(qtx->get_qlog_cb_arg);
}

static int qtx_mutate_write(OSSL_QTX *qtx, const OSSL_QTX_PKT *pkt, TXE *txe,
uint32_t enc_level)
{
Expand All @@ -760,7 +773,7 @@ static int qtx_mutate_write(OSSL_QTX *qtx, const OSSL_QTX_PKT *pkt, TXE *txe,
ret = qtx_write(qtx, pkt, txe, enc_level,
hdr, iovec, num_iovec);
if (ret == 1)
ossl_qlog_event_transport_packet_sent(qtx->qlog, hdr, pkt->pn,
ossl_qlog_event_transport_packet_sent(qtx_get_qlog(qtx), hdr, pkt->pn,
iovec, num_iovec,
qtx->datagram_count);

Expand Down

0 comments on commit 9f2349a

Please sign in to comment.