diff options
| author | Khem Raj <raj.khem@gmail.com> | 2022-09-12 18:37:45 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-13 23:03:36 +0100 |
| commit | 6f9970ea02bde74e155b0a4e1a1ea01238d8a1e0 (patch) | |
| tree | 206d11180c167578ec43fb992f803ad1d563a6d8 | |
| parent | 5b4e7e13d39d65cb9dd3c85122d97c7a4463fe2d (diff) | |
| download | poky-6f9970ea02bde74e155b0a4e1a1ea01238d8a1e0.tar.gz | |
inetutils: Fix remote DoS vulnerability in inetutils-telnetd
(From OE-Core rev: f9c23404de44553eacd363885588b88714742387)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-connectivity/inetutils/inetutils/CVE-2022-39028.patch | 54 | ||||
| -rw-r--r-- | meta/recipes-connectivity/inetutils/inetutils_2.3.bb | 1 |
2 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/inetutils/inetutils/CVE-2022-39028.patch b/meta/recipes-connectivity/inetutils/inetutils/CVE-2022-39028.patch new file mode 100644 index 0000000000..3b07515c7b --- /dev/null +++ b/meta/recipes-connectivity/inetutils/inetutils/CVE-2022-39028.patch | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | From d52349fa1b6baac77ffa2c74769636aa2ece2ec5 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Erik Auerswald <auerswal@unix-ag.uni-kl.de> | ||
| 3 | Date: Sat, 3 Sep 2022 16:58:16 +0200 | ||
| 4 | Subject: [PATCH] telnetd: Handle early IAC EC or IAC EL receipt | ||
| 5 | |||
| 6 | Fix telnetd crash if the first two bytes of a new connection | ||
| 7 | are 0xff 0xf7 (IAC EC) or 0xff 0xf8 (IAC EL). | ||
| 8 | |||
| 9 | The problem was reported in: | ||
| 10 | <https://pierrekim.github.io/blog/2022-08-24-2-byte-dos-freebsd-netbsd-telnetd-netkit-telnetd-inetutils-telnetd-kerberos-telnetd.html>. | ||
| 11 | |||
| 12 | * NEWS: Mention fix. | ||
| 13 | * telnetd/state.c (telrcv): Handle zero slctab[SLC_EC].sptr and | ||
| 14 | zero slctab[SLC_EL].sptr. | ||
| 15 | |||
| 16 | CVE: CVE-2022-39028 | ||
| 17 | Upstream-Status: Backport [https://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=fae8263e467380483c28513c0e5fac143e46f94f] | ||
| 18 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 19 | --- | ||
| 20 | telnetd/state.c | 12 +++++++++--- | ||
| 21 | 1 file changed, 9 insertions(+), 3 deletions(-) | ||
| 22 | |||
| 23 | diff --git a/telnetd/state.c b/telnetd/state.c | ||
| 24 | index ffc6cba..c2d760f 100644 | ||
| 25 | --- a/telnetd/state.c | ||
| 26 | +++ b/telnetd/state.c | ||
| 27 | @@ -312,15 +312,21 @@ telrcv (void) | ||
| 28 | case EC: | ||
| 29 | case EL: | ||
| 30 | { | ||
| 31 | - cc_t ch; | ||
| 32 | + cc_t ch = (cc_t) (_POSIX_VDISABLE); | ||
| 33 | |||
| 34 | DEBUG (debug_options, 1, printoption ("td: recv IAC", c)); | ||
| 35 | ptyflush (); /* half-hearted */ | ||
| 36 | init_termbuf (); | ||
| 37 | if (c == EC) | ||
| 38 | - ch = *slctab[SLC_EC].sptr; | ||
| 39 | + { | ||
| 40 | + if (slctab[SLC_EC].sptr) | ||
| 41 | + ch = *slctab[SLC_EC].sptr; | ||
| 42 | + } | ||
| 43 | else | ||
| 44 | - ch = *slctab[SLC_EL].sptr; | ||
| 45 | + { | ||
| 46 | + if (slctab[SLC_EL].sptr) | ||
| 47 | + ch = *slctab[SLC_EL].sptr; | ||
| 48 | + } | ||
| 49 | if (ch != (cc_t) (_POSIX_VDISABLE)) | ||
| 50 | pty_output_byte ((unsigned char) ch); | ||
| 51 | break; | ||
| 52 | -- | ||
| 53 | 2.37.3 | ||
| 54 | |||
diff --git a/meta/recipes-connectivity/inetutils/inetutils_2.3.bb b/meta/recipes-connectivity/inetutils/inetutils_2.3.bb index 1e8f63637e..2fce84374d 100644 --- a/meta/recipes-connectivity/inetutils/inetutils_2.3.bb +++ b/meta/recipes-connectivity/inetutils/inetutils_2.3.bb | |||
| @@ -21,6 +21,7 @@ SRC_URI = "${GNU_MIRROR}/inetutils/inetutils-${PV}.tar.xz \ | |||
| 21 | file://tftpd.xinetd.inetutils \ | 21 | file://tftpd.xinetd.inetutils \ |
| 22 | file://inetutils-1.9-PATH_PROCNET_DEV.patch \ | 22 | file://inetutils-1.9-PATH_PROCNET_DEV.patch \ |
| 23 | file://inetutils-only-check-pam_appl.h-when-pam-enabled.patch \ | 23 | file://inetutils-only-check-pam_appl.h-when-pam-enabled.patch \ |
| 24 | file://CVE-2022-39028.patch \ | ||
| 24 | " | 25 | " |
| 25 | 26 | ||
| 26 | inherit autotools gettext update-alternatives texinfo | 27 | inherit autotools gettext update-alternatives texinfo |
