(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / nis / nss_nisplus / nisplus-spwd.c
blobc317469137b2594eb8636ea9f6b93af81168a184
1 /* Copyright (C) 1997, 2001, 2002, 2003 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.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <nss.h>
21 #include <errno.h>
22 #include <shadow.h>
23 #include <string.h>
24 #include <bits/libc-lock.h>
25 #include <rpcsvc/nis.h>
27 #include "nss-nisplus.h"
28 #include "nisplus-parser.h"
30 __libc_lock_define_initialized (static, lock)
32 static nis_result *result;
33 static nis_name tablename_val;
34 static u_long tablename_len;
36 static enum nss_status
37 _nss_create_tablename (int *errnop)
39 if (tablename_val == NULL)
41 char buf [40 + strlen (nis_local_directory ())];
42 char *p;
44 p = __stpcpy (buf, "passwd.org_dir.");
45 p = __stpcpy (p, nis_local_directory ());
46 tablename_val = __strdup (buf);
47 if (tablename_val == NULL)
49 *errnop = errno;
50 return NSS_STATUS_TRYAGAIN;
52 tablename_len = strlen (tablename_val);
54 return NSS_STATUS_SUCCESS;
57 enum nss_status
58 _nss_nisplus_setspent (int stayopen)
60 enum nss_status status = NSS_STATUS_SUCCESS;
61 int err;
63 __libc_lock_lock (lock);
65 if (result)
66 nis_freeresult (result);
67 result = NULL;
69 if (tablename_val == NULL)
70 status = _nss_create_tablename (&err);
72 __libc_lock_unlock (lock);
74 return NSS_STATUS_SUCCESS;
77 enum nss_status
78 _nss_nisplus_endspent (void)
80 __libc_lock_lock (lock);
82 if (result)
83 nis_freeresult (result);
84 result = NULL;
86 __libc_lock_unlock (lock);
88 return NSS_STATUS_SUCCESS;
91 static enum nss_status
92 internal_nisplus_getspent_r (struct spwd *sp, char *buffer, size_t buflen,
93 int *errnop)
95 int parse_res;
97 /* Get the next entry until we found a correct one. */
100 nis_result *saved_res;
102 if (result == NULL)
104 saved_res = NULL;
106 if (tablename_val == NULL)
108 enum nss_status status = _nss_create_tablename (errnop);
110 if (status != NSS_STATUS_SUCCESS)
111 return status;
114 result = nis_first_entry (tablename_val);
115 if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
116 return niserr2nss (result->status);
118 else
120 nis_result *res;
122 saved_res = result;
123 res = nis_next_entry (tablename_val, &result->cookie);
124 result = res;
125 if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
127 nis_freeresult (saved_res);
128 return niserr2nss (result->status);
132 parse_res = _nss_nisplus_parse_spent (result, sp, buffer,
133 buflen, errnop);
134 if (parse_res == -1)
136 nis_freeresult (result);
137 result = saved_res;
138 *errnop = ERANGE;
139 return NSS_STATUS_TRYAGAIN;
141 else
143 if (saved_res)
144 nis_freeresult (saved_res);
146 } while (!parse_res);
148 return NSS_STATUS_SUCCESS;
151 enum nss_status
152 _nss_nisplus_getspent_r (struct spwd *result, char *buffer, size_t buflen,
153 int *errnop)
155 int status;
157 __libc_lock_lock (lock);
159 status = internal_nisplus_getspent_r (result, buffer, buflen, errnop);
161 __libc_lock_unlock (lock);
163 return status;
166 enum nss_status
167 _nss_nisplus_getspnam_r (const char *name, struct spwd *sp,
168 char *buffer, size_t buflen, int *errnop)
170 int parse_res;
172 if (tablename_val == NULL)
174 enum nss_status status = _nss_create_tablename (errnop);
176 if (status != NSS_STATUS_SUCCESS)
177 return status;
180 if (name == NULL)
182 *errnop = EINVAL;
183 return NSS_STATUS_NOTFOUND;
185 else
187 nis_result *result;
188 char buf[strlen (name) + 24 + tablename_len];
189 int olderr = errno;
191 sprintf (buf, "[name=%s],%s", name, tablename_val);
193 result = nis_list (buf, FOLLOW_PATH | FOLLOW_LINKS, NULL, NULL);
195 if (result == NULL)
197 *errnop = ENOMEM;
198 return NSS_STATUS_TRYAGAIN;
200 if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
202 enum nss_status status = niserr2nss (result->status);
204 __set_errno (olderr);
206 nis_freeresult (result);
207 return status;
210 parse_res = _nss_nisplus_parse_spent (result, sp, buffer, buflen,
211 errnop);
212 nis_freeresult (result);
214 if (parse_res < 1)
216 if (parse_res == -1)
218 *errnop = ERANGE;
219 return NSS_STATUS_TRYAGAIN;
221 else
223 __set_errno (olderr);
224 return NSS_STATUS_NOTFOUND;
227 return NSS_STATUS_SUCCESS;