r25509: Extend the WINBIND-STRUCT-LOOKUP_NAME_SID test to also
[Samba.git] / source / torture / winbind / struct_based.c
blobdd7a1850abd4270805d5bf9733d0d436f25abc61
1 /*
2 Unix SMB/CIFS implementation.
3 SMB torture tester - winbind struct based protocol
4 Copyright (C) Stefan Metzmacher 2007
5 Copyright (C) Michael Adam 2007
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 3 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, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "pstring.h"
23 #include "torture/torture.h"
24 #include "torture/winbind/proto.h"
25 #include "nsswitch/winbind_client.h"
26 #include "libcli/security/security.h"
27 #include "librpc/gen_ndr/netlogon.h"
28 #include "param/param.h"
29 #include "auth/pam_errors.h"
31 #define DO_STRUCT_REQ_REP_EXT(op,req,rep,expected,strict,warnaction,cmt) do { \
32 NSS_STATUS __got, __expected = (expected); \
33 __got = winbindd_request_response(op, req, rep); \
34 if (__got != __expected) { \
35 const char *__cmt = (cmt); \
36 if (strict) { \
37 torture_result(torture, TORTURE_FAIL, \
38 __location__ ": " __STRING(op) \
39 " returned %d, expected %d%s%s", \
40 __got, __expected, \
41 (__cmt) ? ": " : "", \
42 (__cmt) ? (__cmt) : ""); \
43 return false; \
44 } else { \
45 torture_warning(torture, \
46 __location__ ": " __STRING(op) \
47 " returned %d, expected %d%s%s", \
48 __got, __expected, \
49 (__cmt) ? ": " : "", \
50 (__cmt) ? (__cmt) : ""); \
51 warnaction; \
52 } \
53 } \
54 } while(0)
56 #define DO_STRUCT_REQ_REP(op,req,rep) do { \
57 bool __noop = false; \
58 DO_STRUCT_REQ_REP_EXT(op,req,rep,NSS_STATUS_SUCCESS,true,__noop=true,NULL); \
59 } while (0)
61 static bool torture_winbind_struct_interface_version(struct torture_context *torture)
63 struct winbindd_request req;
64 struct winbindd_response rep;
66 ZERO_STRUCT(req);
67 ZERO_STRUCT(rep);
69 torture_comment(torture, "Running WINBINDD_INTERFACE_VERSION (struct based)\n");
71 DO_STRUCT_REQ_REP(WINBINDD_INTERFACE_VERSION, &req, &rep);
73 torture_assert_int_equal(torture,
74 rep.data.interface_version,
75 WINBIND_INTERFACE_VERSION,
76 "winbind server and client doesn't match");
78 return true;
81 static bool torture_winbind_struct_ping(struct torture_context *torture)
83 struct timeval tv = timeval_current();
84 int timelimit = torture_setting_int(torture, "timelimit", 5);
85 uint32_t total = 0;
87 torture_comment(torture,
88 "Running WINBINDD_PING (struct based) for %d seconds\n",
89 timelimit);
91 while (timeval_elapsed(&tv) < timelimit) {
92 DO_STRUCT_REQ_REP(WINBINDD_PING, NULL, NULL);
93 total++;
96 torture_comment(torture,
97 "%u (%.1f/s) WINBINDD_PING (struct based)\n",
98 total, total / timeval_elapsed(&tv));
100 return true;
104 static char winbind_separator(struct torture_context *torture)
106 struct winbindd_response rep;
108 ZERO_STRUCT(rep);
110 DO_STRUCT_REQ_REP(WINBINDD_INFO, NULL, &rep);
112 return rep.data.info.winbind_separator;
115 static bool torture_winbind_struct_info(struct torture_context *torture)
117 struct winbindd_response rep;
118 const char *separator;
120 ZERO_STRUCT(rep);
122 torture_comment(torture, "Running WINBINDD_INFO (struct based)\n");
124 DO_STRUCT_REQ_REP(WINBINDD_INFO, NULL, &rep);
126 separator = torture_setting_string(torture,
127 "winbindd separator",
128 lp_winbind_separator(global_loadparm));
129 torture_assert_int_equal(torture,
130 rep.data.info.winbind_separator,
131 *separator,
132 "winbind separator doesn't match");
134 torture_comment(torture, "Samba Version '%s'\n",
135 rep.data.info.samba_version);
137 return true;
140 static bool torture_winbind_struct_priv_pipe_dir(struct torture_context *torture)
142 struct winbindd_response rep;
143 const char *default_dir;
144 const char *expected_dir;
145 const char *got_dir;
147 ZERO_STRUCT(rep);
149 torture_comment(torture, "Running WINBINDD_PRIV_PIPE_DIR (struct based)\n");
151 DO_STRUCT_REQ_REP(WINBINDD_PRIV_PIPE_DIR, NULL, &rep);
153 got_dir = (const char *)rep.extra_data.data;
155 torture_assert(torture, got_dir, "NULL WINBINDD_PRIV_PIPE_DIR\n");
157 default_dir = lock_path(torture, global_loadparm,
158 WINBINDD_PRIV_SOCKET_SUBDIR);
159 expected_dir = torture_setting_string(torture,
160 "winbindd private pipe dir",
161 default_dir);
163 torture_assert_str_equal(torture, got_dir, expected_dir,
164 "WINBINDD_PRIV_PIPE_DIR doesn't match");
166 SAFE_FREE(rep.extra_data.data);
167 return true;
170 static bool torture_winbind_struct_netbios_name(struct torture_context *torture)
172 struct winbindd_response rep;
173 const char *expected;
175 ZERO_STRUCT(rep);
177 torture_comment(torture, "Running WINBINDD_NETBIOS_NAME (struct based)\n");
179 DO_STRUCT_REQ_REP(WINBINDD_NETBIOS_NAME, NULL, &rep);
181 expected = torture_setting_string(torture,
182 "winbindd netbios name",
183 lp_netbios_name(global_loadparm));
185 torture_assert_str_equal(torture,
186 rep.data.netbios_name, expected,
187 "winbindd's netbios name doesn't match");
189 return true;
192 static bool get_winbind_domain(struct torture_context *torture, char **domain)
194 struct winbindd_response rep;
196 ZERO_STRUCT(rep);
198 DO_STRUCT_REQ_REP(WINBINDD_DOMAIN_NAME, NULL, &rep);
200 *domain = talloc_strdup(torture, rep.data.domain_name);
201 torture_assert(torture, domain, "talloc error");
203 return true;
206 static bool torture_winbind_struct_domain_name(struct torture_context *torture)
208 const char *expected;
209 char *domain;
211 torture_comment(torture, "Running WINBINDD_DOMAIN_NAME (struct based)\n");
213 expected = torture_setting_string(torture,
214 "winbindd netbios domain",
215 lp_workgroup(global_loadparm));
217 get_winbind_domain(torture, &domain);
219 torture_assert_str_equal(torture, domain, expected,
220 "winbindd's netbios domain doesn't match");
222 return true;
225 static bool torture_winbind_struct_check_machacc(struct torture_context *torture)
227 bool ok;
228 bool strict = torture_setting_bool(torture, "strict mode", false);
229 struct winbindd_response rep;
231 ZERO_STRUCT(rep);
233 torture_comment(torture, "Running WINBINDD_CHECK_MACHACC (struct based)\n");
235 ok = true;
236 DO_STRUCT_REQ_REP_EXT(WINBINDD_CHECK_MACHACC, NULL, &rep,
237 NSS_STATUS_SUCCESS, strict, ok = false,
238 "WINBINDD_CHECK_MACHACC");
240 if (!ok) {
241 torture_assert(torture,
242 strlen(rep.data.auth.nt_status_string)>0,
243 "Failed with empty nt_status_string");
245 torture_warning(torture,"%s:%s:%s:%d\n",
246 nt_errstr(NT_STATUS(rep.data.auth.nt_status)),
247 rep.data.auth.nt_status_string,
248 rep.data.auth.error_string,
249 rep.data.auth.pam_error);
250 return true;
253 torture_assert_ntstatus_ok(torture,
254 NT_STATUS(rep.data.auth.nt_status),
255 "WINBINDD_CHECK_MACHACC ok: nt_status");
257 torture_assert_str_equal(torture,
258 rep.data.auth.nt_status_string,
259 nt_errstr(NT_STATUS_OK),
260 "WINBINDD_CHECK_MACHACC ok:nt_status_string");
262 torture_assert_str_equal(torture,
263 rep.data.auth.error_string,
264 nt_errstr(NT_STATUS_OK),
265 "WINBINDD_CHECK_MACHACC ok: error_string");
267 torture_assert_int_equal(torture,
268 rep.data.auth.pam_error,
269 nt_status_to_pam(NT_STATUS_OK),
270 "WINBINDD_CHECK_MACHACC ok: pam_error");
272 return true;
275 struct torture_trust_domain {
276 const char *netbios_name;
277 const char *dns_name;
278 struct dom_sid *sid;
281 static bool get_trusted_domains(struct torture_context *torture,
282 struct torture_trust_domain **_d)
284 struct winbindd_request req;
285 struct winbindd_response rep;
286 struct torture_trust_domain *d = NULL;
287 uint32_t dcount = 0;
288 fstring line;
289 const char *extra_data;
291 ZERO_STRUCT(req);
292 ZERO_STRUCT(rep);
294 DO_STRUCT_REQ_REP(WINBINDD_LIST_TRUSTDOM, &req, &rep);
296 extra_data = (char *)rep.extra_data.data;
297 torture_assert(torture, extra_data, "NULL trust list");
299 while (next_token(&extra_data, line, "\n", sizeof(fstring))) {
300 char *p, *lp;
302 d = talloc_realloc(torture, d,
303 struct torture_trust_domain,
304 dcount + 2);
305 ZERO_STRUCT(d[dcount+1]);
307 lp = line;
308 p = strchr(lp, '\\');
309 torture_assert(torture, p, "missing 1st '\\' in line");
310 *p = 0;
311 d[dcount].netbios_name = talloc_strdup(d, lp);
312 torture_assert(torture, strlen(d[dcount].netbios_name) > 0,
313 "empty netbios_name");
315 lp = p+1;
316 p = strchr(lp, '\\');
317 torture_assert(torture, p, "missing 2nd '\\' in line");
318 *p = 0;
319 d[dcount].dns_name = talloc_strdup(d, lp);
320 /* it's ok to have an empty dns_name */
322 lp = p+1;
323 d[dcount].sid = dom_sid_parse_talloc(d, lp);
324 torture_assert(torture, d[dcount].sid,
325 "failed to parse sid");
327 dcount++;
329 SAFE_FREE(rep.extra_data.data);
331 torture_assert(torture, dcount >= 2,
332 "The list of trusted domain should contain 2 entries");
334 *_d = d;
335 return true;
338 static bool torture_winbind_struct_list_trustdom(struct torture_context *torture)
340 struct winbindd_request req;
341 struct winbindd_response rep;
342 char *list1;
343 char *list2;
344 bool ok;
345 struct torture_trust_domain *listd = NULL;
346 uint32_t i;
348 torture_comment(torture, "Running WINBINDD_LIST_TRUSTDOM (struct based)\n");
350 ZERO_STRUCT(req);
351 ZERO_STRUCT(rep);
353 req.data.list_all_domains = false;
355 DO_STRUCT_REQ_REP(WINBINDD_LIST_TRUSTDOM, &req, &rep);
357 list1 = (char *)rep.extra_data.data;
358 torture_assert(torture, list1, "NULL trust list");
360 torture_comment(torture, "%s\n", list1);
362 ZERO_STRUCT(req);
363 ZERO_STRUCT(rep);
365 req.data.list_all_domains = true;
367 DO_STRUCT_REQ_REP(WINBINDD_LIST_TRUSTDOM, &req, &rep);
369 list2 = (char *)rep.extra_data.data;
370 torture_assert(torture, list2, "NULL trust list");
373 * The list_all_domains parameter should be ignored
375 torture_assert_str_equal(torture, list2, list1, "list_all_domains not ignored");
377 SAFE_FREE(list1);
378 SAFE_FREE(list2);
380 ok = get_trusted_domains(torture, &listd);
381 torture_assert(torture, ok, "failed to get trust list");
383 for (i=0; listd[i].netbios_name; i++) {
384 if (i == 0) {
385 struct dom_sid *builtin_sid;
387 builtin_sid = dom_sid_parse_talloc(torture, SID_BUILTIN);
389 torture_assert_str_equal(torture,
390 listd[i].netbios_name,
391 NAME_BUILTIN,
392 "first domain should be 'BUILTIN'");
394 torture_assert_str_equal(torture,
395 listd[i].dns_name,
397 "BUILTIN domain should not have a dns name");
399 ok = dom_sid_equal(builtin_sid,
400 listd[i].sid);
401 torture_assert(torture, ok, "BUILTIN domain should have S-1-5-32");
403 continue;
407 * TODO: verify the content of the 2nd and 3rd (in member server mode)
408 * domain entries
412 return true;
415 static bool torture_winbind_struct_domain_info(struct torture_context *torture)
417 bool ok;
418 struct torture_trust_domain *listd = NULL;
419 uint32_t i;
421 torture_comment(torture, "Running WINBINDD_DOMAIN_INFO (struct based)\n");
423 ok = get_trusted_domains(torture, &listd);
424 torture_assert(torture, ok, "failed to get trust list");
426 for (i=0; listd[i].netbios_name; i++) {
427 struct winbindd_request req;
428 struct winbindd_response rep;
429 struct dom_sid *sid;
430 char *flagstr = talloc_strdup(torture," ");
432 ZERO_STRUCT(req);
433 ZERO_STRUCT(rep);
435 fstrcpy(req.domain_name, listd[i].netbios_name);
437 DO_STRUCT_REQ_REP(WINBINDD_DOMAIN_INFO, &req, &rep);
439 torture_assert_str_equal(torture,
440 rep.data.domain_info.name,
441 listd[i].netbios_name,
442 "Netbios domain name doesn't match");
444 torture_assert_str_equal(torture,
445 rep.data.domain_info.alt_name,
446 listd[i].dns_name,
447 "DNS domain name doesn't match");
449 sid = dom_sid_parse_talloc(torture, rep.data.domain_info.sid);
450 torture_assert(torture, sid, "Failed to parse SID");
452 ok = dom_sid_equal(listd[i].sid, sid);
453 torture_assert(torture, ok, "SID's doesn't match");
455 if (rep.data.domain_info.primary) {
456 flagstr = talloc_strdup_append(flagstr, "PR ");
459 if (rep.data.domain_info.active_directory) {
460 torture_assert(torture,
461 strlen(rep.data.domain_info.alt_name)>0,
462 "Active Directory without DNS name");
463 flagstr = talloc_strdup_append(flagstr, "AD ");
466 if (rep.data.domain_info.native_mode) {
467 torture_assert(torture,
468 rep.data.domain_info.active_directory,
469 "Native-Mode, but no Active Directory");
470 flagstr = talloc_strdup_append(flagstr, "NA ");
473 torture_comment(torture, "DOMAIN '%s' => '%s' [%s]\n",
474 rep.data.domain_info.name,
475 rep.data.domain_info.alt_name,
476 flagstr);
479 return true;
482 static bool torture_winbind_struct_getdcname(struct torture_context *torture)
484 bool ok;
485 bool strict = torture_setting_bool(torture, "strict mode", false);
486 struct torture_trust_domain *listd = NULL;
487 uint32_t i;
489 torture_comment(torture, "Running WINBINDD_GETDCNAME (struct based)\n");
491 ok = get_trusted_domains(torture, &listd);
492 torture_assert(torture, ok, "failed to get trust list");
494 for (i=0; listd[i].netbios_name; i++) {
495 struct winbindd_request req;
496 struct winbindd_response rep;
498 ZERO_STRUCT(req);
499 ZERO_STRUCT(rep);
501 fstrcpy(req.domain_name, listd[i].netbios_name);
503 ok = true;
504 DO_STRUCT_REQ_REP_EXT(WINBINDD_GETDCNAME, &req, &rep,
505 NSS_STATUS_SUCCESS,
506 (i <2 || strict), ok = false,
507 talloc_asprintf(torture, "DOMAIN '%s'",
508 req.domain_name));
509 if (!ok) continue;
511 /* TODO: check rep.data.dc_name; */
512 torture_comment(torture, "DOMAIN '%s' => DCNAME '%s'\n",
513 req.domain_name, rep.data.dc_name);
516 return true;
519 static bool torture_winbind_struct_dsgetdcname(struct torture_context *torture)
521 bool ok;
522 bool strict = torture_setting_bool(torture, "strict mode", false);
523 struct torture_trust_domain *listd = NULL;
524 uint32_t i;
525 uint32_t count = 0;
527 torture_comment(torture, "Running WINBINDD_DSGETDCNAME (struct based)\n");
529 ok = get_trusted_domains(torture, &listd);
530 torture_assert(torture, ok, "failed to get trust list");
532 for (i=0; listd[i].netbios_name; i++) {
533 struct winbindd_request req;
534 struct winbindd_response rep;
536 ZERO_STRUCT(req);
537 ZERO_STRUCT(rep);
539 if (strlen(listd[i].dns_name) == 0) continue;
542 * TODO: remove this and let winbindd give no dns name
543 * for NT4 domains
545 if (strcmp(listd[i].dns_name, listd[i].netbios_name) == 0) {
546 continue;
549 fstrcpy(req.domain_name, listd[i].dns_name);
551 /* TODO: test more flag combinations */
552 req.flags = DS_DIRECTORY_SERVICE_REQUIRED;
554 ok = true;
555 DO_STRUCT_REQ_REP_EXT(WINBINDD_DSGETDCNAME, &req, &rep,
556 NSS_STATUS_SUCCESS,
557 strict, ok = false,
558 talloc_asprintf(torture, "DOMAIN '%s'",
559 req.domain_name));
560 if (!ok) continue;
562 /* TODO: check rep.data.dc_name; */
563 torture_comment(torture, "DOMAIN '%s' => DCNAME '%s'\n",
564 req.domain_name, rep.data.dc_name);
566 count++;
569 if (count == 0) {
570 torture_warning(torture, "WINBINDD_DSGETDCNAME"
571 " was not tested with %d non-AD domains",
575 if (strict) {
576 torture_assert(torture, count > 0,
577 "WiNBINDD_DSGETDCNAME was not tested");
580 return true;
583 static bool get_user_list(struct torture_context *torture, char ***users)
585 struct winbindd_request req;
586 struct winbindd_response rep;
587 char **u = NULL;
588 uint32_t count;
589 fstring name;
590 const char *extra_data;
592 ZERO_STRUCT(req);
593 ZERO_STRUCT(rep);
595 DO_STRUCT_REQ_REP(WINBINDD_LIST_USERS, &req, &rep);
597 extra_data = (char *)rep.extra_data.data;
598 torture_assert(torture, extra_data, "NULL extra data");
600 for(count = 0;
601 next_token(&extra_data, name, ",", sizeof(fstring));
602 count++)
604 u = talloc_realloc(torture, u, char *, count + 2);
605 u[count+1] = NULL;
606 u[count] = talloc_strdup(u, name);
609 SAFE_FREE(rep.extra_data.data);
611 *users = u;
612 return true;
615 static bool torture_winbind_struct_list_users(struct torture_context *torture)
617 char **users;
618 uint32_t count;
619 bool ok;
621 torture_comment(torture, "Running WINBINDD_LIST_USERS (struct based)\n");
623 ok = get_user_list(torture, &users);
624 torture_assert(torture, ok, "failed to get group list");
626 for (count = 0; users[count]; count++) { }
628 torture_comment(torture, "got %d users\n", count);
630 return true;
633 static bool get_group_list(struct torture_context *torture, char ***groups)
635 struct winbindd_request req;
636 struct winbindd_response rep;
637 char **g = NULL;
638 uint32_t count;
639 fstring name;
640 const char *extra_data;
642 ZERO_STRUCT(req);
643 ZERO_STRUCT(rep);
645 DO_STRUCT_REQ_REP(WINBINDD_LIST_GROUPS, &req, &rep);
647 extra_data = (char *)rep.extra_data.data;
648 torture_assert(torture, extra_data, "NULL extra data");
650 for(count = 0;
651 next_token(&extra_data, name, ",", sizeof(fstring));
652 count++)
654 g = talloc_realloc(torture, g, char *, count + 2);
655 g[count+1] = NULL;
656 g[count] = talloc_strdup(g, name);
659 SAFE_FREE(rep.extra_data.data);
661 *groups = g;
662 return true;
665 static bool torture_winbind_struct_list_groups(struct torture_context *torture)
667 char **groups;
668 uint32_t count;
669 bool ok;
671 torture_comment(torture, "Running WINBINDD_LIST_GROUPS (struct based)\n");
673 ok = get_group_list(torture, &groups);
674 torture_assert(torture, ok, "failed to get group list");
676 for (count = 0; groups[count]; count++) { }
678 torture_comment(torture, "got %d groups\n", count);
680 return true;
683 struct torture_domain_sequence {
684 const char *netbios_name;
685 uint32_t seq;
688 static bool get_sequence_numbers(struct torture_context *torture,
689 struct torture_domain_sequence **seqs)
691 struct winbindd_request req;
692 struct winbindd_response rep;
693 bool ok;
694 const char *extra_data;
695 fstring line;
696 uint32_t count = 0;
697 struct torture_domain_sequence *s = NULL;
699 ZERO_STRUCT(req);
700 ZERO_STRUCT(rep);
702 DO_STRUCT_REQ_REP(WINBINDD_SHOW_SEQUENCE, &req, &rep);
704 extra_data = (char *)rep.extra_data.data;
705 torture_assert(torture, extra_data, "NULL sequence list");
707 while (next_token(&extra_data, line, "\n", sizeof(fstring))) {
708 char *p, *lp;
709 uint32_t seq;
711 s = talloc_realloc(torture, s, struct torture_domain_sequence,
712 count + 2);
713 ZERO_STRUCT(s[count+1]);
715 lp = line;
716 p = strchr(lp, ' ');
717 torture_assert(torture, p, "invalid line format");
718 *p = 0;
719 s[count].netbios_name = talloc_strdup(s, lp);
721 lp = p+1;
722 torture_assert(torture, strncmp(lp, ": ", 2) == 0,
723 "invalid line format");
724 lp += 2;
725 if (strcmp(lp, "DISCONNECTED") == 0) {
726 seq = (uint32_t)-1;
727 } else {
728 seq = (uint32_t)strtol(lp, &p, 10);
729 torture_assert(torture, (*p == '\0'),
730 "invalid line format");
731 torture_assert(torture, (seq != (uint32_t)-1),
732 "sequence number -1 encountered");
734 s[count].seq = seq;
736 count++;
738 SAFE_FREE(rep.extra_data.data);
740 torture_assert(torture, count >= 2, "The list of domain sequence "
741 "numbers should contain 2 entries");
743 *seqs = s;
744 return true;
747 static bool torture_winbind_struct_show_sequence(struct torture_context *torture)
749 bool ok;
750 uint32_t i;
751 struct torture_trust_domain *domlist = NULL;
752 struct torture_domain_sequence *s = NULL;
754 torture_comment(torture, "Running WINBINDD_SHOW_SEQUENCE (struct based)\n");
756 ok = get_sequence_numbers(torture, &s);
757 torture_assert(torture, ok, "failed to get list of sequence numbers");
759 ok = get_trusted_domains(torture, &domlist);
760 torture_assert(torture, ok, "failed to get trust list");
762 for (i=0; domlist[i].netbios_name; i++) {
763 struct winbindd_request req;
764 struct winbindd_response rep;
765 uint32_t seq;
767 torture_assert(torture, s[i].netbios_name,
768 "more domains recieved in second run");
769 torture_assert_str_equal(torture, domlist[i].netbios_name,
770 s[i].netbios_name,
771 "inconsistent order of domain lists");
773 ZERO_STRUCT(req);
774 ZERO_STRUCT(rep);
775 fstrcpy(req.domain_name, domlist[i].netbios_name);
777 DO_STRUCT_REQ_REP(WINBINDD_SHOW_SEQUENCE, &req, &rep);
779 seq = rep.data.sequence_number;
781 if (i == 0) {
782 torture_assert(torture, (seq != (uint32_t)-1),
783 "BUILTIN domain disconnected");
784 } else if (i == 1) {
785 torture_assert(torture, (seq != (uint32_t)-1),
786 "local domain disconnected");
790 if (seq == (uint32_t)-1) {
791 torture_comment(torture, " * %s : DISCONNECTED\n",
792 req.domain_name);
793 } else {
794 torture_comment(torture, " * %s : %d\n",
795 req.domain_name, seq);
797 torture_assert(torture, (seq >= s[i].seq),
798 "illegal sequence number encountered");
801 return true;
804 static bool torture_winbind_struct_setpwent(struct torture_context *torture)
806 struct winbindd_request req;
807 struct winbindd_response rep;
809 torture_comment(torture, "Running WINBINDD_SETPWENT (struct based)\n");
811 ZERO_STRUCT(req);
812 ZERO_STRUCT(rep);
814 DO_STRUCT_REQ_REP(WINBINDD_SETPWENT, &req, &rep);
816 return true;
819 static bool torture_winbind_struct_getpwent(struct torture_context *torture)
821 struct winbindd_request req;
822 struct winbindd_response rep;
823 struct winbindd_pw *pwent;
825 torture_comment(torture, "Running WINBINDD_GETPWENT (struct based)\n");
827 torture_comment(torture, " - Running WINBINDD_SETPWENT first\n");
828 ZERO_STRUCT(req);
829 ZERO_STRUCT(rep);
830 DO_STRUCT_REQ_REP(WINBINDD_SETPWENT, &req, &rep);
832 torture_comment(torture, " - Running WINBINDD_GETPWENT now\n");
833 ZERO_STRUCT(req);
834 ZERO_STRUCT(rep);
835 req.data.num_entries = 1;
836 DO_STRUCT_REQ_REP(WINBINDD_GETPWENT, &req, &rep);
837 pwent = (struct winbindd_pw *)rep.extra_data.data;
838 torture_assert(torture, (pwent != NULL), "NULL pwent");
839 torture_comment(torture, "name: %s, uid: %d, gid: %d, shell: %s\n",
840 pwent->pw_name, pwent->pw_uid, pwent->pw_gid,
841 pwent->pw_shell);
843 return true;
846 static bool torture_winbind_struct_endpwent(struct torture_context *torture)
848 struct winbindd_request req;
849 struct winbindd_response rep;
851 torture_comment(torture, "Running WINBINDD_ENDPWENT (struct based)\n");
853 ZERO_STRUCT(req);
854 ZERO_STRUCT(rep);
856 DO_STRUCT_REQ_REP(WINBINDD_ENDPWENT, &req, &rep);
858 return true;
861 /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the
862 form DOMAIN/user into a domain and a user */
864 static bool parse_domain_user(struct torture_context *torture,
865 const char *domuser, fstring domain,
866 fstring user)
868 char *p = strchr(domuser, winbind_separator(torture));
869 char *dom;
871 if (!p) {
872 /* Maybe it was a UPN? */
873 if ((p = strchr(domuser, '@')) != NULL) {
874 fstrcpy(domain, "");
875 fstrcpy(user, domuser);
876 return true;
879 fstrcpy(user, domuser);
880 get_winbind_domain(torture, &dom);
881 fstrcpy(domain, dom);
882 return true;
885 fstrcpy(user, p+1);
886 fstrcpy(domain, domuser);
887 domain[PTR_DIFF(p, domuser)] = 0;
888 strupper_m(domain);
890 return true;
893 static bool lookup_name_sid_list(struct torture_context *torture, char **list)
895 uint32_t count;
897 for (count = 0; list[count]; count++) {
898 struct winbindd_request req;
899 struct winbindd_response rep;
900 char *sid;
901 char *name;
903 ZERO_STRUCT(req);
904 ZERO_STRUCT(rep);
906 parse_domain_user(torture, list[count], req.data.name.dom_name,
907 req.data.name.name);
909 DO_STRUCT_REQ_REP(WINBINDD_LOOKUPNAME, &req, &rep);
911 sid = talloc_strdup(torture, rep.data.sid.sid);
913 ZERO_STRUCT(req);
914 ZERO_STRUCT(rep);
916 fstrcpy(req.data.sid, sid);
918 DO_STRUCT_REQ_REP(WINBINDD_LOOKUPSID, &req, &rep);
920 name = talloc_asprintf(torture, "%s%c%s",
921 rep.data.name.dom_name,
922 winbind_separator(torture),
923 rep.data.name.name);
925 torture_assert_casestr_equal(torture, list[count], name,
926 "LOOKUP_SID after LOOKUP_NAME != id");
928 #if 0
929 torture_comment(torture, " %s -> %s -> %s\n", list[count],
930 sid, name);
931 #endif
933 talloc_free(sid);
934 talloc_free(name);
937 return true;
940 static bool name_is_in_list(const char *name, const char **list)
942 uint32_t count;
944 for (count = 0; list[count]; count++) {
945 if (strequal(name, list[count])) {
946 return true;
949 return false;
952 static bool torture_winbind_struct_lookup_name_sid(struct torture_context *torture)
954 struct winbindd_request req;
955 struct winbindd_response rep;
956 const char *invalid_sid = "S-0-0-7";
957 char *domain;
958 const char *invalid_user = "noone";
959 char *invalid_name;
960 bool strict = torture_setting_bool(torture, "strict mode", false);
961 char **users;
962 char **groups;
963 uint32_t count;
964 bool ok;
966 torture_comment(torture, "Running WINBINDD_LOOKUP_NAME_SID (struct based)\n");
968 ok = get_user_list(torture, &users);
969 torture_assert(torture, ok, "failed to retrieve list of users");
970 lookup_name_sid_list(torture, users);
972 ok = get_group_list(torture, &groups);
973 torture_assert(torture, ok, "failed to retrieve list of groups");
974 lookup_name_sid_list(torture, groups);
976 ZERO_STRUCT(req);
977 ZERO_STRUCT(rep);
979 fstrcpy(req.data.sid, invalid_sid);
981 ok = true;
982 DO_STRUCT_REQ_REP_EXT(WINBINDD_LOOKUPSID, &req, &rep,
983 NSS_STATUS_NOTFOUND,
984 strict,
985 ok=false,
986 talloc_asprintf(torture,
987 "invalid sid %s was resolved",
988 invalid_sid));
990 ZERO_STRUCT(req);
991 ZERO_STRUCT(rep);
993 /* try to find an invalid name... */
995 count = 0;
996 get_winbind_domain(torture, &domain);
997 do {
998 count++;
999 invalid_name = talloc_asprintf(torture, "%s\\%s%u",
1000 domain,
1001 invalid_user, count);
1002 } while(name_is_in_list(invalid_name, (const char **)users) ||
1003 name_is_in_list(invalid_name, (const char **)groups));
1005 fstrcpy(req.data.name.dom_name, domain);
1006 fstrcpy(req.data.name.name,
1007 talloc_asprintf(torture, "%s%u", invalid_user,
1008 count));
1010 ok = true;
1011 DO_STRUCT_REQ_REP_EXT(WINBINDD_LOOKUPNAME, &req, &rep,
1012 NSS_STATUS_NOTFOUND,
1013 strict,
1014 ok=false,
1015 talloc_asprintf(torture,
1016 "invalid name %s was resolved",
1017 invalid_name));
1019 talloc_free(users);
1020 talloc_free(groups);
1022 return true;
1025 struct torture_suite *torture_winbind_struct_init(void)
1027 struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "STRUCT");
1029 torture_suite_add_simple_test(suite, "INTERFACE_VERSION", torture_winbind_struct_interface_version);
1030 torture_suite_add_simple_test(suite, "PING", torture_winbind_struct_ping);
1031 torture_suite_add_simple_test(suite, "INFO", torture_winbind_struct_info);
1032 torture_suite_add_simple_test(suite, "PRIV_PIPE_DIR", torture_winbind_struct_priv_pipe_dir);
1033 torture_suite_add_simple_test(suite, "NETBIOS_NAME", torture_winbind_struct_netbios_name);
1034 torture_suite_add_simple_test(suite, "DOMAIN_NAME", torture_winbind_struct_domain_name);
1035 torture_suite_add_simple_test(suite, "CHECK_MACHACC", torture_winbind_struct_check_machacc);
1036 torture_suite_add_simple_test(suite, "LIST_TRUSTDOM", torture_winbind_struct_list_trustdom);
1037 torture_suite_add_simple_test(suite, "DOMAIN_INFO", torture_winbind_struct_domain_info);
1038 torture_suite_add_simple_test(suite, "GETDCNAME", torture_winbind_struct_getdcname);
1039 torture_suite_add_simple_test(suite, "DSGETDCNAME", torture_winbind_struct_dsgetdcname);
1040 torture_suite_add_simple_test(suite, "LIST_USERS", torture_winbind_struct_list_users);
1041 torture_suite_add_simple_test(suite, "LIST_GROUPS", torture_winbind_struct_list_groups);
1042 torture_suite_add_simple_test(suite, "SHOW_SEQUENCE", torture_winbind_struct_show_sequence);
1043 torture_suite_add_simple_test(suite, "SETPWENT", torture_winbind_struct_setpwent);
1044 torture_suite_add_simple_test(suite, "GETPWENT", torture_winbind_struct_getpwent);
1045 torture_suite_add_simple_test(suite, "ENDPWENT", torture_winbind_struct_endpwent);
1046 torture_suite_add_simple_test(suite, "LOOKUP_NAME_SID", torture_winbind_struct_lookup_name_sid);
1048 suite->description = talloc_strdup(suite, "WINBIND - struct based protocol tests");
1050 return suite;