1 /* Copyright (C) 1996,1997,1999,2000,2002,2003,2004,2005,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/>. */
30 #include <rpcsvc/yp.h>
31 #include <rpcsvc/ypclnt.h>
35 extern enum nss_status
36 _nss_netgroup_parseline (char **cursor
, struct __netgrent
*netgrp
,
37 char *buffer
, size_t buflen
, int *errnop
);
41 internal_nis_endnetgrent (struct __netgrent
*netgrp
)
45 netgrp
->data_size
= 0;
46 netgrp
->cursor
= NULL
;
51 _nss_nis_setnetgrent (const char *group
, struct __netgrent
*netgrp
)
54 enum nss_status status
;
56 status
= NSS_STATUS_SUCCESS
;
58 if (__builtin_expect (group
== NULL
|| group
[0] == '\0', 0))
59 return NSS_STATUS_UNAVAIL
;
62 if (__builtin_expect (yp_get_default_domain (&domain
), 0))
63 return NSS_STATUS_UNAVAIL
;
65 status
= yperr2nss (yp_match (domain
, "netgroup", group
, strlen (group
),
66 &netgrp
->data
, &len
));
67 if (__builtin_expect (status
== NSS_STATUS_SUCCESS
, 1))
69 /* Our implementation of yp_match already allocates a buffer
70 which is one byte larger than the value in LEN specifies
71 and the last byte is filled with NUL. So we can simply
74 assert (malloc_usable_size (netgrp
->data
) >= len
+ 1);
75 assert (netgrp
->data
[len
] == '\0');
77 netgrp
->data_size
= len
;
78 netgrp
->cursor
= netgrp
->data
;
86 _nss_nis_endnetgrent (struct __netgrent
*netgrp
)
88 internal_nis_endnetgrent (netgrp
);
90 return NSS_STATUS_SUCCESS
;
95 _nss_nis_getnetgrent_r (struct __netgrent
*result
, char *buffer
, size_t buflen
,
98 return _nss_netgroup_parseline (&result
->cursor
, result
, buffer
, buflen
,