"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 | /* |
| 21 | * POSIX Standard: 9.2.2 User Database Access <pwd.h> |
| 22 | */ |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 23 | |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +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 | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 27 | #if __GNUC_PREREQ(4,1) |
| 28 | # pragma GCC visibility push(hidden) |
| 29 | #endif |
| 30 | |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 31 | /* This file is #included after #include <pwd.h> |
Bernhard Reutner-Fischer | fd3552d | 2008-09-26 11:23:22 +0000 | [diff] [blame] | 32 | * We will use libc-defined structures, but will #define function names |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 33 | * so that function calls are directed to bb_internal_XXX replacements |
| 34 | */ |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 35 | |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 36 | #define setpwent bb_internal_setpwent |
| 37 | #define endpwent bb_internal_endpwent |
| 38 | #define getpwent bb_internal_getpwent |
| 39 | #define fgetpwent bb_internal_fgetpwent |
| 40 | #define putpwent bb_internal_putpwent |
| 41 | #define getpwuid bb_internal_getpwuid |
| 42 | #define getpwnam bb_internal_getpwnam |
| 43 | #define getpwent_r bb_internal_getpwent_r |
| 44 | #define getpwuid_r bb_internal_getpwuid_r |
| 45 | #define getpwnam_r bb_internal_getpwnam_r |
| 46 | #define fgetpwent_r bb_internal_fgetpwent_r |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 47 | //#define getpw bb_internal_getpw |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 48 | |
| 49 | |
| 50 | /* All function names below should be remapped by #defines above |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 51 | * in order to not collide with libc names. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 52 | |
| 53 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 54 | /* Rewind the password-file stream. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 55 | extern void setpwent(void); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 56 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 57 | /* Close the password-file stream. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 58 | extern void endpwent(void); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 59 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 60 | /* Read an entry from the password-file stream, opening it if necessary. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 61 | extern struct passwd *getpwent(void); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 62 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 63 | /* Read an entry from STREAM. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 64 | extern struct passwd *fgetpwent(FILE *__stream); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 65 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 66 | /* Write the given entry onto the given stream. */ |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 67 | extern int putpwent(const struct passwd *__restrict __p, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 68 | FILE *__restrict __f); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 69 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 70 | /* Search for an entry with a matching user ID. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 71 | extern struct passwd *getpwuid(uid_t __uid); |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 72 | |
| 73 | /* Search for an entry with a matching username. */ |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 74 | extern struct passwd *getpwnam(const char *__name); |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 75 | |
| 76 | /* Reentrant versions of some of the functions above. |
| 77 | |
| 78 | PLEASE NOTE: the `getpwent_r' function is not (yet) standardized. |
| 79 | The interface may change in later versions of this library. But |
| 80 | the interface is designed following the principals used for the |
| 81 | other reentrant functions so the chances are good this is what the |
| 82 | POSIX people would choose. */ |
| 83 | |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 84 | extern int getpwent_r(struct passwd *__restrict __resultbuf, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 85 | char *__restrict __buffer, size_t __buflen, |
| 86 | struct passwd **__restrict __result); |
| 87 | |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 88 | extern int getpwuid_r(uid_t __uid, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 89 | struct passwd *__restrict __resultbuf, |
| 90 | char *__restrict __buffer, size_t __buflen, |
| 91 | struct passwd **__restrict __result); |
| 92 | |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 93 | extern int getpwnam_r(const char *__restrict __name, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 94 | struct passwd *__restrict __resultbuf, |
| 95 | char *__restrict __buffer, size_t __buflen, |
| 96 | struct passwd **__restrict __result); |
| 97 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 98 | /* Read an entry from STREAM. This function is not standardized and |
| 99 | probably never will. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame] | 100 | extern int fgetpwent_r(FILE *__restrict __stream, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 101 | struct passwd *__restrict __resultbuf, |
| 102 | char *__restrict __buffer, size_t __buflen, |
| 103 | struct passwd **__restrict __result); |
| 104 | |
| 105 | /* Re-construct the password-file line for the given uid |
| 106 | in the given buffer. This knows the format that the caller |
| 107 | will expect, but this need not be the format of the password file. */ |
Denis Vlasenko | ee5dce3 | 2008-09-26 10:35:55 +0000 | [diff] [blame] | 108 | /* UNUSED extern int getpw(uid_t __uid, char *__buffer); */ |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 109 | |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 110 | #if __GNUC_PREREQ(4,1) |
| 111 | # pragma GCC visibility pop |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 112 | #endif |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 113 | |
| 114 | #endif /* pwd.h */ |