blob: 32b5b366ea3e8fe5cd950cde615f234b1d763a8b [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/*
Denys Vlasenkofb132e42010-10-29 11:46:52 +020021 * POSIX Standard: 9.2.2 User Database Access <pwd.h>
Eric Andersen9615a082004-07-15 12:53:49 +000022 */
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 */
Denys Vlasenko6b64a262012-01-06 16:23:18 +010033#undef endpwent
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
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000037#define getpwuid bb_internal_getpwuid
38#define getpwnam bb_internal_getpwnam
39#define getpwent_r bb_internal_getpwent_r
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000040#define getpwnam_r bb_internal_getpwnam_r
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000041
42/* All function names below should be remapped by #defines above
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000043 * in order to not collide with libc names. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000044
Eric Andersen9615a082004-07-15 12:53:49 +000045/* Rewind the password-file stream. */
Denys Vlasenko908b6e52015-01-02 22:31:07 +010046void FAST_FUNC setpwent(void);
Eric Andersenab050f52001-01-27 06:01:43 +000047
Eric Andersen9615a082004-07-15 12:53:49 +000048/* Close the password-file stream. */
Denys Vlasenko908b6e52015-01-02 22:31:07 +010049void FAST_FUNC endpwent(void);
Eric Andersenab050f52001-01-27 06:01:43 +000050
Denys Vlasenko55301292010-03-31 12:38:17 +020051#ifdef UNUSED_SINCE_WE_AVOID_STATIC_BUFS
Eric Andersen9615a082004-07-15 12:53:49 +000052/* Read an entry from the password-file stream, opening it if necessary. */
Denys Vlasenko908b6e52015-01-02 22:31:07 +010053struct passwd* FAST_FUNC getpwent(void);
Denys Vlasenko55301292010-03-31 12:38:17 +020054#endif
Eric Andersenab050f52001-01-27 06:01:43 +000055
Eric Andersen9615a082004-07-15 12:53:49 +000056/* Search for an entry with a matching user ID. */
Denys Vlasenko908b6e52015-01-02 22:31:07 +010057struct passwd* FAST_FUNC getpwuid(uid_t __uid);
Eric Andersen9615a082004-07-15 12:53:49 +000058
59/* Search for an entry with a matching username. */
Denys Vlasenko908b6e52015-01-02 22:31:07 +010060struct passwd* FAST_FUNC getpwnam(const char *__name);
Eric Andersen9615a082004-07-15 12:53:49 +000061
62/* Reentrant versions of some of the functions above.
63
64 PLEASE NOTE: the `getpwent_r' function is not (yet) standardized.
65 The interface may change in later versions of this library. But
66 the interface is designed following the principals used for the
67 other reentrant functions so the chances are good this is what the
68 POSIX people would choose. */
69
Denys Vlasenko908b6e52015-01-02 22:31:07 +010070int FAST_FUNC getpwent_r(struct passwd *__restrict __resultbuf,
Denys Vlasenko6830ade2013-01-15 13:58:01 +010071 char *__restrict __buffer, size_t __buflen,
72 struct passwd **__restrict __result);
Eric Andersen9615a082004-07-15 12:53:49 +000073
Denys Vlasenko908b6e52015-01-02 22:31:07 +010074int FAST_FUNC getpwnam_r(const char *__restrict __name,
Denys Vlasenko6830ade2013-01-15 13:58:01 +010075 struct passwd *__restrict __resultbuf,
76 char *__restrict __buffer, size_t __buflen,
77 struct passwd **__restrict __result);
Eric Andersen9615a082004-07-15 12:53:49 +000078
Denis Vlasenkof81e8db2009-04-09 12:35:13 +000079POP_SAVED_FUNCTION_VISIBILITY
Denis Vlasenko98636eb2008-05-09 17:59:34 +000080
Denys Vlasenko55301292010-03-31 12:38:17 +020081#endif