mbox series

[wrynose,0/7] libpcap: backport seven CVE fixes from 1.10.7

Message ID 20260910051154.30595-1-jaipaul.cheernam@est.tech
Headers show
Series libpcap: backport seven CVE fixes from 1.10.7 | expand

Message

Jaipaul Cheernam Sept. 10, 2026, 5:11 a.m. UTC
This series backports the seven security fixes that were released in
libpcap 1.10.7 to the 1.10.6 recipe.

The same set of fixes has already been addressed on master by upgrading
libpcap to 1.10.7.

CVEs addressed (see the upstream 1.10.7 CHANGES):

  CVE-2026-0799  - Access M[] safely in the BPF interpreter.
  CVE-2026-31912 - Mind the program bounds in pcap_offline_filter().
  CVE-2026-31911 - Fail opcodes safely in the BPF interpreter.
  CVE-2026-6244  - Avoid division by zero via pcap_offline_filter().
  CVE-2026-6554  - Limit "ja L" looping in pcap_offline_filter().
  CVE-2026-18313 - Fix a memory leak in rpcapd.
  CVE-2026-18238 - Fix RPCAP_MSG_PACKET validation.

Each CVE is a separate file:// patch, ordered so they apply on top of each
other. Some didn't apply as-is since upstream made them over unrelated
1.10.7 changes; those prerequisites are dropped and only the CVE fix is
adapted to 1.10.6. Such patches carry a backport note.

The CHANGES entries are recorded under a downstream "1.10.6 + backported
CVE fixes" heading instead of the 1.10.7 block; the first patch explains
why.

Verified by applying all seven patches in order onto a pristine libpcap
1.10.6 tree and building successfully, including with --enable-remote
(rpcapd).

Jaipaul Cheernam (7):
  libpcap: Fix CVE-2026-0799
  libpcap: Fix CVE-2026-31912
  libpcap: Fix CVE-2026-31911
  libpcap: Fix CVE-2026-6244
  libpcap: Fix CVE-2026-6554
  libpcap: Fix CVE-2026-18313
  libpcap: Fix CVE-2026-18238

 .../libpcap/libpcap/01-CVE-2026-0799.patch    |  87 +++
 .../libpcap/libpcap/02-CVE-2026-31912.patch   | 630 ++++++++++++++++++
 .../libpcap/libpcap/03-CVE-2026-31911.patch   |  57 ++
 .../libpcap/libpcap/04-CVE-2026-6244.patch    |  62 ++
 .../libpcap/libpcap/05-CVE-2026-6554.patch    | 108 +++
 .../libpcap/libpcap/06-CVE-2026-18313.patch   | 104 +++
 .../libpcap/libpcap/07-CVE-2026-18238.patch   | 234 +++++++
 .../libpcap/libpcap_1.10.6.bb                 |   7 +
 8 files changed, 1289 insertions(+)
 create mode 100644 meta/recipes-connectivity/libpcap/libpcap/01-CVE-2026-0799.patch
 create mode 100644 meta/recipes-connectivity/libpcap/libpcap/02-CVE-2026-31912.patch
 create mode 100644 meta/recipes-connectivity/libpcap/libpcap/03-CVE-2026-31911.patch
 create mode 100644 meta/recipes-connectivity/libpcap/libpcap/04-CVE-2026-6244.patch
 create mode 100644 meta/recipes-connectivity/libpcap/libpcap/05-CVE-2026-6554.patch
 create mode 100644 meta/recipes-connectivity/libpcap/libpcap/06-CVE-2026-18313.patch
 create mode 100644 meta/recipes-connectivity/libpcap/libpcap/07-CVE-2026-18238.patch