1 /* Copyright (C) 1996-1998,2000,2002,2003,2004,2006
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Thorsten Kukuk <kukuk@suse.de>, 1996.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
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 rpcent
34 #include <nss/nss_files/files-parse.c>
36 __libc_lock_define_initialized (static, lock
)
38 static intern_t intern
;
42 internal_nis_endrpcent (intern_t
*intern
)
44 struct response_t
*curr
= intern
->next
;
48 struct response_t
*last
= curr
;
53 intern
->next
= intern
->start
= NULL
;
56 static enum nss_status
57 internal_nis_setrpcent (intern_t
*intern
)
60 struct ypall_callback ypcb
;
61 enum nss_status status
;
63 if (yp_get_default_domain (&domainname
))
64 return NSS_STATUS_UNAVAIL
;
66 internal_nis_endrpcent (intern
);
68 ypcb
.foreach
= _nis_saveit
;
69 ypcb
.data
= (char *) intern
;
70 status
= yperr2nss (yp_all (domainname
, "rpc.bynumber", &ypcb
));
72 /* Mark the last buffer as full. */
73 if (intern
->next
!= NULL
)
74 intern
->next
->size
= intern
->offset
;
76 intern
->next
= intern
->start
;
83 _nss_nis_setrpcent (int stayopen
)
85 enum nss_status status
;
87 __libc_lock_lock (lock
);
89 status
= internal_nis_setrpcent (&intern
);
91 __libc_lock_unlock (lock
);
97 _nss_nis_endrpcent (void)
99 __libc_lock_lock (lock
);
101 internal_nis_endrpcent (&intern
);
103 __libc_lock_unlock (lock
);
105 return NSS_STATUS_SUCCESS
;
108 static enum nss_status
109 internal_nis_getrpcent_r (struct rpcent
*rpc
, char *buffer
, size_t buflen
,
110 int *errnop
, intern_t
*intern
)
112 struct parser_data
*pdata
= (void *) buffer
;
116 if (intern
->start
== NULL
)
117 internal_nis_setrpcent (intern
);
119 if (intern
->next
== NULL
)
120 /* Not one entry in the map. */
121 return NSS_STATUS_NOTFOUND
;
123 /* Get the next entry until we found a correct one. */
126 struct response_t
*bucket
= intern
->next
;
128 if (__builtin_expect (intern
->offset
>= bucket
->size
, 0))
130 if (bucket
->next
== NULL
)
131 return NSS_STATUS_NOTFOUND
;
133 /* We look at all the content in the current bucket. Go on
135 bucket
= intern
->next
= bucket
->next
;
139 for (p
= &bucket
->mem
[intern
->offset
]; isspace (*p
); ++p
)
142 size_t len
= strlen (p
) + 1;
143 if (__builtin_expect (len
> buflen
, 0))
146 return NSS_STATUS_TRYAGAIN
;
149 /* We unfortunately have to copy the data in the user-provided
150 buffer because that buffer might be around for a very long
151 time and the servent structure must remain valid. If we would
152 rely on the BUCKET memory the next 'setservent' or 'endservent'
153 call would destroy it.
155 The important thing is that it is a single NUL-terminated
156 string. This is what the parsing routine expects. */
157 p
= memcpy (buffer
, &bucket
->mem
[intern
->offset
], len
);
159 parse_res
= _nss_files_parse_rpcent (p
, rpc
, pdata
, buflen
, errnop
);
160 if (__builtin_expect (parse_res
== -1, 0))
161 return NSS_STATUS_TRYAGAIN
;
163 intern
->offset
+= len
;
167 return NSS_STATUS_SUCCESS
;
171 _nss_nis_getrpcent_r (struct rpcent
*rpc
, char *buffer
, size_t buflen
,
174 enum nss_status status
;
176 __libc_lock_lock (lock
);
178 status
= internal_nis_getrpcent_r (rpc
, buffer
, buflen
, errnop
, &intern
);
180 __libc_lock_unlock (lock
);
186 _nss_nis_getrpcbyname_r (const char *name
, struct rpcent
*rpc
,
187 char *buffer
, size_t buflen
, int *errnop
)
192 return NSS_STATUS_UNAVAIL
;
195 intern_t data
= { NULL
, NULL
, 0 };
196 enum nss_status status
= internal_nis_setrpcent (&data
);
197 if (__builtin_expect (status
!= NSS_STATUS_SUCCESS
, 0))
202 ((status
= internal_nis_getrpcent_r (rpc
, buffer
, buflen
, errnop
,
203 &data
)) == NSS_STATUS_SUCCESS
))
205 if (strcmp (rpc
->r_name
, name
) == 0)
211 while (rpc
->r_aliases
[i
] != NULL
)
213 if (strcmp (rpc
->r_aliases
[i
], name
) == 0)
224 internal_nis_endrpcent (&data
);
226 if (__builtin_expect (!found
&& status
== NSS_STATUS_SUCCESS
, 0))
227 return NSS_STATUS_NOTFOUND
;
233 _nss_nis_getrpcbynumber_r (int number
, struct rpcent
*rpc
,
234 char *buffer
, size_t buflen
, int *errnop
)
237 if (__builtin_expect (yp_get_default_domain (&domain
), 0))
238 return NSS_STATUS_UNAVAIL
;
241 int nlen
= snprintf (buf
, sizeof (buf
), "%d", number
);
245 int yperr
= yp_match (domain
, "rpc.bynumber", buf
, nlen
, &result
, &len
);
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_rpcent (p
, rpc
, (void *) buffer
, buflen
,
271 if (__builtin_expect (parse_res
< 1, 0))
274 return NSS_STATUS_TRYAGAIN
;
276 return NSS_STATUS_NOTFOUND
;
279 return NSS_STATUS_SUCCESS
;