From 9a647fe59d1451f1d4bf0b253a94bb02e5da5284 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20M=C3=BCller?= Date: Sat, 2 Apr 2022 11:20:31 +0000 Subject: [PATCH] kernel: Update to 5.15.32 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Refer to https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.15.32 for the changelog of this version. Signed-off-by: Peter Müller --- lfs/linux | 5 +-- src/patches/kernel-5.15-CVE-2022-0847.patch | 46 --------------------- 2 files changed, 1 insertion(+), 50 deletions(-) delete mode 100644 src/patches/kernel-5.15-CVE-2022-0847.patch diff --git a/lfs/linux b/lfs/linux index 018892f7f2..c12ba9c4b1 100644 --- a/lfs/linux +++ b/lfs/linux @@ -24,7 +24,7 @@ include Config -VER = 5.15.23 +VER = 5.15.32 ARM_PATCHES = 5.15-ipfire5 THISAPP = linux-$(VER) @@ -150,9 +150,6 @@ ifeq "$(BUILD_ARCH)" "aarch64" endif cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-3.14.79-amba-fix.patch - # Fix for CVE-2022-0847 aka Dirty Pipe - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/kernel-5.15-CVE-2022-0847.patch - ifeq "$(KCFG)" "-headers" # Install the header files cd $(DIR_APP) && make ARCH=$(HEADERS_ARCH) $(EXTRAMAKE) headers diff --git a/src/patches/kernel-5.15-CVE-2022-0847.patch b/src/patches/kernel-5.15-CVE-2022-0847.patch deleted file mode 100644 index 5279916c27..0000000000 --- a/src/patches/kernel-5.15-CVE-2022-0847.patch +++ /dev/null @@ -1,46 +0,0 @@ -From 114e9f141822e6977633d322c1b03e89bd209932 Mon Sep 17 00:00:00 2001 -From: Max Kellermann -Date: Mon, 21 Feb 2022 11:03:13 +0100 -Subject: [PATCH] lib/iov_iter: initialize "flags" in new pipe_buffer - -commit 9d2231c5d74e13b2a0546fee6737ee4446017903 upstream. - -The functions copy_page_to_iter_pipe() and push_pipe() can both -allocate a new pipe_buffer, but the "flags" member initializer is -missing. - -Fixes: 241699cd72a8 ("new iov_iter flavour: pipe-backed") -To: Alexander Viro -To: linux-fsdevel@vger.kernel.org -To: linux-kernel@vger.kernel.org -Cc: stable@vger.kernel.org -Signed-off-by: Max Kellermann -Signed-off-by: Al Viro -Signed-off-by: Greg Kroah-Hartman ---- - lib/iov_iter.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/lib/iov_iter.c b/lib/iov_iter.c -index 60b5e6edfbaa..c5b2f0f4b8a8 100644 ---- a/lib/iov_iter.c -+++ b/lib/iov_iter.c -@@ -416,6 +416,7 @@ static size_t copy_page_to_iter_pipe(struct page *page, size_t offset, size_t by - return 0; - - buf->ops = &page_cache_pipe_buf_ops; -+ buf->flags = 0; - get_page(page); - buf->page = page; - buf->offset = offset; -@@ -532,6 +533,7 @@ static size_t push_pipe(struct iov_iter *i, size_t size, - break; - - buf->ops = &default_pipe_buf_ops; -+ buf->flags = 0; - buf->page = page; - buf->offset = 0; - buf->len = min_t(ssize_t, left, PAGE_SIZE); --- -2.30.2 - -- 2.39.2