"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 | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 24 | #if !ENABLE_USE_BB_PWD_GRP |
| 25 | |
Eric Andersen | 887ca79 | 2002-07-03 23:19:26 +0000 | [diff] [blame] | 26 | #include <pwd.h> |
Robert Griebl | ea1a63a | 2002-06-04 20:10:23 +0000 | [diff] [blame] | 27 | |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 28 | #else |
| 29 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 30 | #ifndef _PWD_H |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 31 | #define _PWD_H 1 |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 32 | |
| 33 | /* The passwd structure. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 34 | struct passwd { |
| 35 | char *pw_name; /* Username. */ |
| 36 | char *pw_passwd; /* Password. */ |
| 37 | uid_t pw_uid; /* User ID. */ |
| 38 | gid_t pw_gid; /* Group ID. */ |
| 39 | char *pw_gecos; /* Real name. */ |
| 40 | char *pw_dir; /* Home directory. */ |
| 41 | char *pw_shell; /* Shell program. */ |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 42 | }; |
| 43 | |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 44 | |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 45 | #define setpwent bb_internal_setpwent |
| 46 | #define endpwent bb_internal_endpwent |
| 47 | #define getpwent bb_internal_getpwent |
| 48 | #define fgetpwent bb_internal_fgetpwent |
| 49 | #define putpwent bb_internal_putpwent |
| 50 | #define getpwuid bb_internal_getpwuid |
| 51 | #define getpwnam bb_internal_getpwnam |
| 52 | #define getpwent_r bb_internal_getpwent_r |
| 53 | #define getpwuid_r bb_internal_getpwuid_r |
| 54 | #define getpwnam_r bb_internal_getpwnam_r |
| 55 | #define fgetpwent_r bb_internal_fgetpwent_r |
| 56 | #define getpw bb_internal_getpw |
| 57 | |
| 58 | |
| 59 | /* All function names below should be remapped by #defines above |
| 60 | * in order to not collide with libc names. |
| 61 | * In theory it isn't necessary, but I saw weird interactions at link time. |
| 62 | * Let's play safe */ |
| 63 | |
| 64 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 65 | /* Rewind the password-file stream. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 66 | extern void setpwent(void); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 67 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 68 | /* Close the password-file stream. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 69 | extern void endpwent(void); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 70 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 71 | /* Read an entry from the password-file stream, opening it if necessary. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 72 | extern struct passwd *getpwent(void); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 73 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 74 | /* Read an entry from STREAM. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 75 | extern struct passwd *fgetpwent(FILE *__stream); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 76 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 77 | /* Write the given entry onto the given stream. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 78 | extern int putpwent(__const struct passwd *__restrict __p, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 79 | FILE *__restrict __f); |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 80 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 81 | /* Search for an entry with a matching user ID. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 82 | extern struct passwd *getpwuid(uid_t __uid); |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 83 | |
| 84 | /* Search for an entry with a matching username. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 85 | extern struct passwd *getpwnam(__const char *__name); |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 86 | |
| 87 | /* Reentrant versions of some of the functions above. |
| 88 | |
| 89 | PLEASE NOTE: the `getpwent_r' function is not (yet) standardized. |
| 90 | The interface may change in later versions of this library. But |
| 91 | the interface is designed following the principals used for the |
| 92 | other reentrant functions so the chances are good this is what the |
| 93 | POSIX people would choose. */ |
| 94 | |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 95 | extern int getpwent_r(struct passwd *__restrict __resultbuf, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 96 | char *__restrict __buffer, size_t __buflen, |
| 97 | struct passwd **__restrict __result); |
| 98 | |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 99 | extern int getpwuid_r(uid_t __uid, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 100 | struct passwd *__restrict __resultbuf, |
| 101 | char *__restrict __buffer, size_t __buflen, |
| 102 | struct passwd **__restrict __result); |
| 103 | |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 104 | extern int getpwnam_r(__const char *__restrict __name, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 105 | struct passwd *__restrict __resultbuf, |
| 106 | char *__restrict __buffer, size_t __buflen, |
| 107 | struct passwd **__restrict __result); |
| 108 | |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 109 | /* Read an entry from STREAM. This function is not standardized and |
| 110 | probably never will. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 111 | extern int fgetpwent_r(FILE *__restrict __stream, |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 112 | struct passwd *__restrict __resultbuf, |
| 113 | char *__restrict __buffer, size_t __buflen, |
| 114 | struct passwd **__restrict __result); |
| 115 | |
| 116 | /* Re-construct the password-file line for the given uid |
| 117 | in the given buffer. This knows the format that the caller |
| 118 | will expect, but this need not be the format of the password file. */ |
Denis Vlasenko | cb04ff5 | 2006-12-30 21:11:57 +0000 | [diff] [blame^] | 119 | extern int getpw(uid_t __uid, char *__buffer); |
Eric Andersen | 9615a08 | 2004-07-15 12:53:49 +0000 | [diff] [blame] | 120 | |
| 121 | #endif /* pwd.h */ |
| 122 | #endif |