mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.4653: "import autoload" does not check the file name
Problem: "import autoload" does not check the file name. Solution: Give an error if the file is not readable. (closes #10049)
This commit is contained in:
@@ -30,8 +30,9 @@ EXTERN char e_invalid_expression_str[]
|
|||||||
#endif
|
#endif
|
||||||
EXTERN char e_invalid_range[]
|
EXTERN char e_invalid_range[]
|
||||||
INIT(= N_("E16: Invalid range"));
|
INIT(= N_("E16: Invalid range"));
|
||||||
#if defined(UNIX) || defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
|
#if defined(UNIX) || defined(FEAT_SYN_HL) \
|
||||||
EXTERN char e_src_is_directory[]
|
|| defined(FEAT_SPELL) || defined(FEAT_EVAL)
|
||||||
|
EXTERN char e_str_is_directory[]
|
||||||
INIT(= N_("E17: \"%s\" is a directory"));
|
INIT(= N_("E17: \"%s\" is a directory"));
|
||||||
#endif
|
#endif
|
||||||
#ifdef FEAT_EVAL
|
#ifdef FEAT_EVAL
|
||||||
|
@@ -2116,7 +2116,7 @@ check_overwrite(
|
|||||||
// with UNIX it is possible to open a directory
|
// with UNIX it is possible to open a directory
|
||||||
if (mch_isdir(ffname))
|
if (mch_isdir(ffname))
|
||||||
{
|
{
|
||||||
semsg(_(e_src_is_directory), ffname);
|
semsg(_(e_str_is_directory), ffname);
|
||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@@ -8386,7 +8386,7 @@ open_exfile(
|
|||||||
// with Unix it is possible to open a directory
|
// with Unix it is possible to open a directory
|
||||||
if (mch_isdir(fname))
|
if (mch_isdir(fname))
|
||||||
{
|
{
|
||||||
semsg(_(e_src_is_directory), fname);
|
semsg(_(e_str_is_directory), fname);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@@ -892,33 +892,35 @@ f_exepath(typval_T *argvars, typval_T *rettv)
|
|||||||
rettv->vval.v_string = p;
|
rettv->vval.v_string = p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Return TRUE if "fname" is a readable file.
|
||||||
|
*/
|
||||||
|
int
|
||||||
|
file_is_readable(char_u *fname)
|
||||||
|
{
|
||||||
|
int fd;
|
||||||
|
|
||||||
|
#ifndef O_NONBLOCK
|
||||||
|
# define O_NONBLOCK 0
|
||||||
|
#endif
|
||||||
|
if (*fname && !mch_isdir(fname)
|
||||||
|
&& (fd = mch_open((char *)fname, O_RDONLY | O_NONBLOCK, 0)) >= 0)
|
||||||
|
{
|
||||||
|
close(fd);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* "filereadable()" function
|
* "filereadable()" function
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
f_filereadable(typval_T *argvars, typval_T *rettv)
|
f_filereadable(typval_T *argvars, typval_T *rettv)
|
||||||
{
|
{
|
||||||
int fd;
|
|
||||||
char_u *p;
|
|
||||||
int n;
|
|
||||||
|
|
||||||
if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL)
|
if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL)
|
||||||
return;
|
return;
|
||||||
|
rettv->vval.v_number = file_is_readable(tv_get_string(&argvars[0]));
|
||||||
#ifndef O_NONBLOCK
|
|
||||||
# define O_NONBLOCK 0
|
|
||||||
#endif
|
|
||||||
p = tv_get_string(&argvars[0]);
|
|
||||||
if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
|
|
||||||
O_RDONLY | O_NONBLOCK, 0)) >= 0)
|
|
||||||
{
|
|
||||||
n = TRUE;
|
|
||||||
close(fd);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
n = FALSE;
|
|
||||||
|
|
||||||
rettv->vval.v_number = n;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -1761,7 +1763,7 @@ read_file_or_blob(typval_T *argvars, typval_T *rettv, int always_blob)
|
|||||||
|
|
||||||
if (mch_isdir(fname))
|
if (mch_isdir(fname))
|
||||||
{
|
{
|
||||||
semsg(_(e_src_is_directory), fname);
|
semsg(_(e_str_is_directory), fname);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
|
if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
|
||||||
|
@@ -5,6 +5,7 @@ void f_chdir(typval_T *argvars, typval_T *rettv);
|
|||||||
void f_delete(typval_T *argvars, typval_T *rettv);
|
void f_delete(typval_T *argvars, typval_T *rettv);
|
||||||
void f_executable(typval_T *argvars, typval_T *rettv);
|
void f_executable(typval_T *argvars, typval_T *rettv);
|
||||||
void f_exepath(typval_T *argvars, typval_T *rettv);
|
void f_exepath(typval_T *argvars, typval_T *rettv);
|
||||||
|
int file_is_readable(char_u *fname);
|
||||||
void f_filereadable(typval_T *argvars, typval_T *rettv);
|
void f_filereadable(typval_T *argvars, typval_T *rettv);
|
||||||
void f_filewritable(typval_T *argvars, typval_T *rettv);
|
void f_filewritable(typval_T *argvars, typval_T *rettv);
|
||||||
void f_finddir(typval_T *argvars, typval_T *rettv);
|
void f_finddir(typval_T *argvars, typval_T *rettv);
|
||||||
|
@@ -5976,7 +5976,7 @@ mkspell(
|
|||||||
}
|
}
|
||||||
if (mch_isdir(wfname))
|
if (mch_isdir(wfname))
|
||||||
{
|
{
|
||||||
semsg(_(e_src_is_directory), wfname);
|
semsg(_(e_str_is_directory), wfname);
|
||||||
goto theend;
|
goto theend;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -2508,13 +2508,19 @@ def Test_import_autoload_fails()
|
|||||||
vim9script
|
vim9script
|
||||||
import autoload './doesNotExist.vim'
|
import autoload './doesNotExist.vim'
|
||||||
END
|
END
|
||||||
v9.CheckScriptSuccess(lines)
|
v9.CheckScriptFailure(lines, 'E282:', 2)
|
||||||
|
|
||||||
lines =<< trim END
|
lines =<< trim END
|
||||||
vim9script
|
vim9script
|
||||||
import autoload '/dir/doesNotExist.vim'
|
import autoload '/dir/doesNotExist.vim'
|
||||||
END
|
END
|
||||||
v9.CheckScriptSuccess(lines)
|
v9.CheckScriptFailure(lines, 'E282:', 2)
|
||||||
|
|
||||||
|
lines =<< trim END
|
||||||
|
vim9script
|
||||||
|
import autoload '../testdir'
|
||||||
|
END
|
||||||
|
v9.CheckScriptFailure(lines, 'E17:', 2)
|
||||||
|
|
||||||
lines =<< trim END
|
lines =<< trim END
|
||||||
vim9script
|
vim9script
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
4653,
|
||||||
/**/
|
/**/
|
||||||
4652,
|
4652,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user