Update.
[platform/upstream/glibc.git] / nis / nss_nisplus / nisplus-pwd.c
1 /* Copyright (C) 1997 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Library General Public License for more details.
14
15    You should have received a copy of the GNU Library General Public
16    License along with the GNU C Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.  */
19
20 #include <nss.h>
21 #include <errno.h>
22 #include <pwd.h>
23 #include <string.h>
24 #include <bits/libc-lock.h>
25 #include <rpcsvc/nis.h>
26
27 #include "nss-nisplus.h"
28
29 __libc_lock_define_initialized (static, lock)
30
31 static nis_result *result = NULL;
32 static nis_name tablename_val = NULL;
33 static u_long tablename_len = 0;
34
35 extern int _nss_nisplus_parse_pwent (nis_result *res, struct passwd *pw,
36                                      char *buffer, size_t buflen);
37
38 static enum nss_status
39 _nss_create_tablename (void)
40 {
41   if (tablename_val == NULL)
42     {
43       char buf [40 + strlen (nis_local_directory ())];
44       char *p;
45
46       p = __stpcpy (buf, "passwd.org_dir.");
47       p = __stpcpy (p, nis_local_directory ());
48       tablename_val = __strdup (buf);
49       if (tablename_val == NULL)
50         return NSS_STATUS_TRYAGAIN;
51       tablename_len = strlen (tablename_val);
52     }
53   return NSS_STATUS_SUCCESS;
54 }
55
56
57 enum nss_status
58 _nss_nisplus_setpwent (void)
59 {
60   enum nss_status status = NSS_STATUS_SUCCESS;
61
62   __libc_lock_lock (lock);
63
64   if (result)
65     nis_freeresult (result);
66   result = NULL;
67
68   if (tablename_val == NULL)
69     status = _nss_create_tablename ();
70
71   __libc_lock_unlock (lock);
72
73   return status;
74 }
75
76 enum nss_status
77 _nss_nisplus_endpwent (void)
78 {
79   __libc_lock_lock (lock);
80
81   if (result)
82     nis_freeresult (result);
83   result = NULL;
84
85   __libc_lock_unlock (lock);
86
87   return NSS_STATUS_SUCCESS;
88 }
89
90 static enum nss_status
91 internal_nisplus_getpwent_r (struct passwd *pw, char *buffer, size_t buflen)
92 {
93   int parse_res;
94
95   /* Get the next entry until we found a correct one. */
96   do
97     {
98       nis_result *saved_res;
99
100       if (result == NULL)
101         {
102           saved_res = NULL;
103           if (tablename_val == NULL)
104             if (_nss_create_tablename () != NSS_STATUS_SUCCESS)
105               return NSS_STATUS_UNAVAIL;
106
107           result = nis_first_entry(tablename_val);
108           if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
109             return niserr2nss (result->status);
110         }
111       else
112         {
113           nis_result *res;
114
115           saved_res = result;
116           res = nis_next_entry(tablename_val, &result->cookie);
117           result = res;
118           if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
119             {
120               nis_freeresult (saved_res);
121               return niserr2nss (result->status);
122             }
123         }
124
125       if ((parse_res = _nss_nisplus_parse_pwent (result, pw, buffer,
126                                                  buflen)) == -1)
127         {
128           nis_freeresult (result);
129           result = saved_res;
130           return NSS_STATUS_TRYAGAIN;
131         }
132       else
133         {
134           if (saved_res)
135             nis_freeresult (saved_res);
136         }
137     } while (!parse_res);
138
139   return NSS_STATUS_SUCCESS;
140 }
141
142 enum nss_status
143 _nss_nisplus_getpwent_r (struct passwd *result, char *buffer, size_t buflen)
144 {
145   int status;
146
147   __libc_lock_lock (lock);
148
149   status = internal_nisplus_getpwent_r (result, buffer, buflen);
150
151   __libc_lock_unlock (lock);
152
153   return status;
154 }
155
156 enum nss_status
157 _nss_nisplus_getpwnam_r (const char *name, struct passwd *pw,
158                      char *buffer, size_t buflen)
159 {
160   int parse_res;
161
162   if (tablename_val == NULL)
163     if (_nss_create_tablename () != NSS_STATUS_SUCCESS)
164       return NSS_STATUS_UNAVAIL;
165
166   if (name == NULL || strlen (name) > 8)
167     return NSS_STATUS_NOTFOUND;
168   else
169     {
170       nis_result *result;
171       char buf[strlen (name) + 24 + tablename_len];
172
173       sprintf(buf, "[name=%s],%s", name, tablename_val);
174
175       result = nis_list(buf, FOLLOW_PATH | FOLLOW_LINKS, NULL, NULL);
176
177       if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
178         {
179           enum nss_status status =  niserr2nss (result->status);
180
181           nis_freeresult (result);
182           return status;
183         }
184
185       parse_res = _nss_nisplus_parse_pwent (result, pw, buffer, buflen);
186
187       nis_freeresult (result);
188
189       if (parse_res == -1)
190         return NSS_STATUS_TRYAGAIN;
191
192       if (parse_res)
193         return NSS_STATUS_SUCCESS;
194
195       return NSS_STATUS_NOTFOUND;
196     }
197 }
198
199 enum nss_status
200 _nss_nisplus_getpwuid_r (const uid_t uid, struct passwd *pw,
201                      char *buffer, size_t buflen)
202 {
203   if (tablename_val == NULL)
204     if (_nss_create_tablename () != NSS_STATUS_SUCCESS)
205       return NSS_STATUS_UNAVAIL;
206   {
207     int parse_res;
208     nis_result *result;
209     char buf[100 + tablename_len];
210
211     sprintf(buf, "[uid=%d],%s", uid, tablename_val);
212
213     result = nis_list(buf, FOLLOW_PATH | FOLLOW_LINKS, NULL, NULL);
214
215     if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
216       {
217         enum nss_status status = niserr2nss (result->status);
218
219         nis_freeresult (result);
220         return status;
221       }
222
223     parse_res = _nss_nisplus_parse_pwent (result, pw, buffer, buflen);
224
225     nis_freeresult (result);
226
227     if (parse_res == -1)
228       return NSS_STATUS_TRYAGAIN;
229
230     if (parse_res)
231       return NSS_STATUS_SUCCESS;
232
233     return NSS_STATUS_NOTFOUND;
234   }
235 }