2 Unix SMB/CIFS implementation.
5 Copyright (C) Andrew Tridgell 2000
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Jeremy Allison 2000
8 Copyright (C) Jelmer Vernooij 2003
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.
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.
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/>.
25 #include "popt_common.h"
26 #include "rpc_client/cli_pipe.h"
27 #include "../librpc/gen_ndr/ndr_lsa.h"
28 #include "rpc_client/cli_lsarpc.h"
29 #include "../libcli/security/security.h"
30 #include "libsmb/libsmb.h"
31 #include "libsmb/clirap.h"
32 #include "passdb/machine_sid.h"
33 #include "../librpc/gen_ndr/ndr_lsa_c.h"
38 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
41 static int query_sec_info
= -1;
42 static int set_sec_info
= -1;
44 static const char *domain_sid
= NULL
;
46 enum acl_mode
{SMB_ACL_SET
, SMB_ACL_DELETE
, SMB_ACL_MODIFY
, SMB_ACL_ADD
};
47 enum chown_mode
{REQUEST_NONE
, REQUEST_CHOWN
, REQUEST_CHGRP
, REQUEST_INHERIT
};
48 enum exit_values
{EXIT_OK
, EXIT_FAILED
, EXIT_PARSE_ERROR
};
50 static NTSTATUS
cli_lsa_lookup_domain_sid(struct cli_state
*cli
,
53 union lsa_PolicyInformation
*info
= NULL
;
54 struct smbXcli_tcon
*orig_tcon
= NULL
;
55 struct rpc_pipe_client
*rpc_pipe
= NULL
;
56 struct policy_handle handle
;
57 NTSTATUS status
, result
;
58 TALLOC_CTX
*frame
= talloc_stackframe();
60 if (cli_state_has_tcon(cli
)) {
61 orig_tcon
= cli_state_save_tcon(cli
);
62 if (orig_tcon
== NULL
) {
63 status
= NT_STATUS_NO_MEMORY
;
68 status
= cli_tree_connect(cli
, "IPC$", "?????", NULL
);
69 if (!NT_STATUS_IS_OK(status
)) {
73 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_lsarpc
, &rpc_pipe
);
74 if (!NT_STATUS_IS_OK(status
)) {
78 status
= rpccli_lsa_open_policy(rpc_pipe
, frame
, True
,
79 GENERIC_EXECUTE_ACCESS
, &handle
);
80 if (!NT_STATUS_IS_OK(status
)) {
84 status
= dcerpc_lsa_QueryInfoPolicy2(rpc_pipe
->binding_handle
,
86 LSA_POLICY_INFO_DOMAIN
,
89 if (any_nt_status_not_ok(status
, result
, &status
)) {
93 *sid
= *info
->domain
.sid
;
96 TALLOC_FREE(rpc_pipe
);
99 cli_state_restore_tcon(cli
, orig_tcon
);
104 static struct dom_sid
*get_domain_sid(struct cli_state
*cli
)
108 struct dom_sid
*sid
= talloc(talloc_tos(), struct dom_sid
);
110 DEBUG(0, ("Out of memory\n"));
115 if (!dom_sid_parse(domain_sid
, sid
)) {
116 DEBUG(0,("failed to parse domain sid\n"));
120 status
= cli_lsa_lookup_domain_sid(cli
, sid
);
122 if (!NT_STATUS_IS_OK(status
)) {
123 DEBUG(0,("failed to lookup domain sid: %s\n", nt_errstr(status
)));
129 DEBUG(2,("Domain SID: %s\n", sid_string_dbg(sid
)));
133 /* add an ACE to a list of ACEs in a struct security_acl */
134 static bool add_ace(struct security_acl
**the_acl
, struct security_ace
*ace
)
136 struct security_acl
*new_ace
;
137 struct security_ace
*aces
;
139 return (((*the_acl
) = make_sec_acl(talloc_tos(), 3, 1, ace
))
143 if (!(aces
= SMB_CALLOC_ARRAY(struct security_ace
, 1+(*the_acl
)->num_aces
))) {
146 memcpy(aces
, (*the_acl
)->aces
, (*the_acl
)->num_aces
* sizeof(struct
148 memcpy(aces
+(*the_acl
)->num_aces
, ace
, sizeof(struct security_ace
));
149 new_ace
= make_sec_acl(talloc_tos(),(*the_acl
)->revision
,1+(*the_acl
)->num_aces
, aces
);
151 (*the_acl
) = new_ace
;
155 /* parse a ascii version of a security descriptor */
156 static struct security_descriptor
*sec_desc_parse(TALLOC_CTX
*ctx
, struct cli_state
*cli
, char *str
)
160 struct security_descriptor
*ret
= NULL
;
162 struct dom_sid
*grp_sid
=NULL
, *owner_sid
=NULL
;
163 struct security_acl
*dacl
=NULL
;
166 while (next_token_talloc(ctx
, &p
, &tok
, "\t,\r\n")) {
167 if (strncmp(tok
,"REVISION:", 9) == 0) {
168 revision
= strtol(tok
+9, NULL
, 16);
172 if (strncmp(tok
,"OWNER:", 6) == 0) {
174 printf("Only specify owner once\n");
177 owner_sid
= SMB_CALLOC_ARRAY(struct dom_sid
, 1);
179 !StringToSid(cli
, owner_sid
, tok
+6)) {
180 printf("Failed to parse owner sid\n");
186 if (strncmp(tok
,"GROUP:", 6) == 0) {
188 printf("Only specify group once\n");
191 grp_sid
= SMB_CALLOC_ARRAY(struct dom_sid
, 1);
193 !StringToSid(cli
, grp_sid
, tok
+6)) {
194 printf("Failed to parse group sid\n");
200 if (strncmp(tok
,"ACL:", 4) == 0) {
201 struct security_ace ace
;
202 if (!parse_ace(cli
, &ace
, tok
+4)) {
205 if(!add_ace(&dacl
, &ace
)) {
206 printf("Failed to add ACL %s\n", tok
);
212 printf("Failed to parse token '%s' in security descriptor,\n", tok
);
216 ret
= make_sec_desc(ctx
,revision
, SEC_DESC_SELF_RELATIVE
, owner_sid
, grp_sid
,
217 NULL
, dacl
, &sd_size
);
221 SAFE_FREE(owner_sid
);
226 /*****************************************************
227 get fileinfo for filename
228 *******************************************************/
229 static uint16_t get_fileinfo(struct cli_state
*cli
, const char *filename
)
231 uint16_t fnum
= (uint16_t)-1;
233 struct smb_create_returns cr
= {0};
235 /* The desired access below is the only one I could find that works
236 with NT4, W2KP and Samba */
238 status
= cli_ntcreate(cli
, filename
, 0, CREATE_ACCESS_READ
,
239 0, FILE_SHARE_READ
|FILE_SHARE_WRITE
,
240 FILE_OPEN
, 0x0, 0x0, &fnum
, &cr
);
241 if (!NT_STATUS_IS_OK(status
)) {
242 printf("Failed to open %s: %s\n", filename
, nt_errstr(status
));
246 cli_close(cli
, fnum
);
247 return cr
.file_attributes
;
250 /*****************************************************
251 get sec desc for filename
252 *******************************************************/
253 static struct security_descriptor
*get_secdesc(struct cli_state
*cli
, const char *filename
)
255 uint16_t fnum
= (uint16_t)-1;
256 struct security_descriptor
*sd
;
259 uint32_t desired_access
= 0;
261 if (query_sec_info
== -1) {
262 sec_info
= SECINFO_OWNER
| SECINFO_GROUP
| SECINFO_DACL
;
264 sec_info
= query_sec_info
;
267 if (sec_info
& (SECINFO_OWNER
| SECINFO_GROUP
| SECINFO_DACL
)) {
268 desired_access
|= SEC_STD_READ_CONTROL
;
270 if (sec_info
& SECINFO_SACL
) {
271 desired_access
|= SEC_FLAG_SYSTEM_SECURITY
;
274 if (desired_access
== 0) {
275 desired_access
|= SEC_STD_READ_CONTROL
;
278 status
= cli_ntcreate(cli
, filename
, 0, desired_access
,
279 0, FILE_SHARE_READ
|FILE_SHARE_WRITE
,
280 FILE_OPEN
, 0x0, 0x0, &fnum
, NULL
);
281 if (!NT_STATUS_IS_OK(status
)) {
282 printf("Failed to open %s: %s\n", filename
, nt_errstr(status
));
286 status
= cli_query_security_descriptor(cli
, fnum
, sec_info
,
289 cli_close(cli
, fnum
);
291 if (!NT_STATUS_IS_OK(status
)) {
292 printf("Failed to get security descriptor: %s\n",
299 /*****************************************************
300 set sec desc for filename
301 *******************************************************/
302 static bool set_secdesc(struct cli_state
*cli
, const char *filename
,
303 struct security_descriptor
*sd
)
305 uint16_t fnum
= (uint16_t)-1;
308 uint32_t desired_access
= 0;
311 if (set_sec_info
== -1) {
314 if (sd
->dacl
|| (sd
->type
& SEC_DESC_DACL_PRESENT
)) {
315 sec_info
|= SECINFO_DACL
;
317 if (sd
->sacl
|| (sd
->type
& SEC_DESC_SACL_PRESENT
)) {
318 sec_info
|= SECINFO_SACL
;
321 sec_info
|= SECINFO_OWNER
;
324 sec_info
|= SECINFO_GROUP
;
327 sec_info
= set_sec_info
;
330 /* Make the desired_access more specific. */
331 if (sec_info
& SECINFO_DACL
) {
332 desired_access
|= SEC_STD_WRITE_DAC
;
334 if (sec_info
& SECINFO_SACL
) {
335 desired_access
|= SEC_FLAG_SYSTEM_SECURITY
;
337 if (sec_info
& (SECINFO_OWNER
| SECINFO_GROUP
)) {
338 desired_access
|= SEC_STD_WRITE_OWNER
;
341 status
= cli_ntcreate(cli
, filename
, 0,
343 0, FILE_SHARE_READ
|FILE_SHARE_WRITE
,
344 FILE_OPEN
, 0x0, 0x0, &fnum
, NULL
);
345 if (!NT_STATUS_IS_OK(status
)) {
346 printf("Failed to open %s: %s\n", filename
, nt_errstr(status
));
350 status
= cli_set_security_descriptor(cli
, fnum
, sec_info
, sd
);
351 if (!NT_STATUS_IS_OK(status
)) {
352 printf("ERROR: security description set failed: %s\n",
357 cli_close(cli
, fnum
);
361 /*****************************************************
362 dump the acls for a file
363 *******************************************************/
364 static int cacl_dump(struct cli_state
*cli
, const char *filename
, bool numeric
)
366 struct security_descriptor
*sd
;
372 sd
= get_secdesc(cli
, filename
);
378 char *str
= sddl_encode(talloc_tos(), sd
, get_domain_sid(cli
));
385 sec_desc_print(cli
, stdout
, sd
, numeric
);
391 /*****************************************************
392 Change the ownership or group ownership of a file. Just
393 because the NT docs say this can't be done :-). JRA.
394 *******************************************************/
396 static int owner_set(struct cli_state
*cli
, enum chown_mode change_mode
,
397 const char *filename
, const char *new_username
)
400 struct security_descriptor
*sd
, *old
;
403 if (!StringToSid(cli
, &sid
, new_username
))
404 return EXIT_PARSE_ERROR
;
406 old
= get_secdesc(cli
, filename
);
412 sd
= make_sec_desc(talloc_tos(),old
->revision
, SEC_DESC_SELF_RELATIVE
,
413 (change_mode
== REQUEST_CHOWN
) ? &sid
: NULL
,
414 (change_mode
== REQUEST_CHGRP
) ? &sid
: NULL
,
415 NULL
, NULL
, &sd_size
);
417 if (!set_secdesc(cli
, filename
, sd
)) {
425 /* The MSDN is contradictory over the ordering of ACE entries in an
426 ACL. However NT4 gives a "The information may have been modified
427 by a computer running Windows NT 5.0" if denied ACEs do not appear
428 before allowed ACEs. At
429 http://technet.microsoft.com/en-us/library/cc781716.aspx the
430 canonical order is specified as "Explicit Deny, Explicit Allow,
431 Inherited ACEs unchanged" */
433 static int ace_compare(struct security_ace
*ace1
, struct security_ace
*ace2
)
435 if (security_ace_equal(ace1
, ace2
))
438 if ((ace1
->flags
& SEC_ACE_FLAG_INHERITED_ACE
) &&
439 !(ace2
->flags
& SEC_ACE_FLAG_INHERITED_ACE
))
441 if (!(ace1
->flags
& SEC_ACE_FLAG_INHERITED_ACE
) &&
442 (ace2
->flags
& SEC_ACE_FLAG_INHERITED_ACE
))
444 if ((ace1
->flags
& SEC_ACE_FLAG_INHERITED_ACE
) &&
445 (ace2
->flags
& SEC_ACE_FLAG_INHERITED_ACE
))
448 if (ace1
->type
!= ace2
->type
)
449 return ace2
->type
- ace1
->type
;
451 if (dom_sid_compare(&ace1
->trustee
, &ace2
->trustee
))
452 return dom_sid_compare(&ace1
->trustee
, &ace2
->trustee
);
454 if (ace1
->flags
!= ace2
->flags
)
455 return ace1
->flags
- ace2
->flags
;
457 if (ace1
->access_mask
!= ace2
->access_mask
)
458 return ace1
->access_mask
- ace2
->access_mask
;
460 if (ace1
->size
!= ace2
->size
)
461 return ace1
->size
- ace2
->size
;
463 return memcmp(ace1
, ace2
, sizeof(struct security_ace
));
466 static void sort_acl(struct security_acl
*the_acl
)
469 if (!the_acl
) return;
471 TYPESAFE_QSORT(the_acl
->aces
, the_acl
->num_aces
, ace_compare
);
473 for (i
=1;i
<the_acl
->num_aces
;) {
474 if (security_ace_equal(&the_acl
->aces
[i
-1],
475 &the_acl
->aces
[i
])) {
477 for (j
=i
; j
<the_acl
->num_aces
-1; j
++) {
478 the_acl
->aces
[j
] = the_acl
->aces
[j
+1];
487 /*****************************************************
488 set the ACLs on a file given an ascii description
489 *******************************************************/
491 static int cacl_set(struct cli_state
*cli
, const char *filename
,
492 char *the_acl
, enum acl_mode mode
, bool numeric
)
494 struct security_descriptor
*sd
, *old
;
497 int result
= EXIT_OK
;
500 sd
= sddl_decode(talloc_tos(), the_acl
, get_domain_sid(cli
));
502 sd
= sec_desc_parse(talloc_tos(), cli
, the_acl
);
505 if (!sd
) return EXIT_PARSE_ERROR
;
506 if (test_args
) return EXIT_OK
;
508 if (mode
!= SMB_ACL_SET
) {
510 * Do not fetch old ACL when it will be overwritten
511 * completely with a new one.
513 old
= get_secdesc(cli
, filename
);
520 /* the logic here is rather more complex than I would like */
523 for (i
=0;sd
->dacl
&& i
<sd
->dacl
->num_aces
;i
++) {
526 for (j
=0;old
->dacl
&& j
<old
->dacl
->num_aces
;j
++) {
527 if (security_ace_equal(&sd
->dacl
->aces
[i
],
528 &old
->dacl
->aces
[j
])) {
530 for (k
=j
; k
<old
->dacl
->num_aces
-1;k
++) {
531 old
->dacl
->aces
[k
] = old
->dacl
->aces
[k
+1];
533 old
->dacl
->num_aces
--;
540 printf("ACL for ACE:");
541 print_ace(cli
, stdout
, &sd
->dacl
->aces
[i
],
543 printf(" not found\n");
549 for (i
=0;sd
->dacl
&& i
<sd
->dacl
->num_aces
;i
++) {
552 for (j
=0;old
->dacl
&& j
<old
->dacl
->num_aces
;j
++) {
553 if (dom_sid_equal(&sd
->dacl
->aces
[i
].trustee
,
554 &old
->dacl
->aces
[j
].trustee
)) {
555 old
->dacl
->aces
[j
] = sd
->dacl
->aces
[i
];
563 SidToString(cli
, str
,
564 &sd
->dacl
->aces
[i
].trustee
,
566 printf("ACL for SID %s not found\n", str
);
571 old
->owner_sid
= sd
->owner_sid
;
575 old
->group_sid
= sd
->group_sid
;
581 for (i
=0;sd
->dacl
&& i
<sd
->dacl
->num_aces
;i
++) {
582 add_ace(&old
->dacl
, &sd
->dacl
->aces
[i
]);
591 /* Denied ACE entries must come before allowed ones */
594 /* Create new security descriptor and set it */
596 /* We used to just have "WRITE_DAC_ACCESS" without WRITE_OWNER.
597 But if we're sending an owner, even if it's the same as the one
598 that already exists then W2K3 insists we open with WRITE_OWNER access.
599 I need to check that setting a SD with no owner set works against WNT
603 sd
= make_sec_desc(talloc_tos(),old
->revision
, old
->type
,
604 old
->owner_sid
, old
->group_sid
,
605 NULL
, old
->dacl
, &sd_size
);
607 if (!set_secdesc(cli
, filename
, sd
)) {
608 result
= EXIT_FAILED
;
614 /*****************************************************
615 set the inherit on a file
616 *******************************************************/
617 static int inherit(struct cli_state
*cli
, const char *filename
,
620 struct security_descriptor
*old
,*sd
;
623 int result
= EXIT_OK
;
625 old
= get_secdesc(cli
, filename
);
631 oldattr
= get_fileinfo(cli
,filename
);
633 if (strcmp(type
,"allow")==0) {
634 if ((old
->type
& SEC_DESC_DACL_PROTECTED
) ==
635 SEC_DESC_DACL_PROTECTED
) {
637 char *parentname
,*temp
;
638 struct security_descriptor
*parent
;
639 temp
= talloc_strdup(talloc_tos(), filename
);
641 old
->type
=old
->type
& (~SEC_DESC_DACL_PROTECTED
);
643 /* look at parent and copy in all its inheritable ACL's. */
644 string_replace(temp
, '\\', '/');
645 if (!parent_dirname(talloc_tos(),temp
,&parentname
,NULL
)) {
648 string_replace(parentname
, '/', '\\');
649 parent
= get_secdesc(cli
,parentname
);
650 if (parent
== NULL
) {
653 for (i
=0;i
<parent
->dacl
->num_aces
;i
++) {
654 struct security_ace
*ace
=&parent
->dacl
->aces
[i
];
655 /* Add inherited flag to all aces */
656 ace
->flags
=ace
->flags
|
657 SEC_ACE_FLAG_INHERITED_ACE
;
658 if ((oldattr
& FILE_ATTRIBUTE_DIRECTORY
) == FILE_ATTRIBUTE_DIRECTORY
) {
659 if ((ace
->flags
& SEC_ACE_FLAG_CONTAINER_INHERIT
) ==
660 SEC_ACE_FLAG_CONTAINER_INHERIT
) {
661 add_ace(&old
->dacl
, ace
);
664 if ((ace
->flags
& SEC_ACE_FLAG_OBJECT_INHERIT
) ==
665 SEC_ACE_FLAG_OBJECT_INHERIT
) {
666 /* clear flags for files */
668 add_ace(&old
->dacl
, ace
);
673 printf("Already set to inheritable permissions.\n");
676 } else if (strcmp(type
,"remove")==0) {
677 if ((old
->type
& SEC_DESC_DACL_PROTECTED
) !=
678 SEC_DESC_DACL_PROTECTED
) {
679 old
->type
=old
->type
| SEC_DESC_DACL_PROTECTED
;
681 /* remove all inherited ACL's. */
684 struct security_acl
*temp
=old
->dacl
;
685 old
->dacl
=make_sec_acl(talloc_tos(), 3, 0, NULL
);
686 for (i
=temp
->num_aces
-1;i
>=0;i
--) {
687 struct security_ace
*ace
=&temp
->aces
[i
];
688 /* Remove all ace with INHERITED flag set */
689 if ((ace
->flags
& SEC_ACE_FLAG_INHERITED_ACE
) !=
690 SEC_ACE_FLAG_INHERITED_ACE
) {
691 add_ace(&old
->dacl
,ace
);
696 printf("Already set to no inheritable permissions.\n");
699 } else if (strcmp(type
,"copy")==0) {
700 if ((old
->type
& SEC_DESC_DACL_PROTECTED
) !=
701 SEC_DESC_DACL_PROTECTED
) {
702 old
->type
=old
->type
| SEC_DESC_DACL_PROTECTED
;
704 /* convert all inherited ACL's to non inherated ACL's. */
707 for (i
=0;i
<old
->dacl
->num_aces
;i
++) {
708 struct security_ace
*ace
=&old
->dacl
->aces
[i
];
709 /* Remove INHERITED FLAG from all aces */
710 ace
->flags
=ace
->flags
&(~SEC_ACE_FLAG_INHERITED_ACE
);
714 printf("Already set to no inheritable permissions.\n");
719 /* Denied ACE entries must come before allowed ones */
722 sd
= make_sec_desc(talloc_tos(),old
->revision
, old
->type
,
723 old
->owner_sid
, old
->group_sid
,
724 NULL
, old
->dacl
, &sd_size
);
726 if (!set_secdesc(cli
, filename
, sd
)) {
727 result
= EXIT_FAILED
;
733 /*****************************************************
734 Return a connection to a server.
735 *******************************************************/
736 static struct cli_state
*connect_one(const struct user_auth_info
*auth_info
,
737 const char *server
, const char *share
)
739 struct cli_state
*c
= NULL
;
743 if (get_cmdline_auth_info_use_kerberos(auth_info
)) {
744 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
|
745 CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS
;
748 nt_status
= cli_full_connection(&c
, lp_netbios_name(), server
,
751 get_cmdline_auth_info_username(auth_info
),
753 get_cmdline_auth_info_password(auth_info
),
755 get_cmdline_auth_info_signing_state(auth_info
));
756 if (!NT_STATUS_IS_OK(nt_status
)) {
757 DEBUG(0,("cli_full_connection failed! (%s)\n", nt_errstr(nt_status
)));
761 if (get_cmdline_auth_info_smb_encrypt(auth_info
)) {
762 nt_status
= cli_cm_force_encryption(c
,
763 get_cmdline_auth_info_username(auth_info
),
764 get_cmdline_auth_info_password(auth_info
),
767 if (!NT_STATUS_IS_OK(nt_status
)) {
776 /****************************************************************************
778 ****************************************************************************/
779 int main(int argc
, char *argv
[])
781 const char **argv_const
= discard_const_p(const char *, argv
);
784 enum acl_mode mode
= SMB_ACL_SET
;
785 static char *the_acl
= NULL
;
786 enum chown_mode change_mode
= REQUEST_NONE
;
789 char *filename
= NULL
;
791 /* numeric is set when the user wants numeric SIDs and ACEs rather
792 than going via LSA calls to resolve them */
795 struct poptOption long_options
[] = {
797 { "delete", 'D', POPT_ARG_STRING
, NULL
, 'D', "Delete an acl", "ACL" },
798 { "modify", 'M', POPT_ARG_STRING
, NULL
, 'M', "Modify an acl", "ACL" },
799 { "add", 'a', POPT_ARG_STRING
, NULL
, 'a', "Add an acl", "ACL" },
800 { "set", 'S', POPT_ARG_STRING
, NULL
, 'S', "Set acls", "ACLS" },
801 { "chown", 'C', POPT_ARG_STRING
, NULL
, 'C', "Change ownership of a file", "USERNAME" },
802 { "chgrp", 'G', POPT_ARG_STRING
, NULL
, 'G', "Change group ownership of a file", "GROUPNAME" },
803 { "inherit", 'I', POPT_ARG_STRING
, NULL
, 'I', "Inherit allow|remove|copy" },
804 { "numeric", 0, POPT_ARG_NONE
, &numeric
, 1, "Don't resolve sids or masks to names" },
805 { "sddl", 0, POPT_ARG_NONE
, &sddl
, 1, "Output and input acls in sddl format" },
806 { "query-security-info", 0, POPT_ARG_INT
, &query_sec_info
, 1,
807 "The security-info flags for queries"
809 { "set-security-info", 0, POPT_ARG_INT
, &set_sec_info
, 1,
810 "The security-info flags for modifications"
812 { "test-args", 't', POPT_ARG_NONE
, &test_args
, 1, "Test arguments"},
813 { "domain-sid", 0, POPT_ARG_STRING
, &domain_sid
, 0, "Domain SID for sddl", "SID"},
814 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
816 POPT_COMMON_CONNECTION
817 POPT_COMMON_CREDENTIALS
821 struct cli_state
*cli
;
822 TALLOC_CTX
*frame
= talloc_stackframe();
823 const char *owner_username
= "";
828 /* set default debug level to 1 regardless of what smb.conf sets */
829 setup_logging( "smbcacls", DEBUG_STDERR
);
830 lp_set_cmdline("log level", "1");
834 popt_common_credentials_set_ignore_missing_conf();
836 pc
= poptGetContext("smbcacls", argc
, argv_const
, long_options
, 0);
838 poptSetOtherOptionHelp(pc
, "//server1/share1 filename\nACLs look like: "
839 "'ACL:user:[ALLOWED|DENIED]/flags/permissions'");
841 while ((opt
= poptGetNextOpt(pc
)) != -1) {
844 the_acl
= smb_xstrdup(poptGetOptArg(pc
));
849 the_acl
= smb_xstrdup(poptGetOptArg(pc
));
850 mode
= SMB_ACL_DELETE
;
854 the_acl
= smb_xstrdup(poptGetOptArg(pc
));
855 mode
= SMB_ACL_MODIFY
;
859 the_acl
= smb_xstrdup(poptGetOptArg(pc
));
864 owner_username
= poptGetOptArg(pc
);
865 change_mode
= REQUEST_CHOWN
;
869 owner_username
= poptGetOptArg(pc
);
870 change_mode
= REQUEST_CHGRP
;
874 owner_username
= poptGetOptArg(pc
);
875 change_mode
= REQUEST_INHERIT
;
878 lp_set_cmdline("client max protocol", poptGetOptArg(pc
));
883 /* Make connection to server */
884 if(!poptPeekArg(pc
)) {
885 poptPrintUsage(pc
, stderr
, 0);
889 path
= talloc_strdup(frame
, poptGetArg(pc
));
894 if(!poptPeekArg(pc
)) {
895 poptPrintUsage(pc
, stderr
, 0);
899 filename
= talloc_strdup(frame
, poptGetArg(pc
));
905 popt_burn_cmdline_password(argc
, argv
);
906 popt_common_credentials_post();
908 string_replace(path
,'/','\\');
910 server
= talloc_strdup(frame
, path
+2);
914 share
= strchr_m(server
,'\\');
916 printf("Invalid argument: %s\n", share
);
924 cli
= connect_one(popt_get_cmdline_auth_info(), server
, share
);
929 popt_free_cmdline_auth_info();
933 string_replace(filename
, '/', '\\');
934 if (filename
[0] != '\\') {
935 filename
= talloc_asprintf(frame
,
943 /* Perform requested action */
945 if (change_mode
== REQUEST_INHERIT
) {
946 result
= inherit(cli
, filename
, owner_username
);
947 } else if (change_mode
!= REQUEST_NONE
) {
948 result
= owner_set(cli
, change_mode
, filename
, owner_username
);
949 } else if (the_acl
) {
950 result
= cacl_set(cli
, filename
, the_acl
, mode
, numeric
);
952 result
= cacl_dump(cli
, filename
, numeric
);
955 popt_free_cmdline_auth_info();