changeset 230:372133c396e2

Rewrite.
author Jim Meyering <jim@meyering.net>
date Fri, 01 Jul 1994 13:58:06 +0000
parents a15bea0a0d8c
children a3b51f9ee779
files lib/userspec.c
diffstat 1 files changed, 43 insertions(+), 29 deletions(-) [+]
line wrap: on
line diff
--- a/lib/userspec.c
+++ b/lib/userspec.c
@@ -28,6 +28,8 @@
 #endif
 #endif
 
+/* FIXME: include alloca junk.  */
+
 #include <stdio.h>
 #include <sys/types.h>
 #include <pwd.h>
@@ -61,6 +63,18 @@
 #define endgrent()
 #endif
 
+/* Perform the equivalent of the statement `dest = strdup (src);',
+   but obtaining storage via alloca instead of from the heap.  */
+
+#define V_STRDUP(dest, src)						\
+  do									\
+    {									\
+      int _len = strlen ((src));					\
+      (dest) = (char *) alloca (_len + 1);				\
+      strcpy (dest, src);						\
+    }									\
+  while (0)
+
 #define isdigit(c) ((c) >= '0' && (c) <= '9')
 
 char *strdup ();
@@ -91,23 +105,26 @@
    Return NULL if successful, a static error message string if not.  */
 
 const char *
-parse_user_spec (spec_arg, uid, gid, username, groupname)
+parse_user_spec (spec_arg, uid, gid, username_arg, groupname_arg)
      const char *spec_arg;
      uid_t *uid;
      gid_t *gid;
-     char **username, **groupname;
+     char **username_arg, **groupname_arg;
 {
   static const char *tired = "virtual memory exhausted";
   const char *error_msg;
   char *spec;			/* A copy we can write on.  */
-  int spec_len;
   struct passwd *pwd;
   struct group *grp;
+  int spec_len;
   char *g, *u, *separator;
+  char *groupname;
 
   error_msg = NULL;
-  *username = *groupname = NULL;
+  *username_arg = *groupname_arg = NULL;
+  groupname = NULL;
 
+  /* FIXME: use this instead: V_STRDUP (spec, spec_arg); */
   spec_len = strlen (spec_arg);
   spec = (char *) alloca (strlen (spec_arg) + 1);
   strcpy (spec, spec_arg);
@@ -166,25 +183,16 @@
 		     zero byte.  */
 		  char uint_buf[21];
 		  sprintf (uint_buf, "%u", (unsigned) (pwd->pw_gid));
-		  *groupname = strdup (uint_buf);
+		  V_STRDUP (groupname, uint_buf);
 		}
 	      else
 		{
-		  *groupname = strdup (grp->gr_name);
+		  V_STRDUP (groupname, grp->gr_name);
 		}
-	      if (*groupname == NULL)
-		error_msg = tired;
 	      endgrent ();
 	    }
 	}
       endpwent ();
-
-      if (error_msg == NULL)
-	{
-	  *username = strdup (u);
-	  if (*username == NULL)
-	    error_msg = tired;
-	}
     }
 
   if (g != NULL && error_msg == NULL)
@@ -203,24 +211,30 @@
       endgrent ();		/* Save a file descriptor.  */
 
       if (error_msg == NULL)
-	{
-	  *groupname = strdup (g);
-	  if (*groupname == NULL)
-	    error_msg = tired;
-	}
+	V_STRDUP (groupname, g);
     }
 
-  if (error_msg)
+  if (error_msg == NULL)
     {
-      if (*groupname != NULL)
+      if (u != NULL)
+	{
+	  *username_arg = strdup (u);
+	  if (*username_arg == NULL)
+	    error_msg = tired;
+	}
+
+      if (groupname != NULL && error_msg == NULL)
 	{
-	  free (*groupname);
-	  *groupname = NULL;
-	}
-      if (*username != NULL)
-	{
-	  free (*username);
-	  *username = NULL;
+	  *groupname_arg = strdup (groupname);
+	  if (*groupname_arg == NULL)
+	    {
+	      if (*username_arg != NULL)
+		{
+		  free (*username_arg);
+		  *username_arg = NULL;
+		}
+	      error_msg = tired;
+	    }
 	}
     }