diff options
| -rw-r--r-- | meta/recipes-core/coreutils/coreutils/0001-sort-fix-buffer-under-read-CWE-127.patch | 112 | ||||
| -rw-r--r-- | meta/recipes-core/coreutils/coreutils_9.7.bb | 1 |
2 files changed, 113 insertions, 0 deletions
diff --git a/meta/recipes-core/coreutils/coreutils/0001-sort-fix-buffer-under-read-CWE-127.patch b/meta/recipes-core/coreutils/coreutils/0001-sort-fix-buffer-under-read-CWE-127.patch new file mode 100644 index 0000000000..41be1635b5 --- /dev/null +++ b/meta/recipes-core/coreutils/coreutils/0001-sort-fix-buffer-under-read-CWE-127.patch | |||
| @@ -0,0 +1,112 @@ | |||
| 1 | From 8763c305c29d0abb7e2be4695212b42917d054b2 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: =?UTF-8?q?P=C3=A1draig=20Brady?= <P@draigBrady.com> | ||
| 3 | Date: Tue, 20 May 2025 16:03:44 +0100 | ||
| 4 | Subject: [PATCH] sort: fix buffer under-read (CWE-127) | ||
| 5 | |||
| 6 | * src/sort.c (begfield): Check pointer adjustment | ||
| 7 | to avoid Out-of-range pointer offset (CWE-823). | ||
| 8 | (limfield): Likewise. | ||
| 9 | * tests/sort/sort-field-limit.sh: Add a new test, | ||
| 10 | which triggers with ASAN or Valgrind. | ||
| 11 | * tests/local.mk: Reference the new test. | ||
| 12 | * NEWS: Mention bug fix introduced in v7.2 (2009). | ||
| 13 | Fixes https://bugs.gnu.org/78507 | ||
| 14 | |||
| 15 | CVE: CVE-2025-5278 | ||
| 16 | |||
| 17 | Upstream-Status: Backport [https://cgit.git.savannah.gnu.org/cgit/coreutils.git/commit/?id=8c9602e3a145e9596dc1a63c6ed67865814b6633] | ||
| 18 | |||
| 19 | Signed-off-by: Chen Qi <Qi.Chen@windriver.com> | ||
| 20 | --- | ||
| 21 | src/sort.c | 12 ++++++++++-- | ||
| 22 | tests/local.mk | 1 + | ||
| 23 | tests/sort/sort-field-limit.sh | 35 ++++++++++++++++++++++++++++++++++ | ||
| 24 | 3 files changed, 46 insertions(+), 2 deletions(-) | ||
| 25 | create mode 100755 tests/sort/sort-field-limit.sh | ||
| 26 | |||
| 27 | diff --git a/src/sort.c b/src/sort.c | ||
| 28 | index b10183b6f..7af1a2512 100644 | ||
| 29 | --- a/src/sort.c | ||
| 30 | +++ b/src/sort.c | ||
| 31 | @@ -1644,7 +1644,11 @@ begfield (struct line const *line, struct keyfield const *key) | ||
| 32 | ++ptr; | ||
| 33 | |||
| 34 | /* Advance PTR by SCHAR (if possible), but no further than LIM. */ | ||
| 35 | - ptr = MIN (lim, ptr + schar); | ||
| 36 | + size_t remaining_bytes = lim - ptr; | ||
| 37 | + if (schar < remaining_bytes) | ||
| 38 | + ptr += schar; | ||
| 39 | + else | ||
| 40 | + ptr = lim; | ||
| 41 | |||
| 42 | return ptr; | ||
| 43 | } | ||
| 44 | @@ -1746,7 +1750,11 @@ limfield (struct line const *line, struct keyfield const *key) | ||
| 45 | ++ptr; | ||
| 46 | |||
| 47 | /* Advance PTR by ECHAR (if possible), but no further than LIM. */ | ||
| 48 | - ptr = MIN (lim, ptr + echar); | ||
| 49 | + size_t remaining_bytes = lim - ptr; | ||
| 50 | + if (echar < remaining_bytes) | ||
| 51 | + ptr += echar; | ||
| 52 | + else | ||
| 53 | + ptr = lim; | ||
| 54 | } | ||
| 55 | |||
| 56 | return ptr; | ||
| 57 | diff --git a/tests/local.mk b/tests/local.mk | ||
| 58 | index 4da6756ac..642d225fa 100644 | ||
| 59 | --- a/tests/local.mk | ||
| 60 | +++ b/tests/local.mk | ||
| 61 | @@ -388,6 +388,7 @@ all_tests = \ | ||
| 62 | tests/sort/sort-debug-keys.sh \ | ||
| 63 | tests/sort/sort-debug-warn.sh \ | ||
| 64 | tests/sort/sort-discrim.sh \ | ||
| 65 | + tests/sort/sort-field-limit.sh \ | ||
| 66 | tests/sort/sort-files0-from.pl \ | ||
| 67 | tests/sort/sort-float.sh \ | ||
| 68 | tests/sort/sort-h-thousands-sep.sh \ | ||
| 69 | diff --git a/tests/sort/sort-field-limit.sh b/tests/sort/sort-field-limit.sh | ||
| 70 | new file mode 100755 | ||
| 71 | index 000000000..52d8e1d17 | ||
| 72 | --- /dev/null | ||
| 73 | +++ b/tests/sort/sort-field-limit.sh | ||
| 74 | @@ -0,0 +1,35 @@ | ||
| 75 | +#!/bin/sh | ||
| 76 | +# From 7.2-9.7, this would trigger an out of bounds mem read | ||
| 77 | + | ||
| 78 | +# Copyright (C) 2025 Free Software Foundation, Inc. | ||
| 79 | + | ||
| 80 | +# This program is free software: you can redistribute it and/or modify | ||
| 81 | +# it under the terms of the GNU General Public License as published by | ||
| 82 | +# the Free Software Foundation, either version 3 of the License, or | ||
| 83 | +# (at your option) any later version. | ||
| 84 | + | ||
| 85 | +# This program is distributed in the hope that it will be useful, | ||
| 86 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 87 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 88 | +# GNU General Public License for more details. | ||
| 89 | + | ||
| 90 | +# You should have received a copy of the GNU General Public License | ||
| 91 | +# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
| 92 | + | ||
| 93 | +. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src | ||
| 94 | +print_ver_ sort | ||
| 95 | +getlimits_ | ||
| 96 | + | ||
| 97 | +# This issue triggers with valgrind or ASAN | ||
| 98 | +valgrind --error-exitcode=1 sort --version 2>/dev/null && | ||
| 99 | + VALGRIND='valgrind --error-exitcode=1' | ||
| 100 | + | ||
| 101 | +{ printf '%s\n' aa bb; } > in || framework_failure_ | ||
| 102 | + | ||
| 103 | +_POSIX2_VERSION=200809 $VALGRIND sort +0.${SIZE_MAX}R in > out || fail=1 | ||
| 104 | +compare in out || fail=1 | ||
| 105 | + | ||
| 106 | +_POSIX2_VERSION=200809 $VALGRIND sort +1 -1.${SIZE_MAX}R in > out || fail=1 | ||
| 107 | +compare in out || fail=1 | ||
| 108 | + | ||
| 109 | +Exit $fail | ||
| 110 | -- | ||
| 111 | 2.34.1 | ||
| 112 | |||
diff --git a/meta/recipes-core/coreutils/coreutils_9.7.bb b/meta/recipes-core/coreutils/coreutils_9.7.bb index dc9dfae26b..5a6456d65e 100644 --- a/meta/recipes-core/coreutils/coreutils_9.7.bb +++ b/meta/recipes-core/coreutils/coreutils_9.7.bb | |||
| @@ -15,6 +15,7 @@ inherit autotools gettext texinfo | |||
| 15 | 15 | ||
| 16 | SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz \ | 16 | SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz \ |
| 17 | file://remove-usr-local-lib-from-m4.patch \ | 17 | file://remove-usr-local-lib-from-m4.patch \ |
| 18 | file://0001-sort-fix-buffer-under-read-CWE-127.patch \ | ||
| 18 | file://run-ptest \ | 19 | file://run-ptest \ |
| 19 | " | 20 | " |
| 20 | SRC_URI[sha256sum] = "e8bb26ad0293f9b5a1fc43fb42ba970e312c66ce92c1b0b16713d7500db251bf" | 21 | SRC_URI[sha256sum] = "e8bb26ad0293f9b5a1fc43fb42ba970e312c66ce92c1b0b16713d7500db251bf" |
