Update.
[glibc.git] / nis / nss_nisplus / nisplus-rpc.c
blob77a7248305ee605fd13a6b609a1e1a4f8c908cda
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.
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 <errno.h>
22 #include <ctype.h>
23 #include <string.h>
24 #include <bits/libc-lock.h>
25 #include <rpc/netdb.h>
26 #include <rpcsvc/nis.h>
28 #include "nss-nisplus.h"
30 __libc_lock_define_initialized (static, lock)
32 static nis_result *result = NULL;
33 static nis_name tablename_val = NULL;
34 static u_long tablename_len = 0;
36 #define NISENTRYVAL(idx,col,res) \
37 ((res)->objects.objects_val[(idx)].EN_data.en_cols.en_cols_val[(col)].ec_value.ec_value_val)
39 #define NISENTRYLEN(idx,col,res) \
40 ((res)->objects.objects_val[(idx)].EN_data.en_cols.en_cols_val[(col)].ec_value.ec_value_len)
42 static int
43 _nss_nisplus_parse_rpcent (nis_result *result, struct rpcent *rpc,
44 char *buffer, size_t buflen)
46 char *first_unused = buffer;
47 size_t room_left = buflen;
48 unsigned int i;
49 char *p, *line;
52 if (result == NULL)
53 return 0;
55 if ((result->status != NIS_SUCCESS && result->status != NIS_S_SUCCESS) ||
56 __type_of (result->objects.objects_val) != NIS_ENTRY_OBJ ||
57 strcmp(result->objects.objects_val[0].EN_data.en_type,
58 "rpc_tbl") != 0 ||
59 result->objects.objects_val[0].EN_data.en_cols.en_cols_len < 3)
60 return 0;
62 if (NISENTRYLEN (0, 0, result) >= room_left)
64 no_more_room:
65 __set_errno (ERANGE);
66 return -1;
68 strncpy (first_unused, NISENTRYVAL (0, 0, result),
69 NISENTRYLEN (0, 0, result));
70 first_unused[NISENTRYLEN (0, 0, result)] = '\0';
71 rpc->r_name = first_unused;
72 room_left -= (strlen (first_unused) +1);
73 first_unused += strlen (first_unused) +1;
74 rpc->r_number = atoi (NISENTRYVAL (0, 2, result));
75 p = first_unused;
77 line = p;
78 for (i = 0; i < result->objects.objects_len; i++)
80 if (strcmp (NISENTRYVAL (i, 1, result), rpc->r_name) != 0)
82 if (NISENTRYLEN (i, 1, result) + 2 > room_left)
83 goto no_more_room;
84 *p++ = ' ';
85 p = __stpncpy (p, NISENTRYVAL (i, 1, result),
86 NISENTRYLEN (i, 1, result));
87 *p = '\0';
88 room_left -= (NISENTRYLEN (i, 1, result) + 1);
91 ++p;
92 first_unused = p;
94 /* Adjust the pointer so it is aligned for
95 storing pointers. */
96 first_unused += __alignof__ (char *) - 1;
97 first_unused -= ((first_unused - (char *) 0) % __alignof__ (char *));
98 rpc->r_aliases = (char **) first_unused;
99 if (room_left < sizeof (char *))
100 goto no_more_room;
101 room_left -= (sizeof (char *));
102 rpc->r_aliases[0] = NULL;
104 i = 0;
105 while (*line != '\0')
107 /* Skip leading blanks. */
108 while (isspace (*line))
109 line++;
111 if (*line == '\0')
112 break;
114 if (room_left < sizeof (char *))
115 goto no_more_room;
117 room_left -= sizeof (char *);
118 rpc->r_aliases[i] = line;
120 while (*line != '\0' && *line != ' ')
121 ++line;
123 if (line != rpc->r_aliases[i])
125 if (*line != '\0')
127 *line = '\0';
128 ++line;
130 ++i;
132 else
133 rpc->r_aliases[i] = NULL;
136 return 1;
139 static enum nss_status
140 _nss_create_tablename (void)
142 if (tablename_val == NULL)
144 char buf [40 + strlen (nis_local_directory ())];
145 char *p;
147 p = __stpcpy (buf, "rpc.org_dir.");
148 p = __stpcpy (p, nis_local_directory ());
149 tablename_val = __strdup (buf);
150 if (tablename_val == NULL)
151 return NSS_STATUS_TRYAGAIN;
152 tablename_len = strlen (tablename_val);
154 return NSS_STATUS_SUCCESS;
158 enum nss_status
159 _nss_nisplus_setrpcent (void)
161 enum nss_status status = NSS_STATUS_SUCCESS;
163 __libc_lock_lock (lock);
165 if (result)
166 nis_freeresult (result);
167 result = NULL;
169 if (tablename_val == NULL)
170 status = _nss_create_tablename ();
172 __libc_lock_unlock (lock);
174 return status;
177 enum nss_status
178 _nss_nisplus_endrpcent (void)
180 __libc_lock_lock (lock);
182 if (result)
183 nis_freeresult (result);
184 result = NULL;
186 __libc_lock_unlock (lock);
188 return NSS_STATUS_SUCCESS;
191 static enum nss_status
192 internal_nisplus_getrpcent_r (struct rpcent *rpc, char *buffer,
193 size_t buflen)
195 int parse_res;
197 /* Get the next entry until we found a correct one. */
200 nis_result *saved_res;
202 if (result == NULL)
204 saved_res = NULL;
205 if (tablename_val == NULL)
206 if (_nss_create_tablename () != NSS_STATUS_SUCCESS)
207 return NSS_STATUS_UNAVAIL;
209 result = nis_first_entry(tablename_val);
210 if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
211 return niserr2nss (result->status);
213 else
215 nis_result *res;
217 saved_res = result;
218 res = nis_next_entry (tablename_val, &result->cookie);
219 result = res;
220 if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
222 nis_freeresult (saved_res);
223 return niserr2nss (result->status);
227 if ((parse_res = _nss_nisplus_parse_rpcent (result, rpc, buffer,
228 buflen)) == -1)
230 nis_freeresult (result);
231 result = saved_res;
232 return NSS_STATUS_TRYAGAIN;
234 else
236 if (saved_res)
237 nis_freeresult (saved_res);
239 } while (!parse_res);
241 return NSS_STATUS_SUCCESS;
244 enum nss_status
245 _nss_nisplus_getrpcent_r (struct rpcent *result, char *buffer,
246 size_t buflen)
248 int status;
250 __libc_lock_lock (lock);
252 status = internal_nisplus_getrpcent_r (result, buffer, buflen);
254 __libc_lock_unlock (lock);
256 return status;
259 enum nss_status
260 _nss_nisplus_getrpcbyname_r (const char *name, struct rpcent *rpc,
261 char *buffer, size_t buflen)
263 int parse_res;
265 if (tablename_val == NULL)
266 if (_nss_create_tablename () != NSS_STATUS_SUCCESS)
267 return NSS_STATUS_UNAVAIL;
269 if (name == NULL)
270 return NSS_STATUS_NOTFOUND;
271 else
273 nis_result *result;
274 char buf[strlen (name) + 255 + tablename_len];
276 /* Search at first in the alias list, and use the correct name
277 for the next search */
278 sprintf (buf, "[name=%s],%s", name, tablename_val);
279 result = nis_list (buf, FOLLOW_PATH | FOLLOW_LINKS, NULL, NULL);
281 /* If we do not find it, try it as original name. But if the
282 database is correct, we should find it in the first case, too */
283 if ((result->status != NIS_SUCCESS &&
284 result->status != NIS_S_SUCCESS) ||
285 __type_of (result->objects.objects_val) != NIS_ENTRY_OBJ ||
286 strcmp (result->objects.objects_val->EN_data.en_type,
287 "rpc_tbl") != 0 ||
288 result->objects.objects_val->EN_data.en_cols.en_cols_len < 3)
289 sprintf (buf, "[cname=%s],%s", name, tablename_val);
290 else
291 sprintf (buf, "[cname=%s],%s", NISENTRYVAL(0, 0, result),
292 tablename_val);
294 nis_freeresult (result);
295 result = nis_list(buf, FOLLOW_PATH | FOLLOW_LINKS , NULL, NULL);
297 if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
299 enum nss_status status = niserr2nss (result->status);
301 nis_freeresult (result);
302 return status;
305 parse_res = _nss_nisplus_parse_rpcent (result, rpc, buffer, buflen);
307 nis_freeresult (result);
309 if (parse_res == -1)
310 return NSS_STATUS_TRYAGAIN;
312 if (parse_res)
313 return NSS_STATUS_SUCCESS;
315 return NSS_STATUS_NOTFOUND;
319 enum nss_status
320 _nss_nisplus_getrpcbynumber_r (const int number, struct rpcent *rpc,
321 char *buffer, size_t buflen)
323 if (tablename_val == NULL)
324 if (_nss_create_tablename () != NSS_STATUS_SUCCESS)
325 return NSS_STATUS_UNAVAIL;
328 int parse_res;
329 nis_result *result;
330 char buf[100 + tablename_len];
332 sprintf (buf, "[number=%d],%s", number, tablename_val);
334 result = nis_list(buf, FOLLOW_LINKS | FOLLOW_PATH, NULL, NULL);
336 if (niserr2nss (result->status) != NSS_STATUS_SUCCESS)
338 enum nss_status status = niserr2nss (result->status);
340 nis_freeresult (result);
341 return status;
344 parse_res = _nss_nisplus_parse_rpcent (result, rpc, buffer, buflen);
346 nis_freeresult (result);
348 if (parse_res == -1)
349 return NSS_STATUS_TRYAGAIN;
351 if (parse_res)
352 return NSS_STATUS_SUCCESS;
354 return NSS_STATUS_NOTFOUND;