1 /* Copyright (C) 1996 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 /* Declaration of types and functions for shadow password suite. */
29 /* Paths to the userd files. */
30 #define SHADOW "/etc/shadow"
35 /* Structure of the password file. */
38 char *sp_namp
; /* Login name. */
39 char *sp_pwdp
; /* Encrypted password. */
40 long int sp_lstchg
; /* Date of last change. */
41 long int sp_min
; /* Minimum number of days between changes. */
42 long int sp_max
; /* Maximum number of days between changes. */
43 long int sp_warn
; /* Number of days to warn user to change
45 long int sp_inact
; /* Number of days the account may be
47 long int sp_expire
; /* Number of days since 1970-01-01 until
49 unsigned long int sp_flag
; /* Reserved. */
53 /* Open database for reading. */
54 extern void setspent
__P ((void));
57 extern void endspent
__P ((void));
59 /* Get next entry from database, perhaps after opening the file. */
60 extern struct spwd
*getspent
__P ((void));
62 /* Get shadow entry matching NAME. */
63 extern struct spwd
*getspnam
__P ((__const
char *__name
));
65 /* Read shadow entry from STRING. */
66 extern struct spwd
*sgetspent
__P ((__const
char *__string
));
68 /* Read next shadow entry from STREAM. */
69 extern struct spwd
*fgetspent
__P ((FILE *__stream
));
71 /* Write line containing shadow password entry to stream. */
72 extern int putspent
__P ((__const
struct spwd
*__p
, FILE *__stream
));
75 #ifdef __USE_REENTRANT
76 /* Reentrant versions of some of the functions above. */
77 extern struct spwd
*__getspent_r
__P ((struct spwd
*__result_buf
,
78 char *__buffer
, int __buflen
));
79 extern struct spwd
*getspent_r
__P ((struct spwd
*__result_buf
,
80 char *__buffer
, int __buflen
));
82 extern struct spwd
*__getspnam_r
__P ((__const
char *__name
,
83 struct spwd
*__result_buf
,
84 char *__buffer
, int __buflen
));
85 extern struct spwd
*getspnam_r
__P ((__const
char *__name
,
86 struct spwd
*__result_buf
,
87 char *__buffer
, int __buflen
));
89 extern struct spwd
*__sgetspent_r
__P ((__const
char *__string
,
90 struct spwd
*__result_buf
,
91 char *__buffer
, int __buflen
));
92 extern struct spwd
*sgetspent_r
__P ((__const
char *__string
,
93 struct spwd
*__result_buf
,
94 char *__buffer
, int __buflen
));
96 extern struct spwd
*__fgetspent_r
__P ((FILE *__stream
,
97 struct spwd
*__result_buf
,
98 char *__buffer
, int __buflen
));
99 extern struct spwd
*fgetspent_r
__P ((FILE *__stream
,
100 struct spwd
*__result_buf
,
101 char *__buffer
, int __buflen
));
102 #endif /* reentrant */
105 /* Protect password file against multi writers. */
106 extern int __lckpwdf
__P ((void));
107 extern int lckpwdf
__P ((void));
109 /* Unlock password file. */
110 extern int __ulckpwdf
__P ((void));
111 extern int ulckpwdf
__P ((void));
115 #endif /* shadow.h */