1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-09 08:46:04 +02:00

26772: better error handling and fix runaway chdir on failed cd

This commit is contained in:
Peter Stephenson 2009-03-24 12:52:07 +00:00
parent ee71aa006e
commit 9defc9850d
5 changed files with 38 additions and 13 deletions

View File

@ -1,3 +1,9 @@
2009-03-24 Peter Stephenson <pws@csr.com>
* 26772: Src/glob.c, Src/utils.c, Src/zsh.h, Src/Modules/files.c:
more failed cd handling: fix possible runaway series of chdirs;
better error handling.
2009-03-23 Peter Stephenson <pws@csr.com>
* 26769: Src/utils.c: 26767 created an even worse problem.
@ -11474,5 +11480,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.4633 $
* $Revision: 1.4634 $
*****************************************************

View File

@ -382,9 +382,7 @@ recursivecmd(char *nam, int opt_noerr, int opt_recurse, int opt_safe,
reccmd.dirpost_func = dirpost_func;
reccmd.leaf_func = leaf_func;
reccmd.magic = magic;
ds.ino = ds.dev = 0;
ds.dirname = NULL;
ds.dirfd = ds.level = -1;
init_dirsav(&ds);
if (opt_recurse || opt_safe) {
if ((ds.dirfd = open(".", O_RDONLY|O_NOCTTY)) < 0 &&
zgetdir(&ds) && *ds.dirname != '/')
@ -476,9 +474,7 @@ recursivecmd_dorec(struct recursivecmd const *reccmd,
}
err = err1;
dsav.ino = dsav.dev = 0;
dsav.dirname = NULL;
dsav.dirfd = dsav.level = -1;
init_dirsav(&dsav);
d = opendir(".");
if(!d) {
if(!reccmd->opt_noerr)

View File

@ -492,9 +492,7 @@ scanner(Complist q)
int errssofar = errsfound;
struct dirsav ds;
ds.ino = ds.dev = 0;
ds.dirname = NULL;
ds.dirfd = ds.level = -1;
init_dirsav(&ds);
if (!q)
return;

View File

@ -5356,6 +5356,21 @@ upchdir(int n)
return 0;
}
/*
* Initialize a "struct dirsav".
* The structure will be set to the directory we want to save
* the first time we change to a different directory.
*/
/**/
mod_export void
init_dirsav(Dirsav d)
{
d->ino = d->dev = 0;
d->dirname = NULL;
d->dirfd = d->level = -1;
}
/* Change directory, without following symlinks. Returns 0 on success, -1 *
* on failure. Sets errno to ENOTDIR if any symlinks are encountered. If *
* fchdir() fails, or the current directory is unreadable, we might end up *
@ -5379,9 +5394,7 @@ lchdir(char const *path, struct dirsav *d, int hard)
#endif
if (!d) {
ds.ino = ds.dev = 0;
ds.dirname = NULL;
ds.dirfd = -1;
init_dirsav(&ds);
d = &ds;
}
#ifdef HAVE_LSTAT
@ -5479,6 +5492,17 @@ lchdir(char const *path, struct dirsav *d, int hard)
}
}
if (restoredir(d)) {
int restoreerr = errno;
/*
* Failed to restore the directory.
* Just be definite, cd to root and report the result.
*/
zsfree(pwd);
pwd = ztrdup("/");
if (chdir(pwd) < 0)
zerr("lost current directory, failed to cd to /: %e", errno);
else
zerr("lost current directory: %e: changed to /", restoreerr);
if (d == &ds)
zsfree(ds.dirname);
#ifdef HAVE_FCHDIR

View File

@ -382,6 +382,7 @@ typedef struct builtin *Builtin;
typedef struct cmdnam *Cmdnam;
typedef struct complist *Complist;
typedef struct conddef *Conddef;
typedef struct dirsav *Dirsav;
typedef struct features *Features;
typedef struct feature_enables *Feature_enables;
typedef struct funcstack *Funcstack;