blob: b5125b0f438739810f5fa6393a8375fe3f8686e8 [file] [log] [blame]
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +00001/* vi: set sw=4 ts=4: */
2/*
3 * password utility routines.
4 *
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6 *
Bernhard Reutner-Fischer7fee0c42006-09-13 16:39:19 +00007 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +00008 */
9
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000010#include <stdio.h>
11#include <string.h>
12#include <assert.h>
13#include "libbb.h"
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000014
Denis Vlasenkobecd8c52006-12-01 21:34:20 +000015 /*
16 * if bufsize is > 0 char *buffer cannot be set to NULL.
17 * If idname is not NULL it is written on the static
18 * allocated buffer (and a pointer to it is returned).
19 * if idname is NULL, id as string is written to the static
20 * allocated buffer and NULL is returned.
21 * if bufsize is = 0 char *buffer can be set to NULL.
22 * If idname exists a pointer to it is returned,
23 * else NULL is returned.
24 * if bufsize is < 0 char *buffer can be set to NULL.
25 * If idname exists a pointer to it is returned,
26 * else an error message is printed and the program exits.
27 */
28
29/* internal function for bb_getpwuid and bb_getgrgid */
30static char * bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix)
31{
32 if (bufsize > 0 ) {
33 assert(buffer!=NULL);
34 if(idname) {
35 return safe_strncpy(buffer, idname, bufsize);
36 }
37 snprintf(buffer, bufsize, "%ld", id);
38 } else if (bufsize < 0 && !idname) {
39 bb_error_msg_and_die("unknown %cid %ld", prefix, id);
40 }
41 return idname;
42}
43
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000044 /* Hacked by Tito Ragusa (c) 2004 <farmatito@tiscali.it> to make it more
45 * flexible :
46 *
47 * if bufsize is > 0 char *group cannot be set to NULL.
48 * On success groupname is written on static allocated buffer
49 * group (and a pointer to it is returned).
50 * On failure gid as string is written to static allocated
51 * buffer group and NULL is returned.
52 * if bufsize is = 0 char *group can be set to NULL.
53 * On success groupname is returned.
54 * On failure NULL is returned.
55 * if bufsize is < 0 char *group can be set to NULL.
56 * On success groupname is returned.
57 * On failure an error message is printed and
58 * the program exits.
59 */
60
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000061/* gets a groupname given a gid */
62char * bb_getgrgid(char *group, long gid, int bufsize)
63{
64 struct group *mygroup = getgrgid(gid);
65
Denis Vlasenkocf944462006-10-03 19:02:20 +000066 return bb_getug(group, (mygroup) ?
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000067 mygroup->gr_name : (char *)mygroup, gid, bufsize, 'g');
68}
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000069
70/* returns a gid given a group name */
71long bb_xgetgrnam(const char *name)
72{
73 struct group *mygroup;
74
75 mygroup = getgrnam(name);
76 if (mygroup==NULL)
77 bb_error_msg_and_die("unknown group name: %s", name);
78
Denis Vlasenkod9e15f22006-11-27 16:49:55 +000079 return mygroup->gr_gid;
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000080}
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000081
82/* returns a uid given a username */
83long bb_xgetpwnam(const char *name)
84{
85 struct passwd *myuser;
86
87 myuser = getpwnam(name);
88 if (myuser==NULL)
89 bb_error_msg_and_die("unknown user name: %s", name);
90
91 return myuser->pw_uid;
92}
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000093
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000094 /* Hacked by Tito Ragusa (c) 2004 <farmatito@tiscali.it> to make it more
95 * flexible :
96 *
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +000097 * if bufsize is > 0 char *name cannot be set to NULL.
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +000098 * On success username is written on the static allocated
99 * buffer name (and a pointer to it is returned).
100 * On failure uid as string is written to the static
101 * allocated buffer name and NULL is returned.
102 * if bufsize is = 0 char *name can be set to NULL.
103 * On success username is returned.
104 * On failure NULL is returned.
105 * if bufsize is < 0 char *name can be set to NULL
106 * On success username is returned.
107 * On failure an error message is printed and
108 * the program exits.
109 */
110
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +0000111/* gets a username given a uid */
112char * bb_getpwuid(char *name, long uid, int bufsize)
113{
114 struct passwd *myuser = getpwuid(uid);
115
Denis Vlasenkobecd8c52006-12-01 21:34:20 +0000116 return bb_getug(name, myuser ? myuser->pw_name : (char *)myuser,
117 uid, bufsize, 'u');
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +0000118}
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +0000119
Rob Landleyca087712006-03-29 16:52:56 +0000120unsigned long get_ug_id(const char *s,
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +0000121 long (*__bb_getxxnam)(const char *))
122{
123 unsigned long r;
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +0000124
Denis Vlasenkobecd8c52006-12-01 21:34:20 +0000125 r = bb_strtoul(s, NULL, 10);
126 if (errno)
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +0000127 r = __bb_getxxnam(s);
Bernhard Reutner-Fischerc5280e82005-09-20 21:09:31 +0000128
129 return r;
130}