summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/ppp
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-01-23 13:27:08 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-24 22:06:51 +0000
commitd2066f99d00f68a67c148e09ffdaadc37ada8563 (patch)
tree1652f380b25bf1155d3fda141bf58ef21c7a6946 /meta/recipes-connectivity/ppp
parent55e666aaaead433028c0f9d8f58265ce0fd029f0 (diff)
downloadpoky-d2066f99d00f68a67c148e09ffdaadc37ada8563.tar.gz
ppp: backport fix for CVE-2022-4603
(From OE-Core rev: d5d787b44b102e3a69e28948326e39f83fc1d98d) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/ppp')
-rw-r--r--meta/recipes-connectivity/ppp/ppp/CVE-2022-4603.patch48
-rw-r--r--meta/recipes-connectivity/ppp/ppp_2.4.9.bb1
2 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/ppp/ppp/CVE-2022-4603.patch b/meta/recipes-connectivity/ppp/ppp/CVE-2022-4603.patch
new file mode 100644
index 0000000000..4325b1d6b0
--- /dev/null
+++ b/meta/recipes-connectivity/ppp/ppp/CVE-2022-4603.patch
@@ -0,0 +1,48 @@
1From a75fb7b198eed50d769c80c36629f38346882cbf Mon Sep 17 00:00:00 2001
2From: Paul Mackerras <paulus@ozlabs.org>
3Date: Thu, 4 Aug 2022 12:23:08 +1000
4Subject: [PATCH] pppdump: Avoid out-of-range access to packet buffer
5
6This fixes a potential vulnerability where data is written to spkt.buf
7and rpkt.buf without a check on the array index. To fix this, we
8check the array index (pkt->cnt) before storing the byte or
9incrementing the count. This also means we no longer have a potential
10signed integer overflow on the increment of pkt->cnt.
11
12Fortunately, pppdump is not used in the normal process of setting up a
13PPP connection, is not installed setuid-root, and is not invoked
14automatically in any scenario that I am aware of.
15
16Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
17
18Upstream-Status: Backport
19Signed-off-by: Ross Burton <ross.burton@arm.com>
20---
21 pppdump/pppdump.c | 7 ++++++-
22 1 file changed, 6 insertions(+), 1 deletion(-)
23
24diff --git a/pppdump/pppdump.c b/pppdump/pppdump.c
25index 2b815fc9..b85a8627 100644
26--- a/pppdump/pppdump.c
27+++ b/pppdump/pppdump.c
28@@ -297,6 +297,10 @@ dumpppp(f)
29 printf("%s aborted packet:\n ", dir);
30 q = " ";
31 }
32+ if (pkt->cnt >= sizeof(pkt->buf)) {
33+ printf("%s over-long packet truncated:\n ", dir);
34+ q = " ";
35+ }
36 nb = pkt->cnt;
37 p = pkt->buf;
38 pkt->cnt = 0;
39@@ -400,7 +404,8 @@ dumpppp(f)
40 c ^= 0x20;
41 pkt->esc = 0;
42 }
43- pkt->buf[pkt->cnt++] = c;
44+ if (pkt->cnt < sizeof(pkt->buf))
45+ pkt->buf[pkt->cnt++] = c;
46 break;
47 }
48 }
diff --git a/meta/recipes-connectivity/ppp/ppp_2.4.9.bb b/meta/recipes-connectivity/ppp/ppp_2.4.9.bb
index 700ece61dc..7e3ae43b58 100644
--- a/meta/recipes-connectivity/ppp/ppp_2.4.9.bb
+++ b/meta/recipes-connectivity/ppp/ppp_2.4.9.bb
@@ -25,6 +25,7 @@ SRC_URI = "https://download.samba.org/pub/${BPN}/${BP}.tar.gz \
25 file://provider \ 25 file://provider \
26 file://ppp@.service \ 26 file://ppp@.service \
27 file://0001-ppp-fix-build-against-5.15-headers.patch \ 27 file://0001-ppp-fix-build-against-5.15-headers.patch \
28 file://CVE-2022-4603.patch \
28 " 29 "
29 30
30SRC_URI[sha256sum] = "f938b35eccde533ea800b15a7445b2f1137da7f88e32a16898d02dee8adc058d" 31SRC_URI[sha256sum] = "f938b35eccde533ea800b15a7445b2f1137da7f88e32a16898d02dee8adc058d"