2 * Unix SMB/Netbios implementation.
3 * Utility for managing share permissions
5 * Copyright (C) Tim Potter 2000
6 * Copyright (C) Jeremy Allison 2000
7 * Copyright (C) Jelmer Vernooij 2003
8 * Copyright (C) Gerald (Jerry) Carter 2005.
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/>.
26 #include "popt_common.h"
27 #include "../libcli/security/security.h"
29 static TALLOC_CTX
*ctx
;
31 enum acl_mode
{ SMB_ACL_DELETE
,
43 /* These values discovered by inspection */
45 static const struct perm_value special_values
[] = {
46 { "R", SEC_RIGHTS_FILE_READ
},
47 { "W", SEC_RIGHTS_FILE_WRITE
},
48 { "X", SEC_RIGHTS_FILE_EXECUTE
},
49 { "D", SEC_STD_DELETE
},
50 { "P", SEC_STD_WRITE_DAC
},
51 { "O", SEC_STD_WRITE_OWNER
},
55 #define SEC_RIGHTS_DIR_CHANGE ( SEC_RIGHTS_DIR_READ|SEC_STD_DELETE|\
56 SEC_RIGHTS_DIR_WRITE|SEC_DIR_TRAVERSE )
58 static const struct perm_value standard_values
[] = {
59 { "READ", SEC_RIGHTS_DIR_READ
|SEC_DIR_TRAVERSE
},
60 { "CHANGE", SEC_RIGHTS_DIR_CHANGE
},
61 { "FULL", SEC_RIGHTS_DIR_ALL
},
65 /********************************************************************
66 print an ACE on a FILE
67 ********************************************************************/
69 static void print_ace(FILE *f
, struct security_ace
*ace
)
71 const struct perm_value
*v
;
75 fprintf(f
, "%s:", sid_string_tos(&ace
->trustee
));
79 if (ace
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED
) {
80 fprintf(f
, "ALLOWED");
81 } else if (ace
->type
== SEC_ACE_TYPE_ACCESS_DENIED
) {
84 fprintf(f
, "%d", ace
->type
);
87 /* Not sure what flags can be set in a file ACL */
89 fprintf(f
, "/%d/", ace
->flags
);
91 /* Standard permissions */
93 for (v
= standard_values
; v
->perm
; v
++) {
94 if (ace
->access_mask
== v
->mask
) {
95 fprintf(f
, "%s", v
->perm
);
100 /* Special permissions. Print out a hex value if we have
101 leftover bits in the mask. */
103 got_mask
= ace
->access_mask
;
106 for (v
= special_values
; v
->perm
; v
++) {
107 if ((ace
->access_mask
& v
->mask
) == v
->mask
) {
109 fprintf(f
, "%s", v
->perm
);
111 got_mask
&= ~v
->mask
;
117 fprintf(f
, "0x%08x", ace
->access_mask
);
125 /********************************************************************
126 print an ascii version of a security descriptor on a FILE handle
127 ********************************************************************/
129 static void sec_desc_print(FILE *f
, struct security_descriptor
*sd
)
133 fprintf(f
, "REVISION:%d\n", sd
->revision
);
135 /* Print owner and group sid */
137 fprintf(f
, "OWNER:%s\n", sid_string_tos(sd
->owner_sid
));
139 fprintf(f
, "GROUP:%s\n", sid_string_tos(sd
->group_sid
));
142 for (i
= 0; sd
->dacl
&& i
< sd
->dacl
->num_aces
; i
++) {
143 struct security_ace
*ace
= &sd
->dacl
->aces
[i
];
150 /********************************************************************
151 parse an ACE in the same format as print_ace()
152 ********************************************************************/
154 static bool parse_ace(struct security_ace
*ace
, const char *orig_str
)
159 unsigned int atype
= 0;
160 unsigned int aflags
= 0;
161 unsigned int amask
= 0;
164 const struct perm_value
*v
;
165 char *str
= SMB_STRDUP(orig_str
);
166 TALLOC_CTX
*frame
= talloc_stackframe();
174 p
= strchr_m(str
,':');
176 fprintf(stderr
, "ACE '%s': missing ':'.\n", orig_str
);
183 /* Try to parse numeric form */
185 if (sscanf(p
, "%i/%i/%i", &atype
, &aflags
, &amask
) == 3 &&
186 string_to_sid(&sid
, str
)) {
190 /* Try to parse text form */
192 if (!string_to_sid(&sid
, str
)) {
193 fprintf(stderr
, "ACE '%s': failed to convert '%s' to SID\n",
201 if (!next_token_talloc(frame
, &cp
, &tok
, "/")) {
202 fprintf(stderr
, "ACE '%s': failed to find '/' character.\n",
209 if (strncmp(tok
, "ALLOWED", strlen("ALLOWED")) == 0) {
210 atype
= SEC_ACE_TYPE_ACCESS_ALLOWED
;
211 } else if (strncmp(tok
, "DENIED", strlen("DENIED")) == 0) {
212 atype
= SEC_ACE_TYPE_ACCESS_DENIED
;
214 fprintf(stderr
, "ACE '%s': missing 'ALLOWED' or 'DENIED' "
215 "entry at '%s'\n", orig_str
, tok
);
221 /* Only numeric form accepted for flags at present */
222 /* no flags on share permissions */
224 if (!(next_token_talloc(frame
, &cp
, &tok
, "/") &&
225 sscanf(tok
, "%i", &aflags
) && aflags
== 0)) {
226 fprintf(stderr
, "ACE '%s': bad integer flags entry at '%s'\n",
233 if (!next_token_talloc(frame
, &cp
, &tok
, "/")) {
234 fprintf(stderr
, "ACE '%s': missing / at '%s'\n",
241 if (strncmp(tok
, "0x", 2) == 0) {
242 if (sscanf(tok
, "%i", &amask
) != 1) {
243 fprintf(stderr
, "ACE '%s': bad hex number at '%s'\n",
252 for (v
= standard_values
; v
->perm
; v
++) {
253 if (strcmp(tok
, v
->perm
) == 0) {
264 for (v
= special_values
; v
->perm
; v
++) {
265 if (v
->perm
[0] == *p
) {
272 fprintf(stderr
, "ACE '%s': bad permission value at "
273 "'%s'\n", orig_str
, p
);
289 init_sec_ace(ace
, &sid
, atype
, mask
, aflags
);
296 /********************************************************************
297 ********************************************************************/
299 static struct security_descriptor
* parse_acl_string(TALLOC_CTX
*mem_ctx
, const char *szACL
, size_t *sd_size
)
301 struct security_descriptor
*sd
= NULL
;
302 struct security_ace
*ace
;
303 struct security_acl
*theacl
;
312 num_ace
= count_chars( pacl
, ',' ) + 1;
314 if ( !(ace
= TALLOC_ZERO_ARRAY( mem_ctx
, struct security_ace
, num_ace
)) )
317 for ( i
=0; i
<num_ace
; i
++ ) {
318 char *end_acl
= strchr_m( pacl
, ',' );
321 strncpy( acl_string
, pacl
, MIN( PTR_DIFF( end_acl
, pacl
), sizeof(fstring
)-1) );
322 acl_string
[MIN( PTR_DIFF( end_acl
, pacl
), sizeof(fstring
)-1)] = '\0';
324 if ( !parse_ace( &ace
[i
], acl_string
) )
331 if ( !(theacl
= make_sec_acl( mem_ctx
, NT4_ACL_REVISION
, num_ace
, ace
)) )
334 sd
= make_sec_desc( mem_ctx
, SD_REVISION
, SEC_DESC_SELF_RELATIVE
,
335 NULL
, NULL
, NULL
, theacl
, sd_size
);
340 /* add an ACE to a list of ACEs in a struct security_acl */
341 static bool add_ace(TALLOC_CTX
*mem_ctx
, struct security_acl
**the_acl
, struct security_ace
*ace
)
343 struct security_acl
*new_ace
;
344 struct security_ace
*aces
;
346 return (((*the_acl
) = make_sec_acl(mem_ctx
, 3, 1, ace
)) != NULL
);
349 if (!(aces
= SMB_CALLOC_ARRAY(struct security_ace
, 1+(*the_acl
)->num_aces
))) {
352 memcpy(aces
, (*the_acl
)->aces
, (*the_acl
)->num_aces
* sizeof(struct
354 memcpy(aces
+(*the_acl
)->num_aces
, ace
, sizeof(struct security_ace
));
355 new_ace
= make_sec_acl(mem_ctx
,(*the_acl
)->revision
,1+(*the_acl
)->num_aces
, aces
);
357 (*the_acl
) = new_ace
;
361 /* The MSDN is contradictory over the ordering of ACE entries in an ACL.
362 However NT4 gives a "The information may have been modified by a
363 computer running Windows NT 5.0" if denied ACEs do not appear before
366 static int ace_compare(struct security_ace
*ace1
, struct security_ace
*ace2
)
368 if (sec_ace_equal(ace1
, ace2
))
371 if (ace1
->type
!= ace2
->type
)
372 return ace2
->type
- ace1
->type
;
374 if (dom_sid_compare(&ace1
->trustee
, &ace2
->trustee
))
375 return dom_sid_compare(&ace1
->trustee
, &ace2
->trustee
);
377 if (ace1
->flags
!= ace2
->flags
)
378 return ace1
->flags
- ace2
->flags
;
380 if (ace1
->access_mask
!= ace2
->access_mask
)
381 return ace1
->access_mask
- ace2
->access_mask
;
383 if (ace1
->size
!= ace2
->size
)
384 return ace1
->size
- ace2
->size
;
386 return memcmp(ace1
, ace2
, sizeof(struct security_ace
));
389 static void sort_acl(struct security_acl
*the_acl
)
392 if (!the_acl
) return;
394 TYPESAFE_QSORT(the_acl
->aces
, the_acl
->num_aces
, ace_compare
);
396 for (i
=1;i
<the_acl
->num_aces
;) {
397 if (sec_ace_equal(&the_acl
->aces
[i
-1], &the_acl
->aces
[i
])) {
399 for (j
=i
; j
<the_acl
->num_aces
-1; j
++) {
400 the_acl
->aces
[j
] = the_acl
->aces
[j
+1];
410 static int change_share_sec(TALLOC_CTX
*mem_ctx
, const char *sharename
, char *the_acl
, enum acl_mode mode
)
412 struct security_descriptor
*sd
= NULL
;
413 struct security_descriptor
*old
= NULL
;
417 if (mode
!= SMB_ACL_SET
&& mode
!= SMB_SD_DELETE
) {
418 if (!(old
= get_share_security( mem_ctx
, sharename
, &sd_size
)) ) {
419 fprintf(stderr
, "Unable to retrieve permissions for share "
420 "[%s]\n", sharename
);
425 if ( (mode
!= SMB_ACL_VIEW
&& mode
!= SMB_SD_DELETE
) &&
426 !(sd
= parse_acl_string(mem_ctx
, the_acl
, &sd_size
)) ) {
427 fprintf( stderr
, "Failed to parse acl\n");
433 sec_desc_print( stdout
, old
);
436 for (i
=0;sd
->dacl
&& i
<sd
->dacl
->num_aces
;i
++) {
439 for (j
=0;old
->dacl
&& j
<old
->dacl
->num_aces
;j
++) {
440 if (sec_ace_equal(&sd
->dacl
->aces
[i
], &old
->dacl
->aces
[j
])) {
442 for (k
=j
; k
<old
->dacl
->num_aces
-1;k
++) {
443 old
->dacl
->aces
[k
] = old
->dacl
->aces
[k
+1];
445 old
->dacl
->num_aces
--;
452 printf("ACL for ACE:");
453 print_ace(stdout
, &sd
->dacl
->aces
[i
]);
454 printf(" not found\n");
459 for (i
=0;sd
->dacl
&& i
<sd
->dacl
->num_aces
;i
++) {
462 for (j
=0;old
->dacl
&& j
<old
->dacl
->num_aces
;j
++) {
463 if (dom_sid_equal(&sd
->dacl
->aces
[i
].trustee
,
464 &old
->dacl
->aces
[j
].trustee
)) {
465 old
->dacl
->aces
[j
] = sd
->dacl
->aces
[i
];
471 printf("ACL for SID %s not found\n",
472 sid_string_tos(&sd
->dacl
->aces
[i
].trustee
));
477 old
->owner_sid
= sd
->owner_sid
;
481 old
->group_sid
= sd
->group_sid
;
485 for (i
=0;sd
->dacl
&& i
<sd
->dacl
->num_aces
;i
++) {
486 add_ace(mem_ctx
, &old
->dacl
, &sd
->dacl
->aces
[i
]);
493 if (!delete_share_security(sharename
)) {
494 fprintf( stderr
, "Failed to delete security descriptor for "
495 "share [%s]\n", sharename
);
501 /* Denied ACE entries must come before allowed ones */
504 if ( !set_share_security( sharename
, old
) ) {
505 fprintf( stderr
, "Failed to store acl for share [%s]\n", sharename
);
511 /********************************************************************
513 ********************************************************************/
515 int main(int argc
, const char *argv
[])
519 enum acl_mode mode
= SMB_ACL_SET
;
520 static char *the_acl
= NULL
;
522 bool force_acl
= False
;
525 bool initialize_sid
= False
;
526 struct poptOption long_options
[] = {
528 { "remove", 'r', POPT_ARG_STRING
, &the_acl
, 'r', "Remove ACEs", "ACL" },
529 { "modify", 'm', POPT_ARG_STRING
, &the_acl
, 'm', "Modify existing ACEs", "ACL" },
530 { "add", 'a', POPT_ARG_STRING
, &the_acl
, 'a', "Add ACEs", "ACL" },
531 { "replace", 'R', POPT_ARG_STRING
, &the_acl
, 'R', "Overwrite share permission ACL", "ACLS" },
532 { "delete", 'D', POPT_ARG_NONE
, NULL
, 'D', "Delete the entire security descriptor" },
533 { "view", 'v', POPT_ARG_NONE
, NULL
, 'v', "View current share permissions" },
534 { "machine-sid", 'M', POPT_ARG_NONE
, NULL
, 'M', "Initialize the machine SID" },
535 { "force", 'F', POPT_ARG_NONE
, NULL
, 'F', "Force storing the ACL", "ACLS" },
540 if ( !(ctx
= talloc_stackframe()) ) {
541 fprintf( stderr
, "Failed to initialize talloc context!\n");
545 /* set default debug level to 1 regardless of what smb.conf sets */
546 setup_logging( "sharesec", DEBUG_STDERR
);
550 lp_set_cmdline("log level", "1");
552 pc
= poptGetContext("sharesec", argc
, argv
, long_options
, 0);
554 poptSetOtherOptionHelp(pc
, "sharename\n");
556 while ((opt
= poptGetNextOpt(pc
)) != -1) {
559 the_acl
= smb_xstrdup(poptGetOptArg(pc
));
560 mode
= SMB_ACL_DELETE
;
564 the_acl
= smb_xstrdup(poptGetOptArg(pc
));
565 mode
= SMB_ACL_MODIFY
;
569 the_acl
= smb_xstrdup(poptGetOptArg(pc
));
574 the_acl
= smb_xstrdup(poptGetOptArg(pc
));
579 mode
= SMB_SD_DELETE
;
591 initialize_sid
= True
;
598 lp_load( get_dyn_CONFIGFILE(), False
, False
, False
, True
);
600 /* check for initializing secrets.tdb first */
602 if ( initialize_sid
) {
603 struct dom_sid
*sid
= get_global_sam_sid();
606 fprintf( stderr
, "Failed to retrieve Machine SID!\n");
610 printf ("%s\n", sid_string_tos( sid
) );
614 if ( mode
== SMB_ACL_VIEW
&& force_acl
) {
615 fprintf( stderr
, "Invalid combination of -F and -v\n");
619 /* get the sharename */
621 if(!poptPeekArg(pc
)) {
622 poptPrintUsage(pc
, stderr
, 0);
626 fstrcpy(sharename
, poptGetArg(pc
));
628 snum
= lp_servicenumber( sharename
);
630 if ( snum
== -1 && !force_acl
) {
631 fprintf( stderr
, "Invalid sharename: %s\n", sharename
);
635 retval
= change_share_sec(ctx
, sharename
, the_acl
, mode
);