diff options
Diffstat (limited to 'meta/recipes-devtools/qemu')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu/CVE-2016-1568.patch | 46 | ||||
-rw-r--r-- | meta/recipes-devtools/qemu/qemu/CVE-2016-2197.patch | 59 | ||||
-rw-r--r-- | meta/recipes-devtools/qemu/qemu/CVE-2016-2857.patch | 51 | ||||
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_2.5.1.bb (renamed from meta/recipes-devtools/qemu/qemu_2.5.0.bb) | 7 |
4 files changed, 2 insertions, 161 deletions
diff --git a/meta/recipes-devtools/qemu/qemu/CVE-2016-1568.patch b/meta/recipes-devtools/qemu/qemu/CVE-2016-1568.patch deleted file mode 100644 index 56fd346ae6..0000000000 --- a/meta/recipes-devtools/qemu/qemu/CVE-2016-1568.patch +++ /dev/null | |||
@@ -1,46 +0,0 @@ | |||
1 | From 4ab0359a8ae182a7ac5c99609667273167703fab Mon Sep 17 00:00:00 2001 | ||
2 | From: Prasad J Pandit <pjp@fedoraproject.org> | ||
3 | Date: Mon, 11 Jan 2016 14:10:42 -0500 | ||
4 | Subject: [PATCH] ide: ahci: reset ncq object to unused on error | ||
5 | |||
6 | When processing NCQ commands, AHCI device emulation prepares a | ||
7 | NCQ transfer object; To which an aio control block(aiocb) object | ||
8 | is assigned in 'execute_ncq_command'. In case, when the NCQ | ||
9 | command is invalid, the 'aiocb' object is not assigned, and NCQ | ||
10 | transfer object is left as 'used'. This leads to a use after | ||
11 | free kind of error in 'bdrv_aio_cancel_async' via 'ahci_reset_port'. | ||
12 | Reset NCQ transfer object to 'unused' to avoid it. | ||
13 | |||
14 | [Maintainer edit: s/ACHI/AHCI/ in the commit message. --js] | ||
15 | |||
16 | Reported-by: Qinghao Tang <luodalongde@gmail.com> | ||
17 | Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org> | ||
18 | Reviewed-by: John Snow <jsnow@redhat.com> | ||
19 | Message-id: 1452282511-4116-1-git-send-email-ppandit@redhat.com | ||
20 | Signed-off-by: John Snow <jsnow@redhat.com> | ||
21 | |||
22 | Upstream-Status: Backport | ||
23 | |||
24 | http://git.qemu.org/?p=qemu.git;a=commit;h=4ab0359a8ae182a7ac5c99609667273167703fab | ||
25 | |||
26 | CVE: CVE-2016-1568 | ||
27 | [Yocto # 9013] | ||
28 | |||
29 | Signed-off-by: Armin Kuster <akuster@mvista.com> | ||
30 | |||
31 | --- | ||
32 | hw/ide/ahci.c | 1 + | ||
33 | 1 file changed, 1 insertion(+) | ||
34 | |||
35 | Index: qemu-2.5.0/hw/ide/ahci.c | ||
36 | =================================================================== | ||
37 | --- qemu-2.5.0.orig/hw/ide/ahci.c | ||
38 | +++ qemu-2.5.0/hw/ide/ahci.c | ||
39 | @@ -910,6 +910,7 @@ static void ncq_err(NCQTransferState *nc | ||
40 | ide_state->error = ABRT_ERR; | ||
41 | ide_state->status = READY_STAT | ERR_STAT; | ||
42 | ncq_tfs->drive->port_regs.scr_err |= (1 << ncq_tfs->tag); | ||
43 | + ncq_tfs->used = 0; | ||
44 | } | ||
45 | |||
46 | static void ncq_finish(NCQTransferState *ncq_tfs) | ||
diff --git a/meta/recipes-devtools/qemu/qemu/CVE-2016-2197.patch b/meta/recipes-devtools/qemu/qemu/CVE-2016-2197.patch deleted file mode 100644 index 946435c430..0000000000 --- a/meta/recipes-devtools/qemu/qemu/CVE-2016-2197.patch +++ /dev/null | |||
@@ -1,59 +0,0 @@ | |||
1 | From: Prasad J Pandit <address@hidden> | ||
2 | |||
3 | When IDE AHCI emulation uses Frame Information Structures(FIS) | ||
4 | engine for data transfer, the mapped FIS buffer address is stored | ||
5 | in a static 'bounce.buffer'. When a request is made to map another | ||
6 | memory region, address_space_map() returns NULL because | ||
7 | 'bounce.buffer' is in_use. It leads to a null pointer dereference | ||
8 | error while doing 'dma_memory_unmap'. Add a check to avoid it. | ||
9 | |||
10 | Reported-by: Zuozhi fzz <address@hidden> | ||
11 | Signed-off-by: Prasad J Pandit <address@hidden> | ||
12 | |||
13 | Upstream-Status: Backport | ||
14 | https://lists.gnu.org/archive/html/qemu-devel/2016-01/msg05740.html | ||
15 | |||
16 | CVE: CVE-2016-2197 | ||
17 | Signed-off-by: Armin Kuster <akuster@mvista.com> | ||
18 | |||
19 | --- | ||
20 | hw/ide/ahci.c | 16 ++++++++++------ | ||
21 | 1 file changed, 10 insertions(+), 6 deletions(-) | ||
22 | |||
23 | Update as per review | ||
24 | -> https://lists.gnu.org/archive/html/qemu-devel/2016-01/msg05715.html | ||
25 | |||
26 | Index: qemu-2.5.0/hw/ide/ahci.c | ||
27 | =================================================================== | ||
28 | --- qemu-2.5.0.orig/hw/ide/ahci.c | ||
29 | +++ qemu-2.5.0/hw/ide/ahci.c | ||
30 | @@ -661,9 +661,11 @@ static bool ahci_map_fis_address(AHCIDev | ||
31 | |||
32 | static void ahci_unmap_fis_address(AHCIDevice *ad) | ||
33 | { | ||
34 | - dma_memory_unmap(ad->hba->as, ad->res_fis, 256, | ||
35 | - DMA_DIRECTION_FROM_DEVICE, 256); | ||
36 | - ad->res_fis = NULL; | ||
37 | + if (ad->res_fis) { | ||
38 | + dma_memory_unmap(ad->hba->as, ad->res_fis, 256, | ||
39 | + DMA_DIRECTION_FROM_DEVICE, 256); | ||
40 | + ad->res_fis = NULL; | ||
41 | + } | ||
42 | } | ||
43 | |||
44 | static bool ahci_map_clb_address(AHCIDevice *ad) | ||
45 | @@ -677,9 +679,11 @@ static bool ahci_map_clb_address(AHCIDev | ||
46 | |||
47 | static void ahci_unmap_clb_address(AHCIDevice *ad) | ||
48 | { | ||
49 | - dma_memory_unmap(ad->hba->as, ad->lst, 1024, | ||
50 | - DMA_DIRECTION_FROM_DEVICE, 1024); | ||
51 | - ad->lst = NULL; | ||
52 | + if (ad->lst) { | ||
53 | + dma_memory_unmap(ad->hba->as, ad->lst, 1024, | ||
54 | + DMA_DIRECTION_FROM_DEVICE, 1024); | ||
55 | + ad->lst = NULL; | ||
56 | + } | ||
57 | } | ||
58 | |||
59 | static void ahci_write_fis_sdb(AHCIState *s, NCQTransferState *ncq_tfs) | ||
diff --git a/meta/recipes-devtools/qemu/qemu/CVE-2016-2857.patch b/meta/recipes-devtools/qemu/qemu/CVE-2016-2857.patch deleted file mode 100644 index 73cfa2a1eb..0000000000 --- a/meta/recipes-devtools/qemu/qemu/CVE-2016-2857.patch +++ /dev/null | |||
@@ -1,51 +0,0 @@ | |||
1 | From 362786f14a753d8a5256ef97d7c10ed576d6572b Mon Sep 17 00:00:00 2001 | ||
2 | From: Prasad J Pandit <pjp@fedoraproject.org> | ||
3 | Date: Wed, 2 Mar 2016 17:29:58 +0530 | ||
4 | Subject: [PATCH] net: check packet payload length | ||
5 | |||
6 | While computing IP checksum, 'net_checksum_calculate' reads | ||
7 | payload length from the packet. It could exceed the given 'data' | ||
8 | buffer size. Add a check to avoid it. | ||
9 | |||
10 | Reported-by: Liu Ling <liuling-it@360.cn> | ||
11 | Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org> | ||
12 | Signed-off-by: Jason Wang <jasowang@redhat.com> | ||
13 | |||
14 | Upstream-Status: Backport | ||
15 | CVE: CVE-2016-2857 | ||
16 | |||
17 | http://git.qemu.org/?p=qemu.git;a=commit;h=362786f14a753d8a5256ef97d7c10ed576d6572b | ||
18 | Signed-off-by: Armin Kuster <akuster@mvista.com> | ||
19 | |||
20 | --- | ||
21 | net/checksum.c | 10 ++++++++-- | ||
22 | 1 file changed, 8 insertions(+), 2 deletions(-) | ||
23 | |||
24 | Index: qemu-2.5.0/net/checksum.c | ||
25 | =================================================================== | ||
26 | --- qemu-2.5.0.orig/net/checksum.c | ||
27 | +++ qemu-2.5.0/net/checksum.c | ||
28 | @@ -59,6 +59,11 @@ void net_checksum_calculate(uint8_t *dat | ||
29 | int hlen, plen, proto, csum_offset; | ||
30 | uint16_t csum; | ||
31 | |||
32 | + /* Ensure data has complete L2 & L3 headers. */ | ||
33 | + if (length < 14 + 20) { | ||
34 | + return; | ||
35 | + } | ||
36 | + | ||
37 | if ((data[14] & 0xf0) != 0x40) | ||
38 | return; /* not IPv4 */ | ||
39 | hlen = (data[14] & 0x0f) * 4; | ||
40 | @@ -76,8 +81,9 @@ void net_checksum_calculate(uint8_t *dat | ||
41 | return; | ||
42 | } | ||
43 | |||
44 | - if (plen < csum_offset+2) | ||
45 | - return; | ||
46 | + if (plen < csum_offset + 2 || 14 + hlen + plen > length) { | ||
47 | + return; | ||
48 | + } | ||
49 | |||
50 | data[14+hlen+csum_offset] = 0; | ||
51 | data[14+hlen+csum_offset+1] = 0; | ||
diff --git a/meta/recipes-devtools/qemu/qemu_2.5.0.bb b/meta/recipes-devtools/qemu/qemu_2.5.1.bb index 03a6cbe331..3db6e36e8b 100644 --- a/meta/recipes-devtools/qemu/qemu_2.5.0.bb +++ b/meta/recipes-devtools/qemu/qemu_2.5.1.bb | |||
@@ -7,19 +7,16 @@ SRC_URI += "file://configure-fix-Darwin-target-detection.patch \ | |||
7 | file://qemu-enlarge-env-entry-size.patch \ | 7 | file://qemu-enlarge-env-entry-size.patch \ |
8 | file://Qemu-Arm-versatilepb-Add-memory-size-checking.patch \ | 8 | file://Qemu-Arm-versatilepb-Add-memory-size-checking.patch \ |
9 | file://no-valgrind.patch \ | 9 | file://no-valgrind.patch \ |
10 | file://CVE-2016-1568.patch \ | ||
11 | file://CVE-2016-2197.patch \ | ||
12 | file://CVE-2016-2198.patch \ | 10 | file://CVE-2016-2198.patch \ |
13 | file://pathlimit.patch \ | 11 | file://pathlimit.patch \ |
14 | file://CVE-2016-2857.patch \ | ||
15 | file://rng_move_request_from_RngEgd_to_RngBackend.patch \ | 12 | file://rng_move_request_from_RngEgd_to_RngBackend.patch \ |
16 | file://rng_remove_the_unused_request_cancellation_code.patch \ | 13 | file://rng_remove_the_unused_request_cancellation_code.patch \ |
17 | file://rng_move_request_queue_cleanup_from_RngEgd_to_RngBackend.patch \ | 14 | file://rng_move_request_queue_cleanup_from_RngEgd_to_RngBackend.patch \ |
18 | file://CVE-2016-2858.patch \ | 15 | file://CVE-2016-2858.patch \ |
19 | " | 16 | " |
20 | SRC_URI_prepend = "http://wiki.qemu-project.org/download/${BP}.tar.bz2" | 17 | SRC_URI_prepend = "http://wiki.qemu-project.org/download/${BP}.tar.bz2" |
21 | SRC_URI[md5sum] = "f469f2330bbe76e3e39db10e9ac4f8db" | 18 | SRC_URI[md5sum] = "42e73182dea8b9213fa7050e168a4615" |
22 | SRC_URI[sha256sum] = "3443887401619fe33bfa5d900a4f2d6a79425ae2b7e43d5b8c36eb7a683772d4" | 19 | SRC_URI[sha256sum] = "028752c33bb786abbfe496ba57315dc5a7d0a33b5a7a767f6d7a29020c525d2c" |
23 | 20 | ||
24 | COMPATIBLE_HOST_class-target_mips64 = "null" | 21 | COMPATIBLE_HOST_class-target_mips64 = "null" |
25 | 22 | ||