blob: f52445ceba092a021dbdf3037f4cc85979413e65 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersen9615a082004-07-15 12:53:49 +00002/* Copyright (C) 1991,92,95,96,97,98,99,2001 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
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 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
19
20/*
21 * POSIX Standard: 9.2.2 User Database Access <pwd.h>
22 */
Eric Andersenab050f52001-01-27 06:01:43 +000023
Denis Vlasenkof81e8db2009-04-09 12:35:13 +000024#ifndef BB_PWD_H
25#define BB_PWD_H 1
Eric Andersenab050f52001-01-27 06:01:43 +000026
Denis Vlasenkof81e8db2009-04-09 12:35:13 +000027PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
Denis Vlasenko98636eb2008-05-09 17:59:34 +000028
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000029/* This file is #included after #include <pwd.h>
Bernhard Reutner-Fischerfd3552d2008-09-26 11:23:22 +000030 * We will use libc-defined structures, but will #define function names
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000031 * so that function calls are directed to bb_internal_XXX replacements
32 */
Eric Andersenab050f52001-01-27 06:01:43 +000033
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000034#define setpwent bb_internal_setpwent
35#define endpwent bb_internal_endpwent
36#define getpwent bb_internal_getpwent
37#define fgetpwent bb_internal_fgetpwent
38#define putpwent bb_internal_putpwent
39#define getpwuid bb_internal_getpwuid
40#define getpwnam bb_internal_getpwnam
41#define getpwent_r bb_internal_getpwent_r
42#define getpwuid_r bb_internal_getpwuid_r
43#define getpwnam_r bb_internal_getpwnam_r
44#define fgetpwent_r bb_internal_fgetpwent_r
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000045//#define getpw bb_internal_getpw
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000046
47
48/* All function names below should be remapped by #defines above
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000049 * in order to not collide with libc names. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000050
51
Eric Andersen9615a082004-07-15 12:53:49 +000052/* Rewind the password-file stream. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000053extern void setpwent(void);
Eric Andersenab050f52001-01-27 06:01:43 +000054
Eric Andersen9615a082004-07-15 12:53:49 +000055/* Close the password-file stream. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000056extern void endpwent(void);
Eric Andersenab050f52001-01-27 06:01:43 +000057
Eric Andersen9615a082004-07-15 12:53:49 +000058/* Read an entry from the password-file stream, opening it if necessary. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000059extern struct passwd *getpwent(void);
Eric Andersenab050f52001-01-27 06:01:43 +000060
Eric Andersen9615a082004-07-15 12:53:49 +000061/* Read an entry from STREAM. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000062extern struct passwd *fgetpwent(FILE *__stream);
Eric Andersenab050f52001-01-27 06:01:43 +000063
Eric Andersen9615a082004-07-15 12:53:49 +000064/* Write the given entry onto the given stream. */
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000065extern int putpwent(const struct passwd *__restrict __p,
Eric Andersen9615a082004-07-15 12:53:49 +000066 FILE *__restrict __f);
Eric Andersenab050f52001-01-27 06:01:43 +000067
Eric Andersen9615a082004-07-15 12:53:49 +000068/* Search for an entry with a matching user ID. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000069extern struct passwd *getpwuid(uid_t __uid);
Eric Andersen9615a082004-07-15 12:53:49 +000070
71/* Search for an entry with a matching username. */
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000072extern struct passwd *getpwnam(const char *__name);
Eric Andersen9615a082004-07-15 12:53:49 +000073
74/* Reentrant versions of some of the functions above.
75
76 PLEASE NOTE: the `getpwent_r' function is not (yet) standardized.
77 The interface may change in later versions of this library. But
78 the interface is designed following the principals used for the
79 other reentrant functions so the chances are good this is what the
80 POSIX people would choose. */
81
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000082extern int getpwent_r(struct passwd *__restrict __resultbuf,
Eric Andersen9615a082004-07-15 12:53:49 +000083 char *__restrict __buffer, size_t __buflen,
84 struct passwd **__restrict __result);
85
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000086extern int getpwuid_r(uid_t __uid,
Eric Andersen9615a082004-07-15 12:53:49 +000087 struct passwd *__restrict __resultbuf,
88 char *__restrict __buffer, size_t __buflen,
89 struct passwd **__restrict __result);
90
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000091extern int getpwnam_r(const char *__restrict __name,
Eric Andersen9615a082004-07-15 12:53:49 +000092 struct passwd *__restrict __resultbuf,
93 char *__restrict __buffer, size_t __buflen,
94 struct passwd **__restrict __result);
95
Eric Andersen9615a082004-07-15 12:53:49 +000096/* Read an entry from STREAM. This function is not standardized and
97 probably never will. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000098extern int fgetpwent_r(FILE *__restrict __stream,
Eric Andersen9615a082004-07-15 12:53:49 +000099 struct passwd *__restrict __resultbuf,
100 char *__restrict __buffer, size_t __buflen,
101 struct passwd **__restrict __result);
102
103/* Re-construct the password-file line for the given uid
104 in the given buffer. This knows the format that the caller
105 will expect, but this need not be the format of the password file. */
Denis Vlasenkoee5dce32008-09-26 10:35:55 +0000106/* UNUSED extern int getpw(uid_t __uid, char *__buffer); */
Eric Andersen9615a082004-07-15 12:53:49 +0000107
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000108POP_SAVED_FUNCTION_VISIBILITY
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000109
110#endif /* pwd.h */