Convert add_sid_to_array() add_sid_to_array_unique() to return NTSTATUS.
[samba.git] / source3 / rpcclient / cmd_samr.c
1 /* 
2    Unix SMB/CIFS implementation.
3    RPC pipe client
4
5    Copyright (C) Andrew Tridgell              1992-2000,
6    Copyright (C) Luke Kenneth Casson Leighton 1996-2000,
7    Copyright (C) Elrond                            2000,
8    Copyright (C) Tim Potter                        2000
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25 #include "rpcclient.h"
26
27 extern DOM_SID domain_sid;
28
29 /****************************************************************************
30  display sam_user_info_7 structure
31  ****************************************************************************/
32 static void display_sam_user_info_7(SAM_USER_INFO_7 *usr)
33 {
34         fstring temp;
35
36         unistr2_to_ascii(temp, &usr->uni_name, sizeof(temp));
37         printf("\tUser Name   :\t%s\n", temp);
38 }
39
40 /****************************************************************************
41  display sam_user_info_9 structure
42  ****************************************************************************/
43 static void display_sam_user_info_9(SAM_USER_INFO_9 *usr)
44 {
45         printf("\tPrimary group RID   :\tox%x\n", usr->rid_group);
46 }
47
48 /****************************************************************************
49  display sam_user_info_16 structure
50  ****************************************************************************/
51 static void display_sam_user_info_16(SAM_USER_INFO_16 *usr)
52 {
53         printf("\tAcct Flags   :\tox%x\n", usr->acb_info);
54 }
55
56 /****************************************************************************
57  display sam_user_info_21 structure
58  ****************************************************************************/
59 static void display_sam_user_info_21(SAM_USER_INFO_21 *usr)
60 {
61         fstring temp;
62
63         unistr2_to_ascii(temp, &usr->uni_user_name, sizeof(temp));
64         printf("\tUser Name   :\t%s\n", temp);
65         
66         unistr2_to_ascii(temp, &usr->uni_full_name, sizeof(temp));
67         printf("\tFull Name   :\t%s\n", temp);
68         
69         unistr2_to_ascii(temp, &usr->uni_home_dir, sizeof(temp));
70         printf("\tHome Drive  :\t%s\n", temp);
71         
72         unistr2_to_ascii(temp, &usr->uni_dir_drive, sizeof(temp));
73         printf("\tDir Drive   :\t%s\n", temp);
74         
75         unistr2_to_ascii(temp, &usr->uni_profile_path, sizeof(temp));
76         printf("\tProfile Path:\t%s\n", temp);
77         
78         unistr2_to_ascii(temp, &usr->uni_logon_script, sizeof(temp));
79         printf("\tLogon Script:\t%s\n", temp);
80         
81         unistr2_to_ascii(temp, &usr->uni_acct_desc, sizeof(temp));
82         printf("\tDescription :\t%s\n", temp);
83         
84         unistr2_to_ascii(temp, &usr->uni_workstations, sizeof(temp));
85         printf("\tWorkstations:\t%s\n", temp);
86         
87         unistr2_to_ascii(temp, &usr->uni_comment, sizeof(temp));
88         printf("\tUnknown Str :\t%s\n", temp);
89         
90         unistr2_to_ascii(temp, &usr->uni_munged_dial, sizeof(temp));
91         printf("\tRemote Dial :\t%s\n", temp);
92         
93         printf("\tLogon Time               :\t%s\n", 
94                http_timestring(nt_time_to_unix(usr->logon_time)));
95         printf("\tLogoff Time              :\t%s\n", 
96                http_timestring(nt_time_to_unix(usr->logoff_time)));
97         printf("\tKickoff Time             :\t%s\n", 
98                http_timestring(nt_time_to_unix(usr->kickoff_time)));
99         printf("\tPassword last set Time   :\t%s\n", 
100                http_timestring(nt_time_to_unix(usr->pass_last_set_time)));
101         printf("\tPassword can change Time :\t%s\n", 
102                http_timestring(nt_time_to_unix(usr->pass_can_change_time)));
103         printf("\tPassword must change Time:\t%s\n", 
104                http_timestring(nt_time_to_unix(usr->pass_must_change_time)));
105         
106         printf("\tunknown_2[0..31]...\n"); /* user passwords? */
107         
108         printf("\tuser_rid :\t0x%x\n"  , usr->user_rid ); /* User ID */
109         printf("\tgroup_rid:\t0x%x\n"  , usr->group_rid); /* Group ID */
110         printf("\tacb_info :\t0x%08x\n", usr->acb_info ); /* Account Control Info */
111         
112         printf("\tfields_present:\t0x%08x\n", usr->fields_present); /* 0x00ff ffff */
113         printf("\tlogon_divs:\t%d\n", usr->logon_divs); /* 0x0000 00a8 which is 168 which is num hrs in a week */
114         printf("\tbad_password_count:\t0x%08x\n", usr->bad_password_count);
115         printf("\tlogon_count:\t0x%08x\n", usr->logon_count);
116         
117         printf("\tpadding1[0..7]...\n");
118         
119         if (usr->ptr_logon_hrs) {
120                 printf("\tlogon_hrs[0..%d]...\n", usr->logon_hrs.len);
121         }
122 }
123
124
125 static void display_password_properties(uint32 password_properties) 
126 {
127         printf("password_properties: 0x%08x\n", password_properties);
128                 
129         if (password_properties & DOMAIN_PASSWORD_COMPLEX)
130                 printf("\tDOMAIN_PASSWORD_COMPLEX\n");
131                         
132         if (password_properties & DOMAIN_PASSWORD_NO_ANON_CHANGE)
133                 printf("\tDOMAIN_PASSWORD_NO_ANON_CHANGE\n");
134                         
135         if (password_properties & DOMAIN_PASSWORD_NO_CLEAR_CHANGE)
136                 printf("\tDOMAIN_PASSWORD_NO_CLEAR_CHANGE\n");
137                         
138         if (password_properties & DOMAIN_LOCKOUT_ADMINS)
139                 printf("\tDOMAIN_LOCKOUT_ADMINS\n");
140                         
141         if (password_properties & DOMAIN_PASSWORD_STORE_CLEARTEXT)
142                 printf("\tDOMAIN_PASSWORD_STORE_CLEARTEXT\n");
143                         
144         if (password_properties & DOMAIN_REFUSE_PASSWORD_CHANGE)
145                 printf("\tDOMAIN_REFUSE_PASSWORD_CHANGE\n");
146 }
147
148 static void display_sam_unk_info_1(SAM_UNK_INFO_1 *info1)
149 {
150         
151         printf("Minimum password length:\t\t\t%d\n", info1->min_length_password);
152         printf("Password uniqueness (remember x passwords):\t%d\n", info1->password_history);
153         display_password_properties(info1->password_properties);
154         printf("password expire in:\t\t\t\t%s\n", display_time(info1->expire));
155         printf("Min password age (allow changing in x days):\t%s\n", display_time(info1->min_passwordage));
156 }
157
158 static void display_sam_unk_info_2(SAM_UNK_INFO_2 *info2)
159 {
160         fstring name;
161
162         unistr2_to_ascii(name, &info2->uni_domain, sizeof(name));
163         printf("Domain:\t\t%s\n", name);
164
165         unistr2_to_ascii(name, &info2->uni_server, sizeof(name));
166         printf("Server:\t\t%s\n", name);
167
168         unistr2_to_ascii(name, &info2->uni_comment, sizeof(name));
169         printf("Comment:\t%s\n", name);
170
171         printf("Total Users:\t%d\n", info2->num_domain_usrs);
172         printf("Total Groups:\t%d\n", info2->num_domain_grps);
173         printf("Total Aliases:\t%d\n", info2->num_local_grps);
174         
175         printf("Sequence No:\t%llu\n", (unsigned long long)info2->seq_num);
176
177         printf("Force Logoff:\t%d\n", (int)nt_time_to_unix_abs(&info2->logout));
178
179         printf("Unknown 4:\t0x%x\n", info2->unknown_4);
180         printf("Server Role:\t%s\n", server_role_str(info2->server_role));
181         printf("Unknown 6:\t0x%x\n", info2->unknown_6);
182 }
183
184 static void display_sam_unk_info_3(SAM_UNK_INFO_3 *info3)
185 {
186         printf("Force Logoff:\t%d\n", (int)nt_time_to_unix_abs(&info3->logout));
187 }
188
189 static void display_sam_unk_info_4(SAM_UNK_INFO_4 *info4)
190 {
191         fstring name;
192
193         unistr2_to_ascii(name, &info4->uni_comment, sizeof(name));
194         printf("Comment:\t%s\n", name);
195 }
196
197 static void display_sam_unk_info_5(SAM_UNK_INFO_5 *info5)
198 {
199         fstring name;
200
201         unistr2_to_ascii(name, &info5->uni_domain, sizeof(name));
202         printf("Domain:\t\t%s\n", name);
203 }
204
205 static void display_sam_unk_info_6(SAM_UNK_INFO_6 *info6)
206 {
207         fstring name;
208
209         unistr2_to_ascii(name, &info6->uni_server, sizeof(name));
210         printf("Server:\t\t%s\n", name);
211 }
212
213 static void display_sam_unk_info_7(SAM_UNK_INFO_7 *info7)
214 {
215         printf("Server Role:\t%s\n", server_role_str(info7->server_role));
216 }
217
218 static void display_sam_unk_info_8(SAM_UNK_INFO_8 *info8)
219 {
220         printf("Sequence No:\t%llu\n", (unsigned long long)info8->seq_num);
221         printf("Domain Create Time:\t%s\n", 
222                 http_timestring(nt_time_to_unix(info8->domain_create_time)));
223 }
224
225 static void display_sam_unk_info_9(SAM_UNK_INFO_9 *info9)
226 {
227         printf("unknown:\t%d (0x%08x)\n", info9->unknown, info9->unknown);
228 }
229
230 static void display_sam_unk_info_12(SAM_UNK_INFO_12 *info12)
231 {
232         printf("Bad password lockout duration:               %s\n", display_time(info12->duration));
233         printf("Reset Lockout after:                         %s\n", display_time(info12->reset_count));
234         printf("Lockout after bad attempts:                  %d\n", info12->bad_attempt_lockout);
235 }
236
237 static void display_sam_unk_info_13(SAM_UNK_INFO_13 *info13)
238 {
239         printf("Sequence No:\t%llu\n", (unsigned long long)info13->seq_num);
240         printf("Domain Create Time:\t%s\n", 
241                 http_timestring(nt_time_to_unix(info13->domain_create_time)));
242         printf("Unknown1:\t%d\n", info13->unknown1);
243         printf("Unknown2:\t%d\n", info13->unknown2);
244
245 }
246
247 static void display_sam_info_1(SAM_ENTRY1 *e1, SAM_STR1 *s1)
248 {
249         fstring tmp;
250
251         printf("index: 0x%x ", e1->user_idx);
252         printf("RID: 0x%x ", e1->rid_user);
253         printf("acb: 0x%x ", e1->acb_info);
254
255         unistr2_to_ascii(tmp, &s1->uni_acct_name, sizeof(tmp));
256         printf("Account: %s\t", tmp);
257
258         unistr2_to_ascii(tmp, &s1->uni_full_name, sizeof(tmp));
259         printf("Name: %s\t", tmp);
260
261         unistr2_to_ascii(tmp, &s1->uni_acct_desc, sizeof(tmp));
262         printf("Desc: %s\n", tmp);
263 }
264
265 static void display_sam_info_2(SAM_ENTRY2 *e2, SAM_STR2 *s2)
266 {
267         fstring tmp;
268
269         printf("index: 0x%x ", e2->user_idx);
270         printf("RID: 0x%x ", e2->rid_user);
271         printf("acb: 0x%x ", e2->acb_info);
272         
273         unistr2_to_ascii(tmp, &s2->uni_srv_name, sizeof(tmp));
274         printf("Account: %s\t", tmp);
275
276         unistr2_to_ascii(tmp, &s2->uni_srv_desc, sizeof(tmp));
277         printf("Name: %s\n", tmp);
278
279 }
280
281 static void display_sam_info_3(SAM_ENTRY3 *e3, SAM_STR3 *s3)
282 {
283         fstring tmp;
284
285         printf("index: 0x%x ", e3->grp_idx);
286         printf("RID: 0x%x ", e3->rid_grp);
287         printf("attr: 0x%x ", e3->attr);
288         
289         unistr2_to_ascii(tmp, &s3->uni_grp_name, sizeof(tmp));
290         printf("Account: %s\t", tmp);
291
292         unistr2_to_ascii(tmp, &s3->uni_grp_desc, sizeof(tmp));
293         printf("Name: %s\n", tmp);
294
295 }
296
297 static void display_sam_info_4(SAM_ENTRY4 *e4, SAM_STR4 *s4)
298 {
299         int i;
300
301         printf("index: %d ", e4->user_idx);
302         
303         printf("Account: ");
304         for (i=0; i<s4->acct_name.str_str_len; i++)
305                 printf("%c", s4->acct_name.buffer[i]);
306         printf("\n");
307
308 }
309
310 static void display_sam_info_5(SAM_ENTRY5 *e5, SAM_STR5 *s5)
311 {
312         int i;
313
314         printf("index: 0x%x ", e5->grp_idx);
315         
316         printf("Account: ");
317         for (i=0; i<s5->grp_name.str_str_len; i++)
318                 printf("%c", s5->grp_name.buffer[i]);
319         printf("\n");
320
321 }
322
323 /****************************************************************************
324  Try samr_connect4 first, then samr_conenct if it fails
325  ****************************************************************************/
326 static NTSTATUS try_samr_connects(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
327                                   uint32 access_mask, POLICY_HND *connect_pol)
328 {
329         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
330         
331         result = rpccli_samr_connect4(cli, mem_ctx, access_mask, connect_pol);
332         if (!NT_STATUS_IS_OK(result)) {
333                 result = rpccli_samr_connect(cli, mem_ctx, access_mask,
334                                           connect_pol);
335         }
336         return result;
337 }
338
339 /**********************************************************************
340  * Query user information 
341  */
342 static NTSTATUS cmd_samr_query_user(struct rpc_pipe_client *cli, 
343                                     TALLOC_CTX *mem_ctx,
344                                     int argc, const char **argv) 
345 {
346         POLICY_HND connect_pol, domain_pol, user_pol;
347         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
348         uint32 info_level = 21;
349         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
350         SAM_USERINFO_CTR *user_ctr;
351         fstring server;
352         uint32 user_rid = 0;
353         
354         if ((argc < 2) || (argc > 4)) {
355                 printf("Usage: %s rid [info level] [access mask] \n", argv[0]);
356                 return NT_STATUS_OK;
357         }
358         
359         sscanf(argv[1], "%i", &user_rid);
360         
361         if (argc > 2)
362                 sscanf(argv[2], "%i", &info_level);
363                 
364         if (argc > 3)
365                 sscanf(argv[3], "%x", &access_mask);
366         
367
368         slprintf(server, sizeof(fstring)-1, "\\\\%s", cli->cli->desthost);
369         strupper_m(server);
370         
371         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
372                                    &connect_pol);
373
374         if (!NT_STATUS_IS_OK(result))
375                 goto done;
376
377         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
378                                       MAXIMUM_ALLOWED_ACCESS,
379                                       &domain_sid, &domain_pol);
380
381         if (!NT_STATUS_IS_OK(result))
382                 goto done;
383
384         result = rpccli_samr_open_user(cli, mem_ctx, &domain_pol,
385                                     access_mask,
386                                     user_rid, &user_pol);
387
388         if (NT_STATUS_EQUAL(result, NT_STATUS_NO_SUCH_USER) &&
389             (user_rid == 0)) {
390
391                 /* Probably this was a user name, try lookupnames */
392                 uint32 num_rids;
393                 uint32 *rids, *types;
394                 
395                 result = rpccli_samr_lookup_names(cli, mem_ctx, &domain_pol,
396                                                   1000, 1, &argv[1],
397                                                   &num_rids, &rids,
398                                                   &types);
399
400                 if (NT_STATUS_IS_OK(result)) {
401                         result = rpccli_samr_open_user(cli, mem_ctx,
402                                                        &domain_pol,
403                                                        access_mask,
404                                                        rids[0], &user_pol);
405                 }
406         }
407
408
409         if (!NT_STATUS_IS_OK(result))
410                 goto done;
411
412         ZERO_STRUCT(user_ctr);
413
414         result = rpccli_samr_query_userinfo(cli, mem_ctx, &user_pol, 
415                                          info_level, &user_ctr);
416
417         if (!NT_STATUS_IS_OK(result))
418                 goto done;
419
420         switch (user_ctr->switch_value) {
421         case 7:
422                 display_sam_user_info_7(user_ctr->info.id7);
423                 break;
424         case 9:
425                 display_sam_user_info_9(user_ctr->info.id9);
426                 break;
427         case 16:
428                 display_sam_user_info_16(user_ctr->info.id16);
429                 break;
430         case 21:
431                 display_sam_user_info_21(user_ctr->info.id21);
432                 break;
433         default:
434                 printf("Unsupported infolevel: %d\n", info_level);
435                 break;
436         }
437
438         rpccli_samr_close(cli, mem_ctx, &user_pol);
439         rpccli_samr_close(cli, mem_ctx, &domain_pol);
440         rpccli_samr_close(cli, mem_ctx, &connect_pol);
441
442 done:
443         return result;
444 }
445
446 /****************************************************************************
447  display group info
448  ****************************************************************************/
449 static void display_group_info1(GROUP_INFO1 *info1)
450 {
451         fstring temp;
452
453         unistr2_to_ascii(temp, &info1->uni_acct_name, sizeof(temp));
454         printf("\tGroup Name:\t%s\n", temp);
455         unistr2_to_ascii(temp, &info1->uni_acct_desc, sizeof(temp));
456         printf("\tDescription:\t%s\n", temp);
457         printf("\tGroup Attribute:%d\n", info1->group_attr);
458         printf("\tNum Members:%d\n", info1->num_members);
459 }
460
461 /****************************************************************************
462  display group info
463  ****************************************************************************/
464 static void display_group_info2(GROUP_INFO2 *info2)
465 {
466         fstring name;
467
468         unistr2_to_ascii(name, &info2->uni_acct_name, sizeof(name));
469         printf("\tGroup Description:%s\n", name);
470 }
471
472
473 /****************************************************************************
474  display group info
475  ****************************************************************************/
476 static void display_group_info3(GROUP_INFO3 *info3)
477 {
478         printf("\tGroup Attribute:%d\n", info3->group_attr);
479 }
480
481
482 /****************************************************************************
483  display group info
484  ****************************************************************************/
485 static void display_group_info4(GROUP_INFO4 *info4)
486 {
487         fstring desc;
488
489         unistr2_to_ascii(desc, &info4->uni_acct_desc, sizeof(desc));
490         printf("\tGroup Description:%s\n", desc);
491 }
492
493 /****************************************************************************
494  display group info
495  ****************************************************************************/
496 static void display_group_info5(GROUP_INFO5 *info5)
497 {
498         fstring temp;
499
500         unistr2_to_ascii(temp, &info5->uni_acct_name, sizeof(temp));
501         printf("\tGroup Name:\t%s\n", temp);
502         unistr2_to_ascii(temp, &info5->uni_acct_desc, sizeof(temp));
503         printf("\tDescription:\t%s\n", temp);
504         printf("\tGroup Attribute:%d\n", info5->group_attr);
505         printf("\tNum Members:%d\n", info5->num_members);
506 }
507
508 /****************************************************************************
509  display sam sync structure
510  ****************************************************************************/
511 static void display_group_info_ctr(GROUP_INFO_CTR *ctr)
512 {
513         switch (ctr->switch_value1) {
514                 case 1:
515                         display_group_info1(&ctr->group.info1);
516                         break;
517                 case 2:
518                         display_group_info2(&ctr->group.info2);
519                         break;
520                 case 3:
521                         display_group_info3(&ctr->group.info3);
522                         break;
523                 case 4:
524                         display_group_info4(&ctr->group.info4);
525                         break;
526                 case 5:
527                         display_group_info5(&ctr->group.info5);
528                         break;
529
530         }
531 }
532
533 /***********************************************************************
534  * Query group information 
535  */
536 static NTSTATUS cmd_samr_query_group(struct rpc_pipe_client *cli, 
537                                      TALLOC_CTX *mem_ctx,
538                                      int argc, const char **argv) 
539 {
540         POLICY_HND connect_pol, domain_pol, group_pol;
541         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
542         uint32 info_level = 1;
543         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
544         GROUP_INFO_CTR *group_ctr;
545         fstring                 server; 
546         uint32 group_rid;
547         
548         if ((argc < 2) || (argc > 4)) {
549                 printf("Usage: %s rid [info level] [access mask]\n", argv[0]);
550                 return NT_STATUS_OK;
551         }
552
553         sscanf(argv[1], "%i", &group_rid);
554         
555         if (argc > 2)
556                 sscanf(argv[2], "%i", &info_level);
557         
558         if (argc > 3)
559                 sscanf(argv[3], "%x", &access_mask);
560
561         slprintf(server, sizeof(fstring)-1, "\\\\%s", cli->cli->desthost);
562         strupper_m(server);
563
564         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
565                                    &connect_pol);
566
567         if (!NT_STATUS_IS_OK(result))
568                 goto done;
569
570         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
571                                       MAXIMUM_ALLOWED_ACCESS,
572                                       &domain_sid, &domain_pol);
573
574         if (!NT_STATUS_IS_OK(result))
575                 goto done;
576
577         result = rpccli_samr_open_group(cli, mem_ctx, &domain_pol,
578                                      access_mask,
579                                      group_rid, &group_pol);
580
581         if (!NT_STATUS_IS_OK(result))
582                 goto done;
583
584         result = rpccli_samr_query_groupinfo(cli, mem_ctx, &group_pol, 
585                                           info_level, &group_ctr);
586         if (!NT_STATUS_IS_OK(result)) {
587                 goto done;
588         }
589
590         display_group_info_ctr(group_ctr);
591
592         rpccli_samr_close(cli, mem_ctx, &group_pol);
593         rpccli_samr_close(cli, mem_ctx, &domain_pol);
594         rpccli_samr_close(cli, mem_ctx, &connect_pol);
595 done:
596         return result;
597 }
598
599 /* Query groups a user is a member of */
600
601 static NTSTATUS cmd_samr_query_usergroups(struct rpc_pipe_client *cli, 
602                                           TALLOC_CTX *mem_ctx,
603                                           int argc, const char **argv) 
604 {
605         POLICY_HND              connect_pol, 
606                                 domain_pol, 
607                                 user_pol;
608         NTSTATUS                result = NT_STATUS_UNSUCCESSFUL;
609         uint32                  num_groups, 
610                                 user_rid;
611         uint32                  access_mask = MAXIMUM_ALLOWED_ACCESS;
612         DOM_GID                 *user_gids;
613         int                     i;
614         fstring                 server;
615         
616         if ((argc < 2) || (argc > 3)) {
617                 printf("Usage: %s rid [access mask]\n", argv[0]);
618                 return NT_STATUS_OK;
619         }
620
621         sscanf(argv[1], "%i", &user_rid);
622         
623         if (argc > 2)
624                 sscanf(argv[2], "%x", &access_mask);
625
626         slprintf(server, sizeof(fstring)-1, "\\\\%s", cli->cli->desthost);
627         strupper_m(server);
628                 
629         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
630                                    &connect_pol);
631
632         if (!NT_STATUS_IS_OK(result))
633                 goto done;
634
635         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
636                                       MAXIMUM_ALLOWED_ACCESS,
637                                       &domain_sid, &domain_pol);
638
639         if (!NT_STATUS_IS_OK(result))
640                 goto done;
641
642         result = rpccli_samr_open_user(cli, mem_ctx, &domain_pol,
643                                     access_mask,
644                                     user_rid, &user_pol);
645
646         if (!NT_STATUS_IS_OK(result))
647                 goto done;
648
649         result = rpccli_samr_query_usergroups(cli, mem_ctx, &user_pol,
650                                            &num_groups, &user_gids);
651
652         if (!NT_STATUS_IS_OK(result))
653                 goto done;
654
655         for (i = 0; i < num_groups; i++) {
656                 printf("\tgroup rid:[0x%x] attr:[0x%x]\n", 
657                        user_gids[i].g_rid, user_gids[i].attr);
658         }
659
660         rpccli_samr_close(cli, mem_ctx, &user_pol);
661         rpccli_samr_close(cli, mem_ctx, &domain_pol);
662         rpccli_samr_close(cli, mem_ctx, &connect_pol);
663  done:
664         return result;
665 }
666
667 /* Query aliases a user is a member of */
668
669 static NTSTATUS cmd_samr_query_useraliases(struct rpc_pipe_client *cli, 
670                                            TALLOC_CTX *mem_ctx,
671                                            int argc, const char **argv) 
672 {
673         POLICY_HND              connect_pol, domain_pol;
674         NTSTATUS                result = NT_STATUS_UNSUCCESSFUL;
675         DOM_SID                *sids;
676         size_t                     num_sids;
677         uint32                  num_aliases, *alias_rids;
678         uint32                  access_mask = MAXIMUM_ALLOWED_ACCESS;
679         int                     i;
680         fstring                 server;
681         DOM_SID2               *sid2;
682
683         if (argc < 3) {
684                 printf("Usage: %s builtin|domain sid1 sid2 ...\n", argv[0]);
685                 return NT_STATUS_INVALID_PARAMETER;
686         }
687
688         sids = NULL;
689         num_sids = 0;
690
691         for (i=2; i<argc; i++) {
692                 DOM_SID tmp_sid;
693                 if (!string_to_sid(&tmp_sid, argv[i])) {
694                         printf("%s is not a legal SID\n", argv[i]);
695                         return NT_STATUS_INVALID_PARAMETER;
696                 }
697                 result = add_sid_to_array(mem_ctx, &tmp_sid, &sids, &num_sids);
698                 if (!NT_STATUS_IS_OK(result)) {
699                         return result;
700                 }
701         }
702
703         if (num_sids) {
704                 sid2 = TALLOC_ARRAY(mem_ctx, DOM_SID2, num_sids);
705                 if (sid2 == NULL)
706                         return NT_STATUS_NO_MEMORY;
707         } else {
708                 sid2 = NULL;
709         }
710
711         for (i=0; i<num_sids; i++) {
712                 sid_copy(&sid2[i].sid, &sids[i]);
713                 sid2[i].num_auths = sid2[i].sid.num_auths;
714         }
715
716         slprintf(server, sizeof(fstring)-1, "\\\\%s", cli->cli->desthost);
717         strupper_m(server);
718                 
719         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
720                                    &connect_pol);
721
722         if (!NT_STATUS_IS_OK(result))
723                 goto done;
724
725         if (StrCaseCmp(argv[1], "domain")==0)
726                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
727                                               access_mask,
728                                               &domain_sid, &domain_pol);
729         else if (StrCaseCmp(argv[1], "builtin")==0)
730                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
731                                               access_mask,
732                                               &global_sid_Builtin,
733                                               &domain_pol);
734         else {
735                 printf("Usage: %s builtin|domain sid1 sid2 ...\n", argv[0]);
736                 return NT_STATUS_INVALID_PARAMETER;
737         }
738
739         if (!NT_STATUS_IS_OK(result))
740                 goto done;
741
742         result = rpccli_samr_query_useraliases(cli, mem_ctx, &domain_pol,
743                                             num_sids, sid2,
744                                             &num_aliases, &alias_rids);
745
746         if (!NT_STATUS_IS_OK(result))
747                 goto done;
748
749         for (i = 0; i < num_aliases; i++) {
750                 printf("\tgroup rid:[0x%x]\n", alias_rids[i]);
751         }
752
753         rpccli_samr_close(cli, mem_ctx, &domain_pol);
754         rpccli_samr_close(cli, mem_ctx, &connect_pol);
755  done:
756         return result;
757 }
758
759 /* Query members of a group */
760
761 static NTSTATUS cmd_samr_query_groupmem(struct rpc_pipe_client *cli, 
762                                         TALLOC_CTX *mem_ctx,
763                                         int argc, const char **argv) 
764 {
765         POLICY_HND connect_pol, domain_pol, group_pol;
766         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
767         uint32 num_members, *group_rids, *group_attrs, group_rid;
768         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
769         int i;
770         fstring                 server;
771         unsigned int old_timeout;
772         
773         if ((argc < 2) || (argc > 3)) {
774                 printf("Usage: %s rid [access mask]\n", argv[0]);
775                 return NT_STATUS_OK;
776         }
777
778         sscanf(argv[1], "%i", &group_rid);
779         
780         if (argc > 2)
781                 sscanf(argv[2], "%x", &access_mask);
782
783         slprintf(server, sizeof(fstring)-1, "\\\\%s", cli->cli->desthost);
784         strupper_m(server);
785
786         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
787                                    &connect_pol);
788
789         if (!NT_STATUS_IS_OK(result))
790                 goto done;
791
792         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
793                                       MAXIMUM_ALLOWED_ACCESS,
794                                       &domain_sid, &domain_pol);
795
796         if (!NT_STATUS_IS_OK(result))
797                 goto done;
798
799         result = rpccli_samr_open_group(cli, mem_ctx, &domain_pol,
800                                      access_mask,
801                                      group_rid, &group_pol);
802
803         if (!NT_STATUS_IS_OK(result))
804                 goto done;
805
806         /* Make sure to wait for our DC's reply */
807         old_timeout = cli_set_timeout(cli->cli, MAX(cli->cli->timeout,30000)); /* 30 seconds. */
808
809         result = rpccli_samr_query_groupmem(cli, mem_ctx, &group_pol,
810                                          &num_members, &group_rids,
811                                          &group_attrs);
812
813         cli_set_timeout(cli->cli, old_timeout);
814
815         if (!NT_STATUS_IS_OK(result))
816                 goto done;
817
818         for (i = 0; i < num_members; i++) {
819                 printf("\trid:[0x%x] attr:[0x%x]\n", group_rids[i],
820                        group_attrs[i]);
821         }
822
823         rpccli_samr_close(cli, mem_ctx, &group_pol);
824         rpccli_samr_close(cli, mem_ctx, &domain_pol);
825         rpccli_samr_close(cli, mem_ctx, &connect_pol);
826  done:
827         return result;
828 }
829
830 /* Enumerate domain users */
831
832 static NTSTATUS cmd_samr_enum_dom_users(struct rpc_pipe_client *cli, 
833                                         TALLOC_CTX *mem_ctx,
834                                         int argc, const char **argv) 
835 {
836         POLICY_HND connect_pol, domain_pol;
837         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
838         uint32 start_idx, size, num_dom_users, i;
839         char **dom_users;
840         uint32 *dom_rids;
841         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
842         uint32 acb_mask = ACB_NORMAL;
843         bool got_connect_pol = False, got_domain_pol = False;
844
845         if ((argc < 1) || (argc > 3)) {
846                 printf("Usage: %s [access_mask] [acb_mask]\n", argv[0]);
847                 return NT_STATUS_OK;
848         }
849         
850         if (argc > 1)
851                 sscanf(argv[1], "%x", &access_mask);
852
853         if (argc > 2)
854                 sscanf(argv[2], "%x", &acb_mask);
855
856         /* Get sam policy handle */
857
858         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
859                                    &connect_pol);
860
861         if (!NT_STATUS_IS_OK(result))
862                 goto done;
863
864         got_connect_pol = True;
865
866         /* Get domain policy handle */
867
868         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
869                                       access_mask,
870                                       &domain_sid, &domain_pol);
871
872         if (!NT_STATUS_IS_OK(result))
873                 goto done;
874
875         got_domain_pol = True;
876
877         /* Enumerate domain users */
878
879         start_idx = 0;
880         size = 0xffff;
881
882         do {
883                 result = rpccli_samr_enum_dom_users(
884                         cli, mem_ctx, &domain_pol, &start_idx, acb_mask,
885                         size, &dom_users, &dom_rids, &num_dom_users);
886
887                 if (NT_STATUS_IS_OK(result) ||
888                     NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES)) {
889
890                         for (i = 0; i < num_dom_users; i++)
891                                printf("user:[%s] rid:[0x%x]\n", 
892                                        dom_users[i], dom_rids[i]);
893                 }
894
895         } while (NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES));
896
897  done:
898         if (got_domain_pol)
899                 rpccli_samr_close(cli, mem_ctx, &domain_pol);
900
901         if (got_connect_pol)
902                 rpccli_samr_close(cli, mem_ctx, &connect_pol);
903
904         return result;
905 }
906
907 /* Enumerate domain groups */
908
909 static NTSTATUS cmd_samr_enum_dom_groups(struct rpc_pipe_client *cli, 
910                                          TALLOC_CTX *mem_ctx,
911                                          int argc, const char **argv) 
912 {
913         POLICY_HND connect_pol, domain_pol;
914         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
915         uint32 start_idx, size, num_dom_groups, i;
916         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
917         struct acct_info *dom_groups;
918         bool got_connect_pol = False, got_domain_pol = False;
919
920         if ((argc < 1) || (argc > 2)) {
921                 printf("Usage: %s [access_mask]\n", argv[0]);
922                 return NT_STATUS_OK;
923         }
924         
925         if (argc > 1)
926                 sscanf(argv[1], "%x", &access_mask);
927
928         /* Get sam policy handle */
929
930         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
931                                    &connect_pol);
932
933         if (!NT_STATUS_IS_OK(result))
934                 goto done;
935
936         got_connect_pol = True;
937
938         /* Get domain policy handle */
939
940         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
941                                       access_mask,
942                                       &domain_sid, &domain_pol);
943
944         if (!NT_STATUS_IS_OK(result))
945                 goto done;
946
947         got_domain_pol = True;
948
949         /* Enumerate domain groups */
950
951         start_idx = 0;
952         size = 0xffff;
953
954         do {
955                 result = rpccli_samr_enum_dom_groups(
956                         cli, mem_ctx, &domain_pol, &start_idx, size,
957                         &dom_groups, &num_dom_groups);
958
959                 if (NT_STATUS_IS_OK(result) ||
960                     NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES)) {
961
962                         for (i = 0; i < num_dom_groups; i++)
963                                 printf("group:[%s] rid:[0x%x]\n", 
964                                        dom_groups[i].acct_name,
965                                        dom_groups[i].rid);
966                 }
967
968         } while (NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES));
969
970  done:
971         if (got_domain_pol)
972                 rpccli_samr_close(cli, mem_ctx, &domain_pol);
973
974         if (got_connect_pol)
975                 rpccli_samr_close(cli, mem_ctx, &connect_pol);
976
977         return result;
978 }
979
980 /* Enumerate alias groups */
981
982 static NTSTATUS cmd_samr_enum_als_groups(struct rpc_pipe_client *cli, 
983                                          TALLOC_CTX *mem_ctx,
984                                          int argc, const char **argv) 
985 {
986         POLICY_HND connect_pol, domain_pol;
987         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
988         uint32 start_idx, size, num_als_groups, i;
989         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
990         struct acct_info *als_groups;
991         bool got_connect_pol = False, got_domain_pol = False;
992
993         if ((argc < 2) || (argc > 3)) {
994                 printf("Usage: %s builtin|domain [access mask]\n", argv[0]);
995                 return NT_STATUS_OK;
996         }
997         
998         if (argc > 2)
999                 sscanf(argv[2], "%x", &access_mask);
1000
1001         /* Get sam policy handle */
1002
1003         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1004                                    &connect_pol);
1005
1006         if (!NT_STATUS_IS_OK(result))
1007                 goto done;
1008
1009         got_connect_pol = True;
1010
1011         /* Get domain policy handle */
1012
1013         if (StrCaseCmp(argv[1], "domain")==0)
1014                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1015                                               access_mask,
1016                                               &domain_sid, &domain_pol);
1017         else if (StrCaseCmp(argv[1], "builtin")==0)
1018                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1019                                               access_mask,
1020                                               &global_sid_Builtin, &domain_pol);
1021         else
1022                 return NT_STATUS_OK;
1023
1024         if (!NT_STATUS_IS_OK(result))
1025                 goto done;
1026
1027         got_domain_pol = True;
1028
1029         /* Enumerate alias groups */
1030
1031         start_idx = 0;
1032         size = 0xffff;          /* Number of groups to retrieve */
1033
1034         do {
1035                 result = rpccli_samr_enum_als_groups(
1036                         cli, mem_ctx, &domain_pol, &start_idx, size,
1037                         &als_groups, &num_als_groups);
1038
1039                 if (NT_STATUS_IS_OK(result) ||
1040                     NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES)) {
1041
1042                         for (i = 0; i < num_als_groups; i++)
1043                                 printf("group:[%s] rid:[0x%x]\n", 
1044                                        als_groups[i].acct_name,
1045                                        als_groups[i].rid);
1046                 }
1047         } while (NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES));
1048
1049  done:
1050         if (got_domain_pol)
1051                 rpccli_samr_close(cli, mem_ctx, &domain_pol);
1052         
1053         if (got_connect_pol)
1054                 rpccli_samr_close(cli, mem_ctx, &connect_pol);
1055         
1056         return result;
1057 }
1058
1059 /* Query alias membership */
1060
1061 static NTSTATUS cmd_samr_query_aliasmem(struct rpc_pipe_client *cli, 
1062                                         TALLOC_CTX *mem_ctx,
1063                                         int argc, const char **argv) 
1064 {
1065         POLICY_HND connect_pol, domain_pol, alias_pol;
1066         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1067         uint32 alias_rid, num_members, i;
1068         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
1069         DOM_SID *alias_sids;
1070
1071         if ((argc < 3) || (argc > 4)) {
1072                 printf("Usage: %s builtin|domain rid [access mask]\n", argv[0]);
1073                 return NT_STATUS_OK;
1074         }
1075
1076         sscanf(argv[2], "%i", &alias_rid);
1077         
1078         if (argc > 3)
1079                 sscanf(argv[3], "%x", &access_mask);
1080
1081         /* Open SAMR handle */
1082
1083         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1084                                    &connect_pol);
1085
1086         if (!NT_STATUS_IS_OK(result))
1087                 goto done;
1088
1089         /* Open handle on domain */
1090         
1091         if (StrCaseCmp(argv[1], "domain")==0)
1092                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1093                                               MAXIMUM_ALLOWED_ACCESS,
1094                                               &domain_sid, &domain_pol);
1095         else if (StrCaseCmp(argv[1], "builtin")==0)
1096                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1097                                               MAXIMUM_ALLOWED_ACCESS,
1098                                               &global_sid_Builtin, &domain_pol);
1099         else
1100                 return NT_STATUS_OK;
1101
1102         if (!NT_STATUS_IS_OK(result))
1103                 goto done;
1104
1105         /* Open handle on alias */
1106
1107         result = rpccli_samr_open_alias(cli, mem_ctx, &domain_pol,
1108                                      access_mask,
1109                                      alias_rid, &alias_pol);
1110         if (!NT_STATUS_IS_OK(result))
1111                 goto done;
1112
1113         result = rpccli_samr_query_aliasmem(cli, mem_ctx, &alias_pol,
1114                                          &num_members, &alias_sids);
1115
1116         if (!NT_STATUS_IS_OK(result))
1117                 goto done;
1118
1119         for (i = 0; i < num_members; i++) {
1120                 fstring sid_str;
1121
1122                 sid_to_fstring(sid_str, &alias_sids[i]);
1123                 printf("\tsid:[%s]\n", sid_str);
1124         }
1125
1126         rpccli_samr_close(cli, mem_ctx, &alias_pol);
1127         rpccli_samr_close(cli, mem_ctx, &domain_pol);
1128         rpccli_samr_close(cli, mem_ctx, &connect_pol);
1129  done:
1130         return result;
1131 }
1132
1133 /* Query delete an alias membership */
1134
1135 static NTSTATUS cmd_samr_delete_alias(struct rpc_pipe_client *cli, 
1136                                       TALLOC_CTX *mem_ctx,
1137                                       int argc, const char **argv) 
1138 {
1139         POLICY_HND connect_pol, domain_pol, alias_pol;
1140         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1141         uint32 alias_rid;
1142         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
1143
1144         if (argc != 3) {
1145                 printf("Usage: %s builtin|domain [rid|name]\n", argv[0]);
1146                 return NT_STATUS_OK;
1147         }
1148
1149         alias_rid = strtoul(argv[2], NULL, 10);
1150         
1151         /* Open SAMR handle */
1152
1153         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1154                                    &connect_pol);
1155
1156         if (!NT_STATUS_IS_OK(result))
1157                 goto done;
1158
1159         /* Open handle on domain */
1160         
1161         if (StrCaseCmp(argv[1], "domain")==0)
1162                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1163                                               MAXIMUM_ALLOWED_ACCESS,
1164                                               &domain_sid, &domain_pol);
1165         else if (StrCaseCmp(argv[1], "builtin")==0)
1166                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1167                                               MAXIMUM_ALLOWED_ACCESS,
1168                                               &global_sid_Builtin, &domain_pol);
1169         else
1170                 return NT_STATUS_INVALID_PARAMETER;
1171
1172         if (!NT_STATUS_IS_OK(result))
1173                 goto done;
1174
1175         /* Open handle on alias */
1176
1177         result = rpccli_samr_open_alias(cli, mem_ctx, &domain_pol,
1178                                      access_mask,
1179                                      alias_rid, &alias_pol);
1180         if (!NT_STATUS_IS_OK(result) && (alias_rid == 0)) {
1181                 /* Probably this was a user name, try lookupnames */
1182                 uint32 num_rids;
1183                 uint32 *rids, *types;
1184                 
1185                 result = rpccli_samr_lookup_names(cli, mem_ctx, &domain_pol,
1186                                                   1000, 1, &argv[2],
1187                                                   &num_rids, &rids,
1188                                                   &types);
1189
1190                 if (NT_STATUS_IS_OK(result)) {
1191                         result = rpccli_samr_open_alias(cli, mem_ctx,
1192                                                        &domain_pol,
1193                                                        access_mask,
1194                                                        rids[0], &alias_pol);
1195                 }
1196         }
1197
1198         result = rpccli_samr_delete_dom_alias(cli, mem_ctx, &alias_pol);
1199
1200         if (!NT_STATUS_IS_OK(result))
1201                 goto done;
1202
1203         rpccli_samr_close(cli, mem_ctx, &domain_pol);
1204         rpccli_samr_close(cli, mem_ctx, &connect_pol);
1205  done:
1206         return result;
1207 }
1208
1209 /* Query display info */
1210
1211 static NTSTATUS cmd_samr_query_dispinfo(struct rpc_pipe_client *cli, 
1212                                         TALLOC_CTX *mem_ctx,
1213                                         int argc, const char **argv) 
1214 {
1215         POLICY_HND connect_pol, domain_pol;
1216         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1217         uint32 start_idx=0, max_entries=250, max_size = 0xffff, num_entries, i;
1218         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
1219         uint32 info_level = 1;
1220         SAM_DISPINFO_CTR ctr;
1221         SAM_DISPINFO_1 info1;
1222         SAM_DISPINFO_2 info2;
1223         SAM_DISPINFO_3 info3;
1224         SAM_DISPINFO_4 info4;
1225         SAM_DISPINFO_5 info5;
1226         int loop_count = 0;
1227         bool got_params = False; /* Use get_query_dispinfo_params() or not? */
1228
1229         if (argc > 6) {
1230                 printf("Usage: %s [info level] [start index] [max entries] [max size] [access mask]\n", argv[0]);
1231                 return NT_STATUS_OK;
1232         }
1233
1234         if (argc >= 2)
1235                 sscanf(argv[1], "%i", &info_level);
1236         
1237         if (argc >= 3)
1238                 sscanf(argv[2], "%i", &start_idx);
1239         
1240         if (argc >= 4) {
1241                 sscanf(argv[3], "%i", &max_entries);
1242                 got_params = True;
1243         }
1244         
1245         if (argc >= 5) {
1246                 sscanf(argv[4], "%i", &max_size);
1247                 got_params = True;
1248         }
1249         
1250         if (argc >= 6)
1251                 sscanf(argv[5], "%x", &access_mask);
1252
1253         /* Get sam policy handle */
1254
1255         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1256                                    &connect_pol);
1257
1258         if (!NT_STATUS_IS_OK(result))
1259                 goto done;
1260
1261         /* Get domain policy handle */
1262
1263         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1264                                       access_mask, 
1265                                       &domain_sid, &domain_pol);
1266
1267         if (!NT_STATUS_IS_OK(result))
1268                 goto done;
1269
1270         /* Query display info */
1271
1272         ZERO_STRUCT(ctr);
1273         ZERO_STRUCT(info1);
1274         
1275         switch (info_level) {
1276         case 1:
1277                 ZERO_STRUCT(info1);
1278                 ctr.sam.info1 = &info1;
1279                 break;
1280         case 2:
1281                 ZERO_STRUCT(info2);
1282                 ctr.sam.info2 = &info2;
1283                 break;
1284         case 3:
1285                 ZERO_STRUCT(info3);
1286                 ctr.sam.info3 = &info3;
1287                 break;
1288         case 4:
1289                 ZERO_STRUCT(info4);
1290                 ctr.sam.info4 = &info4;
1291                 break;
1292         case 5:
1293                 ZERO_STRUCT(info5);
1294                 ctr.sam.info5 = &info5;
1295                 break;
1296         }
1297
1298
1299         do {
1300
1301                 if (!got_params)
1302                         get_query_dispinfo_params(
1303                                 loop_count, &max_entries, &max_size);
1304                 
1305                 result = rpccli_samr_query_dispinfo(cli, mem_ctx, &domain_pol,
1306                                                  &start_idx, info_level,
1307                                                  &num_entries, max_entries, 
1308                                                  max_size, &ctr);
1309
1310                 loop_count++;
1311
1312                 if (NT_STATUS_IS_ERR(result))
1313                         break;
1314
1315                 if (num_entries == 0) 
1316                         break;
1317
1318                 for (i = 0; i < num_entries; i++) {
1319                         switch (info_level) {
1320                         case 1:
1321                                 display_sam_info_1(&ctr.sam.info1->sam[i], &ctr.sam.info1->str[i]);
1322                                 break;
1323                         case 2:
1324                                 display_sam_info_2(&ctr.sam.info2->sam[i], &ctr.sam.info2->str[i]);
1325                                 break;
1326                         case 3:
1327                                 display_sam_info_3(&ctr.sam.info3->sam[i], &ctr.sam.info3->str[i]);
1328                                 break;
1329                         case 4:
1330                                 display_sam_info_4(&ctr.sam.info4->sam[i], &ctr.sam.info4->str[i]);
1331                                 break;
1332                         case 5:
1333                                 display_sam_info_5(&ctr.sam.info5->sam[i], &ctr.sam.info5->str[i]);
1334                                 break;
1335                         }
1336                 }
1337         } while ( NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1338
1339         rpccli_samr_close(cli, mem_ctx, &domain_pol);
1340         rpccli_samr_close(cli, mem_ctx, &connect_pol);
1341  done:
1342         return result;
1343 }
1344
1345 /* Query domain info */
1346
1347 static NTSTATUS cmd_samr_query_dominfo(struct rpc_pipe_client *cli, 
1348                                        TALLOC_CTX *mem_ctx,
1349                                        int argc, const char **argv) 
1350 {
1351         POLICY_HND connect_pol, domain_pol;
1352         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1353         uint32 switch_level = 2;
1354         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
1355         SAM_UNK_CTR ctr;
1356
1357         if (argc > 3) {
1358                 printf("Usage: %s [info level] [access mask]\n", argv[0]);
1359                 return NT_STATUS_OK;
1360         }
1361
1362         if (argc > 1)
1363                 sscanf(argv[1], "%i", &switch_level);
1364         
1365         if (argc > 2)
1366                 sscanf(argv[2], "%x", &access_mask);
1367
1368         /* Get sam policy handle */
1369
1370         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1371                                    &connect_pol);
1372
1373         if (!NT_STATUS_IS_OK(result))
1374                 goto done;
1375
1376         /* Get domain policy handle */
1377
1378         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1379                                       access_mask,
1380                                       &domain_sid, &domain_pol);
1381
1382         if (!NT_STATUS_IS_OK(result))
1383                 goto done;
1384
1385         /* Query domain info */
1386
1387         result = rpccli_samr_query_dom_info(cli, mem_ctx, &domain_pol,
1388                                          switch_level, &ctr);
1389
1390         if (!NT_STATUS_IS_OK(result))
1391                 goto done;
1392
1393         /* Display domain info */
1394
1395         switch (switch_level) {
1396         case 1:
1397                 display_sam_unk_info_1(&ctr.info.inf1);
1398                 break;
1399         case 2:
1400                 display_sam_unk_info_2(&ctr.info.inf2);
1401                 break;
1402         case 3:
1403                 display_sam_unk_info_3(&ctr.info.inf3);
1404                 break;
1405         case 4:
1406                 display_sam_unk_info_4(&ctr.info.inf4);
1407                 break;
1408         case 5:
1409                 display_sam_unk_info_5(&ctr.info.inf5);
1410                 break;
1411         case 6:
1412                 display_sam_unk_info_6(&ctr.info.inf6);
1413                 break;
1414         case 7:
1415                 display_sam_unk_info_7(&ctr.info.inf7);
1416                 break;
1417         case 8:
1418                 display_sam_unk_info_8(&ctr.info.inf8);
1419                 break;
1420         case 9:
1421                 display_sam_unk_info_9(&ctr.info.inf9);
1422                 break;
1423         case 12:
1424                 display_sam_unk_info_12(&ctr.info.inf12);
1425                 break;
1426         case 13:
1427                 display_sam_unk_info_13(&ctr.info.inf13);
1428                 break;
1429
1430         default:
1431                 printf("cannot display domain info for switch value %d\n",
1432                        switch_level);
1433                 break;
1434         }
1435
1436  done:
1437  
1438         rpccli_samr_close(cli, mem_ctx, &domain_pol);
1439         rpccli_samr_close(cli, mem_ctx, &connect_pol);
1440         return result;
1441 }
1442
1443 /* Create domain user */
1444
1445 static NTSTATUS cmd_samr_create_dom_user(struct rpc_pipe_client *cli, 
1446                                          TALLOC_CTX *mem_ctx,
1447                                          int argc, const char **argv) 
1448 {
1449         POLICY_HND connect_pol, domain_pol, user_pol;
1450         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1451         const char *acct_name;
1452         uint32 acb_info;
1453         uint32 user_rid;
1454         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
1455
1456         if ((argc < 2) || (argc > 3)) {
1457                 printf("Usage: %s username [access mask]\n", argv[0]);
1458                 return NT_STATUS_OK;
1459         }
1460
1461         acct_name = argv[1];
1462         
1463         if (argc > 2)
1464                 sscanf(argv[2], "%x", &access_mask);
1465
1466         /* Get sam policy handle */
1467
1468         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1469                                    &connect_pol);
1470
1471         if (!NT_STATUS_IS_OK(result))
1472                 goto done;
1473
1474         /* Get domain policy handle */
1475
1476         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1477                                       access_mask,
1478                                       &domain_sid, &domain_pol);
1479
1480         if (!NT_STATUS_IS_OK(result))
1481                 goto done;
1482
1483         /* Create domain user */
1484
1485         acb_info = ACB_NORMAL;
1486         access_mask = 0xe005000b;
1487
1488         result = rpccli_samr_create_dom_user(cli, mem_ctx, &domain_pol,
1489                                           acct_name, acb_info, access_mask,
1490                                           &user_pol, &user_rid);
1491
1492         if (!NT_STATUS_IS_OK(result))
1493                 goto done;
1494
1495         result = rpccli_samr_close(cli, mem_ctx, &user_pol);
1496         if (!NT_STATUS_IS_OK(result)) goto done;
1497
1498         result = rpccli_samr_close(cli, mem_ctx, &domain_pol);
1499         if (!NT_STATUS_IS_OK(result)) goto done;
1500
1501         result = rpccli_samr_close(cli, mem_ctx, &connect_pol);
1502         if (!NT_STATUS_IS_OK(result)) goto done;
1503
1504  done:
1505         return result;
1506 }
1507
1508 /* Create domain group */
1509
1510 static NTSTATUS cmd_samr_create_dom_group(struct rpc_pipe_client *cli, 
1511                                           TALLOC_CTX *mem_ctx,
1512                                           int argc, const char **argv) 
1513 {
1514         POLICY_HND connect_pol, domain_pol, group_pol;
1515         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1516         const char *grp_name;
1517         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
1518
1519         if ((argc < 2) || (argc > 3)) {
1520                 printf("Usage: %s groupname [access mask]\n", argv[0]);
1521                 return NT_STATUS_OK;
1522         }
1523
1524         grp_name = argv[1];
1525         
1526         if (argc > 2)
1527                 sscanf(argv[2], "%x", &access_mask);
1528
1529         /* Get sam policy handle */
1530
1531         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1532                                    &connect_pol);
1533
1534         if (!NT_STATUS_IS_OK(result))
1535                 goto done;
1536
1537         /* Get domain policy handle */
1538
1539         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1540                                       access_mask,
1541                                       &domain_sid, &domain_pol);
1542
1543         if (!NT_STATUS_IS_OK(result))
1544                 goto done;
1545
1546         /* Create domain user */
1547
1548         result = rpccli_samr_create_dom_group(cli, mem_ctx, &domain_pol,
1549                                            grp_name, MAXIMUM_ALLOWED_ACCESS,
1550                                            &group_pol);
1551
1552         if (!NT_STATUS_IS_OK(result))
1553                 goto done;
1554
1555         result = rpccli_samr_close(cli, mem_ctx, &group_pol);
1556         if (!NT_STATUS_IS_OK(result)) goto done;
1557
1558         result = rpccli_samr_close(cli, mem_ctx, &domain_pol);
1559         if (!NT_STATUS_IS_OK(result)) goto done;
1560
1561         result = rpccli_samr_close(cli, mem_ctx, &connect_pol);
1562         if (!NT_STATUS_IS_OK(result)) goto done;
1563
1564  done:
1565         return result;
1566 }
1567
1568 /* Create domain alias */
1569
1570 static NTSTATUS cmd_samr_create_dom_alias(struct rpc_pipe_client *cli, 
1571                                           TALLOC_CTX *mem_ctx,
1572                                           int argc, const char **argv) 
1573 {
1574         POLICY_HND connect_pol, domain_pol, alias_pol;
1575         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1576         const char *alias_name;
1577         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
1578
1579         if ((argc < 2) || (argc > 3)) {
1580                 printf("Usage: %s aliasname [access mask]\n", argv[0]);
1581                 return NT_STATUS_OK;
1582         }
1583
1584         alias_name = argv[1];
1585         
1586         if (argc > 2)
1587                 sscanf(argv[2], "%x", &access_mask);
1588
1589         /* Get sam policy handle */
1590
1591         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1592                                    &connect_pol);
1593
1594         if (!NT_STATUS_IS_OK(result))
1595                 goto done;
1596
1597         /* Get domain policy handle */
1598
1599         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1600                                          access_mask,
1601                                          &domain_sid, &domain_pol);
1602
1603         if (!NT_STATUS_IS_OK(result))
1604                 goto done;
1605
1606         /* Create domain user */
1607
1608         result = rpccli_samr_create_dom_alias(cli, mem_ctx, &domain_pol,
1609                                               alias_name, &alias_pol);
1610
1611         if (!NT_STATUS_IS_OK(result))
1612                 goto done;
1613
1614         result = rpccli_samr_close(cli, mem_ctx, &alias_pol);
1615         if (!NT_STATUS_IS_OK(result)) goto done;
1616
1617         result = rpccli_samr_close(cli, mem_ctx, &domain_pol);
1618         if (!NT_STATUS_IS_OK(result)) goto done;
1619
1620         result = rpccli_samr_close(cli, mem_ctx, &connect_pol);
1621         if (!NT_STATUS_IS_OK(result)) goto done;
1622
1623  done:
1624         return result;
1625 }
1626
1627 /* Lookup sam names */
1628
1629 static NTSTATUS cmd_samr_lookup_names(struct rpc_pipe_client *cli, 
1630                                       TALLOC_CTX *mem_ctx,
1631                                       int argc, const char **argv) 
1632 {
1633         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1634         POLICY_HND connect_pol, domain_pol;
1635         uint32 flags = 0x000003e8; /* Unknown */
1636         uint32 num_rids, num_names, *name_types, *rids;
1637         const char **names;
1638         int i;
1639
1640         if (argc < 3) {
1641                 printf("Usage: %s  domain|builtin name1 [name2 [name3] [...]]\n", argv[0]);
1642                 printf("check on the domain SID: S-1-5-21-x-y-z\n");
1643                 printf("or check on the builtin SID: S-1-5-32\n");
1644                 return NT_STATUS_OK;
1645         }
1646
1647         /* Get sam policy and domain handles */
1648
1649         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1650                                    &connect_pol);
1651
1652         if (!NT_STATUS_IS_OK(result))
1653                 goto done;
1654
1655         if (StrCaseCmp(argv[1], "domain")==0)
1656                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1657                                               MAXIMUM_ALLOWED_ACCESS,
1658                                               &domain_sid, &domain_pol);
1659         else if (StrCaseCmp(argv[1], "builtin")==0)
1660                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1661                                               MAXIMUM_ALLOWED_ACCESS,
1662                                               &global_sid_Builtin, &domain_pol);
1663         else
1664                 return NT_STATUS_OK;
1665
1666         if (!NT_STATUS_IS_OK(result))
1667                 goto done;
1668
1669         /* Look up names */
1670
1671         num_names = argc - 2;
1672
1673         if ((names = TALLOC_ARRAY(mem_ctx, const char *, num_names)) == NULL) {
1674                 rpccli_samr_close(cli, mem_ctx, &domain_pol);
1675                 rpccli_samr_close(cli, mem_ctx, &connect_pol);
1676                 result = NT_STATUS_NO_MEMORY;
1677                 goto done;
1678         }
1679
1680         for (i = 0; i < num_names; i++)
1681                 names[i] = argv[i + 2];
1682
1683         result = rpccli_samr_lookup_names(cli, mem_ctx, &domain_pol,
1684                                        flags, num_names, names,
1685                                        &num_rids, &rids, &name_types);
1686
1687         if (!NT_STATUS_IS_OK(result))
1688                 goto done;
1689
1690         /* Display results */
1691
1692         for (i = 0; i < num_names; i++)
1693                 printf("name %s: 0x%x (%d)\n", names[i], rids[i], 
1694                        name_types[i]);
1695
1696         rpccli_samr_close(cli, mem_ctx, &domain_pol);
1697         rpccli_samr_close(cli, mem_ctx, &connect_pol);
1698  done:
1699         return result;
1700 }
1701
1702 /* Lookup sam rids */
1703
1704 static NTSTATUS cmd_samr_lookup_rids(struct rpc_pipe_client *cli, 
1705                                      TALLOC_CTX *mem_ctx,
1706                                      int argc, const char **argv) 
1707 {
1708         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1709         POLICY_HND connect_pol, domain_pol;
1710         uint32 num_rids, num_names, *rids, *name_types;
1711         char **names;
1712         int i;
1713
1714         if (argc < 3) {
1715                 printf("Usage: %s domain|builtin rid1 [rid2 [rid3] [...]]\n", argv[0]);
1716                 return NT_STATUS_OK;
1717         }
1718
1719         /* Get sam policy and domain handles */
1720
1721         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1722                                    &connect_pol);
1723
1724         if (!NT_STATUS_IS_OK(result))
1725                 goto done;
1726
1727         if (StrCaseCmp(argv[1], "domain")==0)
1728                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1729                                               MAXIMUM_ALLOWED_ACCESS,
1730                                               &domain_sid, &domain_pol);
1731         else if (StrCaseCmp(argv[1], "builtin")==0)
1732                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1733                                               MAXIMUM_ALLOWED_ACCESS,
1734                                               &global_sid_Builtin, &domain_pol);
1735         else
1736                 return NT_STATUS_OK;
1737
1738         if (!NT_STATUS_IS_OK(result))
1739                 goto done;
1740
1741         /* Look up rids */
1742
1743         num_rids = argc - 2;
1744
1745         if ((rids = TALLOC_ARRAY(mem_ctx, uint32, num_rids)) == NULL) {
1746                 rpccli_samr_close(cli, mem_ctx, &domain_pol);
1747                 rpccli_samr_close(cli, mem_ctx, &connect_pol);
1748                 result = NT_STATUS_NO_MEMORY;
1749                 goto done;
1750         }
1751
1752         for (i = 0; i < argc - 2; i++)
1753                 sscanf(argv[i + 2], "%i", &rids[i]);
1754
1755         result = rpccli_samr_lookup_rids(cli, mem_ctx, &domain_pol, num_rids, rids,
1756                                       &num_names, &names, &name_types);
1757
1758         if (!NT_STATUS_IS_OK(result) &&
1759             !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED))
1760                 goto done;
1761
1762         /* Display results */
1763
1764         for (i = 0; i < num_names; i++)
1765                 printf("rid 0x%x: %s (%d)\n", rids[i], names[i], name_types[i]);
1766
1767         rpccli_samr_close(cli, mem_ctx, &domain_pol);
1768         rpccli_samr_close(cli, mem_ctx, &connect_pol);
1769  done:
1770         return result;
1771 }
1772
1773 /* Delete domain group */
1774
1775 static NTSTATUS cmd_samr_delete_dom_group(struct rpc_pipe_client *cli, 
1776                                          TALLOC_CTX *mem_ctx,
1777                                          int argc, const char **argv) 
1778 {
1779         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1780         POLICY_HND connect_pol, domain_pol, group_pol;
1781         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
1782
1783         if ((argc < 2) || (argc > 3)) {
1784                 printf("Usage: %s groupname\n", argv[0]);
1785                 return NT_STATUS_OK;
1786         }
1787         
1788         if (argc > 2)
1789                 sscanf(argv[2], "%x", &access_mask);
1790
1791         /* Get sam policy and domain handles */
1792
1793         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1794                                    &connect_pol);
1795
1796         if (!NT_STATUS_IS_OK(result))
1797                 goto done;
1798
1799         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1800                                       MAXIMUM_ALLOWED_ACCESS,
1801                                       &domain_sid, &domain_pol);
1802
1803         if (!NT_STATUS_IS_OK(result))
1804                 goto done;
1805
1806         /* Get handle on group */
1807
1808         {
1809                 uint32 *group_rids, num_rids, *name_types;
1810                 uint32 flags = 0x000003e8; /* Unknown */
1811
1812                 result = rpccli_samr_lookup_names(cli, mem_ctx, &domain_pol,
1813                                                flags, 1, (const char **)&argv[1],
1814                                                &num_rids, &group_rids,
1815                                                &name_types);
1816
1817                 if (!NT_STATUS_IS_OK(result))
1818                         goto done;
1819
1820                 result = rpccli_samr_open_group(cli, mem_ctx, &domain_pol,
1821                                                 access_mask,
1822                                                 group_rids[0], &group_pol);
1823
1824                 if (!NT_STATUS_IS_OK(result))
1825                         goto done;
1826         }
1827
1828         /* Delete user */
1829
1830         result = rpccli_samr_delete_dom_group(cli, mem_ctx, &group_pol);
1831
1832         if (!NT_STATUS_IS_OK(result))
1833                 goto done;
1834
1835         /* Display results */
1836
1837         rpccli_samr_close(cli, mem_ctx, &group_pol);
1838         rpccli_samr_close(cli, mem_ctx, &domain_pol);
1839         rpccli_samr_close(cli, mem_ctx, &connect_pol);
1840
1841  done:
1842         return result;
1843 }
1844
1845 /* Delete domain user */
1846
1847 static NTSTATUS cmd_samr_delete_dom_user(struct rpc_pipe_client *cli, 
1848                                          TALLOC_CTX *mem_ctx,
1849                                          int argc, const char **argv) 
1850 {
1851         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1852         POLICY_HND connect_pol, domain_pol, user_pol;
1853         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
1854
1855         if ((argc < 2) || (argc > 3)) {
1856                 printf("Usage: %s username\n", argv[0]);
1857                 return NT_STATUS_OK;
1858         }
1859         
1860         if (argc > 2)
1861                 sscanf(argv[2], "%x", &access_mask);
1862
1863         /* Get sam policy and domain handles */
1864
1865         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1866                                    &connect_pol);
1867
1868         if (!NT_STATUS_IS_OK(result))
1869                 goto done;
1870
1871         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1872                                       MAXIMUM_ALLOWED_ACCESS,
1873                                       &domain_sid, &domain_pol);
1874
1875         if (!NT_STATUS_IS_OK(result))
1876                 goto done;
1877
1878         /* Get handle on user */
1879
1880         {
1881                 uint32 *user_rids, num_rids, *name_types;
1882                 uint32 flags = 0x000003e8; /* Unknown */
1883
1884                 result = rpccli_samr_lookup_names(cli, mem_ctx, &domain_pol,
1885                                                flags, 1, (const char **)&argv[1],
1886                                                &num_rids, &user_rids,
1887                                                &name_types);
1888
1889                 if (!NT_STATUS_IS_OK(result))
1890                         goto done;
1891
1892                 result = rpccli_samr_open_user(cli, mem_ctx, &domain_pol,
1893                                             access_mask,
1894                                             user_rids[0], &user_pol);
1895
1896                 if (!NT_STATUS_IS_OK(result))
1897                         goto done;
1898         }
1899
1900         /* Delete user */
1901
1902         result = rpccli_samr_delete_dom_user(cli, mem_ctx, &user_pol);
1903
1904         if (!NT_STATUS_IS_OK(result))
1905                 goto done;
1906
1907         /* Display results */
1908
1909         rpccli_samr_close(cli, mem_ctx, &user_pol);
1910         rpccli_samr_close(cli, mem_ctx, &domain_pol);
1911         rpccli_samr_close(cli, mem_ctx, &connect_pol);
1912
1913  done:
1914         return result;
1915 }
1916
1917 /**********************************************************************
1918  * Query user security object 
1919  */
1920 static NTSTATUS cmd_samr_query_sec_obj(struct rpc_pipe_client *cli, 
1921                                     TALLOC_CTX *mem_ctx,
1922                                     int argc, const char **argv) 
1923 {
1924         POLICY_HND connect_pol, domain_pol, user_pol, *pol;
1925         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1926         uint32 sec_info = DACL_SECURITY_INFORMATION;
1927         fstring server;
1928         uint32 user_rid = 0;
1929         TALLOC_CTX *ctx = NULL;
1930         SEC_DESC_BUF *sec_desc_buf=NULL;
1931         bool domain = False;
1932
1933         ctx=talloc_init("cmd_samr_query_sec_obj");
1934         
1935         if ((argc < 1) || (argc > 3)) {
1936                 printf("Usage: %s [rid|-d] [sec_info]\n", argv[0]);
1937                 printf("\tSpecify rid for security on user, -d for security on domain\n");
1938                 talloc_destroy(ctx);
1939                 return NT_STATUS_OK;
1940         }
1941         
1942         if (argc > 1) {
1943                 if (strcmp(argv[1], "-d") == 0)
1944                         domain = True;
1945                 else
1946                         sscanf(argv[1], "%i", &user_rid);
1947         }
1948
1949         if (argc == 3) {
1950                 sec_info = atoi(argv[2]);
1951         }
1952         
1953         slprintf(server, sizeof(fstring)-1, "\\\\%s", cli->cli->desthost);
1954         strupper_m(server);
1955         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1956                                    &connect_pol);
1957
1958         if (!NT_STATUS_IS_OK(result))
1959                 goto done;
1960
1961         if (domain || user_rid)
1962                 result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
1963                                               MAXIMUM_ALLOWED_ACCESS,
1964                                               &domain_sid, &domain_pol);
1965
1966         if (!NT_STATUS_IS_OK(result))
1967                 goto done;
1968
1969         if (user_rid)
1970                 result = rpccli_samr_open_user(cli, mem_ctx, &domain_pol,
1971                                             MAXIMUM_ALLOWED_ACCESS,
1972                                             user_rid, &user_pol);
1973
1974         if (!NT_STATUS_IS_OK(result))
1975                 goto done;
1976
1977         /* Pick which query pol to use */
1978
1979         pol = &connect_pol;
1980
1981         if (domain)
1982                 pol = &domain_pol;
1983
1984         if (user_rid)
1985                 pol = &user_pol;
1986
1987         /* Query SAM security object */
1988
1989         result = rpccli_samr_query_sec_obj(cli, mem_ctx, pol, sec_info, ctx, 
1990                                         &sec_desc_buf);
1991
1992         if (!NT_STATUS_IS_OK(result))
1993                 goto done;
1994
1995         display_sec_desc(sec_desc_buf->sd);
1996
1997         rpccli_samr_close(cli, mem_ctx, &user_pol);
1998         rpccli_samr_close(cli, mem_ctx, &domain_pol);
1999         rpccli_samr_close(cli, mem_ctx, &connect_pol);
2000 done:
2001         talloc_destroy(ctx);
2002         return result;
2003 }
2004
2005 static NTSTATUS cmd_samr_get_usrdom_pwinfo(struct rpc_pipe_client *cli, 
2006                                            TALLOC_CTX *mem_ctx,
2007                                            int argc, const char **argv) 
2008 {
2009         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2010         POLICY_HND connect_pol, domain_pol, user_pol;
2011         uint16 min_pwd_length;
2012         uint32 password_properties, unknown1, rid;
2013
2014         if (argc != 2) {
2015                 printf("Usage: %s rid\n", argv[0]);
2016                 return NT_STATUS_OK;
2017         }
2018         
2019         sscanf(argv[1], "%i", &rid);
2020
2021         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
2022                                    &connect_pol);
2023
2024         if (!NT_STATUS_IS_OK(result)) {
2025                 goto done;
2026         }
2027
2028         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
2029                                          MAXIMUM_ALLOWED_ACCESS, &domain_sid, &domain_pol);
2030
2031         if (!NT_STATUS_IS_OK(result)) {
2032                 goto done;
2033         }
2034
2035         result = rpccli_samr_open_user(cli, mem_ctx, &domain_pol,
2036                                        MAXIMUM_ALLOWED_ACCESS,
2037                                        rid, &user_pol);
2038
2039         if (!NT_STATUS_IS_OK(result)) {
2040                 goto done;
2041         }
2042
2043         result = rpccli_samr_get_usrdom_pwinfo(cli, mem_ctx, &user_pol,
2044                                                &min_pwd_length, &password_properties, 
2045                                                &unknown1) ;
2046
2047         if (NT_STATUS_IS_OK(result)) {
2048                 printf("min_pwd_length: %d\n", min_pwd_length);
2049                 printf("unknown1: %d\n", unknown1);
2050                 display_password_properties(password_properties);
2051         }
2052
2053  done:
2054         rpccli_samr_close(cli, mem_ctx, &user_pol);
2055         rpccli_samr_close(cli, mem_ctx, &domain_pol);
2056         rpccli_samr_close(cli, mem_ctx, &connect_pol);
2057
2058         return result;
2059 }
2060
2061
2062 static NTSTATUS cmd_samr_get_dom_pwinfo(struct rpc_pipe_client *cli, 
2063                                         TALLOC_CTX *mem_ctx,
2064                                         int argc, const char **argv) 
2065 {
2066         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2067         uint16 min_pwd_length;
2068         uint32 password_properties;
2069
2070         if (argc != 1) {
2071                 printf("Usage: %s\n", argv[0]);
2072                 return NT_STATUS_OK;
2073         }
2074
2075         result = rpccli_samr_get_dom_pwinfo(cli, mem_ctx, &min_pwd_length, &password_properties) ;
2076         
2077         if (NT_STATUS_IS_OK(result)) {
2078                 printf("min_pwd_length: %d\n", min_pwd_length);
2079                 display_password_properties(password_properties);
2080         }
2081
2082         return result;
2083 }
2084
2085 /* Look up domain name */
2086
2087 static NTSTATUS cmd_samr_lookup_domain(struct rpc_pipe_client *cli, 
2088                                        TALLOC_CTX *mem_ctx,
2089                                        int argc, const char **argv) 
2090 {
2091         POLICY_HND connect_pol, domain_pol;
2092         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2093         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
2094         fstring domain_name,sid_string;
2095         DOM_SID sid;
2096         
2097         if (argc != 2) {
2098                 printf("Usage: %s domain_name\n", argv[0]);
2099                 return NT_STATUS_OK;
2100         }
2101         
2102         sscanf(argv[1], "%s", domain_name);
2103         
2104         result = try_samr_connects(cli, mem_ctx, access_mask, &connect_pol);
2105         
2106         if (!NT_STATUS_IS_OK(result))
2107                 goto done;
2108
2109         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
2110                                       access_mask, &domain_sid, &domain_pol);
2111
2112         if (!NT_STATUS_IS_OK(result))
2113                 goto done;
2114         
2115         result = rpccli_samr_lookup_domain(
2116                 cli, mem_ctx, &connect_pol, domain_name, &sid);
2117
2118         if (NT_STATUS_IS_OK(result)) {
2119                 sid_to_fstring(sid_string,&sid);
2120                 printf("SAMR_LOOKUP_DOMAIN: Domain Name: %s Domain SID: %s\n",
2121                        domain_name,sid_string);
2122         }
2123
2124         rpccli_samr_close(cli, mem_ctx, &domain_pol);
2125         rpccli_samr_close(cli, mem_ctx, &connect_pol);
2126 done:
2127         return result;
2128 }
2129
2130 /* Change user password */
2131
2132 static NTSTATUS cmd_samr_chgpasswd2(struct rpc_pipe_client *cli, 
2133                                     TALLOC_CTX *mem_ctx,
2134                                     int argc, const char **argv) 
2135 {
2136         POLICY_HND connect_pol, domain_pol;
2137         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2138         const char *user, *oldpass, *newpass;
2139         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
2140
2141         if (argc < 3) {
2142                 printf("Usage: %s username oldpass newpass\n", argv[0]);
2143                 return NT_STATUS_INVALID_PARAMETER;
2144         }
2145
2146         user = argv[1];
2147         oldpass = argv[2];
2148         newpass = argv[3];
2149         
2150         /* Get sam policy handle */
2151
2152         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
2153                                    &connect_pol);
2154
2155         if (!NT_STATUS_IS_OK(result))
2156                 goto done;
2157
2158         /* Get domain policy handle */
2159
2160         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
2161                                       access_mask,
2162                                       &domain_sid, &domain_pol);
2163
2164         if (!NT_STATUS_IS_OK(result))
2165                 goto done;
2166
2167         /* Change user password */
2168         result = rpccli_samr_chgpasswd_user(cli, mem_ctx, user, newpass, oldpass);
2169
2170         if (!NT_STATUS_IS_OK(result))
2171                 goto done;
2172
2173         result = rpccli_samr_close(cli, mem_ctx, &domain_pol);
2174         if (!NT_STATUS_IS_OK(result)) goto done;
2175
2176         result = rpccli_samr_close(cli, mem_ctx, &connect_pol);
2177         if (!NT_STATUS_IS_OK(result)) goto done;
2178
2179  done:
2180         return result;
2181 }
2182
2183
2184 /* Change user password */
2185
2186 static NTSTATUS cmd_samr_chgpasswd3(struct rpc_pipe_client *cli, 
2187                                     TALLOC_CTX *mem_ctx,
2188                                     int argc, const char **argv) 
2189 {
2190         POLICY_HND connect_pol, domain_pol;
2191         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2192         const char *user, *oldpass, *newpass;
2193         uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
2194         SAM_UNK_INFO_1 info;
2195         SAMR_CHANGE_REJECT reject;
2196
2197         if (argc < 3) {
2198                 printf("Usage: %s username oldpass newpass\n", argv[0]);
2199                 return NT_STATUS_INVALID_PARAMETER;
2200         }
2201
2202         user = argv[1];
2203         oldpass = argv[2];
2204         newpass = argv[3];
2205         
2206         /* Get sam policy handle */
2207
2208         result = try_samr_connects(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
2209                                    &connect_pol);
2210
2211         if (!NT_STATUS_IS_OK(result))
2212                 goto done;
2213
2214         /* Get domain policy handle */
2215
2216         result = rpccli_samr_open_domain(cli, mem_ctx, &connect_pol,
2217                                       access_mask,
2218                                       &domain_sid, &domain_pol);
2219
2220         if (!NT_STATUS_IS_OK(result))
2221                 goto done;
2222
2223         /* Change user password */
2224         result = rpccli_samr_chgpasswd3(cli, mem_ctx, user, newpass, oldpass, &info, &reject);
2225
2226         if (NT_STATUS_EQUAL(result, NT_STATUS_PASSWORD_RESTRICTION)) {
2227         
2228                 display_sam_unk_info_1(&info);
2229
2230                 switch (reject.reject_reason) {
2231                         case REJECT_REASON_TOO_SHORT:
2232                                 d_printf("REJECT_REASON_TOO_SHORT\n");
2233                                 break;
2234                         case REJECT_REASON_IN_HISTORY:
2235                                 d_printf("REJECT_REASON_IN_HISTORY\n");
2236                                 break;
2237                         case REJECT_REASON_NOT_COMPLEX:
2238                                 d_printf("REJECT_REASON_NOT_COMPLEX\n");
2239                                 break;
2240                         case REJECT_REASON_OTHER:
2241                                 d_printf("REJECT_REASON_OTHER\n");
2242                                 break;
2243                         default:
2244                                 d_printf("unknown reject reason: %d\n", reject.reject_reason);
2245                                 break;
2246                 }
2247         }
2248
2249         if (!NT_STATUS_IS_OK(result))
2250                 goto done;
2251
2252         result = rpccli_samr_close(cli, mem_ctx, &domain_pol);
2253         if (!NT_STATUS_IS_OK(result)) goto done;
2254
2255         result = rpccli_samr_close(cli, mem_ctx, &connect_pol);
2256         if (!NT_STATUS_IS_OK(result)) goto done;
2257
2258  done:
2259         return result;
2260 }
2261
2262 /* List of commands exported by this module */
2263
2264 struct cmd_set samr_commands[] = {
2265
2266         { "SAMR" },
2267
2268         { "queryuser",  RPC_RTYPE_NTSTATUS, cmd_samr_query_user,                NULL, PI_SAMR, NULL,    "Query user info",         "" },
2269         { "querygroup",         RPC_RTYPE_NTSTATUS, cmd_samr_query_group,               NULL, PI_SAMR, NULL,    "Query group info",        "" },
2270         { "queryusergroups",    RPC_RTYPE_NTSTATUS, cmd_samr_query_usergroups,  NULL, PI_SAMR, NULL,    "Query user groups",       "" },
2271         { "queryuseraliases",   RPC_RTYPE_NTSTATUS, cmd_samr_query_useraliases,         NULL, PI_SAMR, NULL,    "Query user aliases",      "" },
2272         { "querygroupmem",      RPC_RTYPE_NTSTATUS, cmd_samr_query_groupmem,    NULL, PI_SAMR, NULL,    "Query group membership",  "" },
2273         { "queryaliasmem",      RPC_RTYPE_NTSTATUS, cmd_samr_query_aliasmem,    NULL, PI_SAMR, NULL,    "Query alias membership",  "" },
2274         { "deletealias",        RPC_RTYPE_NTSTATUS, cmd_samr_delete_alias,      NULL, PI_SAMR, NULL,    "Delete an alias",  "" },
2275         { "querydispinfo",      RPC_RTYPE_NTSTATUS, cmd_samr_query_dispinfo,    NULL, PI_SAMR, NULL,    "Query display info",      "" },
2276         { "querydominfo",       RPC_RTYPE_NTSTATUS, cmd_samr_query_dominfo,     NULL, PI_SAMR, NULL,    "Query domain info",       "" },
2277         { "enumdomusers",      RPC_RTYPE_NTSTATUS, cmd_samr_enum_dom_users,       NULL, PI_SAMR, NULL,  "Enumerate domain users", "" },
2278         { "enumdomgroups",      RPC_RTYPE_NTSTATUS, cmd_samr_enum_dom_groups,       NULL, PI_SAMR, NULL,        "Enumerate domain groups", "" },
2279         { "enumalsgroups",      RPC_RTYPE_NTSTATUS, cmd_samr_enum_als_groups,       NULL, PI_SAMR, NULL,        "Enumerate alias groups",  "" },
2280
2281         { "createdomuser",      RPC_RTYPE_NTSTATUS, cmd_samr_create_dom_user,       NULL, PI_SAMR, NULL,        "Create domain user",      "" },
2282         { "createdomgroup",     RPC_RTYPE_NTSTATUS, cmd_samr_create_dom_group,      NULL, PI_SAMR, NULL,        "Create domain group",     "" },
2283         { "createdomalias",     RPC_RTYPE_NTSTATUS, cmd_samr_create_dom_alias,      NULL, PI_SAMR, NULL,        "Create domain alias",     "" },
2284         { "samlookupnames",     RPC_RTYPE_NTSTATUS, cmd_samr_lookup_names,          NULL, PI_SAMR, NULL,        "Look up names",           "" },
2285         { "samlookuprids",      RPC_RTYPE_NTSTATUS, cmd_samr_lookup_rids,           NULL, PI_SAMR, NULL,        "Look up names",           "" },
2286         { "deletedomgroup",     RPC_RTYPE_NTSTATUS, cmd_samr_delete_dom_group,      NULL, PI_SAMR, NULL,        "Delete domain group",     "" },
2287         { "deletedomuser",      RPC_RTYPE_NTSTATUS, cmd_samr_delete_dom_user,       NULL, PI_SAMR, NULL,        "Delete domain user",      "" },
2288         { "samquerysecobj",     RPC_RTYPE_NTSTATUS, cmd_samr_query_sec_obj,         NULL, PI_SAMR, NULL, "Query SAMR security object",   "" },
2289         { "getdompwinfo",       RPC_RTYPE_NTSTATUS, cmd_samr_get_dom_pwinfo,        NULL, PI_SAMR, NULL, "Retrieve domain password info", "" },
2290         { "getusrdompwinfo",    RPC_RTYPE_NTSTATUS, cmd_samr_get_usrdom_pwinfo,     NULL, PI_SAMR, NULL, "Retrieve user domain password info", "" },
2291
2292         { "lookupdomain",       RPC_RTYPE_NTSTATUS, cmd_samr_lookup_domain,         NULL, PI_SAMR, NULL, "Lookup Domain Name", "" },
2293         { "chgpasswd2",         RPC_RTYPE_NTSTATUS, cmd_samr_chgpasswd2,            NULL, PI_SAMR, NULL, "Change user password", "" },
2294         { "chgpasswd3",         RPC_RTYPE_NTSTATUS, cmd_samr_chgpasswd3,            NULL, PI_SAMR, NULL, "Change user password", "" },
2295         { NULL }
2296 };