1 /* Copyright (C) 1996-2013 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 Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
24 /* Define a line parsing function using the common code
25 used in the nss_files module. */
27 #define STRUCTURE spwd
31 /* Predicate which always returns false, needed below. */
35 #include <nss/nss_files/files-parse.c>
38 STRING_FIELD (result
->sp_namp
, ISCOLON
, 0);
40 && (result
->sp_namp
[0] == '+' || result
->sp_namp
[0] == '-'))
42 result
->sp_pwdp
= NULL
;
43 result
->sp_lstchg
= 0;
46 result
->sp_warn
= -1l;
47 result
->sp_inact
= -1l;
48 result
->sp_expire
= -1l;
49 result
->sp_flag
= ~0ul;
53 STRING_FIELD (result
->sp_pwdp
, ISCOLON
, 0);
54 INT_FIELD_MAYBE_NULL (result
->sp_lstchg
, ISCOLON
, 0, 10, (long int) (int),
56 INT_FIELD_MAYBE_NULL (result
->sp_min
, ISCOLON
, 0, 10, (long int) (int),
58 INT_FIELD_MAYBE_NULL (result
->sp_max
, ISCOLON
, 0, 10, (long int) (int),
60 while (isspace (*line
))
65 result
->sp_warn
= -1l;
66 result
->sp_inact
= -1l;
67 result
->sp_expire
= -1l;
68 result
->sp_flag
= ~0ul;
72 INT_FIELD_MAYBE_NULL (result
->sp_warn
, ISCOLON
, 0, 10,
73 (long int) (int), (long int) -1);
74 INT_FIELD_MAYBE_NULL (result
->sp_inact
, ISCOLON
, 0, 10,
75 (long int) (int), (long int) -1);
76 INT_FIELD_MAYBE_NULL (result
->sp_expire
, ISCOLON
, 0, 10,
77 (long int) (int), (long int) -1);
79 INT_FIELD_MAYBE_NULL (result
->sp_flag
, FALSEP
, 0, 10,
80 (unsigned long int), ~0ul)
82 result
->sp_flag
= ~0ul;
88 /* Read one shadow entry from the given stream. */
90 __sgetspent_r (const char *string
, struct spwd
*resbuf
, char *buffer
,
91 size_t buflen
, struct spwd
**result
)
93 buffer
[buflen
- 1] = '\0';
94 char *sp
= strncpy (buffer
, string
, buflen
);
95 if (buffer
[buflen
- 1] != '\0')
98 int parse_result
= parse_line (sp
, resbuf
, NULL
, 0, &errno
);
99 *result
= parse_result
> 0 ? resbuf
: NULL
;
101 return *result
== NULL
? errno
: 0;
103 weak_alias (__sgetspent_r
, sgetspent_r
)