mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
Merge pull request #26162 from zeertzjq/vim-9.0.2121
vim-patch:8.2.2784,9.0.2121
This commit is contained in:
commit
6224690c58
@ -3222,6 +3222,25 @@ static char *sub_parse_flags(char *cmd, subflags_T *subflags, int *which_pat)
|
||||
return cmd;
|
||||
}
|
||||
|
||||
/// Skip over the "sub" part in :s/pat/sub/ where "delimiter" is the separating
|
||||
/// character.
|
||||
static char *skip_substitute(char *start, int delimiter)
|
||||
{
|
||||
char *p = start;
|
||||
|
||||
while (p[0]) {
|
||||
if (p[0] == delimiter) { // end delimiter found
|
||||
*p++ = NUL; // replace it with a NUL
|
||||
break;
|
||||
}
|
||||
if (p[0] == '\\' && p[1] != 0) { // skip escaped characters
|
||||
p++;
|
||||
}
|
||||
MB_PTR_ADV(p);
|
||||
}
|
||||
return p;
|
||||
}
|
||||
|
||||
static int check_regexp_delim(int c)
|
||||
FUNC_ATTR_PURE FUNC_ATTR_WARN_UNUSED_RESULT
|
||||
{
|
||||
@ -3348,18 +3367,9 @@ static int do_sub(exarg_T *eap, const proftime_T timeout, const int cmdpreview_n
|
||||
|
||||
// Small incompatibility: vi sees '\n' as end of the command, but in
|
||||
// Vim we want to use '\n' to find/substitute a NUL.
|
||||
sub = cmd; // remember the start of the substitution
|
||||
|
||||
while (cmd[0]) {
|
||||
if (cmd[0] == delimiter) { // end delimiter found
|
||||
*cmd++ = NUL; // replace it with a NUL
|
||||
break;
|
||||
}
|
||||
if (cmd[0] == '\\' && cmd[1] != 0) { // skip escaped characters
|
||||
cmd++;
|
||||
}
|
||||
MB_PTR_ADV(cmd);
|
||||
}
|
||||
char *p = cmd; // remember the start of the substitution
|
||||
cmd = skip_substitute(cmd, delimiter);
|
||||
sub = xstrdup(p);
|
||||
|
||||
if (!eap->skip && cmdpreview_ns <= 0) {
|
||||
sub_set_replacement((SubReplacementString) {
|
||||
@ -3374,7 +3384,7 @@ static int do_sub(exarg_T *eap, const proftime_T timeout, const int cmdpreview_n
|
||||
return 0;
|
||||
}
|
||||
pat = NULL; // search_regcomp() will use previous pattern
|
||||
sub = old_sub.sub;
|
||||
sub = xstrdup(old_sub.sub);
|
||||
|
||||
// Vi compatibility quirk: repeating with ":s" keeps the cursor in the
|
||||
// last column after using "$".
|
||||
@ -3382,6 +3392,7 @@ static int do_sub(exarg_T *eap, const proftime_T timeout, const int cmdpreview_n
|
||||
}
|
||||
|
||||
if (sub != NULL && sub_joining_lines(eap, pat, sub, cmd, cmdpreview_ns <= 0)) {
|
||||
xfree(sub);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -3396,11 +3407,13 @@ static int do_sub(exarg_T *eap, const proftime_T timeout, const int cmdpreview_n
|
||||
i = getdigits_int(&cmd, true, INT_MAX);
|
||||
if (i <= 0 && !eap->skip && subflags.do_error) {
|
||||
emsg(_(e_zerocount));
|
||||
xfree(sub);
|
||||
return 0;
|
||||
} else if (i >= INT_MAX) {
|
||||
char buf[20];
|
||||
vim_snprintf(buf, sizeof(buf), "%d", i);
|
||||
semsg(_(e_val_too_large), buf);
|
||||
xfree(sub);
|
||||
return 0;
|
||||
}
|
||||
eap->line1 = eap->line2;
|
||||
@ -3416,17 +3429,20 @@ static int do_sub(exarg_T *eap, const proftime_T timeout, const int cmdpreview_n
|
||||
eap->nextcmd = check_nextcmd(cmd);
|
||||
if (eap->nextcmd == NULL) {
|
||||
semsg(_(e_trailing_arg), cmd);
|
||||
xfree(sub);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
if (eap->skip) { // not executing commands, only parsing
|
||||
xfree(sub);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!subflags.do_count && !MODIFIABLE(curbuf)) {
|
||||
// Substitution is not allowed in non-'modifiable' buffer
|
||||
emsg(_(e_modifiable));
|
||||
xfree(sub);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -3435,6 +3451,7 @@ static int do_sub(exarg_T *eap, const proftime_T timeout, const int cmdpreview_n
|
||||
if (subflags.do_error) {
|
||||
emsg(_(e_invcmd));
|
||||
}
|
||||
xfree(sub);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -3449,22 +3466,20 @@ static int do_sub(exarg_T *eap, const proftime_T timeout, const int cmdpreview_n
|
||||
|
||||
assert(sub != NULL);
|
||||
|
||||
char *sub_copy = NULL;
|
||||
|
||||
// If the substitute pattern starts with "\=" then it's an expression.
|
||||
// Make a copy, a recursive function may free it.
|
||||
// Otherwise, '~' in the substitute pattern is replaced with the old
|
||||
// pattern. We do it here once to avoid it to be replaced over and over
|
||||
// again.
|
||||
if (sub[0] == '\\' && sub[1] == '=') {
|
||||
sub = xstrdup(sub);
|
||||
sub_copy = sub;
|
||||
char *p = xstrdup(sub);
|
||||
xfree(sub);
|
||||
sub = p;
|
||||
} else {
|
||||
char *newsub = regtilde(sub, magic_isset(), cmdpreview_ns > 0);
|
||||
if (newsub != sub) {
|
||||
// newsub was allocated, free it later.
|
||||
sub_copy = newsub;
|
||||
sub = newsub;
|
||||
char *p = regtilde(sub, magic_isset(), cmdpreview_ns > 0);
|
||||
if (p != sub) {
|
||||
xfree(sub);
|
||||
sub = p;
|
||||
}
|
||||
}
|
||||
|
||||
@ -4235,7 +4250,7 @@ skip:
|
||||
}
|
||||
|
||||
vim_regfree(regmatch.regprog);
|
||||
xfree(sub_copy);
|
||||
xfree(sub);
|
||||
|
||||
// Restore the flag values, they can be used for ":&&".
|
||||
subflags.do_all = save_do_all;
|
||||
|
@ -4,6 +4,32 @@ source shared.vim
|
||||
source check.vim
|
||||
source screendump.vim
|
||||
|
||||
" NOTE: This needs to be the first test to be
|
||||
" run in the file, since it depends on
|
||||
" that the previous substitution atom
|
||||
" was not yet set.
|
||||
"
|
||||
" recursive call of :s and sub-replace special
|
||||
" (did cause heap-use-after free in < v9.0.2121)
|
||||
func Test_aaaa_substitute_expr_recursive_special()
|
||||
func R()
|
||||
" FIXME: leaving out the 'n' flag leaks memory, why?
|
||||
%s/./\='.'/gn
|
||||
endfunc
|
||||
new Xfoobar_UAF
|
||||
put ='abcdef'
|
||||
let bufnr = bufnr('%')
|
||||
try
|
||||
silent! :s/./~\=R()/0
|
||||
"call assert_fails(':s/./~\=R()/0', 'E939:')
|
||||
let @/='.'
|
||||
~g
|
||||
catch /^Vim\%((\a\+)\)\=:E565:/
|
||||
endtry
|
||||
delfunc R
|
||||
exe bufnr .. "bw!"
|
||||
endfunc
|
||||
|
||||
func Test_multiline_subst()
|
||||
enew!
|
||||
call append(0, ["1 aa",
|
||||
@ -147,7 +173,6 @@ func Test_substitute_repeat()
|
||||
call feedkeys("Qsc\<CR>y", 'tx')
|
||||
bwipe!
|
||||
endfunc
|
||||
|
||||
" Test %s/\n// which is implemented as a special case to use a
|
||||
" more efficient join rather than doing a regular substitution.
|
||||
func Test_substitute_join()
|
||||
@ -1448,11 +1473,30 @@ func Test_substitute_expr_switch_win()
|
||||
endfunc
|
||||
new Xfoobar
|
||||
let bufnr = bufnr('%')
|
||||
put ="abcdef"
|
||||
put ='abcdef'
|
||||
silent! s/\%')/\=R()
|
||||
call assert_fails(':%s/./\=R()/g', 'E565:')
|
||||
delfunc R
|
||||
exe bufnr .. "bw!"
|
||||
endfunc
|
||||
|
||||
" recursive call of :s using test-replace special
|
||||
func Test_substitute_expr_recursive()
|
||||
func Q()
|
||||
%s/./\='foobar'/gn
|
||||
return "foobar"
|
||||
endfunc
|
||||
func R()
|
||||
%s/./\=Q()/g
|
||||
endfunc
|
||||
new Xfoobar_UAF
|
||||
let bufnr = bufnr('%')
|
||||
put ='abcdef'
|
||||
silent! s/./\=R()/g
|
||||
call assert_fails(':%s/./\=R()/g', 'E565:')
|
||||
delfunc R
|
||||
delfunc Q
|
||||
exe bufnr .. "bw!"
|
||||
endfunc
|
||||
|
||||
" vim: shiftwidth=2 sts=2 expandtab
|
||||
|
Loading…
Reference in New Issue
Block a user