1 /* Netgroup file parser in nss_files modules.
2 Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 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, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
30 #define DATAFILE "/etc/netgroup"
33 #define EXPAND(needed) \
36 size_t old_cursor = result->cursor - result->data; \
38 result->data_size += 512 > 2 * needed ? 512 : 2 * needed; \
39 result->data = realloc (result->data, result->data_size); \
41 if (result->data == NULL) \
43 status = NSS_STATUS_UNAVAIL; \
47 result->cursor = result->data + old_cursor; \
53 _nss_files_setnetgrent (const char *group
, struct __netgrent
*result
)
56 enum nss_status status
;
59 return NSS_STATUS_UNAVAIL
;
61 /* Find the netgroups file and open it. */
62 fp
= fopen (DATAFILE
, "r");
64 status
= errno
== EAGAIN
? NSS_STATUS_TRYAGAIN
: NSS_STATUS_UNAVAIL
;
67 /* Read the file line by line and try to find the description
68 GROUP. We must take care for long lines. */
71 const ssize_t group_len
= strlen (group
);
73 status
= NSS_STATUS_NOTFOUND
;
74 result
->cursor
= result
->data
;
78 ssize_t curlen
= getline (&line
, &line_len
, fp
);
83 status
= NSS_STATUS_NOTFOUND
;
87 found
= (curlen
> group_len
&& strncmp (line
, group
, group_len
) == 0
88 && isspace (line
[group_len
]));
90 /* Read the whole line (including continuation) and store it
91 if FOUND in nonzero. Otherwise we don't need it. */
94 /* Store the data from the first line. */
95 EXPAND (curlen
- group_len
);
96 memcpy (result
->cursor
, &line
[group_len
+ 1],
98 result
->cursor
+= (curlen
- group_len
) - 1;
101 while (line
[curlen
- 1] == '\n' && line
[curlen
- 2] == '\\')
103 /* Yes, we have a continuation line. */
105 /* Remove these characters from the stored line. */
109 curlen
= getline (&line
, &line_len
, fp
);
115 /* Make sure we have enough room. */
116 EXPAND (1 + curlen
+ 1);
118 /* Add separator in case next line starts immediately. */
119 *result
->cursor
++ = ' ';
122 memcpy (result
->cursor
, line
, curlen
+ 1);
123 result
->cursor
+= curlen
;
129 /* Now we have read the line. */
130 status
= NSS_STATUS_SUCCESS
;
131 result
->cursor
= result
->data
;
138 /* We don't need the file and the line buffer anymore. */
148 _nss_files_endnetgrent (struct __netgrent
*result
)
150 /* Free allocated memory for data if some is present. */
151 if (result
->data
!= NULL
)
155 result
->data_size
= 0;
156 result
->cursor
= NULL
;
159 return NSS_STATUS_SUCCESS
;
163 strip_whitespace (char *str
)
167 /* Skip leading spaces. */
168 while (isspace (*cp
))
172 while (*cp
!= '\0' && ! isspace(*cp
))
175 /* Null-terminate, stripping off any trailing spaces. */
178 return *str
== '\0' ? NULL
: str
;
182 _nss_netgroup_parseline (char **cursor
, struct __netgrent
*result
,
183 char *buffer
, size_t buflen
, int *errnop
)
185 enum nss_status status
;
186 const char *host
, *user
, *domain
;
189 /* Some sanity checks. */
191 return NSS_STATUS_NOTFOUND
;
193 /* First skip leading spaces. */
194 while (isspace (*cp
))
199 /* We have a list of other netgroups. */
202 while (*cp
!= '\0' && ! isspace (*cp
))
207 /* It is another netgroup name. */
208 int last
= *cp
== '\0';
210 result
->type
= group_val
;
211 result
->val
.group
= name
;
218 return NSS_STATUS_SUCCESS
;
221 return result
->first
? NSS_STATUS_NOTFOUND
: NSS_STATUS_RETURN
;
224 /* Match host name. */
228 return result
->first
? NSS_STATUS_NOTFOUND
: NSS_STATUS_RETURN
;
230 /* Match user name. */
234 return result
->first
? NSS_STATUS_NOTFOUND
: NSS_STATUS_RETURN
;
236 /* Match domain name. */
240 return result
->first
? NSS_STATUS_NOTFOUND
: NSS_STATUS_RETURN
;
244 /* When we got here we have found an entry. Before we can copy it
245 to the private buffer we have to make sure it is big enough. */
246 if (cp
- host
> buflen
)
249 status
= NSS_STATUS_UNAVAIL
;
253 memcpy (buffer
, host
, cp
- host
);
254 result
->type
= triple_val
;
256 buffer
[(user
- host
) - 1] = '\0'; /* Replace ',' with '\0'. */
257 result
->val
.triple
.host
= strip_whitespace (buffer
);
259 buffer
[(domain
- host
) - 1] = '\0'; /* Replace ',' with '\0'. */
260 result
->val
.triple
.user
= strip_whitespace (buffer
+ (user
- host
));
262 buffer
[(cp
- host
) - 1] = '\0'; /* Replace ')' with '\0'. */
263 result
->val
.triple
.domain
= strip_whitespace (buffer
+ (domain
- host
));
265 status
= NSS_STATUS_SUCCESS
;
267 /* Remember where we stopped reading. */
278 _nss_files_getnetgrent_r (struct __netgrent
*result
, char *buffer
,
279 size_t buflen
, int *errnop
)
281 enum nss_status status
;
283 status
= _nss_netgroup_parseline (&result
->cursor
, result
, buffer
, buflen
,