1 /* Copyright (C) 1997, 2000, 2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Mark Kettenis <kettenis@phys.uva.nl>, 1997.
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.
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.
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
28 #include "nss_hesiod.h"
30 /* Get the declaration of the parser function. */
32 #define STRUCTURE passwd
34 #include <nss/nss_files/files-parse.c>
37 _nss_hesiod_setpwent (int stayopen
)
39 return NSS_STATUS_SUCCESS
;
43 _nss_hesiod_endpwent (void)
45 return NSS_STATUS_SUCCESS
;
48 static enum nss_status
49 lookup (const char *name
, const char *type
, struct passwd
*pwd
,
50 char *buffer
, size_t buflen
, int *errnop
)
52 struct parser_data
*data
= (void *) buffer
;
60 context
= _nss_hesiod_init ();
62 return NSS_STATUS_UNAVAIL
;
64 list
= hesiod_resolve (context
, name
, type
);
70 return err
== ENOENT
? NSS_STATUS_NOTFOUND
: NSS_STATUS_UNAVAIL
;
73 linebuflen
= buffer
+ buflen
- data
->linebuffer
;
74 len
= strlen (*list
) + 1;
77 hesiod_free_list (context
, list
);
80 return NSS_STATUS_TRYAGAIN
;
83 memcpy (data
->linebuffer
, *list
, len
);
84 hesiod_free_list (context
, list
);
87 parse_res
= _nss_files_parse_pwent (buffer
, pwd
, data
, buflen
, errnop
);
91 return parse_res
== -1 ? NSS_STATUS_TRYAGAIN
: NSS_STATUS_NOTFOUND
;
94 return NSS_STATUS_SUCCESS
;
98 _nss_hesiod_getpwnam_r (const char *name
, struct passwd
*pwd
,
99 char *buffer
, size_t buflen
, int *errnop
)
101 return lookup (name
, "passwd", pwd
, buffer
, buflen
, errnop
);
105 _nss_hesiod_getpwuid_r (uid_t uid
, struct passwd
*pwd
,
106 char *buffer
, size_t buflen
, int *errnop
)
108 char uidstr
[21]; /* We will probably never have a gid_t with more
111 snprintf (uidstr
, sizeof uidstr
, "%d", uid
);
113 return lookup (uidstr
, "uid", pwd
, buffer
, buflen
, errnop
);