1 /* userspec.c -- Parse a user and group string.
2 Copyright (C) 1989-1992, 1997, 1998, 2000, 2002 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
25 # define alloca __builtin_alloca
39 #include <sys/types.h>
44 # include <sys/param.h>
73 # define _(Text) gettext (Text)
79 #ifndef _POSIX_VERSION
80 struct passwd
*getpwnam ();
81 struct group
*getgrnam ();
82 struct group
*getgrgid ();
86 # define endgrent() ((void) 0)
90 # define endpwent() ((void) 0)
97 /* The extra casts work around common compiler bugs. */
98 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
99 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
100 It is necessary at least when t == time_t. */
101 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
102 ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
103 #define TYPE_MAXIMUM(t) ((t) (~ (t) 0 - TYPE_MINIMUM (t)))
106 # define UID_T_MAX TYPE_MAXIMUM (uid_t)
110 # define GID_T_MAX TYPE_MAXIMUM (gid_t)
113 /* MAXUID may come from limits.h or sys/params.h. */
115 # define MAXUID UID_T_MAX
118 # define MAXGID GID_T_MAX
121 /* Perform the equivalent of the statement `dest = strdup (src);',
122 but obtaining storage via alloca instead of from the heap. */
124 #define V_STRDUP(dest, src) \
127 int _len = strlen ((src)); \
128 (dest) = (char *) alloca (_len + 1); \
129 strcpy (dest, src); \
133 /* ISDIGIT differs from isdigit, as follows:
134 - Its arg may be any int or unsigned int; it need not be an unsigned char.
135 - It's guaranteed to evaluate its argument exactly once.
136 - It's typically faster.
137 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
138 ISDIGIT_LOCALE unless it's important to use the locale's definition
139 of `digit' even when the host does not conform to POSIX. */
140 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
146 /* Return nonzero if STR represents an unsigned decimal integer,
147 otherwise return 0. */
150 is_number (const char *str
)
158 /* Extract from NAME, which has the form "[user][:.][group]",
159 a USERNAME, UID U, GROUPNAME, and GID G.
160 Either user or group, or both, must be present.
161 If the group is omitted but the ":" separator is given,
162 use the given user's login group.
163 If SPEC_ARG contains a `:', then use that as the separator, ignoring
164 any `.'s. If there is no `:', but there is a `.', then first look
165 up the entire SPEC_ARG as a login name. If that look-up fails, then
166 try again interpreting the `.' as a separator.
168 USERNAME and GROUPNAME will be in newly malloc'd memory.
169 Either one might be NULL instead, indicating that it was not
170 given and the corresponding numeric ID was left unchanged.
172 Return NULL if successful, a static error message string if not. */
175 parse_user_spec (const char *spec_arg
, uid_t
*uid
, gid_t
*gid
,
176 char **username_arg
, char **groupname_arg
)
178 static const char *E_invalid_user
= N_("invalid user");
179 static const char *E_invalid_group
= N_("invalid group");
180 static const char *E_bad_spec
=
181 N_("cannot get the login group of a numeric UID");
182 static const char *E_cannot_omit_both
=
183 N_("cannot omit both user and group");
185 const char *error_msg
;
186 char *spec
; /* A copy we can write on. */
189 char *g
, *u
, *separator
;
195 *username_arg
= *groupname_arg
= NULL
;
198 V_STRDUP (spec
, spec_arg
);
200 /* Find the POSIX `:' separator if there is one. */
201 separator
= strchr (spec
, ':');
203 /* If there is no colon, then see if there's a `.'. */
204 if (separator
== NULL
)
206 dot
= strchr (spec
, '.');
207 /* If there's no colon but there is a `.', then first look up the
208 whole spec, in case it's an OWNER name that includes a dot.
209 If that fails, then we'll try again, but interpreting the `.'
211 /* FIXME: accepting `.' as the separator is contrary to POSIX.
212 someday we should drop support for this. */
219 /* Replace separator with a NUL. */
220 if (separator
!= NULL
)
223 /* Set U and G to non-zero length strings corresponding to user and
224 group specifiers or to NULL. */
225 u
= (*spec
== '\0' ? NULL
: spec
);
227 g
= (separator
== NULL
|| *(separator
+ 1) == '\0'
231 if (u
== NULL
&& g
== NULL
)
232 return _(E_cannot_omit_both
);
235 /* Pretend that we are the user U whose group is G. This makes
236 pwd and grp functions ``know'' about the UID and GID of these. */
237 if (u
&& !is_number (u
))
238 setenv ("USER", u
, 1);
239 if (g
&& !is_number (g
))
240 setenv ("GROUP", g
, 1);
250 error_msg
= E_invalid_user
;
254 use_login_group
= (separator
!= NULL
&& g
== NULL
);
256 error_msg
= E_bad_spec
;
259 unsigned long int tmp_long
;
260 if (xstrtoul (u
, NULL
, 0, &tmp_long
, NULL
) != LONGINT_OK
261 || tmp_long
> MAXUID
)
262 return _(E_invalid_user
);
270 if (g
== NULL
&& separator
!= NULL
)
272 /* A separator was given, but a group was not specified,
273 so get the login group. */
275 grp
= getgrgid (pwd
->pw_gid
);
278 /* This is enough room to hold the unsigned decimal
279 representation of any 32-bit quantity and the trailing
282 sprintf (uint_buf
, "%u", (unsigned) (pwd
->pw_gid
));
283 V_STRDUP (groupname
, uint_buf
);
287 V_STRDUP (groupname
, grp
->gr_name
);
295 if (g
!= NULL
&& error_msg
== NULL
)
297 /* Explicit group. */
302 error_msg
= E_invalid_group
;
305 unsigned long int tmp_long
;
306 if (xstrtoul (g
, NULL
, 0, &tmp_long
, NULL
) != LONGINT_OK
307 || tmp_long
> MAXGID
)
308 return _(E_invalid_group
);
314 endgrent (); /* Save a file descriptor. */
316 if (error_msg
== NULL
)
317 V_STRDUP (groupname
, g
);
320 if (error_msg
== NULL
)
324 *username_arg
= strdup (u
);
325 if (*username_arg
== NULL
)
326 error_msg
= xalloc_msg_memory_exhausted
;
329 if (groupname
!= NULL
&& error_msg
== NULL
)
331 *groupname_arg
= strdup (groupname
);
332 if (*groupname_arg
== NULL
)
334 if (*username_arg
!= NULL
)
336 free (*username_arg
);
337 *username_arg
= NULL
;
339 error_msg
= xalloc_msg_memory_exhausted
;
344 if (error_msg
&& maybe_retry
)
357 # define NULL_CHECK(s) ((s) == NULL ? "(null)" : (s))
360 main (int argc
, char **argv
)
364 for (i
= 1; i
< argc
; i
++)
367 char *username
, *groupname
;
372 tmp
= strdup (argv
[i
]);
373 e
= parse_user_spec (tmp
, &uid
, &gid
, &username
, &groupname
);
375 printf ("%s: %u %u %s %s %s\n",
379 NULL_CHECK (username
),
380 NULL_CHECK (groupname
),