diff options
author | Peter Seebach <peter.seebach@windriver.com> | 2015-11-25 16:42:17 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-01 21:32:14 +0000 |
commit | 09b4da6763652b003ae052fbb15c97115cc096f1 (patch) | |
tree | 72d513b178e13bf591ee31bcc35bdb47a090f097 /meta/recipes-core | |
parent | 1781a9afc6cf9d021c47fe184895087ee8c0d637 (diff) | |
download | poky-09b4da6763652b003ae052fbb15c97115cc096f1.tar.gz |
glibc/0029-fix-getmnt-empty-lines.patch: fix getmntent()
When confronted with an empty line, getmntent() can underrun
a buffer, possibly doing very strange things if it finds
additional space/tab characters. Backport the upstream fix.
(From OE-Core rev: 983a19a65a31b54a6f505181012bd311c28a0ae1)
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/glibc/glibc/0029-fix-getmntent-empty-lines.patch | 40 | ||||
-rw-r--r-- | meta/recipes-core/glibc/glibc_2.22.bb | 1 |
2 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-core/glibc/glibc/0029-fix-getmntent-empty-lines.patch b/meta/recipes-core/glibc/glibc/0029-fix-getmntent-empty-lines.patch new file mode 100644 index 0000000000..390bb3034d --- /dev/null +++ b/meta/recipes-core/glibc/glibc/0029-fix-getmntent-empty-lines.patch | |||
@@ -0,0 +1,40 @@ | |||
1 | From b0e805fa0d6fea33745952df7b7f5442ca4c374f Mon Sep 17 00:00:00 2001 | ||
2 | From: Mike Frysinger <vapier@gentoo.org> | ||
3 | Date: Fri, 28 Aug 2015 17:08:49 -0400 | ||
4 | Subject: [PATCH] getmntent: fix memory corruption w/blank lines [BZ #18887] | ||
5 | |||
6 | The fix for BZ #17273 introduced a single byte of memory corruption when | ||
7 | the line is entirely blank. It would walk back past the start of the | ||
8 | buffer if the heap happened to be 0x20 or 0x09 and then write a NUL byte. | ||
9 | buffer = '\n'; | ||
10 | end_ptr = buffer; | ||
11 | while (end_ptr[-1] == ' ' || end_ptr[-1] == '\t') | ||
12 | end_ptr--; | ||
13 | *end_ptr = '\0'; | ||
14 | |||
15 | Fix that and rework the tests. Adding the testcase for BZ #17273 to the | ||
16 | existing \040 parser does not really make sense as it's unrelated, and | ||
17 | leads to confusing behavior: it implicitly relies on the new entry being | ||
18 | longer than the previous entry (since it just rewinds the FILE*). Split | ||
19 | it out into its own dedicated testcase instead. | ||
20 | |||
21 | The original patch is at link https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=patch;h=b0e805fa0d6fea33745952df7b7f5442ca4c374f. | ||
22 | Only code to mntent_r.c is kept in this patch, Change log, NEWS, Makefile, and test cases are excluded. | ||
23 | |||
24 | Upstream-Status: Backport (upstreamed to 2.23) | ||
25 | Signed-off-by: Baoshan Pang <baoshan.pang@windriver.com> | ||
26 | |||
27 | diff --git a/misc/mntent_r.c b/misc/mntent_r.c | ||
28 | index 6159873..19af8a8 100644 | ||
29 | --- a/misc/mntent_r.c | ||
30 | +++ b/misc/mntent_r.c | ||
31 | @@ -136,7 +136,8 @@ __getmntent_r (FILE *stream, struct mntent *mp, char *buffer, int bufsiz) | ||
32 | end_ptr = strchr (buffer, '\n'); | ||
33 | if (end_ptr != NULL) /* chop newline */ | ||
34 | { | ||
35 | - while (end_ptr[-1] == ' ' || end_ptr[-1] == '\t') | ||
36 | + while (end_ptr != buffer | ||
37 | + && (end_ptr[-1] == ' ' || end_ptr[-1] == '\t')) | ||
38 | end_ptr--; | ||
39 | *end_ptr = '\0'; | ||
40 | } | ||
diff --git a/meta/recipes-core/glibc/glibc_2.22.bb b/meta/recipes-core/glibc/glibc_2.22.bb index da755865ad..cbacfd4748 100644 --- a/meta/recipes-core/glibc/glibc_2.22.bb +++ b/meta/recipes-core/glibc/glibc_2.22.bb | |||
@@ -41,6 +41,7 @@ SRC_URI = "${GLIBC_GIT_URI};branch=${SRCBRANCH};name=glibc \ | |||
41 | file://nscd-no-bash.patch \ | 41 | file://nscd-no-bash.patch \ |
42 | file://0028-Clear-ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA-for-prel.patch \ | 42 | file://0028-Clear-ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA-for-prel.patch \ |
43 | file://strcoll-Remove-incorrect-STRDIFF-based-optimization-.patch \ | 43 | file://strcoll-Remove-incorrect-STRDIFF-based-optimization-.patch \ |
44 | file://0029-fix-getmntent-empty-lines.patch \ | ||
44 | " | 45 | " |
45 | 46 | ||
46 | SRC_URI += "\ | 47 | SRC_URI += "\ |