blob: 177ee5f938eece29c3e8d718ca6fba3578a193af [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) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
Eric Andersen27f64e12002-06-23 04:24:25 +00004
Eric Andersen9615a082004-07-15 12:53:49 +00005 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.
Eric Andersen27f64e12002-06-23 04:24:25 +00009
Eric Andersen9615a082004-07-15 12:53:49 +000010 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.
Eric Andersen27f64e12002-06-23 04:24:25 +000014
Eric Andersen9615a082004-07-15 12:53:49 +000015 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/* Declaration of types and functions for shadow password suite. */
21
22#if !defined CONFIG_USE_BB_SHADOW
Eric Andersen27f64e12002-06-23 04:24:25 +000023#include <shadow.h>
24#else
25
Eric Andersen9615a082004-07-15 12:53:49 +000026#ifndef _SHADOW_H
27#define _SHADOW_H 1
Eric Andersen27f64e12002-06-23 04:24:25 +000028
Eric Andersen9615a082004-07-15 12:53:49 +000029#include <stdio.h>
Eric Andersen27f64e12002-06-23 04:24:25 +000030
Eric Andersen9615a082004-07-15 12:53:49 +000031/* Paths to the user database files. */
32#ifndef _PATH_SHADOW
33#define _PATH_SHADOW "/etc/shadow"
34#endif
35#define SHADOW _PATH_SHADOW
Eric Andersen27f64e12002-06-23 04:24:25 +000036
Eric Andersen9615a082004-07-15 12:53:49 +000037
38/* Structure of the password file. */
39struct spwd
40{
41 char *sp_namp; /* Login name. */
42 char *sp_pwdp; /* Encrypted password. */
43 long int sp_lstchg; /* Date of last change. */
44 long int sp_min; /* Minimum number of days between changes. */
45 long int sp_max; /* Maximum number of days between changes. */
46 long int sp_warn; /* Number of days to warn user to change
47 the password. */
48 long int sp_inact; /* Number of days the account may be
49 inactive. */
50 long int sp_expire; /* Number of days since 1970-01-01 until
51 account expires. */
52 unsigned long int sp_flag; /* Reserved. */
Eric Andersen27f64e12002-06-23 04:24:25 +000053};
54
Eric Andersen27f64e12002-06-23 04:24:25 +000055
Eric Andersen9615a082004-07-15 12:53:49 +000056/* Open database for reading. */
57extern void setspent (void);
Eric Andersen27f64e12002-06-23 04:24:25 +000058
Eric Andersen9615a082004-07-15 12:53:49 +000059/* Close database. */
60extern void endspent (void);
Eric Andersen27f64e12002-06-23 04:24:25 +000061
Eric Andersen9615a082004-07-15 12:53:49 +000062/* Get next entry from database, perhaps after opening the file. */
63extern struct spwd *getspent (void);
Eric Andersen27f64e12002-06-23 04:24:25 +000064
Eric Andersen9615a082004-07-15 12:53:49 +000065/* Get shadow entry matching NAME. */
66extern struct spwd *getspnam (__const char *__name);
67
68/* Read shadow entry from STRING. */
69extern struct spwd *sgetspent (__const char *__string);
70
71/* Read next shadow entry from STREAM. */
72extern struct spwd *fgetspent (FILE *__stream);
73
74/* Write line containing shadow password entry to stream. */
75extern int putspent (__const struct spwd *__p, FILE *__stream);
76
77/* Reentrant versions of some of the functions above. */
78extern int getspent_r (struct spwd *__result_buf, char *__buffer,
79 size_t __buflen, struct spwd **__result);
80
81extern int getspnam_r (__const char *__name, struct spwd *__result_buf,
82 char *__buffer, size_t __buflen,
Rob Landley97551972006-05-29 05:21:29 +000083 struct spwd **__result);
Eric Andersen9615a082004-07-15 12:53:49 +000084
85extern int sgetspent_r (__const char *__string, struct spwd *__result_buf,
86 char *__buffer, size_t __buflen,
87 struct spwd **__result);
88
89extern int fgetspent_r (FILE *__stream, struct spwd *__result_buf,
90 char *__buffer, size_t __buflen,
91 struct spwd **__result);
92/* Protect password file against multi writers. */
93extern int lckpwdf (void);
94
95/* Unlock password file. */
96extern int ulckpwdf (void);
97
98#endif /* shadow.h */
99#endif