diff options
author | Christopher Faylor <me@cgf.cx> | 2005-04-20 18:25:14 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-04-20 18:25:14 +0000 |
commit | 2e98459145a93cfdbdd20231d23a3b493fcad0d7 (patch) | |
tree | 913b1c65beefff440e60a4078c4577f3f62a0d85 /winsup | |
parent | c6a00dcbb99e20eeb313b8b9a7892f6baa367aca (diff) | |
download | newlib-2e98459145a93cfdbdd20231d23a3b493fcad0d7.zip newlib-2e98459145a93cfdbdd20231d23a3b493fcad0d7.tar.gz newlib-2e98459145a93cfdbdd20231d23a3b493fcad0d7.tar.bz2 |
* path.cc (path_conv::check): Fix problem reading symlinks introduced in below
change by reverting the change and adding an additional test for nonexistent
files in /proc.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/cygwin/path.cc | 34 |
2 files changed, 29 insertions, 11 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 91ab04f..9d94aae 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,11 @@ 2005-04-20 Christopher Faylor <cgf@timesys.com> + * path.cc (path_conv::check): Fix problem reading symlinks introduced + in below change by reverting the change and adding an additional test + for nonexistent files in /proc. + +2005-04-20 Christopher Faylor <cgf@timesys.com> + * path.cc (path_conv::check): Punt when attempting to access a nonexistent directory or file in /proc. diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index 0baafb0..0d67e72 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -531,7 +531,7 @@ path_conv::check (const char *src, unsigned opt, symlink_info sym; bool need_directory = 0; bool saw_symlinks = 0; - int is_relpath; + bool is_relpath; char *tail, *path_end; #if 0 @@ -646,25 +646,33 @@ path_conv::check (const char *src, unsigned opt, { case 1: case 2: - fileattr = FILE_ATTRIBUTE_DIRECTORY; + if (component == 0) + fileattr = FILE_ATTRIBUTE_DIRECTORY; break; case -1: - fileattr = 0; + if (component == 0) + fileattr = 0; break; case -2: /* /proc/self or /proc/<pid>/symlinks */ goto is_virtual_symlink; case -3: /* /proc/<pid>/fd/pipe:[] */ - fileattr = 0; - dev.parse (FH_PIPE); + if (component == 0) + { + fileattr = 0; + dev.parse (FH_PIPE); + } break; case -4: /* /proc/<pid>/fd/socket:[] */ - fileattr = 0; - dev.parse (FH_TCP); + if (component == 0) + { + fileattr = 0; + dev.parse (FH_TCP); + } break; default: - fileattr = INVALID_FILE_ATTRIBUTES; - error = ENOENT; - break; + if (component == 0) + fileattr = INVALID_FILE_ATTRIBUTES; + goto virtual_component_retry; } goto out; } @@ -794,7 +802,6 @@ is_virtual_symlink: } virtual_component_retry: - /* Find the new "tail" of the path, e.g. in '/for/bar/baz', /baz is the tail. */ if (tail != path_end) @@ -877,6 +884,11 @@ out: /* nothing to do */; else if (fileattr & FILE_ATTRIBUTE_DIRECTORY) path_flags &= ~PATH_SYMLINK; + else if (isvirtual_dev (dev.devn) && fileattr == INVALID_FILE_ATTRIBUTES) + { + error = ENOENT; + return; + } else { debug_printf ("%s is a non-directory", path); |