summaryrefslogtreecommitdiffstats
path: root/man3/getspnam.3
blob: 1b6b1232c04d02ec599b6b2101375fb25909ec15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
.\" Copyright (c) 2003 Andries Brouwer (aeb@cwi.nl) and
.\" Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\"
.\" Distributed under GPL
.\"
.TH GETSPNAM 3  2003-11-15 "Shadow" "Linux Programmer's Manual"
.SH NAME
getspnam, getspnam_r, getspent, getspent_r, setspent, endspent,
fgetspent, fgetspent_r, sgetspent, sgetspent_r, putspent,
lckpwdf, ulckpwdf \- get shadow password file entry
.SH SYNOPSIS
.nf
/* General shadow password file API */
.br
.B #include <shadow.h>
.sp
.BI "struct spwd *getspnam(const char *" name );
.sp
.B struct spwd *getspent(void);
.sp
.B void setspent(void);
.sp
.B void endspent(void);
.sp
.BI "struct spwd *fgetspent(FILE *" fp );
.sp
.BI "struct spwd *sgetspent(const char *" s );
.sp
.BI "int putspent(struct spwd *" p ", FILE *" fp );
.sp
.B int lckpwdf(void);
.sp
.B int ulckpwdf(void);
.sp
/* GNU extension */
.br
.BR "#define _SVID_SOURCE" "    /* or _BSD_SOURCE */
.br
.B #include <shadow.h>
.sp
.BI "int getspent_r(struct spwd *" spbuf ,
.br
.BI "        char *" buf ", size_t " buflen ", struct spwd **" spbufp );
.sp
.BI "int getspnam_r(const char *" name ", struct spwd *" spbuf ,
.br
.BI "        char *" buf ", size_t " buflen ", struct spwd **" spbufp );
.sp
.BI "int fgetspent_r(FILE *" fp ", struct spwd *" spbuf ,
.br
.BI "        char *" buf ", size_t " buflen ", struct spwd **" spbufp );
.sp
.BI "int sgetspent_r(const char *" s ", struct spwd *" spbuf ,
.br
.BI "        char *" buf ", size_t " buflen ", struct spwd **" spbufp );
.sp
.fi
.SH DESCRIPTION
Long ago it was considered safe to have encrypted passwords openly
visible in the password file. When computers got faster and people
got more security-conscious, this was no longer acceptable.
Julianne Frances Haugh implemented the shadow password suite
that keeps the encrypted passwords in
.IR /etc/shadow ,
readable only by root.
.LP
The access routines described below resemble those for
.IR /etc/passwd .
This shadow password setup has been superseded by PAM
(pluggable authentication modules), and the file
.I /etc/nsswitch.conf
now describes the sources to be used.
.LP
The
.B getspnam()
function returns a pointer to a structure containing
the broken out fields of a line from
.I /etc/shadow
for the entry that matches the user name
.IR name .
.LP
The
.B getspent()
function returns a pointer to the next entry in the shadow password file.
The position in the input stream is initialized by
.BR setspent() .
When done reading, the program may call
.BR endspent()
so that resources can be deallocated.
.\" some systems require a call of setspent() before the first getspent()
.\" glibc does not
.LP
The
.B fgetspent()
function is similar to
.B getspent()
but uses the supplied stream instead of the one implicitly opened by
.BR setspent() .
.LP
The
.B sgetspent()
function parses the supplied string
.I s
into a struct spwd.
.LP
The
.B putspent()
function writes the contents of the supplied struct spwd
.RI * p
as a text line in the shadow password file format to the stream
.IR fp .
String entries with value NULL and numerical entries with value \-1
are written as an empty string.
.LP
The
.B lckpwdf()
function is intended to protect against multiple access of the shadow
password database. It tries to acquire a lock, and returns 0 on success,
\-1 on failure (lock not obtained within 15 seconds).
The
.B ulckpwdf()
function releases the lock again.
Note that there is no protection against direct access of the shadow
password file. Only programs that use
.B lckpwdf()
will notice the lock.
.LP
These were the routines that formed the original shadow API.
They are widely available.
.\" Also in libc5
.\" SUN doesn't have sgetspent()
.SS "Reentrant versions"
Analogous to the "reentrant" routines for the password file, glibc
also has reentrant versions here.
The
.B getspnam_r()
function is like
.B getspnam()
but stores the retrieved shadow passwd structure in the space pointed to by
.IR spbuf .
This shadow passwd structure contains pointers to strings, and these strings
are stored in the buffer
.I buf
of size
.IR buflen .
A pointer to the result (in case of success) or NULL (in case no entry
was found or an error occurred) is stored in
.RI * spbufp .
.LP
The functions
.BR getspent_r() ,
.BR fgetspent_r() ,
and
.BR sgetspent_r()
are completely analogous.
.LP
Some non-glibc systems also have functions with these names,
often with different prototypes.
.\" SUN doesn't have sgetspent_r()
.SS Structure
The shadow passwd structure is defined in \fI<shadow.h>\fP as follows:
.sp
.nf
struct spwd {
    char *sp_namp;         /* Login name */
    char *sp_pwdp;         /* Encrypted password */
    long sp_lstchg;        /* Date of last change */
    long sp_min;           /* Min #days between changes */
    long sp_max;           /* Max #days between changes */
    long sp_warn;          /* #days before pwd expires
                              to warn user to change it */
    long sp_inact;         /* #days after pwd expires
                              until account is disabled */
    long sp_expire;        /* #days since 1970-01-01
                              until account is disabled */
    unsigned long sp_flag; /* Reserved */
};
.fi
.SH "RETURN VALUE"
Routines return NULL if no more entries are available or if an
error occurs during processing.
Routines which have \fBint\fR as the return value return 0 for
success and -1 for failure.
.LP
For the non-reentrant functions, the return value may point to static area,
and may be overwritten by subsequent calls to these functions.
.LP
The reentrant functions return zero on success.
In case of error, an error value is returned.
.SH ERRORS
.TP
.B ERANGE
Supplied buffer is too small.
.SH FILES
.TP
.I /etc/shadow
shadow password database file
.TP
.I /etc/.pwd.lock
lock file
.LP
The include file
.I <paths.h>
defines the constant _PATH_SHADOW to the pathname of the shadow
password file.
.SH "CONFORMING TO"

.SH "SEE ALSO"
.BR getgrnam (3),
.BR getpwnam (3),
.BR getpwnam_r (3),
.BR shadow (5)