Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Dessent <brian@dessent.net>2008-03-11 20:20:02 +0300
committerBrian Dessent <brian@dessent.net>2008-03-11 20:20:02 +0300
commit60efa4e546a8f2e8e23f2de5ccd77c8c30240162 (patch)
treec6e1cc51637891191e4a42196a4f75d701206a83 /winsup/utils/cygcheck.cc
parent0c4cb56009a42d4f0c3b837315ac8ed09d4a63b9 (diff)
* cygcheck.cc (dirname): New static function.
(find_app_on_path): Use SYMLINK_MAX. Resolve symlink relative to link's location. Adjust to the fact that cygpath already normalizes its return value. * path.cc (rel_vconcat): Add cwd parameter, and use it instead of calling GetCurrentDirectory() if possible. Rename throughout. (vcygpath): Rename from cygpath and accept cwd and va_list. Pass cwd on to rel_vconcat(). (cygpath_rel): New front end for vcygpath. (cygpath): Ditto. * path.h (cygpath_rel): Declare. (SYMLINK_MAX): Define to 4095.
Diffstat (limited to 'winsup/utils/cygcheck.cc')
-rw-r--r--winsup/utils/cygcheck.cc41
1 files changed, 31 insertions, 10 deletions
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index 5e9713e03..e23a6858e 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -807,6 +807,28 @@ ls (char *f)
display_error ("ls: CloseHandle()");
}
+/* Remove filename from 's' and return directory name without trailing
+ backslash, or NULL if 's' doesn't seem to have a dirname. */
+static char *
+dirname (const char *s)
+{
+ static char buf[MAX_PATH];
+
+ if (!s)
+ return NULL;
+
+ strncpy (buf, s, MAX_PATH);
+ buf[MAX_PATH - 1] = '\0'; // in case strlen(s) > MAX_PATH
+ char *lastsep = strrchr (buf, '\\');
+ if (!lastsep)
+ return NULL; // no backslash -> no dirname
+ else if (lastsep - buf <= 2 && buf[1] == ':')
+ lastsep[1] = '\0'; // can't remove backslash of "x:\"
+ else
+ *lastsep = '\0';
+ return buf;
+}
+
// Find a real application on the path (possibly following symlinks)
static const char *
find_app_on_path (const char *app, bool showall = false)
@@ -821,26 +843,25 @@ find_app_on_path (const char *app, bool showall = false)
if (is_symlink (fh))
{
- static char tmp[4000] = "";
- char *ptr;
- if (!readlink (fh, tmp, 3999))
+ static char tmp[SYMLINK_MAX];
+ if (!readlink (fh, tmp, SYMLINK_MAX))
display_error("readlink failed");
- ptr = cygpath (tmp, NULL);
- for (char *p = ptr; (p = strchr (p, '/')); p++)
- *p = '\\';
+
+ /* Resolve the linkname relative to the directory of the link. */
+ char *ptr = cygpath_rel (dirname (papp), tmp, NULL);
printf (" -> %s\n", ptr);
if (!strchr (ptr, '\\'))
{
char *lastsep;
- strncpy (tmp, cygpath (papp, NULL), 3999);
- for (char *p = tmp; (p = strchr (p, '/')); p++)
- *p = '\\';
+ strncpy (tmp, cygpath (papp, NULL), SYMLINK_MAX - 1);
lastsep = strrchr (tmp, '\\');
- strncpy (lastsep+1, ptr, 3999-(lastsep-tmp));
+ strncpy (lastsep+1, ptr, SYMLINK_MAX - 1 - (lastsep-tmp));
ptr = tmp;
}
if (!CloseHandle (fh))
display_error ("find_app_on_path: CloseHandle()");
+ /* FIXME: We leak the ptr returned by cygpath() here which is a
+ malloc()d string. */
return find_app_on_path (ptr, showall);
}