Update.
[glibc.git] / nss / nss_files / files-XXX.c
blob9432b14b34eaa3238fd6c4f747497640925c4038
1 /* Common code for file-based databases in nss_files module.
2 Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include <stdio.h>
21 #include <ctype.h>
22 #include <assert.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <bits/libc-lock.h>
26 #include "nsswitch.h"
28 /* These symbols are defined by the including source file:
30 ENTNAME -- database name of the structure and functions (hostent, pwent).
31 STRUCTURE -- struct name, define only if not ENTNAME (passwd, group).
32 DATABASE -- string of the database file's name ("hosts", "passwd").
34 NEED_H_ERRNO - defined iff an arg `int *herrnop' is used.
36 Also see files-parse.c.
39 #define ENTNAME_r CONCAT(ENTNAME,_r)
41 #define DATAFILE "/etc/" DATABASE
43 #ifdef NEED_H_ERRNO
44 # include <netdb.h>
45 # define H_ERRNO_PROTO , int *herrnop
46 # define H_ERRNO_ARG , herrnop
47 # define H_ERRNO_SET(val) (*herrnop = (val))
48 #else
49 # define H_ERRNO_PROTO
50 # define H_ERRNO_ARG
51 # define H_ERRNO_SET(val) ((void) 0)
52 #endif
54 /* Locks the static variables in this file. */
55 __libc_lock_define_initialized (static, lock)
57 /* Maintenance of the shared stream open on the database file. */
59 static FILE *stream;
60 static fpos_t position;
61 static enum { none, getent, getby } last_use;
62 static int keep_stream;
64 /* Open database file if not already opened. */
65 static enum nss_status
66 internal_setent (int stayopen)
68 enum nss_status status = NSS_STATUS_SUCCESS;
70 if (stream == NULL)
72 stream = fopen (DATAFILE, "r");
74 if (stream == NULL)
75 status = errno == EAGAIN ? NSS_STATUS_TRYAGAIN : NSS_STATUS_UNAVAIL;
76 else
78 /* We have to make sure the file is `closed on exec'. */
79 int result, flags;
81 result = flags = fcntl (fileno (stream), F_GETFD, 0);
82 if (result >= 0)
84 flags |= FD_CLOEXEC;
85 result = fcntl (fileno (stream), F_SETFD, flags);
87 if (result < 0)
89 /* Something went wrong. Close the stream and return a
90 failure. */
91 fclose (stream);
92 stream = NULL;
93 status = NSS_STATUS_UNAVAIL;
97 else
98 rewind (stream);
100 /* Remember STAYOPEN flag. */
101 if (stream != NULL)
102 keep_stream |= stayopen;
104 return status;
108 /* Thread-safe, exported version of that. */
109 enum nss_status
110 CONCAT(_nss_files_set,ENTNAME) (int stayopen)
112 enum nss_status status;
114 __libc_lock_lock (lock);
116 status = internal_setent (stayopen);
118 if (status == NSS_STATUS_SUCCESS && fgetpos (stream, &position) < 0)
120 fclose (stream);
121 stream = NULL;
122 status = NSS_STATUS_UNAVAIL;
125 last_use = getent;
127 __libc_lock_unlock (lock);
129 return status;
133 /* Close the database file. */
134 static void
135 internal_endent (void)
137 if (stream != NULL)
139 fclose (stream);
140 stream = NULL;
145 /* Thread-safe, exported version of that. */
146 enum nss_status
147 CONCAT(_nss_files_end,ENTNAME) (void)
149 __libc_lock_lock (lock);
151 internal_endent ();
153 /* Reset STAYOPEN flag. */
154 keep_stream = 0;
156 __libc_lock_unlock (lock);
158 return NSS_STATUS_SUCCESS;
161 /* Parsing the database file into `struct STRUCTURE' data structures. */
163 static enum nss_status
164 internal_getent (struct STRUCTURE *result,
165 char *buffer, int buflen, int *errnop H_ERRNO_PROTO)
167 char *p;
168 struct parser_data *data = (void *) buffer;
169 int linebuflen = buffer + buflen - data->linebuffer;
170 int parse_result;
172 if (buflen < (int) sizeof *data + 1)
174 *errnop = ERANGE;
175 H_ERRNO_SET (NETDB_INTERNAL);
176 return NSS_STATUS_TRYAGAIN;
181 /* Terminate the line so that we can test for overflow. */
182 data->linebuffer[linebuflen - 1] = '\xff';
184 p = fgets_unlocked (data->linebuffer, linebuflen, stream);
185 if (p == NULL)
187 /* End of file or read error. */
188 *errnop = errno;
189 H_ERRNO_SET (HOST_NOT_FOUND);
190 return NSS_STATUS_NOTFOUND;
192 else if (data->linebuffer[linebuflen - 1] != '\xff')
194 /* The line is too long. Give the user the opportunity to
195 enlarge the buffer. */
196 *errnop = ERANGE;
197 H_ERRNO_SET (NETDB_INTERNAL);
198 return NSS_STATUS_TRYAGAIN;
201 /* Skip leading blanks. */
202 while (isspace (*p))
203 ++p;
205 while (*p == '\0' || *p == '#' /* Ignore empty and comment lines. */
206 /* Parse the line. If it is invalid, loop to get the next
207 line of the file to parse. */
208 || ! (parse_result = parse_line (p, result, data, buflen, errnop)));
210 /* Filled in RESULT with the next entry from the database file. */
211 return parse_result == -1 ? NSS_STATUS_TRYAGAIN : NSS_STATUS_SUCCESS;
215 /* Return the next entry from the database file, doing locking. */
216 enum nss_status
217 CONCAT(_nss_files_get,ENTNAME_r) (struct STRUCTURE *result, char *buffer,
218 size_t buflen, int *errnop H_ERRNO_PROTO)
220 /* Return next entry in host file. */
221 enum nss_status status = NSS_STATUS_SUCCESS;
223 __libc_lock_lock (lock);
225 /* Be prepared that the set*ent function was not called before. */
226 if (stream == NULL)
228 status = internal_setent (0);
230 if (status == NSS_STATUS_SUCCESS && fgetpos (stream, &position) < 0)
232 fclose (stream);
233 stream = NULL;
234 status = NSS_STATUS_UNAVAIL;
238 if (status == NSS_STATUS_SUCCESS)
240 /* If the last use was not by the getent function we need the
241 position the stream. */
242 if (last_use != getent)
243 if (fsetpos (stream, &position) < 0)
244 status = NSS_STATUS_UNAVAIL;
245 else
246 last_use = getent;
248 if (status == NSS_STATUS_SUCCESS)
250 status = internal_getent (result, buffer, buflen, errnop
251 H_ERRNO_ARG);
253 /* Remember this position if we were successful. If the
254 operation failed we give the user a chance to repeat the
255 operation (perhaps the buffer was too small). */
256 if (status == NSS_STATUS_SUCCESS)
257 fgetpos (stream, &position);
258 else
259 /* We must make sure we reposition the stream the next call. */
260 last_use = none;
264 __libc_lock_unlock (lock);
266 return status;
269 /* Macro for defining lookup functions for this file-based database.
271 NAME is the name of the lookup; e.g. `hostbyname'.
273 KEYSIZE and KEYPATTERN are ignored here but used by ../nss_db/db-XXX.c.
275 PROTO describes the arguments for the lookup key;
276 e.g. `const char *hostname'.
278 BREAK_IF_MATCH is a block of code which compares `struct STRUCTURE *result'
279 to the lookup key arguments and does `break;' if they match. */
281 #define DB_LOOKUP(name, keysize, keypattern, break_if_match, proto...) \
282 enum nss_status \
283 _nss_files_get##name##_r (proto, \
284 struct STRUCTURE *result, char *buffer, \
285 size_t buflen, int *errnop H_ERRNO_PROTO) \
287 enum nss_status status; \
289 __libc_lock_lock (lock); \
291 /* Reset file pointer to beginning or open file. */ \
292 status = internal_setent (keep_stream); \
294 if (status == NSS_STATUS_SUCCESS) \
296 /* Tell getent function that we have repositioned the file pointer. */ \
297 last_use = getby; \
299 while ((status = internal_getent (result, buffer, buflen, errnop \
300 H_ERRNO_ARG)) \
301 == NSS_STATUS_SUCCESS) \
302 { break_if_match } \
304 if (! keep_stream) \
305 internal_endent (); \
308 __libc_lock_unlock (lock); \
310 return status; \