2 Unix SMB/CIFS implementation.
3 nss tester for winbindd
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Tim Potter 2003
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 static const char *so_path
= "/lib/libnss_winbind.so";
25 static const char *nss_name
= "winbind";
27 static NSS_STATUS last_error
;
28 static int total_errors
;
30 static void *find_fn(const char *name
)
36 pstr_sprintf(s
, "_nss_%s_%s", nss_name
, name
);
39 h
= sys_dlopen(so_path
, RTLD_LAZY
);
42 printf("Can't open shared library %s\n", so_path
);
45 res
= sys_dlsym(h
, s
);
47 printf("Can't find function %s\n", s
);
54 static void report_nss_error(const char *who
, NSS_STATUS status
)
58 printf("ERROR %s: NSS_STATUS=%d %d (nss_errno=%d)\n",
59 who
, status
, NSS_STATUS_SUCCESS
, nss_errno
);
62 static struct passwd
*nss_getpwent(void)
64 NSS_STATUS (*_nss_getpwent_r
)(struct passwd
*, char *,
66 (NSS_STATUS (*)(struct passwd
*, char *,
67 size_t, int *))find_fn("getpwent_r");
68 static struct passwd pwd
;
69 static char buf
[1000];
75 status
= _nss_getpwent_r(&pwd
, buf
, sizeof(buf
), &nss_errno
);
76 if (status
== NSS_STATUS_NOTFOUND
) {
79 if (status
!= NSS_STATUS_SUCCESS
) {
80 report_nss_error("getpwent", status
);
86 static struct passwd
*nss_getpwnam(const char *name
)
88 NSS_STATUS (*_nss_getpwnam_r
)(const char *, struct passwd
*, char *,
90 (NSS_STATUS (*)(const char *, struct passwd
*, char *,
91 size_t, int *))find_fn("getpwnam_r");
92 static struct passwd pwd
;
93 static char buf
[1000];
99 status
= _nss_getpwnam_r(name
, &pwd
, buf
, sizeof(buf
), &nss_errno
);
100 if (status
== NSS_STATUS_NOTFOUND
) {
103 if (status
!= NSS_STATUS_SUCCESS
) {
104 report_nss_error("getpwnam", status
);
110 static struct passwd
*nss_getpwuid(uid_t uid
)
112 NSS_STATUS (*_nss_getpwuid_r
)(uid_t
, struct passwd
*, char *,
114 (NSS_STATUS (*)(uid_t
, struct passwd
*, char *,
115 size_t, int *))find_fn("getpwuid_r");
116 static struct passwd pwd
;
117 static char buf
[1000];
120 if (!_nss_getpwuid_r
)
123 status
= _nss_getpwuid_r(uid
, &pwd
, buf
, sizeof(buf
), &nss_errno
);
124 if (status
== NSS_STATUS_NOTFOUND
) {
127 if (status
!= NSS_STATUS_SUCCESS
) {
128 report_nss_error("getpwuid", status
);
134 static void nss_setpwent(void)
136 NSS_STATUS (*_nss_setpwent
)(void) =
137 (NSS_STATUS(*)(void))find_fn("setpwent");
143 status
= _nss_setpwent();
144 if (status
!= NSS_STATUS_SUCCESS
) {
145 report_nss_error("setpwent", status
);
149 static void nss_endpwent(void)
151 NSS_STATUS (*_nss_endpwent
)(void) =
152 (NSS_STATUS (*)(void))find_fn("endpwent");
158 status
= _nss_endpwent();
159 if (status
!= NSS_STATUS_SUCCESS
) {
160 report_nss_error("endpwent", status
);
165 static struct group
*nss_getgrent(void)
167 NSS_STATUS (*_nss_getgrent_r
)(struct group
*, char *,
169 (NSS_STATUS (*)(struct group
*, char *,
170 size_t, int *))find_fn("getgrent_r");
171 static struct group grp
;
173 static int buflen
= 1024;
176 if (!_nss_getgrent_r
)
180 buf
= SMB_MALLOC_ARRAY(char, buflen
);
183 status
= _nss_getgrent_r(&grp
, buf
, buflen
, &nss_errno
);
184 if (status
== NSS_STATUS_TRYAGAIN
) {
186 buf
= SMB_REALLOC_ARRAY(buf
, char, buflen
);
192 if (status
== NSS_STATUS_NOTFOUND
) {
196 if (status
!= NSS_STATUS_SUCCESS
) {
197 report_nss_error("getgrent", status
);
205 static struct group
*nss_getgrnam(const char *name
)
207 NSS_STATUS (*_nss_getgrnam_r
)(const char *, struct group
*, char *,
209 (NSS_STATUS (*)(const char *, struct group
*, char *,
210 size_t, int *))find_fn("getgrnam_r");
211 static struct group grp
;
213 static int buflen
= 1000;
216 if (!_nss_getgrnam_r
)
220 buf
= SMB_MALLOC_ARRAY(char, buflen
);
222 status
= _nss_getgrnam_r(name
, &grp
, buf
, buflen
, &nss_errno
);
223 if (status
== NSS_STATUS_TRYAGAIN
) {
225 buf
= SMB_REALLOC_ARRAY(buf
, char, buflen
);
231 if (status
== NSS_STATUS_NOTFOUND
) {
235 if (status
!= NSS_STATUS_SUCCESS
) {
236 report_nss_error("getgrnam", status
);
244 static struct group
*nss_getgrgid(gid_t gid
)
246 NSS_STATUS (*_nss_getgrgid_r
)(gid_t
, struct group
*, char *,
248 (NSS_STATUS (*)(gid_t
, struct group
*, char *,
249 size_t, int *))find_fn("getgrgid_r");
250 static struct group grp
;
252 static int buflen
= 1000;
255 if (!_nss_getgrgid_r
)
259 buf
= SMB_MALLOC_ARRAY(char, buflen
);
262 status
= _nss_getgrgid_r(gid
, &grp
, buf
, buflen
, &nss_errno
);
263 if (status
== NSS_STATUS_TRYAGAIN
) {
265 buf
= SMB_REALLOC_ARRAY(buf
, char, buflen
);
271 if (status
== NSS_STATUS_NOTFOUND
) {
275 if (status
!= NSS_STATUS_SUCCESS
) {
276 report_nss_error("getgrgid", status
);
284 static void nss_setgrent(void)
286 NSS_STATUS (*_nss_setgrent
)(void) =
287 (NSS_STATUS (*)(void))find_fn("setgrent");
293 status
= _nss_setgrent();
294 if (status
!= NSS_STATUS_SUCCESS
) {
295 report_nss_error("setgrent", status
);
299 static void nss_endgrent(void)
301 NSS_STATUS (*_nss_endgrent
)(void) =
302 (NSS_STATUS (*)(void))find_fn("endgrent");
308 status
= _nss_endgrent();
309 if (status
!= NSS_STATUS_SUCCESS
) {
310 report_nss_error("endgrent", status
);
314 static int nss_initgroups(char *user
, gid_t group
, gid_t
**groups
, long int *start
, long int *size
)
316 NSS_STATUS (*_nss_initgroups
)(char *, gid_t
, long int *,
317 long int *, gid_t
**, long int , int *) =
318 (NSS_STATUS (*)(char *, gid_t
, long int *,
319 long int *, gid_t
**,
320 long int, int *))find_fn("initgroups_dyn");
323 if (!_nss_initgroups
)
324 return NSS_STATUS_UNAVAIL
;
326 status
= _nss_initgroups(user
, group
, start
, size
, groups
, 0, &nss_errno
);
327 if (status
!= NSS_STATUS_SUCCESS
) {
328 report_nss_error("initgroups", status
);
333 static void print_passwd(struct passwd
*pwd
)
335 printf("%s:%s:%lu:%lu:%s:%s:%s\n",
338 (unsigned long)pwd
->pw_uid
,
339 (unsigned long)pwd
->pw_gid
,
345 static void print_group(struct group
*grp
)
348 printf("%s:%s:%lu: ",
351 (unsigned long)grp
->gr_gid
);
353 if (!grp
->gr_mem
[0]) {
358 for (i
=0; grp
->gr_mem
[i
+1]; i
++) {
359 printf("%s, ", grp
->gr_mem
[i
]);
361 printf("%s\n", grp
->gr_mem
[i
]);
364 static void nss_test_initgroups(char *name
, gid_t gid
)
368 gid_t
*groups
= NULL
;
372 groups
= SMB_MALLOC_ARRAY(gid_t
, size
);
375 status
= nss_initgroups(name
, gid
, &groups
, &start
, &size
);
376 if (status
== NSS_STATUS_UNAVAIL
) {
377 printf("No initgroups fn\n");
381 for (i
=0; i
<start
-1; i
++) {
382 printf("%lu, ", (unsigned long)groups
[i
]);
384 printf("%lu\n", (unsigned long)groups
[i
]);
388 static void nss_test_users(void)
393 /* loop over all users */
394 while ((pwd
= nss_getpwent())) {
395 printf("Testing user %s\n", pwd
->pw_name
);
396 printf("getpwent: "); print_passwd(pwd
);
397 pwd
= nss_getpwuid(pwd
->pw_uid
);
400 printf("ERROR: can't getpwuid\n");
403 printf("getpwuid: "); print_passwd(pwd
);
404 pwd
= nss_getpwnam(pwd
->pw_name
);
407 printf("ERROR: can't getpwnam\n");
410 printf("getpwnam: "); print_passwd(pwd
);
411 printf("initgroups: "); nss_test_initgroups(pwd
->pw_name
, pwd
->pw_gid
);
417 static void nss_test_groups(void)
422 /* loop over all groups */
423 while ((grp
= nss_getgrent())) {
424 printf("Testing group %s\n", grp
->gr_name
);
425 printf("getgrent: "); print_group(grp
);
426 grp
= nss_getgrnam(grp
->gr_name
);
429 printf("ERROR: can't getgrnam\n");
432 printf("getgrnam: "); print_group(grp
);
433 grp
= nss_getgrgid(grp
->gr_gid
);
436 printf("ERROR: can't getgrgid\n");
439 printf("getgrgid: "); print_group(grp
);
445 static void nss_test_errors(void)
450 pwd
= getpwnam("nosuchname");
451 if (pwd
|| last_error
!= NSS_STATUS_NOTFOUND
) {
453 printf("ERROR Non existant user gave error %d\n", last_error
);
456 pwd
= getpwuid(0xFFF0);
457 if (pwd
|| last_error
!= NSS_STATUS_NOTFOUND
) {
459 printf("ERROR Non existant uid gave error %d\n", last_error
);
462 grp
= getgrnam("nosuchgroup");
463 if (grp
|| last_error
!= NSS_STATUS_NOTFOUND
) {
465 printf("ERROR Non existant group gave error %d\n", last_error
);
468 grp
= getgrgid(0xFFF0);
469 if (grp
|| last_error
!= NSS_STATUS_NOTFOUND
) {
471 printf("ERROR Non existant gid gave error %d\n", last_error
);
475 int main(int argc
, char *argv
[])
477 if (argc
> 1) so_path
= argv
[1];
478 if (argc
> 2) nss_name
= argv
[2];
484 printf("total_errors=%d\n", total_errors
);