be friendlier in smb2_deltree to some of the SMB2 implementations that
[Samba.git] / source3 / rpcclient / cmd_lsarpc.c
blob5b5b4ff78cb604d45eb6e1d588c8ea498b26bf9d
1 /*
2 Unix SMB/CIFS implementation.
3 RPC pipe client
5 Copyright (C) Tim Potter 2000
6 Copyright (C) Rafal Szczesniak 2002
7 Copyright (C) Guenther Deschner 2008
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "rpcclient.h"
26 /* useful function to allow entering a name instead of a SID and
27 * looking it up automatically */
28 static NTSTATUS name_to_sid(struct rpc_pipe_client *cli,
29 TALLOC_CTX *mem_ctx,
30 DOM_SID *sid, const char *name)
32 POLICY_HND pol;
33 enum lsa_SidType *sid_types;
34 NTSTATUS result;
35 DOM_SID *sids;
37 /* maybe its a raw SID */
38 if (strncmp(name, "S-", 2) == 0 &&
39 string_to_sid(sid, name)) {
40 return NT_STATUS_OK;
43 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
44 SEC_RIGHTS_MAXIMUM_ALLOWED,
45 &pol);
46 if (!NT_STATUS_IS_OK(result))
47 goto done;
49 result = rpccli_lsa_lookup_names(cli, mem_ctx, &pol, 1, &name, NULL, 1, &sids, &sid_types);
50 if (!NT_STATUS_IS_OK(result))
51 goto done;
53 rpccli_lsa_Close(cli, mem_ctx, &pol);
55 *sid = sids[0];
57 done:
58 return result;
61 static void display_query_info_1(struct lsa_AuditLogInfo *r)
63 d_printf("percent_full:\t%d\n", r->percent_full);
64 d_printf("log_size:\t%d\n", r->log_size);
65 d_printf("retention_time:\t%lld\n", (long long)r->retention_time);
66 d_printf("shutdown_in_progress:\t%d\n", r->shutdown_in_progress);
67 d_printf("time_to_shutdown:\t%lld\n", (long long)r->time_to_shutdown);
68 d_printf("next_audit_record:\t%d\n", r->next_audit_record);
69 d_printf("unknown:\t%d\n", r->unknown);
72 static void display_query_info_2(struct lsa_AuditEventsInfo *r)
74 int i;
75 d_printf("Auditing enabled:\t%d\n", r->auditing_mode);
76 d_printf("Auditing categories:\t%d\n", r->count);
77 d_printf("Auditsettings:\n");
78 for (i=0; i<r->count; i++) {
79 const char *val = audit_policy_str(talloc_tos(), r->settings[i]);
80 const char *policy = audit_description_str(i);
81 d_printf("%s:\t%s\n", policy, val);
85 static void display_query_info_3(struct lsa_DomainInfo *r)
87 d_printf("Domain Name: %s\n", r->name.string);
88 d_printf("Domain Sid: %s\n", sid_string_tos(r->sid));
91 static void display_query_info_5(struct lsa_DomainInfo *r)
93 d_printf("Domain Name: %s\n", r->name.string);
94 d_printf("Domain Sid: %s\n", sid_string_tos(r->sid));
97 static void display_query_info_10(struct lsa_AuditFullSetInfo *r)
99 d_printf("Shutdown on full: %d\n", r->shutdown_on_full);
102 static void display_query_info_11(struct lsa_AuditFullQueryInfo *r)
104 d_printf("Shutdown on full: %d\n", r->shutdown_on_full);
105 d_printf("Log is full: %d\n", r->log_is_full);
106 d_printf("Unknown: %d\n", r->unknown);
109 static void display_query_info_12(struct lsa_DnsDomainInfo *r)
111 d_printf("Domain NetBios Name: %s\n", r->name.string);
112 d_printf("Domain DNS Name: %s\n", r->dns_domain.string);
113 d_printf("Domain Forest Name: %s\n", r->dns_forest.string);
114 d_printf("Domain Sid: %s\n", sid_string_tos(r->sid));
115 d_printf("Domain GUID: %s\n", smb_uuid_string(talloc_tos(),
116 r->domain_guid));
119 static void display_lsa_query_info(union lsa_PolicyInformation *info,
120 enum lsa_PolicyInfo level)
122 switch (level) {
123 case 1:
124 display_query_info_1(&info->audit_log);
125 break;
126 case 2:
127 display_query_info_2(&info->audit_events);
128 break;
129 case 3:
130 display_query_info_3(&info->domain);
131 break;
132 case 5:
133 display_query_info_5(&info->account_domain);
134 break;
135 case 10:
136 display_query_info_10(&info->auditfullset);
137 break;
138 case 11:
139 display_query_info_11(&info->auditfullquery);
140 break;
141 case 12:
142 display_query_info_12(&info->dns);
143 break;
144 default:
145 printf("can't display info level: %d\n", level);
146 break;
150 static NTSTATUS cmd_lsa_query_info_policy(struct rpc_pipe_client *cli,
151 TALLOC_CTX *mem_ctx, int argc,
152 const char **argv)
154 POLICY_HND pol;
155 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
156 union lsa_PolicyInformation *info = NULL;
158 uint32 info_class = 3;
160 if (argc > 2) {
161 printf("Usage: %s [info_class]\n", argv[0]);
162 return NT_STATUS_OK;
165 if (argc == 2)
166 info_class = atoi(argv[1]);
168 switch (info_class) {
169 case 12:
170 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
171 SEC_RIGHTS_MAXIMUM_ALLOWED,
172 &pol);
174 if (!NT_STATUS_IS_OK(result))
175 goto done;
177 result = rpccli_lsa_QueryInfoPolicy2(cli, mem_ctx,
178 &pol,
179 info_class,
180 &info);
181 break;
182 default:
183 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
184 SEC_RIGHTS_MAXIMUM_ALLOWED,
185 &pol);
187 if (!NT_STATUS_IS_OK(result))
188 goto done;
190 result = rpccli_lsa_QueryInfoPolicy(cli, mem_ctx,
191 &pol,
192 info_class,
193 &info);
196 if (NT_STATUS_IS_OK(result)) {
197 display_lsa_query_info(info, info_class);
200 rpccli_lsa_Close(cli, mem_ctx, &pol);
202 done:
203 return result;
206 /* Resolve a list of names to a list of sids */
208 static NTSTATUS cmd_lsa_lookup_names(struct rpc_pipe_client *cli,
209 TALLOC_CTX *mem_ctx, int argc,
210 const char **argv)
212 POLICY_HND pol;
213 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
214 DOM_SID *sids;
215 enum lsa_SidType *types;
216 int i;
218 if (argc == 1) {
219 printf("Usage: %s [name1 [name2 [...]]]\n", argv[0]);
220 return NT_STATUS_OK;
223 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
224 SEC_RIGHTS_MAXIMUM_ALLOWED,
225 &pol);
227 if (!NT_STATUS_IS_OK(result))
228 goto done;
230 result = rpccli_lsa_lookup_names(cli, mem_ctx, &pol, argc - 1,
231 (const char**)(argv + 1), NULL, 1, &sids, &types);
233 if (!NT_STATUS_IS_OK(result) && NT_STATUS_V(result) !=
234 NT_STATUS_V(STATUS_SOME_UNMAPPED))
235 goto done;
237 result = NT_STATUS_OK;
239 /* Print results */
241 for (i = 0; i < (argc - 1); i++) {
242 fstring sid_str;
243 sid_to_fstring(sid_str, &sids[i]);
244 printf("%s %s (%s: %d)\n", argv[i + 1], sid_str,
245 sid_type_lookup(types[i]), types[i]);
248 rpccli_lsa_Close(cli, mem_ctx, &pol);
250 done:
251 return result;
254 /* Resolve a list of names to a list of sids */
256 static NTSTATUS cmd_lsa_lookup_names_level(struct rpc_pipe_client *cli,
257 TALLOC_CTX *mem_ctx, int argc,
258 const char **argv)
260 POLICY_HND pol;
261 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
262 DOM_SID *sids;
263 enum lsa_SidType *types;
264 int i, level;
266 if (argc < 3) {
267 printf("Usage: %s [level] [name1 [name2 [...]]]\n", argv[0]);
268 return NT_STATUS_OK;
271 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
272 SEC_RIGHTS_MAXIMUM_ALLOWED,
273 &pol);
275 if (!NT_STATUS_IS_OK(result))
276 goto done;
278 level = atoi(argv[1]);
280 result = rpccli_lsa_lookup_names(cli, mem_ctx, &pol, argc - 2,
281 (const char**)(argv + 2), NULL, level, &sids, &types);
283 if (!NT_STATUS_IS_OK(result) && NT_STATUS_V(result) !=
284 NT_STATUS_V(STATUS_SOME_UNMAPPED))
285 goto done;
287 result = NT_STATUS_OK;
289 /* Print results */
291 for (i = 0; i < (argc - 2); i++) {
292 fstring sid_str;
293 sid_to_fstring(sid_str, &sids[i]);
294 printf("%s %s (%s: %d)\n", argv[i + 2], sid_str,
295 sid_type_lookup(types[i]), types[i]);
298 rpccli_lsa_Close(cli, mem_ctx, &pol);
300 done:
301 return result;
305 /* Resolve a list of SIDs to a list of names */
307 static NTSTATUS cmd_lsa_lookup_sids(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
308 int argc, const char **argv)
310 POLICY_HND pol;
311 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
312 DOM_SID *sids;
313 char **domains;
314 char **names;
315 enum lsa_SidType *types;
316 int i;
318 if (argc == 1) {
319 printf("Usage: %s [sid1 [sid2 [...]]]\n", argv[0]);
320 return NT_STATUS_OK;
323 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
324 SEC_RIGHTS_MAXIMUM_ALLOWED,
325 &pol);
327 if (!NT_STATUS_IS_OK(result))
328 goto done;
330 /* Convert arguments to sids */
332 sids = TALLOC_ARRAY(mem_ctx, DOM_SID, argc - 1);
334 if (!sids) {
335 printf("could not allocate memory for %d sids\n", argc - 1);
336 goto done;
339 for (i = 0; i < argc - 1; i++)
340 if (!string_to_sid(&sids[i], argv[i + 1])) {
341 result = NT_STATUS_INVALID_SID;
342 goto done;
345 /* Lookup the SIDs */
347 result = rpccli_lsa_lookup_sids(cli, mem_ctx, &pol, argc - 1, sids,
348 &domains, &names, &types);
350 if (!NT_STATUS_IS_OK(result) && NT_STATUS_V(result) !=
351 NT_STATUS_V(STATUS_SOME_UNMAPPED))
352 goto done;
354 result = NT_STATUS_OK;
356 /* Print results */
358 for (i = 0; i < (argc - 1); i++) {
359 fstring sid_str;
361 sid_to_fstring(sid_str, &sids[i]);
362 printf("%s %s\\%s (%d)\n", sid_str,
363 domains[i] ? domains[i] : "*unknown*",
364 names[i] ? names[i] : "*unknown*", types[i]);
367 rpccli_lsa_Close(cli, mem_ctx, &pol);
369 done:
370 return result;
373 /* Enumerate list of trusted domains */
375 static NTSTATUS cmd_lsa_enum_trust_dom(struct rpc_pipe_client *cli,
376 TALLOC_CTX *mem_ctx, int argc,
377 const char **argv)
379 POLICY_HND pol;
380 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
381 struct lsa_DomainList domain_list;
383 /* defaults, but may be changed using params */
384 uint32 enum_ctx = 0;
385 int i;
386 uint32_t max_size = (uint32_t)-1;
388 if (argc > 2) {
389 printf("Usage: %s [enum context (0)]\n", argv[0]);
390 return NT_STATUS_OK;
393 if (argc == 2 && argv[1]) {
394 enum_ctx = atoi(argv[2]);
397 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
398 LSA_POLICY_VIEW_LOCAL_INFORMATION,
399 &pol);
401 if (!NT_STATUS_IS_OK(result))
402 goto done;
404 result = STATUS_MORE_ENTRIES;
406 while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES)) {
408 /* Lookup list of trusted domains */
410 result = rpccli_lsa_EnumTrustDom(cli, mem_ctx,
411 &pol,
412 &enum_ctx,
413 &domain_list,
414 max_size);
415 if (!NT_STATUS_IS_OK(result) &&
416 !NT_STATUS_EQUAL(result, NT_STATUS_NO_MORE_ENTRIES) &&
417 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
418 goto done;
420 /* Print results: list of names and sids returned in this
421 * response. */
422 for (i = 0; i < domain_list.count; i++) {
423 fstring sid_str;
425 sid_to_fstring(sid_str, domain_list.domains[i].sid);
426 printf("%s %s\n",
427 domain_list.domains[i].name.string ?
428 domain_list.domains[i].name.string : "*unknown*",
429 sid_str);
433 rpccli_lsa_Close(cli, mem_ctx, &pol);
434 done:
435 return result;
438 /* Enumerates privileges */
440 static NTSTATUS cmd_lsa_enum_privilege(struct rpc_pipe_client *cli,
441 TALLOC_CTX *mem_ctx, int argc,
442 const char **argv)
444 POLICY_HND pol;
445 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
446 struct lsa_PrivArray priv_array;
448 uint32 enum_context=0;
449 uint32 pref_max_length=0x1000;
450 int i;
452 if (argc > 3) {
453 printf("Usage: %s [enum context] [max length]\n", argv[0]);
454 return NT_STATUS_OK;
457 if (argc>=2)
458 enum_context=atoi(argv[1]);
460 if (argc==3)
461 pref_max_length=atoi(argv[2]);
463 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
464 SEC_RIGHTS_MAXIMUM_ALLOWED,
465 &pol);
467 if (!NT_STATUS_IS_OK(result))
468 goto done;
470 result = rpccli_lsa_EnumPrivs(cli, mem_ctx,
471 &pol,
472 &enum_context,
473 &priv_array,
474 pref_max_length);
475 if (!NT_STATUS_IS_OK(result))
476 goto done;
478 /* Print results */
479 printf("found %d privileges\n\n", priv_array.count);
481 for (i = 0; i < priv_array.count; i++) {
482 printf("%s \t\t%d:%d (0x%x:0x%x)\n",
483 priv_array.privs[i].name.string ? priv_array.privs[i].name.string : "*unknown*",
484 priv_array.privs[i].luid.high,
485 priv_array.privs[i].luid.low,
486 priv_array.privs[i].luid.high,
487 priv_array.privs[i].luid.low);
490 rpccli_lsa_Close(cli, mem_ctx, &pol);
491 done:
492 return result;
495 /* Get privilege name */
497 static NTSTATUS cmd_lsa_get_dispname(struct rpc_pipe_client *cli,
498 TALLOC_CTX *mem_ctx, int argc,
499 const char **argv)
501 POLICY_HND pol;
502 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
504 uint16 lang_id=0;
505 uint16 lang_id_sys=0;
506 uint16 lang_id_desc;
507 struct lsa_String lsa_name;
508 struct lsa_StringLarge *description = NULL;
510 if (argc != 2) {
511 printf("Usage: %s privilege name\n", argv[0]);
512 return NT_STATUS_OK;
515 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
516 SEC_RIGHTS_MAXIMUM_ALLOWED,
517 &pol);
519 if (!NT_STATUS_IS_OK(result))
520 goto done;
522 init_lsa_String(&lsa_name, argv[1]);
524 result = rpccli_lsa_LookupPrivDisplayName(cli, mem_ctx,
525 &pol,
526 &lsa_name,
527 lang_id,
528 lang_id_sys,
529 &description,
530 &lang_id_desc);
532 if (!NT_STATUS_IS_OK(result))
533 goto done;
535 /* Print results */
536 printf("%s -> %s (language: 0x%x)\n", argv[1], description->string, lang_id_desc);
538 rpccli_lsa_Close(cli, mem_ctx, &pol);
539 done:
540 return result;
543 /* Enumerate the LSA SIDS */
545 static NTSTATUS cmd_lsa_enum_sids(struct rpc_pipe_client *cli,
546 TALLOC_CTX *mem_ctx, int argc,
547 const char **argv)
549 POLICY_HND pol;
550 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
552 uint32 enum_context=0;
553 uint32 pref_max_length=0x1000;
554 struct lsa_SidArray sid_array;
555 int i;
557 if (argc > 3) {
558 printf("Usage: %s [enum context] [max length]\n", argv[0]);
559 return NT_STATUS_OK;
562 if (argc>=2)
563 enum_context=atoi(argv[1]);
565 if (argc==3)
566 pref_max_length=atoi(argv[2]);
568 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
569 SEC_RIGHTS_MAXIMUM_ALLOWED,
570 &pol);
572 if (!NT_STATUS_IS_OK(result))
573 goto done;
575 result = rpccli_lsa_EnumAccounts(cli, mem_ctx,
576 &pol,
577 &enum_context,
578 &sid_array,
579 pref_max_length);
581 if (!NT_STATUS_IS_OK(result))
582 goto done;
584 /* Print results */
585 printf("found %d SIDs\n\n", sid_array.num_sids);
587 for (i = 0; i < sid_array.num_sids; i++) {
588 fstring sid_str;
590 sid_to_fstring(sid_str, sid_array.sids[i].sid);
591 printf("%s\n", sid_str);
594 rpccli_lsa_Close(cli, mem_ctx, &pol);
595 done:
596 return result;
599 /* Create a new account */
601 static NTSTATUS cmd_lsa_create_account(struct rpc_pipe_client *cli,
602 TALLOC_CTX *mem_ctx, int argc,
603 const char **argv)
605 POLICY_HND dom_pol;
606 POLICY_HND user_pol;
607 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
608 uint32 des_access = 0x000f000f;
610 DOM_SID sid;
612 if (argc != 2 ) {
613 printf("Usage: %s SID\n", argv[0]);
614 return NT_STATUS_OK;
617 result = name_to_sid(cli, mem_ctx, &sid, argv[1]);
618 if (!NT_STATUS_IS_OK(result))
619 goto done;
621 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
622 SEC_RIGHTS_MAXIMUM_ALLOWED,
623 &dom_pol);
625 if (!NT_STATUS_IS_OK(result))
626 goto done;
628 result = rpccli_lsa_CreateAccount(cli, mem_ctx,
629 &dom_pol,
630 &sid,
631 des_access,
632 &user_pol);
634 if (!NT_STATUS_IS_OK(result))
635 goto done;
637 printf("Account for SID %s successfully created\n\n", argv[1]);
638 result = NT_STATUS_OK;
640 rpccli_lsa_Close(cli, mem_ctx, &dom_pol);
641 done:
642 return result;
646 /* Enumerate the privileges of an SID */
648 static NTSTATUS cmd_lsa_enum_privsaccounts(struct rpc_pipe_client *cli,
649 TALLOC_CTX *mem_ctx, int argc,
650 const char **argv)
652 POLICY_HND dom_pol;
653 POLICY_HND user_pol;
654 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
655 uint32 access_desired = 0x000f000f;
656 DOM_SID sid;
657 struct lsa_PrivilegeSet *privs = NULL;
658 int i;
660 if (argc != 2 ) {
661 printf("Usage: %s SID\n", argv[0]);
662 return NT_STATUS_OK;
665 result = name_to_sid(cli, mem_ctx, &sid, argv[1]);
666 if (!NT_STATUS_IS_OK(result))
667 goto done;
669 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
670 SEC_RIGHTS_MAXIMUM_ALLOWED,
671 &dom_pol);
673 if (!NT_STATUS_IS_OK(result))
674 goto done;
676 result = rpccli_lsa_OpenAccount(cli, mem_ctx,
677 &dom_pol,
678 &sid,
679 access_desired,
680 &user_pol);
682 if (!NT_STATUS_IS_OK(result))
683 goto done;
685 result = rpccli_lsa_EnumPrivsAccount(cli, mem_ctx,
686 &user_pol,
687 &privs);
689 if (!NT_STATUS_IS_OK(result))
690 goto done;
692 /* Print results */
693 printf("found %d privileges for SID %s\n\n", privs->count, argv[1]);
694 printf("high\tlow\tattribute\n");
696 for (i = 0; i < privs->count; i++) {
697 printf("%u\t%u\t%u\n",
698 privs->set[i].luid.high,
699 privs->set[i].luid.low,
700 privs->set[i].attribute);
703 rpccli_lsa_Close(cli, mem_ctx, &dom_pol);
704 done:
705 return result;
709 /* Enumerate the privileges of an SID via LsaEnumerateAccountRights */
711 static NTSTATUS cmd_lsa_enum_acct_rights(struct rpc_pipe_client *cli,
712 TALLOC_CTX *mem_ctx, int argc,
713 const char **argv)
715 POLICY_HND dom_pol;
716 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
717 DOM_SID sid;
718 struct lsa_RightSet rights;
720 int i;
722 if (argc != 2 ) {
723 printf("Usage: %s SID\n", argv[0]);
724 return NT_STATUS_OK;
727 result = name_to_sid(cli, mem_ctx, &sid, argv[1]);
728 if (!NT_STATUS_IS_OK(result))
729 goto done;
731 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
732 SEC_RIGHTS_MAXIMUM_ALLOWED,
733 &dom_pol);
735 if (!NT_STATUS_IS_OK(result))
736 goto done;
738 result = rpccli_lsa_EnumAccountRights(cli, mem_ctx,
739 &dom_pol,
740 &sid,
741 &rights);
743 if (!NT_STATUS_IS_OK(result))
744 goto done;
746 printf("found %d privileges for SID %s\n", rights.count,
747 sid_string_tos(&sid));
749 for (i = 0; i < rights.count; i++) {
750 printf("\t%s\n", rights.names[i].string);
753 rpccli_lsa_Close(cli, mem_ctx, &dom_pol);
754 done:
755 return result;
759 /* add some privileges to a SID via LsaAddAccountRights */
761 static NTSTATUS cmd_lsa_add_acct_rights(struct rpc_pipe_client *cli,
762 TALLOC_CTX *mem_ctx, int argc,
763 const char **argv)
765 POLICY_HND dom_pol;
766 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
767 struct lsa_RightSet rights;
768 DOM_SID sid;
769 int i;
771 if (argc < 3 ) {
772 printf("Usage: %s SID [rights...]\n", argv[0]);
773 return NT_STATUS_OK;
776 result = name_to_sid(cli, mem_ctx, &sid, argv[1]);
777 if (!NT_STATUS_IS_OK(result))
778 goto done;
780 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
781 SEC_RIGHTS_MAXIMUM_ALLOWED,
782 &dom_pol);
784 if (!NT_STATUS_IS_OK(result))
785 goto done;
787 rights.count = argc-2;
788 rights.names = TALLOC_ARRAY(mem_ctx, struct lsa_StringLarge,
789 rights.count);
790 if (!rights.names) {
791 return NT_STATUS_NO_MEMORY;
794 for (i=0; i<argc-1; i++) {
795 init_lsa_StringLarge(&rights.names[i], argv[i+2]);
798 result = rpccli_lsa_AddAccountRights(cli, mem_ctx,
799 &dom_pol,
800 &sid,
801 &rights);
803 if (!NT_STATUS_IS_OK(result))
804 goto done;
806 rpccli_lsa_Close(cli, mem_ctx, &dom_pol);
807 done:
808 return result;
812 /* remove some privileges to a SID via LsaRemoveAccountRights */
814 static NTSTATUS cmd_lsa_remove_acct_rights(struct rpc_pipe_client *cli,
815 TALLOC_CTX *mem_ctx, int argc,
816 const char **argv)
818 POLICY_HND dom_pol;
819 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
820 struct lsa_RightSet rights;
821 DOM_SID sid;
822 int i;
824 if (argc < 3 ) {
825 printf("Usage: %s SID [rights...]\n", argv[0]);
826 return NT_STATUS_OK;
829 result = name_to_sid(cli, mem_ctx, &sid, argv[1]);
830 if (!NT_STATUS_IS_OK(result))
831 goto done;
833 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
834 SEC_RIGHTS_MAXIMUM_ALLOWED,
835 &dom_pol);
837 if (!NT_STATUS_IS_OK(result))
838 goto done;
840 rights.count = argc-2;
841 rights.names = TALLOC_ARRAY(mem_ctx, struct lsa_StringLarge,
842 rights.count);
843 if (!rights.names) {
844 return NT_STATUS_NO_MEMORY;
847 for (i=0; i<argc-2; i++) {
848 init_lsa_StringLarge(&rights.names[i], argv[i+2]);
851 result = rpccli_lsa_RemoveAccountRights(cli, mem_ctx,
852 &dom_pol,
853 &sid,
854 false,
855 &rights);
857 if (!NT_STATUS_IS_OK(result))
858 goto done;
860 rpccli_lsa_Close(cli, mem_ctx, &dom_pol);
862 done:
863 return result;
867 /* Get a privilege value given its name */
869 static NTSTATUS cmd_lsa_lookup_priv_value(struct rpc_pipe_client *cli,
870 TALLOC_CTX *mem_ctx, int argc,
871 const char **argv)
873 POLICY_HND pol;
874 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
875 struct lsa_LUID luid;
876 struct lsa_String name;
878 if (argc != 2 ) {
879 printf("Usage: %s name\n", argv[0]);
880 return NT_STATUS_OK;
883 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
884 SEC_RIGHTS_MAXIMUM_ALLOWED,
885 &pol);
887 if (!NT_STATUS_IS_OK(result))
888 goto done;
890 init_lsa_String(&name, argv[1]);
892 result = rpccli_lsa_LookupPrivValue(cli, mem_ctx,
893 &pol,
894 &name,
895 &luid);
897 if (!NT_STATUS_IS_OK(result))
898 goto done;
900 /* Print results */
902 printf("%u:%u (0x%x:0x%x)\n", luid.high, luid.low, luid.high, luid.low);
904 rpccli_lsa_Close(cli, mem_ctx, &pol);
905 done:
906 return result;
909 /* Query LSA security object */
911 static NTSTATUS cmd_lsa_query_secobj(struct rpc_pipe_client *cli,
912 TALLOC_CTX *mem_ctx, int argc,
913 const char **argv)
915 POLICY_HND pol;
916 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
917 SEC_DESC_BUF *sdb;
918 uint32 sec_info = DACL_SECURITY_INFORMATION;
920 if (argc < 1 || argc > 2) {
921 printf("Usage: %s [sec_info]\n", argv[0]);
922 return NT_STATUS_OK;
925 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
926 SEC_RIGHTS_MAXIMUM_ALLOWED,
927 &pol);
929 if (argc == 2)
930 sscanf(argv[1], "%x", &sec_info);
932 if (!NT_STATUS_IS_OK(result))
933 goto done;
935 result = rpccli_lsa_QuerySecurity(cli, mem_ctx,
936 &pol,
937 sec_info,
938 &sdb);
939 if (!NT_STATUS_IS_OK(result))
940 goto done;
942 /* Print results */
944 display_sec_desc(sdb->sd);
946 rpccli_lsa_Close(cli, mem_ctx, &pol);
947 done:
948 return result;
951 static void display_trust_dom_info_4(struct lsa_TrustDomainInfoPassword *p,
952 uint8_t nt_hash[16])
954 char *pwd, *pwd_old;
956 DATA_BLOB data = data_blob(NULL, p->password->length);
957 DATA_BLOB data_old = data_blob(NULL, p->old_password->length);
959 memcpy(data.data, p->password->data, p->password->length);
960 memcpy(data_old.data, p->old_password->data, p->old_password->length);
962 pwd = decrypt_trustdom_secret(nt_hash, &data);
963 pwd_old = decrypt_trustdom_secret(nt_hash, &data_old);
965 d_printf("Password:\t%s\n", pwd);
966 d_printf("Old Password:\t%s\n", pwd_old);
968 SAFE_FREE(pwd);
969 SAFE_FREE(pwd_old);
971 data_blob_free(&data);
972 data_blob_free(&data_old);
975 static void display_trust_dom_info(TALLOC_CTX *mem_ctx,
976 union lsa_TrustedDomainInfo *info,
977 enum lsa_TrustDomInfoEnum info_class,
978 uint8_t nt_hash[16])
980 switch (info_class) {
981 case LSA_TRUSTED_DOMAIN_INFO_PASSWORD:
982 display_trust_dom_info_4(&info->password, nt_hash);
983 break;
984 default: {
985 const char *str = NULL;
986 str = NDR_PRINT_UNION_STRING(mem_ctx,
987 lsa_TrustedDomainInfo,
988 info_class, info);
989 if (str) {
990 d_printf("%s\n", str);
992 break;
997 static NTSTATUS cmd_lsa_query_trustdominfobysid(struct rpc_pipe_client *cli,
998 TALLOC_CTX *mem_ctx, int argc,
999 const char **argv)
1001 POLICY_HND pol;
1002 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1003 DOM_SID dom_sid;
1004 uint32 access_mask = SEC_RIGHTS_MAXIMUM_ALLOWED;
1005 union lsa_TrustedDomainInfo *info = NULL;
1006 enum lsa_TrustDomInfoEnum info_class = 1;
1007 uint8_t nt_hash[16];
1009 if (argc > 3 || argc < 2) {
1010 printf("Usage: %s [sid] [info_class]\n", argv[0]);
1011 return NT_STATUS_OK;
1014 if (!string_to_sid(&dom_sid, argv[1]))
1015 return NT_STATUS_NO_MEMORY;
1017 if (argc == 3)
1018 info_class = atoi(argv[2]);
1020 result = rpccli_lsa_open_policy2(cli, mem_ctx, True, access_mask, &pol);
1022 if (!NT_STATUS_IS_OK(result))
1023 goto done;
1025 result = rpccli_lsa_QueryTrustedDomainInfoBySid(cli, mem_ctx,
1026 &pol,
1027 &dom_sid,
1028 info_class,
1029 &info);
1030 if (!NT_STATUS_IS_OK(result))
1031 goto done;
1033 if (!rpccli_get_pwd_hash(cli, nt_hash)) {
1034 d_fprintf(stderr, "Could not get pwd hash\n");
1035 goto done;
1038 display_trust_dom_info(mem_ctx, info, info_class, nt_hash);
1040 done:
1041 rpccli_lsa_Close(cli, mem_ctx, &pol);
1043 return result;
1046 static NTSTATUS cmd_lsa_query_trustdominfobyname(struct rpc_pipe_client *cli,
1047 TALLOC_CTX *mem_ctx, int argc,
1048 const char **argv)
1050 POLICY_HND pol;
1051 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1052 uint32 access_mask = SEC_RIGHTS_MAXIMUM_ALLOWED;
1053 union lsa_TrustedDomainInfo *info = NULL;
1054 enum lsa_TrustDomInfoEnum info_class = 1;
1055 struct lsa_String trusted_domain;
1056 uint8_t nt_hash[16];
1058 if (argc > 3 || argc < 2) {
1059 printf("Usage: %s [name] [info_class]\n", argv[0]);
1060 return NT_STATUS_OK;
1063 if (argc == 3)
1064 info_class = atoi(argv[2]);
1066 result = rpccli_lsa_open_policy2(cli, mem_ctx, True, access_mask, &pol);
1068 if (!NT_STATUS_IS_OK(result))
1069 goto done;
1071 init_lsa_String(&trusted_domain, argv[1]);
1073 result = rpccli_lsa_QueryTrustedDomainInfoByName(cli, mem_ctx,
1074 &pol,
1075 &trusted_domain,
1076 info_class,
1077 &info);
1078 if (!NT_STATUS_IS_OK(result))
1079 goto done;
1081 if (!rpccli_get_pwd_hash(cli, nt_hash)) {
1082 d_fprintf(stderr, "Could not get pwd hash\n");
1083 goto done;
1086 display_trust_dom_info(mem_ctx, info, info_class, nt_hash);
1088 done:
1089 rpccli_lsa_Close(cli, mem_ctx, &pol);
1091 return result;
1094 static NTSTATUS cmd_lsa_query_trustdominfo(struct rpc_pipe_client *cli,
1095 TALLOC_CTX *mem_ctx, int argc,
1096 const char **argv)
1098 POLICY_HND pol, trustdom_pol;
1099 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1100 uint32 access_mask = SEC_RIGHTS_MAXIMUM_ALLOWED;
1101 union lsa_TrustedDomainInfo *info = NULL;
1102 DOM_SID dom_sid;
1103 enum lsa_TrustDomInfoEnum info_class = 1;
1104 uint8_t nt_hash[16];
1106 if (argc > 3 || argc < 2) {
1107 printf("Usage: %s [sid] [info_class]\n", argv[0]);
1108 return NT_STATUS_OK;
1111 if (!string_to_sid(&dom_sid, argv[1]))
1112 return NT_STATUS_NO_MEMORY;
1115 if (argc == 3)
1116 info_class = atoi(argv[2]);
1118 result = rpccli_lsa_open_policy2(cli, mem_ctx, True, access_mask, &pol);
1120 if (!NT_STATUS_IS_OK(result))
1121 goto done;
1123 result = rpccli_lsa_OpenTrustedDomain(cli, mem_ctx,
1124 &pol,
1125 &dom_sid,
1126 access_mask,
1127 &trustdom_pol);
1129 if (!NT_STATUS_IS_OK(result))
1130 goto done;
1132 result = rpccli_lsa_QueryTrustedDomainInfo(cli, mem_ctx,
1133 &trustdom_pol,
1134 info_class,
1135 &info);
1137 if (!NT_STATUS_IS_OK(result))
1138 goto done;
1140 if (!rpccli_get_pwd_hash(cli, nt_hash)) {
1141 d_fprintf(stderr, "Could not get pwd hash\n");
1142 goto done;
1145 display_trust_dom_info(mem_ctx, info, info_class, nt_hash);
1147 done:
1148 rpccli_lsa_Close(cli, mem_ctx, &pol);
1150 return result;
1153 static NTSTATUS cmd_lsa_get_username(struct rpc_pipe_client *cli,
1154 TALLOC_CTX *mem_ctx, int argc,
1155 const char **argv)
1157 POLICY_HND pol;
1158 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1159 const char *servername = cli->desthost;
1160 struct lsa_String *account_name = NULL;
1161 struct lsa_String *authority_name = NULL;
1163 if (argc > 2) {
1164 printf("Usage: %s servername\n", argv[0]);
1165 return NT_STATUS_OK;
1168 result = rpccli_lsa_open_policy(cli, mem_ctx, true,
1169 SEC_RIGHTS_MAXIMUM_ALLOWED,
1170 &pol);
1172 if (!NT_STATUS_IS_OK(result)) {
1173 goto done;
1176 result = rpccli_lsa_GetUserName(cli, mem_ctx,
1177 servername,
1178 &account_name,
1179 &authority_name);
1180 if (!NT_STATUS_IS_OK(result)) {
1181 goto done;
1184 /* Print results */
1186 printf("Account Name: %s, Authority Name: %s\n",
1187 account_name->string, authority_name->string);
1189 rpccli_lsa_Close(cli, mem_ctx, &pol);
1190 done:
1191 return result;
1194 static NTSTATUS cmd_lsa_add_priv(struct rpc_pipe_client *cli,
1195 TALLOC_CTX *mem_ctx, int argc,
1196 const char **argv)
1198 POLICY_HND dom_pol, user_pol;
1199 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1200 struct lsa_PrivilegeSet privs;
1201 struct lsa_LUIDAttribute *set = NULL;
1202 DOM_SID sid;
1203 int i;
1205 ZERO_STRUCT(privs);
1207 if (argc < 3 ) {
1208 printf("Usage: %s SID [rights...]\n", argv[0]);
1209 return NT_STATUS_OK;
1212 result = name_to_sid(cli, mem_ctx, &sid, argv[1]);
1213 if (!NT_STATUS_IS_OK(result)) {
1214 goto done;
1217 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
1218 SEC_RIGHTS_MAXIMUM_ALLOWED,
1219 &dom_pol);
1221 if (!NT_STATUS_IS_OK(result)) {
1222 goto done;
1225 result = rpccli_lsa_OpenAccount(cli, mem_ctx,
1226 &dom_pol,
1227 &sid,
1228 SEC_RIGHTS_MAXIMUM_ALLOWED,
1229 &user_pol);
1231 if (!NT_STATUS_IS_OK(result)) {
1232 goto done;
1235 for (i=2; i<argc; i++) {
1237 struct lsa_String priv_name;
1238 struct lsa_LUID luid;
1240 init_lsa_String(&priv_name, argv[i]);
1242 result = rpccli_lsa_LookupPrivValue(cli, mem_ctx,
1243 &dom_pol,
1244 &priv_name,
1245 &luid);
1246 if (!NT_STATUS_IS_OK(result)) {
1247 continue;
1250 privs.count++;
1251 set = TALLOC_REALLOC_ARRAY(mem_ctx, set,
1252 struct lsa_LUIDAttribute,
1253 privs.count);
1254 if (!set) {
1255 return NT_STATUS_NO_MEMORY;
1258 set[privs.count-1].luid = luid;
1259 set[privs.count-1].attribute = 0;
1262 privs.set = set;
1264 result = rpccli_lsa_AddPrivilegesToAccount(cli, mem_ctx,
1265 &user_pol,
1266 &privs);
1268 if (!NT_STATUS_IS_OK(result)) {
1269 goto done;
1272 rpccli_lsa_Close(cli, mem_ctx, &user_pol);
1273 rpccli_lsa_Close(cli, mem_ctx, &dom_pol);
1274 done:
1275 return result;
1278 static NTSTATUS cmd_lsa_del_priv(struct rpc_pipe_client *cli,
1279 TALLOC_CTX *mem_ctx, int argc,
1280 const char **argv)
1282 POLICY_HND dom_pol, user_pol;
1283 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1284 struct lsa_PrivilegeSet privs;
1285 struct lsa_LUIDAttribute *set = NULL;
1286 DOM_SID sid;
1287 int i;
1289 ZERO_STRUCT(privs);
1291 if (argc < 3 ) {
1292 printf("Usage: %s SID [rights...]\n", argv[0]);
1293 return NT_STATUS_OK;
1296 result = name_to_sid(cli, mem_ctx, &sid, argv[1]);
1297 if (!NT_STATUS_IS_OK(result)) {
1298 goto done;
1301 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
1302 SEC_RIGHTS_MAXIMUM_ALLOWED,
1303 &dom_pol);
1305 if (!NT_STATUS_IS_OK(result)) {
1306 goto done;
1309 result = rpccli_lsa_OpenAccount(cli, mem_ctx,
1310 &dom_pol,
1311 &sid,
1312 SEC_RIGHTS_MAXIMUM_ALLOWED,
1313 &user_pol);
1315 if (!NT_STATUS_IS_OK(result)) {
1316 goto done;
1319 for (i=2; i<argc; i++) {
1321 struct lsa_String priv_name;
1322 struct lsa_LUID luid;
1324 init_lsa_String(&priv_name, argv[i]);
1326 result = rpccli_lsa_LookupPrivValue(cli, mem_ctx,
1327 &dom_pol,
1328 &priv_name,
1329 &luid);
1330 if (!NT_STATUS_IS_OK(result)) {
1331 continue;
1334 privs.count++;
1335 set = TALLOC_REALLOC_ARRAY(mem_ctx, set,
1336 struct lsa_LUIDAttribute,
1337 privs.count);
1338 if (!set) {
1339 return NT_STATUS_NO_MEMORY;
1342 set[privs.count-1].luid = luid;
1343 set[privs.count-1].attribute = 0;
1346 privs.set = set;
1349 result = rpccli_lsa_RemovePrivilegesFromAccount(cli, mem_ctx,
1350 &user_pol,
1351 false,
1352 &privs);
1354 if (!NT_STATUS_IS_OK(result)) {
1355 goto done;
1358 rpccli_lsa_Close(cli, mem_ctx, &user_pol);
1359 rpccli_lsa_Close(cli, mem_ctx, &dom_pol);
1360 done:
1361 return result;
1365 /* List of commands exported by this module */
1367 struct cmd_set lsarpc_commands[] = {
1369 { "LSARPC" },
1371 { "lsaquery", RPC_RTYPE_NTSTATUS, cmd_lsa_query_info_policy, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Query info policy", "" },
1372 { "lookupsids", RPC_RTYPE_NTSTATUS, cmd_lsa_lookup_sids, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Convert SIDs to names", "" },
1373 { "lookupnames", RPC_RTYPE_NTSTATUS, cmd_lsa_lookup_names, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Convert names to SIDs", "" },
1374 { "lookupnames_level", RPC_RTYPE_NTSTATUS, cmd_lsa_lookup_names_level, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Convert names to SIDs", "" },
1375 { "enumtrust", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_trust_dom, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Enumerate trusted domains", "Usage: [preferred max number] [enum context (0)]" },
1376 { "enumprivs", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_privilege, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Enumerate privileges", "" },
1377 { "getdispname", RPC_RTYPE_NTSTATUS, cmd_lsa_get_dispname, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Get the privilege name", "" },
1378 { "lsaenumsid", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_sids, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Enumerate the LSA SIDS", "" },
1379 { "lsacreateaccount", RPC_RTYPE_NTSTATUS, cmd_lsa_create_account, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Create a new lsa account", "" },
1380 { "lsaenumprivsaccount", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_privsaccounts, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Enumerate the privileges of an SID", "" },
1381 { "lsaenumacctrights", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_acct_rights, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Enumerate the rights of an SID", "" },
1382 { "lsaaddpriv", RPC_RTYPE_NTSTATUS, cmd_lsa_add_priv, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Assign a privilege to a SID", "" },
1383 { "lsadelpriv", RPC_RTYPE_NTSTATUS, cmd_lsa_del_priv, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Revoke a privilege from a SID", "" },
1384 { "lsaaddacctrights", RPC_RTYPE_NTSTATUS, cmd_lsa_add_acct_rights, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Add rights to an account", "" },
1385 { "lsaremoveacctrights", RPC_RTYPE_NTSTATUS, cmd_lsa_remove_acct_rights, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Remove rights from an account", "" },
1386 { "lsalookupprivvalue", RPC_RTYPE_NTSTATUS, cmd_lsa_lookup_priv_value, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Get a privilege value given its name", "" },
1387 { "lsaquerysecobj", RPC_RTYPE_NTSTATUS, cmd_lsa_query_secobj, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Query LSA security object", "" },
1388 { "lsaquerytrustdominfo",RPC_RTYPE_NTSTATUS, cmd_lsa_query_trustdominfo, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Query LSA trusted domains info (given a SID)", "" },
1389 { "lsaquerytrustdominfobyname",RPC_RTYPE_NTSTATUS, cmd_lsa_query_trustdominfobyname, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Query LSA trusted domains info (given a name), only works for Windows > 2k", "" },
1390 { "lsaquerytrustdominfobysid",RPC_RTYPE_NTSTATUS, cmd_lsa_query_trustdominfobysid, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Query LSA trusted domains info (given a SID)", "" },
1391 { "getusername", RPC_RTYPE_NTSTATUS, cmd_lsa_get_username, NULL, &ndr_table_lsarpc.syntax_id, NULL, "Get username", "" },
1393 { NULL }