]> git.ipfire.org Git - thirdparty/glibc.git/blame - nss/getXXent.c
Update.
[thirdparty/glibc.git] / nss / getXXent.c
CommitLineData
6b9fecdc 1/* Copyright (C) 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
26761c28 2 This file is part of the GNU C Library.
5f0e6fc7 3
26761c28
UD
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
5f0e6fc7 8
26761c28
UD
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
5f0e6fc7 13
26761c28
UD
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
18
19#include <errno.h>
5107cf1d 20#include <bits/libc-lock.h>
26761c28 21#include <stdlib.h>
5f0e6fc7
RM
22
23#include "nsswitch.h"
24
25/*******************************************************************\
26|* Here we assume several symbols to be defined: *|
6b9fecdc 27|* *|
5f0e6fc7 28|* LOOKUP_TYPE - the return type of the function *|
6b9fecdc 29|* *|
5f0e6fc7 30|* GETFUNC_NAME - name of the non-reentrant getXXXent function *|
6b9fecdc 31|* *|
5f0e6fc7 32|* BUFLEN - size of static buffer *|
6b9fecdc 33|* *|
5f0e6fc7 34|* Optionally the following vars can be defined: *|
6b9fecdc 35|* *|
5f0e6fc7
RM
36|* NEED_H_ERRNO - an extra parameter will be passed to point to *|
37|* the global `h_errno' variable. *|
6b9fecdc 38|* *|
5f0e6fc7
RM
39\*******************************************************************/
40
41/* To make the real sources a bit prettier. */
42#define REENTRANT_GETNAME APPEND_R (GETFUNC_NAME)
43#define APPEND_R(name) APPEND_R1 (name)
44#define APPEND_R1(name) name##_r
23396375
UD
45#define INTERNAL(name) INTERNAL1 (name)
46#define INTERNAL1(name) __##name
5f0e6fc7
RM
47
48/* Sometimes we need to store error codes in the `h_errno' variable. */
49#ifdef NEED_H_ERRNO
50# define H_ERRNO_PARM , int *h_errnop
8b801829 51# define H_ERRNO_VAR &h_errno
5f0e6fc7
RM
52#else
53# define H_ERRNO_PARM
8b801829 54# define H_ERRNO_VAR NULL
5f0e6fc7
RM
55#endif
56
57/* Prototype of the reentrant version. */
ba1ffaa1
UD
58extern int INTERNAL (REENTRANT_GETNAME) (LOOKUP_TYPE *resbuf, char *buffer,
59 size_t buflen, LOOKUP_TYPE **result
60 H_ERRNO_PARM);
5f0e6fc7 61
26761c28
UD
62/* We need to protect the dynamic buffer handling. */
63__libc_lock_define_initialized (static, lock);
64
d60d215c
UD
65/* This points to the static buffer used. */
66static char *buffer;
67
5f0e6fc7
RM
68
69LOOKUP_TYPE *
70GETFUNC_NAME (void)
71{
26761c28 72 static size_t buffer_size;
ba1ffaa1 73 static LOOKUP_TYPE resbuf;
22d57dd3 74 LOOKUP_TYPE *result;
26761c28
UD
75 int save;
76
77 /* Get lock. */
78 __libc_lock_lock (lock);
79
8b801829
UD
80 result = (LOOKUP_TYPE *)
81 __nss_getent ((getent_r_function) INTERNAL (REENTRANT_GETNAME),
82 (void **) &resbuf, &buffer, BUFLEN, &buffer_size,
83 H_ERRNO_VAR);
26761c28 84
26761c28
UD
85 save = errno;
86 __libc_lock_unlock (lock);
87 __set_errno (save);
ba1ffaa1 88 return result;
5f0e6fc7 89}
d60d215c
UD
90
91
92/* Free all resources if necessary. */
93static void __attribute__ ((unused))
94free_mem (void)
95{
6b9fecdc 96 free (buffer);
d60d215c
UD
97}
98
99text_set_element (__libc_subfreeres, free_mem);