]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.0.2140: [security]: use-after-free in win-enter v9.0.2140
authorChristian Brabandt <cb@256bit.org>
Tue, 28 Nov 2023 21:03:48 +0000 (22:03 +0100)
committerChristian Brabandt <cb@256bit.org>
Fri, 1 Dec 2023 17:58:50 +0000 (18:58 +0100)
Problem:  [security]: use-after-free in win-enter
Solution: validate window pointer before calling win_enter()

win_goto() may stop visual mode, if it is active. However, this may in
turn trigger the ModeChanged autocommand, which could potentially free
the wp pointer which was valid before now became stale and points to now
freed memory.

So before calling win_enter(), let's verify one more time, that the
wp pointer still points to a valid window structure.

Reported by @henices, thanks!

Signed-off-by: Christian Brabandt <cb@256bit.org>
src/testdir/crash/poc_win_enter_ext [new file with mode: 0644]
src/testdir/test_crash.vim
src/version.c
src/window.c

diff --git a/src/testdir/crash/poc_win_enter_ext b/src/testdir/crash/poc_win_enter_ext
new file mode 100644 (file)
index 0000000..73f53b5
Binary files /dev/null and b/src/testdir/crash/poc_win_enter_ext differ
index b093b053c59dd1542d043e729e51d706fdb40c5f..11c5f4e014dcd17807131a25175605fb3200b28e 100644 (file)
@@ -128,6 +128,13 @@ func Test_crash1_2()
     \ '  && echo "crash 1: [OK]" > '.. result .. "\<cr>")
   call TermWait(buf, 150)
 
+  let file = 'crash/poc_win_enter_ext'
+  let cmn_args = "%s -u NONE -i NONE -n -e -s -S %s -c ':qa!'"
+  let args = printf(cmn_args, vim, file)
+  call term_sendkeys(buf, args ..
+    \ '  && echo "crash 2: [OK]" >> '.. result .. "\<cr>")
+  call TermWait(buf, 350)
+
   " clean up
   exe buf .. "bw!"
 
@@ -135,6 +142,7 @@ func Test_crash1_2()
 
   let expected = [
       \ 'crash 1: [OK]',
+      \ 'crash 2: [OK]',
       \ ]
 
   call assert_equal(expected, getline(1, '$'))
index 3fc23c17e501371ac813a503d0e15a7f152c60de..e32e5c006dbfd817551822eb9d801174210d3805 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2140,
 /**/
     2139,
 /**/
index 0f4363b942a6e78dab1ab6601713a8efc31220a4..be010dc7fdccfe7dd981f08e0c9f8d9bf2e90569 100644 (file)
@@ -5013,6 +5013,7 @@ tabpage_move(int nr)
  * Go to another window.
  * When jumping to another buffer, stop Visual mode.  Do this before
  * changing windows so we can yank the selection into the '*' register.
+ * (note: this may trigger ModeChanged autocommand!)
  * When jumping to another window on the same buffer, adjust its cursor
  * position to keep the same Visual area.
  */
@@ -5039,10 +5040,15 @@ win_goto(win_T *wp)
     }
 
     if (wp->w_buffer != curbuf)
+       // careful: triggers ModeChanged autocommand
        reset_VIsual_and_resel();
     else if (VIsual_active)
        wp->w_cursor = curwin->w_cursor;
 
+    // autocommand may have made wp invalid
+    if (!win_valid(wp))
+       return;
+
 #ifdef FEAT_GUI
     need_mouse_correct = TRUE;
 #endif