mirror of
https://git.yoctoproject.org/poky
synced 2026-04-05 08:02:25 +02:00
vim: fix CVE-2021-3927 and CVE-2021-3928
Backport patches to fix CVE-2021-3927 and CVE-2021-3928. (From OE-Core rev: 41ba5054fc4d014ab3a2af0cc7673e275aaecee0) Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
729693f0c2
commit
39ee281be1
32
meta/recipes-support/vim/files/CVE-2021-3927.patch
Normal file
32
meta/recipes-support/vim/files/CVE-2021-3927.patch
Normal file
@@ -0,0 +1,32 @@
|
||||
From f334a87204b4aab76536063b37b4d4a10be46a3a Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Wed, 17 Nov 2021 11:09:48 +0800
|
||||
Subject: [PATCH] patch 8.2.3581: reading character past end of line
|
||||
|
||||
Problem: Reading character past end of line.
|
||||
Solution: Correct the cursor column.
|
||||
|
||||
CVE: CVE-2021-3927
|
||||
|
||||
Upstream-Status: Backport [https://github.com/vim/vim/commit/0b5b06cb4777d1401fdf83e7d48d287662236e7e]
|
||||
|
||||
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
||||
---
|
||||
src/ex_docmd.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
|
||||
index 89d33ba90..54d7f4cb3 100644
|
||||
--- a/src/ex_docmd.c
|
||||
+++ b/src/ex_docmd.c
|
||||
@@ -6905,6 +6905,7 @@ ex_put(exarg_T *eap)
|
||||
eap->forceit = TRUE;
|
||||
}
|
||||
curwin->w_cursor.lnum = eap->line2;
|
||||
+ check_cursor_col();
|
||||
do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
|
||||
PUT_LINE|PUT_CURSLINE);
|
||||
}
|
||||
--
|
||||
2.17.1
|
||||
|
||||
34
meta/recipes-support/vim/files/CVE-2021-3928.patch
Normal file
34
meta/recipes-support/vim/files/CVE-2021-3928.patch
Normal file
@@ -0,0 +1,34 @@
|
||||
From ad7f7a3f81077ddfac451acd33ca049b9f2a5178 Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Wed, 17 Nov 2021 11:22:21 +0800
|
||||
Subject: [PATCH] patch 8.2.3582: reading uninitialized memory when giving
|
||||
spell suggestions
|
||||
|
||||
Problem: Reading uninitialized memory when giving spell suggestions.
|
||||
Solution: Check that preword is not empty.
|
||||
|
||||
CVE: CVE-2021-3928
|
||||
|
||||
Upstream-Status: Backport [https://github.com/vim/vim/commit/15d9890eee53afc61eb0a03b878a19cb5672f732]
|
||||
|
||||
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
||||
---
|
||||
src/spellsuggest.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/spellsuggest.c b/src/spellsuggest.c
|
||||
index 9d6df7930..88307b203 100644
|
||||
--- a/src/spellsuggest.c
|
||||
+++ b/src/spellsuggest.c
|
||||
@@ -1600,7 +1600,7 @@ suggest_trie_walk(
|
||||
// char, e.g., "thes," -> "these".
|
||||
p = fword + sp->ts_fidx;
|
||||
MB_PTR_BACK(fword, p);
|
||||
- if (!spell_iswordp(p, curwin))
|
||||
+ if (!spell_iswordp(p, curwin) && *preword != NUL)
|
||||
{
|
||||
p = preword + STRLEN(preword);
|
||||
MB_PTR_BACK(preword, p);
|
||||
--
|
||||
2.17.1
|
||||
|
||||
@@ -23,6 +23,8 @@ SRC_URI = "git://github.com/vim/vim.git;branch=master;protocol=https \
|
||||
file://CVE-2021-3903.patch \
|
||||
file://CVE-2021-3872.patch \
|
||||
file://CVE-2021-3875.patch \
|
||||
file://CVE-2021-3927.patch \
|
||||
file://CVE-2021-3928.patch \
|
||||
"
|
||||
|
||||
SRCREV = "98056533b96b6b5d8849641de93185dd7bcadc44"
|
||||
|
||||
Reference in New Issue
Block a user