Updated to fedora-glibc-20050627T0850
[glibc.git] / glibc-compat / nss_nis / nis-rpc.c
blobb265fcdecb5bddf2075a75e74ac1f877e4fe7ec9
1 /* Copyright (C) 1996, 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>, 1996.
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.
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.
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. */
20 #include <nss.h>
21 #include <glibc-compat/include/netdb.h>
22 #include <ctype.h>
23 #include <errno.h>
24 #include <string.h>
25 #include <bits/libc-lock.h>
26 #include <rpcsvc/yp.h>
27 #include <rpcsvc/ypclnt.h>
29 #include "nss-nis.h"
31 /* Get the declaration of the parser function. */
32 #define ENTNAME rpcent
33 #define EXTERN_PARSER
34 #include "../nss_files/files-parse.c"
36 __libc_lock_define_initialized (static, lock)
38 struct response_t
40 char *val;
41 struct response_t *next;
44 struct intern_t
46 struct response_t *start;
47 struct response_t *next;
49 typedef struct intern_t intern_t;
51 static intern_t intern = {NULL, NULL};
53 static int
54 saveit (int instatus, char *inkey, int inkeylen, char *inval,
55 int invallen, char *indata)
57 intern_t *intern = (intern_t *)indata;
59 if (instatus != YP_TRUE)
60 return instatus;
62 if (inkey && inkeylen > 0 && inval && invallen > 0)
64 if (intern->start == NULL)
66 intern->start = malloc (sizeof (struct response_t));
67 intern->next = intern->start;
69 else
71 intern->next->next = malloc (sizeof (struct response_t));
72 intern->next = intern->next->next;
74 intern->next->next = NULL;
75 intern->next->val = malloc (invallen + 1);
76 strncpy (intern->next->val, inval, invallen);
77 intern->next->val[invallen] = '\0';
80 return 0;
83 static enum nss_status
84 internal_nis_setrpcent (intern_t *intern)
86 char *domainname;
87 struct ypall_callback ypcb;
88 enum nss_status status;
90 if (yp_get_default_domain (&domainname))
91 return NSS_STATUS_UNAVAIL;
93 while (intern->start != NULL)
95 if (intern->start->val != NULL)
96 free (intern->start->val);
97 intern->next = intern->start;
98 intern->start = intern->start->next;
99 free (intern->next);
101 intern->start = NULL;
103 ypcb.foreach = saveit;
104 ypcb.data = (char *)intern;
105 status = yperr2nss (yp_all(domainname, "rpc.bynumber", &ypcb));
106 intern->next = intern->start;
108 return status;
111 enum nss_status
112 _nss_nis_setrpcent (void)
114 enum nss_status status;
116 __libc_lock_lock (lock);
118 status = internal_nis_setrpcent (&intern);
120 __libc_lock_unlock (lock);
122 return status;
125 static enum nss_status
126 internal_nis_endrpcent (intern_t *intern)
128 while (intern->start != NULL)
130 if (intern->start->val != NULL)
131 free (intern->start->val);
132 intern->next = intern->start;
133 intern->start = intern->start->next;
134 free (intern->next);
136 intern->start = NULL;
138 return NSS_STATUS_SUCCESS;
141 enum nss_status
142 _nss_nis_endrpcent (void)
144 enum nss_status status;
146 __libc_lock_lock (lock);
148 status = internal_nis_endrpcent (&intern);
150 __libc_lock_unlock (lock);
152 return status;
155 static enum nss_status
156 internal_nis_getrpcent_r (struct rpcent *rpc, char *buffer, size_t buflen,
157 intern_t *data)
159 struct parser_data *pdata = (void *) buffer;
160 int parse_res;
161 char *p;
163 if (data->start == NULL)
164 internal_nis_setrpcent (data);
166 /* Get the next entry until we found a correct one. */
169 if (data->next == NULL)
170 return NSS_STATUS_NOTFOUND;
171 p = strncpy (buffer, data->next->val, buflen);
172 data->next = data->next->next;
173 while (isspace (*p))
174 ++p;
176 parse_res = _nss_files_parse_rpcent (p, rpc, pdata, buflen);
177 if (parse_res == -1 && errno == ERANGE)
178 return NSS_STATUS_TRYAGAIN;
180 while (!parse_res);
182 return NSS_STATUS_SUCCESS;
185 enum nss_status
186 _nss_nis_getrpcent_r (struct rpcent *rpc, char *buffer, size_t buflen)
188 enum nss_status status;
190 __libc_lock_lock (lock);
192 status = internal_nis_getrpcent_r (rpc, buffer, buflen, &intern);
194 __libc_lock_unlock (lock);
196 return status;
199 enum nss_status
200 _nss_nis_getrpcbyname_r (const char *name, struct rpcent *rpc,
201 char *buffer, size_t buflen)
203 intern_t data = {NULL, NULL};
204 enum nss_status status;
205 int found;
207 if (name == NULL)
209 __set_errno (EINVAL);
210 return NSS_STATUS_UNAVAIL;
213 status = internal_nis_setrpcent (&data);
214 if (status != NSS_STATUS_SUCCESS)
215 return status;
217 found = 0;
218 while (!found &&
219 ((status = internal_nis_getrpcent_r (rpc, buffer, buflen, &data))
220 == NSS_STATUS_SUCCESS))
222 if (strcmp (rpc->r_name, name) == 0)
223 found = 1;
224 else
226 int i = 0;
228 while (rpc->r_aliases[i] != NULL)
230 if (strcmp (rpc->r_aliases[i], name) == 0)
232 found = 1;
233 break;
235 else
236 ++i;
241 internal_nis_endrpcent (&data);
243 if (!found && status == NSS_STATUS_SUCCESS)
244 return NSS_STATUS_NOTFOUND;
245 else
246 return status;
249 enum nss_status
250 _nss_nis_getrpcbynumber_r (int number, struct rpcent *rpc,
251 char *buffer, size_t buflen)
253 struct parser_data *data = (void *) buffer;
254 enum nss_status retval;
255 char *domain, *result, *p;
256 int len, nlen, parse_res;
257 char buf[32];
259 if (yp_get_default_domain (&domain))
260 return NSS_STATUS_UNAVAIL;
262 nlen = sprintf (buf, "%d", number);
264 retval = yperr2nss (yp_match (domain, "rpc.bynumber", buf,
265 nlen, &result, &len));
267 if (retval != NSS_STATUS_SUCCESS)
269 if (retval == NSS_STATUS_TRYAGAIN)
270 __set_errno (EAGAIN);
271 return retval;
274 if ((size_t) (len + 1) > buflen)
276 free (result);
277 __set_errno (ERANGE);
278 return NSS_STATUS_TRYAGAIN;
281 p = strncpy (buffer, result, len);
282 buffer[len] = '\0';
283 while (isspace (*p))
284 ++p;
285 free (result);
287 parse_res = _nss_files_parse_rpcent (p, rpc, data, buflen);
289 if (parse_res == -1 && errno == ERANGE)
290 return NSS_STATUS_TRYAGAIN;
291 else if (parse_res == 0)
292 return NSS_STATUS_NOTFOUND;
294 return NSS_STATUS_SUCCESS;