Fixed failing hunks.
[rsync/rsync-patches.git] / acls.diff
CommitLineData
fa26e11c
WD
1After applying this patch, run these commands for a successful build:
2
27e96866 3 ./prepare-source
f787c90c 4 ./configure --enable-acl-support
fa26e11c
WD
5 make
6
f05cc718
WD
7The program currently complains when the --acls (-A) option is used to copy
8from a disk that doesn't support ACLs. This should be changed to silently
9notice that no ACLs are available to copy. Of course, trying to write out
10ACLs to a non-ACL-supporting disk should complain.
fa26e11c 11
9a7eef96
WD
12--- old/Makefile.in
13+++ new/Makefile.in
4bf6f8c7 14@@ -25,15 +25,15 @@ VERSION=@VERSION@
fa26e11c
WD
15 .SUFFIXES:
16 .SUFFIXES: .c .o
17
18-HEADERS=byteorder.h config.h errcode.h proto.h rsync.h lib/pool_alloc.h
19+HEADERS=byteorder.h config.h errcode.h proto.h rsync.h smb_acls.h lib/pool_alloc.h
20 LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o \
0f6733d8
WD
21- lib/permstring.o lib/pool_alloc.o @LIBOBJS@
22+ lib/permstring.o lib/pool_alloc.o lib/sysacls.o @LIBOBJS@
4bf6f8c7
WD
23 ZLIBOBJ=zlib/deflate.o zlib/inffast.o zlib/inflate.o zlib/inftrees.o \
24 zlib/trees.o zlib/zutil.o zlib/adler32.o zlib/compress.o zlib/crc32.o
fa26e11c
WD
25 OBJS1=rsync.o generator.o receiver.o cleanup.o sender.o exclude.o util.o \
26 main.o checksum.o match.o syscall.o log.o backup.o
27 OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o \
610969d1
WD
28- fileio.o batch.o clientname.o chmod.o
29+ fileio.o batch.o clientname.o chmod.o acls.o
fa26e11c
WD
30 OBJS3=progress.o pipe.o
31 DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
32 popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \
9a7eef96
WD
33--- old/acls.c
34+++ new/acls.c
26c810d8 35@@ -0,0 +1,1202 @@
fa26e11c
WD
36+/* -*- c-file-style: "linux" -*-
37+ Copyright (C) Andrew Tridgell 1996
38+ Copyright (C) Paul Mackerras 1996
39+
40+ This program is free software; you can redistribute it and/or modify
41+ it under the terms of the GNU General Public License as published by
42+ the Free Software Foundation; either version 2 of the License, or
43+ (at your option) any later version.
44+
45+ This program is distributed in the hope that it will be useful,
46+ but WITHOUT ANY WARRANTY; without even the implied warranty of
47+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
48+ GNU General Public License for more details.
49+
50+ You should have received a copy of the GNU General Public License
51+ along with this program; if not, write to the Free Software
52+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
53+*/
54+
55+/* handle passing ACLs between systems */
56+
57+#include "rsync.h"
0f6733d8 58+#include "lib/sysacls.h"
fa26e11c 59+
4df546eb 60+#ifdef SUPPORT_ACLS
fa26e11c
WD
61+
62+extern int preserve_acls;
63+extern int am_root;
64+extern int dry_run;
90fa6d68 65+extern int orig_umask;
fa26e11c
WD
66+
67+typedef struct {
68+ id_t id;
69+ uchar access;
70+ SMB_ACL_TAG_T tag_type;
71+} rsync_ace;
72+
73+typedef struct {
74+ size_t count;
75+ size_t malloced;
76+ rsync_ace *races;
77+} rsync_acl;
78+
79+static const rsync_acl rsync_acl_initializer = { 0, 0, NULL };
80+
81+static void expand_rsync_acl(rsync_acl *racl)
82+{
4edb99c8
WD
83+ /* First time through, 0 <= 0, so list is expanded.
84+ * (Diabolical, rsync guys!) */
fa26e11c 85+ if (racl->malloced <= racl->count) {
0f6733d8
WD
86+ rsync_ace *new_ptr;
87+ size_t new_size = racl->malloced + 10;
88+ new_ptr = realloc_array(racl->races, rsync_ace, new_size);
fa26e11c
WD
89+ if (verbose >= 4) {
90+ rprintf(FINFO, "expand rsync_acl to %.0f bytes, did%s move\n",
0f6733d8 91+ (double) new_size * sizeof racl->races[0],
fa26e11c
WD
92+ racl->races ? "" : " not");
93+ }
94+
0f6733d8
WD
95+ racl->races = new_ptr;
96+ racl->malloced = new_size;
fa26e11c
WD
97+
98+ if (!racl->races)
99+ out_of_memory("expand_rsync_acl");
100+ }
101+}
102+
103+static void rsync_acl_free(rsync_acl *racl)
104+{
105+ free(racl->races);
106+ racl->races = NULL;
107+ racl->count = 0;
108+ racl->malloced = 0;
109+}
110+
111+static int rsync_ace_sorter(const void *r1, const void *r2)
112+{
113+ rsync_ace *race1 = (rsync_ace *)r1;
114+ SMB_ACL_TAG_T rtag1 = race1->tag_type;
115+ id_t rid1 = race1->id;
116+ rsync_ace *race2 = (rsync_ace *)r2;
117+ SMB_ACL_TAG_T rtag2 = race2->tag_type;
118+ id_t rid2 = race2->id;
119+ /* start at the extrema */
120+ if (rtag1 == SMB_ACL_USER_OBJ || rtag2 == SMB_ACL_MASK)
121+ return -1;
122+ if (rtag2 == SMB_ACL_USER_OBJ || rtag1 == SMB_ACL_MASK)
123+ return 1;
124+ /* work inwards */
125+ if (rtag1 == SMB_ACL_OTHER)
126+ return 1;
127+ if (rtag2 == SMB_ACL_OTHER)
128+ return -1;
129+ /* only SMB_ACL_USERs and SMB_ACL_GROUP*s left */
130+ if (rtag1 == SMB_ACL_USER) {
131+ switch (rtag2) {
132+ case SMB_ACL_GROUP:
133+ case SMB_ACL_GROUP_OBJ:
134+ case SMB_ACL_OTHER:
135+ return -1;
136+ }
137+ /* both USER */
138+ return rid1 == rid2 ? 0 : rid1 < rid2 ? -1 : 1;
139+ }
140+ if (rtag2 == SMB_ACL_USER)
141+ return 1;
142+ /* only SMB_ACL_GROUP*s to worry about; kick out GROUP_OBJs first */
143+ if (rtag1 == SMB_ACL_GROUP_OBJ)
144+ return -1;
145+ if (rtag2 == SMB_ACL_GROUP_OBJ)
146+ return 1;
147+ /* only SMB_ACL_GROUPs left */
148+ return rid1 == rid2 ? 0 : rid1 < rid2 ? -1 : 1;
149+}
150+
151+static void sort_rsync_acl(rsync_acl *racl)
152+{
153+ if (!racl->count)
154+ return;
155+ qsort((void **)racl->races, racl->count, sizeof racl->races[0],
156+ &rsync_ace_sorter);
157+}
158+
159+static BOOL unpack_smb_acl(rsync_acl *racl, SMB_ACL_T sacl)
160+{
161+ SMB_ACL_ENTRY_T entry;
162+ int rc;
163+ const char *errfun;
164+ *racl = rsync_acl_initializer;
165+ errfun = "sys_acl_get_entry";
166+ for (rc = sys_acl_get_entry(sacl, SMB_ACL_FIRST_ENTRY, &entry);
167+ rc == 1;
168+ rc = sys_acl_get_entry(sacl, SMB_ACL_NEXT_ENTRY, &entry)) {
169+ SMB_ACL_PERMSET_T permset;
170+ void *qualifier;
171+ rsync_ace *race;
172+ expand_rsync_acl(racl);
173+ race = &racl->races[racl->count++];
174+ if ((rc = sys_acl_get_tag_type(entry, &race->tag_type))) {
175+ errfun = "sys_acl_get_tag_type";
176+ break;
177+ }
178+ if ((rc = sys_acl_get_permset(entry, &permset))) {
179+ errfun = "sys_acl_get_tag_type";
180+ break;
181+ }
182+ race->access = (sys_acl_get_perm(permset, SMB_ACL_READ) ? 4 : 0)
183+ | (sys_acl_get_perm(permset, SMB_ACL_WRITE) ? 2 : 0)
184+ | (sys_acl_get_perm(permset, SMB_ACL_EXECUTE) ? 1 : 0);
185+ switch (race->tag_type) {
186+ case SMB_ACL_USER:
187+ case SMB_ACL_GROUP:
188+ break;
189+ default:
190+ continue;
191+ }
192+ if (!(qualifier = sys_acl_get_qualifier(entry))) {
193+ errfun = "sys_acl_get_tag_type";
194+ rc = EINVAL;
195+ break;
196+ }
197+ race->id = *((id_t *)qualifier);
198+ sys_acl_free_qualifier(qualifier, race->tag_type);
199+ }
200+ if (rc) {
201+ rprintf(FERROR, "unpack_smb_acl: %s(): %s\n",
202+ errfun, strerror(errno));
203+ rsync_acl_free(racl);
204+ return False;
205+ }
206+ sort_rsync_acl(racl);
207+ return True;
208+}
209+
210+static BOOL rsync_acls_equal(const rsync_acl *racl1, const rsync_acl *racl2)
211+{
212+ rsync_ace *race1, *race2;
213+ size_t count = racl1->count;
214+ if (count != racl2->count)
215+ return False;
216+ race1 = racl1->races;
217+ race2 = racl2->races;
218+ for (; count--; race1++, race2++) {
219+ if (race1->tag_type != race2->tag_type
220+ || race1->access != race2->access
221+ || ((race1->tag_type == SMB_ACL_USER
222+ || race1->tag_type == SMB_ACL_GROUP)
223+ && race1->id != race2->id))
224+ return False;
225+ }
226+ return True;
227+}
228+
229+typedef struct {
230+ size_t count;
231+ size_t malloced;
232+ rsync_acl *racls;
233+} rsync_acl_list;
234+
235+static rsync_acl_list _rsync_acl_lists[] = {
236+ { 0, 0, NULL }, /* SMB_ACL_TYPE_ACCESS */
237+ { 0, 0, NULL } /* SMB_ACL_TYPE_DEFAULT */
238+};
239+
240+static inline rsync_acl_list *rsync_acl_lists(SMB_ACL_TYPE_T type)
241+{
242+ return type == SMB_ACL_TYPE_ACCESS ? &_rsync_acl_lists[0]
243+ : &_rsync_acl_lists[1];
244+}
245+
246+static void expand_rsync_acl_list(rsync_acl_list *racl_list)
247+{
4edb99c8
WD
248+ /* First time through, 0 <= 0, so list is expanded.
249+ * (Diabolical, rsync guys!) */
fa26e11c 250+ if (racl_list->malloced <= racl_list->count) {
0f6733d8 251+ rsync_acl *new_ptr;
fa26e11c
WD
252+ size_t new_size;
253+ if (racl_list->malloced < 1000)
0f6733d8 254+ new_size = racl_list->malloced + 1000;
fa26e11c 255+ else
0f6733d8
WD
256+ new_size = racl_list->malloced * 2;
257+ new_ptr = realloc_array(racl_list->racls, rsync_acl, new_size);
fa26e11c
WD
258+ if (verbose >= 3) {
259+ rprintf(FINFO, "expand_rsync_acl_list to %.0f bytes, did%s move\n",
0f6733d8 260+ (double) new_size * sizeof racl_list->racls[0],
fa26e11c
WD
261+ racl_list->racls ? "" : " not");
262+ }
263+
0f6733d8
WD
264+ racl_list->racls = new_ptr;
265+ racl_list->malloced = new_size;
fa26e11c
WD
266+
267+ if (!racl_list->racls)
268+ out_of_memory("expand_rsync_acl_list");
269+ }
270+}
271+
272+#if 0
273+static void free_rsync_acl_list(rsync_acl_list *racl_list)
274+{
4edb99c8
WD
275+ /* Run this in reverse, so references are freed before referents,
276+ * although not currently necessary. */
fa26e11c
WD
277+ while (racl_list->count--) {
278+ rsync_acl *racl = &racl_list->racls[racl_list->count];
279+ if (racl)
280+ rsync_acl_free(racl);
281+ }
282+ free(racl_list->racls);
283+ racl_list->racls = NULL;
284+ racl_list->malloced = 0;
285+}
286+#endif
287+
288+static int find_matching_rsync_acl(SMB_ACL_TYPE_T type,
289+ const rsync_acl_list *racl_list,
290+ const rsync_acl *racl)
291+{
292+ static int access_match = -1, default_match = -1;
293+ int *match = (type == SMB_ACL_TYPE_ACCESS) ?
294+ &access_match : &default_match;
295+ size_t count = racl_list->count;
4edb99c8 296+ /* If this is the first time through or we didn't match the last
fa26e11c 297+ * time, then start at the end of the list, which should be the
4edb99c8 298+ * best place to start hunting. */
fa26e11c
WD
299+ if (*match == -1)
300+ *match = racl_list->count - 1;
301+ while (count--) {
302+ if (rsync_acls_equal(&racl_list->racls[*match], racl))
303+ return *match;
304+ if (!(*match)--)
305+ *match = racl_list->count - 1;
306+ }
307+ *match = -1;
308+ return *match;
309+}
310+
4edb99c8 311+/* The general strategy with the tag_type <-> character mapping is that
fa26e11c 312+ * lowercase implies that no qualifier follows, where uppercase does.
4edb99c8 313+ * A similar idiom for the acl type (access or default) itself, but
fa26e11c
WD
314+ * lowercase in this instance means there's no ACL following, so the
315+ * ACL is a repeat, so the receiver should reuse the last of the same
4edb99c8 316+ * type ACL. */
fa26e11c
WD
317+
318+static void send_rsync_acl(int f, const rsync_acl *racl)
319+{
320+ rsync_ace *race;
321+ size_t count = racl->count;
322+ write_int(f, count);
323+ for (race = racl->races; count--; race++) {
324+ char ch;
325+ switch (race->tag_type) {
326+ case SMB_ACL_USER_OBJ:
327+ ch = 'u';
328+ break;
329+ case SMB_ACL_USER:
330+ ch = 'U';
331+ break;
332+ case SMB_ACL_GROUP_OBJ:
333+ ch = 'g';
334+ break;
335+ case SMB_ACL_GROUP:
336+ ch = 'G';
337+ break;
338+ case SMB_ACL_OTHER:
339+ ch = 'o';
340+ break;
341+ case SMB_ACL_MASK:
342+ ch = 'm';
343+ break;
344+ default:
345+ rprintf(FERROR,
346+ "send_rsync_acl: unknown tag_type (%0x) on ACE; disregarding\n",
347+ race->tag_type);
348+ continue;
349+ }
350+ write_byte(f, ch);
351+ write_byte(f, race->access);
352+ if (isupper((int)ch)) {
353+ write_int(f, race->id);
4edb99c8 354+ /* FIXME: sorta wasteful: we should maybe buffer as
fa26e11c 355+ * many ids as max(ACL_USER + ACL_GROUP) objects to
4edb99c8 356+ * keep from making so many calls. */
fa26e11c
WD
357+ if (ch == 'U')
358+ add_uid(race->id);
359+ else
360+ add_gid(race->id);
361+ }
362+ }
363+}
364+
365+static rsync_acl _curr_rsync_acls[2];
366+
367+
368+static const char *str_acl_type(SMB_ACL_TYPE_T type)
369+{
370+ return type == SMB_ACL_TYPE_ACCESS ? "SMB_ACL_TYPE_ACCESS" :
371+ type == SMB_ACL_TYPE_DEFAULT ? "SMB_ACL_TYPE_DEFAULT" :
372+ "unknown SMB_ACL_TYPE_T";
373+}
374+
4edb99c8
WD
375+/* Generate the ACL(s) for this flist entry;
376+ * ACL(s) are either sent or cleaned-up by send_acl() below. */
fa26e11c 377+
ee12ff0e 378+int make_acl(const struct file_struct *file, const char *fname)
fa26e11c
WD
379+{
380+ SMB_ACL_TYPE_T *type,
381+ types[] = {SMB_ACL_TYPE_ACCESS, SMB_ACL_TYPE_DEFAULT};
382+ rsync_acl *curr_racl;
383+ if (!preserve_acls || S_ISLNK(file->mode))
05b88206 384+ return 1;
fa26e11c
WD
385+ for (type = &types[0], curr_racl = &_curr_rsync_acls[0];
386+ type < &types[0] + sizeof types / sizeof types[0]
387+ && (*type == SMB_ACL_TYPE_ACCESS || S_ISDIR(file->mode));
388+ type++, curr_racl++) {
389+ SMB_ACL_T sacl;
390+ BOOL ok;
391+ *curr_racl = rsync_acl_initializer;
392+ if (!(sacl = sys_acl_get_file(fname, *type))) {
c171f097 393+ rprintf(FERROR, "send_acl: sys_acl_get_file(%s, %s): %s\n",
fa26e11c 394+ fname, str_acl_type(*type), strerror(errno));
05b88206 395+ return -1;
fa26e11c
WD
396+ }
397+ ok = unpack_smb_acl(curr_racl, sacl);
398+ sys_acl_free_acl(sacl);
399+ if (!ok)
05b88206 400+ return -1;
fa26e11c 401+ }
05b88206 402+ return 0;
fa26e11c
WD
403+}
404+
4edb99c8
WD
405+/* Send the make_acl()-generated ACLs for this flist entry,
406+ * or clean up after an flist entry that's not being sent (f == -1). */
fa26e11c
WD
407+
408+void send_acl(const struct file_struct *file, int f)
409+{
410+ SMB_ACL_TYPE_T *type,
411+ types[] = {SMB_ACL_TYPE_ACCESS, SMB_ACL_TYPE_DEFAULT};
412+ rsync_acl *curr_racl;
413+ if (!preserve_acls || S_ISLNK(file->mode))
414+ return;
415+ for (type = &types[0], curr_racl = &_curr_rsync_acls[0];
416+ type < &types[0] + sizeof types / sizeof types[0]
417+ && (*type == SMB_ACL_TYPE_ACCESS || S_ISDIR(file->mode));
418+ type++, curr_racl++) {
419+ int index;
420+ rsync_acl_list *racl_list = rsync_acl_lists(*type);
421+ if (f == -1) {
422+ rsync_acl_free(curr_racl);
423+ continue;
424+ }
425+ if ((index = find_matching_rsync_acl(*type, racl_list, curr_racl))
426+ != -1) {
427+ write_byte(f, *type == SMB_ACL_TYPE_ACCESS ? 'a' : 'd');
428+ write_int(f, index);
429+ rsync_acl_free(curr_racl);
430+ } else {
431+ write_byte(f, *type == SMB_ACL_TYPE_ACCESS ? 'A' : 'D');
432+ send_rsync_acl(f, curr_racl);
433+ expand_rsync_acl_list(racl_list);
434+ racl_list->racls[racl_list->count++] = *curr_racl;
435+ }
436+ }
437+}
438+
4edb99c8 439+/* The below stuff is only used by the receiver: */
fa26e11c
WD
440+
441+/* structure to hold index to rsync_acl_list member corresponding to
442+ * flist->files[i] */
443+
444+typedef struct {
445+ const struct file_struct *file;
446+ int aclidx;
447+} file_acl_index;
448+
449+typedef struct {
450+ size_t count;
451+ size_t malloced;
452+ file_acl_index *fileaclidxs;
453+} file_acl_index_list;
454+
455+static file_acl_index_list _file_acl_index_lists[] = {
456+ {0, 0, NULL },/* SMB_ACL_TYPE_ACCESS */
457+ {0, 0, NULL } /* SMB_ACL_TYPE_DEFAULT */
458+};
459+
460+static inline file_acl_index_list *file_acl_index_lists(SMB_ACL_TYPE_T type)
461+{
462+ return type == SMB_ACL_TYPE_ACCESS ?
463+ &_file_acl_index_lists[0] : &_file_acl_index_lists[1];
464+}
465+
466+static void expand_file_acl_index_list(file_acl_index_list *fileaclidx_list)
467+{
4edb99c8
WD
468+ /* First time through, 0 <= 0, so list is expanded.
469+ * (Diabolical, rsync guys!) */
fa26e11c 470+ if (fileaclidx_list->malloced <= fileaclidx_list->count) {
0f6733d8 471+ file_acl_index *new_ptr;
fa26e11c
WD
472+ size_t new_size;
473+ if (fileaclidx_list->malloced < 1000)
0f6733d8 474+ new_size = fileaclidx_list->malloced + 1000;
fa26e11c 475+ else
0f6733d8
WD
476+ new_size = fileaclidx_list->malloced * 2;
477+ new_ptr = realloc_array(fileaclidx_list->fileaclidxs, file_acl_index, new_size);
fa26e11c
WD
478+ if (verbose >= 3) {
479+ rprintf(FINFO, "expand_file_acl_index_list to %.0f bytes, did%s move\n",
0f6733d8 480+ (double) new_size * sizeof fileaclidx_list->fileaclidxs[0],
fa26e11c
WD
481+ fileaclidx_list->fileaclidxs ? "" : " not");
482+ }
483+
0f6733d8
WD
484+ fileaclidx_list->fileaclidxs = new_ptr;
485+ fileaclidx_list->malloced = new_size;
fa26e11c
WD
486+
487+ if (!fileaclidx_list->fileaclidxs)
488+ out_of_memory("expand_file_acl_index_list");
489+ }
490+}
491+
492+#if 0
493+static void free_file_acl_index_list(file_acl_index_list *fileaclidx_list)
494+{
495+ free(fileaclidx_list->fileaclidxs);
496+ fileaclidx_list->fileaclidxs = NULL;
497+ fileaclidx_list->malloced = 0;
498+}
499+#endif
500+
501+/* lists to hold the SMB_ACL_Ts corresponding to the rsync_acl_list entries */
502+
503+typedef struct {
504+ size_t count;
505+ size_t malloced;
506+ SMB_ACL_T *sacls;
507+} smb_acl_list;
508+
509+static smb_acl_list _smb_acl_lists[] = {
510+ { 0, 0, NULL }, /* SMB_ACL_TYPE_ACCESS */
511+ { 0, 0, NULL } /* SMB_ACL_TYPE_DEFAULT */
512+};
513+
514+static inline smb_acl_list *smb_acl_lists(SMB_ACL_TYPE_T type)
515+{
516+ return type == SMB_ACL_TYPE_ACCESS ? &_smb_acl_lists[0] :
517+ &_smb_acl_lists[1];
518+}
519+
520+static void expand_smb_acl_list(smb_acl_list *sacl_list)
521+{
4edb99c8
WD
522+ /* First time through, 0 <= 0, so list is expanded.
523+ * (Diabolical, rsync guys!) */
fa26e11c 524+ if (sacl_list->malloced <= sacl_list->count) {
0f6733d8 525+ SMB_ACL_T *new_ptr;
fa26e11c
WD
526+ size_t new_size;
527+ if (sacl_list->malloced < 1000)
0f6733d8 528+ new_size = sacl_list->malloced + 1000;
fa26e11c 529+ else
0f6733d8
WD
530+ new_size = sacl_list->malloced * 2;
531+ new_ptr = realloc_array(sacl_list->sacls, SMB_ACL_T, new_size);
fa26e11c
WD
532+ if (verbose >= 3) {
533+ rprintf(FINFO, "expand_smb_acl_list to %.0f bytes, did%s move\n",
0f6733d8 534+ (double) new_size * sizeof sacl_list->sacls[0],
fa26e11c
WD
535+ sacl_list->sacls ? "" : " not");
536+ }
537+
0f6733d8
WD
538+ sacl_list->sacls = new_ptr;
539+ sacl_list->malloced = new_size;
fa26e11c
WD
540+
541+ if (!sacl_list->sacls)
542+ out_of_memory("expand_smb_acl_list");
543+ }
544+}
545+
546+#if 0
547+static void free_smb_acl_list(SMB_ACL_TYPE_T type)
548+{
549+ smb_acl_list *sacl_list = smb_acl_lists(type);
550+ SMB_ACL_T *sacl = sacl_list->sacls;
551+ while (sacl_list->count--) {
552+ if (*sacl)
553+ sys_acl_free_acl(*sacl++);
554+ }
555+ free(sacl_list->sacls);
556+ sacl_list->sacls = NULL;
557+ sacl_list->malloced = 0;
558+}
559+#endif
560+
561+/* build an SMB_ACL_T corresponding to an rsync_acl */
562+static BOOL pack_smb_acl(SMB_ACL_T *smb_acl, const rsync_acl *racl)
563+{
564+ size_t count = racl->count;
565+ rsync_ace *race = racl->races;
566+ const char *errfun = NULL;
567+ *smb_acl = sys_acl_init(count);
568+ if (!*smb_acl) {
569+ rprintf(FERROR, "pack_smb_acl: sys_acl_int(): %s\n",
570+ strerror(errno));
571+ return False;
572+ }
573+ for (; count--; race++) {
574+ SMB_ACL_ENTRY_T entry;
575+ SMB_ACL_PERMSET_T permset;
576+ if (sys_acl_create_entry(smb_acl, &entry)) {
577+ errfun = "sys_acl_create)";
578+ break;
579+ }
580+ if (sys_acl_set_tag_type(entry, race->tag_type)) {
581+ errfun = "sys_acl_set_tag";
582+ break;
583+ }
584+ if (race->tag_type == SMB_ACL_USER ||
585+ race->tag_type == SMB_ACL_GROUP)
586+ if (sys_acl_set_qualifier(entry, (void*)&race->id)) {
587+ errfun = "sys_acl_set_qualfier";
588+ break;
589+ }
590+ if (sys_acl_get_permset(entry, &permset)) {
591+ errfun = "sys_acl_get_permset";
592+ break;
593+ }
594+ if (sys_acl_clear_perms(permset)) {
595+ errfun = "sys_acl_clear_perms";
596+ break;
597+ }
598+ if (race->access & 4)
599+ if (sys_acl_add_perm(permset, SMB_ACL_READ)) {
600+ errfun = "sys_acl_add_perm";
601+ break;
602+ }
603+ if (race->access & 2)
604+ if (sys_acl_add_perm(permset, SMB_ACL_WRITE)) {
605+ errfun = "sys_acl_add_perm";
606+ break;
607+ }
608+ if (race->access & 1)
609+ if (sys_acl_add_perm(permset, SMB_ACL_EXECUTE)) {
610+ errfun = "sys_acl_add_perm";
611+ break;
612+ }
613+ if (sys_acl_set_permset(entry, permset)) {
614+ errfun = "sys_acl_set_permset";
615+ break;
616+ }
617+ }
618+ if (errfun) {
619+ sys_acl_free_acl(*smb_acl);
620+ rprintf(FERROR, "pack_smb_acl %s(): %s\n", errfun,
621+ strerror(errno));
622+ return False;
623+ }
624+ return True;
625+}
626+
627+static void receive_rsync_acl(rsync_acl *racl, int f)
628+{
629+#if ACLS_NEED_MASK
630+ uchar required_mask_perm = 0;
fa26e11c 631+#endif
1ce58df1 632+ BOOL saw_mask = False;
fa26e11c
WD
633+ BOOL saw_user_obj = False, saw_group_obj = False,
634+ saw_other = False;
635+ size_t count = read_int(f);
636+ rsync_ace *race;
637+ if (!count)
638+ return;
639+ while (count--) {
640+ uchar tag = read_byte(f);
641+ expand_rsync_acl(racl);
642+ race = &racl->races[racl->count++];
643+ switch (tag) {
644+ case 'u':
645+ race->tag_type = SMB_ACL_USER_OBJ;
646+ saw_user_obj = True;
647+ break;
648+ case 'U':
649+ race->tag_type = SMB_ACL_USER;
650+ break;
651+ case 'g':
652+ race->tag_type = SMB_ACL_GROUP_OBJ;
653+ saw_group_obj = True;
654+ break;
655+ case 'G':
656+ race->tag_type = SMB_ACL_GROUP;
657+ break;
658+ case 'o':
659+ race->tag_type = SMB_ACL_OTHER;
660+ saw_other = True;
661+ break;
662+ case 'm':
663+ race->tag_type = SMB_ACL_MASK;
fa26e11c 664+ saw_mask = True;
fa26e11c
WD
665+ break;
666+ default:
667+ rprintf(FERROR, "receive_rsync_acl: unknown tag %c\n",
668+ tag);
669+ exit_cleanup(RERR_STREAMIO);
670+ }
671+ race->access = read_byte(f);
672+ if (race->access & ~ (4 | 2 | 1)) {
673+ rprintf(FERROR, "receive_rsync_acl: bogus permset %o\n",
674+ race->access);
675+ exit_cleanup(RERR_STREAMIO);
676+ }
677+ if (race->tag_type == SMB_ACL_USER ||
678+ race->tag_type == SMB_ACL_GROUP) {
679+ race->id = read_int(f);
680+#if ACLS_NEED_MASK
681+ required_mask_perm |= race->access;
682+#endif
683+ }
684+#if ACLS_NEED_MASK
685+ else if (race->tag_type == SMB_ACL_GROUP_OBJ)
686+ required_mask_perm |= race->access;
687+#endif
688+
689+ }
690+ if (!saw_user_obj) {
691+ expand_rsync_acl(racl);
692+ race = &racl->races[racl->count++];
693+ race->tag_type = SMB_ACL_USER_OBJ;
694+ race->access = 7;
695+ }
696+ if (!saw_group_obj) {
697+ expand_rsync_acl(racl);
698+ race = &racl->races[racl->count++];
699+ race->tag_type = SMB_ACL_GROUP_OBJ;
700+ race->access = 0;
701+ }
702+ if (!saw_other) {
703+ expand_rsync_acl(racl);
704+ race = &racl->races[racl->count++];
705+ race->tag_type = SMB_ACL_OTHER;
706+ race->access = 0;
707+ }
708+#if ACLS_NEED_MASK
709+ if (!saw_mask) {
710+ expand_rsync_acl(racl);
711+ race = &racl->races[racl->count++];
712+ race->tag_type = SMB_ACL_MASK;
713+ race->access = required_mask_perm;
714+ }
1ce58df1
WD
715+#else
716+ /* If we, a system without ACLS_NEED_MASK, received data from a
717+ * system that has masks, throw away the extraneous CLASS_OBJs. */
718+ if (saw_mask && racl->count == 4) {
719+ rsync_ace *group_obj_race = NULL, *mask_race = NULL;
720+ rsync_ace *p;
721+ size_t i;
722+ for (i = 0, p = racl->races; i < racl->count; i++, p++) {
723+ if (p->tag_type == SMB_ACL_MASK)
724+ mask_race = p;
725+ else if (p->tag_type == SMB_ACL_GROUP_OBJ)
726+ group_obj_race = p;
727+ }
728+ if (mask_race == NULL || group_obj_race == NULL) {
729+ rprintf(FERROR, "receive_rsync_acl: have four ACES "
730+ "and one's ACL_MASK but missing "
731+ "either it or ACL_GROUP_OBJ, "
732+ "when pruning ACL\n");
733+ } else {
734+ /* mask off group perms with it first */
735+ group_obj_race->access &= mask_race->access;
736+ /* dump mask_race; re-slot any followers-on */
737+ racl->count--;
738+ if (mask_race != &racl->races[racl->count]) {
739+ *mask_race = racl->races[racl->count];
740+ saw_user_obj = False; /* force re-sort */
741+ }
742+ }
743+ }
fa26e11c
WD
744+#endif
745+#if ACLS_NEED_MASK
746+ if (!(saw_user_obj && saw_group_obj && saw_other && saw_mask))
747+#else
748+ if (!(saw_user_obj && saw_group_obj && saw_other))
749+#endif
750+ sort_rsync_acl(racl);
751+}
752+
753+/* receive and build the rsync_acl_lists */
754+
755+void receive_acl(struct file_struct *file, int f)
756+{
757+ SMB_ACL_TYPE_T *type,
758+ types[] = {SMB_ACL_TYPE_ACCESS, SMB_ACL_TYPE_DEFAULT};
759+ char *fname;
760+ if (!preserve_acls || S_ISLNK(file->mode))
761+ return;
bd68c3c2 762+ fname = f_name(file, NULL);
fa26e11c
WD
763+ for (type = &types[0];
764+ type < &types[0] + sizeof types / sizeof types[0]
765+ && (*type == SMB_ACL_TYPE_ACCESS || S_ISDIR(file->mode));
766+ type++) {
767+ file_acl_index_list *fileaclidx_list =
768+ file_acl_index_lists(*type);
769+ uchar tag;
770+ expand_file_acl_index_list(fileaclidx_list);
771+
772+ tag = read_byte(f);
773+ if (tag == 'A' || tag == 'a') {
774+ if (*type != SMB_ACL_TYPE_ACCESS) {
775+ rprintf(FERROR, "receive_acl %s: duplicate access ACL\n",
776+ fname);
777+ exit_cleanup(RERR_STREAMIO);
778+ }
779+ } else if (tag == 'D' || tag == 'd') {
780+ if (*type == SMB_ACL_TYPE_ACCESS) {
781+ rprintf(FERROR, "receive_acl %s: expecting access ACL; got default\n",
782+ fname);
783+ exit_cleanup(RERR_STREAMIO);
784+ }
785+ } else {
786+ rprintf(FERROR, "receive_acl %s: unknown ACL type tag: %c\n",
787+ fname, tag);
788+ exit_cleanup(RERR_STREAMIO);
789+ }
790+ if (tag == 'A' || tag == 'D') {
791+ rsync_acl racl = rsync_acl_initializer;
792+ rsync_acl_list *racl_list = rsync_acl_lists(*type);
793+ smb_acl_list *sacl_list = smb_acl_lists(*type);
794+ fileaclidx_list->fileaclidxs[fileaclidx_list->count].
795+ aclidx = racl_list->count;
796+ fileaclidx_list->fileaclidxs[fileaclidx_list->count++].
797+ file = file;
798+ receive_rsync_acl(&racl, f);
799+ expand_rsync_acl_list(racl_list);
800+ racl_list->racls[racl_list->count++] = racl;
801+ expand_smb_acl_list(sacl_list);
802+ sacl_list->sacls[sacl_list->count++] = NULL;
803+ } else {
804+ int index = read_int(f);
805+ rsync_acl_list *racl_list = rsync_acl_lists(*type);
806+ if ((size_t) index >= racl_list->count) {
807+ rprintf(FERROR, "receive_acl %s: %s ACL index %d out of range\n",
808+ fname,
809+ str_acl_type(*type),
810+ index);
811+ exit_cleanup(RERR_STREAMIO);
812+ }
813+ fileaclidx_list->fileaclidxs[fileaclidx_list->count].
814+ aclidx = index;
815+ fileaclidx_list->fileaclidxs[fileaclidx_list->count++].
816+ file = file;
817+ }
818+ }
819+}
820+
821+static int file_acl_index_list_sorter(const void *f1, const void *f2)
822+{
823+ const file_acl_index *fileaclidx1 = (const file_acl_index *)f1;
824+ const file_acl_index *fileaclidx2 = (const file_acl_index *)f2;
825+ return fileaclidx1->file == fileaclidx2->file ? 0 :
826+ fileaclidx1->file < fileaclidx2->file ? -1 : 1;
827+}
828+
829+void sort_file_acl_index_lists()
830+{
831+ SMB_ACL_TYPE_T *type,
832+ types[] = {SMB_ACL_TYPE_ACCESS, SMB_ACL_TYPE_DEFAULT};
833+ if (!preserve_acls)
834+ return;
835+ for (type = &types[0];
836+ type < &types[0] + sizeof types / sizeof types[0];
837+ type++)
838+ {
839+ file_acl_index_list *fileaclidx_list =
840+ file_acl_index_lists(*type);
841+ if (!fileaclidx_list->count)
842+ continue;
843+ qsort(fileaclidx_list->fileaclidxs, fileaclidx_list->count,
844+ sizeof fileaclidx_list->fileaclidxs[0],
845+ &file_acl_index_list_sorter);
846+ }
847+}
848+
849+static int find_file_acl_index(const file_acl_index_list *fileaclidx_list,
850+ const struct file_struct *file) {
851+ int low = 0, high = fileaclidx_list->count;
852+ const struct file_struct *file_mid;
853+ if (!high--)
854+ return -1;
855+ do {
856+ int mid = (high + low) / 2;
857+ file_mid = fileaclidx_list->fileaclidxs[mid].file;
858+ if (file_mid == file)
859+ return fileaclidx_list->fileaclidxs[mid].aclidx;
860+ if (file_mid > file)
861+ high = mid - 1;
862+ else
863+ low = mid + 1;
864+ } while (low < high);
865+ if (low == high) {
866+ file_mid = fileaclidx_list->fileaclidxs[low].file;
867+ if (file_mid == file)
868+ return fileaclidx_list->fileaclidxs[low].aclidx;
869+ }
870+ rprintf(FERROR,
871+ "find_file_acl_index: can't find entry for file in list\n");
872+ exit_cleanup(RERR_STREAMIO);
873+ return -1;
874+}
875+
876+/* for duplicating ACLs on backups when using backup_dir */
877+
878+int dup_acl(const char *orig, const char *bak, mode_t mode)
879+{
880+ SMB_ACL_TYPE_T *type,
881+ types[] = {SMB_ACL_TYPE_ACCESS, SMB_ACL_TYPE_DEFAULT};
882+ int ret = 0;
883+ if (!preserve_acls)
05b88206 884+ return 1;
fa26e11c
WD
885+ for (type = &types[0];
886+ type < &types[0] + sizeof types / sizeof types[0]
887+ && (*type == SMB_ACL_TYPE_ACCESS || S_ISDIR(mode));
888+ type++) {
889+ SMB_ACL_T sacl_orig, sacl_bak;
890+ rsync_acl racl_orig, racl_bak;
891+ if (!(sacl_orig = sys_acl_get_file(orig, *type))) {
c171f097 892+ rprintf(FERROR, "dup_acl: sys_acl_get_file(%s, %s): %s\n",
fa26e11c
WD
893+ orig, str_acl_type(*type), strerror(errno));
894+ ret = -1;
895+ continue;
896+ }
897+ if (!(sacl_bak = sys_acl_get_file(orig, *type))) {
c171f097 898+ rprintf(FERROR, "dup_acl: sys_acl_get_file(%s, %s): %s. ignoring\n",
fa26e11c
WD
899+ bak, str_acl_type(*type), strerror(errno));
900+ ret = -1;
901+ /* try to forge on through */
902+ }
903+ if (!unpack_smb_acl(&racl_orig, sacl_orig)) {
904+ ret = -1;
905+ goto out_with_sacls;
906+ }
907+ if (sacl_bak) {
908+ if (!unpack_smb_acl(&racl_bak, sacl_bak)) {
909+ ret = -1;
910+ goto out_with_one_racl;
911+ }
912+ if (rsync_acls_equal(&racl_orig, &racl_bak))
913+ goto out_with_all;
914+ } else {
915+ ; /* presume they're unequal */
916+ }
917+ if (*type == SMB_ACL_TYPE_DEFAULT && !racl_orig.count) {
918+ if (-1 == sys_acl_delete_def_file(bak)) {
919+ rprintf(FERROR, "dup_acl: sys_acl_delete_def_file(%s): %s\n",
920+ bak, strerror(errno));
921+ ret = -1;
922+ }
923+ } else if (-1 == sys_acl_set_file(bak, *type, sacl_bak)) {
c171f097 924+ rprintf(FERROR, "dup_acl: sys_acl_set_file(%s, %s): %s\n",
fa26e11c
WD
925+ bak, str_acl_type(*type), strerror(errno));
926+ ret = -1;
927+ }
928+ out_with_all:
929+ if (sacl_bak)
930+ rsync_acl_free(&racl_bak);
931+ out_with_one_racl:
932+ rsync_acl_free(&racl_orig);
933+ out_with_sacls:
934+ if (sacl_bak)
935+ sys_acl_free_acl(sacl_bak);
936+ /* out_with_one_sacl: */
937+ if (sacl_orig)
938+ sys_acl_free_acl(sacl_orig);
939+ }
940+ return ret;
941+}
942+
90fa6d68 943+/* Stuff for redirecting calls to set_acl() from set_file_attrs()
4edb99c8 944+ * for keep_backup(). */
fa26e11c
WD
945+static const struct file_struct *backup_orig_file = NULL;
946+static const char null_string[] = "";
947+static const char *backup_orig_fname = null_string;
948+static const char *backup_dest_fname = null_string;
949+static SMB_ACL_T _backup_sacl[] = { NULL, NULL };
950+
951+void push_keep_backup_acl(const struct file_struct *file,
952+ const char *orig, const char *dest)
953+{
954+ if (preserve_acls) {
955+ SMB_ACL_TYPE_T *type,
956+ types[] = {SMB_ACL_TYPE_ACCESS, SMB_ACL_TYPE_DEFAULT};
957+ SMB_ACL_T *sacl;
958+ backup_orig_file = file;
959+ backup_orig_fname = orig;
960+ backup_dest_fname = dest;
961+ for (type = &types[0], sacl = &_backup_sacl[0];
962+ type < &types[0] + sizeof types / sizeof types[0];
963+ type++) {
964+ if (*type == SMB_ACL_TYPE_DEFAULT && !S_ISDIR(file->mode))
965+ *sacl = NULL;
966+ else {
967+ if (!(*sacl = sys_acl_get_file(orig, *type))) {
c171f097 968+ rprintf(FERROR, "push_keep_backup_acl: sys_acl_get_file(%s, %s): %s\n",
fa26e11c
WD
969+ orig, str_acl_type(*type),
970+ strerror(errno));
971+ }
972+ }
973+ }
974+ }
975+}
976+
977+static int set_keep_backup_acl()
978+{
979+ if (preserve_acls) {
980+ SMB_ACL_TYPE_T *type,
981+ types[] = {SMB_ACL_TYPE_ACCESS, SMB_ACL_TYPE_DEFAULT};
982+ SMB_ACL_T *sacl;
983+ int ret = 0;
984+ for (type = &types[0], sacl = &_backup_sacl[0];
985+ type < &types[0] + sizeof types / sizeof types[0];
986+ type++) {
987+ if (*sacl) {
988+ if (-1 == sys_acl_set_file(backup_dest_fname,
989+ *type, *sacl))
990+ {
c171f097 991+ rprintf(FERROR, "push_keep_backup_acl: sys_acl_get_file(%s, %s): %s\n",
fa26e11c
WD
992+ backup_dest_fname,
993+ str_acl_type(*type),
994+ strerror(errno));
995+ ret = -1;
996+ }
997+ }
998+ }
999+ return ret;
1000+ }
05b88206 1001+ return 1;
fa26e11c
WD
1002+}
1003+
1004+void cleanup_keep_backup_acl()
1005+{
1006+ if (preserve_acls) {
1007+ SMB_ACL_TYPE_T *type,
1008+ types[] = {SMB_ACL_TYPE_ACCESS, SMB_ACL_TYPE_DEFAULT};
1009+ SMB_ACL_T *sacl;
1010+ backup_orig_file = NULL;
1011+ backup_orig_fname = null_string;
1012+ backup_dest_fname = null_string;
1013+ for (type = &types[0], sacl = &_backup_sacl[0];
1014+ type < &types[0] + sizeof types / sizeof types[0];
1015+ type++) {
1016+ if (*sacl)
1017+ sys_acl_free_acl(*sacl);
1018+ *sacl = NULL;
1019+ }
1020+ }
1021+}
1022+
1023+/* set ACL on rsync-ed or keep_backup-ed file */
1024+
1025+int set_acl(const char *fname, const struct file_struct *file)
1026+{
1027+ int updated = 0;
1028+ SMB_ACL_TYPE_T *type,
1029+ types[] = {SMB_ACL_TYPE_ACCESS, SMB_ACL_TYPE_DEFAULT};
1030+ if (dry_run || !preserve_acls || S_ISLNK(file->mode))
05b88206 1031+ return 1;
fa26e11c
WD
1032+ if (file == backup_orig_file) {
1033+ if (!strcmp(fname, backup_dest_fname))
1034+ return set_keep_backup_acl();
1035+ }
1036+ for (type = &types[0];
1037+ type < &types[0] + sizeof types / sizeof types[0]
1038+ && (*type == SMB_ACL_TYPE_ACCESS || S_ISDIR(file->mode));
1039+ type++) {
1040+ SMB_ACL_T sacl_orig, *sacl_new;
1041+ rsync_acl racl_orig, *racl_new;
1042+ int aclidx = find_file_acl_index(file_acl_index_lists(*type),
1043+ file);
1044+ BOOL ok;
1045+ racl_new = &(rsync_acl_lists(*type)->racls[aclidx]);
1046+ sacl_new = &(smb_acl_lists(*type)->sacls[aclidx]);
1047+ sacl_orig = sys_acl_get_file(fname, *type);
1048+ if (!sacl_orig) {
1049+ rprintf(FERROR, "set_acl: sys_acl_get_file(%s, %s): %s\n",
1050+ fname, str_acl_type(*type), strerror(errno));
1051+ updated = -1;
1052+ continue;
1053+ }
1054+ ok = unpack_smb_acl(&racl_orig, sacl_orig);
1055+ sys_acl_free_acl(sacl_orig);
1056+ if (!ok) {
1057+ updated = -1;
1058+ continue;
1059+ }
1060+ ok = rsync_acls_equal(&racl_orig, racl_new);
1061+ rsync_acl_free(&racl_orig);
1062+ if (ok)
1063+ continue;
1064+ if (*type == SMB_ACL_TYPE_DEFAULT && !racl_new->count) {
1065+ if (-1 == sys_acl_delete_def_file(fname)) {
1066+ rprintf(FERROR, "set_acl: sys_acl_delete_def_file(%s): %s\n",
1067+ fname, strerror(errno));
1068+ updated = -1;
1069+ continue;
1070+ }
1071+ } else {
1072+ if (!*sacl_new)
1073+ if (!pack_smb_acl(sacl_new, racl_new)) {
1074+ updated = -1;
1075+ continue;
1076+ }
1077+ if (-1 == sys_acl_set_file(fname, *type, *sacl_new)) {
1078+ rprintf(FERROR, "set_acl: sys_acl_set_file(%s, %s): %s\n",
1079+ fname, str_acl_type(*type),
1080+ strerror(errno));
1081+ updated = -1;
1082+ continue;
1083+ }
1084+ }
1085+ if (!updated)
1086+ updated = 1;
1087+ }
1088+ return updated;
1089+}
1090+
4edb99c8 1091+/* Enumeration functions for uid mapping: */
fa26e11c 1092+
4edb99c8
WD
1093+/* Context -- one and only one. Should be cycled through once on uid
1094+ * mapping and once on gid mapping. */
fa26e11c
WD
1095+static rsync_acl_list *_enum_racl_lists[] = {
1096+ &_rsync_acl_lists[0], &_rsync_acl_lists[1], NULL
1097+};
1098+
1099+static rsync_acl_list **enum_racl_list = &_enum_racl_lists[0];
1100+static size_t enum_racl_index = 0;
1101+static size_t enum_race_index = 0;
1102+
4edb99c8
WD
1103+/* This returns the next tag_type id from the given acl for the next entry,
1104+ * or it returns 0 if there are no more tag_type ids in the acl. */
fa26e11c
WD
1105+
1106+static id_t next_ace_id(SMB_ACL_TAG_T tag_type, const rsync_acl *racl)
1107+{
1108+ for (; enum_race_index < racl->count; enum_race_index++) {
1109+ rsync_ace *race = &racl->races[enum_race_index];
1110+ if (race->tag_type == tag_type)
1111+ return race->id;
1112+ }
1113+ enum_race_index = 0;
1114+ return 0;
1115+}
1116+
1117+static id_t next_acl_id(SMB_ACL_TAG_T tag_type, const rsync_acl_list *racl_list)
1118+{
1119+ for (; enum_racl_index < racl_list->count; enum_racl_index++) {
1120+ rsync_acl *racl = &racl_list->racls[enum_racl_index];
1121+ id_t id = next_ace_id(tag_type, racl);
1122+ if (id)
1123+ return id;
1124+ }
1125+ enum_racl_index = 0;
1126+ return 0;
1127+}
1128+
1129+static id_t next_acl_list_id(SMB_ACL_TAG_T tag_type)
1130+{
1131+ for (; *enum_racl_list; enum_racl_list++) {
1132+ id_t id = next_acl_id(tag_type, *enum_racl_list);
1133+ if (id)
1134+ return id;
1135+ }
1136+ enum_racl_list = &_enum_racl_lists[0];
1137+ return 0;
1138+}
1139+
1140+id_t next_acl_uid()
1141+{
1142+ return next_acl_list_id(SMB_ACL_USER);
1143+}
1144+
1145+id_t next_acl_gid()
1146+{
1147+ return next_acl_list_id(SMB_ACL_GROUP);
1148+}
1149+
1150+/* referring to the global context enum_entry, sets the entry's id */
1151+static void set_acl_id(id_t id)
1152+{
1153+ (*enum_racl_list)->racls[enum_racl_index].races[enum_race_index++].id = id;
1154+}
1155+
1156+void acl_uid_map(id_t uid)
1157+{
1158+ set_acl_id(uid);
1159+}
1160+
1161+void acl_gid_map(id_t gid)
1162+{
1163+ set_acl_id(gid);
1164+}
1165+
26c810d8 1166+#define PERMS_SPLICE(perms,newbits,where) (((perms) & ~(7 << (where))) | ((newbits) << (where)))
90fa6d68 1167+
26c810d8 1168+int default_perms_for_dir(const char *dir)
90fa6d68
WD
1169+{
1170+ rsync_acl racl;
1171+ SMB_ACL_T sacl;
1172+ BOOL ok, saw_mask = False;
90fa6d68 1173+ size_t i;
26c810d8 1174+ int perms;
90fa6d68
WD
1175+
1176+ if (dir == NULL)
1177+ dir = ".";
26c810d8 1178+ perms = ACCESSPERMS & ~orig_umask;
90fa6d68
WD
1179+ /* Read the directory's default ACL. If it has none, this will successfully return an empty ACL. */
1180+ sacl = sys_acl_get_file(dir, SMB_ACL_TYPE_DEFAULT);
1181+ if (sacl == NULL) {
1182+ /* Couldn't get an ACL. Darn. */
1183+ switch (errno) {
1184+ case ENOTSUP:
1185+ /* ACLs are disabled. We could yell at the user to turn them on, but... */
1186+ break;
1187+ case ENOENT:
1188+ if (dry_run) {
1189+ /* We're doing a dry run, so the containing directory
1190+ * wasn't actually created. Don't worry about it. */
1191+ break;
1192+ }
1193+ /* Otherwise fall through. */
1194+ default:
26c810d8 1195+ rprintf(FERROR, "default_perms_for_dir: sys_acl_get_file(%s, %s): %s, falling back on umask\n",
90fa6d68
WD
1196+ dir, str_acl_type(SMB_ACL_TYPE_DEFAULT), strerror(errno));
1197+ }
26c810d8 1198+ return perms;
90fa6d68
WD
1199+ }
1200+
1201+ /* Convert it. */
1202+ ok = unpack_smb_acl(&racl, sacl);
1203+ sys_acl_free_acl(sacl);
1204+ if (!ok) {
26c810d8
WD
1205+ rprintf(FERROR, "default_perms_for_dir: unpack_smb_acl failed, falling back on umask\n");
1206+ return perms;
90fa6d68
WD
1207+ }
1208+
26c810d8
WD
1209+ /* Look at each default ACL entry and possibly modify three bits of `perms' accordingly.
1210+ * If there's "no" default ACL, there will be zero entries and the umask-based perms is unchanged. */
90fa6d68
WD
1211+ for (i = 0; i < racl.count; i++) {
1212+ switch (racl.races[i].tag_type) {
1213+ case SMB_ACL_USER_OBJ:
26c810d8 1214+ perms = PERMS_SPLICE(perms, racl.races[i].access, 6);
90fa6d68
WD
1215+ break;
1216+ case SMB_ACL_GROUP_OBJ:
1217+ if (!saw_mask)
26c810d8 1218+ perms = PERMS_SPLICE(perms, racl.races[i].access, 3);
90fa6d68
WD
1219+ break;
1220+ case SMB_ACL_MASK:
1221+ saw_mask = True;
26c810d8 1222+ perms = PERMS_SPLICE(perms, racl.races[i].access, 3);
90fa6d68
WD
1223+ break;
1224+ case SMB_ACL_OTHER:
26c810d8 1225+ perms = PERMS_SPLICE(perms, racl.races[i].access, 0);
90fa6d68
WD
1226+ break;
1227+ default:
1228+ break;
1229+ }
1230+ }
1231+ rsync_acl_free(&racl);
1232+ if (verbose > 2)
26c810d8
WD
1233+ rprintf(FINFO, "got ACL-based default perms %o for directory %s\n", perms, dir);
1234+ return perms;
90fa6d68
WD
1235+}
1236+
fa26e11c 1237+#endif /* SUPPORT_ACLS */
9a7eef96
WD
1238--- old/backup.c
1239+++ new/backup.c
90fa6d68 1240@@ -135,6 +135,7 @@ static int make_bak_dir(char *fullpath)
fa26e11c
WD
1241 } else {
1242 do_lchown(fullpath, st.st_uid, st.st_gid);
1243 do_chmod(fullpath, st.st_mode);
1244+ (void)DUP_ACL(end, fullpath, st.st_mode);
1245 }
1246 }
1247 *p = '/';
90fa6d68 1248@@ -188,6 +189,8 @@ static int keep_backup(char *fname)
172ad6c3 1249 if (!(buf = get_backup_name(fname)))
fa26e11c 1250 return 0;
fa26e11c 1251
172ad6c3 1252+ PUSH_KEEP_BACKUP_ACL(file, fname, buf);
fa26e11c 1253+
fa26e11c 1254 /* Check to see if this is a device file, or link */
90fa6d68
WD
1255 if ((am_root && preserve_devices && IS_DEVICE(file->mode))
1256 || (preserve_specials && IS_SPECIAL(file->mode))) {
1257@@ -263,6 +266,7 @@ static int keep_backup(char *fname)
fa26e11c
WD
1258 }
1259 }
90fa6d68 1260 set_file_attrs(buf, file, NULL, 0);
fa26e11c
WD
1261+ CLEANUP_KEEP_BACKUP_ACL();
1262 free(file);
1263
27a7053c 1264 if (verbose > 1) {
9a7eef96
WD
1265--- old/configure.in
1266+++ new/configure.in
afcb578c 1267@@ -482,6 +482,11 @@ if test x"$ac_cv_func_strcasecmp" = x"no
fa26e11c
WD
1268 AC_CHECK_LIB(resolv, strcasecmp)
1269 fi
1270
1271+AC_CHECK_FUNCS(aclsort)
1272+if test x"$ac_cv_func_aclsort" = x"no"; then
1273+ AC_CHECK_LIB(sec, aclsort)
1274+fi
1275+
1276 dnl At the moment we don't test for a broken memcmp(), because all we
1277 dnl need to do is test for equality, not comparison, and it seems that
1278 dnl every platform has a memcmp that can do at least that.
afcb578c 1279@@ -738,6 +743,77 @@ AC_SUBST(OBJ_RESTORE)
fa26e11c
WD
1280 AC_SUBST(CC_SHOBJ_FLAG)
1281 AC_SUBST(BUILD_POPT)
125d7fca 1282
fa26e11c
WD
1283+AC_CHECK_HEADERS(sys/acl.h)
1284+AC_CHECK_FUNCS(_acl __acl _facl __facl)
1285+#################################################
1286+# check for ACL support
1287+
1288+AC_MSG_CHECKING(whether to support ACLs)
f787c90c
WD
1289+AC_ARG_ENABLE(acl-support,
1290+AC_HELP_STRING([--enable-acl-support], [Include ACL support (default=no)]),
3b05e91f 1291+[ case "$enableval" in
fa26e11c
WD
1292+ yes)
1293+
1294+ case "$host_os" in
1295+ *sysv5*)
1296+ AC_MSG_RESULT(Using UnixWare ACLs)
1297+ AC_DEFINE(HAVE_UNIXWARE_ACLS, 1, [true if you have UnixWare ACLs])
1298+ ;;
1299+ *solaris*)
1300+ AC_MSG_RESULT(Using solaris ACLs)
1301+ AC_DEFINE(HAVE_SOLARIS_ACLS, 1, [true if you have solaris ACLs])
1302+ ;;
1303+ *hpux*)
1304+ AC_MSG_RESULT(Using HPUX ACLs)
1305+ AC_DEFINE(HAVE_HPUX_ACLS, 1, [true if you have HPUX ACLs])
1306+ ;;
1307+ *irix*)
1308+ AC_MSG_RESULT(Using IRIX ACLs)
1309+ AC_DEFINE(HAVE_IRIX_ACLS, 1, [true if you have IRIX ACLs])
1310+ ;;
1311+ *aix*)
1312+ AC_MSG_RESULT(Using AIX ACLs)
1313+ AC_DEFINE(HAVE_AIX_ACLS, 1, [true if you have AIX ACLs])
1314+ ;;
1315+ *osf*)
1316+ AC_MSG_RESULT(Using Tru64 ACLs)
1317+ AC_DEFINE(HAVE_TRU64_ACLS, 1, [true if you have Tru64 ACLs])
1318+ LIBS="$LIBS -lpacl"
1319+ ;;
1320+ *)
81549708 1321+ AC_MSG_RESULT(ACLs requested -- running tests)
fa26e11c
WD
1322+ AC_CHECK_LIB(acl,acl_get_file)
1323+ AC_CACHE_CHECK([for ACL support],samba_cv_HAVE_POSIX_ACLS,[
1324+ AC_TRY_LINK([#include <sys/types.h>
1325+#include <sys/acl.h>],
1326+[ acl_t acl; int entry_id; acl_entry_t *entry_p; return acl_get_entry( acl, entry_id, entry_p);],
1327+samba_cv_HAVE_POSIX_ACLS=yes,samba_cv_HAVE_POSIX_ACLS=no)])
1328+ if test x"$samba_cv_HAVE_POSIX_ACLS" = x"yes"; then
1329+ AC_MSG_RESULT(Using posix ACLs)
1330+ AC_DEFINE(HAVE_POSIX_ACLS, 1, [true if you have posix ACLs])
81549708 1331+ AC_CACHE_CHECK([for acl_get_perm_np],samba_cv_HAVE_ACL_GET_PERM_NP,[
fa26e11c
WD
1332+ AC_TRY_LINK([#include <sys/types.h>
1333+#include <sys/acl.h>],
1334+[ acl_permset_t permset_d; acl_perm_t perm; return acl_get_perm_np( permset_d, perm);],
1335+samba_cv_HAVE_ACL_GET_PERM_NP=yes,samba_cv_HAVE_ACL_GET_PERM_NP=no)])
81549708
WD
1336+ if test x"$samba_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then
1337+ AC_DEFINE(HAVE_ACL_GET_PERM_NP, 1, [true if you have acl_get_perm_np])
1338+ fi
1339+ else
1340+ AC_MSG_ERROR(Failed to find ACL support)
fa26e11c
WD
1341+ fi
1342+ ;;
1343+ esac
1344+ ;;
1345+ *)
1346+ AC_MSG_RESULT(no)
1347+ AC_DEFINE(HAVE_NO_ACLS, 1, [true if you don't have ACLs])
1348+ ;;
1349+ esac ],
1350+ AC_DEFINE(HAVE_NO_ACLS, 1, [true if you don't have ACLs])
1351+ AC_MSG_RESULT(no)
1352+)
125d7fca 1353+
fa26e11c
WD
1354 AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
1355 AC_OUTPUT
125d7fca 1356
9a7eef96
WD
1357--- old/flist.c
1358+++ new/flist.c
90fa6d68 1359@@ -967,6 +967,8 @@ static struct file_struct *send_file_nam
e0e47893 1360 f == -2 ? SERVER_FILTERS : ALL_FILTERS);
09fb8f03 1361 if (!file)
5e048c14 1362 return NULL;
05b88206 1363+ if (MAKE_ACL(file, fname) < 0)
4df546eb 1364+ return NULL;
fa26e11c 1365
3b05e91f 1366 if (chmod_modes && !S_ISLNK(file->mode))
e0e47893 1367 file->mode = tweak_mode(file->mode, chmod_modes);
90fa6d68 1368@@ -978,6 +980,10 @@ static struct file_struct *send_file_nam
fa26e11c
WD
1369 if (file->basename[0]) {
1370 flist->files[flist->count++] = file;
e0e47893 1371 send_file_entry(file, f);
fa26e11c
WD
1372+ SEND_ACL(file, f);
1373+ } else {
1374+ /* Cleanup unsent ACL(s). */
1375+ SEND_ACL(file, -1);
1376 }
5e048c14
WD
1377 return file;
1378 }
90fa6d68 1379@@ -1366,6 +1372,8 @@ struct file_list *recv_file_list(int f)
fa26e11c 1380 flags |= read_byte(f) << 8;
618752a7 1381 file = receive_file_entry(flist, flags, f);
fa26e11c 1382
618752a7 1383+ RECEIVE_ACL(file, f);
fa26e11c 1384+
ae6834e1 1385 if (S_ISREG(file->mode) || S_ISLNK(file->mode))
618752a7 1386 stats.total_size += file->length;
fa26e11c 1387
90fa6d68 1388@@ -1388,6 +1396,8 @@ struct file_list *recv_file_list(int f)
fa26e11c
WD
1389
1390 clean_flist(flist, relative_paths, 1);
fa26e11c 1391
125d7fca
WD
1392+ SORT_FILE_ACL_INDEX_LISTS();
1393+
09fb8f03 1394 if (f >= 0) {
90fa6d68
WD
1395 recv_uid_list(f, flist);
1396
9a7eef96
WD
1397--- old/generator.c
1398+++ new/generator.c
b7e2ec51 1399@@ -755,6 +755,7 @@ static int try_dests_non(struct file_str
26c810d8
WD
1400 }
1401
1402 static int phase = 0;
1403+static int dflt_perms;
1404
1405 /* Acts on the_file_list->file's ndx'th item, whose name is fname. If a dir,
1406 * make sure it exists, and has the right permissions/timestamp info. For
63673ef2 1407@@ -845,6 +846,10 @@ static void recv_generator(char *fname,
01deb4dc
WD
1408 }
1409 if (fuzzy_basis)
63673ef2 1410 need_fuzzy_dirlist = 1;
26c810d8 1411+#ifdef SUPPORT_ACLS
01deb4dc
WD
1412+ if (!preserve_perms)
1413+ dflt_perms = default_perms_for_dir(dn);
26c810d8 1414+#endif
26c810d8 1415 }
01deb4dc 1416 parent_dirname = dn;
26c810d8 1417
01deb4dc 1418@@ -872,7 +877,8 @@ static void recv_generator(char *fname,
90fa6d68
WD
1419 if (!preserve_perms) {
1420 int exists = statret == 0
1421 && S_ISDIR(st.st_mode) == S_ISDIR(file->mode);
1422- file->mode = dest_mode(file->mode, st.st_mode, exists);
26c810d8
WD
1423+ file->mode = dest_mode(file->mode, st.st_mode, dflt_perms,
1424+ exists);
90fa6d68
WD
1425 }
1426
1427 if (S_ISDIR(file->mode)) {
01deb4dc 1428@@ -906,6 +912,10 @@ static void recv_generator(char *fname,
90fa6d68 1429 if (set_file_attrs(fname, file, statret ? NULL : &st, 0)
1d15f8d9 1430 && verbose && code && f_out != -1)
93ca4d27 1431 rprintf(code, "%s/\n", fname);
4df546eb 1432+#ifdef SUPPORT_ACLS
fa26e11c
WD
1433+ if (f_out == -1)
1434+ SET_ACL(fname, file);
1435+#endif
8f72c7ae 1436 if (delete_during && f_out != -1 && !phase && dry_run < 2
a7219d20 1437 && (file->flags & FLAG_DEL_HERE))
3b05e91f 1438 delete_in_dir(the_file_list, fname, file, &st);
01deb4dc 1439@@ -1343,6 +1353,8 @@ void generate_files(int f_out, struct fi
26c810d8
WD
1440 * notice that and let us know via the redo pipe (or its closing). */
1441 ignore_timeout = 1;
1442
1443+ dflt_perms = (ACCESSPERMS & ~orig_umask);
1444+
1445 for (i = 0; i < flist->count; i++) {
1446 struct file_struct *file = flist->files[i];
1447
9a7eef96
WD
1448--- old/lib/sysacls.c
1449+++ new/lib/sysacls.c
252945ef 1450@@ -0,0 +1,3242 @@
fa26e11c 1451+/*
5ca9317d 1452+ Unix SMB/CIFS implementation.
0f6733d8
WD
1453+ Samba system utilities for ACL support.
1454+ Copyright (C) Jeremy Allison 2000.
fa26e11c
WD
1455+
1456+ This program is free software; you can redistribute it and/or modify
1457+ it under the terms of the GNU General Public License as published by
1458+ the Free Software Foundation; either version 2 of the License, or
1459+ (at your option) any later version.
1460+
1461+ This program is distributed in the hope that it will be useful,
1462+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1463+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1464+ GNU General Public License for more details.
1465+
1466+ You should have received a copy of the GNU General Public License
1467+ along with this program; if not, write to the Free Software
1468+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1469+*/
1470+
0f6733d8 1471+#include "rsync.h"
252945ef 1472+#include "sysacls.h" /****** ADDED ******/
fa26e11c 1473+
252945ef 1474+/****** EXTRAS -- THESE ITEMS ARE NOT FROM THE SAMBA SOURCE ******/
0f6733d8
WD
1475+void SAFE_FREE(void *mem)
1476+{
1477+ if (mem)
1478+ free(mem);
1479+}
fa26e11c 1480+
5ca9317d
WD
1481+char *uidtoname(uid_t uid)
1482+{
1483+ static char idbuf[12];
1484+ struct passwd *pw;
1485+
1486+ if ((pw = getpwuid(uid)) == NULL) {
1487+ slprintf(idbuf, sizeof(idbuf)-1, "%ld", (long)uid);
1488+ return idbuf;
1489+ }
1490+ return pw->pw_name;
1491+}
252945ef 1492+/****** EXTRAS -- END ******/
5ca9317d 1493+
0f6733d8
WD
1494+/*
1495+ This file wraps all differing system ACL interfaces into a consistent
1496+ one based on the POSIX interface. It also returns the correct errors
1497+ for older UNIX systems that don't support ACLs.
fa26e11c 1498+
0f6733d8 1499+ The interfaces that each ACL implementation must support are as follows :
fa26e11c 1500+
0f6733d8
WD
1501+ int sys_acl_get_entry( SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
1502+ int sys_acl_get_tag_type( SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
1503+ int sys_acl_get_permset( SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p
1504+ void *sys_acl_get_qualifier( SMB_ACL_ENTRY_T entry_d)
1505+ SMB_ACL_T sys_acl_get_file( const char *path_p, SMB_ACL_TYPE_T type)
1506+ SMB_ACL_T sys_acl_get_fd(int fd)
1507+ int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset);
1508+ int sys_acl_add_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm);
1509+ char *sys_acl_to_text( SMB_ACL_T theacl, ssize_t *plen)
1510+ SMB_ACL_T sys_acl_init( int count)
1511+ int sys_acl_create_entry( SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
1512+ int sys_acl_set_tag_type( SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
1513+ int sys_acl_set_qualifier( SMB_ACL_ENTRY_T entry, void *qual)
1514+ int sys_acl_set_permset( SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
1515+ int sys_acl_valid( SMB_ACL_T theacl )
1516+ int sys_acl_set_file( const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
1517+ int sys_acl_set_fd( int fd, SMB_ACL_T theacl)
1518+ int sys_acl_delete_def_file(const char *path)
fa26e11c 1519+
0f6733d8
WD
1520+ This next one is not POSIX complient - but we *have* to have it !
1521+ More POSIX braindamage.
fa26e11c 1522+
0f6733d8 1523+ int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
fa26e11c 1524+
0f6733d8
WD
1525+ The generic POSIX free is the following call. We split this into
1526+ several different free functions as we may need to add tag info
1527+ to structures when emulating the POSIX interface.
fa26e11c 1528+
0f6733d8 1529+ int sys_acl_free( void *obj_p)
fa26e11c 1530+
0f6733d8 1531+ The calls we actually use are :
fa26e11c 1532+
0f6733d8
WD
1533+ int sys_acl_free_text(char *text) - free acl_to_text
1534+ int sys_acl_free_acl(SMB_ACL_T posix_acl)
1535+ int sys_acl_free_qualifier(void *qualifier, SMB_ACL_TAG_T tagtype)
fa26e11c 1536+
0f6733d8 1537+*/
fa26e11c 1538+
0f6733d8 1539+#if defined(HAVE_POSIX_ACLS)
fa26e11c 1540+
0f6733d8 1541+/* Identity mapping - easy. */
fa26e11c 1542+
0f6733d8 1543+int sys_acl_get_entry( SMB_ACL_T the_acl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
fa26e11c 1544+{
0f6733d8 1545+ return acl_get_entry( the_acl, entry_id, entry_p);
fa26e11c
WD
1546+}
1547+
0f6733d8 1548+int sys_acl_get_tag_type( SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
fa26e11c 1549+{
0f6733d8 1550+ return acl_get_tag_type( entry_d, tag_type_p);
fa26e11c
WD
1551+}
1552+
0f6733d8 1553+int sys_acl_get_permset( SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
fa26e11c 1554+{
0f6733d8 1555+ return acl_get_permset( entry_d, permset_p);
fa26e11c
WD
1556+}
1557+
0f6733d8 1558+void *sys_acl_get_qualifier( SMB_ACL_ENTRY_T entry_d)
fa26e11c 1559+{
0f6733d8 1560+ return acl_get_qualifier( entry_d);
fa26e11c
WD
1561+}
1562+
0f6733d8 1563+SMB_ACL_T sys_acl_get_file( const char *path_p, SMB_ACL_TYPE_T type)
fa26e11c 1564+{
0f6733d8 1565+ return acl_get_file( path_p, type);
fa26e11c
WD
1566+}
1567+
1568+SMB_ACL_T sys_acl_get_fd(int fd)
1569+{
1570+ return acl_get_fd(fd);
1571+}
1572+
1573+int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset)
1574+{
1575+ return acl_clear_perms(permset);
1576+}
1577+
0f6733d8 1578+int sys_acl_add_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
fa26e11c
WD
1579+{
1580+ return acl_add_perm(permset, perm);
1581+}
1582+
0f6733d8 1583+int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
fa26e11c
WD
1584+{
1585+#if defined(HAVE_ACL_GET_PERM_NP)
0f6733d8
WD
1586+ /*
1587+ * Required for TrustedBSD-based ACL implementations where
fa26e11c 1588+ * non-POSIX.1e functions are denoted by a _np (non-portable)
0f6733d8
WD
1589+ * suffix.
1590+ */
fa26e11c
WD
1591+ return acl_get_perm_np(permset, perm);
1592+#else
1593+ return acl_get_perm(permset, perm);
1594+#endif
1595+}
1596+
0f6733d8 1597+char *sys_acl_to_text( SMB_ACL_T the_acl, ssize_t *plen)
fa26e11c 1598+{
0f6733d8 1599+ return acl_to_text( the_acl, plen);
fa26e11c
WD
1600+}
1601+
0f6733d8 1602+SMB_ACL_T sys_acl_init( int count)
fa26e11c
WD
1603+{
1604+ return acl_init(count);
1605+}
1606+
0f6733d8 1607+int sys_acl_create_entry( SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
fa26e11c
WD
1608+{
1609+ return acl_create_entry(pacl, pentry);
1610+}
1611+
0f6733d8 1612+int sys_acl_set_tag_type( SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
fa26e11c
WD
1613+{
1614+ return acl_set_tag_type(entry, tagtype);
1615+}
1616+
0f6733d8 1617+int sys_acl_set_qualifier( SMB_ACL_ENTRY_T entry, void *qual)
fa26e11c
WD
1618+{
1619+ return acl_set_qualifier(entry, qual);
1620+}
1621+
0f6733d8 1622+int sys_acl_set_permset( SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
fa26e11c
WD
1623+{
1624+ return acl_set_permset(entry, permset);
1625+}
1626+
0f6733d8 1627+int sys_acl_valid( SMB_ACL_T theacl )
fa26e11c
WD
1628+{
1629+ return acl_valid(theacl);
1630+}
1631+
1632+int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
1633+{
1634+ return acl_set_file(name, acltype, theacl);
1635+}
1636+
0f6733d8 1637+int sys_acl_set_fd( int fd, SMB_ACL_T theacl)
fa26e11c
WD
1638+{
1639+ return acl_set_fd(fd, theacl);
1640+}
1641+
1642+int sys_acl_delete_def_file(const char *name)
1643+{
1644+ return acl_delete_def_file(name);
1645+}
1646+
1647+int sys_acl_free_text(char *text)
1648+{
1649+ return acl_free(text);
1650+}
1651+
0f6733d8 1652+int sys_acl_free_acl(SMB_ACL_T the_acl)
fa26e11c
WD
1653+{
1654+ return acl_free(the_acl);
1655+}
1656+
1f839b40 1657+int sys_acl_free_qualifier(void *qual, UNUSED(SMB_ACL_TAG_T tagtype))
fa26e11c
WD
1658+{
1659+ return acl_free(qual);
1660+}
1661+
1662+#elif defined(HAVE_TRU64_ACLS)
0f6733d8
WD
1663+/*
1664+ * The interface to DEC/Compaq Tru64 UNIX ACLs
fa26e11c
WD
1665+ * is based on Draft 13 of the POSIX spec which is
1666+ * slightly different from the Draft 16 interface.
0f6733d8 1667+ *
fa26e11c
WD
1668+ * Also, some of the permset manipulation functions
1669+ * such as acl_clear_perm() and acl_add_perm() appear
1670+ * to be broken on Tru64 so we have to manipulate
0f6733d8
WD
1671+ * the permission bits in the permset directly.
1672+ */
1673+int sys_acl_get_entry( SMB_ACL_T the_acl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
fa26e11c 1674+{
0f6733d8 1675+ SMB_ACL_ENTRY_T entry;
fa26e11c
WD
1676+
1677+ if (entry_id == SMB_ACL_FIRST_ENTRY && acl_first_entry(the_acl) != 0) {
1678+ return -1;
1679+ }
1680+
1681+ errno = 0;
1682+ if ((entry = acl_get_entry(the_acl)) != NULL) {
1683+ *entry_p = entry;
1684+ return 1;
1685+ }
1686+
1687+ return errno ? -1 : 0;
1688+}
1689+
0f6733d8 1690+int sys_acl_get_tag_type( SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
fa26e11c 1691+{
0f6733d8 1692+ return acl_get_tag_type( entry_d, tag_type_p);
fa26e11c
WD
1693+}
1694+
0f6733d8 1695+int sys_acl_get_permset( SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
fa26e11c 1696+{
0f6733d8 1697+ return acl_get_permset( entry_d, permset_p);
fa26e11c
WD
1698+}
1699+
0f6733d8 1700+void *sys_acl_get_qualifier( SMB_ACL_ENTRY_T entry_d)
fa26e11c 1701+{
0f6733d8 1702+ return acl_get_qualifier( entry_d);
fa26e11c
WD
1703+}
1704+
0f6733d8 1705+SMB_ACL_T sys_acl_get_file( const char *path_p, SMB_ACL_TYPE_T type)
fa26e11c
WD
1706+{
1707+ return acl_get_file((char *)path_p, type);
1708+}
1709+
0f6733d8 1710+SMB_ACL_T sys_acl_get_fd(int fd)
fa26e11c
WD
1711+{
1712+ return acl_get_fd(fd, ACL_TYPE_ACCESS);
1713+}
1714+
0f6733d8 1715+int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset)
fa26e11c 1716+{
0f6733d8 1717+ *permset = 0; /* acl_clear_perm() is broken on Tru64 */
fa26e11c
WD
1718+
1719+ return 0;
1720+}
1721+
0f6733d8 1722+int sys_acl_add_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
fa26e11c
WD
1723+{
1724+ if (perm & ~(SMB_ACL_READ | SMB_ACL_WRITE | SMB_ACL_EXECUTE)) {
1725+ errno = EINVAL;
1726+ return -1;
1727+ }
1728+
0f6733d8 1729+ *permset |= perm; /* acl_add_perm() is broken on Tru64 */
fa26e11c
WD
1730+
1731+ return 0;
1732+}
1733+
0f6733d8 1734+int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
fa26e11c
WD
1735+{
1736+ return *permset & perm; /* Tru64 doesn't have acl_get_perm() */
1737+}
1738+
0f6733d8 1739+char *sys_acl_to_text( SMB_ACL_T the_acl, ssize_t *plen)
fa26e11c 1740+{
0f6733d8 1741+ return acl_to_text( the_acl, plen);
fa26e11c
WD
1742+}
1743+
0f6733d8 1744+SMB_ACL_T sys_acl_init( int count)
fa26e11c
WD
1745+{
1746+ return acl_init(count);
1747+}
1748+
0f6733d8 1749+int sys_acl_create_entry( SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
fa26e11c
WD
1750+{
1751+ SMB_ACL_ENTRY_T entry;
1752+
1753+ if ((entry = acl_create_entry(pacl)) == NULL) {
1754+ return -1;
1755+ }
1756+
1757+ *pentry = entry;
1758+ return 0;
1759+}
1760+
0f6733d8 1761+int sys_acl_set_tag_type( SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
fa26e11c
WD
1762+{
1763+ return acl_set_tag_type(entry, tagtype);
1764+}
1765+
0f6733d8 1766+int sys_acl_set_qualifier( SMB_ACL_ENTRY_T entry, void *qual)
fa26e11c
WD
1767+{
1768+ return acl_set_qualifier(entry, qual);
1769+}
1770+
0f6733d8 1771+int sys_acl_set_permset( SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
fa26e11c
WD
1772+{
1773+ return acl_set_permset(entry, permset);
1774+}
1775+
0f6733d8 1776+int sys_acl_valid( SMB_ACL_T theacl )
fa26e11c 1777+{
0f6733d8 1778+ acl_entry_t entry;
fa26e11c
WD
1779+
1780+ return acl_valid(theacl, &entry);
1781+}
1782+
0f6733d8 1783+int sys_acl_set_file( const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
fa26e11c
WD
1784+{
1785+ return acl_set_file((char *)name, acltype, theacl);
1786+}
1787+
0f6733d8 1788+int sys_acl_set_fd( int fd, SMB_ACL_T theacl)
fa26e11c
WD
1789+{
1790+ return acl_set_fd(fd, ACL_TYPE_ACCESS, theacl);
1791+}
1792+
0f6733d8 1793+int sys_acl_delete_def_file(const char *name)
fa26e11c
WD
1794+{
1795+ return acl_delete_def_file((char *)name);
1796+}
1797+
0f6733d8 1798+int sys_acl_free_text(char *text)
fa26e11c 1799+{
0f6733d8
WD
1800+ /*
1801+ * (void) cast and explicit return 0 are for DEC UNIX
1802+ * which just #defines acl_free_text() to be free()
1803+ */
fa26e11c
WD
1804+ (void) acl_free_text(text);
1805+ return 0;
1806+}
1807+
0f6733d8 1808+int sys_acl_free_acl(SMB_ACL_T the_acl)
fa26e11c
WD
1809+{
1810+ return acl_free(the_acl);
1811+}
1812+
0f6733d8 1813+int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype)
fa26e11c
WD
1814+{
1815+ return acl_free_qualifier(qual, tagtype);
1816+}
1817+
1818+#elif defined(HAVE_UNIXWARE_ACLS) || defined(HAVE_SOLARIS_ACLS)
1819+
0f6733d8
WD
1820+/*
1821+ * Donated by Michael Davidson <md@sco.COM> for UnixWare / OpenUNIX.
1822+ * Modified by Toomas Soome <tsoome@ut.ee> for Solaris.
1823+ */
fa26e11c 1824+
0f6733d8
WD
1825+/*
1826+ * Note that while this code implements sufficient functionality
fa26e11c
WD
1827+ * to support the sys_acl_* interfaces it does not provide all
1828+ * of the semantics of the POSIX ACL interfaces.
1829+ *
1830+ * In particular, an ACL entry descriptor (SMB_ACL_ENTRY_T) returned
1831+ * from a call to sys_acl_get_entry() should not be assumed to be
1832+ * valid after calling any of the following functions, which may
1833+ * reorder the entries in the ACL.
1834+ *
1835+ * sys_acl_valid()
1836+ * sys_acl_set_file()
1837+ * sys_acl_set_fd()
1838+ */
1839+
0f6733d8
WD
1840+/*
1841+ * The only difference between Solaris and UnixWare / OpenUNIX is
1842+ * that the #defines for the ACL operations have different names
1843+ */
fa26e11c
WD
1844+#if defined(HAVE_UNIXWARE_ACLS)
1845+
0f6733d8
WD
1846+#define SETACL ACL_SET
1847+#define GETACL ACL_GET
1848+#define GETACLCNT ACL_CNT
fa26e11c
WD
1849+
1850+#endif
1851+
1852+
0f6733d8 1853+int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p)
fa26e11c
WD
1854+{
1855+ if (entry_id != SMB_ACL_FIRST_ENTRY && entry_id != SMB_ACL_NEXT_ENTRY) {
1856+ errno = EINVAL;
1857+ return -1;
1858+ }
1859+
1860+ if (entry_p == NULL) {
1861+ errno = EINVAL;
1862+ return -1;
1863+ }
1864+
1865+ if (entry_id == SMB_ACL_FIRST_ENTRY) {
1866+ acl_d->next = 0;
1867+ }
1868+
1869+ if (acl_d->next < 0) {
1870+ errno = EINVAL;
1871+ return -1;
1872+ }
1873+
1874+ if (acl_d->next >= acl_d->count) {
1875+ return 0;
1876+ }
1877+
1878+ *entry_p = &acl_d->acl[acl_d->next++];
1879+
1880+ return 1;
1881+}
1882+
0f6733d8 1883+int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p)
fa26e11c
WD
1884+{
1885+ *type_p = entry_d->a_type;
1886+
1887+ return 0;
1888+}
1889+
0f6733d8 1890+int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
fa26e11c
WD
1891+{
1892+ *permset_p = &entry_d->a_perm;
1893+
1894+ return 0;
1895+}
1896+
0f6733d8 1897+void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d)
fa26e11c
WD
1898+{
1899+ if (entry_d->a_type != SMB_ACL_USER
1900+ && entry_d->a_type != SMB_ACL_GROUP) {
1901+ errno = EINVAL;
1902+ return NULL;
1903+ }
1904+
1905+ return &entry_d->a_id;
1906+}
1907+
0f6733d8
WD
1908+/*
1909+ * There is no way of knowing what size the ACL returned by
fa26e11c
WD
1910+ * GETACL will be unless you first call GETACLCNT which means
1911+ * making an additional system call.
1912+ *
1913+ * In the hope of avoiding the cost of the additional system
1914+ * call in most cases, we initially allocate enough space for
1915+ * an ACL with INITIAL_ACL_SIZE entries. If this turns out to
1916+ * be too small then we use GETACLCNT to find out the actual
0f6733d8
WD
1917+ * size, reallocate the ACL buffer, and then call GETACL again.
1918+ */
fa26e11c 1919+
0f6733d8 1920+#define INITIAL_ACL_SIZE 16
fa26e11c 1921+
0f6733d8 1922+SMB_ACL_T sys_acl_get_file(const char *path_p, SMB_ACL_TYPE_T type)
fa26e11c 1923+{
0f6733d8
WD
1924+ SMB_ACL_T acl_d;
1925+ int count; /* # of ACL entries allocated */
1926+ int naccess; /* # of access ACL entries */
1927+ int ndefault; /* # of default ACL entries */
fa26e11c
WD
1928+
1929+ if (type != SMB_ACL_TYPE_ACCESS && type != SMB_ACL_TYPE_DEFAULT) {
1930+ errno = EINVAL;
1931+ return NULL;
1932+ }
1933+
1934+ count = INITIAL_ACL_SIZE;
1935+ if ((acl_d = sys_acl_init(count)) == NULL) {
1936+ return NULL;
1937+ }
1938+
0f6733d8
WD
1939+ /*
1940+ * If there isn't enough space for the ACL entries we use
fa26e11c
WD
1941+ * GETACLCNT to determine the actual number of ACL entries
1942+ * reallocate and try again. This is in a loop because it
1943+ * is possible that someone else could modify the ACL and
1944+ * increase the number of entries between the call to
0f6733d8
WD
1945+ * GETACLCNT and the call to GETACL.
1946+ */
fa26e11c
WD
1947+ while ((count = acl(path_p, GETACL, count, &acl_d->acl[0])) < 0
1948+ && errno == ENOSPC) {
1949+
1950+ sys_acl_free_acl(acl_d);
1951+
1952+ if ((count = acl(path_p, GETACLCNT, 0, NULL)) < 0) {
1953+ return NULL;
1954+ }
1955+
1956+ if ((acl_d = sys_acl_init(count)) == NULL) {
1957+ return NULL;
1958+ }
1959+ }
1960+
1961+ if (count < 0) {
1962+ sys_acl_free_acl(acl_d);
1963+ return NULL;
1964+ }
1965+
0f6733d8
WD
1966+ /*
1967+ * calculate the number of access and default ACL entries
fa26e11c
WD
1968+ *
1969+ * Note: we assume that the acl() system call returned a
1970+ * well formed ACL which is sorted so that all of the
0f6733d8
WD
1971+ * access ACL entries preceed any default ACL entries
1972+ */
fa26e11c
WD
1973+ for (naccess = 0; naccess < count; naccess++) {
1974+ if (acl_d->acl[naccess].a_type & ACL_DEFAULT)
1975+ break;
1976+ }
1977+ ndefault = count - naccess;
0f6733d8
WD
1978+
1979+ /*
1980+ * if the caller wants the default ACL we have to copy
fa26e11c 1981+ * the entries down to the start of the acl[] buffer
0f6733d8
WD
1982+ * and mask out the ACL_DEFAULT flag from the type field
1983+ */
fa26e11c 1984+ if (type == SMB_ACL_TYPE_DEFAULT) {
0f6733d8 1985+ int i, j;
fa26e11c
WD
1986+
1987+ for (i = 0, j = naccess; i < ndefault; i++, j++) {
1988+ acl_d->acl[i] = acl_d->acl[j];
1989+ acl_d->acl[i].a_type &= ~ACL_DEFAULT;
1990+ }
1991+
1992+ acl_d->count = ndefault;
1993+ } else {
1994+ acl_d->count = naccess;
1995+ }
1996+
1997+ return acl_d;
1998+}
1999+
0f6733d8 2000+SMB_ACL_T sys_acl_get_fd(int fd)
fa26e11c 2001+{
0f6733d8
WD
2002+ SMB_ACL_T acl_d;
2003+ int count; /* # of ACL entries allocated */
2004+ int naccess; /* # of access ACL entries */
fa26e11c
WD
2005+
2006+ count = INITIAL_ACL_SIZE;
2007+ if ((acl_d = sys_acl_init(count)) == NULL) {
2008+ return NULL;
2009+ }
2010+
2011+ while ((count = facl(fd, GETACL, count, &acl_d->acl[0])) < 0
2012+ && errno == ENOSPC) {
2013+
2014+ sys_acl_free_acl(acl_d);
2015+
2016+ if ((count = facl(fd, GETACLCNT, 0, NULL)) < 0) {
2017+ return NULL;
2018+ }
2019+
2020+ if ((acl_d = sys_acl_init(count)) == NULL) {
2021+ return NULL;
2022+ }
2023+ }
2024+
2025+ if (count < 0) {
2026+ sys_acl_free_acl(acl_d);
2027+ return NULL;
2028+ }
2029+
0f6733d8
WD
2030+ /*
2031+ * calculate the number of access ACL entries
2032+ */
fa26e11c
WD
2033+ for (naccess = 0; naccess < count; naccess++) {
2034+ if (acl_d->acl[naccess].a_type & ACL_DEFAULT)
2035+ break;
2036+ }
0f6733d8 2037+
fa26e11c
WD
2038+ acl_d->count = naccess;
2039+
2040+ return acl_d;
2041+}
2042+
0f6733d8 2043+int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d)
fa26e11c
WD
2044+{
2045+ *permset_d = 0;
2046+
2047+ return 0;
2048+}
2049+
0f6733d8 2050+int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
fa26e11c
WD
2051+{
2052+ if (perm != SMB_ACL_READ && perm != SMB_ACL_WRITE
2053+ && perm != SMB_ACL_EXECUTE) {
2054+ errno = EINVAL;
2055+ return -1;
2056+ }
2057+
2058+ if (permset_d == NULL) {
2059+ errno = EINVAL;
2060+ return -1;
2061+ }
2062+
2063+ *permset_d |= perm;
2064+
2065+ return 0;
2066+}
2067+
0f6733d8 2068+int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
fa26e11c
WD
2069+{
2070+ return *permset_d & perm;
2071+}
2072+
0f6733d8 2073+char *sys_acl_to_text(SMB_ACL_T acl_d, ssize_t *len_p)
fa26e11c 2074+{
0f6733d8
WD
2075+ int i;
2076+ int len, maxlen;
2077+ char *text;
fa26e11c 2078+
0f6733d8
WD
2079+ /*
2080+ * use an initial estimate of 20 bytes per ACL entry
fa26e11c 2081+ * when allocating memory for the text representation
0f6733d8
WD
2082+ * of the ACL
2083+ */
2084+ len = 0;
2085+ maxlen = 20 * acl_d->count;
252945ef 2086+ if ((text = SMB_MALLOC(maxlen)) == NULL) {
fa26e11c
WD
2087+ errno = ENOMEM;
2088+ return NULL;
2089+ }
2090+
2091+ for (i = 0; i < acl_d->count; i++) {
0f6733d8
WD
2092+ struct acl *ap = &acl_d->acl[i];
2093+ struct passwd *pw;
2094+ struct group *gr;
2095+ char tagbuf[12];
2096+ char idbuf[12];
2097+ char *tag;
2098+ char *id = "";
2099+ char perms[4];
2100+ int nbytes;
fa26e11c
WD
2101+
2102+ switch (ap->a_type) {
0f6733d8
WD
2103+ /*
2104+ * for debugging purposes it's probably more
fa26e11c 2105+ * useful to dump unknown tag types rather
0f6733d8
WD
2106+ * than just returning an error
2107+ */
fa26e11c 2108+ default:
0f6733d8 2109+ slprintf(tagbuf, sizeof(tagbuf)-1, "0x%x",
fa26e11c
WD
2110+ ap->a_type);
2111+ tag = tagbuf;
0f6733d8 2112+ slprintf(idbuf, sizeof(idbuf)-1, "%ld",
fa26e11c
WD
2113+ (long)ap->a_id);
2114+ id = idbuf;
2115+ break;
2116+
2117+ case SMB_ACL_USER:
5ca9317d 2118+ id = uidtoname(ap->a_id);
fa26e11c
WD
2119+ case SMB_ACL_USER_OBJ:
2120+ tag = "user";
2121+ break;
2122+
2123+ case SMB_ACL_GROUP:
2124+ if ((gr = getgrgid(ap->a_id)) == NULL) {
0f6733d8 2125+ slprintf(idbuf, sizeof(idbuf)-1, "%ld",
fa26e11c
WD
2126+ (long)ap->a_id);
2127+ id = idbuf;
2128+ } else {
2129+ id = gr->gr_name;
2130+ }
2131+ case SMB_ACL_GROUP_OBJ:
2132+ tag = "group";
2133+ break;
2134+
2135+ case SMB_ACL_OTHER:
2136+ tag = "other";
2137+ break;
2138+
2139+ case SMB_ACL_MASK:
2140+ tag = "mask";
2141+ break;
2142+
2143+ }
2144+
2145+ perms[0] = (ap->a_perm & SMB_ACL_READ) ? 'r' : '-';
2146+ perms[1] = (ap->a_perm & SMB_ACL_WRITE) ? 'w' : '-';
2147+ perms[2] = (ap->a_perm & SMB_ACL_EXECUTE) ? 'x' : '-';
2148+ perms[3] = '\0';
2149+
2150+ /* <tag> : <qualifier> : rwx \n \0 */
2151+ nbytes = strlen(tag) + 1 + strlen(id) + 1 + 3 + 1 + 1;
2152+
0f6733d8
WD
2153+ /*
2154+ * If this entry would overflow the buffer
fa26e11c
WD
2155+ * allocate enough additional memory for this
2156+ * entry and an estimate of another 20 bytes
0f6733d8
WD
2157+ * for each entry still to be processed
2158+ */
fa26e11c
WD
2159+ if ((len + nbytes) > maxlen) {
2160+ char *oldtext = text;
2161+
2162+ maxlen += nbytes + 20 * (acl_d->count - i);
2163+
252945ef 2164+ if ((text = SMB_REALLOC(oldtext, maxlen)) == NULL) {
0f6733d8 2165+ SAFE_FREE(oldtext);
fa26e11c
WD
2166+ errno = ENOMEM;
2167+ return NULL;
2168+ }
2169+ }
2170+
0f6733d8 2171+ slprintf(&text[len], nbytes-1, "%s:%s:%s\n", tag, id, perms);
fa26e11c
WD
2172+ len += nbytes - 1;
2173+ }
2174+
2175+ if (len_p)
2176+ *len_p = len;
2177+
2178+ return text;
2179+}
2180+
0f6733d8 2181+SMB_ACL_T sys_acl_init(int count)
fa26e11c 2182+{
0f6733d8 2183+ SMB_ACL_T a;
fa26e11c
WD
2184+
2185+ if (count < 0) {
2186+ errno = EINVAL;
2187+ return NULL;
2188+ }
2189+
0f6733d8
WD
2190+ /*
2191+ * note that since the definition of the structure pointed
fa26e11c
WD
2192+ * to by the SMB_ACL_T includes the first element of the
2193+ * acl[] array, this actually allocates an ACL with room
0f6733d8
WD
2194+ * for (count+1) entries
2195+ */
252945ef 2196+ if ((a = SMB_MALLOC(sizeof(struct SMB_ACL_T) + count * sizeof(struct acl))) == NULL) {
fa26e11c
WD
2197+ errno = ENOMEM;
2198+ return NULL;
2199+ }
2200+
2201+ a->size = count + 1;
2202+ a->count = 0;
2203+ a->next = -1;
2204+
2205+ return a;
2206+}
2207+
2208+
0f6733d8 2209+int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p)
fa26e11c 2210+{
0f6733d8
WD
2211+ SMB_ACL_T acl_d;
2212+ SMB_ACL_ENTRY_T entry_d;
fa26e11c
WD
2213+
2214+ if (acl_p == NULL || entry_p == NULL || (acl_d = *acl_p) == NULL) {
2215+ errno = EINVAL;
2216+ return -1;
2217+ }
2218+
2219+ if (acl_d->count >= acl_d->size) {
2220+ errno = ENOSPC;
2221+ return -1;
2222+ }
2223+
0f6733d8
WD
2224+ entry_d = &acl_d->acl[acl_d->count++];
2225+ entry_d->a_type = 0;
2226+ entry_d->a_id = -1;
2227+ entry_d->a_perm = 0;
2228+ *entry_p = entry_d;
fa26e11c
WD
2229+
2230+ return 0;
2231+}
2232+
0f6733d8 2233+int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type)
fa26e11c
WD
2234+{
2235+ switch (tag_type) {
2236+ case SMB_ACL_USER:
2237+ case SMB_ACL_USER_OBJ:
2238+ case SMB_ACL_GROUP:
2239+ case SMB_ACL_GROUP_OBJ:
2240+ case SMB_ACL_OTHER:
2241+ case SMB_ACL_MASK:
2242+ entry_d->a_type = tag_type;
2243+ break;
2244+ default:
2245+ errno = EINVAL;
2246+ return -1;
2247+ }
2248+
2249+ return 0;
2250+}
2251+
0f6733d8 2252+int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p)
fa26e11c
WD
2253+{
2254+ if (entry_d->a_type != SMB_ACL_GROUP
2255+ && entry_d->a_type != SMB_ACL_USER) {
2256+ errno = EINVAL;
2257+ return -1;
2258+ }
2259+
2260+ entry_d->a_id = *((id_t *)qual_p);
2261+
2262+ return 0;
2263+}
2264+
0f6733d8 2265+int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d)
fa26e11c
WD
2266+{
2267+ if (*permset_d & ~(SMB_ACL_READ|SMB_ACL_WRITE|SMB_ACL_EXECUTE)) {
2268+ return EINVAL;
2269+ }
2270+
2271+ entry_d->a_perm = *permset_d;
2272+
2273+ return 0;
2274+}
2275+
0f6733d8
WD
2276+/*
2277+ * sort the ACL and check it for validity
fa26e11c 2278+ *
0f6733d8 2279+ * if it's a minimal ACL with only 4 entries then we
fa26e11c
WD
2280+ * need to recalculate the mask permissions to make
2281+ * sure that they are the same as the GROUP_OBJ
2282+ * permissions as required by the UnixWare acl() system call.
2283+ *
0f6733d8 2284+ * (note: since POSIX allows minimal ACLs which only contain
fa26e11c
WD
2285+ * 3 entries - ie there is no mask entry - we should, in theory,
2286+ * check for this and add a mask entry if necessary - however
2287+ * we "know" that the caller of this interface always specifies
2288+ * a mask so, in practice "this never happens" (tm) - if it *does*
2289+ * happen aclsort() will fail and return an error and someone will
0f6733d8
WD
2290+ * have to fix it ...)
2291+ */
fa26e11c
WD
2292+
2293+static int acl_sort(SMB_ACL_T acl_d)
2294+{
2295+ int fixmask = (acl_d->count <= 4);
2296+
2297+ if (aclsort(acl_d->count, fixmask, acl_d->acl) != 0) {
2298+ errno = EINVAL;
2299+ return -1;
2300+ }
2301+ return 0;
2302+}
0f6733d8
WD
2303+
2304+int sys_acl_valid(SMB_ACL_T acl_d)
fa26e11c
WD
2305+{
2306+ return acl_sort(acl_d);
2307+}
2308+
0f6733d8 2309+int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d)
fa26e11c 2310+{
0f6733d8
WD
2311+ struct stat s;
2312+ struct acl *acl_p;
2313+ int acl_count;
2314+ struct acl *acl_buf = NULL;
2315+ int ret;
fa26e11c
WD
2316+
2317+ if (type != SMB_ACL_TYPE_ACCESS && type != SMB_ACL_TYPE_DEFAULT) {
2318+ errno = EINVAL;
2319+ return -1;
2320+ }
2321+
2322+ if (acl_sort(acl_d) != 0) {
2323+ return -1;
2324+ }
2325+
0f6733d8
WD
2326+ acl_p = &acl_d->acl[0];
2327+ acl_count = acl_d->count;
fa26e11c 2328+
0f6733d8
WD
2329+ /*
2330+ * if it's a directory there is extra work to do
2331+ * since the acl() system call will replace both
2332+ * the access ACLs and the default ACLs (if any)
2333+ */
fa26e11c
WD
2334+ if (stat(name, &s) != 0) {
2335+ return -1;
2336+ }
2337+ if (S_ISDIR(s.st_mode)) {
0f6733d8
WD
2338+ SMB_ACL_T acc_acl;
2339+ SMB_ACL_T def_acl;
2340+ SMB_ACL_T tmp_acl;
2341+ int i;
fa26e11c
WD
2342+
2343+ if (type == SMB_ACL_TYPE_ACCESS) {
2344+ acc_acl = acl_d;
2345+ def_acl = tmp_acl = sys_acl_get_file(name, SMB_ACL_TYPE_DEFAULT);
2346+
2347+ } else {
2348+ def_acl = acl_d;
2349+ acc_acl = tmp_acl = sys_acl_get_file(name, SMB_ACL_TYPE_ACCESS);
2350+ }
2351+
2352+ if (tmp_acl == NULL) {
2353+ return -1;
2354+ }
2355+
0f6733d8
WD
2356+ /*
2357+ * allocate a temporary buffer for the complete ACL
2358+ */
fa26e11c 2359+ acl_count = acc_acl->count + def_acl->count;
252945ef 2360+ acl_p = acl_buf = SMB_MALLOC_ARRAY(struct acl, acl_count);
fa26e11c
WD
2361+
2362+ if (acl_buf == NULL) {
2363+ sys_acl_free_acl(tmp_acl);
2364+ errno = ENOMEM;
2365+ return -1;
2366+ }
2367+
0f6733d8
WD
2368+ /*
2369+ * copy the access control and default entries into the buffer
2370+ */
fa26e11c 2371+ memcpy(&acl_buf[0], &acc_acl->acl[0],
0f6733d8 2372+ acc_acl->count * sizeof(acl_buf[0]));
fa26e11c
WD
2373+
2374+ memcpy(&acl_buf[acc_acl->count], &def_acl->acl[0],
0f6733d8 2375+ def_acl->count * sizeof(acl_buf[0]));
fa26e11c 2376+
0f6733d8
WD
2377+ /*
2378+ * set the ACL_DEFAULT flag on the default entries
2379+ */
fa26e11c
WD
2380+ for (i = acc_acl->count; i < acl_count; i++) {
2381+ acl_buf[i].a_type |= ACL_DEFAULT;
2382+ }
2383+
2384+ sys_acl_free_acl(tmp_acl);
2385+
2386+ } else if (type != SMB_ACL_TYPE_ACCESS) {
2387+ errno = EINVAL;
2388+ return -1;
2389+ }
2390+
2391+ ret = acl(name, SETACL, acl_count, acl_p);
2392+
0f6733d8 2393+ SAFE_FREE(acl_buf);
fa26e11c
WD
2394+
2395+ return ret;
2396+}
2397+
0f6733d8 2398+int sys_acl_set_fd(int fd, SMB_ACL_T acl_d)
fa26e11c
WD
2399+{
2400+ if (acl_sort(acl_d) != 0) {
2401+ return -1;
2402+ }
2403+
2404+ return facl(fd, SETACL, acl_d->count, &acl_d->acl[0]);
2405+}
2406+
0f6733d8 2407+int sys_acl_delete_def_file(const char *path)
fa26e11c 2408+{
0f6733d8
WD
2409+ SMB_ACL_T acl_d;
2410+ int ret;
fa26e11c 2411+
0f6733d8
WD
2412+ /*
2413+ * fetching the access ACL and rewriting it has
2414+ * the effect of deleting the default ACL
2415+ */
fa26e11c
WD
2416+ if ((acl_d = sys_acl_get_file(path, SMB_ACL_TYPE_ACCESS)) == NULL) {
2417+ return -1;
2418+ }
2419+
2420+ ret = acl(path, SETACL, acl_d->count, acl_d->acl);
2421+
2422+ sys_acl_free_acl(acl_d);
0f6733d8 2423+
fa26e11c
WD
2424+ return ret;
2425+}
2426+
0f6733d8 2427+int sys_acl_free_text(char *text)
fa26e11c 2428+{
0f6733d8 2429+ SAFE_FREE(text);
fa26e11c
WD
2430+ return 0;
2431+}
2432+
0f6733d8 2433+int sys_acl_free_acl(SMB_ACL_T acl_d)
fa26e11c 2434+{
0f6733d8 2435+ SAFE_FREE(acl_d);
fa26e11c
WD
2436+ return 0;
2437+}
2438+
0f6733d8 2439+int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype)
fa26e11c
WD
2440+{
2441+ return 0;
2442+}
2443+
2444+#elif defined(HAVE_HPUX_ACLS)
2445+#include <dl.h>
2446+
0f6733d8
WD
2447+/*
2448+ * Based on the Solaris/SCO code - with modifications.
2449+ */
fa26e11c 2450+
0f6733d8
WD
2451+/*
2452+ * Note that while this code implements sufficient functionality
fa26e11c
WD
2453+ * to support the sys_acl_* interfaces it does not provide all
2454+ * of the semantics of the POSIX ACL interfaces.
2455+ *
2456+ * In particular, an ACL entry descriptor (SMB_ACL_ENTRY_T) returned
2457+ * from a call to sys_acl_get_entry() should not be assumed to be
2458+ * valid after calling any of the following functions, which may
2459+ * reorder the entries in the ACL.
2460+ *
2461+ * sys_acl_valid()
2462+ * sys_acl_set_file()
2463+ * sys_acl_set_fd()
2464+ */
2465+
0f6733d8
WD
2466+/* This checks if the POSIX ACL system call is defined */
2467+/* which basically corresponds to whether JFS 3.3 or */
2468+/* higher is installed. If acl() was called when it */
2469+/* isn't defined, it causes the process to core dump */
2470+/* so it is important to check this and avoid acl() */
2471+/* calls if it isn't there. */
fa26e11c
WD
2472+
2473+static BOOL hpux_acl_call_presence(void)
2474+{
2475+
2476+ shl_t handle = NULL;
2477+ void *value;
2478+ int ret_val=0;
2479+ static BOOL already_checked=0;
2480+
0f6733d8 2481+ if(already_checked)
fa26e11c
WD
2482+ return True;
2483+
2484+
2485+ ret_val = shl_findsym(&handle, "acl", TYPE_PROCEDURE, &value);
2486+
0f6733d8 2487+ if(ret_val != 0) {
fa26e11c
WD
2488+ DEBUG(5, ("hpux_acl_call_presence: shl_findsym() returned %d, errno = %d, error %s\n",
2489+ ret_val, errno, strerror(errno)));
2490+ DEBUG(5,("hpux_acl_call_presence: acl() system call is not present. Check if you have JFS 3.3 and above?\n"));
2491+ return False;
2492+ }
2493+
2494+ DEBUG(10,("hpux_acl_call_presence: acl() system call is present. We have JFS 3.3 or above \n"));
2495+
2496+ already_checked = True;
2497+ return True;
2498+}
2499+
0f6733d8 2500+int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p)
fa26e11c
WD
2501+{
2502+ if (entry_id != SMB_ACL_FIRST_ENTRY && entry_id != SMB_ACL_NEXT_ENTRY) {
2503+ errno = EINVAL;
2504+ return -1;
2505+ }
2506+
2507+ if (entry_p == NULL) {
2508+ errno = EINVAL;
2509+ return -1;
2510+ }
2511+
2512+ if (entry_id == SMB_ACL_FIRST_ENTRY) {
2513+ acl_d->next = 0;
2514+ }
2515+
2516+ if (acl_d->next < 0) {
2517+ errno = EINVAL;
2518+ return -1;
2519+ }
2520+
2521+ if (acl_d->next >= acl_d->count) {
2522+ return 0;
2523+ }
2524+
2525+ *entry_p = &acl_d->acl[acl_d->next++];
2526+
2527+ return 1;
2528+}
2529+
0f6733d8 2530+int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p)
fa26e11c
WD
2531+{
2532+ *type_p = entry_d->a_type;
2533+
2534+ return 0;
2535+}
2536+
0f6733d8 2537+int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
fa26e11c
WD
2538+{
2539+ *permset_p = &entry_d->a_perm;
2540+
2541+ return 0;
2542+}
2543+
0f6733d8 2544+void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d)
fa26e11c
WD
2545+{
2546+ if (entry_d->a_type != SMB_ACL_USER
2547+ && entry_d->a_type != SMB_ACL_GROUP) {
2548+ errno = EINVAL;
2549+ return NULL;
2550+ }
2551+
2552+ return &entry_d->a_id;
2553+}
2554+
0f6733d8
WD
2555+/*
2556+ * There is no way of knowing what size the ACL returned by
fa26e11c
WD
2557+ * ACL_GET will be unless you first call ACL_CNT which means
2558+ * making an additional system call.
2559+ *
2560+ * In the hope of avoiding the cost of the additional system
2561+ * call in most cases, we initially allocate enough space for
2562+ * an ACL with INITIAL_ACL_SIZE entries. If this turns out to
2563+ * be too small then we use ACL_CNT to find out the actual
2564+ * size, reallocate the ACL buffer, and then call ACL_GET again.
2565+ */
2566+
0f6733d8 2567+#define INITIAL_ACL_SIZE 16
fa26e11c 2568+
0f6733d8 2569+SMB_ACL_T sys_acl_get_file(const char *path_p, SMB_ACL_TYPE_T type)
fa26e11c 2570+{
0f6733d8
WD
2571+ SMB_ACL_T acl_d;
2572+ int count; /* # of ACL entries allocated */
2573+ int naccess; /* # of access ACL entries */
2574+ int ndefault; /* # of default ACL entries */
fa26e11c 2575+
0f6733d8
WD
2576+ if(hpux_acl_call_presence() == False) {
2577+ /* Looks like we don't have the acl() system call on HPUX.
2578+ * May be the system doesn't have the latest version of JFS.
2579+ */
2580+ return NULL;
fa26e11c
WD
2581+ }
2582+
2583+ if (type != SMB_ACL_TYPE_ACCESS && type != SMB_ACL_TYPE_DEFAULT) {
2584+ errno = EINVAL;
2585+ return NULL;
2586+ }
2587+
2588+ count = INITIAL_ACL_SIZE;
2589+ if ((acl_d = sys_acl_init(count)) == NULL) {
2590+ return NULL;
2591+ }
2592+
0f6733d8
WD
2593+ /*
2594+ * If there isn't enough space for the ACL entries we use
fa26e11c
WD
2595+ * ACL_CNT to determine the actual number of ACL entries
2596+ * reallocate and try again. This is in a loop because it
2597+ * is possible that someone else could modify the ACL and
2598+ * increase the number of entries between the call to
0f6733d8
WD
2599+ * ACL_CNT and the call to ACL_GET.
2600+ */
fa26e11c
WD
2601+ while ((count = acl(path_p, ACL_GET, count, &acl_d->acl[0])) < 0 && errno == ENOSPC) {
2602+
2603+ sys_acl_free_acl(acl_d);
2604+
2605+ if ((count = acl(path_p, ACL_CNT, 0, NULL)) < 0) {
2606+ return NULL;
2607+ }
2608+
2609+ if ((acl_d = sys_acl_init(count)) == NULL) {
2610+ return NULL;
2611+ }
2612+ }
2613+
2614+ if (count < 0) {
2615+ sys_acl_free_acl(acl_d);
2616+ return NULL;
2617+ }
2618+
0f6733d8
WD
2619+ /*
2620+ * calculate the number of access and default ACL entries
fa26e11c
WD
2621+ *
2622+ * Note: we assume that the acl() system call returned a
2623+ * well formed ACL which is sorted so that all of the
0f6733d8
WD
2624+ * access ACL entries preceed any default ACL entries
2625+ */
fa26e11c
WD
2626+ for (naccess = 0; naccess < count; naccess++) {
2627+ if (acl_d->acl[naccess].a_type & ACL_DEFAULT)
2628+ break;
2629+ }
2630+ ndefault = count - naccess;
0f6733d8
WD
2631+
2632+ /*
2633+ * if the caller wants the default ACL we have to copy
fa26e11c 2634+ * the entries down to the start of the acl[] buffer
0f6733d8
WD
2635+ * and mask out the ACL_DEFAULT flag from the type field
2636+ */
fa26e11c 2637+ if (type == SMB_ACL_TYPE_DEFAULT) {
0f6733d8 2638+ int i, j;
fa26e11c
WD
2639+
2640+ for (i = 0, j = naccess; i < ndefault; i++, j++) {
2641+ acl_d->acl[i] = acl_d->acl[j];
2642+ acl_d->acl[i].a_type &= ~ACL_DEFAULT;
2643+ }
2644+
2645+ acl_d->count = ndefault;
2646+ } else {
2647+ acl_d->count = naccess;
2648+ }
2649+
2650+ return acl_d;
2651+}
2652+
0f6733d8 2653+SMB_ACL_T sys_acl_get_fd(int fd)
fa26e11c 2654+{
0f6733d8
WD
2655+ /*
2656+ * HPUX doesn't have the facl call. Fake it using the path.... JRA.
2657+ */
fa26e11c
WD
2658+
2659+ files_struct *fsp = file_find_fd(fd);
2660+
2661+ if (fsp == NULL) {
2662+ errno = EBADF;
2663+ return NULL;
2664+ }
2665+
0f6733d8
WD
2666+ /*
2667+ * We know we're in the same conn context. So we
2668+ * can use the relative path.
2669+ */
fa26e11c 2670+
5ca9317d 2671+ return sys_acl_get_file(fsp->fsp_name, SMB_ACL_TYPE_ACCESS);
fa26e11c
WD
2672+}
2673+
0f6733d8 2674+int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d)
fa26e11c
WD
2675+{
2676+ *permset_d = 0;
2677+
2678+ return 0;
2679+}
2680+
0f6733d8 2681+int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
fa26e11c
WD
2682+{
2683+ if (perm != SMB_ACL_READ && perm != SMB_ACL_WRITE
2684+ && perm != SMB_ACL_EXECUTE) {
2685+ errno = EINVAL;
2686+ return -1;
2687+ }
2688+
2689+ if (permset_d == NULL) {
2690+ errno = EINVAL;
2691+ return -1;
2692+ }
2693+
2694+ *permset_d |= perm;
2695+
2696+ return 0;
2697+}
2698+
0f6733d8 2699+int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
fa26e11c
WD
2700+{
2701+ return *permset_d & perm;
2702+}
2703+
0f6733d8 2704+char *sys_acl_to_text(SMB_ACL_T acl_d, ssize_t *len_p)
fa26e11c 2705+{
0f6733d8
WD
2706+ int i;
2707+ int len, maxlen;
2708+ char *text;
fa26e11c 2709+
0f6733d8
WD
2710+ /*
2711+ * use an initial estimate of 20 bytes per ACL entry
2712+ * when allocating memory for the text representation
2713+ * of the ACL
2714+ */
2715+ len = 0;
2716+ maxlen = 20 * acl_d->count;
252945ef 2717+ if ((text = SMB_MALLOC(maxlen)) == NULL) {
fa26e11c
WD
2718+ errno = ENOMEM;
2719+ return NULL;
2720+ }
2721+
2722+ for (i = 0; i < acl_d->count; i++) {
0f6733d8
WD
2723+ struct acl *ap = &acl_d->acl[i];
2724+ struct passwd *pw;
2725+ struct group *gr;
2726+ char tagbuf[12];
2727+ char idbuf[12];
2728+ char *tag;
2729+ char *id = "";
2730+ char perms[4];
2731+ int nbytes;
fa26e11c
WD
2732+
2733+ switch (ap->a_type) {
0f6733d8
WD
2734+ /*
2735+ * for debugging purposes it's probably more
fa26e11c 2736+ * useful to dump unknown tag types rather
0f6733d8
WD
2737+ * than just returning an error
2738+ */
fa26e11c 2739+ default:
0f6733d8 2740+ slprintf(tagbuf, sizeof(tagbuf)-1, "0x%x",
fa26e11c
WD
2741+ ap->a_type);
2742+ tag = tagbuf;
0f6733d8 2743+ slprintf(idbuf, sizeof(idbuf)-1, "%ld",
fa26e11c
WD
2744+ (long)ap->a_id);
2745+ id = idbuf;
2746+ break;
2747+
2748+ case SMB_ACL_USER:
5ca9317d 2749+ id = uidtoname(ap->a_id);
fa26e11c
WD
2750+ case SMB_ACL_USER_OBJ:
2751+ tag = "user";
2752+ break;
2753+
2754+ case SMB_ACL_GROUP:
2755+ if ((gr = getgrgid(ap->a_id)) == NULL) {
0f6733d8 2756+ slprintf(idbuf, sizeof(idbuf)-1, "%ld",
fa26e11c
WD
2757+ (long)ap->a_id);
2758+ id = idbuf;
2759+ } else {
2760+ id = gr->gr_name;
2761+ }
2762+ case SMB_ACL_GROUP_OBJ:
2763+ tag = "group";
2764+ break;
2765+
2766+ case SMB_ACL_OTHER:
2767+ tag = "other";
2768+ break;
2769+
2770+ case SMB_ACL_MASK:
2771+ tag = "mask";
2772+ break;
2773+
2774+ }
2775+
2776+ perms[0] = (ap->a_perm & SMB_ACL_READ) ? 'r' : '-';
2777+ perms[1] = (ap->a_perm & SMB_ACL_WRITE) ? 'w' : '-';
2778+ perms[2] = (ap->a_perm & SMB_ACL_EXECUTE) ? 'x' : '-';
2779+ perms[3] = '\0';
2780+
2781+ /* <tag> : <qualifier> : rwx \n \0 */
2782+ nbytes = strlen(tag) + 1 + strlen(id) + 1 + 3 + 1 + 1;
2783+
0f6733d8
WD
2784+ /*
2785+ * If this entry would overflow the buffer
fa26e11c
WD
2786+ * allocate enough additional memory for this
2787+ * entry and an estimate of another 20 bytes
0f6733d8
WD
2788+ * for each entry still to be processed
2789+ */
fa26e11c
WD
2790+ if ((len + nbytes) > maxlen) {
2791+ char *oldtext = text;
2792+
2793+ maxlen += nbytes + 20 * (acl_d->count - i);
2794+
252945ef 2795+ if ((text = SMB_REALLOC(oldtext, maxlen)) == NULL) {
fa26e11c
WD
2796+ free(oldtext);
2797+ errno = ENOMEM;
2798+ return NULL;
2799+ }
2800+ }
2801+
0f6733d8 2802+ slprintf(&text[len], nbytes-1, "%s:%s:%s\n", tag, id, perms);
fa26e11c
WD
2803+ len += nbytes - 1;
2804+ }
2805+
2806+ if (len_p)
2807+ *len_p = len;
2808+
2809+ return text;
2810+}
2811+
0f6733d8 2812+SMB_ACL_T sys_acl_init(int count)
fa26e11c 2813+{
0f6733d8 2814+ SMB_ACL_T a;
fa26e11c
WD
2815+
2816+ if (count < 0) {
2817+ errno = EINVAL;
2818+ return NULL;
2819+ }
2820+
0f6733d8
WD
2821+ /*
2822+ * note that since the definition of the structure pointed
fa26e11c
WD
2823+ * to by the SMB_ACL_T includes the first element of the
2824+ * acl[] array, this actually allocates an ACL with room
0f6733d8
WD
2825+ * for (count+1) entries
2826+ */
252945ef 2827+ if ((a = SMB_MALLOC(sizeof(struct SMB_ACL_T) + count * sizeof(struct acl))) == NULL) {
fa26e11c
WD
2828+ errno = ENOMEM;
2829+ return NULL;
2830+ }
2831+
2832+ a->size = count + 1;
2833+ a->count = 0;
2834+ a->next = -1;
2835+
2836+ return a;
2837+}
2838+
2839+
0f6733d8 2840+int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p)
fa26e11c 2841+{
0f6733d8
WD
2842+ SMB_ACL_T acl_d;
2843+ SMB_ACL_ENTRY_T entry_d;
fa26e11c
WD
2844+
2845+ if (acl_p == NULL || entry_p == NULL || (acl_d = *acl_p) == NULL) {
2846+ errno = EINVAL;
2847+ return -1;
2848+ }
2849+
2850+ if (acl_d->count >= acl_d->size) {
2851+ errno = ENOSPC;
2852+ return -1;
2853+ }
2854+
0f6733d8
WD
2855+ entry_d = &acl_d->acl[acl_d->count++];
2856+ entry_d->a_type = 0;
2857+ entry_d->a_id = -1;
2858+ entry_d->a_perm = 0;
2859+ *entry_p = entry_d;
fa26e11c
WD
2860+
2861+ return 0;
2862+}
2863+
0f6733d8 2864+int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type)
fa26e11c
WD
2865+{
2866+ switch (tag_type) {
2867+ case SMB_ACL_USER:
2868+ case SMB_ACL_USER_OBJ:
2869+ case SMB_ACL_GROUP:
2870+ case SMB_ACL_GROUP_OBJ:
2871+ case SMB_ACL_OTHER:
2872+ case SMB_ACL_MASK:
2873+ entry_d->a_type = tag_type;
2874+ break;
2875+ default:
2876+ errno = EINVAL;
2877+ return -1;
2878+ }
2879+
2880+ return 0;
2881+}
2882+
0f6733d8 2883+int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p)
fa26e11c
WD
2884+{
2885+ if (entry_d->a_type != SMB_ACL_GROUP
2886+ && entry_d->a_type != SMB_ACL_USER) {
2887+ errno = EINVAL;
2888+ return -1;
2889+ }
2890+
2891+ entry_d->a_id = *((id_t *)qual_p);
2892+
2893+ return 0;
2894+}
2895+
0f6733d8 2896+int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d)
fa26e11c
WD
2897+{
2898+ if (*permset_d & ~(SMB_ACL_READ|SMB_ACL_WRITE|SMB_ACL_EXECUTE)) {
2899+ return EINVAL;
2900+ }
2901+
2902+ entry_d->a_perm = *permset_d;
2903+
2904+ return 0;
2905+}
2906+
2907+/* Structure to capture the count for each type of ACE. */
2908+
2909+struct hpux_acl_types {
2910+ int n_user;
2911+ int n_def_user;
2912+ int n_user_obj;
2913+ int n_def_user_obj;
2914+
2915+ int n_group;
2916+ int n_def_group;
2917+ int n_group_obj;
2918+ int n_def_group_obj;
2919+
2920+ int n_other;
2921+ int n_other_obj;
2922+ int n_def_other_obj;
2923+
2924+ int n_class_obj;
2925+ int n_def_class_obj;
2926+
2927+ int n_illegal_obj;
2928+};
2929+
2930+/* count_obj:
2931+ * Counts the different number of objects in a given array of ACL
2932+ * structures.
2933+ * Inputs:
2934+ *
2935+ * acl_count - Count of ACLs in the array of ACL strucutres.
2936+ * aclp - Array of ACL structures.
2937+ * acl_type_count - Pointer to acl_types structure. Should already be
2938+ * allocated.
0f6733d8 2939+ * Output:
fa26e11c 2940+ *
0f6733d8 2941+ * acl_type_count - This structure is filled up with counts of various
fa26e11c
WD
2942+ * acl types.
2943+ */
2944+
2945+static int hpux_count_obj(int acl_count, struct acl *aclp, struct hpux_acl_types *acl_type_count)
2946+{
2947+ int i;
2948+
0f6733d8 2949+ memset(acl_type_count, 0, sizeof(struct hpux_acl_types));
fa26e11c 2950+
0f6733d8
WD
2951+ for(i=0;i<acl_count;i++) {
2952+ switch(aclp[i].a_type) {
2953+ case USER:
fa26e11c
WD
2954+ acl_type_count->n_user++;
2955+ break;
0f6733d8 2956+ case USER_OBJ:
fa26e11c
WD
2957+ acl_type_count->n_user_obj++;
2958+ break;
0f6733d8 2959+ case DEF_USER_OBJ:
fa26e11c
WD
2960+ acl_type_count->n_def_user_obj++;
2961+ break;
0f6733d8 2962+ case GROUP:
fa26e11c
WD
2963+ acl_type_count->n_group++;
2964+ break;
0f6733d8 2965+ case GROUP_OBJ:
fa26e11c
WD
2966+ acl_type_count->n_group_obj++;
2967+ break;
0f6733d8 2968+ case DEF_GROUP_OBJ:
fa26e11c
WD
2969+ acl_type_count->n_def_group_obj++;
2970+ break;
0f6733d8 2971+ case OTHER_OBJ:
fa26e11c
WD
2972+ acl_type_count->n_other_obj++;
2973+ break;
0f6733d8 2974+ case DEF_OTHER_OBJ:
fa26e11c
WD
2975+ acl_type_count->n_def_other_obj++;
2976+ break;
2977+ case CLASS_OBJ:
2978+ acl_type_count->n_class_obj++;
2979+ break;
2980+ case DEF_CLASS_OBJ:
2981+ acl_type_count->n_def_class_obj++;
2982+ break;
2983+ case DEF_USER:
2984+ acl_type_count->n_def_user++;
2985+ break;
2986+ case DEF_GROUP:
2987+ acl_type_count->n_def_group++;
2988+ break;
0f6733d8 2989+ default:
fa26e11c
WD
2990+ acl_type_count->n_illegal_obj++;
2991+ break;
2992+ }
2993+ }
2994+}
2995+
0f6733d8 2996+/* swap_acl_entries: Swaps two ACL entries.
fa26e11c
WD
2997+ *
2998+ * Inputs: aclp0, aclp1 - ACL entries to be swapped.
2999+ */
3000+
3001+static void hpux_swap_acl_entries(struct acl *aclp0, struct acl *aclp1)
3002+{
3003+ struct acl temp_acl;
3004+
3005+ temp_acl.a_type = aclp0->a_type;
3006+ temp_acl.a_id = aclp0->a_id;
3007+ temp_acl.a_perm = aclp0->a_perm;
3008+
3009+ aclp0->a_type = aclp1->a_type;
3010+ aclp0->a_id = aclp1->a_id;
3011+ aclp0->a_perm = aclp1->a_perm;
3012+
3013+ aclp1->a_type = temp_acl.a_type;
3014+ aclp1->a_id = temp_acl.a_id;
3015+ aclp1->a_perm = temp_acl.a_perm;
3016+}
3017+
3018+/* prohibited_duplicate_type
0f6733d8 3019+ * Identifies if given ACL type can have duplicate entries or
fa26e11c
WD
3020+ * not.
3021+ *
3022+ * Inputs: acl_type - ACL Type.
3023+ *
0f6733d8 3024+ * Outputs:
fa26e11c 3025+ *
0f6733d8 3026+ * Return..
fa26e11c
WD
3027+ *
3028+ * True - If the ACL type matches any of the prohibited types.
3029+ * False - If the ACL type doesn't match any of the prohibited types.
0f6733d8 3030+ */
fa26e11c
WD
3031+
3032+static BOOL hpux_prohibited_duplicate_type(int acl_type)
3033+{
0f6733d8 3034+ switch(acl_type) {
fa26e11c
WD
3035+ case USER:
3036+ case GROUP:
0f6733d8 3037+ case DEF_USER:
fa26e11c
WD
3038+ case DEF_GROUP:
3039+ return True;
0f6733d8
WD
3040+ default:
3041+ return False;
fa26e11c 3042+ }
fa26e11c
WD
3043+}
3044+
3045+/* get_needed_class_perm
3046+ * Returns the permissions of a ACL structure only if the ACL
0f6733d8 3047+ * type matches one of the pre-determined types for computing
fa26e11c
WD
3048+ * CLASS_OBJ permissions.
3049+ *
3050+ * Inputs: aclp - Pointer to ACL structure.
3051+ */
3052+
3053+static int hpux_get_needed_class_perm(struct acl *aclp)
3054+{
0f6733d8
WD
3055+ switch(aclp->a_type) {
3056+ case USER:
3057+ case GROUP_OBJ:
3058+ case GROUP:
3059+ case DEF_USER_OBJ:
fa26e11c 3060+ case DEF_USER:
0f6733d8 3061+ case DEF_GROUP_OBJ:
fa26e11c
WD
3062+ case DEF_GROUP:
3063+ case DEF_CLASS_OBJ:
0f6733d8 3064+ case DEF_OTHER_OBJ:
fa26e11c 3065+ return aclp->a_perm;
0f6733d8 3066+ default:
fa26e11c
WD
3067+ return 0;
3068+ }
3069+}
3070+
3071+/* acl_sort for HPUX.
3072+ * Sorts the array of ACL structures as per the description in
3073+ * aclsort man page. Refer to aclsort man page for more details
3074+ *
3075+ * Inputs:
3076+ *
3077+ * acl_count - Count of ACLs in the array of ACL structures.
3078+ * calclass - If this is not zero, then we compute the CLASS_OBJ
3079+ * permissions.
3080+ * aclp - Array of ACL structures.
3081+ *
3082+ * Outputs:
3083+ *
3084+ * aclp - Sorted array of ACL structures.
3085+ *
3086+ * Outputs:
3087+ *
3088+ * Returns 0 for success -1 for failure. Prints a message to the Samba
3089+ * debug log in case of failure.
3090+ */
3091+
3092+static int hpux_acl_sort(int acl_count, int calclass, struct acl *aclp)
3093+{
3094+#if !defined(HAVE_HPUX_ACLSORT)
0f6733d8
WD
3095+ /*
3096+ * The aclsort() system call is availabe on the latest HPUX General
3097+ * Patch Bundles. So for HPUX, we developed our version of acl_sort
3098+ * function. Because, we don't want to update to a new
3099+ * HPUX GR bundle just for aclsort() call.
3100+ */
fa26e11c
WD
3101+
3102+ struct hpux_acl_types acl_obj_count;
3103+ int n_class_obj_perm = 0;
3104+ int i, j;
0f6733d8
WD
3105+
3106+ if(!acl_count) {
fa26e11c
WD
3107+ DEBUG(10,("Zero acl count passed. Returning Success\n"));
3108+ return 0;
3109+ }
3110+
0f6733d8 3111+ if(aclp == NULL) {
fa26e11c
WD
3112+ DEBUG(0,("Null ACL pointer in hpux_acl_sort. Returning Failure. \n"));
3113+ return -1;
3114+ }
3115+
3116+ /* Count different types of ACLs in the ACLs array */
3117+
3118+ hpux_count_obj(acl_count, aclp, &acl_obj_count);
3119+
0f6733d8
WD
3120+ /* There should be only one entry each of type USER_OBJ, GROUP_OBJ,
3121+ * CLASS_OBJ and OTHER_OBJ
fa26e11c
WD
3122+ */
3123+
0f6733d8
WD
3124+ if( (acl_obj_count.n_user_obj != 1) ||
3125+ (acl_obj_count.n_group_obj != 1) ||
3126+ (acl_obj_count.n_class_obj != 1) ||
3127+ (acl_obj_count.n_other_obj != 1)
3128+ ) {
fa26e11c
WD
3129+ DEBUG(0,("hpux_acl_sort: More than one entry or no entries for \
3130+USER OBJ or GROUP_OBJ or OTHER_OBJ or CLASS_OBJ\n"));
3131+ return -1;
3132+ }
3133+
3134+ /* If any of the default objects are present, there should be only
3135+ * one of them each.
3136+ */
3137+
0f6733d8
WD
3138+ if( (acl_obj_count.n_def_user_obj > 1) || (acl_obj_count.n_def_group_obj > 1) ||
3139+ (acl_obj_count.n_def_other_obj > 1) || (acl_obj_count.n_def_class_obj > 1) ) {
fa26e11c
WD
3140+ DEBUG(0,("hpux_acl_sort: More than one entry for DEF_CLASS_OBJ \
3141+or DEF_USER_OBJ or DEF_GROUP_OBJ or DEF_OTHER_OBJ\n"));
3142+ return -1;
3143+ }
3144+
0f6733d8
WD
3145+ /* We now have proper number of OBJ and DEF_OBJ entries. Now sort the acl
3146+ * structures.
fa26e11c
WD
3147+ *
3148+ * Sorting crieteria - First sort by ACL type. If there are multiple entries of
3149+ * same ACL type, sort by ACL id.
3150+ *
0f6733d8 3151+ * I am using the trival kind of sorting method here because, performance isn't
fa26e11c 3152+ * really effected by the ACLs feature. More over there aren't going to be more
0f6733d8 3153+ * than 17 entries on HPUX.
fa26e11c
WD
3154+ */
3155+
0f6733d8 3156+ for(i=0; i<acl_count;i++) {
fa26e11c 3157+ for (j=i+1; j<acl_count; j++) {
0f6733d8 3158+ if( aclp[i].a_type > aclp[j].a_type ) {
fa26e11c
WD
3159+ /* ACL entries out of order, swap them */
3160+
3161+ hpux_swap_acl_entries((aclp+i), (aclp+j));
3162+
0f6733d8 3163+ } else if ( aclp[i].a_type == aclp[j].a_type ) {
fa26e11c
WD
3164+
3165+ /* ACL entries of same type, sort by id */
3166+
0f6733d8 3167+ if(aclp[i].a_id > aclp[j].a_id) {
fa26e11c
WD
3168+ hpux_swap_acl_entries((aclp+i), (aclp+j));
3169+ } else if (aclp[i].a_id == aclp[j].a_id) {
3170+ /* We have a duplicate entry. */
0f6733d8 3171+ if(hpux_prohibited_duplicate_type(aclp[i].a_type)) {
fa26e11c
WD
3172+ DEBUG(0, ("hpux_acl_sort: Duplicate entry: Type(hex): %x Id: %d\n",
3173+ aclp[i].a_type, aclp[i].a_id));
3174+ return -1;
3175+ }
3176+ }
3177+
3178+ }
3179+ }
3180+ }
3181+
3182+ /* set the class obj permissions to the computed one. */
0f6733d8 3183+ if(calclass) {
fa26e11c
WD
3184+ int n_class_obj_index = -1;
3185+
0f6733d8 3186+ for(i=0;i<acl_count;i++) {
fa26e11c
WD
3187+ n_class_obj_perm |= hpux_get_needed_class_perm((aclp+i));
3188+
0f6733d8 3189+ if(aclp[i].a_type == CLASS_OBJ)
fa26e11c
WD
3190+ n_class_obj_index = i;
3191+ }
3192+ aclp[n_class_obj_index].a_perm = n_class_obj_perm;
3193+ }
3194+
3195+ return 0;
3196+#else
3197+ return aclsort(acl_count, calclass, aclp);
3198+#endif
3199+}
3200+
0f6733d8
WD
3201+/*
3202+ * sort the ACL and check it for validity
fa26e11c 3203+ *
0f6733d8 3204+ * if it's a minimal ACL with only 4 entries then we
fa26e11c
WD
3205+ * need to recalculate the mask permissions to make
3206+ * sure that they are the same as the GROUP_OBJ
3207+ * permissions as required by the UnixWare acl() system call.
3208+ *
0f6733d8 3209+ * (note: since POSIX allows minimal ACLs which only contain
fa26e11c
WD
3210+ * 3 entries - ie there is no mask entry - we should, in theory,
3211+ * check for this and add a mask entry if necessary - however
3212+ * we "know" that the caller of this interface always specifies
3213+ * a mask so, in practice "this never happens" (tm) - if it *does*
3214+ * happen aclsort() will fail and return an error and someone will
0f6733d8
WD
3215+ * have to fix it ...)
3216+ */
fa26e11c
WD
3217+
3218+static int acl_sort(SMB_ACL_T acl_d)
3219+{
3220+ int fixmask = (acl_d->count <= 4);
3221+
3222+ if (hpux_acl_sort(acl_d->count, fixmask, acl_d->acl) != 0) {
3223+ errno = EINVAL;
3224+ return -1;
3225+ }
3226+ return 0;
3227+}
0f6733d8
WD
3228+
3229+int sys_acl_valid(SMB_ACL_T acl_d)
fa26e11c
WD
3230+{
3231+ return acl_sort(acl_d);
3232+}
3233+
0f6733d8 3234+int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d)
fa26e11c 3235+{
0f6733d8
WD
3236+ struct stat s;
3237+ struct acl *acl_p;
3238+ int acl_count;
3239+ struct acl *acl_buf = NULL;
3240+ int ret;
fa26e11c 3241+
0f6733d8
WD
3242+ if(hpux_acl_call_presence() == False) {
3243+ /* Looks like we don't have the acl() system call on HPUX.
3244+ * May be the system doesn't have the latest version of JFS.
3245+ */
3246+ errno=ENOSYS;
3247+ return -1;
fa26e11c
WD
3248+ }
3249+
3250+ if (type != SMB_ACL_TYPE_ACCESS && type != SMB_ACL_TYPE_DEFAULT) {
3251+ errno = EINVAL;
3252+ return -1;
3253+ }
3254+
3255+ if (acl_sort(acl_d) != 0) {
3256+ return -1;
3257+ }
3258+
0f6733d8
WD
3259+ acl_p = &acl_d->acl[0];
3260+ acl_count = acl_d->count;
fa26e11c 3261+
0f6733d8
WD
3262+ /*
3263+ * if it's a directory there is extra work to do
3264+ * since the acl() system call will replace both
3265+ * the access ACLs and the default ACLs (if any)
3266+ */
fa26e11c
WD
3267+ if (stat(name, &s) != 0) {
3268+ return -1;
3269+ }
3270+ if (S_ISDIR(s.st_mode)) {
0f6733d8
WD
3271+ SMB_ACL_T acc_acl;
3272+ SMB_ACL_T def_acl;
3273+ SMB_ACL_T tmp_acl;
3274+ int i;
fa26e11c
WD
3275+
3276+ if (type == SMB_ACL_TYPE_ACCESS) {
3277+ acc_acl = acl_d;
3278+ def_acl = tmp_acl = sys_acl_get_file(name, SMB_ACL_TYPE_DEFAULT);
3279+
3280+ } else {
3281+ def_acl = acl_d;
3282+ acc_acl = tmp_acl = sys_acl_get_file(name, SMB_ACL_TYPE_ACCESS);
3283+ }
3284+
3285+ if (tmp_acl == NULL) {
3286+ return -1;
3287+ }
3288+
0f6733d8
WD
3289+ /*
3290+ * allocate a temporary buffer for the complete ACL
3291+ */
fa26e11c 3292+ acl_count = acc_acl->count + def_acl->count;
252945ef 3293+ acl_p = acl_buf = SMB_MALLOC_ARRAY(struct acl, acl_count);
fa26e11c
WD
3294+
3295+ if (acl_buf == NULL) {
3296+ sys_acl_free_acl(tmp_acl);
3297+ errno = ENOMEM;
3298+ return -1;
3299+ }
3300+
0f6733d8
WD
3301+ /*
3302+ * copy the access control and default entries into the buffer
3303+ */
fa26e11c 3304+ memcpy(&acl_buf[0], &acc_acl->acl[0],
0f6733d8 3305+ acc_acl->count * sizeof(acl_buf[0]));
fa26e11c
WD
3306+
3307+ memcpy(&acl_buf[acc_acl->count], &def_acl->acl[0],
0f6733d8 3308+ def_acl->count * sizeof(acl_buf[0]));
fa26e11c 3309+
0f6733d8
WD
3310+ /*
3311+ * set the ACL_DEFAULT flag on the default entries
3312+ */
fa26e11c
WD
3313+ for (i = acc_acl->count; i < acl_count; i++) {
3314+ acl_buf[i].a_type |= ACL_DEFAULT;
3315+ }
3316+
3317+ sys_acl_free_acl(tmp_acl);
3318+
3319+ } else if (type != SMB_ACL_TYPE_ACCESS) {
3320+ errno = EINVAL;
3321+ return -1;
3322+ }
3323+
3324+ ret = acl(name, ACL_SET, acl_count, acl_p);
3325+
0f6733d8
WD
3326+ if (acl_buf) {
3327+ free(acl_buf);
3328+ }
fa26e11c
WD
3329+
3330+ return ret;
3331+}
3332+
0f6733d8 3333+int sys_acl_set_fd(int fd, SMB_ACL_T acl_d)
fa26e11c 3334+{
0f6733d8
WD
3335+ /*
3336+ * HPUX doesn't have the facl call. Fake it using the path.... JRA.
3337+ */
fa26e11c
WD
3338+
3339+ files_struct *fsp = file_find_fd(fd);
3340+
3341+ if (fsp == NULL) {
3342+ errno = EBADF;
3343+ return NULL;
3344+ }
3345+
3346+ if (acl_sort(acl_d) != 0) {
3347+ return -1;
3348+ }
3349+
0f6733d8
WD
3350+ /*
3351+ * We know we're in the same conn context. So we
3352+ * can use the relative path.
3353+ */
fa26e11c 3354+
5ca9317d 3355+ return sys_acl_set_file(fsp->fsp_name, SMB_ACL_TYPE_ACCESS, acl_d);
fa26e11c
WD
3356+}
3357+
0f6733d8 3358+int sys_acl_delete_def_file(const char *path)
fa26e11c 3359+{
0f6733d8
WD
3360+ SMB_ACL_T acl_d;
3361+ int ret;
fa26e11c 3362+
0f6733d8
WD
3363+ /*
3364+ * fetching the access ACL and rewriting it has
3365+ * the effect of deleting the default ACL
3366+ */
fa26e11c
WD
3367+ if ((acl_d = sys_acl_get_file(path, SMB_ACL_TYPE_ACCESS)) == NULL) {
3368+ return -1;
3369+ }
3370+
3371+ ret = acl(path, ACL_SET, acl_d->count, acl_d->acl);
3372+
3373+ sys_acl_free_acl(acl_d);
0f6733d8 3374+
fa26e11c
WD
3375+ return ret;
3376+}
3377+
0f6733d8 3378+int sys_acl_free_text(char *text)
fa26e11c
WD
3379+{
3380+ free(text);
3381+ return 0;
3382+}
3383+
0f6733d8 3384+int sys_acl_free_acl(SMB_ACL_T acl_d)
fa26e11c
WD
3385+{
3386+ free(acl_d);
3387+ return 0;
3388+}
3389+
0f6733d8 3390+int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype)
fa26e11c
WD
3391+{
3392+ return 0;
3393+}
3394+
3395+#elif defined(HAVE_IRIX_ACLS)
3396+
0f6733d8 3397+int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p)
fa26e11c
WD
3398+{
3399+ if (entry_id != SMB_ACL_FIRST_ENTRY && entry_id != SMB_ACL_NEXT_ENTRY) {
3400+ errno = EINVAL;
3401+ return -1;
3402+ }
3403+
3404+ if (entry_p == NULL) {
3405+ errno = EINVAL;
3406+ return -1;
3407+ }
3408+
3409+ if (entry_id == SMB_ACL_FIRST_ENTRY) {
3410+ acl_d->next = 0;
3411+ }
3412+
3413+ if (acl_d->next < 0) {
3414+ errno = EINVAL;
3415+ return -1;
3416+ }
3417+
3418+ if (acl_d->next >= acl_d->aclp->acl_cnt) {
3419+ return 0;
3420+ }
3421+
3422+ *entry_p = &acl_d->aclp->acl_entry[acl_d->next++];
3423+
3424+ return 1;
3425+}
3426+
0f6733d8 3427+int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p)
fa26e11c
WD
3428+{
3429+ *type_p = entry_d->ae_tag;
3430+
3431+ return 0;
3432+}
3433+
0f6733d8 3434+int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
fa26e11c
WD
3435+{
3436+ *permset_p = entry_d;
3437+
3438+ return 0;
3439+}
3440+
0f6733d8 3441+void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d)
fa26e11c
WD
3442+{
3443+ if (entry_d->ae_tag != SMB_ACL_USER
3444+ && entry_d->ae_tag != SMB_ACL_GROUP) {
3445+ errno = EINVAL;
3446+ return NULL;
3447+ }
3448+
3449+ return &entry_d->ae_id;
3450+}
3451+
0f6733d8 3452+SMB_ACL_T sys_acl_get_file(const char *path_p, SMB_ACL_TYPE_T type)
fa26e11c 3453+{
0f6733d8 3454+ SMB_ACL_T a;
fa26e11c 3455+
252945ef 3456+ if ((a = SMB_MALLOC_P(struct SMB_ACL_T)) == NULL) {
fa26e11c
WD
3457+ errno = ENOMEM;
3458+ return NULL;
3459+ }
3460+ if ((a->aclp = acl_get_file(path_p, type)) == NULL) {
0f6733d8 3461+ SAFE_FREE(a);
fa26e11c
WD
3462+ return NULL;
3463+ }
3464+ a->next = -1;
3465+ a->freeaclp = True;
3466+ return a;
3467+}
3468+
0f6733d8 3469+SMB_ACL_T sys_acl_get_fd(int fd)
fa26e11c 3470+{
0f6733d8 3471+ SMB_ACL_T a;
fa26e11c 3472+
252945ef 3473+ if ((a = SMB_MALLOC_P(struct SMB_ACL_T)) == NULL) {
fa26e11c
WD
3474+ errno = ENOMEM;
3475+ return NULL;
3476+ }
3477+ if ((a->aclp = acl_get_fd(fd)) == NULL) {
0f6733d8 3478+ SAFE_FREE(a);
fa26e11c
WD
3479+ return NULL;
3480+ }
3481+ a->next = -1;
3482+ a->freeaclp = True;
3483+ return a;
3484+}
3485+
0f6733d8 3486+int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d)
fa26e11c
WD
3487+{
3488+ permset_d->ae_perm = 0;
3489+
3490+ return 0;
3491+}
3492+
0f6733d8 3493+int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
fa26e11c
WD
3494+{
3495+ if (perm != SMB_ACL_READ && perm != SMB_ACL_WRITE
3496+ && perm != SMB_ACL_EXECUTE) {
3497+ errno = EINVAL;
3498+ return -1;
3499+ }
3500+
3501+ if (permset_d == NULL) {
3502+ errno = EINVAL;
3503+ return -1;
3504+ }
3505+
3506+ permset_d->ae_perm |= perm;
3507+
3508+ return 0;
3509+}
3510+
0f6733d8 3511+int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
fa26e11c
WD
3512+{
3513+ return permset_d->ae_perm & perm;
3514+}
3515+
0f6733d8 3516+char *sys_acl_to_text(SMB_ACL_T acl_d, ssize_t *len_p)
fa26e11c
WD
3517+{
3518+ return acl_to_text(acl_d->aclp, len_p);
3519+}
3520+
0f6733d8 3521+SMB_ACL_T sys_acl_init(int count)
fa26e11c 3522+{
0f6733d8 3523+ SMB_ACL_T a;
fa26e11c
WD
3524+
3525+ if (count < 0) {
3526+ errno = EINVAL;
3527+ return NULL;
3528+ }
3529+
252945ef 3530+ if ((a = SMB_MALLOC(sizeof(struct SMB_ACL_T) + sizeof(struct acl))) == NULL) {
fa26e11c
WD
3531+ errno = ENOMEM;
3532+ return NULL;
3533+ }
3534+
3535+ a->next = -1;
3536+ a->freeaclp = False;
0f6733d8 3537+ a->aclp = (struct acl *)(&a->aclp + sizeof(struct acl *));
fa26e11c
WD
3538+ a->aclp->acl_cnt = 0;
3539+
3540+ return a;
3541+}
3542+
3543+
0f6733d8 3544+int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p)
fa26e11c 3545+{
0f6733d8
WD
3546+ SMB_ACL_T acl_d;
3547+ SMB_ACL_ENTRY_T entry_d;
fa26e11c
WD
3548+
3549+ if (acl_p == NULL || entry_p == NULL || (acl_d = *acl_p) == NULL) {
3550+ errno = EINVAL;
3551+ return -1;
3552+ }
3553+
3554+ if (acl_d->aclp->acl_cnt >= ACL_MAX_ENTRIES) {
3555+ errno = ENOSPC;
3556+ return -1;
3557+ }
3558+
0f6733d8
WD
3559+ entry_d = &acl_d->aclp->acl_entry[acl_d->aclp->acl_cnt++];
3560+ entry_d->ae_tag = 0;
3561+ entry_d->ae_id = 0;
3562+ entry_d->ae_perm = 0;
3563+ *entry_p = entry_d;
fa26e11c
WD
3564+
3565+ return 0;
3566+}
3567+
0f6733d8 3568+int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type)
fa26e11c
WD
3569+{
3570+ switch (tag_type) {
3571+ case SMB_ACL_USER:
3572+ case SMB_ACL_USER_OBJ:
3573+ case SMB_ACL_GROUP:
3574+ case SMB_ACL_GROUP_OBJ:
3575+ case SMB_ACL_OTHER:
3576+ case SMB_ACL_MASK:
3577+ entry_d->ae_tag = tag_type;
3578+ break;
3579+ default:
3580+ errno = EINVAL;
3581+ return -1;
3582+ }
3583+
3584+ return 0;
3585+}
3586+
0f6733d8 3587+int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p)
fa26e11c
WD
3588+{
3589+ if (entry_d->ae_tag != SMB_ACL_GROUP
3590+ && entry_d->ae_tag != SMB_ACL_USER) {
3591+ errno = EINVAL;
3592+ return -1;
3593+ }
3594+
3595+ entry_d->ae_id = *((id_t *)qual_p);
3596+
3597+ return 0;
3598+}
3599+
0f6733d8 3600+int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d)
fa26e11c
WD
3601+{
3602+ if (permset_d->ae_perm & ~(SMB_ACL_READ|SMB_ACL_WRITE|SMB_ACL_EXECUTE)) {
3603+ return EINVAL;
3604+ }
3605+
3606+ entry_d->ae_perm = permset_d->ae_perm;
3607+
3608+ return 0;
3609+}
3610+
0f6733d8 3611+int sys_acl_valid(SMB_ACL_T acl_d)
fa26e11c
WD
3612+{
3613+ return acl_valid(acl_d->aclp);
3614+}
3615+
0f6733d8 3616+int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d)
fa26e11c
WD
3617+{
3618+ return acl_set_file(name, type, acl_d->aclp);
3619+}
3620+
0f6733d8 3621+int sys_acl_set_fd(int fd, SMB_ACL_T acl_d)
fa26e11c
WD
3622+{
3623+ return acl_set_fd(fd, acl_d->aclp);
3624+}
3625+
0f6733d8 3626+int sys_acl_delete_def_file(const char *name)
fa26e11c
WD
3627+{
3628+ return acl_delete_def_file(name);
3629+}
3630+
0f6733d8 3631+int sys_acl_free_text(char *text)
fa26e11c
WD
3632+{
3633+ return acl_free(text);
3634+}
3635+
0f6733d8 3636+int sys_acl_free_acl(SMB_ACL_T acl_d)
fa26e11c
WD
3637+{
3638+ if (acl_d->freeaclp) {
3639+ acl_free(acl_d->aclp);
3640+ }
3641+ acl_free(acl_d);
3642+ return 0;
3643+}
3644+
0f6733d8 3645+int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype)
fa26e11c
WD
3646+{
3647+ return 0;
3648+}
3649+
3650+#elif defined(HAVE_AIX_ACLS)
3651+
3652+/* Donated by Medha Date, mdate@austin.ibm.com, for IBM */
3653+
0f6733d8 3654+int sys_acl_get_entry( SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
fa26e11c
WD
3655+{
3656+ struct acl_entry_link *link;
3657+ struct new_acl_entry *entry;
3658+ int keep_going;
3659+
3660+ DEBUG(10,("This is the count: %d\n",theacl->count));
3661+
0f6733d8
WD
3662+ /* Check if count was previously set to -1. *
3663+ * If it was, that means we reached the end *
3664+ * of the acl last time. */
3665+ if(theacl->count == -1)
3666+ return(0);
fa26e11c
WD
3667+
3668+ link = theacl;
0f6733d8
WD
3669+ /* To get to the next acl, traverse linked list until index *
3670+ * of acl matches the count we are keeping. This count is *
3671+ * incremented each time we return an acl entry. */
fa26e11c 3672+
0f6733d8 3673+ for(keep_going = 0; keep_going < theacl->count; keep_going++)
fa26e11c
WD
3674+ link = link->nextp;
3675+
3676+ entry = *entry_p = link->entryp;
3677+
3678+ DEBUG(10,("*entry_p is %d\n",entry_p));
3679+ DEBUG(10,("*entry_p->ace_access is %d\n",entry->ace_access));
3680+
3681+ /* Increment count */
3682+ theacl->count++;
0f6733d8 3683+ if(link->nextp == NULL)
fa26e11c
WD
3684+ theacl->count = -1;
3685+
0f6733d8 3686+ return(1);
fa26e11c
WD
3687+}
3688+
0f6733d8 3689+int sys_acl_get_tag_type( SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
fa26e11c
WD
3690+{
3691+ /* Initialize tag type */
3692+
3693+ *tag_type_p = -1;
3694+ DEBUG(10,("the tagtype is %d\n",entry_d->ace_id->id_type));
3695+
0f6733d8
WD
3696+ /* Depending on what type of entry we have, *
3697+ * return tag type. */
3698+ switch(entry_d->ace_id->id_type) {
fa26e11c
WD
3699+ case ACEID_USER:
3700+ *tag_type_p = SMB_ACL_USER;
3701+ break;
3702+ case ACEID_GROUP:
3703+ *tag_type_p = SMB_ACL_GROUP;
3704+ break;
3705+
3706+ case SMB_ACL_USER_OBJ:
3707+ case SMB_ACL_GROUP_OBJ:
3708+ case SMB_ACL_OTHER:
3709+ *tag_type_p = entry_d->ace_id->id_type;
3710+ break;
0f6733d8 3711+
fa26e11c 3712+ default:
0f6733d8 3713+ return(-1);
fa26e11c
WD
3714+ }
3715+
0f6733d8 3716+ return(0);
fa26e11c
WD
3717+}
3718+
0f6733d8 3719+int sys_acl_get_permset( SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
fa26e11c
WD
3720+{
3721+ DEBUG(10,("Starting AIX sys_acl_get_permset\n"));
3722+ *permset_p = &entry_d->ace_access;
3723+ DEBUG(10,("**permset_p is %d\n",**permset_p));
0f6733d8
WD
3724+ if(!(**permset_p & S_IXUSR) &&
3725+ !(**permset_p & S_IWUSR) &&
3726+ !(**permset_p & S_IRUSR) &&
3727+ (**permset_p != 0))
3728+ return(-1);
fa26e11c
WD
3729+
3730+ DEBUG(10,("Ending AIX sys_acl_get_permset\n"));
0f6733d8 3731+ return(0);
fa26e11c
WD
3732+}
3733+
0f6733d8 3734+void *sys_acl_get_qualifier( SMB_ACL_ENTRY_T entry_d)
fa26e11c 3735+{
0f6733d8 3736+ return(entry_d->ace_id->id_data);
fa26e11c
WD
3737+}
3738+
0f6733d8 3739+SMB_ACL_T sys_acl_get_file( const char *path_p, SMB_ACL_TYPE_T type)
fa26e11c
WD
3740+{
3741+ struct acl *file_acl = (struct acl *)NULL;
3742+ struct acl_entry *acl_entry;
3743+ struct new_acl_entry *new_acl_entry;
3744+ struct ace_id *idp;
3745+ struct acl_entry_link *acl_entry_link;
3746+ struct acl_entry_link *acl_entry_link_head;
3747+ int i;
3748+ int rc = 0;
3749+ uid_t user_id;
3750+
252945ef
WD
3751+ /* AIX has no DEFAULT */
3752+ if ( type == SMB_ACL_TYPE_DEFAULT )
3753+ return NULL;
3754+
fa26e11c 3755+ /* Get the acl using statacl */
0f6733d8 3756+
fa26e11c
WD
3757+ DEBUG(10,("Entering sys_acl_get_file\n"));
3758+ DEBUG(10,("path_p is %s\n",path_p));
3759+
252945ef 3760+ file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
0f6733d8
WD
3761+
3762+ if(file_acl == NULL) {
fa26e11c
WD
3763+ errno=ENOMEM;
3764+ DEBUG(0,("Error in AIX sys_acl_get_file: %d\n",errno));
0f6733d8 3765+ return(NULL);
fa26e11c
WD
3766+ }
3767+
3768+ memset(file_acl,0,BUFSIZ);
3769+
3770+ rc = statacl((char *)path_p,0,file_acl,BUFSIZ);
0f6733d8 3771+ if(rc == -1) {
fa26e11c 3772+ DEBUG(0,("statacl returned %d with errno %d\n",rc,errno));
0f6733d8
WD
3773+ SAFE_FREE(file_acl);
3774+ return(NULL);
fa26e11c
WD
3775+ }
3776+
3777+ DEBUG(10,("Got facl and returned it\n"));
3778+
3779+ /* Point to the first acl entry in the acl */
3780+ acl_entry = file_acl->acl_ext;
3781+
0f6733d8
WD
3782+ /* Begin setting up the head of the linked list *
3783+ * that will be used for the storing the acl *
3784+ * in a way that is useful for the posix_acls.c *
3785+ * code. */
fa26e11c
WD
3786+
3787+ acl_entry_link_head = acl_entry_link = sys_acl_init(0);
0f6733d8
WD
3788+ if(acl_entry_link_head == NULL)
3789+ return(NULL);
fa26e11c 3790+
252945ef 3791+ acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
0f6733d8
WD
3792+ if(acl_entry_link->entryp == NULL) {
3793+ SAFE_FREE(file_acl);
fa26e11c
WD
3794+ errno = ENOMEM;
3795+ DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
0f6733d8 3796+ return(NULL);
fa26e11c
WD
3797+ }
3798+
3799+ DEBUG(10,("acl_entry is %d\n",acl_entry));
3800+ DEBUG(10,("acl_last(file_acl) id %d\n",acl_last(file_acl)));
3801+
0f6733d8
WD
3802+ /* Check if the extended acl bit is on. *
3803+ * If it isn't, do not show the *
3804+ * contents of the acl since AIX intends *
3805+ * the extended info to remain unused */
fa26e11c 3806+
0f6733d8 3807+ if(file_acl->acl_mode & S_IXACL){
fa26e11c 3808+ /* while we are not pointing to the very end */
0f6733d8 3809+ while(acl_entry < acl_last(file_acl)) {
fa26e11c
WD
3810+ /* before we malloc anything, make sure this is */
3811+ /* a valid acl entry and one that we want to map */
3812+ idp = id_nxt(acl_entry->ace_id);
0f6733d8
WD
3813+ if((acl_entry->ace_type == ACC_SPECIFY ||
3814+ (acl_entry->ace_type == ACC_PERMIT)) && (idp != id_last(acl_entry))) {
3815+ acl_entry = acl_nxt(acl_entry);
3816+ continue;
fa26e11c
WD
3817+ }
3818+
3819+ idp = acl_entry->ace_id;
3820+
0f6733d8
WD
3821+ /* Check if this is the first entry in the linked list. *
3822+ * The first entry needs to keep prevp pointing to NULL *
3823+ * and already has entryp allocated. */
fa26e11c 3824+
0f6733d8 3825+ if(acl_entry_link_head->count != 0) {
252945ef 3826+ acl_entry_link->nextp = SMB_MALLOC_P(struct acl_entry_link);
fa26e11c 3827+
0f6733d8
WD
3828+ if(acl_entry_link->nextp == NULL) {
3829+ SAFE_FREE(file_acl);
fa26e11c
WD
3830+ errno = ENOMEM;
3831+ DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
0f6733d8 3832+ return(NULL);
fa26e11c
WD
3833+ }
3834+
3835+ acl_entry_link->nextp->prevp = acl_entry_link;
3836+ acl_entry_link = acl_entry_link->nextp;
252945ef 3837+ acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
0f6733d8
WD
3838+ if(acl_entry_link->entryp == NULL) {
3839+ SAFE_FREE(file_acl);
fa26e11c
WD
3840+ errno = ENOMEM;
3841+ DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
0f6733d8 3842+ return(NULL);
fa26e11c
WD
3843+ }
3844+ acl_entry_link->nextp = NULL;
3845+ }
3846+
3847+ acl_entry_link->entryp->ace_len = acl_entry->ace_len;
3848+
0f6733d8
WD
3849+ /* Don't really need this since all types are going *
3850+ * to be specified but, it's better than leaving it 0 */
fa26e11c
WD
3851+
3852+ acl_entry_link->entryp->ace_type = acl_entry->ace_type;
0f6733d8 3853+
fa26e11c 3854+ acl_entry_link->entryp->ace_access = acl_entry->ace_access;
0f6733d8
WD
3855+
3856+ memcpy(acl_entry_link->entryp->ace_id,idp,sizeof(struct ace_id));
fa26e11c 3857+
0f6733d8
WD
3858+ /* The access in the acl entries must be left shifted by *
3859+ * three bites, because they will ultimately be compared *
3860+ * to S_IRUSR, S_IWUSR, and S_IXUSR. */
fa26e11c 3861+
0f6733d8 3862+ switch(acl_entry->ace_type){
fa26e11c
WD
3863+ case ACC_PERMIT:
3864+ case ACC_SPECIFY:
3865+ acl_entry_link->entryp->ace_access = acl_entry->ace_access;
3866+ acl_entry_link->entryp->ace_access <<= 6;
3867+ acl_entry_link_head->count++;
3868+ break;
3869+ case ACC_DENY:
0f6733d8
WD
3870+ /* Since there is no way to return a DENY acl entry *
3871+ * change to PERMIT and then shift. */
fa26e11c
WD
3872+ DEBUG(10,("acl_entry->ace_access is %d\n",acl_entry->ace_access));
3873+ acl_entry_link->entryp->ace_access = ~acl_entry->ace_access & 7;
3874+ DEBUG(10,("acl_entry_link->entryp->ace_access is %d\n",acl_entry_link->entryp->ace_access));
3875+ acl_entry_link->entryp->ace_access <<= 6;
3876+ acl_entry_link_head->count++;
3877+ break;
3878+ default:
0f6733d8 3879+ return(0);
fa26e11c
WD
3880+ }
3881+
3882+ DEBUG(10,("acl_entry = %d\n",acl_entry));
3883+ DEBUG(10,("The ace_type is %d\n",acl_entry->ace_type));
0f6733d8 3884+
fa26e11c
WD
3885+ acl_entry = acl_nxt(acl_entry);
3886+ }
3887+ } /* end of if enabled */
3888+
0f6733d8
WD
3889+ /* Since owner, group, other acl entries are not *
3890+ * part of the acl entries in an acl, they must *
3891+ * be dummied up to become part of the list. */
fa26e11c 3892+
0f6733d8 3893+ for( i = 1; i < 4; i++) {
fa26e11c 3894+ DEBUG(10,("i is %d\n",i));
0f6733d8 3895+ if(acl_entry_link_head->count != 0) {
252945ef 3896+ acl_entry_link->nextp = SMB_MALLOC_P(struct acl_entry_link);
0f6733d8
WD
3897+ if(acl_entry_link->nextp == NULL) {
3898+ SAFE_FREE(file_acl);
fa26e11c
WD
3899+ errno = ENOMEM;
3900+ DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
0f6733d8 3901+ return(NULL);
fa26e11c
WD
3902+ }
3903+
3904+ acl_entry_link->nextp->prevp = acl_entry_link;
3905+ acl_entry_link = acl_entry_link->nextp;
252945ef 3906+ acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
0f6733d8
WD
3907+ if(acl_entry_link->entryp == NULL) {
3908+ SAFE_FREE(file_acl);
fa26e11c
WD
3909+ errno = ENOMEM;
3910+ DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
0f6733d8 3911+ return(NULL);
fa26e11c
WD
3912+ }
3913+ }
3914+
3915+ acl_entry_link->nextp = NULL;
3916+
3917+ new_acl_entry = acl_entry_link->entryp;
3918+ idp = new_acl_entry->ace_id;
3919+
0f6733d8 3920+ new_acl_entry->ace_len = sizeof(struct acl_entry);
fa26e11c 3921+ new_acl_entry->ace_type = ACC_PERMIT;
0f6733d8 3922+ idp->id_len = sizeof(struct ace_id);
fa26e11c 3923+ DEBUG(10,("idp->id_len = %d\n",idp->id_len));
0f6733d8 3924+ memset(idp->id_data,0,sizeof(uid_t));
fa26e11c 3925+
0f6733d8 3926+ switch(i) {
fa26e11c
WD
3927+ case 2:
3928+ new_acl_entry->ace_access = file_acl->g_access << 6;
3929+ idp->id_type = SMB_ACL_GROUP_OBJ;
3930+ break;
3931+
3932+ case 3:
3933+ new_acl_entry->ace_access = file_acl->o_access << 6;
3934+ idp->id_type = SMB_ACL_OTHER;
3935+ break;
0f6733d8 3936+
fa26e11c
WD
3937+ case 1:
3938+ new_acl_entry->ace_access = file_acl->u_access << 6;
3939+ idp->id_type = SMB_ACL_USER_OBJ;
3940+ break;
0f6733d8 3941+
fa26e11c 3942+ default:
0f6733d8 3943+ return(NULL);
fa26e11c
WD
3944+
3945+ }
3946+
3947+ acl_entry_link_head->count++;
3948+ DEBUG(10,("new_acl_entry->ace_access = %d\n",new_acl_entry->ace_access));
3949+ }
3950+
3951+ acl_entry_link_head->count = 0;
0f6733d8 3952+ SAFE_FREE(file_acl);
fa26e11c 3953+
0f6733d8 3954+ return(acl_entry_link_head);
fa26e11c
WD
3955+}
3956+
0f6733d8 3957+SMB_ACL_T sys_acl_get_fd(int fd)
fa26e11c
WD
3958+{
3959+ struct acl *file_acl = (struct acl *)NULL;
3960+ struct acl_entry *acl_entry;
3961+ struct new_acl_entry *new_acl_entry;
3962+ struct ace_id *idp;
3963+ struct acl_entry_link *acl_entry_link;
3964+ struct acl_entry_link *acl_entry_link_head;
3965+ int i;
3966+ int rc = 0;
3967+ uid_t user_id;
3968+
3969+ /* Get the acl using fstatacl */
0f6733d8 3970+
fa26e11c
WD
3971+ DEBUG(10,("Entering sys_acl_get_fd\n"));
3972+ DEBUG(10,("fd is %d\n",fd));
252945ef 3973+ file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
fa26e11c 3974+
0f6733d8 3975+ if(file_acl == NULL) {
fa26e11c
WD
3976+ errno=ENOMEM;
3977+ DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
0f6733d8 3978+ return(NULL);
fa26e11c
WD
3979+ }
3980+
3981+ memset(file_acl,0,BUFSIZ);
3982+
3983+ rc = fstatacl(fd,0,file_acl,BUFSIZ);
0f6733d8 3984+ if(rc == -1) {
fa26e11c 3985+ DEBUG(0,("The fstatacl call returned %d with errno %d\n",rc,errno));
0f6733d8
WD
3986+ SAFE_FREE(file_acl);
3987+ return(NULL);
fa26e11c
WD
3988+ }
3989+
3990+ DEBUG(10,("Got facl and returned it\n"));
3991+
3992+ /* Point to the first acl entry in the acl */
3993+
3994+ acl_entry = file_acl->acl_ext;
0f6733d8
WD
3995+ /* Begin setting up the head of the linked list *
3996+ * that will be used for the storing the acl *
3997+ * in a way that is useful for the posix_acls.c *
3998+ * code. */
fa26e11c
WD
3999+
4000+ acl_entry_link_head = acl_entry_link = sys_acl_init(0);
0f6733d8
WD
4001+ if(acl_entry_link_head == NULL){
4002+ SAFE_FREE(file_acl);
4003+ return(NULL);
fa26e11c
WD
4004+ }
4005+
252945ef 4006+ acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
fa26e11c 4007+
0f6733d8 4008+ if(acl_entry_link->entryp == NULL) {
fa26e11c
WD
4009+ errno = ENOMEM;
4010+ DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
0f6733d8
WD
4011+ SAFE_FREE(file_acl);
4012+ return(NULL);
fa26e11c
WD
4013+ }
4014+
4015+ DEBUG(10,("acl_entry is %d\n",acl_entry));
4016+ DEBUG(10,("acl_last(file_acl) id %d\n",acl_last(file_acl)));
0f6733d8
WD
4017+
4018+ /* Check if the extended acl bit is on. *
4019+ * If it isn't, do not show the *
4020+ * contents of the acl since AIX intends *
4021+ * the extended info to remain unused */
4022+
4023+ if(file_acl->acl_mode & S_IXACL){
fa26e11c 4024+ /* while we are not pointing to the very end */
0f6733d8 4025+ while(acl_entry < acl_last(file_acl)) {
fa26e11c
WD
4026+ /* before we malloc anything, make sure this is */
4027+ /* a valid acl entry and one that we want to map */
4028+
4029+ idp = id_nxt(acl_entry->ace_id);
0f6733d8
WD
4030+ if((acl_entry->ace_type == ACC_SPECIFY ||
4031+ (acl_entry->ace_type == ACC_PERMIT)) && (idp != id_last(acl_entry))) {
4032+ acl_entry = acl_nxt(acl_entry);
4033+ continue;
fa26e11c
WD
4034+ }
4035+
4036+ idp = acl_entry->ace_id;
0f6733d8
WD
4037+
4038+ /* Check if this is the first entry in the linked list. *
4039+ * The first entry needs to keep prevp pointing to NULL *
4040+ * and already has entryp allocated. */
fa26e11c 4041+
0f6733d8 4042+ if(acl_entry_link_head->count != 0) {
252945ef 4043+ acl_entry_link->nextp = SMB_MALLOC_P(struct acl_entry_link);
0f6733d8 4044+ if(acl_entry_link->nextp == NULL) {
fa26e11c
WD
4045+ errno = ENOMEM;
4046+ DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
0f6733d8
WD
4047+ SAFE_FREE(file_acl);
4048+ return(NULL);
fa26e11c
WD
4049+ }
4050+ acl_entry_link->nextp->prevp = acl_entry_link;
4051+ acl_entry_link = acl_entry_link->nextp;
252945ef 4052+ acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
0f6733d8 4053+ if(acl_entry_link->entryp == NULL) {
fa26e11c
WD
4054+ errno = ENOMEM;
4055+ DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
0f6733d8
WD
4056+ SAFE_FREE(file_acl);
4057+ return(NULL);
fa26e11c
WD
4058+ }
4059+
4060+ acl_entry_link->nextp = NULL;
4061+ }
4062+
4063+ acl_entry_link->entryp->ace_len = acl_entry->ace_len;
4064+
0f6733d8
WD
4065+ /* Don't really need this since all types are going *
4066+ * to be specified but, it's better than leaving it 0 */
fa26e11c
WD
4067+
4068+ acl_entry_link->entryp->ace_type = acl_entry->ace_type;
4069+ acl_entry_link->entryp->ace_access = acl_entry->ace_access;
4070+
0f6733d8 4071+ memcpy(acl_entry_link->entryp->ace_id, idp, sizeof(struct ace_id));
fa26e11c 4072+
0f6733d8
WD
4073+ /* The access in the acl entries must be left shifted by *
4074+ * three bites, because they will ultimately be compared *
4075+ * to S_IRUSR, S_IWUSR, and S_IXUSR. */
fa26e11c 4076+
0f6733d8 4077+ switch(acl_entry->ace_type){
fa26e11c
WD
4078+ case ACC_PERMIT:
4079+ case ACC_SPECIFY:
4080+ acl_entry_link->entryp->ace_access = acl_entry->ace_access;
4081+ acl_entry_link->entryp->ace_access <<= 6;
4082+ acl_entry_link_head->count++;
4083+ break;
4084+ case ACC_DENY:
0f6733d8
WD
4085+ /* Since there is no way to return a DENY acl entry *
4086+ * change to PERMIT and then shift. */
fa26e11c
WD
4087+ DEBUG(10,("acl_entry->ace_access is %d\n",acl_entry->ace_access));
4088+ acl_entry_link->entryp->ace_access = ~acl_entry->ace_access & 7;
4089+ DEBUG(10,("acl_entry_link->entryp->ace_access is %d\n",acl_entry_link->entryp->ace_access));
4090+ acl_entry_link->entryp->ace_access <<= 6;
4091+ acl_entry_link_head->count++;
4092+ break;
4093+ default:
0f6733d8 4094+ return(0);
fa26e11c
WD
4095+ }
4096+
4097+ DEBUG(10,("acl_entry = %d\n",acl_entry));
4098+ DEBUG(10,("The ace_type is %d\n",acl_entry->ace_type));
0f6733d8 4099+
fa26e11c
WD
4100+ acl_entry = acl_nxt(acl_entry);
4101+ }
4102+ } /* end of if enabled */
4103+
0f6733d8
WD
4104+ /* Since owner, group, other acl entries are not *
4105+ * part of the acl entries in an acl, they must *
4106+ * be dummied up to become part of the list. */
fa26e11c 4107+
0f6733d8 4108+ for( i = 1; i < 4; i++) {
fa26e11c 4109+ DEBUG(10,("i is %d\n",i));
0f6733d8 4110+ if(acl_entry_link_head->count != 0){
252945ef 4111+ acl_entry_link->nextp = SMB_MALLOC_P(struct acl_entry_link);
0f6733d8 4112+ if(acl_entry_link->nextp == NULL) {
fa26e11c
WD
4113+ errno = ENOMEM;
4114+ DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
0f6733d8
WD
4115+ SAFE_FREE(file_acl);
4116+ return(NULL);
fa26e11c
WD
4117+ }
4118+
4119+ acl_entry_link->nextp->prevp = acl_entry_link;
4120+ acl_entry_link = acl_entry_link->nextp;
252945ef 4121+ acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
fa26e11c 4122+
0f6733d8
WD
4123+ if(acl_entry_link->entryp == NULL) {
4124+ SAFE_FREE(file_acl);
fa26e11c
WD
4125+ errno = ENOMEM;
4126+ DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
0f6733d8 4127+ return(NULL);
fa26e11c
WD
4128+ }
4129+ }
4130+
4131+ acl_entry_link->nextp = NULL;
0f6733d8 4132+
fa26e11c
WD
4133+ new_acl_entry = acl_entry_link->entryp;
4134+ idp = new_acl_entry->ace_id;
0f6733d8
WD
4135+
4136+ new_acl_entry->ace_len = sizeof(struct acl_entry);
fa26e11c 4137+ new_acl_entry->ace_type = ACC_PERMIT;
0f6733d8 4138+ idp->id_len = sizeof(struct ace_id);
fa26e11c 4139+ DEBUG(10,("idp->id_len = %d\n",idp->id_len));
0f6733d8
WD
4140+ memset(idp->id_data,0,sizeof(uid_t));
4141+
4142+ switch(i) {
fa26e11c
WD
4143+ case 2:
4144+ new_acl_entry->ace_access = file_acl->g_access << 6;
4145+ idp->id_type = SMB_ACL_GROUP_OBJ;
4146+ break;
0f6733d8 4147+
fa26e11c
WD
4148+ case 3:
4149+ new_acl_entry->ace_access = file_acl->o_access << 6;
4150+ idp->id_type = SMB_ACL_OTHER;
4151+ break;
0f6733d8 4152+
fa26e11c
WD
4153+ case 1:
4154+ new_acl_entry->ace_access = file_acl->u_access << 6;
4155+ idp->id_type = SMB_ACL_USER_OBJ;
4156+ break;
0f6733d8 4157+
fa26e11c 4158+ default:
0f6733d8 4159+ return(NULL);
fa26e11c 4160+ }
0f6733d8 4161+
fa26e11c
WD
4162+ acl_entry_link_head->count++;
4163+ DEBUG(10,("new_acl_entry->ace_access = %d\n",new_acl_entry->ace_access));
4164+ }
4165+
4166+ acl_entry_link_head->count = 0;
0f6733d8
WD
4167+ SAFE_FREE(file_acl);
4168+
4169+ return(acl_entry_link_head);
fa26e11c
WD
4170+}
4171+
0f6733d8 4172+int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset)
fa26e11c
WD
4173+{
4174+ *permset = *permset & ~0777;
0f6733d8 4175+ return(0);
fa26e11c
WD
4176+}
4177+
0f6733d8 4178+int sys_acl_add_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
fa26e11c 4179+{
0f6733d8
WD
4180+ if((perm != 0) &&
4181+ (perm & (S_IXUSR | S_IWUSR | S_IRUSR)) == 0)
4182+ return(-1);
fa26e11c
WD
4183+
4184+ *permset |= perm;
4185+ DEBUG(10,("This is the permset now: %d\n",*permset));
0f6733d8 4186+ return(0);
fa26e11c
WD
4187+}
4188+
0f6733d8 4189+char *sys_acl_to_text( SMB_ACL_T theacl, ssize_t *plen)
fa26e11c 4190+{
0f6733d8 4191+ return(NULL);
fa26e11c
WD
4192+}
4193+
0f6733d8 4194+SMB_ACL_T sys_acl_init( int count)
fa26e11c
WD
4195+{
4196+ struct acl_entry_link *theacl = NULL;
0f6733d8 4197+
fa26e11c
WD
4198+ DEBUG(10,("Entering sys_acl_init\n"));
4199+
252945ef 4200+ theacl = SMB_MALLOC_P(struct acl_entry_link);
0f6733d8 4201+ if(theacl == NULL) {
fa26e11c
WD
4202+ errno = ENOMEM;
4203+ DEBUG(0,("Error in sys_acl_init is %d\n",errno));
0f6733d8 4204+ return(NULL);
fa26e11c
WD
4205+ }
4206+
4207+ theacl->count = 0;
4208+ theacl->nextp = NULL;
4209+ theacl->prevp = NULL;
4210+ theacl->entryp = NULL;
4211+ DEBUG(10,("Exiting sys_acl_init\n"));
0f6733d8 4212+ return(theacl);
fa26e11c
WD
4213+}
4214+
0f6733d8 4215+int sys_acl_create_entry( SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
fa26e11c
WD
4216+{
4217+ struct acl_entry_link *theacl;
4218+ struct acl_entry_link *acl_entryp;
4219+ struct acl_entry_link *temp_entry;
4220+ int counting;
4221+
4222+ DEBUG(10,("Entering the sys_acl_create_entry\n"));
4223+
4224+ theacl = acl_entryp = *pacl;
4225+
4226+ /* Get to the end of the acl before adding entry */
4227+
0f6733d8 4228+ for(counting=0; counting < theacl->count; counting++){
fa26e11c
WD
4229+ DEBUG(10,("The acl_entryp is %d\n",acl_entryp));
4230+ temp_entry = acl_entryp;
4231+ acl_entryp = acl_entryp->nextp;
4232+ }
4233+
0f6733d8 4234+ if(theacl->count != 0){
252945ef 4235+ temp_entry->nextp = acl_entryp = SMB_MALLOC_P(struct acl_entry_link);
0f6733d8 4236+ if(acl_entryp == NULL) {
fa26e11c
WD
4237+ errno = ENOMEM;
4238+ DEBUG(0,("Error in sys_acl_create_entry is %d\n",errno));
0f6733d8 4239+ return(-1);
fa26e11c
WD
4240+ }
4241+
4242+ DEBUG(10,("The acl_entryp is %d\n",acl_entryp));
4243+ acl_entryp->prevp = temp_entry;
4244+ DEBUG(10,("The acl_entryp->prevp is %d\n",acl_entryp->prevp));
4245+ }
4246+
252945ef 4247+ *pentry = acl_entryp->entryp = SMB_MALLOC_P(struct new_acl_entry);
0f6733d8 4248+ if(*pentry == NULL) {
fa26e11c
WD
4249+ errno = ENOMEM;
4250+ DEBUG(0,("Error in sys_acl_create_entry is %d\n",errno));
0f6733d8 4251+ return(-1);
fa26e11c
WD
4252+ }
4253+
0f6733d8
WD
4254+ memset(*pentry,0,sizeof(struct new_acl_entry));
4255+ acl_entryp->entryp->ace_len = sizeof(struct acl_entry);
fa26e11c 4256+ acl_entryp->entryp->ace_type = ACC_PERMIT;
0f6733d8 4257+ acl_entryp->entryp->ace_id->id_len = sizeof(struct ace_id);
fa26e11c
WD
4258+ acl_entryp->nextp = NULL;
4259+ theacl->count++;
4260+ DEBUG(10,("Exiting sys_acl_create_entry\n"));
0f6733d8 4261+ return(0);
fa26e11c
WD
4262+}
4263+
0f6733d8 4264+int sys_acl_set_tag_type( SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
fa26e11c
WD
4265+{
4266+ DEBUG(10,("Starting AIX sys_acl_set_tag_type\n"));
4267+ entry->ace_id->id_type = tagtype;
4268+ DEBUG(10,("The tag type is %d\n",entry->ace_id->id_type));
4269+ DEBUG(10,("Ending AIX sys_acl_set_tag_type\n"));
4270+}
4271+
0f6733d8 4272+int sys_acl_set_qualifier( SMB_ACL_ENTRY_T entry, void *qual)
fa26e11c
WD
4273+{
4274+ DEBUG(10,("Starting AIX sys_acl_set_qualifier\n"));
0f6733d8 4275+ memcpy(entry->ace_id->id_data,qual,sizeof(uid_t));
fa26e11c 4276+ DEBUG(10,("Ending AIX sys_acl_set_qualifier\n"));
0f6733d8 4277+ return(0);
fa26e11c
WD
4278+}
4279+
0f6733d8 4280+int sys_acl_set_permset( SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
fa26e11c
WD
4281+{
4282+ DEBUG(10,("Starting AIX sys_acl_set_permset\n"));
0f6733d8
WD
4283+ if(!(*permset & S_IXUSR) &&
4284+ !(*permset & S_IWUSR) &&
4285+ !(*permset & S_IRUSR) &&
4286+ (*permset != 0))
4287+ return(-1);
fa26e11c
WD
4288+
4289+ entry->ace_access = *permset;
4290+ DEBUG(10,("entry->ace_access = %d\n",entry->ace_access));
4291+ DEBUG(10,("Ending AIX sys_acl_set_permset\n"));
0f6733d8 4292+ return(0);
fa26e11c
WD
4293+}
4294+
0f6733d8 4295+int sys_acl_valid( SMB_ACL_T theacl )
fa26e11c
WD
4296+{
4297+ int user_obj = 0;
4298+ int group_obj = 0;
4299+ int other_obj = 0;
4300+ struct acl_entry_link *acl_entry;
4301+
0f6733d8 4302+ for(acl_entry=theacl; acl_entry != NULL; acl_entry = acl_entry->nextp) {
fa26e11c
WD
4303+ user_obj += (acl_entry->entryp->ace_id->id_type == SMB_ACL_USER_OBJ);
4304+ group_obj += (acl_entry->entryp->ace_id->id_type == SMB_ACL_GROUP_OBJ);
4305+ other_obj += (acl_entry->entryp->ace_id->id_type == SMB_ACL_OTHER);
4306+ }
4307+
4308+ DEBUG(10,("user_obj=%d, group_obj=%d, other_obj=%d\n",user_obj,group_obj,other_obj));
0f6733d8
WD
4309+
4310+ if(user_obj != 1 || group_obj != 1 || other_obj != 1)
4311+ return(-1);
fa26e11c 4312+
0f6733d8 4313+ return(0);
fa26e11c
WD
4314+}
4315+
0f6733d8 4316+int sys_acl_set_file( const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
fa26e11c
WD
4317+{
4318+ struct acl_entry_link *acl_entry_link = NULL;
4319+ struct acl *file_acl = NULL;
4320+ struct acl *file_acl_temp = NULL;
4321+ struct acl_entry *acl_entry = NULL;
4322+ struct ace_id *ace_id = NULL;
4323+ uint id_type;
4324+ uint ace_access;
4325+ uint user_id;
4326+ uint acl_length;
4327+ uint rc;
4328+
4329+ DEBUG(10,("Entering sys_acl_set_file\n"));
4330+ DEBUG(10,("File name is %s\n",name));
0f6733d8 4331+
fa26e11c 4332+ /* AIX has no default ACL */
0f6733d8
WD
4333+ if(acltype == SMB_ACL_TYPE_DEFAULT)
4334+ return(0);
fa26e11c
WD
4335+
4336+ acl_length = BUFSIZ;
252945ef 4337+ file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
fa26e11c 4338+
0f6733d8 4339+ if(file_acl == NULL) {
fa26e11c
WD
4340+ errno = ENOMEM;
4341+ DEBUG(0,("Error in sys_acl_set_file is %d\n",errno));
0f6733d8 4342+ return(-1);
fa26e11c
WD
4343+ }
4344+
4345+ memset(file_acl,0,BUFSIZ);
4346+
4347+ file_acl->acl_len = ACL_SIZ;
4348+ file_acl->acl_mode = S_IXACL;
4349+
0f6733d8 4350+ for(acl_entry_link=theacl; acl_entry_link != NULL; acl_entry_link = acl_entry_link->nextp) {
fa26e11c
WD
4351+ acl_entry_link->entryp->ace_access >>= 6;
4352+ id_type = acl_entry_link->entryp->ace_id->id_type;
4353+
0f6733d8 4354+ switch(id_type) {
fa26e11c
WD
4355+ case SMB_ACL_USER_OBJ:
4356+ file_acl->u_access = acl_entry_link->entryp->ace_access;
4357+ continue;
4358+ case SMB_ACL_GROUP_OBJ:
4359+ file_acl->g_access = acl_entry_link->entryp->ace_access;
4360+ continue;
4361+ case SMB_ACL_OTHER:
4362+ file_acl->o_access = acl_entry_link->entryp->ace_access;
4363+ continue;
4364+ case SMB_ACL_MASK:
4365+ continue;
4366+ }
4367+
0f6733d8
WD
4368+ if((file_acl->acl_len + sizeof(struct acl_entry)) > acl_length) {
4369+ acl_length += sizeof(struct acl_entry);
252945ef 4370+ file_acl_temp = (struct acl *)SMB_MALLOC(acl_length);
0f6733d8
WD
4371+ if(file_acl_temp == NULL) {
4372+ SAFE_FREE(file_acl);
fa26e11c
WD
4373+ errno = ENOMEM;
4374+ DEBUG(0,("Error in sys_acl_set_file is %d\n",errno));
0f6733d8
WD
4375+ return(-1);
4376+ }
fa26e11c
WD
4377+
4378+ memcpy(file_acl_temp,file_acl,file_acl->acl_len);
0f6733d8 4379+ SAFE_FREE(file_acl);
fa26e11c
WD
4380+ file_acl = file_acl_temp;
4381+ }
4382+
4383+ acl_entry = (struct acl_entry *)((char *)file_acl + file_acl->acl_len);
0f6733d8 4384+ file_acl->acl_len += sizeof(struct acl_entry);
fa26e11c
WD
4385+ acl_entry->ace_len = acl_entry_link->entryp->ace_len;
4386+ acl_entry->ace_access = acl_entry_link->entryp->ace_access;
0f6733d8 4387+
fa26e11c 4388+ /* In order to use this, we'll need to wait until we can get denies */
0f6733d8
WD
4389+ /* if(!acl_entry->ace_access && acl_entry->ace_type == ACC_PERMIT)
4390+ acl_entry->ace_type = ACC_SPECIFY; */
fa26e11c
WD
4391+
4392+ acl_entry->ace_type = ACC_SPECIFY;
0f6733d8 4393+
fa26e11c 4394+ ace_id = acl_entry->ace_id;
0f6733d8 4395+
fa26e11c
WD
4396+ ace_id->id_type = acl_entry_link->entryp->ace_id->id_type;
4397+ DEBUG(10,("The id type is %d\n",ace_id->id_type));
4398+ ace_id->id_len = acl_entry_link->entryp->ace_id->id_len;
0f6733d8
WD
4399+ memcpy(&user_id, acl_entry_link->entryp->ace_id->id_data, sizeof(uid_t));
4400+ memcpy(acl_entry->ace_id->id_data, &user_id, sizeof(uid_t));
fa26e11c
WD
4401+ }
4402+
0f6733d8 4403+ rc = chacl(name,file_acl,file_acl->acl_len);
fa26e11c
WD
4404+ DEBUG(10,("errno is %d\n",errno));
4405+ DEBUG(10,("return code is %d\n",rc));
0f6733d8 4406+ SAFE_FREE(file_acl);
fa26e11c 4407+ DEBUG(10,("Exiting the sys_acl_set_file\n"));
0f6733d8 4408+ return(rc);
fa26e11c
WD
4409+}
4410+
0f6733d8 4411+int sys_acl_set_fd( int fd, SMB_ACL_T theacl)
fa26e11c
WD
4412+{
4413+ struct acl_entry_link *acl_entry_link = NULL;
4414+ struct acl *file_acl = NULL;
4415+ struct acl *file_acl_temp = NULL;
4416+ struct acl_entry *acl_entry = NULL;
4417+ struct ace_id *ace_id = NULL;
4418+ uint id_type;
4419+ uint user_id;
4420+ uint acl_length;
4421+ uint rc;
0f6733d8 4422+
fa26e11c
WD
4423+ DEBUG(10,("Entering sys_acl_set_fd\n"));
4424+ acl_length = BUFSIZ;
252945ef 4425+ file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
fa26e11c 4426+
0f6733d8 4427+ if(file_acl == NULL) {
fa26e11c
WD
4428+ errno = ENOMEM;
4429+ DEBUG(0,("Error in sys_acl_set_fd is %d\n",errno));
0f6733d8 4430+ return(-1);
fa26e11c
WD
4431+ }
4432+
4433+ memset(file_acl,0,BUFSIZ);
0f6733d8 4434+
fa26e11c
WD
4435+ file_acl->acl_len = ACL_SIZ;
4436+ file_acl->acl_mode = S_IXACL;
4437+
0f6733d8 4438+ for(acl_entry_link=theacl; acl_entry_link != NULL; acl_entry_link = acl_entry_link->nextp) {
fa26e11c
WD
4439+ acl_entry_link->entryp->ace_access >>= 6;
4440+ id_type = acl_entry_link->entryp->ace_id->id_type;
4441+ DEBUG(10,("The id_type is %d\n",id_type));
4442+
0f6733d8 4443+ switch(id_type) {
fa26e11c
WD
4444+ case SMB_ACL_USER_OBJ:
4445+ file_acl->u_access = acl_entry_link->entryp->ace_access;
4446+ continue;
4447+ case SMB_ACL_GROUP_OBJ:
4448+ file_acl->g_access = acl_entry_link->entryp->ace_access;
4449+ continue;
4450+ case SMB_ACL_OTHER:
4451+ file_acl->o_access = acl_entry_link->entryp->ace_access;
4452+ continue;
4453+ case SMB_ACL_MASK:
4454+ continue;
4455+ }
4456+
0f6733d8
WD
4457+ if((file_acl->acl_len + sizeof(struct acl_entry)) > acl_length) {
4458+ acl_length += sizeof(struct acl_entry);
252945ef 4459+ file_acl_temp = (struct acl *)SMB_MALLOC(acl_length);
0f6733d8
WD
4460+ if(file_acl_temp == NULL) {
4461+ SAFE_FREE(file_acl);
fa26e11c
WD
4462+ errno = ENOMEM;
4463+ DEBUG(0,("Error in sys_acl_set_fd is %d\n",errno));
0f6733d8 4464+ return(-1);
fa26e11c
WD
4465+ }
4466+
4467+ memcpy(file_acl_temp,file_acl,file_acl->acl_len);
0f6733d8 4468+ SAFE_FREE(file_acl);
fa26e11c
WD
4469+ file_acl = file_acl_temp;
4470+ }
4471+
4472+ acl_entry = (struct acl_entry *)((char *)file_acl + file_acl->acl_len);
0f6733d8 4473+ file_acl->acl_len += sizeof(struct acl_entry);
fa26e11c
WD
4474+ acl_entry->ace_len = acl_entry_link->entryp->ace_len;
4475+ acl_entry->ace_access = acl_entry_link->entryp->ace_access;
0f6733d8 4476+
fa26e11c 4477+ /* In order to use this, we'll need to wait until we can get denies */
0f6733d8 4478+ /* if(!acl_entry->ace_access && acl_entry->ace_type == ACC_PERMIT)
fa26e11c 4479+ acl_entry->ace_type = ACC_SPECIFY; */
0f6733d8 4480+
fa26e11c 4481+ acl_entry->ace_type = ACC_SPECIFY;
0f6733d8 4482+
fa26e11c 4483+ ace_id = acl_entry->ace_id;
0f6733d8 4484+
fa26e11c
WD
4485+ ace_id->id_type = acl_entry_link->entryp->ace_id->id_type;
4486+ DEBUG(10,("The id type is %d\n",ace_id->id_type));
4487+ ace_id->id_len = acl_entry_link->entryp->ace_id->id_len;
0f6733d8
WD
4488+ memcpy(&user_id, acl_entry_link->entryp->ace_id->id_data, sizeof(uid_t));
4489+ memcpy(ace_id->id_data, &user_id, sizeof(uid_t));
fa26e11c 4490+ }
0f6733d8 4491+
fa26e11c
WD
4492+ rc = fchacl(fd,file_acl,file_acl->acl_len);
4493+ DEBUG(10,("errno is %d\n",errno));
4494+ DEBUG(10,("return code is %d\n",rc));
0f6733d8 4495+ SAFE_FREE(file_acl);
fa26e11c 4496+ DEBUG(10,("Exiting sys_acl_set_fd\n"));
0f6733d8 4497+ return(rc);
fa26e11c
WD
4498+}
4499+
0f6733d8 4500+int sys_acl_delete_def_file(const char *name)
fa26e11c
WD
4501+{
4502+ /* AIX has no default ACL */
4503+ return 0;
4504+}
4505+
0f6733d8 4506+int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
fa26e11c 4507+{
0f6733d8 4508+ return(*permset & perm);
fa26e11c
WD
4509+}
4510+
0f6733d8 4511+int sys_acl_free_text(char *text)
fa26e11c 4512+{
0f6733d8 4513+ return(0);
fa26e11c
WD
4514+}
4515+
0f6733d8 4516+int sys_acl_free_acl(SMB_ACL_T posix_acl)
fa26e11c
WD
4517+{
4518+ struct acl_entry_link *acl_entry_link;
4519+
0f6733d8
WD
4520+ for(acl_entry_link = posix_acl->nextp; acl_entry_link->nextp != NULL; acl_entry_link = acl_entry_link->nextp) {
4521+ SAFE_FREE(acl_entry_link->prevp->entryp);
4522+ SAFE_FREE(acl_entry_link->prevp);
fa26e11c
WD
4523+ }
4524+
0f6733d8
WD
4525+ SAFE_FREE(acl_entry_link->prevp->entryp);
4526+ SAFE_FREE(acl_entry_link->prevp);
4527+ SAFE_FREE(acl_entry_link->entryp);
4528+ SAFE_FREE(acl_entry_link);
4529+
4530+ return(0);
fa26e11c
WD
4531+}
4532+
0f6733d8 4533+int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype)
fa26e11c 4534+{
0f6733d8 4535+ return(0);
fa26e11c
WD
4536+}
4537+
4538+#else /* No ACLs. */
4539+
4df546eb 4540+int sys_acl_get_entry(UNUSED(SMB_ACL_T the_acl), UNUSED(int entry_id), UNUSED(SMB_ACL_ENTRY_T *entry_p))
fa26e11c
WD
4541+{
4542+ errno = ENOSYS;
4543+ return -1;
4544+}
4545+
4df546eb 4546+int sys_acl_get_tag_type(UNUSED(SMB_ACL_ENTRY_T entry_d), UNUSED(SMB_ACL_TAG_T *tag_type_p))
fa26e11c
WD
4547+{
4548+ errno = ENOSYS;
4549+ return -1;
4550+}
4551+
4df546eb 4552+int sys_acl_get_permset(UNUSED(SMB_ACL_ENTRY_T entry_d), UNUSED(SMB_ACL_PERMSET_T *permset_p))
fa26e11c
WD
4553+{
4554+ errno = ENOSYS;
4555+ return -1;
4556+}
4557+
4df546eb 4558+void *sys_acl_get_qualifier(UNUSED(SMB_ACL_ENTRY_T entry_d))
fa26e11c
WD
4559+{
4560+ errno = ENOSYS;
4561+ return NULL;
4562+}
4563+
4df546eb 4564+SMB_ACL_T sys_acl_get_file(UNUSED(const char *path_p), UNUSED(SMB_ACL_TYPE_T type))
fa26e11c
WD
4565+{
4566+ errno = ENOSYS;
5ca9317d 4567+ return (SMB_ACL_T)NULL;
fa26e11c
WD
4568+}
4569+
4df546eb 4570+SMB_ACL_T sys_acl_get_fd(UNUSED(int fd))
fa26e11c
WD
4571+{
4572+ errno = ENOSYS;
5ca9317d 4573+ return (SMB_ACL_T)NULL;
fa26e11c
WD
4574+}
4575+
4df546eb 4576+int sys_acl_clear_perms(UNUSED(SMB_ACL_PERMSET_T permset))
fa26e11c
WD
4577+{
4578+ errno = ENOSYS;
4579+ return -1;
4580+}
4581+
4df546eb 4582+int sys_acl_add_perm( UNUSED(SMB_ACL_PERMSET_T permset), UNUSED(SMB_ACL_PERM_T perm))
fa26e11c
WD
4583+{
4584+ errno = ENOSYS;
4585+ return -1;
4586+}
4587+
0f6733d8 4588+int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
fa26e11c
WD
4589+{
4590+ errno = ENOSYS;
0f6733d8 4591+ return (permset & perm) ? 1 : 0;
fa26e11c
WD
4592+}
4593+
4df546eb 4594+char *sys_acl_to_text(UNUSED(SMB_ACL_T the_acl), UNUSED(ssize_t *plen))
fa26e11c
WD
4595+{
4596+ errno = ENOSYS;
4597+ return NULL;
4598+}
4599+
4df546eb 4600+int sys_acl_free_text(UNUSED(char *text))
fa26e11c
WD
4601+{
4602+ errno = ENOSYS;
4603+ return -1;
4604+}
4605+
4df546eb 4606+SMB_ACL_T sys_acl_init(UNUSED(int count))
fa26e11c
WD
4607+{
4608+ errno = ENOSYS;
4609+ return NULL;
4610+}
4611+
4df546eb 4612+int sys_acl_create_entry(UNUSED(SMB_ACL_T *pacl), UNUSED(SMB_ACL_ENTRY_T *pentry))
fa26e11c
WD
4613+{
4614+ errno = ENOSYS;
4615+ return -1;
4616+}
4617+
4df546eb 4618+int sys_acl_set_tag_type(UNUSED(SMB_ACL_ENTRY_T entry), UNUSED(SMB_ACL_TAG_T tagtype))
fa26e11c
WD
4619+{
4620+ errno = ENOSYS;
4621+ return -1;
4622+}
4623+
4df546eb 4624+int sys_acl_set_qualifier(UNUSED(SMB_ACL_ENTRY_T entry), UNUSED(void *qual))
fa26e11c
WD
4625+{
4626+ errno = ENOSYS;
4627+ return -1;
4628+}
4629+
4df546eb 4630+int sys_acl_set_permset(UNUSED(SMB_ACL_ENTRY_T entry), UNUSED(SMB_ACL_PERMSET_T permset))
fa26e11c
WD
4631+{
4632+ errno = ENOSYS;
4633+ return -1;
4634+}
4635+
4df546eb 4636+int sys_acl_valid(UNUSED(SMB_ACL_T theacl))
fa26e11c
WD
4637+{
4638+ errno = ENOSYS;
4639+ return -1;
4640+}
4641+
4df546eb 4642+int sys_acl_set_file(UNUSED(const char *name), UNUSED(SMB_ACL_TYPE_T acltype), UNUSED(SMB_ACL_T theacl))
fa26e11c
WD
4643+{
4644+ errno = ENOSYS;
4645+ return -1;
4646+}
4647+
4df546eb 4648+int sys_acl_set_fd(UNUSED(int fd), UNUSED(SMB_ACL_T theacl))
fa26e11c
WD
4649+{
4650+ errno = ENOSYS;
4651+ return -1;
4652+}
4653+
4df546eb 4654+int sys_acl_delete_def_file(UNUSED(const char *name))
fa26e11c
WD
4655+{
4656+ errno = ENOSYS;
4657+ return -1;
4658+}
4659+
4df546eb 4660+int sys_acl_free_acl(UNUSED(SMB_ACL_T the_acl))
fa26e11c
WD
4661+{
4662+ errno = ENOSYS;
4663+ return -1;
4664+}
4665+
4df546eb 4666+int sys_acl_free_qualifier(UNUSED(void *qual), UNUSED(SMB_ACL_TAG_T tagtype))
fa26e11c
WD
4667+{
4668+ errno = ENOSYS;
4669+ return -1;
4670+}
4671+
4672+#endif /* No ACLs. */
252945ef
WD
4673+
4674+/************************************************************************
4675+ Deliberately outside the ACL defines. Return 1 if this is a "no acls"
4676+ errno, 0 if not.
4677+************************************************************************/
4678+
4679+int no_acl_syscall_error(int err)
4680+{
4681+#if defined(ENOSYS)
4682+ if (err == ENOSYS) {
4683+ return 1;
4684+ }
4685+#endif
4686+#if defined(ENOTSUP)
4687+ if (err == ENOTSUP) {
4688+ return 1;
4689+ }
4690+#endif
4691+ return 0;
4692+}
9a7eef96
WD
4693--- old/lib/sysacls.h
4694+++ new/lib/sysacls.h
252945ef
WD
4695@@ -0,0 +1,28 @@
4696+#define SMB_MALLOC(cnt) new_array(char, cnt)
4697+#define SMB_MALLOC_P(obj) new_array(obj, 1)
4698+#define SMB_MALLOC_ARRAY(obj, cnt) new_array(obj, cnt)
4699+#define SMB_REALLOC(mem, cnt) realloc_array(mem, char, cnt)
5ca9317d 4700+#define slprintf snprintf
0f6733d8
WD
4701+
4702+int sys_acl_get_entry(SMB_ACL_T the_acl, int entry_id, SMB_ACL_ENTRY_T *entry_p);
4703+int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p);
4704+int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p);
4705+void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d);
4706+SMB_ACL_T sys_acl_get_file(const char *path_p, SMB_ACL_TYPE_T type);
4707+SMB_ACL_T sys_acl_get_fd(int fd);
4708+int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset);
4709+int sys_acl_add_perm(SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm);
4710+int sys_acl_get_perm(SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm);
4711+char *sys_acl_to_text(SMB_ACL_T the_acl, ssize_t *plen);
4712+SMB_ACL_T sys_acl_init(int count);
4713+int sys_acl_create_entry(SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry);
4714+int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype);
4715+int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry, void *qual);
4716+int sys_acl_set_permset(SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset);
4717+int sys_acl_valid(SMB_ACL_T theacl);
4718+int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl);
4719+int sys_acl_set_fd(int fd, SMB_ACL_T theacl);
4720+int sys_acl_delete_def_file(const char *name);
4721+int sys_acl_free_text(char *text);
4722+int sys_acl_free_acl(SMB_ACL_T the_acl);
4723+int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype);
9a7eef96
WD
4724--- old/mkproto.awk
4725+++ new/mkproto.awk
0f6733d8
WD
4726@@ -58,7 +58,7 @@ BEGIN {
4727 next;
4728 }
4729
bc5988ec
WD
4730-!/^OFF_T|^size_t|^off_t|^pid_t|^unsigned|^mode_t|^DIR|^user|^int|^char|^uint|^uchar|^short|^struct|^BOOL|^void|^time|^const|^RETSIGTYPE/ {
4731+!/^OFF_T|^size_t|^off_t|^pid_t|^id_t|^unsigned|^mode_t|^DIR|^user|^int|^char|^uint|^uchar|^short|^struct|^BOOL|^void|^time|^const|^RETSIGTYPE/ {
0f6733d8
WD
4732 next;
4733 }
4734
9a7eef96
WD
4735--- old/options.c
4736+++ new/options.c
610969d1 4737@@ -44,6 +44,7 @@ int keep_dirlinks = 0;
0f6733d8
WD
4738 int copy_links = 0;
4739 int preserve_links = 0;
4740 int preserve_hard_links = 0;
4741+int preserve_acls = 0;
4742 int preserve_perms = 0;
90fa6d68 4743 int preserve_executability = 0;
0f6733d8 4744 int preserve_devices = 0;
afcb578c 4745@@ -194,6 +195,7 @@ static void print_rsync_version(enum log
0f6733d8
WD
4746 char const *got_socketpair = "no ";
4747 char const *have_inplace = "no ";
4748 char const *hardlinks = "no ";
4749+ char const *acls = "no ";
4750 char const *links = "no ";
4751 char const *ipv6 = "no ";
4752 STRUCT_STAT *dumstat;
afcb578c 4753@@ -210,6 +212,10 @@ static void print_rsync_version(enum log
0f6733d8
WD
4754 hardlinks = "";
4755 #endif
4756
09fb8f03 4757+#ifdef SUPPORT_ACLS
0f6733d8
WD
4758+ acls = "";
4759+#endif
4760+
09fb8f03 4761 #ifdef SUPPORT_LINKS
0f6733d8
WD
4762 links = "";
4763 #endif
afcb578c 4764@@ -223,9 +229,9 @@ static void print_rsync_version(enum log
3b05e91f 4765 rprintf(f, "Copyright (C) 1996-2006 by Andrew Tridgell, Wayne Davison, and others.\n");
0f6733d8
WD
4766 rprintf(f, "<http://rsync.samba.org/>\n");
4767 rprintf(f, "Capabilities: %d-bit files, %ssocketpairs, "
bc5988ec
WD
4768- "%shard links, %ssymlinks, batchfiles,\n",
4769+ "%shard links, %sACLs, %ssymlinks, batchfiles,\n",
0f6733d8
WD
4770 (int) (sizeof (OFF_T) * 8),
4771- got_socketpair, hardlinks, links);
4772+ got_socketpair, hardlinks, acls, links);
4773
4774 /* Note that this field may not have type ino_t. It depends
4775 * on the complicated interaction between largefile feature
afcb578c 4776@@ -294,6 +300,9 @@ void usage(enum logcode F)
be73a66e 4777 rprintf(F," -K, --keep-dirlinks treat symlinked dir on receiver as dir\n");
0f6733d8 4778 rprintf(F," -p, --perms preserve permissions\n");
90fa6d68 4779 rprintf(F," -E, --executability preserve the file's executability\n");
25d385b9 4780+#ifdef SUPPORT_ACLS
0f6733d8 4781+ rprintf(F," -A, --acls preserve ACLs (implies --perms)\n");
25d385b9 4782+#endif
90fa6d68
WD
4783 rprintf(F," --chmod=CHMOD change destination permissions\n");
4784 rprintf(F," -o, --owner preserve owner (super-user only)\n");
0f6733d8 4785 rprintf(F," -g, --group preserve group\n");
02929d4c 4786@@ -409,6 +418,9 @@ static struct poptOption long_options[]
489b0a72
WD
4787 {"no-perms", 0, POPT_ARG_VAL, &preserve_perms, 0, 0, 0 },
4788 {"no-p", 0, POPT_ARG_VAL, &preserve_perms, 0, 0, 0 },
90fa6d68 4789 {"executability", 'E', POPT_ARG_NONE, &preserve_executability, 0, 0, 0 },
489b0a72
WD
4790+ {"acls", 'A', POPT_ARG_NONE, 0, 'A', 0, 0 },
4791+ {"no-acls", 0, POPT_ARG_VAL, &preserve_acls, 0, 0, 0 },
4792+ {"no-A", 0, POPT_ARG_VAL, &preserve_acls, 0, 0, 0 },
4793 {"times", 't', POPT_ARG_VAL, &preserve_times, 1, 0, 0 },
4794 {"no-times", 0, POPT_ARG_VAL, &preserve_times, 0, 0, 0 },
4795 {"no-t", 0, POPT_ARG_VAL, &preserve_times, 0, 0, 0 },
c769ea2c 4796@@ -1063,6 +1075,23 @@ int parse_arguments(int *argc, const cha
3b05e91f
WD
4797 usage(FINFO);
4798 exit_cleanup(0);
0f6733d8
WD
4799
4800+ case 'A':
4df546eb 4801+#ifdef SUPPORT_ACLS
25d385b9 4802+ preserve_acls = preserve_perms = 1;
489b0a72 4803+ break;
0f6733d8
WD
4804+#else
4805+ /* FIXME: this should probably be ignored with a
4806+ * warning and then countermeasures taken to
4807+ * restrict group and other access in the presence
4808+ * of any more restrictive ACLs, but this is safe
4809+ * for now */
4810+ snprintf(err_buf,sizeof(err_buf),
4811+ "ACLs are not supported on this %s\n",
4812+ am_server ? "server" : "client");
4813+ return 0;
25d385b9 4814+#endif
0f6733d8
WD
4815+
4816+
4817 default:
4818 /* A large opt value means that set_refuse_options()
27a7053c 4819 * turned this option off. */
c769ea2c 4820@@ -1503,6 +1532,10 @@ void server_options(char **args,int *arg
c7bc7375 4821
0f6733d8
WD
4822 if (preserve_hard_links)
4823 argstr[x++] = 'H';
25d385b9 4824+#ifdef SUPPORT_ACLS
0f6733d8
WD
4825+ if (preserve_acls)
4826+ argstr[x++] = 'A';
25d385b9 4827+#endif
0f6733d8
WD
4828 if (preserve_uid)
4829 argstr[x++] = 'o';
4830 if (preserve_gid)
9a7eef96
WD
4831--- old/receiver.c
4832+++ new/receiver.c
afcb578c 4833@@ -349,6 +349,10 @@ int recv_files(int f_in, struct file_lis
26c810d8
WD
4834 int itemizing = am_daemon ? daemon_log_format_has_i
4835 : !am_server && log_format_has_i;
4836 int max_phase = protocol_version >= 29 ? 2 : 1;
4837+ int dflt_perms = (ACCESSPERMS & ~orig_umask);
5c8b4e6e 4838+#ifdef SUPPORT_ACLS
26c810d8 4839+ char *parent_dirname = "";
5c8b4e6e 4840+#endif
26c810d8
WD
4841 int i, recv_ok;
4842
4843 if (verbose > 2)
afcb578c 4844@@ -546,7 +550,16 @@ int recv_files(int f_in, struct file_lis
90fa6d68
WD
4845 * mode based on the local permissions and some heuristics. */
4846 if (!preserve_perms) {
4847 int exists = fd1 != -1;
4848- file->mode = dest_mode(file->mode, st.st_mode, exists);
26c810d8 4849+#ifdef SUPPORT_ACLS
5c8b4e6e
WD
4850+ char *dn = file->dirname ? file->dirname : ".";
4851+ if (parent_dirname != dn
4852+ && strcmp(parent_dirname, dn) != 0) {
4853+ dflt_perms = default_perms_for_dir(dn);
4854+ parent_dirname = dn;
26c810d8
WD
4855+ }
4856+#endif
4857+ file->mode = dest_mode(file->mode, st.st_mode,
4858+ dflt_perms, exists);
90fa6d68
WD
4859 }
4860
4861 /* We now check to see if we are writing file "inplace" */
9a7eef96
WD
4862--- old/rsync.c
4863+++ new/rsync.c
c769ea2c 4864@@ -101,7 +101,8 @@ void free_sums(struct sum_struct *s)
90fa6d68
WD
4865
4866 /* This is only called when we aren't preserving permissions. Figure out what
4867 * the permissions should be and return them merged back into the mode. */
02929d4c
WD
4868-mode_t dest_mode(mode_t flist_mode, mode_t cur_mode, int exists)
4869+mode_t dest_mode(mode_t flist_mode, mode_t cur_mode, int dflt_perms,
26c810d8 4870+ int exists)
90fa6d68 4871 {
25d385b9 4872 /* If the file already exists, we'll return the local permissions,
90fa6d68 4873 * possibly tweaked by the --executability option. */
c769ea2c 4874@@ -116,7 +117,7 @@ mode_t dest_mode(mode_t flist_mode, mode
02929d4c 4875 cur_mode |= (cur_mode & 0444) >> 2;
90fa6d68 4876 }
26c810d8 4877 } else
02929d4c
WD
4878- cur_mode = flist_mode & ACCESSPERMS & ~orig_umask;
4879+ cur_mode = (flist_mode & ACCESSPERMS & dflt_perms) | S_IWUSR;
c769ea2c
WD
4880 if (daemon_chmod_modes && !S_ISLNK(flist_mode))
4881 cur_mode = tweak_mode(cur_mode, daemon_chmod_modes);
02929d4c 4882 return (flist_mode & ~CHMOD_BITS) | (cur_mode & CHMOD_BITS);
c769ea2c 4883@@ -217,6 +218,14 @@ int set_file_attrs(char *fname, struct f
0f6733d8
WD
4884 }
4885 #endif
4886
4887+ /* If this is a directory, SET_ACL() will be called on the cleanup
4edb99c8
WD
4888+ * receive_generator() pass (if we called it here, we might clobber
4889+ * writability on the directory). Everything else is OK to do now. */
0f6733d8
WD
4890+ if (!S_ISDIR(st->st_mode)) {
4891+ if (SET_ACL(fname, file) == 0)
4892+ updated = 1;
4893+ }
4894+
90fa6d68 4895 if (verbose > 1 && flags & ATTRS_REPORT) {
1d15f8d9
WD
4896 enum logcode code = daemon_log_format_has_i || dry_run
4897 ? FCLIENT : FINFO;
9a7eef96
WD
4898--- old/rsync.h
4899+++ new/rsync.h
5c8b4e6e 4900@@ -657,6 +657,44 @@ struct chmod_mode_struct;
bc5988ec
WD
4901
4902 #define UNUSED(x) x __attribute__((__unused__))
0f6733d8 4903
4df546eb
WD
4904+#if HAVE_POSIX_ACLS|HAVE_UNIXWARE_ACLS|HAVE_SOLARIS_ACLS|\
4905+ HAVE_HPUX_ACLS|HAVE_IRIX_ACLS|HAVE_AIX_ACLS|HAVE_TRU64_ACLS
4906+#define SUPPORT_ACLS 1
4907+#endif
0f6733d8 4908+
4df546eb
WD
4909+#if HAVE_UNIXWARE_ACLS|HAVE_SOLARIS_ACLS|HAVE_HPUX_ACLS
4910+#define ACLS_NEED_MASK 1
4911+#endif
0f6733d8 4912+
4df546eb
WD
4913+#ifdef SUPPORT_ACLS
4914+#ifdef HAVE_SYS_ACL_H
0f6733d8
WD
4915+#include <sys/acl.h>
4916+#endif
4917+#define MAKE_ACL(file, fname) make_acl(file, fname)
4918+#define SEND_ACL(file, f) send_acl(file, f)
4919+#define RECEIVE_ACL(file, f) receive_acl(file, f)
4920+#define SORT_FILE_ACL_INDEX_LISTS() sort_file_acl_index_lists()
4921+#define SET_ACL(fname, file) set_acl(fname, file)
4922+#define NEXT_ACL_UID() next_acl_uid()
4923+#define ACL_UID_MAP(uid) acl_uid_map(uid)
4924+#define PUSH_KEEP_BACKUP_ACL(file, orig, dest) \
4925+ push_keep_backup_acl(file, orig, dest)
4926+#define CLEANUP_KEEP_BACKUP_ACL() cleanup_keep_backup_acl()
4927+#define DUP_ACL(orig, dest, mode) dup_acl(orig, dest, mode)
4928+#else /* SUPPORT_ACLS */
4929+#define MAKE_ACL(file, fname) 1 /* checked return value */
4930+#define SEND_ACL(file, f)
4931+#define RECEIVE_ACL(file, f)
4932+#define SORT_FILE_ACL_INDEX_LISTS()
05b88206 4933+#define SET_ACL(fname, file) 1 /* checked return value */
0f6733d8
WD
4934+#define NEXT_ACL_UID()
4935+#define ACL_UID_MAP(uid)
4936+#define PUSH_KEEP_BACKUP_ACL(file, orig, dest)
4937+#define CLEANUP_KEEP_BACKUP_ACL()
05b88206 4938+#define DUP_ACL(src, orig, mode) 1 /* checked return value */
0f6733d8
WD
4939+#endif /* SUPPORT_ACLS */
4940+#include "smb_acls.h"
4941+
4942 #include "proto.h"
4943
4944 /* We have replacement versions of these if they're missing. */
9a7eef96
WD
4945--- old/rsync.yo
4946+++ new/rsync.yo
b7e2ec51 4947@@ -319,6 +319,7 @@ to the detailed description below for a
be73a66e 4948 -K, --keep-dirlinks treat symlinked dir on receiver as dir
0f6733d8 4949 -p, --perms preserve permissions
90fa6d68
WD
4950 -E, --executability preserve executability
4951+ -A, --acls preserve ACLs (implies -p) [non-standard]
4952 --chmod=CHMOD change destination permissions
4953 -o, --owner preserve owner (super-user only)
0f6733d8 4954 -g, --group preserve group
b7e2ec51 4955@@ -705,7 +706,9 @@ quote(itemize(
90fa6d68
WD
4956 permissions, though the bf(--executability) option might change just
4957 the execute permission for the file.
03baf100
WD
4958 it() New files get their "normal" permission bits set to the source
4959- file's permissions masked with the receiving end's umask setting, and
4960+ file's permissions masked with the receiving directory's default
4961+ permissions (either the receiving process's umask, or the permissions
4962+ specified via the destination directory's default ACL), and
4963 their special permission bits disabled except in the case where a new
4964 directory inherits a setgid bit from its parent directory.
90fa6d68 4965 ))
b7e2ec51 4966@@ -736,9 +739,11 @@ The preservation of the destination's se
03baf100
WD
4967 directories when bf(--perms) is off was added in rsync 2.6.7. Older rsync
4968 versions erroneously preserved the three special permission bits for
4969 newly-created files when bf(--perms) was off, while overriding the
4970-destination's setgid bit setting on a newly-created directory. (Keep in
4971-mind that it is the version of the receiving rsync that affects this
4972-behavior.)
4973+destination's setgid bit setting on a newly-created directory. Default ACL
4974+observance was added to the ACL patch for rsync 2.6.7, so older (or
4975+non-ACL-enabled) rsyncs use the umask even if default ACLs are present.
4976+(Keep in mind that it is the version of the receiving rsync that affects
4977+these behaviors.)
90fa6d68 4978
90fa6d68
WD
4979 dit(bf(-E, --executability)) This option causes rsync to preserve the
4980 executability (or non-executability) of regular files when bf(--perms) is
b7e2ec51 4981@@ -756,6 +761,10 @@ quote(itemize(
90fa6d68
WD
4982
4983 If bf(--perms) is enabled, this option is ignored.
4984
4985+dit(bf(-A, --acls)) This option causes rsync to update the destination
4986+ACLs to be the same as the source ACLs. This nonstandard option only
4987+works if the remote rsync also supports it. bf(--acls) implies bf(--perms).
4988+
4989 dit(bf(--chmod)) This option tells rsync to apply one or more
4990 comma-separated "chmod" strings to the permission of the files in the
4991 transfer. The resulting value is treated as though it was the permissions
9a7eef96
WD
4992--- old/smb_acls.h
4993+++ new/smb_acls.h
0f6733d8
WD
4994@@ -0,0 +1,277 @@
4995+/*
4996+ Unix SMB/Netbios implementation.
4997+ Version 2.2.x
4998+ Portable SMB ACL interface
4999+ Copyright (C) Jeremy Allison 2000
5000+
5001+ This program is free software; you can redistribute it and/or modify
5002+ it under the terms of the GNU General Public License as published by
5003+ the Free Software Foundation; either version 2 of the License, or
5004+ (at your option) any later version.
5005+
5006+ This program is distributed in the hope that it will be useful,
5007+ but WITHOUT ANY WARRANTY; without even the implied warranty of
5008+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5009+ GNU General Public License for more details.
5010+
5011+ You should have received a copy of the GNU General Public License
5012+ along with this program; if not, write to the Free Software
5013+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
5014+*/
5015+
5016+#ifndef _SMB_ACLS_H
5017+#define _SMB_ACLS_H
5018+
5019+#if defined(HAVE_POSIX_ACLS)
5020+
5021+/* This is an identity mapping (just remove the SMB_). */
5022+
5023+#define SMB_ACL_TAG_T acl_tag_t
5024+#define SMB_ACL_TYPE_T acl_type_t
5025+#define SMB_ACL_PERMSET_T acl_permset_t
5026+#define SMB_ACL_PERM_T acl_perm_t
5027+#define SMB_ACL_READ ACL_READ
5028+#define SMB_ACL_WRITE ACL_WRITE
5029+#define SMB_ACL_EXECUTE ACL_EXECUTE
5030+
5031+/* Types of ACLs. */
5032+#define SMB_ACL_USER ACL_USER
5033+#define SMB_ACL_USER_OBJ ACL_USER_OBJ
5034+#define SMB_ACL_GROUP ACL_GROUP
5035+#define SMB_ACL_GROUP_OBJ ACL_GROUP_OBJ
5036+#define SMB_ACL_OTHER ACL_OTHER
5037+#define SMB_ACL_MASK ACL_MASK
5038+
5039+#define SMB_ACL_T acl_t
5040+
5041+#define SMB_ACL_ENTRY_T acl_entry_t
5042+
5043+#define SMB_ACL_FIRST_ENTRY ACL_FIRST_ENTRY
5044+#define SMB_ACL_NEXT_ENTRY ACL_NEXT_ENTRY
5045+
5046+#define SMB_ACL_TYPE_ACCESS ACL_TYPE_ACCESS
5047+#define SMB_ACL_TYPE_DEFAULT ACL_TYPE_DEFAULT
5048+
5049+#elif defined(HAVE_TRU64_ACLS)
5050+
5051+/* This is for DEC/Compaq Tru64 UNIX */
5052+
5053+#define SMB_ACL_TAG_T acl_tag_t
5054+#define SMB_ACL_TYPE_T acl_type_t
5055+#define SMB_ACL_PERMSET_T acl_permset_t
5056+#define SMB_ACL_PERM_T acl_perm_t
5057+#define SMB_ACL_READ ACL_READ
5058+#define SMB_ACL_WRITE ACL_WRITE
5059+#define SMB_ACL_EXECUTE ACL_EXECUTE
5060+
5061+/* Types of ACLs. */
5062+#define SMB_ACL_USER ACL_USER
5063+#define SMB_ACL_USER_OBJ ACL_USER_OBJ
5064+#define SMB_ACL_GROUP ACL_GROUP
5065+#define SMB_ACL_GROUP_OBJ ACL_GROUP_OBJ
5066+#define SMB_ACL_OTHER ACL_OTHER
5067+#define SMB_ACL_MASK ACL_MASK
5068+
5069+#define SMB_ACL_T acl_t
5070+
5071+#define SMB_ACL_ENTRY_T acl_entry_t
5072+
5073+#define SMB_ACL_FIRST_ENTRY 0
5074+#define SMB_ACL_NEXT_ENTRY 1
5075+
5076+#define SMB_ACL_TYPE_ACCESS ACL_TYPE_ACCESS
5077+#define SMB_ACL_TYPE_DEFAULT ACL_TYPE_DEFAULT
5078+
5079+#elif defined(HAVE_UNIXWARE_ACLS) || defined(HAVE_SOLARIS_ACLS)
5080+/*
5081+ * Donated by Michael Davidson <md@sco.COM> for UnixWare / OpenUNIX.
5082+ * Modified by Toomas Soome <tsoome@ut.ee> for Solaris.
5083+ */
5084+
5085+/* SVR4.2 ES/MP ACLs */
5086+typedef int SMB_ACL_TAG_T;
5087+typedef int SMB_ACL_TYPE_T;
5088+typedef ushort *SMB_ACL_PERMSET_T;
5089+typedef ushort SMB_ACL_PERM_T;
5090+#define SMB_ACL_READ 4
5091+#define SMB_ACL_WRITE 2
5092+#define SMB_ACL_EXECUTE 1
5093+
5094+/* Types of ACLs. */
5095+#define SMB_ACL_USER USER
5096+#define SMB_ACL_USER_OBJ USER_OBJ
5097+#define SMB_ACL_GROUP GROUP
5098+#define SMB_ACL_GROUP_OBJ GROUP_OBJ
5099+#define SMB_ACL_OTHER OTHER_OBJ
5100+#define SMB_ACL_MASK CLASS_OBJ
5101+
5102+typedef struct SMB_ACL_T {
5103+ int size;
5104+ int count;
5105+ int next;
5106+ struct acl acl[1];
5107+} *SMB_ACL_T;
5108+
5109+typedef struct acl *SMB_ACL_ENTRY_T;
5110+
5111+#define SMB_ACL_FIRST_ENTRY 0
5112+#define SMB_ACL_NEXT_ENTRY 1
5113+
5114+#define SMB_ACL_TYPE_ACCESS 0
5115+#define SMB_ACL_TYPE_DEFAULT 1
5116+
5117+#elif defined(HAVE_HPUX_ACLS)
5118+
5119+/*
5120+ * Based on the Solaris & UnixWare code.
5121+ */
5122+
5123+#undef GROUP
5124+#include <sys/aclv.h>
5125+
5126+/* SVR4.2 ES/MP ACLs */
5127+typedef int SMB_ACL_TAG_T;
5128+typedef int SMB_ACL_TYPE_T;
5129+typedef ushort *SMB_ACL_PERMSET_T;
5130+typedef ushort SMB_ACL_PERM_T;
5131+#define SMB_ACL_READ 4
5132+#define SMB_ACL_WRITE 2
5133+#define SMB_ACL_EXECUTE 1
5134+
5135+/* Types of ACLs. */
5136+#define SMB_ACL_USER USER
5137+#define SMB_ACL_USER_OBJ USER_OBJ
5138+#define SMB_ACL_GROUP GROUP
5139+#define SMB_ACL_GROUP_OBJ GROUP_OBJ
5140+#define SMB_ACL_OTHER OTHER_OBJ
5141+#define SMB_ACL_MASK CLASS_OBJ
5142+
5143+typedef struct SMB_ACL_T {
5144+ int size;
5145+ int count;
5146+ int next;
5147+ struct acl acl[1];
5148+} *SMB_ACL_T;
5149+
5150+typedef struct acl *SMB_ACL_ENTRY_T;
5151+
5152+#define SMB_ACL_FIRST_ENTRY 0
5153+#define SMB_ACL_NEXT_ENTRY 1
5154+
5155+#define SMB_ACL_TYPE_ACCESS 0
5156+#define SMB_ACL_TYPE_DEFAULT 1
5157+
5158+#elif defined(HAVE_IRIX_ACLS)
5159+
5160+#define SMB_ACL_TAG_T acl_tag_t
5161+#define SMB_ACL_TYPE_T acl_type_t
5162+#define SMB_ACL_PERMSET_T acl_permset_t
5163+#define SMB_ACL_PERM_T acl_perm_t
5164+#define SMB_ACL_READ ACL_READ
5165+#define SMB_ACL_WRITE ACL_WRITE
5166+#define SMB_ACL_EXECUTE ACL_EXECUTE
5167+
5168+/* Types of ACLs. */
5169+#define SMB_ACL_USER ACL_USER
5170+#define SMB_ACL_USER_OBJ ACL_USER_OBJ
5171+#define SMB_ACL_GROUP ACL_GROUP
5172+#define SMB_ACL_GROUP_OBJ ACL_GROUP_OBJ
5173+#define SMB_ACL_OTHER ACL_OTHER_OBJ
5174+#define SMB_ACL_MASK ACL_MASK
5175+
5176+typedef struct SMB_ACL_T {
5177+ int next;
5178+ BOOL freeaclp;
5179+ struct acl *aclp;
5180+} *SMB_ACL_T;
5181+
5182+#define SMB_ACL_ENTRY_T acl_entry_t
5183+
5184+#define SMB_ACL_FIRST_ENTRY 0
5185+#define SMB_ACL_NEXT_ENTRY 1
5186+
5187+#define SMB_ACL_TYPE_ACCESS ACL_TYPE_ACCESS
5188+#define SMB_ACL_TYPE_DEFAULT ACL_TYPE_DEFAULT
5189+
5190+#elif defined(HAVE_AIX_ACLS)
5191+
5192+/* Donated by Medha Date, mdate@austin.ibm.com, for IBM */
5193+
5194+#include "/usr/include/acl.h"
5195+
5196+typedef uint *SMB_ACL_PERMSET_T;
5197+
5198+struct acl_entry_link{
5199+ struct acl_entry_link *prevp;
5200+ struct new_acl_entry *entryp;
5201+ struct acl_entry_link *nextp;
5202+ int count;
5203+};
5204+
5205+struct new_acl_entry{
5206+ unsigned short ace_len;
5207+ unsigned short ace_type;
5208+ unsigned int ace_access;
5209+ struct ace_id ace_id[1];
5210+};
5211+
5212+#define SMB_ACL_ENTRY_T struct new_acl_entry*
5213+#define SMB_ACL_T struct acl_entry_link*
5214+
5215+#define SMB_ACL_TAG_T unsigned short
5216+#define SMB_ACL_TYPE_T int
5217+#define SMB_ACL_PERM_T uint
5218+#define SMB_ACL_READ S_IRUSR
5219+#define SMB_ACL_WRITE S_IWUSR
5220+#define SMB_ACL_EXECUTE S_IXUSR
5221+
5222+/* Types of ACLs. */
5223+#define SMB_ACL_USER ACEID_USER
5224+#define SMB_ACL_USER_OBJ 3
5225+#define SMB_ACL_GROUP ACEID_GROUP
5226+#define SMB_ACL_GROUP_OBJ 4
5227+#define SMB_ACL_OTHER 5
5228+#define SMB_ACL_MASK 6
5229+
5230+
5231+#define SMB_ACL_FIRST_ENTRY 1
5232+#define SMB_ACL_NEXT_ENTRY 2
5233+
5234+#define SMB_ACL_TYPE_ACCESS 0
5235+#define SMB_ACL_TYPE_DEFAULT 1
5236+
5237+#else /* No ACLs. */
5238+
5239+/* No ACLS - fake it. */
5240+#define SMB_ACL_TAG_T int
5241+#define SMB_ACL_TYPE_T int
5242+#define SMB_ACL_PERMSET_T mode_t
5243+#define SMB_ACL_PERM_T mode_t
5244+#define SMB_ACL_READ S_IRUSR
5245+#define SMB_ACL_WRITE S_IWUSR
5246+#define SMB_ACL_EXECUTE S_IXUSR
5247+
5248+/* Types of ACLs. */
5249+#define SMB_ACL_USER 0
5250+#define SMB_ACL_USER_OBJ 1
5251+#define SMB_ACL_GROUP 2
5252+#define SMB_ACL_GROUP_OBJ 3
5253+#define SMB_ACL_OTHER 4
5254+#define SMB_ACL_MASK 5
5255+
5256+typedef struct SMB_ACL_T {
5257+ int dummy;
5258+} *SMB_ACL_T;
5259+
5260+typedef struct SMB_ACL_ENTRY_T {
5261+ int dummy;
5262+} *SMB_ACL_ENTRY_T;
5263+
5264+#define SMB_ACL_FIRST_ENTRY 0
5265+#define SMB_ACL_NEXT_ENTRY 1
5266+
5267+#define SMB_ACL_TYPE_ACCESS 0
5268+#define SMB_ACL_TYPE_DEFAULT 1
5269+
5270+#endif /* No ACLs. */
5271+#endif /* _SMB_ACLS_H */
9a7eef96
WD
5272--- old/testsuite/default-acls.test
5273+++ new/testsuite/default-acls.test
bb81ee98 5274@@ -0,0 +1,55 @@
90fa6d68
WD
5275+#! /bin/sh
5276+
5277+# This program is distributable under the terms of the GNU GPL see
5278+# COPYING).
5279+
5280+# Test that rsync obeys default ACLs. -- Matt McCutchen
5281+
5282+. $srcdir/testsuite/rsync.fns
5283+
25d385b9 5284+$RSYNC --version | grep ", ACLs" >/dev/null || test_skipped "Rsync is configured without ACL support"
90fa6d68
WD
5285+setfacl -dm u::rwx,g::---,o::--- "$scratchdir" || test_skipped "Your filesystem has ACLs disabled"
5286+
90fa6d68 5287+# Call as: testit <dirname> <default-acl> <file-expected> <program-expected>
25d385b9 5288+testit() {
90fa6d68
WD
5289+ todir="$scratchdir/$1"
5290+ mkdir "$todir"
25d385b9 5291+ # FIXME This doesn't work on solaris...
90fa6d68 5292+ setfacl -k "$todir"
90fa6d68
WD
5293+ [ "$2" ] && setfacl -dm "$2" "$todir"
5294+ # Make sure we obey ACLs when creating a directory to hold multiple transferred files,
5295+ # even though the directory itself is outside the transfer
25d385b9 5296+ $RSYNC -rvv "$scratchdir/dir" "$scratchdir/file" "$scratchdir/program" "$todir/to/"
0251480d 5297+ check_perms "$todir/to" $4 "Target $1"
25d385b9 5298+ check_perms "$todir/to/dir" $4 "Target $1"
0251480d
WD
5299+ check_perms "$todir/to/file" $3 "Target $1"
5300+ check_perms "$todir/to/program" $4 "Target $1"
90fa6d68
WD
5301+ # Make sure get_local_name doesn't mess us up when transferring only one file
5302+ $RSYNC -rvv "$scratchdir/file" "$todir/to/anotherfile"
0251480d 5303+ check_perms "$todir/to/anotherfile" $3 "Target $1"
bb81ee98
WD
5304+ # Make sure we obey default ACLs when not transferring a regular file
5305+ $RSYNC -rvv "$scratchdir/dir" "$todir/to/anotherdir"
5306+ check_perms "$todir/to/anotherdir" $4 "Target $1"
90fa6d68
WD
5307+}
5308+
25d385b9 5309+mkdir "$scratchdir/dir"
0251480d 5310+echo "File!" >"$scratchdir/file"
25d385b9
WD
5311+echo "#!/bin/sh" >"$scratchdir/program"
5312+chmod 777 "$scratchdir/dir"
0251480d
WD
5313+chmod 666 "$scratchdir/file"
5314+chmod 777 "$scratchdir/program"
5315+
90fa6d68
WD
5316+# Test some target directories
5317+umask 0077
0251480d
WD
5318+testit da777 u::rwx,g::rwx,o::rwx rw-rw-rw- rwxrwxrwx
5319+testit da775 u::rwx,g::rwx,o::r-x rw-rw-r-- rwxrwxr-x
5320+testit da750 u::rwx,g::r-x,o::--- rw-r----- rwxr-x---
5321+testit da770mask u::rwx,g::---,m::rwx,o::--- rw-rw---- rwxrwx---
5322+testit noda1 '' rw------- rwx------
90fa6d68 5323+umask 0000
0251480d 5324+testit noda2 '' rw-rw-rw- rwxrwxrwx
90fa6d68 5325+umask 0022
0251480d 5326+testit noda3 '' rw-r--r-- rwxr-xr-x
90fa6d68
WD
5327+
5328+# Hooray
5329+exit 0
9a7eef96
WD
5330--- old/uidlist.c
5331+++ new/uidlist.c
fa26e11c
WD
5332@@ -34,6 +34,7 @@
5333 extern int verbose;
5334 extern int preserve_uid;
5335 extern int preserve_gid;
5336+extern int preserve_acls;
5337 extern int numeric_ids;
5338 extern int am_root;
5339
5340@@ -274,7 +275,7 @@ void send_uid_list(int f)
5341 if (numeric_ids)
5342 return;
5343
5344- if (preserve_uid) {
5345+ if (preserve_uid || preserve_acls) {
5346 int len;
5347 /* we send sequences of uid/byte-length/name */
5348 for (list = uidlist; list; list = list->next) {
5349@@ -291,7 +292,7 @@ void send_uid_list(int f)
5350 write_int(f, 0);
5351 }
5352
5353- if (preserve_gid) {
5354+ if (preserve_gid || preserve_acls) {
5355 int len;
5356 for (list = gidlist; list; list = list->next) {
5357 if (!list->name)
5358@@ -312,7 +313,7 @@ void recv_uid_list(int f, struct file_li
5359 int id, i;
5360 char *name;
5361
5362- if (preserve_uid && !numeric_ids) {
5363+ if ((preserve_uid || preserve_acls) && !numeric_ids) {
5364 /* read the uid list */
5365 while ((id = read_int(f)) != 0) {
5366 int len = read_byte(f);
6849cd84
WD
5367@@ -324,7 +325,7 @@ void recv_uid_list(int f, struct file_li
5368 }
fa26e11c
WD
5369 }
5370
fa26e11c
WD
5371- if (preserve_gid && !numeric_ids) {
5372+ if ((preserve_gid || preserve_acls) && !numeric_ids) {
5373 /* read the gid list */
5374 while ((id = read_int(f)) != 0) {
5375 int len = read_byte(f);
6849cd84 5376@@ -336,6 +337,18 @@ void recv_uid_list(int f, struct file_li
fa26e11c
WD
5377 }
5378 }
125d7fca 5379
4edb99c8 5380+#ifdef SUPPORT_ACLS
fa26e11c
WD
5381+ if (preserve_acls && !numeric_ids) {
5382+ id_t id;
4edb99c8
WD
5383+ /* The enumerations don't return 0 except to flag the last
5384+ * entry, since uidlist doesn't munge 0 anyway. */
5385+ while ((id = next_acl_uid(flist)) != 0)
fa26e11c 5386+ acl_uid_map(match_uid(id));
4edb99c8 5387+ while ((id = next_acl_gid(flist)) != 0)
fa26e11c
WD
5388+ acl_gid_map(match_gid(id));
5389+ }
5390+#endif /* SUPPORT_ACLS */
125d7fca 5391+
90fa6d68 5392 /* Now convert all the uids/gids from sender values to our values. */
125d7fca 5393 if (am_root && preserve_uid && !numeric_ids) {
90fa6d68 5394 for (i = 0; i < flist->count; i++)