2 Unix SMB/CIFS implementation.
5 Copyright (C) Tim Potter 2000
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "rpcclient.h"
25 /* Look up domain related information on a remote host */
27 static NTSTATUS
cmd_lsa_query_info_policy(struct cli_state
*cli
,
28 TALLOC_CTX
*mem_ctx
, int argc
,
32 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
34 fstring sid_str
, domain_name
;
35 uint32 info_class
= 3;
38 printf("Usage: %s [info_class]\n", argv
[0]);
43 info_class
= atoi(argv
[1]);
45 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
46 SEC_RIGHTS_MAXIMUM_ALLOWED
,
49 if (!NT_STATUS_IS_OK(result
))
52 /* Lookup info policy */
54 result
= cli_lsa_query_info_policy(cli
, mem_ctx
, &pol
, info_class
,
55 domain_name
, &dom_sid
);
57 if (!NT_STATUS_IS_OK(result
))
60 sid_to_string(sid_str
, &dom_sid
);
63 printf("domain %s has sid %s\n", domain_name
, sid_str
);
65 printf("could not query info for level %d\n", info_class
);
71 /* Resolve a list of names to a list of sids */
73 static NTSTATUS
cmd_lsa_lookup_names(struct cli_state
*cli
,
74 TALLOC_CTX
*mem_ctx
, int argc
,
78 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
84 printf("Usage: %s [name1 [name2 [...]]]\n", argv
[0]);
88 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
89 SEC_RIGHTS_MAXIMUM_ALLOWED
,
92 if (!NT_STATUS_IS_OK(result
))
95 result
= cli_lsa_lookup_names(cli
, mem_ctx
, &pol
, argc
- 1,
96 (const char**)(argv
+ 1), &sids
, &types
);
98 if (!NT_STATUS_IS_OK(result
) && NT_STATUS_V(result
) !=
99 NT_STATUS_V(STATUS_SOME_UNMAPPED
))
102 result
= NT_STATUS_OK
;
106 for (i
= 0; i
< (argc
- 1); i
++) {
109 sid_to_string(sid_str
, &sids
[i
]);
110 printf("%s %s (%d)\n", argv
[i
+ 1], sid_str
,
118 /* Resolve a list of SIDs to a list of names */
120 static NTSTATUS
cmd_lsa_lookup_sids(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
121 int argc
, char **argv
)
124 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
132 printf("Usage: %s [sid1 [sid2 [...]]]\n", argv
[0]);
136 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
137 SEC_RIGHTS_MAXIMUM_ALLOWED
,
140 if (!NT_STATUS_IS_OK(result
))
143 /* Convert arguments to sids */
145 sids
= (DOM_SID
*)talloc(mem_ctx
, sizeof(DOM_SID
) * (argc
- 1));
148 printf("could not allocate memory for %d sids\n", argc
- 1);
152 for (i
= 0; i
< argc
- 1; i
++)
153 string_to_sid(&sids
[i
], argv
[i
+ 1]);
155 /* Lookup the SIDs */
157 result
= cli_lsa_lookup_sids(cli
, mem_ctx
, &pol
, argc
- 1, sids
,
158 &domains
, &names
, &types
);
160 if (!NT_STATUS_IS_OK(result
) && NT_STATUS_V(result
) !=
161 NT_STATUS_V(STATUS_SOME_UNMAPPED
))
164 result
= NT_STATUS_OK
;
168 for (i
= 0; i
< (argc
- 1); i
++) {
171 sid_to_string(sid_str
, &sids
[i
]);
172 printf("%s %s\\%s (%d)\n", sid_str
,
173 domains
[i
] ? domains
[i
] : "*unknown*",
174 names
[i
] ? names
[i
] : "*unknown*", types
[i
]);
181 /* Enumerate list of trusted domains */
183 static NTSTATUS
cmd_lsa_enum_trust_dom(struct cli_state
*cli
,
184 TALLOC_CTX
*mem_ctx
, int argc
,
188 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
189 DOM_SID
*domain_sids
;
196 printf("Usage: %s\n", argv
[0]);
200 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
201 SEC_RIGHTS_MAXIMUM_ALLOWED
,
204 if (!NT_STATUS_IS_OK(result
))
207 /* Lookup list of trusted domains */
209 result
= cli_lsa_enum_trust_dom(cli
, mem_ctx
, &pol
, &enum_ctx
,
210 &num_domains
, &domain_names
,
213 if (!NT_STATUS_IS_OK(result
))
218 for (i
= 0; i
< num_domains
; i
++) {
221 sid_to_string(sid_str
, &domain_sids
[i
]);
222 printf("%s %s\n", domain_names
[i
] ? domain_names
[i
] :
223 "*unknown*", sid_str
);
230 /* Enumerates privileges */
232 static NTSTATUS
cmd_lsa_enum_privilege(struct cli_state
*cli
,
233 TALLOC_CTX
*mem_ctx
, int argc
,
237 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
239 uint32 enum_context
=0;
240 uint32 pref_max_length
=0x1000;
248 printf("Usage: %s [enum context] [max length]\n", argv
[0]);
253 enum_context
=atoi(argv
[1]);
256 pref_max_length
=atoi(argv
[2]);
258 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
259 SEC_RIGHTS_MAXIMUM_ALLOWED
,
262 if (!NT_STATUS_IS_OK(result
))
265 result
= cli_lsa_enum_privilege(cli
, mem_ctx
, &pol
, &enum_context
, pref_max_length
,
266 &count
, &privs_name
, &privs_high
, &privs_low
);
268 if (!NT_STATUS_IS_OK(result
))
272 printf("found %d privileges\n\n", count
);
274 for (i
= 0; i
< count
; i
++) {
275 printf("%s \t\t%d:%d (0x%x:0x%x)\n", privs_name
[i
] ? privs_name
[i
] : "*unknown*",
276 privs_high
[i
], privs_low
[i
], privs_high
[i
], privs_low
[i
]);
283 /* Get privilege name */
285 static NTSTATUS
cmd_lsa_get_dispname(struct cli_state
*cli
,
286 TALLOC_CTX
*mem_ctx
, int argc
,
290 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
293 uint16 lang_id_sys
=0;
298 printf("Usage: %s privilege name\n", argv
[0]);
302 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
303 SEC_RIGHTS_MAXIMUM_ALLOWED
,
306 if (!NT_STATUS_IS_OK(result
))
309 result
= cli_lsa_get_dispname(cli
, mem_ctx
, &pol
, argv
[1], lang_id
, lang_id_sys
, description
, &lang_id_desc
);
311 if (!NT_STATUS_IS_OK(result
))
315 printf("%s -> %s (language: 0x%x)\n", argv
[1], description
, lang_id_desc
);
321 /* Enumerate the LSA SIDS */
323 static NTSTATUS
cmd_lsa_enum_sids(struct cli_state
*cli
,
324 TALLOC_CTX
*mem_ctx
, int argc
,
328 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
330 uint32 enum_context
=0;
331 uint32 pref_max_length
=0x1000;
337 printf("Usage: %s [enum context] [max length]\n", argv
[0]);
342 enum_context
=atoi(argv
[1]);
345 pref_max_length
=atoi(argv
[2]);
347 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
348 SEC_RIGHTS_MAXIMUM_ALLOWED
,
351 if (!NT_STATUS_IS_OK(result
))
354 result
= cli_lsa_enum_sids(cli
, mem_ctx
, &pol
, &enum_context
, pref_max_length
,
357 if (!NT_STATUS_IS_OK(result
))
361 printf("found %d SIDs\n\n", count
);
363 for (i
= 0; i
< count
; i
++) {
366 sid_to_string(sid_str
, &sids
[i
]);
367 printf("%s\n", sid_str
);
374 /* Enumerate the privileges of an SID */
376 static NTSTATUS
cmd_lsa_enum_privsaccounts(struct cli_state
*cli
,
377 TALLOC_CTX
*mem_ctx
, int argc
,
382 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
383 uint32 access_desired
= 0x000f000f;
391 printf("Usage: %s SID\n", argv
[0]);
395 string_to_sid(&sid
, argv
[1]);
397 result
= cli_lsa_open_policy2(cli
, mem_ctx
, True
,
398 SEC_RIGHTS_MAXIMUM_ALLOWED
,
401 if (!NT_STATUS_IS_OK(result
))
404 result
= cli_lsa_open_account(cli
, mem_ctx
, &dom_pol
, &sid
, access_desired
, &user_pol
);
406 if (!NT_STATUS_IS_OK(result
))
409 result
= cli_lsa_enum_privsaccount(cli
, mem_ctx
, &user_pol
, &count
, &set
);
411 if (!NT_STATUS_IS_OK(result
))
415 printf("found %d privileges for SID %s\n\n", count
, argv
[1]);
416 printf("high\tlow\tattribute\n");
418 for (i
= 0; i
< count
; i
++) {
419 printf("%u\t%u\t%u\n", set
[i
].luid
.high
, set
[i
].luid
.low
, set
[i
].attr
);
426 /* Get a privilege value given its name */
428 static NTSTATUS
cmd_lsa_lookupprivvalue(struct cli_state
*cli
,
429 TALLOC_CTX
*mem_ctx
, int argc
,
433 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
437 printf("Usage: %s name\n", argv
[0]);
441 result
= cli_lsa_open_policy2(cli
, mem_ctx
, True
,
442 SEC_RIGHTS_MAXIMUM_ALLOWED
,
445 if (!NT_STATUS_IS_OK(result
))
448 result
= cli_lsa_lookupprivvalue(cli
, mem_ctx
, &pol
, argv
[1], &luid
);
450 if (!NT_STATUS_IS_OK(result
))
455 printf("%u:%u (0x%x:0x%x)\n", luid
.high
, luid
.low
, luid
.high
, luid
.low
);
461 /* Query LSA security object */
463 static NTSTATUS
cmd_lsa_query_secobj(struct cli_state
*cli
,
464 TALLOC_CTX
*mem_ctx
, int argc
,
468 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
470 uint32 sec_info
= 0x00000004; /* ??? */
473 printf("Usage: %s\n", argv
[0]);
477 result
= cli_lsa_open_policy2(cli
, mem_ctx
, True
,
478 SEC_RIGHTS_MAXIMUM_ALLOWED
,
481 if (!NT_STATUS_IS_OK(result
))
484 result
= cli_lsa_query_secobj(cli
, mem_ctx
, &pol
, sec_info
, &sdb
);
486 if (!NT_STATUS_IS_OK(result
))
491 display_sec_desc(sdb
->sec
);
497 /* List of commands exported by this module */
499 struct cmd_set lsarpc_commands
[] = {
503 { "lsaquery", cmd_lsa_query_info_policy
, PIPE_LSARPC
, "Query info policy", "" },
504 { "lookupsids", cmd_lsa_lookup_sids
, PIPE_LSARPC
, "Convert SIDs to names", "" },
505 { "lookupnames", cmd_lsa_lookup_names
, PIPE_LSARPC
, "Convert names to SIDs", "" },
506 { "enumtrust", cmd_lsa_enum_trust_dom
, PIPE_LSARPC
, "Enumerate trusted domains", "" },
507 { "enumprivs", cmd_lsa_enum_privilege
, PIPE_LSARPC
, "Enumerate privileges", "" },
508 { "getdispname", cmd_lsa_get_dispname
, PIPE_LSARPC
, "Get the privilege name", "" },
509 { "lsaenumsid", cmd_lsa_enum_sids
, PIPE_LSARPC
, "Enumerate the LSA SIDS", "" },
510 { "lsaenumprivsaccount", cmd_lsa_enum_privsaccounts
, PIPE_LSARPC
, "Enumerate the privileges of an SID", "" },
511 { "lsalookupprivvalue", cmd_lsa_lookupprivvalue
, PIPE_LSARPC
, "Get a privilege value given its name", "" },
512 { "lsaquerysecobj", cmd_lsa_query_secobj
, PIPE_LSARPC
, "Query LSA security object", "" },