]> sourceware.org Git - glibc.git/blame - nis/nss_nis/nis-ethers.c
Update.
[glibc.git] / nis / nss_nis / nis-ethers.c
CommitLineData
1fb05e3d 1/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
6259ec0d
UD
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1996.
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 <ctype.h>
22#include <errno.h>
23#include <string.h>
5107cf1d 24#include <bits/libc-lock.h>
6259ec0d
UD
25#include <rpcsvc/yp.h>
26#include <rpcsvc/ypclnt.h>
27#include <netinet/if_ether.h>
28
29#include "nss-nis.h"
30
31/* Protect global state against multiple changers */
32__libc_lock_define_initialized (static, lock)
33
34struct ether
35{
7e3be507 36 const char *e_name;
6259ec0d
UD
37 struct ether_addr e_addr;
38};
39
7e3be507
UD
40/* Get the declaration of the parser function. */
41#define ENTNAME etherent
42#define STRUCTURE ether
43#define EXTERN_PARSER
cf29ffbe 44#include <nss/nss_files/files-parse.c>
7e3be507 45
f166d865
UD
46struct response
47{
48 char *val;
49 struct response *next;
50};
6259ec0d 51
f166d865
UD
52static struct response *start = NULL;
53static struct response *next = NULL;
54
55static int
0d8733c4 56saveit (int instatus, char *inkey, int inkeylen, char *inval,
f166d865 57 int invallen, char *indata)
6259ec0d 58{
f166d865
UD
59 if (instatus != YP_TRUE)
60 return instatus;
61
62 if (inkey && inkeylen > 0 && inval && invallen > 0)
63 {
64 if (start == NULL)
65 {
66 start = malloc (sizeof (struct response));
67 next = start;
68 }
69 else
70 {
71 next->next = malloc (sizeof (struct response));
72 next = next->next;
73 }
74 next->next = NULL;
75 next->val = malloc (invallen + 1);
76 strncpy (next->val, inval, invallen);
77 next->val[invallen] = '\0';
78 }
0d8733c4 79
f166d865
UD
80 return 0;
81}
6259ec0d 82
900bec85 83static enum nss_status
f166d865
UD
84internal_nis_setetherent (void)
85{
86 char *domainname;
87 struct ypall_callback ypcb;
0d8733c4
UD
88 enum nss_status status;
89
90 yp_get_default_domain (&domainname);
91
f166d865 92 while (start != NULL)
6259ec0d 93 {
f166d865
UD
94 if (start->val != NULL)
95 free (start->val);
96 next = start;
97 start = start->next;
98 free (next);
6259ec0d 99 }
f166d865 100 start = NULL;
6259ec0d 101
f166d865
UD
102 ypcb.foreach = saveit;
103 ypcb.data = NULL;
0d8733c4 104 status = yperr2nss (yp_all (domainname, "ethers.byname", &ypcb));
f166d865 105 next = start;
6259ec0d 106
0d8733c4 107 return status;
6259ec0d
UD
108}
109
f166d865
UD
110enum nss_status
111_nss_nis_setetherent (void)
112{
113 enum nss_status result;
114
115 __libc_lock_lock (lock);
116
117 result = internal_nis_setetherent ();
118
119 __libc_lock_unlock (lock);
120
121 return result;
122}
0d8733c4 123
6259ec0d
UD
124enum nss_status
125_nss_nis_endetherent (void)
126{
127 __libc_lock_lock (lock);
128
f166d865 129 while (start != NULL)
6259ec0d 130 {
f166d865
UD
131 if (start->val != NULL)
132 free (start->val);
133 next = start;
134 start = start->next;
135 free (next);
6259ec0d 136 }
f166d865
UD
137 start = NULL;
138 next = NULL;
0d8733c4 139
6259ec0d 140 __libc_lock_unlock (lock);
0d8733c4 141
6259ec0d
UD
142 return NSS_STATUS_SUCCESS;
143}
144
145static enum nss_status
d71b808a
UD
146internal_nis_getetherent_r (struct ether *eth, char *buffer, size_t buflen,
147 int *errnop)
6259ec0d 148{
7e3be507 149 struct parser_data *data = (void *) buffer;
f166d865 150 int parse_res;
6259ec0d 151
f166d865
UD
152 if (start == NULL)
153 internal_nis_setetherent ();
6259ec0d
UD
154
155 /* Get the next entry until we found a correct one. */
156 do
157 {
6259ec0d 158 char *p;
0d8733c4 159
f166d865
UD
160 if (next == NULL)
161 return NSS_STATUS_NOTFOUND;
9756dfe1 162 p = strncpy (buffer, next->val, buflen);
0d8733c4 163
6259ec0d
UD
164 while (isspace (*p))
165 ++p;
0d8733c4 166
d71b808a
UD
167 parse_res = _nss_files_parse_etherent (p, eth, data, buflen, errnop);
168 if (parse_res == -1)
60c96635
UD
169 return NSS_STATUS_TRYAGAIN;
170 next = next->next;
6259ec0d
UD
171 }
172 while (!parse_res);
d71b808a 173
6259ec0d
UD
174 return NSS_STATUS_SUCCESS;
175}
176
177enum nss_status
d71b808a
UD
178_nss_nis_getetherent_r (struct ether *result, char *buffer, size_t buflen,
179 int *errnop)
6259ec0d
UD
180{
181 int status;
182
183 __libc_lock_lock (lock);
184
d71b808a 185 status = internal_nis_getetherent_r (result, buffer, buflen, errnop);
6259ec0d
UD
186
187 __libc_lock_unlock (lock);
188
189 return status;
190}
191
192enum nss_status
1fb05e3d 193_nss_nis_gethostton_r (const char *name, struct ether *eth,
d71b808a 194 char *buffer, size_t buflen, int *errnop)
6259ec0d 195{
7e3be507 196 struct parser_data *data = (void *) buffer;
6259ec0d
UD
197 enum nss_status retval;
198 char *domain, *result, *p;
199 int len, parse_res;
200
201 if (name == NULL)
202 {
203 __set_errno (EINVAL);
204 return NSS_STATUS_UNAVAIL;
205 }
206
207 if (yp_get_default_domain (&domain))
208 return NSS_STATUS_UNAVAIL;
209
210 retval = yperr2nss (yp_match (domain, "ethers.byname", name,
211 strlen (name), &result, &len));
212
213 if (retval != NSS_STATUS_SUCCESS)
214 {
215 if (retval == NSS_STATUS_TRYAGAIN)
d71b808a 216 *errnop = errno;
6259ec0d
UD
217 return retval;
218 }
219
f8b87ef0 220 if ((size_t) (len + 1) > buflen)
6259ec0d
UD
221 {
222 free (result);
d71b808a 223 *errnop = ERANGE;
6259ec0d
UD
224 return NSS_STATUS_TRYAGAIN;
225 }
226
227 p = strncpy (buffer, result, len);
228 buffer[len] = '\0';
229 while (isspace (*p))
230 ++p;
231 free (result);
232
d71b808a
UD
233 parse_res = _nss_files_parse_etherent (p, eth, data, buflen, errnop);
234 if (parse_res == -1)
60c96635 235 return NSS_STATUS_TRYAGAIN;
6259ec0d
UD
236
237 if (!parse_res)
60c96635 238 return NSS_STATUS_NOTFOUND;
6259ec0d
UD
239 else
240 return NSS_STATUS_SUCCESS;
241}
242
243enum nss_status
1fb05e3d 244_nss_nis_getntohost_r (struct ether_addr *addr, struct ether *eth,
d71b808a 245 char *buffer, size_t buflen, int *errnop)
6259ec0d 246{
7e3be507 247 struct parser_data *data = (void *) buffer;
6259ec0d
UD
248 enum nss_status retval;
249 char *domain, *result, *p;
250 int len, nlen, parse_res;
251 char buf[33];
252
253 if (addr == NULL)
254 {
255 __set_errno (EINVAL);
256 return NSS_STATUS_UNAVAIL;
257 }
258
259 if (yp_get_default_domain (&domain))
260 return NSS_STATUS_UNAVAIL;
261
262 nlen = sprintf (buf, "%x:%x:%x:%x:%x:%x",
263 (int) addr->ether_addr_octet[0],
264 (int) addr->ether_addr_octet[1],
265 (int) addr->ether_addr_octet[2],
266 (int) addr->ether_addr_octet[3],
267 (int) addr->ether_addr_octet[4],
268 (int) addr->ether_addr_octet[5]);
269
270 retval = yperr2nss (yp_match (domain, "ethers.byaddr", buf,
271 nlen, &result, &len));
272
273 if (retval != NSS_STATUS_SUCCESS)
274 {
275 if (retval == NSS_STATUS_TRYAGAIN)
d71b808a 276 *errnop = errno;
6259ec0d
UD
277 return retval;
278 }
279
f8b87ef0 280 if ((size_t) (len + 1) > buflen)
6259ec0d
UD
281 {
282 free (result);
d71b808a 283 *errnop = ERANGE;
6259ec0d
UD
284 return NSS_STATUS_TRYAGAIN;
285 }
286
287 p = strncpy (buffer, result, len);
288 buffer[len] = '\0';
289 while (isspace (*p))
290 ++p;
291 free (result);
292
d71b808a
UD
293 parse_res = _nss_files_parse_etherent (p, eth, data, buflen, errnop);
294 if (parse_res == -1)
60c96635 295 return NSS_STATUS_TRYAGAIN;
6259ec0d
UD
296
297 if (!parse_res)
60c96635 298 return NSS_STATUS_NOTFOUND;
6259ec0d
UD
299 else
300 return NSS_STATUS_SUCCESS;
301}
This page took 0.0688530000000001 seconds and 5 git commands to generate.