]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 8.2.4322: Vim9: crash when using funcref with closure v8.2.4322
authorBram Moolenaar <Bram@vim.org>
Mon, 7 Feb 2022 19:56:43 +0000 (19:56 +0000)
committerBram Moolenaar <Bram@vim.org>
Mon, 7 Feb 2022 19:56:43 +0000 (19:56 +0000)
Problem:    Vim9: crash when using funcref with closure.
Solution:   Keep a reference to the funcref that has the outer context.
            (closes #9716)

src/eval.c
src/evalfunc.c
src/structs.h
src/testdir/test_vim9_func.vim
src/version.c
src/vim9execute.c

index 7ab05be122e73f198c244bc59a7089a65ef9b241..2942d0fe1d9bc81876dca236c661f93cf6ba4413 100644 (file)
@@ -4526,6 +4526,9 @@ partial_free(partial_T *pt)
     // "out_up" is no longer used, decrement refcount on partial that owns it.
     partial_unref(pt->pt_outer.out_up_partial);
 
+    // Using pt_outer from another partial.
+    partial_unref(pt->pt_outer_partial);
+
     // Decrease the reference count for the context of a closure.  If down
     // to the minimum it may be time to free it.
     if (pt->pt_funcstack != NULL)
index eb12e75d07a3d34607e26aa6f7ca67ab554e0dbb..b031369efd661c1413c74e7f3939905ce7d72000 100644 (file)
@@ -4456,7 +4456,10 @@ common_function(typval_T *argvars, typval_T *rettv, int is_funcref)
                }
 
                if (arg_pt != NULL)
-                   pt->pt_outer = arg_pt->pt_outer;
+               {
+                   pt->pt_outer_partial = arg_pt;
+                   ++arg_pt->pt_refcount;
+               }
            }
            rettv->v_type = VAR_PARTIAL;
            rettv->vval.v_partial = pt;
index ecab3541d58cb49a038c56fb720d1d9794eb1baf..1e759f5dfd0b77d814dcdaf5af4827dc0a4dce55 100644 (file)
@@ -2051,6 +2051,9 @@ struct partial_S
     // For a compiled closure: the arguments and local variables scope
     outer_T    pt_outer;
 
+    // For a partial of a partial: use pt_outer values of this partial.
+    partial_T  *pt_outer_partial;
+
     funcstack_T        *pt_funcstack;  // copy of stack, used after context
                                // function returns
 
index 7ab15f72f3174b941d38cd29e8f5fe70b9b63d14..4ac4643e073a2bf9141aac1f142f5e8ebd358f64 100644 (file)
@@ -3477,6 +3477,25 @@ def Test_nested_closure_funcref()
   unlet g:result_one g:result_two
 enddef
 
+def Test_nested_closure_in_dict()
+  var lines =<< trim END
+      vim9script
+      def Func(): dict<any>
+        var n: number
+        def Inc(): number
+          ++n
+          return n
+        enddef
+        return {inc: function(Inc)}
+      enddef
+      disas Func
+      var d = Func()
+      assert_equal(1, d.inc())
+      assert_equal(2, d.inc())
+  END
+  v9.CheckScriptSuccess(lines)
+enddef
+
 def Test_check_func_arg_types()
   var lines =<< trim END
       vim9script
index 97bcfdef9bd9894e2044d80cc1056ccd3077c94c..c1f90cdd037d72d59f059c3a2ce842a532080ce2 100644 (file)
@@ -746,6 +746,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    4322,
 /**/
     4321,
 /**/
index 961e4507c52aece2a3fd4fb428ab408ac6ebccef..1412d08365804bb809e7e958f2d8d3f280d89338 100644 (file)
@@ -234,6 +234,23 @@ dict_stack_clear(int len)
        dict_stack_drop();
 }
 
+/*
+ * Get a pointer to useful "pt_outer" of "pt".
+ */
+    static outer_T *
+get_pt_outer(partial_T *pt)
+{
+    partial_T *ptref = pt->pt_outer_partial;
+
+    if (ptref == NULL)
+       return &pt->pt_outer;
+
+    // partial using partial (recursively)
+    while (ptref->pt_outer_partial != NULL)
+       ptref = ptref->pt_outer_partial;
+    return &ptref->pt_outer;
+}
+
 /*
  * Call compiled function "cdf_idx" from compiled code.
  * This adds a stack frame and sets the instruction pointer to the start of the
@@ -421,13 +438,13 @@ call_dfunc(
            return FAIL;
        if (pt != NULL)
        {
-           ref->or_outer = &pt->pt_outer;
+           ref->or_outer = get_pt_outer(pt);
            ++pt->pt_refcount;
            ref->or_partial = pt;
        }
        else if (ufunc->uf_partial != NULL)
        {
-           ref->or_outer = &ufunc->uf_partial->pt_outer;
+           ref->or_outer = get_pt_outer(ufunc->uf_partial);
            ++ufunc->uf_partial->pt_refcount;
            ref->or_partial = ufunc->uf_partial;
        }
@@ -5086,7 +5103,9 @@ call_def_function(
                goto failed_early;
            if (partial != NULL)
            {
-               if (partial->pt_outer.out_stack == NULL)
+               outer_T *outer = get_pt_outer(partial);
+
+               if (outer->out_stack == NULL)
                {
                    if (current_ectx != NULL)
                    {
@@ -5099,7 +5118,7 @@ call_def_function(
                }
                else
                {
-                   ectx.ec_outer_ref->or_outer = &partial->pt_outer;
+                   ectx.ec_outer_ref->or_outer = outer;
                    ++partial->pt_refcount;
                    ectx.ec_outer_ref->or_partial = partial;
                }