2005-09-21 02:39:31 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* password utility routines.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
|
|
|
*
|
2006-09-13 22:09:19 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2005-09-21 02:39:31 +05:30
|
|
|
*/
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
#include "libbb.h"
|
2005-09-21 02:39:31 +05:30
|
|
|
|
2006-12-28 11:14:47 +05:30
|
|
|
#define assert(x) ((void)0)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if bufsize is > 0 char *buffer cannot be set to NULL.
|
|
|
|
* If idname is not NULL it is written on the static
|
|
|
|
* allocated buffer (and a pointer to it is returned).
|
|
|
|
* if idname is NULL, id as string is written to the static
|
|
|
|
* allocated buffer and NULL is returned.
|
|
|
|
* if bufsize is = 0 char *buffer can be set to NULL.
|
|
|
|
* If idname exists a pointer to it is returned,
|
|
|
|
* else NULL is returned.
|
|
|
|
* if bufsize is < 0 char *buffer can be set to NULL.
|
|
|
|
* If idname exists a pointer to it is returned,
|
|
|
|
* else an error message is printed and the program exits.
|
|
|
|
*/
|
2006-12-02 03:04:20 +05:30
|
|
|
|
|
|
|
/* internal function for bb_getpwuid and bb_getgrgid */
|
2006-12-28 11:14:47 +05:30
|
|
|
static char* bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix)
|
2006-12-02 03:04:20 +05:30
|
|
|
{
|
|
|
|
if (bufsize > 0 ) {
|
2006-12-28 11:14:47 +05:30
|
|
|
assert(buffer != NULL);
|
|
|
|
if (idname) {
|
2006-12-02 03:04:20 +05:30
|
|
|
return safe_strncpy(buffer, idname, bufsize);
|
|
|
|
}
|
|
|
|
snprintf(buffer, bufsize, "%ld", id);
|
|
|
|
} else if (bufsize < 0 && !idname) {
|
|
|
|
bb_error_msg_and_die("unknown %cid %ld", prefix, id);
|
|
|
|
}
|
|
|
|
return idname;
|
|
|
|
}
|
|
|
|
|
2006-12-28 11:14:47 +05:30
|
|
|
/* Hacked by Tito Ragusa (c) 2004 <farmatito@tiscali.it> to make it more
|
|
|
|
* flexible :
|
|
|
|
*
|
|
|
|
* if bufsize is > 0 char *group cannot be set to NULL.
|
|
|
|
* On success groupname is written on static allocated buffer
|
|
|
|
* group (and a pointer to it is returned).
|
|
|
|
* On failure gid as string is written to static allocated
|
|
|
|
* buffer group and NULL is returned.
|
|
|
|
* if bufsize is = 0 char *group can be set to NULL.
|
|
|
|
* On success groupname is returned.
|
|
|
|
* On failure NULL is returned.
|
|
|
|
* if bufsize is < 0 char *group can be set to NULL.
|
|
|
|
* On success groupname is returned.
|
|
|
|
* On failure an error message is printed and
|
|
|
|
* the program exits.
|
|
|
|
*/
|
2005-09-21 02:39:31 +05:30
|
|
|
|
|
|
|
/* gets a groupname given a gid */
|
2006-12-28 11:14:47 +05:30
|
|
|
char* bb_getgrgid(char *group, long gid, int bufsize)
|
2005-09-21 02:39:31 +05:30
|
|
|
{
|
|
|
|
struct group *mygroup = getgrgid(gid);
|
|
|
|
|
2006-12-28 11:14:47 +05:30
|
|
|
return bb_getug(group,
|
|
|
|
mygroup ? mygroup->gr_name : (char *)mygroup,
|
|
|
|
gid, bufsize, 'g');
|
2005-09-21 02:39:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* returns a gid given a group name */
|
2006-12-28 11:14:47 +05:30
|
|
|
long xgroup2gid(const char *name)
|
2005-09-21 02:39:31 +05:30
|
|
|
{
|
|
|
|
struct group *mygroup;
|
|
|
|
|
2006-12-28 11:14:47 +05:30
|
|
|
mygroup = getgrnam(name);
|
|
|
|
if (mygroup == NULL)
|
2005-09-21 02:39:31 +05:30
|
|
|
bb_error_msg_and_die("unknown group name: %s", name);
|
|
|
|
|
2006-11-27 22:19:55 +05:30
|
|
|
return mygroup->gr_gid;
|
2005-09-21 02:39:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* returns a uid given a username */
|
2006-12-28 11:14:47 +05:30
|
|
|
long xuname2uid(const char *name)
|
2005-09-21 02:39:31 +05:30
|
|
|
{
|
|
|
|
struct passwd *myuser;
|
|
|
|
|
2006-12-28 11:14:47 +05:30
|
|
|
myuser = getpwnam(name);
|
|
|
|
if (myuser == NULL)
|
2005-09-21 02:39:31 +05:30
|
|
|
bb_error_msg_and_die("unknown user name: %s", name);
|
|
|
|
|
|
|
|
return myuser->pw_uid;
|
|
|
|
}
|
|
|
|
|
2006-12-28 11:14:47 +05:30
|
|
|
/* Hacked by Tito Ragusa (c) 2004 <farmatito@tiscali.it> to make it more
|
|
|
|
* flexible :
|
|
|
|
*
|
|
|
|
* if bufsize is > 0 char *name cannot be set to NULL.
|
|
|
|
* On success username is written on the static allocated
|
|
|
|
* buffer name (and a pointer to it is returned).
|
|
|
|
* On failure uid as string is written to the static
|
|
|
|
* allocated buffer name and NULL is returned.
|
|
|
|
* if bufsize is = 0 char *name can be set to NULL.
|
|
|
|
* On success username is returned.
|
|
|
|
* On failure NULL is returned.
|
|
|
|
* if bufsize is < 0 char *name can be set to NULL
|
|
|
|
* On success username is returned.
|
|
|
|
* On failure an error message is printed and
|
|
|
|
* the program exits.
|
|
|
|
*/
|
2005-09-21 02:39:31 +05:30
|
|
|
|
|
|
|
/* gets a username given a uid */
|
2006-12-28 11:14:47 +05:30
|
|
|
char* bb_getpwuid(char *name, long uid, int bufsize)
|
2005-09-21 02:39:31 +05:30
|
|
|
{
|
|
|
|
struct passwd *myuser = getpwuid(uid);
|
|
|
|
|
2006-12-02 03:04:20 +05:30
|
|
|
return bb_getug(name, myuser ? myuser->pw_name : (char *)myuser,
|
|
|
|
uid, bufsize, 'u');
|
2005-09-21 02:39:31 +05:30
|
|
|
}
|
|
|
|
|
2006-03-29 22:22:56 +05:30
|
|
|
unsigned long get_ug_id(const char *s,
|
2006-12-28 11:14:47 +05:30
|
|
|
long (*xname2id)(const char *))
|
2005-09-21 02:39:31 +05:30
|
|
|
{
|
|
|
|
unsigned long r;
|
|
|
|
|
2006-12-02 03:04:20 +05:30
|
|
|
r = bb_strtoul(s, NULL, 10);
|
|
|
|
if (errno)
|
2006-12-28 11:14:47 +05:30
|
|
|
return xname2id(s);
|
2005-09-21 02:39:31 +05:30
|
|
|
return r;
|
|
|
|
}
|