Initial commit for Tizen
[profile/extras/shadow-utils.git] / lib / sgetpwent.c
1 /*
2  * Copyright (c) 1989 - 1994, Julianne Frances Haugh
3  * Copyright (c) 1996 - 1998, Marek Michałkiewicz
4  * Copyright (c) 2003 - 2005, Tomasz Kłoczko
5  * Copyright (c) 2008       , Nicolas François
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the copyright holders or contributors may not be used to
17  *    endorse or promote products derived from this software without
18  *    specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
24  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <config.h>
34
35 #ident "$Id: sgetpwent.c 2581 2009-03-21 20:45:35Z nekral-guest $"
36
37 #include <sys/types.h>
38 #include "defines.h"
39 #include <stdio.h>
40 #include <pwd.h>
41 #include "prototypes.h"
42
43 #define NFIELDS 7
44
45 /*
46  * sgetpwent - convert a string to a (struct passwd)
47  *
48  * sgetpwent() parses a string into the parts required for a password
49  * structure.  Strict checking is made for the UID and GID fields and
50  * presence of the correct number of colons.  Any failing tests result
51  * in a NULL pointer being returned.
52  *
53  * NOTE: This function uses hard-coded string scanning functions for
54  *      performance reasons.  I am going to come up with some conditional
55  *      compilation glarp to improve on this in the future.
56  */
57 struct passwd *sgetpwent (const char *buf)
58 {
59         static struct passwd pwent;
60         static char pwdbuf[1024];
61         register int i;
62         register char *cp;
63         char *fields[NFIELDS];
64
65         /*
66          * Copy the string to a static buffer so the pointers into
67          * the password structure remain valid.
68          */
69
70         if (strlen (buf) >= sizeof pwdbuf)
71                 return 0;       /* fail if too long */
72         strcpy (pwdbuf, buf);
73
74         /*
75          * Save a pointer to the start of each colon separated
76          * field.  The fields are converted into NUL terminated strings.
77          */
78
79         for (cp = pwdbuf, i = 0; (i < NFIELDS) && (NULL != cp); i++) {
80                 fields[i] = cp;
81                 while (('\0' != *cp) && (':' != *cp)) {
82                         cp++;
83                 }
84
85                 if ('\0' != *cp) {
86                         *cp = '\0';
87                         cp++;
88                 } else {
89                         cp = NULL;
90                 }
91         }
92
93         /*
94          * There must be exactly NFIELDS colon separated fields or
95          * the entry is invalid.  Also, the UID and GID must be non-blank.
96          */
97
98         if (i != NFIELDS || *fields[2] == '\0' || *fields[3] == '\0')
99                 return NULL;
100
101         /*
102          * Each of the fields is converted the appropriate data type
103          * and the result assigned to the password structure.  If the
104          * UID or GID does not convert to an integer value, a NULL
105          * pointer is returned.
106          */
107
108         pwent.pw_name = fields[0];
109         pwent.pw_passwd = fields[1];
110         if (get_uid (fields[2], &pwent.pw_uid) == 0) {
111                 return NULL;
112         }
113         if (get_gid (fields[3], &pwent.pw_gid) == 0) {
114                 return NULL;
115         }
116         pwent.pw_gecos = fields[4];
117         pwent.pw_dir = fields[5];
118         pwent.pw_shell = fields[6];
119
120         return &pwent;
121 }
122