diff options
| author | Hitendra Prajapati <hprajapati@mvista.com> | 2023-11-27 10:12:41 +0530 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2023-12-02 16:36:56 -1000 |
| commit | f007ad78dd1cbc607a086fc216804757f1935bbb (patch) | |
| tree | e52e5846f0d6cd778d0dd11f902f3067e48b4f4f | |
| parent | 24121f969931ce1192ef923013929d0719cf22e1 (diff) | |
| download | poky-f007ad78dd1cbc607a086fc216804757f1935bbb.tar.gz | |
grub: fix CVE-2023-4693
Upstream-Status: Backport from https://git.savannah.gnu.org/gitweb/?p=grub.git;a=commit;h=0ed2458cc4eff6d9a9199527e2a0b6d445802f94
(From OE-Core rev: 1bbbba098dba85ec1b875512d75f7eca9026e781)
Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
| -rw-r--r-- | meta/recipes-bsp/grub/files/CVE-2023-4693.patch | 62 | ||||
| -rw-r--r-- | meta/recipes-bsp/grub/grub2.inc | 1 |
2 files changed, 63 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/files/CVE-2023-4693.patch b/meta/recipes-bsp/grub/files/CVE-2023-4693.patch new file mode 100644 index 0000000000..1b6013d86d --- /dev/null +++ b/meta/recipes-bsp/grub/files/CVE-2023-4693.patch | |||
| @@ -0,0 +1,62 @@ | |||
| 1 | From 0ed2458cc4eff6d9a9199527e2a0b6d445802f94 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Maxim Suhanov <dfirblog@gmail.com> | ||
| 3 | Date: Mon, 28 Aug 2023 16:32:33 +0300 | ||
| 4 | Subject: [PATCH] fs/ntfs: Fix an OOB read when reading data from the resident | ||
| 5 | $DATA attribute | ||
| 6 | |||
| 7 | When reading a file containing resident data, i.e., the file data is stored in | ||
| 8 | the $DATA attribute within the NTFS file record, not in external clusters, | ||
| 9 | there are no checks that this resident data actually fits the corresponding | ||
| 10 | file record segment. | ||
| 11 | |||
| 12 | When parsing a specially-crafted file system image, the current NTFS code will | ||
| 13 | read the file data from an arbitrary, attacker-chosen memory offset and of | ||
| 14 | arbitrary, attacker-chosen length. | ||
| 15 | |||
| 16 | This allows an attacker to display arbitrary chunks of memory, which could | ||
| 17 | contain sensitive information like password hashes or even plain-text, | ||
| 18 | obfuscated passwords from BS EFI variables. | ||
| 19 | |||
| 20 | This fix implements a check to ensure that resident data is read from the | ||
| 21 | corresponding file record segment only. | ||
| 22 | |||
| 23 | Fixes: CVE-2023-4693 | ||
| 24 | |||
| 25 | Reported-by: Maxim Suhanov <dfirblog@gmail.com> | ||
| 26 | Signed-off-by: Maxim Suhanov <dfirblog@gmail.com> | ||
| 27 | Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com> | ||
| 28 | |||
| 29 | Upstream-Status: Backport [https://git.savannah.gnu.org/gitweb/?p=grub.git;a=commit;h=0ed2458cc4eff6d9a9199527e2a0b6d445802f94] | ||
| 30 | CVE: CVE-2023-4693 | ||
| 31 | Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com> | ||
| 32 | --- | ||
| 33 | grub-core/fs/ntfs.c | 13 ++++++++++++- | ||
| 34 | 1 file changed, 12 insertions(+), 1 deletion(-) | ||
| 35 | |||
| 36 | diff --git a/grub-core/fs/ntfs.c b/grub-core/fs/ntfs.c | ||
| 37 | index 7e43fd6..8f63c83 100644 | ||
| 38 | --- a/grub-core/fs/ntfs.c | ||
| 39 | +++ b/grub-core/fs/ntfs.c | ||
| 40 | @@ -401,7 +401,18 @@ read_data (struct grub_ntfs_attr *at, grub_uint8_t *pa, grub_uint8_t *dest, | ||
| 41 | { | ||
| 42 | if (ofs + len > u32at (pa, 0x10)) | ||
| 43 | return grub_error (GRUB_ERR_BAD_FS, "read out of range"); | ||
| 44 | - grub_memcpy (dest, pa + u32at (pa, 0x14) + ofs, len); | ||
| 45 | + | ||
| 46 | + if (u32at (pa, 0x10) > (at->mft->data->mft_size << GRUB_NTFS_BLK_SHR)) | ||
| 47 | + return grub_error (GRUB_ERR_BAD_FS, "resident attribute too large"); | ||
| 48 | + | ||
| 49 | + if (pa >= at->mft->buf + (at->mft->data->mft_size << GRUB_NTFS_BLK_SHR)) | ||
| 50 | + return grub_error (GRUB_ERR_BAD_FS, "resident attribute out of range"); | ||
| 51 | + | ||
| 52 | + if (u16at (pa, 0x14) + u32at (pa, 0x10) > | ||
| 53 | + (grub_addr_t) at->mft->buf + (at->mft->data->mft_size << GRUB_NTFS_BLK_SHR) - (grub_addr_t) pa) | ||
| 54 | + return grub_error (GRUB_ERR_BAD_FS, "resident attribute out of range"); | ||
| 55 | + | ||
| 56 | + grub_memcpy (dest, pa + u16at (pa, 0x14) + ofs, len); | ||
| 57 | return 0; | ||
| 58 | } | ||
| 59 | |||
| 60 | -- | ||
| 61 | 2.25.1 | ||
| 62 | |||
diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2.inc index aaee8a1e03..e6c6cd98b4 100644 --- a/meta/recipes-bsp/grub/grub2.inc +++ b/meta/recipes-bsp/grub/grub2.inc | |||
| @@ -39,6 +39,7 @@ SRC_URI = "${GNU_MIRROR}/grub/grub-${PV}.tar.gz \ | |||
| 39 | file://commands-boot-Add-API-to-pass-context-to-loader.patch \ | 39 | file://commands-boot-Add-API-to-pass-context-to-loader.patch \ |
| 40 | file://CVE-2022-28736-loader-efi-chainloader-Use-grub_loader_set_ex.patch \ | 40 | file://CVE-2022-28736-loader-efi-chainloader-Use-grub_loader_set_ex.patch \ |
| 41 | file://CVE-2023-4692.patch \ | 41 | file://CVE-2023-4692.patch \ |
| 42 | file://CVE-2023-4693.patch \ | ||
| 42 | " | 43 | " |
| 43 | 44 | ||
| 44 | SRC_URI[sha256sum] = "23b64b4c741569f9426ed2e3d0e6780796fca081bee4c99f62aa3f53ae803f5f" | 45 | SRC_URI[sha256sum] = "23b64b4c741569f9426ed2e3d0e6780796fca081bee4c99f62aa3f53ae803f5f" |
