re-run make idl.
[Samba.git] / source / rpcclient / cmd_lsarpc.c
blobbefb0f0407927a76bd691f1cab4b14b3aa33d7e4
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-2; 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, const char *password)
953 char *pwd, *pwd_old;
955 DATA_BLOB data = data_blob(NULL, p->password->length);
956 DATA_BLOB data_old = data_blob(NULL, p->old_password->length);
958 memcpy(data.data, p->password->data, p->password->length);
959 memcpy(data_old.data, p->old_password->data, p->old_password->length);
961 pwd = decrypt_trustdom_secret(password, &data);
962 pwd_old = decrypt_trustdom_secret(password, &data_old);
964 d_printf("Password:\t%s\n", pwd);
965 d_printf("Old Password:\t%s\n", pwd_old);
967 SAFE_FREE(pwd);
968 SAFE_FREE(pwd_old);
970 data_blob_free(&data);
971 data_blob_free(&data_old);
974 static void display_trust_dom_info(TALLOC_CTX *mem_ctx,
975 union lsa_TrustedDomainInfo *info,
976 enum lsa_TrustDomInfoEnum info_class,
977 const char *pass)
979 switch (info_class) {
980 case LSA_TRUSTED_DOMAIN_INFO_PASSWORD:
981 display_trust_dom_info_4(&info->password, pass);
982 break;
983 default: {
984 const char *str = NULL;
985 str = NDR_PRINT_UNION_STRING(mem_ctx,
986 lsa_TrustedDomainInfo,
987 info_class, info);
988 if (str) {
989 d_printf("%s\n", str);
991 break;
996 static NTSTATUS cmd_lsa_query_trustdominfobysid(struct rpc_pipe_client *cli,
997 TALLOC_CTX *mem_ctx, int argc,
998 const char **argv)
1000 POLICY_HND pol;
1001 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1002 DOM_SID dom_sid;
1003 uint32 access_mask = SEC_RIGHTS_MAXIMUM_ALLOWED;
1004 union lsa_TrustedDomainInfo *info = NULL;
1005 enum lsa_TrustDomInfoEnum info_class = 1;
1007 if (argc > 3 || argc < 2) {
1008 printf("Usage: %s [sid] [info_class]\n", argv[0]);
1009 return NT_STATUS_OK;
1012 if (!string_to_sid(&dom_sid, argv[1]))
1013 return NT_STATUS_NO_MEMORY;
1015 if (argc == 3)
1016 info_class = atoi(argv[2]);
1018 result = rpccli_lsa_open_policy2(cli, mem_ctx, True, access_mask, &pol);
1020 if (!NT_STATUS_IS_OK(result))
1021 goto done;
1023 result = rpccli_lsa_QueryTrustedDomainInfoBySid(cli, mem_ctx,
1024 &pol,
1025 &dom_sid,
1026 info_class,
1027 &info);
1028 if (!NT_STATUS_IS_OK(result))
1029 goto done;
1031 display_trust_dom_info(mem_ctx, info, info_class, cli->pwd.password);
1033 done:
1034 rpccli_lsa_Close(cli, mem_ctx, &pol);
1036 return result;
1039 static NTSTATUS cmd_lsa_query_trustdominfobyname(struct rpc_pipe_client *cli,
1040 TALLOC_CTX *mem_ctx, int argc,
1041 const char **argv)
1043 POLICY_HND pol;
1044 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1045 uint32 access_mask = SEC_RIGHTS_MAXIMUM_ALLOWED;
1046 union lsa_TrustedDomainInfo *info = NULL;
1047 enum lsa_TrustDomInfoEnum info_class = 1;
1048 struct lsa_String trusted_domain;
1050 if (argc > 3 || argc < 2) {
1051 printf("Usage: %s [name] [info_class]\n", argv[0]);
1052 return NT_STATUS_OK;
1055 if (argc == 3)
1056 info_class = atoi(argv[2]);
1058 result = rpccli_lsa_open_policy2(cli, mem_ctx, True, access_mask, &pol);
1060 if (!NT_STATUS_IS_OK(result))
1061 goto done;
1063 init_lsa_String(&trusted_domain, argv[1]);
1065 result = rpccli_lsa_QueryTrustedDomainInfoByName(cli, mem_ctx,
1066 &pol,
1067 &trusted_domain,
1068 info_class,
1069 &info);
1070 if (!NT_STATUS_IS_OK(result))
1071 goto done;
1073 display_trust_dom_info(mem_ctx, info, info_class, cli->pwd.password);
1075 done:
1076 rpccli_lsa_Close(cli, mem_ctx, &pol);
1078 return result;
1081 static NTSTATUS cmd_lsa_query_trustdominfo(struct rpc_pipe_client *cli,
1082 TALLOC_CTX *mem_ctx, int argc,
1083 const char **argv)
1085 POLICY_HND pol, trustdom_pol;
1086 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1087 uint32 access_mask = SEC_RIGHTS_MAXIMUM_ALLOWED;
1088 union lsa_TrustedDomainInfo *info = NULL;
1089 DOM_SID dom_sid;
1090 enum lsa_TrustDomInfoEnum info_class = 1;
1092 if (argc > 3 || argc < 2) {
1093 printf("Usage: %s [sid] [info_class]\n", argv[0]);
1094 return NT_STATUS_OK;
1097 if (!string_to_sid(&dom_sid, argv[1]))
1098 return NT_STATUS_NO_MEMORY;
1101 if (argc == 3)
1102 info_class = atoi(argv[2]);
1104 result = rpccli_lsa_open_policy2(cli, mem_ctx, True, access_mask, &pol);
1106 if (!NT_STATUS_IS_OK(result))
1107 goto done;
1109 result = rpccli_lsa_OpenTrustedDomain(cli, mem_ctx,
1110 &pol,
1111 &dom_sid,
1112 access_mask,
1113 &trustdom_pol);
1115 if (!NT_STATUS_IS_OK(result))
1116 goto done;
1118 result = rpccli_lsa_QueryTrustedDomainInfo(cli, mem_ctx,
1119 &trustdom_pol,
1120 info_class,
1121 &info);
1123 if (!NT_STATUS_IS_OK(result))
1124 goto done;
1126 display_trust_dom_info(mem_ctx, info, info_class, cli->pwd.password);
1128 done:
1129 rpccli_lsa_Close(cli, mem_ctx, &pol);
1131 return result;
1134 static NTSTATUS cmd_lsa_get_username(struct rpc_pipe_client *cli,
1135 TALLOC_CTX *mem_ctx, int argc,
1136 const char **argv)
1138 POLICY_HND pol;
1139 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1140 const char *servername = cli->cli->desthost;
1141 struct lsa_String *account_name = NULL;
1142 struct lsa_String *authority_name = NULL;
1144 if (argc > 2) {
1145 printf("Usage: %s servername\n", argv[0]);
1146 return NT_STATUS_OK;
1149 result = rpccli_lsa_open_policy(cli, mem_ctx, true,
1150 SEC_RIGHTS_MAXIMUM_ALLOWED,
1151 &pol);
1153 if (!NT_STATUS_IS_OK(result)) {
1154 goto done;
1157 result = rpccli_lsa_GetUserName(cli, mem_ctx,
1158 servername,
1159 &account_name,
1160 &authority_name);
1161 if (!NT_STATUS_IS_OK(result)) {
1162 goto done;
1165 /* Print results */
1167 printf("Account Name: %s, Authority Name: %s\n",
1168 account_name->string, authority_name->string);
1170 rpccli_lsa_Close(cli, mem_ctx, &pol);
1171 done:
1172 return result;
1175 static NTSTATUS cmd_lsa_add_priv(struct rpc_pipe_client *cli,
1176 TALLOC_CTX *mem_ctx, int argc,
1177 const char **argv)
1179 POLICY_HND dom_pol, user_pol;
1180 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1181 struct lsa_PrivilegeSet privs;
1182 struct lsa_LUIDAttribute *set = NULL;
1183 DOM_SID sid;
1184 int i;
1186 ZERO_STRUCT(privs);
1188 if (argc < 3 ) {
1189 printf("Usage: %s SID [rights...]\n", argv[0]);
1190 return NT_STATUS_OK;
1193 result = name_to_sid(cli, mem_ctx, &sid, argv[1]);
1194 if (!NT_STATUS_IS_OK(result)) {
1195 goto done;
1198 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
1199 SEC_RIGHTS_MAXIMUM_ALLOWED,
1200 &dom_pol);
1202 if (!NT_STATUS_IS_OK(result)) {
1203 goto done;
1206 result = rpccli_lsa_OpenAccount(cli, mem_ctx,
1207 &dom_pol,
1208 &sid,
1209 SEC_RIGHTS_MAXIMUM_ALLOWED,
1210 &user_pol);
1212 if (!NT_STATUS_IS_OK(result)) {
1213 goto done;
1216 for (i=2; i<argc; i++) {
1218 struct lsa_String priv_name;
1219 struct lsa_LUID luid;
1221 init_lsa_String(&priv_name, argv[i]);
1223 result = rpccli_lsa_LookupPrivValue(cli, mem_ctx,
1224 &dom_pol,
1225 &priv_name,
1226 &luid);
1227 if (!NT_STATUS_IS_OK(result)) {
1228 continue;
1231 privs.count++;
1232 set = TALLOC_REALLOC_ARRAY(mem_ctx, set,
1233 struct lsa_LUIDAttribute,
1234 privs.count);
1235 if (!set) {
1236 return NT_STATUS_NO_MEMORY;
1239 set[privs.count-1].luid = luid;
1240 set[privs.count-1].attribute = 0;
1243 privs.set = set;
1245 result = rpccli_lsa_AddPrivilegesToAccount(cli, mem_ctx,
1246 &user_pol,
1247 &privs);
1249 if (!NT_STATUS_IS_OK(result)) {
1250 goto done;
1253 rpccli_lsa_Close(cli, mem_ctx, &user_pol);
1254 rpccli_lsa_Close(cli, mem_ctx, &dom_pol);
1255 done:
1256 return result;
1259 static NTSTATUS cmd_lsa_del_priv(struct rpc_pipe_client *cli,
1260 TALLOC_CTX *mem_ctx, int argc,
1261 const char **argv)
1263 POLICY_HND dom_pol, user_pol;
1264 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1265 struct lsa_PrivilegeSet privs;
1266 struct lsa_LUIDAttribute *set = NULL;
1267 DOM_SID sid;
1268 int i;
1270 ZERO_STRUCT(privs);
1272 if (argc < 3 ) {
1273 printf("Usage: %s SID [rights...]\n", argv[0]);
1274 return NT_STATUS_OK;
1277 result = name_to_sid(cli, mem_ctx, &sid, argv[1]);
1278 if (!NT_STATUS_IS_OK(result)) {
1279 goto done;
1282 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
1283 SEC_RIGHTS_MAXIMUM_ALLOWED,
1284 &dom_pol);
1286 if (!NT_STATUS_IS_OK(result)) {
1287 goto done;
1290 result = rpccli_lsa_OpenAccount(cli, mem_ctx,
1291 &dom_pol,
1292 &sid,
1293 SEC_RIGHTS_MAXIMUM_ALLOWED,
1294 &user_pol);
1296 if (!NT_STATUS_IS_OK(result)) {
1297 goto done;
1300 for (i=2; i<argc; i++) {
1302 struct lsa_String priv_name;
1303 struct lsa_LUID luid;
1305 init_lsa_String(&priv_name, argv[i]);
1307 result = rpccli_lsa_LookupPrivValue(cli, mem_ctx,
1308 &dom_pol,
1309 &priv_name,
1310 &luid);
1311 if (!NT_STATUS_IS_OK(result)) {
1312 continue;
1315 privs.count++;
1316 set = TALLOC_REALLOC_ARRAY(mem_ctx, set,
1317 struct lsa_LUIDAttribute,
1318 privs.count);
1319 if (!set) {
1320 return NT_STATUS_NO_MEMORY;
1323 set[privs.count-1].luid = luid;
1324 set[privs.count-1].attribute = 0;
1327 privs.set = set;
1330 result = rpccli_lsa_RemovePrivilegesFromAccount(cli, mem_ctx,
1331 &user_pol,
1332 false,
1333 &privs);
1335 if (!NT_STATUS_IS_OK(result)) {
1336 goto done;
1339 rpccli_lsa_Close(cli, mem_ctx, &user_pol);
1340 rpccli_lsa_Close(cli, mem_ctx, &dom_pol);
1341 done:
1342 return result;
1346 /* List of commands exported by this module */
1348 struct cmd_set lsarpc_commands[] = {
1350 { "LSARPC" },
1352 { "lsaquery", RPC_RTYPE_NTSTATUS, cmd_lsa_query_info_policy, NULL, PI_LSARPC, NULL, "Query info policy", "" },
1353 { "lookupsids", RPC_RTYPE_NTSTATUS, cmd_lsa_lookup_sids, NULL, PI_LSARPC, NULL, "Convert SIDs to names", "" },
1354 { "lookupnames", RPC_RTYPE_NTSTATUS, cmd_lsa_lookup_names, NULL, PI_LSARPC, NULL, "Convert names to SIDs", "" },
1355 { "lookupnames_level", RPC_RTYPE_NTSTATUS, cmd_lsa_lookup_names_level, NULL, PI_LSARPC, NULL, "Convert names to SIDs", "" },
1356 { "enumtrust", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_trust_dom, NULL, PI_LSARPC, NULL, "Enumerate trusted domains", "Usage: [preferred max number] [enum context (0)]" },
1357 { "enumprivs", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_privilege, NULL, PI_LSARPC, NULL, "Enumerate privileges", "" },
1358 { "getdispname", RPC_RTYPE_NTSTATUS, cmd_lsa_get_dispname, NULL, PI_LSARPC, NULL, "Get the privilege name", "" },
1359 { "lsaenumsid", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_sids, NULL, PI_LSARPC, NULL, "Enumerate the LSA SIDS", "" },
1360 { "lsacreateaccount", RPC_RTYPE_NTSTATUS, cmd_lsa_create_account, NULL, PI_LSARPC, NULL, "Create a new lsa account", "" },
1361 { "lsaenumprivsaccount", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_privsaccounts, NULL, PI_LSARPC, NULL, "Enumerate the privileges of an SID", "" },
1362 { "lsaenumacctrights", RPC_RTYPE_NTSTATUS, cmd_lsa_enum_acct_rights, NULL, PI_LSARPC, NULL, "Enumerate the rights of an SID", "" },
1363 { "lsaaddpriv", RPC_RTYPE_NTSTATUS, cmd_lsa_add_priv, NULL, PI_LSARPC, NULL, "Assign a privilege to a SID", "" },
1364 { "lsadelpriv", RPC_RTYPE_NTSTATUS, cmd_lsa_del_priv, NULL, PI_LSARPC, NULL, "Revoke a privilege from a SID", "" },
1365 { "lsaaddacctrights", RPC_RTYPE_NTSTATUS, cmd_lsa_add_acct_rights, NULL, PI_LSARPC, NULL, "Add rights to an account", "" },
1366 { "lsaremoveacctrights", RPC_RTYPE_NTSTATUS, cmd_lsa_remove_acct_rights, NULL, PI_LSARPC, NULL, "Remove rights from an account", "" },
1367 { "lsalookupprivvalue", RPC_RTYPE_NTSTATUS, cmd_lsa_lookup_priv_value, NULL, PI_LSARPC, NULL, "Get a privilege value given its name", "" },
1368 { "lsaquerysecobj", RPC_RTYPE_NTSTATUS, cmd_lsa_query_secobj, NULL, PI_LSARPC, NULL, "Query LSA security object", "" },
1369 { "lsaquerytrustdominfo",RPC_RTYPE_NTSTATUS, cmd_lsa_query_trustdominfo, NULL, PI_LSARPC, NULL, "Query LSA trusted domains info (given a SID)", "" },
1370 { "lsaquerytrustdominfobyname",RPC_RTYPE_NTSTATUS, cmd_lsa_query_trustdominfobyname, NULL, PI_LSARPC, NULL, "Query LSA trusted domains info (given a name), only works for Windows > 2k", "" },
1371 { "lsaquerytrustdominfobysid",RPC_RTYPE_NTSTATUS, cmd_lsa_query_trustdominfobysid, NULL, PI_LSARPC, NULL, "Query LSA trusted domains info (given a SID)", "" },
1372 { "getusername", RPC_RTYPE_NTSTATUS, cmd_lsa_get_username, NULL, PI_LSARPC, NULL, "Get username", "" },
1374 { NULL }