[Patch] Make add_item smarter

Pierre A. Humblet pierre@phumblet.no-ip.org
Sun May 30 14:41:00 GMT 2004


At 09:41 AM 5/30/2004 -0400, Pierre A. Humblet wrote:
>Here it is again, after a cup of coffee and some extra cleanup.
>

Oops, use this one instead.

Pierre

2004-05-30  Pierre Humblet <pierre.humblet@ieee.org>

	* path.cc (mount_info::add_item): Make sure native path has drive 
	or UNC form. Call normalize_xxx_path instead of [back]slashify.
	Remove test for double slashes. Reorganize to always debug_print. 
-------------- next part --------------
Index: path.cc
===================================================================
RCS file: /cvs/src/src/winsup/cygwin/path.cc,v
retrieving revision 1.313
diff -u -p -b -r1.313 path.cc
--- path.cc	28 May 2004 19:50:06 -0000	1.313
+++ path.cc	30 May 2004 14:30:10 -0000
@@ -2176,40 +2176,41 @@ mount_info::sort ()
 int
 mount_info::add_item (const char *native, const char *posix, unsigned mountflags, int reg_p)
 {
-  /* Something's wrong if either path is NULL or empty, or if it's
-     not a UNC or absolute path. */
-
-  if ((native == NULL) || (*native == 0) ||
-      (posix == NULL) || (*posix == 0) ||
-      !isabspath (native) || !isabspath (posix) ||
-      is_unc_share (posix) || isdrive (posix))
-    {
-      set_errno (EINVAL);
-      return -1;
-    }
-
-  /* Make sure both paths do not end in /. */
   char nativetmp[CYG_MAX_PATH];
   char posixtmp[CYG_MAX_PATH];
+  char *nativetail, *posixtail, error[] = "error";
+  int nativeerr, posixerr;

-  backslashify (native, nativetmp, 0);
-  nofinalslash (nativetmp, nativetmp);
+  /* Something's wrong if either path is NULL or empty, or if it's
+     not a UNC or absolute path. */
+
+  if (native == NULL || !isabspath (native) ||
+      !(is_unc_share (native) || isdrive (native)))
+    nativeerr = EINVAL;
+  else
+    nativeerr = normalize_win32_path (native, nativetmp, &nativetail);

-  slashify (posix, posixtmp, 0);
-  nofinalslash (posixtmp, posixtmp);
+  if (posix == NULL || !isabspath (posix) ||
+      is_unc_share (posix) || isdrive (posix))
+    posixerr = EINVAL;
+  else
+    posixerr = normalize_posix_path (posix, posixtmp, &posixtail);

   debug_printf ("%s[%s], %s[%s], %p",
-		native, nativetmp, posix, posixtmp, mountflags);
+                native, nativeerr?error:nativetmp,
+		posix, posixerr?error:posixtmp, mountflags);

-  /* Duplicate /'s in path are an error. */
-  for (char *p = posixtmp + 1; *p; ++p)
+  if (nativeerr || posixerr)
     {
-      if (p[-1] == '/' && p[0] == '/')
-	{
-	  set_errno (EINVAL);
+      set_errno (nativeerr?:posixerr);
 	  return -1;
 	}
-    }
+
+  /* Make sure both paths do not end in /. */
+  if (nativetail > nativetmp + 1 && nativetail[-1] == '\\')
+    nativetail[-1] = '\0';
+  if (posixtail > posixtmp + 1 && posixtail[-1] == '/')
+    posixtail[-1] = '\0';

   /* Write over an existing mount item with the same POSIX path if
      it exists and is from the same registry area. */


More information about the Cygwin-patches mailing list