"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 2 | /* 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 Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 21 | * POSIX Standard: 9.2.2 User Database Access <pwd.h> |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 22 | */ |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 23 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 24 | #ifndef BB_PWD_H |
| 25 | #define BB_PWD_H 1 |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 26 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 27 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 28 | |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 29 | /* This file is #included after #include <pwd.h> |
Bernhard Reutner-Fischer | fd3552d | 2008-09-26 11:23:22 +0000 | [diff] [blame] | 30 | * We will use libc-defined structures, but will #define function names |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 31 | * so that function calls are directed to bb_internal_XXX replacements |
| 32 | */ |
Denys Vlasenko | 6b64a26 | 2012-01-06 16:23:18 +0100 | [diff] [blame] | 33 | #undef endpwent |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 34 | #define setpwent bb_internal_setpwent |
| 35 | #define endpwent bb_internal_endpwent |
| 36 | #define getpwent bb_internal_getpwent |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 37 | #define getpwuid bb_internal_getpwuid |
| 38 | #define getpwnam bb_internal_getpwnam |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 39 | #define getpwnam_r bb_internal_getpwnam_r |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 40 | |
| 41 | /* All function names below should be remapped by #defines above |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 42 | * in order to not collide with libc names. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 43 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 44 | /* Rewind the password-file stream. */ |
Denys Vlasenko | 908b6e5 | 2015-01-02 22:31:07 +0100 | [diff] [blame] | 45 | void FAST_FUNC setpwent(void); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 46 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 47 | /* Close the password-file stream. */ |
Denys Vlasenko | 908b6e5 | 2015-01-02 22:31:07 +0100 | [diff] [blame] | 48 | void FAST_FUNC endpwent(void); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 49 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 50 | /* Read an entry from the password-file stream, opening it if necessary. */ |
Denys Vlasenko | 908b6e5 | 2015-01-02 22:31:07 +0100 | [diff] [blame] | 51 | struct passwd* FAST_FUNC getpwent(void); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 52 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 53 | /* Search for an entry with a matching user ID. */ |
Denys Vlasenko | 908b6e5 | 2015-01-02 22:31:07 +0100 | [diff] [blame] | 54 | struct passwd* FAST_FUNC getpwuid(uid_t __uid); |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 55 | |
| 56 | /* Search for an entry with a matching username. */ |
Denys Vlasenko | 908b6e5 | 2015-01-02 22:31:07 +0100 | [diff] [blame] | 57 | struct passwd* FAST_FUNC getpwnam(const char *__name); |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 58 | |
Denys Vlasenko | 23cfaab | 2015-02-07 21:21:02 +0100 | [diff] [blame] | 59 | /* Reentrant versions of some of the functions above. */ |
Denys Vlasenko | 908b6e5 | 2015-01-02 22:31:07 +0100 | [diff] [blame] | 60 | int FAST_FUNC getpwnam_r(const char *__restrict __name, |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 61 | struct passwd *__restrict __resultbuf, |
| 62 | char *__restrict __buffer, size_t __buflen, |
| 63 | struct passwd **__restrict __result); |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 64 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 65 | POP_SAVED_FUNCTION_VISIBILITY |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 66 | |
Denys Vlasenko | 5530129 | 2010-03-31 12:38:17 +0200 | [diff] [blame] | 67 | #endif |