1 /* Mail alias file parser in nss_files module.
2 Copyright (C) 1996,97,98,99,2002 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
25 #include <bits/libc-lock.h>
32 /* Locks the static variables in this file. */
33 __libc_lock_define_initialized (static, lock
)
35 /* Maintenance of the shared stream open on the database file. */
38 static fpos_t position
;
39 static enum { nouse
, getent
, getby
} last_use
;
42 static enum nss_status
43 internal_setent (void)
45 enum nss_status status
= NSS_STATUS_SUCCESS
;
49 stream
= fopen ("/etc/aliases", "r");
52 status
= errno
== EAGAIN
? NSS_STATUS_TRYAGAIN
: NSS_STATUS_UNAVAIL
;
55 /* We have to make sure the file is `closed on exec'. */
58 result
= flags
= fcntl (fileno (stream
), F_GETFD
, 0);
62 result
= fcntl (fileno (stream
), F_SETFD
, flags
);
66 /* Something went wrong. Close the stream and return a
70 status
= NSS_STATUS_UNAVAIL
;
81 /* Thread-safe, exported version of that. */
83 _nss_files_setaliasent (void)
85 enum nss_status status
;
87 __libc_lock_lock (lock
);
89 status
= internal_setent ();
91 if (status
== NSS_STATUS_SUCCESS
&& fgetpos (stream
, &position
) < 0)
95 status
= NSS_STATUS_UNAVAIL
;
100 __libc_lock_unlock (lock
);
106 /* Close the database file. */
108 internal_endent (void)
118 /* Thread-safe, exported version of that. */
120 _nss_files_endaliasent (void)
122 __libc_lock_lock (lock
);
126 __libc_lock_unlock (lock
);
128 return NSS_STATUS_SUCCESS
;
131 /* Parsing the database file into `struct aliasent' data structures. */
132 static enum nss_status
133 get_next_alias (const char *match
, struct aliasent
*result
,
134 char *buffer
, size_t buflen
, int *errnop
)
136 enum nss_status status
= NSS_STATUS_NOTFOUND
;
139 result
->alias_members_len
= 0;
143 /* Now we are ready to process the input. We have to read a
144 line and all its continuations and construct the array of
145 string pointers. This pointers and the names itself have to
146 be placed in BUFFER. */
147 char *first_unused
= buffer
;
148 size_t room_left
= buflen
- (buflen
% __alignof__ (char *));
151 /* Check whether the buffer is large enough for even trying to
156 /* Read the first line. It must contain the alias name and
157 possibly some alias names. */
158 first_unused
[room_left
- 1] = '\xff';
159 line
= fgets_unlocked (first_unused
, room_left
, stream
);
161 /* Nothing to read. */
163 else if (first_unused
[room_left
- 1] != '\xff')
165 /* The line is too long for our buffer. */
168 status
= NSS_STATUS_TRYAGAIN
;
175 /* If we are in IGNORE mode and the first character in the
176 line is a white space we ignore the line and start
178 if (ignore
&& isspace (*first_unused
))
181 /* Terminate the line for any case. */
182 cp
= strpbrk (first_unused
, "#\n");
186 /* Skip leading blanks. */
187 while (isspace (*line
))
190 result
->alias_name
= first_unused
;
191 while (*line
!= '\0' && *line
!= ':')
192 *first_unused
++ = *line
++;
193 if (*line
== '\0' || result
->alias_name
== first_unused
)
194 /* No valid name. Ignore the line. */
197 *first_unused
++ = '\0';
198 if (room_left
< (size_t) (first_unused
- result
->alias_name
))
200 room_left
-= first_unused
- result
->alias_name
;
203 /* When we search for a specific alias we can avoid all the
204 difficult parts and compare now with the name we are
205 looking for. If it does not match we simply ignore all
206 lines until the next line containing the start of a new
208 ignore
= (match
!= NULL
209 && __strcasecmp (result
->alias_name
, match
) != 0);
213 while (isspace (*line
))
217 while (*line
!= '\0' && *line
!= ',')
218 *first_unused
++ = *line
++;
220 if (first_unused
!= cp
)
222 /* OK, we can have a regular entry or an include
226 *first_unused
++ = '\0';
228 if (strncmp (cp
, ":include:", 9) != 0)
230 if (room_left
< (first_unused
- cp
) + sizeof (char *))
232 room_left
-= (first_unused
- cp
) + sizeof (char *);
234 ++result
->alias_members_len
;
238 /* Oh well, we have to read the addressed file. */
240 char *old_line
= NULL
;
244 listfile
= fopen (&cp
[9], "r");
245 /* If the file does not exist we simply ignore
248 && (old_line
= strdup (line
)) != NULL
)
250 while (! feof (listfile
))
252 first_unused
[room_left
- 1] = '\xff';
253 line
= fgets_unlocked (first_unused
, room_left
,
257 if (first_unused
[room_left
- 1] != '\xff')
263 /* Parse the line. */
264 cp
= strpbrk (line
, "#\n");
270 while (isspace (*line
))
274 while (*line
!= '\0' && *line
!= ',')
275 *first_unused
++ = *line
++;
280 if (first_unused
!= cp
)
282 *first_unused
++ = '\0';
283 if (room_left
< ((first_unused
- cp
)
284 + __alignof__ (char *)))
289 room_left
-= ((first_unused
- cp
)
290 + __alignof__ (char *));
291 ++result
->alias_members_len
;
294 while (*line
!= '\0');
298 first_unused
[room_left
- 1] = '\0';
299 strncpy (first_unused
, old_line
, room_left
);
301 if (old_line
!= NULL
)
304 if (first_unused
[room_left
- 1] != '\0')
312 /* Get the next line. But we must be careful. We
313 must not read the whole line at once since it
314 might belong to the current alias. Simply read
315 the first character. If it is a white space we
316 have a continuation line. Otherwise it is the
317 beginning of a new alias and we can push back the
318 just read character. */
322 if (ch
== EOF
|| ch
== '\n' || !isspace (ch
))
326 /* Now prepare the return. Provide string
327 pointers for the currently selected aliases. */
331 /* Adjust the pointer so it is aligned for
333 first_unused
+= __alignof__ (char *) - 1;
334 first_unused
-= ((first_unused
- (char *) 0)
335 % __alignof__ (char *));
336 result
->alias_members
= (char **) first_unused
;
338 /* Compute addresses of alias entry strings. */
339 cp
= result
->alias_name
;
340 for (cnt
= 0; cnt
< result
->alias_members_len
; ++cnt
)
342 cp
= strchr (cp
, '\0') + 1;
343 result
->alias_members
[cnt
] = cp
;
346 status
= (result
->alias_members_len
== 0
347 ? NSS_STATUS_RETURN
: NSS_STATUS_SUCCESS
);
351 /* The just read character is a white space and so
353 first_unused
[room_left
- 1] = '\xff';
354 line
= fgets_unlocked (first_unused
, room_left
, stream
);
355 if (first_unused
[room_left
- 1] != '\xff')
357 cp
= strpbrk (line
, "#\n");
364 if (status
!= NSS_STATUS_NOTFOUND
)
365 /* We read something. In any case break here. */
374 _nss_files_getaliasent_r (struct aliasent
*result
, char *buffer
, size_t buflen
,
377 /* Return next entry in host file. */
378 enum nss_status status
= NSS_STATUS_SUCCESS
;
380 __libc_lock_lock (lock
);
382 /* Be prepared that the set*ent function was not called before. */
384 status
= internal_setent ();
386 if (status
== NSS_STATUS_SUCCESS
)
388 /* If the last use was not by the getent function we need the
389 position the stream. */
390 if (last_use
!= getent
)
392 if (fsetpos (stream
, &position
) < 0)
393 status
= NSS_STATUS_UNAVAIL
;
398 if (status
== NSS_STATUS_SUCCESS
)
400 result
->alias_local
= 1;
402 /* Read lines until we get a definite result. */
404 status
= get_next_alias (NULL
, result
, buffer
, buflen
, errnop
);
405 while (status
== NSS_STATUS_RETURN
);
407 /* If we successfully read an entry remember this position. */
408 if (status
== NSS_STATUS_SUCCESS
)
409 fgetpos (stream
, &position
);
415 __libc_lock_unlock (lock
);
422 _nss_files_getaliasbyname_r (const char *name
, struct aliasent
*result
,
423 char *buffer
, size_t buflen
, int *errnop
)
425 /* Return next entry in host file. */
426 enum nss_status status
= NSS_STATUS_SUCCESS
;
430 __set_errno (EINVAL
);
431 return NSS_STATUS_UNAVAIL
;
434 __libc_lock_lock (lock
);
436 /* Open the stream or rest it. */
437 status
= internal_setent ();
440 if (status
== NSS_STATUS_SUCCESS
)
442 result
->alias_local
= 1;
444 /* Read lines until we get a definite result. */
446 status
= get_next_alias (name
, result
, buffer
, buflen
, errnop
);
447 while (status
== NSS_STATUS_RETURN
);
452 __libc_lock_unlock (lock
);