BUG/MINOR: quic: fix crash on quic_conn alloc failure

If there is an alloc failure during qc_new_conn(), cleaning is done via
quic_conn_release(). However, since the below commit, an unchecked
dereferencing of <qc.path> is performed in the latter.

  e841164a4402118bd7b2e2dc2b5068f21de5d9d2
  MINOR: quic: account for global congestion window

To fix this, simply check <qc.path> before dereferencing it in
quic_conn_release(). This is safe as it is properly initialized to NULL
on qc_new_conn() first stage.

This does not need to be backported.
This commit is contained in:
Amaury Denoyelle 2025-05-19 11:02:46 +02:00
parent 099c1b2442
commit d358da4d83

View File

@ -1448,8 +1448,10 @@ int quic_conn_release(struct quic_conn *qc)
}
/* Substract last congestion window from global memory counter. */
cshared_add(&quic_mem_diff, -qc->path->cwnd);
qc->path->cwnd = 0;
if (qc->path) {
cshared_add(&quic_mem_diff, -qc->path->cwnd);
qc->path->cwnd = 0;
}
/* free remaining stream descriptors */
node = eb64_first(&qc->streams_by_id);