diff options
Diffstat (limited to 'meta/recipes-extended/tar')
-rw-r--r-- | meta/recipes-extended/tar/tar-1.17/avoid_heap_overflow.patch | 22 | ||||
-rw-r--r-- | meta/recipes-extended/tar/tar_1.17.bb | 3 |
2 files changed, 24 insertions, 1 deletions
diff --git a/meta/recipes-extended/tar/tar-1.17/avoid_heap_overflow.patch b/meta/recipes-extended/tar/tar-1.17/avoid_heap_overflow.patch new file mode 100644 index 0000000000..b1b2de6b04 --- /dev/null +++ b/meta/recipes-extended/tar/tar-1.17/avoid_heap_overflow.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | Upstream-Status="Inappropriate [bugfix: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0624]" | ||
2 | |||
3 | This patch avoids heap overflow reported by : | ||
4 | http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0624 | ||
5 | |||
6 | This is a clean patch for the GPLv2 tar recipe. | ||
7 | |||
8 | Nitin A Kamble <nitin.a.kamble@intel.com> 2011/04/25 | ||
9 | |||
10 | Index: tar-1.17/lib/rtapelib.c | ||
11 | =================================================================== | ||
12 | --- tar-1.17.orig/lib/rtapelib.c | ||
13 | +++ tar-1.17/lib/rtapelib.c | ||
14 | @@ -570,7 +570,7 @@ rmt_read__ (int handle, char *buffer, si | ||
15 | |||
16 | sprintf (command_buffer, "R%lu\n", (unsigned long) length); | ||
17 | if (do_command (handle, command_buffer) == -1 | ||
18 | - || (status = get_status (handle)) == SAFE_READ_ERROR) | ||
19 | + || ((status = get_status (handle)) == SAFE_READ_ERROR) || (status > length)) | ||
20 | return SAFE_READ_ERROR; | ||
21 | |||
22 | for (counter = 0; counter < status; counter += rlen, buffer += rlen) | ||
diff --git a/meta/recipes-extended/tar/tar_1.17.bb b/meta/recipes-extended/tar/tar_1.17.bb index be74542091..138ea7141e 100644 --- a/meta/recipes-extended/tar/tar_1.17.bb +++ b/meta/recipes-extended/tar/tar_1.17.bb | |||
@@ -3,10 +3,11 @@ require tar.inc | |||
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" |
5 | 5 | ||
6 | PR = "r0" | 6 | PR = "r1" |
7 | 7 | ||
8 | SRC_URI += "file://m4extensions.patch \ | 8 | SRC_URI += "file://m4extensions.patch \ |
9 | file://gcc43build.patch \ | 9 | file://gcc43build.patch \ |
10 | file://avoid_heap_overflow.patch \ | ||
10 | " | 11 | " |
11 | 12 | ||
12 | SRC_URI[md5sum] = "c6c4f1c075dbf0f75c29737faa58f290" | 13 | SRC_URI[md5sum] = "c6c4f1c075dbf0f75c29737faa58f290" |