r13212: r12414@cabra: derrell | 2006-01-28 17:52:17 -0500
[samba.git] / source3 / utils / smbcacls.c
1 /* 
2    Unix SMB/CIFS implementation.
3    ACL get/set utility
4    
5    Copyright (C) Andrew Tridgell 2000
6    Copyright (C) Tim Potter      2000
7    Copyright (C) Jeremy Allison  2000
8    Copyright (C) Jelmer Vernooij 2003
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 2 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, write to the Free Software
22    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
25 #include "includes.h"
26
27 static pstring owner_username;
28 static fstring server;
29 static int test_args = False;
30 static TALLOC_CTX *ctx;
31
32 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
33
34 /* numeric is set when the user wants numeric SIDs and ACEs rather
35    than going via LSA calls to resolve them */
36 static BOOL numeric = False;
37
38 enum acl_mode {SMB_ACL_SET, SMB_ACL_DELETE, SMB_ACL_MODIFY, SMB_ACL_ADD };
39 enum chown_mode {REQUEST_NONE, REQUEST_CHOWN, REQUEST_CHGRP};
40 enum exit_values {EXIT_OK, EXIT_FAILED, EXIT_PARSE_ERROR};
41
42 struct perm_value {
43         const char *perm;
44         uint32 mask;
45 };
46
47 /* These values discovered by inspection */
48
49 static const struct perm_value special_values[] = {
50         { "R", 0x00120089 },
51         { "W", 0x00120116 },
52         { "X", 0x001200a0 },
53         { "D", 0x00010000 },
54         { "P", 0x00040000 },
55         { "O", 0x00080000 },
56         { NULL, 0 },
57 };
58
59 static const struct perm_value standard_values[] = {
60         { "READ",   0x001200a9 },
61         { "CHANGE", 0x001301bf },
62         { "FULL",   0x001f01ff },
63         { NULL, 0 },
64 };
65
66 static struct cli_state *global_hack_cli;
67 static struct rpc_pipe_client *global_pipe_hnd;
68 static POLICY_HND pol;
69 static BOOL got_policy_hnd;
70
71 static struct cli_state *connect_one(const char *share);
72
73 /* Open cli connection and policy handle */
74
75 static BOOL cacls_open_policy_hnd(void)
76 {
77         /* Initialise cli LSA connection */
78
79         if (!global_hack_cli) {
80                 NTSTATUS ret;
81                 global_hack_cli = connect_one("IPC$");
82                 global_pipe_hnd = cli_rpc_pipe_open_noauth(global_hack_cli, PI_LSARPC, &ret);
83                 if (!global_pipe_hnd) {
84                                 return False;
85                 }
86         }
87         
88         /* Open policy handle */
89
90         if (!got_policy_hnd) {
91
92                 /* Some systems don't support SEC_RIGHTS_MAXIMUM_ALLOWED,
93                    but NT sends 0x2000000 so we might as well do it too. */
94
95                 if (!NT_STATUS_IS_OK(rpccli_lsa_open_policy(global_pipe_hnd, global_hack_cli->mem_ctx, True, 
96                                                          GENERIC_EXECUTE_ACCESS, &pol))) {
97                         return False;
98                 }
99
100                 got_policy_hnd = True;
101         }
102         
103         return True;
104 }
105
106 /* convert a SID to a string, either numeric or username/group */
107 static void SidToString(fstring str, DOM_SID *sid)
108 {
109         char **domains = NULL;
110         char **names = NULL;
111         uint32 *types = NULL;
112
113         sid_to_string(str, sid);
114
115         if (numeric) return;
116
117         /* Ask LSA to convert the sid to a name */
118
119         if (!cacls_open_policy_hnd() ||
120             !NT_STATUS_IS_OK(rpccli_lsa_lookup_sids(global_pipe_hnd, global_hack_cli->mem_ctx,  
121                                                  &pol, 1, sid, &domains, 
122                                                  &names, &types)) ||
123             !domains || !domains[0] || !names || !names[0]) {
124                 return;
125         }
126
127         /* Converted OK */
128
129         slprintf(str, sizeof(fstring) - 1, "%s%s%s",
130                  domains[0], lp_winbind_separator(),
131                  names[0]);
132         
133 }
134
135 /* convert a string to a SID, either numeric or username/group */
136 static BOOL StringToSid(DOM_SID *sid, const char *str)
137 {
138         uint32 *types = NULL;
139         DOM_SID *sids = NULL;
140         BOOL result = True;
141
142         if (strncmp(str, "S-", 2) == 0) {
143                 return string_to_sid(sid, str);
144         }
145
146         if (!cacls_open_policy_hnd() ||
147             !NT_STATUS_IS_OK(rpccli_lsa_lookup_names(global_pipe_hnd, global_hack_cli->mem_ctx, 
148                                                   &pol, 1, &str, &sids, 
149                                                   &types))) {
150                 result = False;
151                 goto done;
152         }
153
154         sid_copy(sid, &sids[0]);
155  done:
156
157         return result;
158 }
159
160
161 /* print an ACE on a FILE, using either numeric or ascii representation */
162 static void print_ace(FILE *f, SEC_ACE *ace)
163 {
164         const struct perm_value *v;
165         fstring sidstr;
166         int do_print = 0;
167         uint32 got_mask;
168
169         SidToString(sidstr, &ace->trustee);
170
171         fprintf(f, "%s:", sidstr);
172
173         if (numeric) {
174                 fprintf(f, "%d/%d/0x%08x", 
175                         ace->type, ace->flags, ace->info.mask);
176                 return;
177         }
178
179         /* Ace type */
180
181         if (ace->type == SEC_ACE_TYPE_ACCESS_ALLOWED) {
182                 fprintf(f, "ALLOWED");
183         } else if (ace->type == SEC_ACE_TYPE_ACCESS_DENIED) {
184                 fprintf(f, "DENIED");
185         } else {
186                 fprintf(f, "%d", ace->type);
187         }
188
189         /* Not sure what flags can be set in a file ACL */
190
191         fprintf(f, "/%d/", ace->flags);
192
193         /* Standard permissions */
194
195         for (v = standard_values; v->perm; v++) {
196                 if (ace->info.mask == v->mask) {
197                         fprintf(f, "%s", v->perm);
198                         return;
199                 }
200         }
201
202         /* Special permissions.  Print out a hex value if we have
203            leftover bits in the mask. */
204
205         got_mask = ace->info.mask;
206
207  again:
208         for (v = special_values; v->perm; v++) {
209                 if ((ace->info.mask & v->mask) == v->mask) {
210                         if (do_print) {
211                                 fprintf(f, "%s", v->perm);
212                         }
213                         got_mask &= ~v->mask;
214                 }
215         }
216
217         if (!do_print) {
218                 if (got_mask != 0) {
219                         fprintf(f, "0x%08x", ace->info.mask);
220                 } else {
221                         do_print = 1;
222                         goto again;
223                 }
224         }
225 }
226
227
228 /* parse an ACE in the same format as print_ace() */
229 static BOOL parse_ace(SEC_ACE *ace, const char *orig_str)
230 {
231         char *p;
232         const char *cp;
233         fstring tok;
234         unsigned int atype = 0;
235         unsigned int aflags = 0;
236         unsigned int amask = 0;
237         DOM_SID sid;
238         SEC_ACCESS mask;
239         const struct perm_value *v;
240         char *str = SMB_STRDUP(orig_str);
241
242         if (!str) {
243                 return False;
244         }
245
246         ZERO_STRUCTP(ace);
247         p = strchr_m(str,':');
248         if (!p) {
249                 printf("ACE '%s': missing ':'.\n", orig_str);
250                 SAFE_FREE(str);
251                 return False;
252         }
253         *p = '\0';
254         p++;
255         /* Try to parse numeric form */
256
257         if (sscanf(p, "%i/%i/%i", &atype, &aflags, &amask) == 3 &&
258             StringToSid(&sid, str)) {
259                 goto done;
260         }
261
262         /* Try to parse text form */
263
264         if (!StringToSid(&sid, str)) {
265                 printf("ACE '%s': failed to convert '%s' to SID\n",
266                         orig_str, str);
267                 SAFE_FREE(str);
268                 return False;
269         }
270
271         cp = p;
272         if (!next_token(&cp, tok, "/", sizeof(fstring))) {
273                 printf("ACE '%s': failed to find '/' character.\n",
274                         orig_str);
275                 SAFE_FREE(str);
276                 return False;
277         }
278
279         if (strncmp(tok, "ALLOWED", strlen("ALLOWED")) == 0) {
280                 atype = SEC_ACE_TYPE_ACCESS_ALLOWED;
281         } else if (strncmp(tok, "DENIED", strlen("DENIED")) == 0) {
282                 atype = SEC_ACE_TYPE_ACCESS_DENIED;
283         } else {
284                 printf("ACE '%s': missing 'ALLOWED' or 'DENIED' entry at '%s'\n",
285                         orig_str, tok);
286                 SAFE_FREE(str);
287                 return False;
288         }
289
290         /* Only numeric form accepted for flags at present */
291
292         if (!(next_token(&cp, tok, "/", sizeof(fstring)) &&
293               sscanf(tok, "%i", &aflags))) {
294                 printf("ACE '%s': bad integer flags entry at '%s'\n",
295                         orig_str, tok);
296                 SAFE_FREE(str);
297                 return False;
298         }
299
300         if (!next_token(&cp, tok, "/", sizeof(fstring))) {
301                 printf("ACE '%s': missing / at '%s'\n",
302                         orig_str, tok);
303                 SAFE_FREE(str);
304                 return False;
305         }
306
307         if (strncmp(tok, "0x", 2) == 0) {
308                 if (sscanf(tok, "%i", &amask) != 1) {
309                         printf("ACE '%s': bad hex number at '%s'\n",
310                                 orig_str, tok);
311                         SAFE_FREE(str);
312                         return False;
313                 }
314                 goto done;
315         }
316
317         for (v = standard_values; v->perm; v++) {
318                 if (strcmp(tok, v->perm) == 0) {
319                         amask = v->mask;
320                         goto done;
321                 }
322         }
323
324         p = tok;
325
326         while(*p) {
327                 BOOL found = False;
328
329                 for (v = special_values; v->perm; v++) {
330                         if (v->perm[0] == *p) {
331                                 amask |= v->mask;
332                                 found = True;
333                         }
334                 }
335
336                 if (!found) {
337                         printf("ACE '%s': bad permission value at '%s'\n",
338                                 orig_str, p);
339                         SAFE_FREE(str);
340                         return False;
341                 }
342                 p++;
343         }
344
345         if (*p) {
346                 SAFE_FREE(str);
347                 return False;
348         }
349
350  done:
351         mask.mask = amask;
352         init_sec_ace(ace, &sid, atype, mask, aflags);
353         SAFE_FREE(str);
354         return True;
355 }
356
357 /* add an ACE to a list of ACEs in a SEC_ACL */
358 static BOOL add_ace(SEC_ACL **the_acl, SEC_ACE *ace)
359 {
360         SEC_ACL *new_ace;
361         SEC_ACE *aces;
362         if (! *the_acl) {
363                 (*the_acl) = make_sec_acl(ctx, 3, 1, ace);
364                 return True;
365         }
366
367         aces = SMB_CALLOC_ARRAY(SEC_ACE, 1+(*the_acl)->num_aces);
368         memcpy(aces, (*the_acl)->ace, (*the_acl)->num_aces * sizeof(SEC_ACE));
369         memcpy(aces+(*the_acl)->num_aces, ace, sizeof(SEC_ACE));
370         new_ace = make_sec_acl(ctx,(*the_acl)->revision,1+(*the_acl)->num_aces, aces);
371         SAFE_FREE(aces);
372         (*the_acl) = new_ace;
373         return True;
374 }
375
376 /* parse a ascii version of a security descriptor */
377 static SEC_DESC *sec_desc_parse(char *str)
378 {
379         const char *p = str;
380         fstring tok;
381         SEC_DESC *ret;
382         size_t sd_size;
383         DOM_SID *grp_sid=NULL, *owner_sid=NULL;
384         SEC_ACL *dacl=NULL;
385         int revision=1;
386
387         while (next_token(&p, tok, "\t,\r\n", sizeof(tok))) {
388
389                 if (strncmp(tok,"REVISION:", 9) == 0) {
390                         revision = strtol(tok+9, NULL, 16);
391                         continue;
392                 }
393
394                 if (strncmp(tok,"OWNER:", 6) == 0) {
395                         owner_sid = SMB_CALLOC_ARRAY(DOM_SID, 1);
396                         if (!owner_sid ||
397                             !StringToSid(owner_sid, tok+6)) {
398                                 printf("Failed to parse owner sid\n");
399                                 return NULL;
400                         }
401                         continue;
402                 }
403
404                 if (strncmp(tok,"GROUP:", 6) == 0) {
405                         grp_sid = SMB_CALLOC_ARRAY(DOM_SID, 1);
406                         if (!grp_sid ||
407                             !StringToSid(grp_sid, tok+6)) {
408                                 printf("Failed to parse group sid\n");
409                                 return NULL;
410                         }
411                         continue;
412                 }
413
414                 if (strncmp(tok,"ACL:", 4) == 0) {
415                         SEC_ACE ace;
416                         if (!parse_ace(&ace, tok+4)) {
417                                 return NULL;
418                         }
419                         if(!add_ace(&dacl, &ace)) {
420                                 printf("Failed to add ACL %s\n", tok);
421                                 return NULL;
422                         }
423                         continue;
424                 }
425
426                 printf("Failed to parse token '%s' in security descriptor,\n", tok);
427                 return NULL;
428         }
429
430         ret = make_sec_desc(ctx,revision, SEC_DESC_SELF_RELATIVE, owner_sid, grp_sid, 
431                             NULL, dacl, &sd_size);
432
433         SAFE_FREE(grp_sid);
434         SAFE_FREE(owner_sid);
435
436         return ret;
437 }
438
439
440 /* print a ascii version of a security descriptor on a FILE handle */
441 static void sec_desc_print(FILE *f, SEC_DESC *sd)
442 {
443         fstring sidstr;
444         uint32 i;
445
446         fprintf(f, "REVISION:%d\n", sd->revision);
447
448         /* Print owner and group sid */
449
450         if (sd->owner_sid) {
451                 SidToString(sidstr, sd->owner_sid);
452         } else {
453                 fstrcpy(sidstr, "");
454         }
455
456         fprintf(f, "OWNER:%s\n", sidstr);
457
458         if (sd->grp_sid) {
459                 SidToString(sidstr, sd->grp_sid);
460         } else {
461                 fstrcpy(sidstr, "");
462         }
463
464         fprintf(f, "GROUP:%s\n", sidstr);
465
466         /* Print aces */
467         for (i = 0; sd->dacl && i < sd->dacl->num_aces; i++) {
468                 SEC_ACE *ace = &sd->dacl->ace[i];
469                 fprintf(f, "ACL:");
470                 print_ace(f, ace);
471                 fprintf(f, "\n");
472         }
473
474 }
475
476 /***************************************************** 
477 dump the acls for a file
478 *******************************************************/
479 static int cacl_dump(struct cli_state *cli, char *filename)
480 {
481         int result = EXIT_FAILED;
482         int fnum = -1;
483         SEC_DESC *sd;
484
485         if (test_args) 
486                 return EXIT_OK;
487
488         fnum = cli_nt_create(cli, filename, CREATE_ACCESS_READ);
489
490         if (fnum == -1) {
491                 printf("Failed to open %s: %s\n", filename, cli_errstr(cli));
492                 goto done;
493         }
494
495         sd = cli_query_secdesc(cli, fnum, ctx);
496
497         if (!sd) {
498                 printf("ERROR: secdesc query failed: %s\n", cli_errstr(cli));
499                 goto done;
500         }
501
502         sec_desc_print(stdout, sd);
503
504         result = EXIT_OK;
505
506 done:
507         if (fnum != -1)
508                 cli_close(cli, fnum);
509
510         return result;
511 }
512
513 /***************************************************** 
514 Change the ownership or group ownership of a file. Just
515 because the NT docs say this can't be done :-). JRA.
516 *******************************************************/
517
518 static int owner_set(struct cli_state *cli, enum chown_mode change_mode, 
519                      char *filename, char *new_username)
520 {
521         int fnum;
522         DOM_SID sid;
523         SEC_DESC *sd, *old;
524         size_t sd_size;
525
526         fnum = cli_nt_create(cli, filename, CREATE_ACCESS_READ);
527
528         if (fnum == -1) {
529                 printf("Failed to open %s: %s\n", filename, cli_errstr(cli));
530                 return EXIT_FAILED;
531         }
532
533         if (!StringToSid(&sid, new_username))
534                 return EXIT_PARSE_ERROR;
535
536         old = cli_query_secdesc(cli, fnum, ctx);
537
538         cli_close(cli, fnum);
539
540         if (!old) {
541                 printf("owner_set: Failed to query old descriptor\n");
542                 return EXIT_FAILED;
543         }
544
545         sd = make_sec_desc(ctx,old->revision, old->type,
546                                 (change_mode == REQUEST_CHOWN) ? &sid : NULL,
547                                 (change_mode == REQUEST_CHGRP) ? &sid : NULL,
548                            NULL, NULL, &sd_size);
549
550         fnum = cli_nt_create(cli, filename, WRITE_OWNER_ACCESS);
551
552         if (fnum == -1) {
553                 printf("Failed to open %s: %s\n", filename, cli_errstr(cli));
554                 return EXIT_FAILED;
555         }
556
557         if (!cli_set_secdesc(cli, fnum, sd)) {
558                 printf("ERROR: secdesc set failed: %s\n", cli_errstr(cli));
559         }
560
561         cli_close(cli, fnum);
562
563         return EXIT_OK;
564 }
565
566
567 /* The MSDN is contradictory over the ordering of ACE entries in an ACL.
568    However NT4 gives a "The information may have been modified by a
569    computer running Windows NT 5.0" if denied ACEs do not appear before
570    allowed ACEs. */
571
572 static int ace_compare(SEC_ACE *ace1, SEC_ACE *ace2)
573 {
574         if (sec_ace_equal(ace1, ace2)) 
575                 return 0;
576
577         if (ace1->type != ace2->type) 
578                 return ace2->type - ace1->type;
579
580         if (sid_compare(&ace1->trustee, &ace2->trustee)) 
581                 return sid_compare(&ace1->trustee, &ace2->trustee);
582
583         if (ace1->flags != ace2->flags) 
584                 return ace1->flags - ace2->flags;
585
586         if (ace1->info.mask != ace2->info.mask) 
587                 return ace1->info.mask - ace2->info.mask;
588
589         if (ace1->size != ace2->size) 
590                 return ace1->size - ace2->size;
591
592         return memcmp(ace1, ace2, sizeof(SEC_ACE));
593 }
594
595 static void sort_acl(SEC_ACL *the_acl)
596 {
597         uint32 i;
598         if (!the_acl) return;
599
600         qsort(the_acl->ace, the_acl->num_aces, sizeof(the_acl->ace[0]), QSORT_CAST ace_compare);
601
602         for (i=1;i<the_acl->num_aces;) {
603                 if (sec_ace_equal(&the_acl->ace[i-1], &the_acl->ace[i])) {
604                         int j;
605                         for (j=i; j<the_acl->num_aces-1; j++) {
606                                 the_acl->ace[j] = the_acl->ace[j+1];
607                         }
608                         the_acl->num_aces--;
609                 } else {
610                         i++;
611                 }
612         }
613 }
614
615 /***************************************************** 
616 set the ACLs on a file given an ascii description
617 *******************************************************/
618 static int cacl_set(struct cli_state *cli, char *filename, 
619                     char *the_acl, enum acl_mode mode)
620 {
621         int fnum;
622         SEC_DESC *sd, *old;
623         uint32 i, j;
624         size_t sd_size;
625         int result = EXIT_OK;
626
627         sd = sec_desc_parse(the_acl);
628
629         if (!sd) return EXIT_PARSE_ERROR;
630         if (test_args) return EXIT_OK;
631
632         /* The desired access below is the only one I could find that works
633            with NT4, W2KP and Samba */
634
635         fnum = cli_nt_create(cli, filename, CREATE_ACCESS_READ);
636
637         if (fnum == -1) {
638                 printf("cacl_set failed to open %s: %s\n", filename, cli_errstr(cli));
639                 return EXIT_FAILED;
640         }
641
642         old = cli_query_secdesc(cli, fnum, ctx);
643
644         if (!old) {
645                 printf("calc_set: Failed to query old descriptor\n");
646                 return EXIT_FAILED;
647         }
648
649         cli_close(cli, fnum);
650
651         /* the logic here is rather more complex than I would like */
652         switch (mode) {
653         case SMB_ACL_DELETE:
654                 for (i=0;sd->dacl && i<sd->dacl->num_aces;i++) {
655                         BOOL found = False;
656
657                         for (j=0;old->dacl && j<old->dacl->num_aces;j++) {
658                                 if (sec_ace_equal(&sd->dacl->ace[i],
659                                                   &old->dacl->ace[j])) {
660                                         uint32 k;
661                                         for (k=j; k<old->dacl->num_aces-1;k++) {
662                                                 old->dacl->ace[k] = old->dacl->ace[k+1];
663                                         }
664                                         old->dacl->num_aces--;
665                                         found = True;
666                                         break;
667                                 }
668                         }
669
670                         if (!found) {
671                                 printf("ACL for ACE:"); 
672                                 print_ace(stdout, &sd->dacl->ace[i]);
673                                 printf(" not found\n");
674                         }
675                 }
676                 break;
677
678         case SMB_ACL_MODIFY:
679                 for (i=0;sd->dacl && i<sd->dacl->num_aces;i++) {
680                         BOOL found = False;
681
682                         for (j=0;old->dacl && j<old->dacl->num_aces;j++) {
683                                 if (sid_equal(&sd->dacl->ace[i].trustee,
684                                               &old->dacl->ace[j].trustee)) {
685                                         old->dacl->ace[j] = sd->dacl->ace[i];
686                                         found = True;
687                                 }
688                         }
689
690                         if (!found) {
691                                 fstring str;
692
693                                 SidToString(str, &sd->dacl->ace[i].trustee);
694                                 printf("ACL for SID %s not found\n", str);
695                         }
696                 }
697
698                 if (sd->owner_sid) {
699                         old->owner_sid = sd->owner_sid;
700                 }
701
702                 if (sd->grp_sid) { 
703                         old->grp_sid = sd->grp_sid;
704                 }
705
706                 break;
707
708         case SMB_ACL_ADD:
709                 for (i=0;sd->dacl && i<sd->dacl->num_aces;i++) {
710                         add_ace(&old->dacl, &sd->dacl->ace[i]);
711                 }
712                 break;
713
714         case SMB_ACL_SET:
715                 old = sd;
716                 break;
717         }
718
719         /* Denied ACE entries must come before allowed ones */
720         sort_acl(old->dacl);
721
722         /* Create new security descriptor and set it */
723 #if 0
724         /* We used to just have "WRITE_DAC_ACCESS" without WRITE_OWNER.
725            But if we're sending an owner, even if it's the same as the one
726            that already exists then W2K3 insists we open with WRITE_OWNER access.
727            I need to check that setting a SD with no owner set works against WNT
728            and W2K. JRA.
729         */
730
731         sd = make_sec_desc(ctx,old->revision, old->type, old->owner_sid, old->grp_sid,
732                            NULL, old->dacl, &sd_size);
733
734         fnum = cli_nt_create(cli, filename, WRITE_DAC_ACCESS|WRITE_OWNER_ACCESS);
735 #else
736         sd = make_sec_desc(ctx,old->revision, old->type, NULL, NULL,
737                            NULL, old->dacl, &sd_size);
738
739         fnum = cli_nt_create(cli, filename, WRITE_DAC_ACCESS);
740 #endif
741         if (fnum == -1) {
742                 printf("cacl_set failed to open %s: %s\n", filename, cli_errstr(cli));
743                 return EXIT_FAILED;
744         }
745
746         if (!cli_set_secdesc(cli, fnum, sd)) {
747                 printf("ERROR: secdesc set failed: %s\n", cli_errstr(cli));
748                 result = EXIT_FAILED;
749         }
750
751         /* Clean up */
752
753         cli_close(cli, fnum);
754
755         return result;
756 }
757
758
759 /***************************************************** 
760 return a connection to a server
761 *******************************************************/
762 static struct cli_state *connect_one(const char *share)
763 {
764         struct cli_state *c;
765         struct in_addr ip;
766         NTSTATUS nt_status;
767         zero_ip(&ip);
768         
769         if (!cmdline_auth_info.got_pass) {
770                 char *pass = getpass("Password: ");
771                 if (pass) {
772                         pstrcpy(cmdline_auth_info.password, pass);
773                         cmdline_auth_info.got_pass = True;
774                 }
775         }
776
777         if (NT_STATUS_IS_OK(nt_status = cli_full_connection(&c, global_myname(), server, 
778                                                             &ip, 0,
779                                                             share, "?????",  
780                                                             cmdline_auth_info.username, lp_workgroup(),
781                                                             cmdline_auth_info.password, 0,
782                                                             cmdline_auth_info.signing_state, NULL))) {
783                 return c;
784         } else {
785                 DEBUG(0,("cli_full_connection failed! (%s)\n", nt_errstr(nt_status)));
786                 return NULL;
787         }
788 }
789
790 /****************************************************************************
791   main program
792 ****************************************************************************/
793  int main(int argc, const char *argv[])
794 {
795         char *share;
796         int opt;
797         enum acl_mode mode = SMB_ACL_SET;
798         static char *the_acl = NULL;
799         enum chown_mode change_mode = REQUEST_NONE;
800         int result;
801         fstring path;
802         pstring filename;
803         poptContext pc;
804         struct poptOption long_options[] = {
805                 POPT_AUTOHELP
806                 { "delete", 'D', POPT_ARG_STRING, NULL, 'D', "Delete an acl", "ACL" },
807                 { "modify", 'M', POPT_ARG_STRING, NULL, 'M', "Modify an acl", "ACL" },
808                 { "add", 'a', POPT_ARG_STRING, NULL, 'a', "Add an acl", "ACL" },
809                 { "set", 'S', POPT_ARG_STRING, NULL, 'S', "Set acls", "ACLS" },
810                 { "chown", 'C', POPT_ARG_STRING, NULL, 'C', "Change ownership of a file", "USERNAME" },
811                 { "chgrp", 'G', POPT_ARG_STRING, NULL, 'G', "Change group ownership of a file", "GROUPNAME" },
812                 { "numeric", 0, POPT_ARG_NONE, &numeric, True, "Don't resolve sids or masks to names" },
813                 { "test-args", 't', POPT_ARG_NONE, &test_args, True, "Test arguments"},
814                 POPT_COMMON_SAMBA
815                 POPT_COMMON_CREDENTIALS
816                 { NULL }
817         };
818
819         struct cli_state *cli;
820
821         load_case_tables();
822
823         ctx=talloc_init("main");
824
825         /* set default debug level to 1 regardless of what smb.conf sets */
826         setup_logging( "smbcacls", True );
827         DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
828         dbf = x_stderr;
829         x_setbuf( x_stderr, NULL );
830
831         setlinebuf(stdout);
832
833         lp_load(dyn_CONFIGFILE,True,False,False,True);
834         load_interfaces();
835
836         pc = poptGetContext("smbcacls", argc, argv, long_options, 0);
837         
838         poptSetOtherOptionHelp(pc, "//server1/share1 filename\nACLs look like: "
839                 "'ACL:user:[ALLOWED|DENIED]/flags/permissions'");
840
841         while ((opt = poptGetNextOpt(pc)) != -1) {
842                 switch (opt) {
843                 case 'S':
844                         the_acl = smb_xstrdup(poptGetOptArg(pc));
845                         mode = SMB_ACL_SET;
846                         break;
847
848                 case 'D':
849                         the_acl = smb_xstrdup(poptGetOptArg(pc));
850                         mode = SMB_ACL_DELETE;
851                         break;
852
853                 case 'M':
854                         the_acl = smb_xstrdup(poptGetOptArg(pc));
855                         mode = SMB_ACL_MODIFY;
856                         break;
857
858                 case 'a':
859                         the_acl = smb_xstrdup(poptGetOptArg(pc));
860                         mode = SMB_ACL_ADD;
861                         break;
862
863                 case 'C':
864                         pstrcpy(owner_username,poptGetOptArg(pc));
865                         change_mode = REQUEST_CHOWN;
866                         break;
867
868                 case 'G':
869                         pstrcpy(owner_username,poptGetOptArg(pc));
870                         change_mode = REQUEST_CHGRP;
871                         break;
872                 }
873         }
874
875         /* Make connection to server */
876         if(!poptPeekArg(pc)) { 
877                 poptPrintUsage(pc, stderr, 0);
878                 return -1;
879         }
880         
881         fstrcpy(path, poptGetArg(pc));
882         
883         if(!poptPeekArg(pc)) { 
884                 poptPrintUsage(pc, stderr, 0);  
885                 return -1;
886         }
887         
888         pstrcpy(filename, poptGetArg(pc));
889
890         all_string_sub(path,"/","\\",0);
891
892         fstrcpy(server,path+2);
893         share = strchr_m(server,'\\');
894         if (!share) {
895                 share = strchr_m(server,'/');
896                 if (!share) {
897                         printf("Invalid argument: %s\n", share);
898                         return -1;
899                 }
900         }
901
902         *share = 0;
903         share++;
904
905         if (!test_args) {
906                 cli = connect_one(share);
907                 if (!cli) {
908                         talloc_destroy(ctx);
909                         exit(EXIT_FAILED);
910                 }
911         } else {
912                 exit(0);
913         }
914
915         all_string_sub(filename, "/", "\\", 0);
916         if (filename[0] != '\\') {
917                 pstring s;
918                 s[0] = '\\';
919                 safe_strcpy(&s[1], filename, sizeof(pstring)-2);
920                 pstrcpy(filename, s);
921         }
922
923         /* Perform requested action */
924
925         if (change_mode != REQUEST_NONE) {
926                 result = owner_set(cli, change_mode, filename, owner_username);
927         } else if (the_acl) {
928                 result = cacl_set(cli, filename, the_acl, mode);
929         } else {
930                 result = cacl_dump(cli, filename);
931         }
932
933         talloc_destroy(ctx);
934
935         return result;
936 }