1 /* Copyright (C) 1996-1998, 2000-2004, 2006 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25 #include <bits/libc-lock.h>
26 #include <rpcsvc/yp.h>
27 #include <rpcsvc/ypclnt.h>
31 /* Get the declaration of the parser function. */
32 #define ENTNAME protoent
34 #include <nss/nss_files/files-parse.c>
36 __libc_lock_define_initialized (static, lock
)
40 struct response
*next
;
44 static struct response
*start
;
45 static struct response
*next
;
48 saveit (int instatus
, char *inkey
, int inkeylen
, char *inval
,
49 int invallen
, char *indata
)
51 if (instatus
!= YP_TRUE
)
54 if (inkey
&& inkeylen
> 0 && inval
&& invallen
> 0)
56 struct response
*newp
= malloc (sizeof (struct response
) + invallen
+ 1);
58 return 1; /* We have no error code for out of memory */
67 *((char *) mempcpy (newp
->val
, inval
, invallen
)) = '\0';
74 internal_nis_endprotoent (void)
84 static enum nss_status
85 internal_nis_setprotoent (void)
88 struct ypall_callback ypcb
;
89 enum nss_status status
;
91 yp_get_default_domain (&domainname
);
93 internal_nis_endprotoent ();
95 ypcb
.foreach
= saveit
;
97 status
= yperr2nss (yp_all (domainname
, "protocols.bynumber", &ypcb
));
104 _nss_nis_setprotoent (int stayopen
)
106 enum nss_status status
;
108 __libc_lock_lock (lock
);
110 status
= internal_nis_setprotoent ();
112 __libc_lock_unlock (lock
);
118 _nss_nis_endprotoent (void)
120 __libc_lock_lock (lock
);
122 internal_nis_endprotoent ();
125 __libc_lock_unlock (lock
);
127 return NSS_STATUS_SUCCESS
;
130 static enum nss_status
131 internal_nis_getprotoent_r (struct protoent
*proto
,
132 char *buffer
, size_t buflen
, int *errnop
)
134 struct parser_data
*data
= (void *) buffer
;
138 internal_nis_setprotoent ();
140 /* Get the next entry until we found a correct one. */
146 return NSS_STATUS_NOTFOUND
;
148 p
= strncpy (buffer
, next
->val
, buflen
);
153 parse_res
= _nss_files_parse_protoent (p
, proto
, data
, buflen
, errnop
);
155 return NSS_STATUS_TRYAGAIN
;
160 return NSS_STATUS_SUCCESS
;
164 _nss_nis_getprotoent_r (struct protoent
*proto
, char *buffer
, size_t buflen
,
167 enum nss_status status
;
169 __libc_lock_lock (lock
);
171 status
= internal_nis_getprotoent_r (proto
, buffer
, buflen
, errnop
);
173 __libc_lock_unlock (lock
);
179 _nss_nis_getprotobyname_r (const char *name
, struct protoent
*proto
,
180 char *buffer
, size_t buflen
, int *errnop
)
185 return NSS_STATUS_UNAVAIL
;
189 if (__builtin_expect (yp_get_default_domain (&domain
), 0))
190 return NSS_STATUS_UNAVAIL
;
194 int yperr
= yp_match (domain
, "protocols.byname", name
, strlen (name
),
197 if (__builtin_expect (yperr
!= YPERR_SUCCESS
, 0))
199 enum nss_status retval
= yperr2nss (yperr
);
201 if (retval
== NSS_STATUS_TRYAGAIN
)
206 if (__builtin_expect ((size_t) (len
+ 1) > buflen
, 0))
210 return NSS_STATUS_TRYAGAIN
;
213 char *p
= strncpy (buffer
, result
, len
);
219 int parse_res
= _nss_files_parse_protoent (p
, proto
, (void *) buffer
, buflen
,
221 if (__builtin_expect (parse_res
< 1, 0))
224 return NSS_STATUS_TRYAGAIN
;
226 return NSS_STATUS_NOTFOUND
;
228 return NSS_STATUS_SUCCESS
;
232 _nss_nis_getprotobynumber_r (int number
, struct protoent
*proto
,
233 char *buffer
, size_t buflen
, int *errnop
)
236 if (__builtin_expect (yp_get_default_domain (&domain
), 0))
237 return NSS_STATUS_UNAVAIL
;
240 int nlen
= snprintf (buf
, sizeof (buf
), "%d", number
);
244 int yperr
= yp_match (domain
, "protocols.bynumber", buf
, nlen
, &result
,
247 if (__builtin_expect (yperr
!= YPERR_SUCCESS
, 0))
249 enum nss_status retval
= yperr2nss (yperr
);
251 if (retval
== NSS_STATUS_TRYAGAIN
)
256 if (__builtin_expect ((size_t) (len
+ 1) > buflen
, 0))
260 return NSS_STATUS_TRYAGAIN
;
263 char *p
= strncpy (buffer
, result
, len
);
269 int parse_res
= _nss_files_parse_protoent (p
, proto
, (void *) buffer
, buflen
,
271 if (__builtin_expect (parse_res
< 1, 0))
274 return NSS_STATUS_TRYAGAIN
;
276 return NSS_STATUS_NOTFOUND
;
278 return NSS_STATUS_SUCCESS
;