s3:sharesec: Use cmdline_messaging_context
[garming/samba-autobuild/.git] / source3 / utils / sharesec.c
1 /*
2  *  Unix SMB/Netbios implementation.
3  *  Utility for managing share permissions
4  *
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.
9  *
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.
14  *
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.
19  *
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/>.
22  */
23
24 struct cli_state;
25
26 #include "includes.h"
27 #include "popt_common.h"
28 #include "../libcli/security/security.h"
29 #include "passdb/machine_sid.h"
30 #include "util_sd.h"
31 #include "cmdline_contexts.h"
32
33 static TALLOC_CTX *ctx;
34
35 enum acl_mode { SMB_ACL_DELETE,
36                 SMB_ACL_MODIFY,
37                 SMB_ACL_ADD,
38                 SMB_ACL_SET,
39                 SMB_SD_DELETE,
40                 SMB_SD_SETSDDL,
41                 SMB_SD_VIEWSDDL,
42                 SMB_ACL_VIEW,
43                 SMB_ACL_VIEW_ALL };
44
45 /********************************************************************
46 ********************************************************************/
47
48 static struct security_descriptor* parse_acl_string(TALLOC_CTX *mem_ctx, const char *szACL, size_t *sd_size )
49 {
50         struct security_descriptor *sd = NULL;
51         struct security_ace *ace;
52         struct security_acl *theacl;
53         int num_ace;
54         const char *pacl;
55         int i;
56
57         if ( !szACL )
58                 return NULL;
59
60         pacl = szACL;
61         num_ace = count_chars( pacl, ',' ) + 1;
62
63         if ( !(ace = talloc_zero_array( mem_ctx, struct security_ace, num_ace )) )
64                 return NULL;
65
66         for ( i=0; i<num_ace; i++ ) {
67                 char *end_acl = strchr_m( pacl, ',' );
68                 fstring acl_string;
69
70                 strncpy( acl_string, pacl, MIN( PTR_DIFF( end_acl, pacl ), sizeof(fstring)-1) );
71                 acl_string[MIN( PTR_DIFF( end_acl, pacl ), sizeof(fstring)-1)] = '\0';
72
73                 if ( !parse_ace(NULL, &ace[i], acl_string ) )
74                         return NULL;
75
76                 pacl = end_acl;
77                 pacl++;
78         }
79
80         if ( !(theacl = make_sec_acl( mem_ctx, NT4_ACL_REVISION, num_ace, ace )) )
81                 return NULL;
82
83         sd = make_sec_desc( mem_ctx, SD_REVISION, SEC_DESC_SELF_RELATIVE,
84                 NULL, NULL, NULL, theacl, sd_size);
85
86         return sd;
87 }
88
89 /* add an ACE to a list of ACEs in a struct security_acl */
90 static bool add_ace(TALLOC_CTX *mem_ctx, struct security_acl **the_acl, struct security_ace *ace)
91 {
92         struct security_acl *new_ace;
93         struct security_ace *aces;
94         if (! *the_acl) {
95                 return (((*the_acl) = make_sec_acl(mem_ctx, 3, 1, ace)) != NULL);
96         }
97
98         if (!(aces = SMB_CALLOC_ARRAY(struct security_ace, 1+(*the_acl)->num_aces))) {
99                 return False;
100         }
101         memcpy(aces, (*the_acl)->aces, (*the_acl)->num_aces * sizeof(struct
102         security_ace));
103         memcpy(aces+(*the_acl)->num_aces, ace, sizeof(struct security_ace));
104         new_ace = make_sec_acl(mem_ctx,(*the_acl)->revision,1+(*the_acl)->num_aces, aces);
105         SAFE_FREE(aces);
106         (*the_acl) = new_ace;
107         return True;
108 }
109
110 /* The MSDN is contradictory over the ordering of ACE entries in an ACL.
111    However NT4 gives a "The information may have been modified by a
112    computer running Windows NT 5.0" if denied ACEs do not appear before
113    allowed ACEs. */
114
115 static int ace_compare(struct security_ace *ace1, struct security_ace *ace2)
116 {
117         if (security_ace_equal(ace1, ace2))
118                 return 0;
119
120         if (ace1->type != ace2->type)
121                 return ace2->type - ace1->type;
122
123         if (dom_sid_compare(&ace1->trustee, &ace2->trustee))
124                 return dom_sid_compare(&ace1->trustee, &ace2->trustee);
125
126         if (ace1->flags != ace2->flags)
127                 return ace1->flags - ace2->flags;
128
129         if (ace1->access_mask != ace2->access_mask)
130                 return ace1->access_mask - ace2->access_mask;
131
132         if (ace1->size != ace2->size)
133                 return ace1->size - ace2->size;
134
135         return memcmp(ace1, ace2, sizeof(struct security_ace));
136 }
137
138 static void sort_acl(struct security_acl *the_acl)
139 {
140         uint32_t i;
141         if (!the_acl) return;
142
143         TYPESAFE_QSORT(the_acl->aces, the_acl->num_aces, ace_compare);
144
145         for (i=1;i<the_acl->num_aces;) {
146                 if (security_ace_equal(&the_acl->aces[i-1],
147                                        &the_acl->aces[i])) {
148                         int j;
149                         for (j=i; j<the_acl->num_aces-1; j++) {
150                                 the_acl->aces[j] = the_acl->aces[j+1];
151                         }
152                         the_acl->num_aces--;
153                 } else {
154                         i++;
155                 }
156         }
157 }
158
159
160 static int change_share_sec(TALLOC_CTX *mem_ctx, const char *sharename, char *the_acl, enum acl_mode mode)
161 {
162         struct security_descriptor *sd = NULL;
163         struct security_descriptor *old = NULL;
164         size_t sd_size = 0;
165         uint32_t i, j;
166
167         if (mode != SMB_ACL_SET && mode != SMB_SD_DELETE) {
168             if (!(old = get_share_security( mem_ctx, sharename, &sd_size )) ) {
169                 fprintf(stderr, "Unable to retrieve permissions for share "
170                         "[%s]\n", sharename);
171                 return -1;
172             }
173         }
174
175         if ( (mode != SMB_ACL_VIEW && mode != SMB_SD_DELETE) &&
176             !(sd = parse_acl_string(mem_ctx, the_acl, &sd_size )) ) {
177                 fprintf( stderr, "Failed to parse acl\n");
178                 return -1;
179         }
180
181         switch (mode) {
182         case SMB_ACL_VIEW_ALL:
183                 /* should not happen */
184                 return 0;
185         case SMB_ACL_VIEW:
186                 sec_desc_print(NULL, stdout, old, false);
187                 return 0;
188         case SMB_ACL_DELETE:
189             for (i=0;sd->dacl && i<sd->dacl->num_aces;i++) {
190                 bool found = False;
191
192                 for (j=0;old->dacl && j<old->dacl->num_aces;j++) {
193                     if (security_ace_equal(&sd->dacl->aces[i],
194                                            &old->dacl->aces[j])) {
195                         uint32_t k;
196                         for (k=j; k<old->dacl->num_aces-1;k++) {
197                             old->dacl->aces[k] = old->dacl->aces[k+1];
198                         }
199                         old->dacl->num_aces--;
200                         found = True;
201                         break;
202                     }
203                 }
204
205                 if (!found) {
206                         printf("ACL for ACE:");
207                         print_ace(NULL, stdout, &sd->dacl->aces[i], false);
208                         printf(" not found\n");
209                 }
210             }
211             break;
212         case SMB_ACL_MODIFY:
213             for (i=0;sd->dacl && i<sd->dacl->num_aces;i++) {
214                 bool found = False;
215
216                 for (j=0;old->dacl && j<old->dacl->num_aces;j++) {
217                     if (dom_sid_equal(&sd->dacl->aces[i].trustee,
218                         &old->dacl->aces[j].trustee)) {
219                         old->dacl->aces[j] = sd->dacl->aces[i];
220                         found = True;
221                     }
222                 }
223
224                 if (!found) {
225                     printf("ACL for SID %s not found\n",
226                            sid_string_tos(&sd->dacl->aces[i].trustee));
227                 }
228             }
229
230             if (sd->owner_sid) {
231                 old->owner_sid = sd->owner_sid;
232             }
233
234             if (sd->group_sid) {
235                 old->group_sid = sd->group_sid;
236             }
237             break;
238         case SMB_ACL_ADD:
239             for (i=0;sd->dacl && i<sd->dacl->num_aces;i++) {
240                 add_ace(mem_ctx, &old->dacl, &sd->dacl->aces[i]);
241             }
242             break;
243         case SMB_ACL_SET:
244             old = sd;
245             break;
246         case SMB_SD_DELETE:
247             if (!delete_share_security(sharename)) {
248                 fprintf( stderr, "Failed to delete security descriptor for "
249                          "share [%s]\n", sharename );
250                 return -1;
251             }
252             return 0;
253         default:
254                 fprintf(stderr, "invalid command\n");
255                 return -1;
256         }
257
258         /* Denied ACE entries must come before allowed ones */
259         sort_acl(old->dacl);
260
261         if ( !set_share_security( sharename, old ) ) {
262             fprintf( stderr, "Failed to store acl for share [%s]\n", sharename );
263             return 2;
264         }
265         return 0;
266 }
267
268 static int set_sharesec_sddl(const char *sharename, const char *sddl)
269 {
270         struct security_descriptor *sd;
271         bool ret;
272
273         sd = sddl_decode(talloc_tos(), sddl, get_global_sam_sid());
274         if (sd == NULL) {
275                 fprintf(stderr, "Failed to parse acl\n");
276                 return -1;
277         }
278
279         ret = set_share_security(sharename, sd);
280         TALLOC_FREE(sd);
281         if (!ret) {
282                 fprintf(stderr, "Failed to store acl for share [%s]\n",
283                         sharename);
284                 return -1;
285         }
286
287         return 0;
288 }
289
290 static int view_sharesec_sddl(const char *sharename)
291 {
292         struct security_descriptor *sd;
293         size_t sd_size;
294         char *acl;
295
296         sd = get_share_security(talloc_tos(), sharename, &sd_size);
297         if (sd == NULL) {
298                 fprintf(stderr, "Unable to retrieve permissions for share "
299                         "[%s]\n", sharename);
300                 return -1;
301         }
302
303         acl = sddl_encode(talloc_tos(), sd, get_global_sam_sid());
304         TALLOC_FREE(sd);
305         if (acl == NULL) {
306                 fprintf(stderr, "Unable to sddl-encode permissions for share "
307                         "[%s]\n", sharename);
308                 return -1;
309         }
310         printf("%s\n", acl);
311         TALLOC_FREE(acl);
312         return 0;
313 }
314
315 /********************************************************************
316   main program
317 ********************************************************************/
318
319 enum {
320         OPT_VIEW_ALL = 1000,
321 };
322
323 int main(int argc, const char *argv[])
324 {
325         int opt;
326         int retval = 0;
327         enum acl_mode mode = SMB_ACL_SET;
328         static char *the_acl = NULL;
329         fstring sharename;
330         bool force_acl = False;
331         int snum;
332         poptContext pc;
333         bool initialize_sid = False;
334         struct poptOption long_options[] = {
335                 POPT_AUTOHELP
336                 { "remove", 'r', POPT_ARG_STRING, &the_acl, 'r', "Remove ACEs", "ACL" },
337                 { "modify", 'm', POPT_ARG_STRING, &the_acl, 'm', "Modify existing ACEs", "ACL" },
338                 { "add", 'a', POPT_ARG_STRING, &the_acl, 'a', "Add ACEs", "ACL" },
339                 { "replace", 'R', POPT_ARG_STRING, &the_acl, 'R', "Overwrite share permission ACL", "ACLS" },
340                 { "delete", 'D', POPT_ARG_NONE, NULL, 'D', "Delete the entire security descriptor" },
341                 { "setsddl", 'S', POPT_ARG_STRING, the_acl, 'S',
342                   "Set the SD in sddl format" },
343                 { "viewsddl", 'V', POPT_ARG_NONE, the_acl, 'V',
344                   "View the SD in sddl format" },
345                 { "view", 'v', POPT_ARG_NONE, NULL, 'v', "View current share permissions" },
346                 { "view-all", 0, POPT_ARG_NONE, NULL, OPT_VIEW_ALL,
347                   "View all current share permissions" },
348                 { "machine-sid", 'M', POPT_ARG_NONE, NULL, 'M', "Initialize the machine SID" },
349                 { "force", 'F', POPT_ARG_NONE, NULL, 'F', "Force storing the ACL", "ACLS" },
350                 POPT_COMMON_SAMBA
351                 { NULL }
352         };
353
354         if ( !(ctx = talloc_stackframe()) ) {
355                 fprintf( stderr, "Failed to initialize talloc context!\n");
356                 return -1;
357         }
358
359         /* set default debug level to 1 regardless of what smb.conf sets */
360         setup_logging( "sharesec", DEBUG_STDERR);
361
362         smb_init_locale();
363
364         lp_set_cmdline("log level", "1");
365
366         pc = poptGetContext("sharesec", argc, argv, long_options, 0);
367
368         poptSetOtherOptionHelp(pc, "sharename\n");
369
370         while ((opt = poptGetNextOpt(pc)) != -1) {
371                 switch (opt) {
372                 case 'r':
373                         the_acl = smb_xstrdup(poptGetOptArg(pc));
374                         mode = SMB_ACL_DELETE;
375                         break;
376
377                 case 'm':
378                         the_acl = smb_xstrdup(poptGetOptArg(pc));
379                         mode = SMB_ACL_MODIFY;
380                         break;
381
382                 case 'a':
383                         the_acl = smb_xstrdup(poptGetOptArg(pc));
384                         mode = SMB_ACL_ADD;
385                         break;
386
387                 case 'R':
388                         the_acl = smb_xstrdup(poptGetOptArg(pc));
389                         mode = SMB_ACL_SET;
390                         break;
391
392                 case 'D':
393                         mode = SMB_SD_DELETE;
394                         break;
395
396                 case 'S':
397                         mode = SMB_SD_SETSDDL;
398                         the_acl = smb_xstrdup(poptGetOptArg(pc));
399                         break;
400
401                 case 'V':
402                         mode = SMB_SD_VIEWSDDL;
403                         break;
404
405                 case 'v':
406                         mode = SMB_ACL_VIEW;
407                         break;
408
409                 case 'F':
410                         force_acl = True;
411                         break;
412
413                 case 'M':
414                         initialize_sid = True;
415                         break;
416                 case OPT_VIEW_ALL:
417                         mode = SMB_ACL_VIEW_ALL;
418                         break;
419                 }
420         }
421
422         setlinebuf(stdout);
423
424         cmdline_messaging_context(get_dyn_CONFIGFILE());
425         lp_load_with_registry_shares(get_dyn_CONFIGFILE());
426
427         /* check for initializing secrets.tdb first */
428
429         if ( initialize_sid ) {
430                 struct dom_sid *sid = get_global_sam_sid();
431
432                 if ( !sid ) {
433                         fprintf( stderr, "Failed to retrieve Machine SID!\n");
434                         return 3;
435                 }
436
437                 printf ("%s\n", sid_string_tos( sid ) );
438                 return 0;
439         }
440
441         if ( mode == SMB_ACL_VIEW && force_acl ) {
442                 fprintf( stderr, "Invalid combination of -F and -v\n");
443                 return -1;
444         }
445
446         if (mode == SMB_ACL_VIEW_ALL) {
447                 int i;
448
449                 for (i=0; i<lp_numservices(); i++) {
450                         TALLOC_CTX *frame = talloc_stackframe();
451                         const char *service = lp_servicename(frame, i);
452
453                         if (service == NULL) {
454                                 continue;
455                         }
456
457                         printf("[%s]\n", service);
458                         change_share_sec(frame, service, NULL, SMB_ACL_VIEW);
459                         printf("\n");
460                         TALLOC_FREE(frame);
461                 }
462                 goto done;
463         }
464
465         /* get the sharename */
466
467         if(!poptPeekArg(pc)) {
468                 poptPrintUsage(pc, stderr, 0);
469                 return -1;
470         }
471
472         fstrcpy(sharename, poptGetArg(pc));
473
474         snum = lp_servicenumber( sharename );
475
476         if ( snum == -1 && !force_acl ) {
477                 fprintf( stderr, "Invalid sharename: %s\n", sharename);
478                 return -1;
479         }
480
481         switch (mode) {
482         case SMB_SD_SETSDDL:
483                 retval = set_sharesec_sddl(sharename, the_acl);
484                 break;
485         case SMB_SD_VIEWSDDL:
486                 retval = view_sharesec_sddl(sharename);
487                 break;
488         default:
489                 retval = change_share_sec(ctx, sharename, the_acl, mode);
490                 break;
491         }
492
493 done:
494         talloc_destroy(ctx);
495
496         return retval;
497 }