diff --git a/backport-CVE-2021-4019.patch b/backport-CVE-2021-4019.patch new file mode 100644 index 0000000000000000000000000000000000000000..590cdde961210457df365b6c5604567ee6e83982 --- /dev/null +++ b/backport-CVE-2021-4019.patch @@ -0,0 +1,45 @@ +From bd228fd097b41a798f90944b5d1245eddd484142 Mon Sep 17 00:00:00 2001 +From: Bram Moolenaar +Date: Thu, 25 Nov 2021 10:50:12 +0000 +Subject: [PATCH] patch 8.2.3669: buffer overflow with long help argument + +Problem: Buffer overflow with long help argument. +Solution: Use snprintf(). +--- + src/ex_cmds.c | 3 +-- + src/testdir/test_help.vim | 8 ++++++++ + 2 files changed, 9 insertions(+), 2 deletions(-) + +diff --git a/src/ex_cmds.c b/src/ex_cmds.c +index 45c733b..8f6444f 100644 +--- a/src/ex_cmds.c ++++ b/src/ex_cmds.c +@@ -5436,8 +5436,7 @@ find_help_tags( + || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL + && arg[2] != NUL))) + { +- STRCPY(d, "/\\\\"); +- STRCPY(d + 3, arg + 1); ++ vim_snprintf((char *)d, IOSIZE, "/\\\\%s", arg + 1); + // Check for "/\\_$", should be "/\\_\$" + if (d[3] == '_' && d[4] == '$') + STRCPY(d + 4, "\\$"); +diff --git a/src/testdir/test_help.vim b/src/testdir/test_help.vim +index 5dd937a..c2aeb1f 100644 +--- a/src/testdir/test_help.vim ++++ b/src/testdir/test_help.vim +@@ -55,3 +55,11 @@ func Test_help_local_additions() + call delete('Xruntime', 'rf') + let &rtp = rtp_save + endfunc ++ ++func Test_help_long_argument() ++ try ++ exe 'help \%' .. repeat('0', 1021) ++ catch ++ call assert_match("E149:", v:exception) ++ endtry ++endfunc +-- +1.8.3.1 + diff --git a/vim.spec b/vim.spec index 092afca94a744ab15efac93580f0040b86ea4ecb..eb2cfaf4c2cbcb89f0ab909d7a8525c610ce9842 100644 --- a/vim.spec +++ b/vim.spec @@ -11,7 +11,7 @@ Name: vim Epoch: 2 Version: 8.2 -Release: 8 +Release: 9 Summary: Vim is a highly configurable text editor for efficiently creating and changing any kind of text. License: Vim and MIT URL: http://www.vim.org @@ -45,6 +45,7 @@ Patch6011: backport-CVE-2021-3974.patch Patch6012: backport-find-test-fails.patch Patch6013: backport-no-early-check-if-find-and-sfind-have-an-argument.patch Patch6014: backport-CVE-2021-3984.patch +Patch6015: backport-CVE-2021-4019.patch Patch9000: bugfix-rm-modify-info-version.patch @@ -433,6 +434,12 @@ popd %{_mandir}/man1/evim.* %changelog +* Tue Dec 07 2021 shixuantong - 2:8.2-9 +- Type:CVE +- ID:CVE-2021-4019 +- SUG:NA +- DESC:fix CVE-2021-4019 + * Sat Dec 04 2021 shixuantong - 2:8.2-8 - Type:CVE - ID:CVE-2021-3984