1 /* Copyright (C) 1996-2013 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@suse.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 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, see
17 <http://www.gnu.org/licenses/>. */
24 #include <bits/libc-lock.h>
25 #include <rpcsvc/yp.h>
26 #include <rpcsvc/ypclnt.h>
32 /* Get the declaration of the parser function. */
33 #define ENTNAME servent
35 #include <nss/nss_files/files-parse.c>
37 __libc_lock_define_initialized (static, lock
)
39 static intern_t intern
;
46 enum nss_status status
;
54 dosearch (int instatus
, char *inkey
, int inkeylen
, char *inval
,
55 int invallen
, char *indata
)
57 struct search_t
*req
= (struct search_t
*) indata
;
59 if (__builtin_expect (instatus
!= YP_TRUE
, 0))
62 if (inkey
&& inkeylen
> 0 && inval
&& invallen
> 0)
64 if (__builtin_expect ((size_t) (invallen
+ 1) > req
->buflen
, 0))
66 *req
->errnop
= ERANGE
;
67 req
->status
= NSS_STATUS_TRYAGAIN
;
71 char *p
= strncpy (req
->buffer
, inval
, invallen
);
72 req
->buffer
[invallen
] = '\0';
76 int parse_res
= _nss_files_parse_servent (p
, req
->serv
,
78 req
->buflen
, req
->errnop
);
81 req
->status
= NSS_STATUS_TRYAGAIN
;
88 if (req
->proto
!= NULL
&& strcmp (req
->serv
->s_proto
, req
->proto
) != 0)
91 if (req
->port
!= -1 && req
->serv
->s_port
!= req
->port
)
94 if (req
->name
!= NULL
&& strcmp (req
->serv
->s_name
, req
->name
) != 0)
97 for (cp
= req
->serv
->s_aliases
; *cp
; cp
++)
98 if (strcmp (req
->name
, *cp
) == 0)
105 req
->status
= NSS_STATUS_SUCCESS
;
113 internal_nis_endservent (void)
115 struct response_t
*curr
= intern
.next
;
119 struct response_t
*last
= curr
;
124 intern
.next
= intern
.start
= NULL
;
128 _nss_nis_endservent (void)
130 __libc_lock_lock (lock
);
132 internal_nis_endservent ();
134 __libc_lock_unlock (lock
);
136 return NSS_STATUS_SUCCESS
;
139 static enum nss_status
140 internal_nis_setservent (void)
143 struct ypall_callback ypcb
;
144 enum nss_status status
;
146 if (yp_get_default_domain (&domainname
))
147 return NSS_STATUS_UNAVAIL
;
149 internal_nis_endservent ();
151 ypcb
.foreach
= _nis_saveit
;
152 ypcb
.data
= (char *) &intern
;
153 status
= yperr2nss (yp_all (domainname
, "services.byname", &ypcb
));
155 /* Mark the last buffer as full. */
156 if (intern
.next
!= NULL
)
157 intern
.next
->size
= intern
.offset
;
159 intern
.next
= intern
.start
;
166 _nss_nis_setservent (int stayopen
)
168 enum nss_status status
;
170 __libc_lock_lock (lock
);
172 status
= internal_nis_setservent ();
174 __libc_lock_unlock (lock
);
179 static enum nss_status
180 internal_nis_getservent_r (struct servent
*serv
, char *buffer
,
181 size_t buflen
, int *errnop
)
183 struct parser_data
*pdata
= (void *) buffer
;
187 if (intern
.start
== NULL
)
188 internal_nis_setservent ();
190 if (intern
.next
== NULL
)
191 /* Not one entry in the map. */
192 return NSS_STATUS_NOTFOUND
;
194 /* Get the next entry until we found a correct one. */
197 struct response_t
*bucket
= intern
.next
;
199 if (__builtin_expect (intern
.offset
>= bucket
->size
, 0))
201 if (bucket
->next
== NULL
)
202 return NSS_STATUS_NOTFOUND
;
204 /* We look at all the content in the current bucket. Go on
206 bucket
= intern
.next
= bucket
->next
;
210 for (p
= &bucket
->mem
[intern
.offset
]; isspace (*p
); ++p
)
213 size_t len
= strlen (p
) + 1;
214 if (__builtin_expect (len
> buflen
, 0))
217 return NSS_STATUS_TRYAGAIN
;
220 /* We unfortunately have to copy the data in the user-provided
221 buffer because that buffer might be around for a very long
222 time and the servent structure must remain valid. If we would
223 rely on the BUCKET memory the next 'setservent' or 'endservent'
224 call would destroy it.
226 The important thing is that it is a single NUL-terminated
227 string. This is what the parsing routine expects. */
228 p
= memcpy (buffer
, &bucket
->mem
[intern
.offset
], len
);
230 parse_res
= _nss_files_parse_servent (p
, serv
, pdata
, buflen
, errnop
);
231 if (__builtin_expect (parse_res
== -1, 0))
232 return NSS_STATUS_TRYAGAIN
;
234 intern
.offset
+= len
;
238 return NSS_STATUS_SUCCESS
;
242 _nss_nis_getservent_r (struct servent
*serv
, char *buffer
, size_t buflen
,
245 enum nss_status status
;
247 __libc_lock_lock (lock
);
249 status
= internal_nis_getservent_r (serv
, buffer
, buflen
, errnop
);
251 __libc_lock_unlock (lock
);
257 _nss_nis_getservbyname_r (const char *name
, const char *protocol
,
258 struct servent
*serv
, char *buffer
, size_t buflen
,
264 return NSS_STATUS_UNAVAIL
;
268 if (__builtin_expect (yp_get_default_domain (&domain
), 0))
269 return NSS_STATUS_UNAVAIL
;
271 /* If the protocol is given, we could try if our NIS server knows
272 about services.byservicename map. If yes, we only need one query. */
273 size_t keylen
= strlen (name
) + (protocol
? 1 + strlen (protocol
) : 0);
274 char key
[keylen
+ 1];
276 /* key is: "name/proto" */
277 char *cp
= stpcpy (key
, name
);
278 if (protocol
!= NULL
)
281 strcpy (cp
, protocol
);
286 int status
= yp_match (domain
, "services.byservicename", key
,
287 keylen
, &result
, &int_len
);
288 size_t len
= int_len
;
290 /* If we found the key, it's ok and parse the result. If not,
291 fall through and parse the complete table. */
292 if (__builtin_expect (status
== YPERR_SUCCESS
, 1))
294 if (__builtin_expect ((size_t) (len
+ 1) > buflen
, 0))
298 return NSS_STATUS_TRYAGAIN
;
301 char *p
= strncpy (buffer
, result
, len
);
307 int parse_res
= _nss_files_parse_servent (p
, serv
, (void *) buffer
,
309 if (__builtin_expect (parse_res
< 0, 0))
312 return NSS_STATUS_TRYAGAIN
;
314 return NSS_STATUS_NOTFOUND
;
317 return NSS_STATUS_SUCCESS
;
320 /* Check if it is safe to rely on services.byservicename. */
321 if (_nsl_default_nss () & NSS_FLAG_SERVICES_AUTHORITATIVE
)
322 return yperr2nss (status
);
324 struct ypall_callback ypcb
;
327 ypcb
.foreach
= dosearch
;
328 ypcb
.data
= (char *) &req
;
330 req
.proto
= protocol
;
336 req
.status
= NSS_STATUS_NOTFOUND
;
337 status
= yp_all (domain
, "services.byname", &ypcb
);
339 if (__builtin_expect (status
!= YPERR_SUCCESS
, 0))
340 return yperr2nss (status
);
346 _nss_nis_getservbyport_r (int port
, const char *protocol
,
347 struct servent
*serv
, char *buffer
,
348 size_t buflen
, int *errnop
)
351 if (__builtin_expect (yp_get_default_domain (&domain
), 0))
352 return NSS_STATUS_UNAVAIL
;
354 /* If the protocol is given, we only need one query.
355 Otherwise try first port/tcp, then port/udp and then fallback
356 to sequential scanning of services.byname. */
357 const char *proto
= protocol
!= NULL
? protocol
: "tcp";
360 /* key is: "port/proto" */
361 char key
[sizeof (int) * 3 + strlen (proto
) + 2];
362 size_t keylen
= snprintf (key
, sizeof (key
), "%d/%s", ntohs (port
),
367 int status
= yp_match (domain
, "services.byname", key
, keylen
, &result
,
369 size_t len
= int_len
;
371 /* If we found the key, it's ok and parse the result. If not,
372 fall through and parse the complete table. */
373 if (__builtin_expect (status
== YPERR_SUCCESS
, 1))
375 if (__builtin_expect ((size_t) (len
+ 1) > buflen
, 0))
379 return NSS_STATUS_TRYAGAIN
;
382 char *p
= strncpy (buffer
, result
, len
);
387 int parse_res
= _nss_files_parse_servent (p
, serv
, (void *) buffer
,
389 if (__builtin_expect (parse_res
< 0, 0))
392 return NSS_STATUS_TRYAGAIN
;
394 return NSS_STATUS_NOTFOUND
;
397 return NSS_STATUS_SUCCESS
;
400 while (protocol
== NULL
&& (proto
[0] == 't' ? (proto
= "udp") : NULL
));
403 return NSS_STATUS_NOTFOUND
;
405 struct ypall_callback ypcb
;
408 ypcb
.foreach
= dosearch
;
409 ypcb
.data
= (char *) &req
;
411 req
.proto
= protocol
;
417 req
.status
= NSS_STATUS_NOTFOUND
;
418 int status
= yp_all (domain
, "services.byname", &ypcb
);
420 if (__builtin_expect (status
!= YPERR_SUCCESS
, 0))
421 return yperr2nss (status
);