Fixed failing hunks.
[rsync/rsync-patches.git] / acls.diff
1 To use this patch, run these commands for a successful build:
2
3     patch -p1 <patches/acls.diff
4     ./prepare-source
5     ./configure --enable-acl-support
6     make
7
8 See the --acls (-A) option in the revised man page for a note on using this
9 latest ACL-enabling patch to send files to an older ACL-enabled rsync.
10
11 --- old/Makefile.in
12 +++ new/Makefile.in
13 @@ -26,15 +26,15 @@ VERSION=@VERSION@
14  .SUFFIXES:
15  .SUFFIXES: .c .o
16  
17 -HEADERS=byteorder.h config.h errcode.h proto.h rsync.h lib/pool_alloc.h
18 +HEADERS=byteorder.h config.h errcode.h proto.h rsync.h smb_acls.h lib/pool_alloc.h
19  LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o \
20 -       lib/permstring.o lib/pool_alloc.o @LIBOBJS@
21 +       lib/permstring.o lib/pool_alloc.o lib/sysacls.o @LIBOBJS@
22  ZLIBOBJ=zlib/deflate.o zlib/inffast.o zlib/inflate.o zlib/inftrees.o \
23         zlib/trees.o zlib/zutil.o zlib/adler32.o zlib/compress.o zlib/crc32.o
24  OBJS1=rsync.o generator.o receiver.o cleanup.o sender.o exclude.o util.o \
25         main.o checksum.o match.o syscall.o log.o backup.o
26  OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o \
27 -       fileio.o batch.o clientname.o chmod.o
28 +       fileio.o batch.o clientname.o chmod.o acls.o
29  OBJS3=progress.o pipe.o
30  DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
31  popt_OBJS=popt/findme.o  popt/popt.o  popt/poptconfig.o \
32 --- old/acls.c
33 +++ new/acls.c
34 @@ -0,0 +1,1096 @@
35 +/*
36 + * Handle passing Access Control Lists between systems.
37 + *
38 + * Copyright (C) 1996 Andrew Tridgell
39 + * Copyright (C) 1996 Paul Mackerras
40 + * Copyright (C) 2006 Wayne Davison
41 + *
42 + * This program is free software; you can redistribute it and/or modify
43 + * it under the terms of the GNU General Public License as published by
44 + * the Free Software Foundation; either version 2 of the License, or
45 + * (at your option) any later version.
46 + *
47 + * This program is distributed in the hope that it will be useful,
48 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
49 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
50 + * GNU General Public License for more details.
51 + *
52 + * You should have received a copy of the GNU General Public License along
53 + * with this program; if not, write to the Free Software Foundation, Inc.,
54 + * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
55 + */
56 +
57 +#include "rsync.h"
58 +#include "lib/sysacls.h"
59 +
60 +#ifdef SUPPORT_ACLS
61 +
62 +extern int dry_run;
63 +extern int read_only;
64 +extern int list_only;
65 +extern int orig_umask;
66 +extern int preserve_acls;
67 +extern int flist_extra_ndx;
68 +extern unsigned int file_struct_len;
69 +
70 +/* === ACL structures === */
71 +
72 +typedef struct {
73 +       id_t id;
74 +       uchar access;
75 +} id_access;
76 +
77 +typedef struct {
78 +       id_access *idas;
79 +       int count;
80 +} ida_entries;
81 +
82 +#define NO_ENTRY ((uchar)0x80)
83 +typedef struct rsync_acl {
84 +       ida_entries users;
85 +       ida_entries groups;
86 +       /* These will be NO_ENTRY if there's no such entry. */
87 +       uchar user_obj;
88 +       uchar group_obj;
89 +       uchar mask;
90 +       uchar other;
91 +} rsync_acl;
92 +
93 +typedef struct {
94 +       rsync_acl racl;
95 +       SMB_ACL_T sacl;
96 +} acl_duo;
97 +
98 +static const rsync_acl empty_rsync_acl = {
99 +       {NULL, 0}, {NULL, 0}, NO_ENTRY, NO_ENTRY, NO_ENTRY, NO_ENTRY
100 +};
101 +
102 +static item_list access_acl_list = EMPTY_ITEM_LIST;
103 +static item_list default_acl_list = EMPTY_ITEM_LIST;
104 +
105 +/* === Calculations on ACL types === */
106 +
107 +static const char *str_acl_type(SMB_ACL_TYPE_T type)
108 +{
109 +       return type == SMB_ACL_TYPE_ACCESS ? "SMB_ACL_TYPE_ACCESS"
110 +            : type == SMB_ACL_TYPE_DEFAULT ? "SMB_ACL_TYPE_DEFAULT"
111 +            : "unknown SMB_ACL_TYPE_T";
112 +}
113 +
114 +#define OTHER_TYPE(t) (SMB_ACL_TYPE_ACCESS+SMB_ACL_TYPE_DEFAULT-(t))
115 +#define BUMP_TYPE(t) ((t = OTHER_TYPE(t)) == SMB_ACL_TYPE_DEFAULT)
116 +
117 +static int count_racl_entries(const rsync_acl *racl)
118 +{
119 +       return racl->users.count + racl->groups.count
120 +            + (racl->user_obj != NO_ENTRY)
121 +            + (racl->group_obj != NO_ENTRY)
122 +            + (racl->mask != NO_ENTRY)
123 +            + (racl->other != NO_ENTRY);
124 +}
125 +
126 +static int calc_sacl_entries(const rsync_acl *racl)
127 +{
128 +       /* A System ACL always gets user/group/other permission entries. */
129 +       return racl->users.count + racl->groups.count
130 +#ifdef ACLS_NEED_MASK
131 +            + 4;
132 +#else
133 +            + (racl->mask != NO_ENTRY) + 3;
134 +#endif
135 +}
136 +
137 +/* Extracts and returns the permission bits from the ACL.  This cannot be
138 + * called on an rsync_acl that has NO_ENTRY in any spot but the mask. */
139 +static int rsync_acl_get_perms(const rsync_acl *racl)
140 +{
141 +       return (racl->user_obj << 6)
142 +            + ((racl->mask != NO_ENTRY ? racl->mask : racl->group_obj) << 3)
143 +            + racl->other;
144 +}
145 +
146 +/* Removes the permission-bit entries from the ACL because these
147 + * can be reconstructed from the file's mode. */
148 +static void rsync_acl_strip_perms(rsync_acl *racl)
149 +{
150 +       racl->user_obj = NO_ENTRY;
151 +       if (racl->mask == NO_ENTRY)
152 +               racl->group_obj = NO_ENTRY;
153 +       else {
154 +               if (racl->group_obj == racl->mask)
155 +                       racl->group_obj = NO_ENTRY;
156 +               racl->mask = NO_ENTRY;
157 +       }
158 +       racl->other = NO_ENTRY;
159 +}
160 +
161 +/* Given an empty rsync_acl, fake up the permission bits. */
162 +static void rsync_acl_fake_perms(rsync_acl *racl, mode_t mode)
163 +{
164 +       racl->user_obj = (mode >> 6) & 7;
165 +       racl->group_obj = (mode >> 3) & 7;
166 +       racl->other = mode & 7;
167 +}
168 +
169 +/* === Rsync ACL functions === */
170 +
171 +static BOOL ida_entries_equal(const ida_entries *ial1, const ida_entries *ial2)
172 +{
173 +       id_access *ida1, *ida2;
174 +       int count = ial1->count;
175 +       if (count != ial2->count)
176 +               return False;
177 +       ida1 = ial1->idas;
178 +       ida2 = ial2->idas;
179 +       for (; count--; ida1++, ida2++) {
180 +               if (ida1->access != ida2->access || ida1->id != ida2->id)
181 +                       return False;
182 +       }
183 +       return True;
184 +}
185 +
186 +static BOOL rsync_acl_equal(const rsync_acl *racl1, const rsync_acl *racl2)
187 +{
188 +       return racl1->user_obj == racl2->user_obj
189 +           && racl1->group_obj == racl2->group_obj
190 +           && racl1->mask == racl2->mask
191 +           && racl1->other == racl2->other
192 +           && ida_entries_equal(&racl1->users, &racl2->users)
193 +           && ida_entries_equal(&racl1->groups, &racl2->groups);
194 +}
195 +
196 +/* Are the extended (non-permission-bit) entries equal?  If so, the rest of
197 + * the ACL will be handled by the normal mode-preservation code.  This is
198 + * only meaningful for access ACLs!  Note: the 1st arg is a fully-populated
199 + * rsync_acl, but the 2nd parameter can be a condensed rsync_acl, which means
200 + * that it might have several of its permission objects set to NO_ENTRY. */
201 +static BOOL rsync_acl_equal_enough(const rsync_acl *racl1,
202 +                                  const rsync_acl *racl2, mode_t m)
203 +{
204 +       if ((racl1->mask ^ racl2->mask) & NO_ENTRY)
205 +               return False; /* One has a mask and the other doesn't */
206 +
207 +       /* When there's a mask, the group_obj becomes an extended entry. */
208 +       if (racl1->mask != NO_ENTRY) {
209 +               /* A condensed rsync_acl with a mask can only have no
210 +                * group_obj when it was identical to the mask.  This
211 +                * means that it was also identical to the group attrs
212 +                * from the mode. */
213 +               if (racl2->group_obj == NO_ENTRY) {
214 +                       if (racl1->group_obj != ((m >> 3) & 7))
215 +                               return False;
216 +               } else if (racl1->group_obj != racl2->group_obj)
217 +                       return False;
218 +       }
219 +       return ida_entries_equal(&racl1->users, &racl2->users)
220 +           && ida_entries_equal(&racl1->groups, &racl2->groups);
221 +}
222 +
223 +static void rsync_acl_free(rsync_acl *racl)
224 +{
225 +       if (racl->users.idas)
226 +               free(racl->users.idas);
227 +       if (racl->groups.idas)
228 +               free(racl->groups.idas);
229 +       *racl = empty_rsync_acl;
230 +}
231 +
232 +void free_acl(statx *sxp)
233 +{
234 +       if (sxp->acc_acl) {
235 +               rsync_acl_free(sxp->acc_acl);
236 +               free(sxp->acc_acl);
237 +               sxp->acc_acl = NULL;
238 +       }
239 +       if (sxp->def_acl) {
240 +               rsync_acl_free(sxp->def_acl);
241 +               free(sxp->def_acl);
242 +               sxp->def_acl = NULL;
243 +       }
244 +}
245 +
246 +static int id_access_sorter(const void *r1, const void *r2)
247 +{
248 +       id_access *ida1 = (id_access *)r1;
249 +       id_access *ida2 = (id_access *)r2;
250 +       id_t rid1 = ida1->id, rid2 = ida2->id;
251 +       return rid1 == rid2 ? 0 : rid1 < rid2 ? -1 : 1;
252 +}
253 +
254 +static void sort_ida_entries(ida_entries *idal)
255 +{
256 +       if (!idal->count)
257 +               return;
258 +       qsort(idal->idas, idal->count, sizeof idal->idas[0], id_access_sorter);
259 +}
260 +
261 +/* Transfer the count id_access items out of the temp_ida_list into either
262 + * the users or groups ida_entries list in racl. */
263 +static void save_idas(item_list *temp_ida_list, rsync_acl *racl, SMB_ACL_TAG_T type)
264 +{
265 +       id_access *idas;
266 +       ida_entries *ent;
267 +
268 +       if (temp_ida_list->count) {
269 +               int cnt = temp_ida_list->count;
270 +               id_access *temp_idas = temp_ida_list->items;
271 +               if (!(idas = new_array(id_access, cnt)))
272 +                       out_of_memory("save_idas");
273 +               memcpy(idas, temp_idas, cnt * sizeof *temp_idas);
274 +       } else
275 +               idas = NULL;
276 +
277 +       ent = type == SMB_ACL_USER ? &racl->users : &racl->groups;
278 +
279 +       if (ent->count) {
280 +               rprintf(FERROR, "save_idas: disjoint list found for type %d\n", type);
281 +               exit_cleanup(RERR_UNSUPPORTED);
282 +       }
283 +       ent->count = temp_ida_list->count;
284 +       ent->idas = idas;
285 +
286 +       /* Truncate the temporary list now that its idas have been saved. */
287 +       temp_ida_list->count = 0;
288 +}
289 +
290 +/* === System ACLs === */
291 +
292 +/* Unpack system ACL -> rsync ACL verbatim.  Return whether we succeeded. */
293 +static BOOL unpack_smb_acl(rsync_acl *racl, SMB_ACL_T sacl)
294 +{
295 +       static item_list temp_ida_list = EMPTY_ITEM_LIST;
296 +       SMB_ACL_TAG_T prior_list_type = 0;
297 +       SMB_ACL_ENTRY_T entry;
298 +       const char *errfun;
299 +       int rc;
300 +
301 +       errfun = "sys_acl_get_entry";
302 +       for (rc = sys_acl_get_entry(sacl, SMB_ACL_FIRST_ENTRY, &entry);
303 +            rc == 1;
304 +            rc = sys_acl_get_entry(sacl, SMB_ACL_NEXT_ENTRY, &entry)) {
305 +               SMB_ACL_TAG_T tag_type;
306 +               SMB_ACL_PERMSET_T permset;
307 +               uchar access;
308 +               void *qualifier;
309 +               id_access *ida;
310 +               if ((rc = sys_acl_get_tag_type(entry, &tag_type))) {
311 +                       errfun = "sys_acl_get_tag_type";
312 +                       break;
313 +               }
314 +               if ((rc = sys_acl_get_permset(entry, &permset))) {
315 +                       errfun = "sys_acl_get_tag_type";
316 +                       break;
317 +               }
318 +               access = (sys_acl_get_perm(permset, SMB_ACL_READ) ? 4 : 0)
319 +                      | (sys_acl_get_perm(permset, SMB_ACL_WRITE) ? 2 : 0)
320 +                      | (sys_acl_get_perm(permset, SMB_ACL_EXECUTE) ? 1 : 0);
321 +               /* continue == done with entry; break == store in temporary ida list */
322 +               switch (tag_type) {
323 +               case SMB_ACL_USER_OBJ:
324 +                       if (racl->user_obj == NO_ENTRY)
325 +                               racl->user_obj = access;
326 +                       else
327 +                               rprintf(FINFO, "unpack_smb_acl: warning: duplicate USER_OBJ entry ignored\n");
328 +                       continue;
329 +               case SMB_ACL_USER:
330 +                       break;
331 +               case SMB_ACL_GROUP_OBJ:
332 +                       if (racl->group_obj == NO_ENTRY)
333 +                               racl->group_obj = access;
334 +                       else
335 +                               rprintf(FINFO, "unpack_smb_acl: warning: duplicate GROUP_OBJ entry ignored\n");
336 +                       continue;
337 +               case SMB_ACL_GROUP:
338 +                       break;
339 +               case SMB_ACL_MASK:
340 +                       if (racl->mask == NO_ENTRY)
341 +                               racl->mask = access;
342 +                       else
343 +                               rprintf(FINFO, "unpack_smb_acl: warning: duplicate MASK entry ignored\n");
344 +                       continue;
345 +               case SMB_ACL_OTHER:
346 +                       if (racl->other == NO_ENTRY)
347 +                               racl->other = access;
348 +                       else
349 +                               rprintf(FINFO, "unpack_smb_acl: warning: duplicate OTHER entry ignored\n");
350 +                       continue;
351 +               default:
352 +                       rprintf(FINFO, "unpack_smb_acl: warning: entry with unrecognized tag type ignored\n");
353 +                       continue;
354 +               }
355 +               if (!(qualifier = sys_acl_get_qualifier(entry))) {
356 +                       errfun = "sys_acl_get_tag_type";
357 +                       rc = EINVAL;
358 +                       break;
359 +               }
360 +               if (tag_type != prior_list_type) {
361 +                       if (prior_list_type)
362 +                               save_idas(&temp_ida_list, racl, prior_list_type);
363 +                       prior_list_type = tag_type;
364 +               }
365 +               ida = EXPAND_ITEM_LIST(&temp_ida_list, id_access, -10);
366 +               ida->id = *((id_t *)qualifier);
367 +               ida->access = access;
368 +               sys_acl_free_qualifier(qualifier, tag_type);
369 +       }
370 +       if (rc) {
371 +               rsyserr(FERROR, errno, "unpack_smb_acl: %s()", errfun);
372 +               rsync_acl_free(racl);
373 +               return False;
374 +       }
375 +       if (prior_list_type)
376 +               save_idas(&temp_ida_list, racl, prior_list_type);
377 +
378 +       sort_ida_entries(&racl->users);
379 +       sort_ida_entries(&racl->groups);
380 +
381 +#ifdef ACLS_NEED_MASK
382 +       if (!racl->users.count && !racl->groups.count && racl->mask != NO_ENTRY) {
383 +               /* Throw away a superfluous mask, but mask off the
384 +                * group perms with it first. */
385 +               racl->group_obj &= racl->mask;
386 +               racl->mask = NO_ENTRY;
387 +       }
388 +#endif
389 +
390 +       return True;
391 +}
392 +
393 +/* Synactic sugar for system calls */
394 +
395 +#define CALL_OR_ERROR(func,args,str) \
396 +       do { \
397 +               if (func args) { \
398 +                       errfun = str; \
399 +                       goto error_exit; \
400 +               } \
401 +       } while (0)
402 +
403 +#define COE(func,args) CALL_OR_ERROR(func,args,#func)
404 +#define COE2(func,args) CALL_OR_ERROR(func,args,NULL)
405 +
406 +/* Store the permissions in the system ACL entry. */
407 +static int store_access_in_entry(uchar access, SMB_ACL_ENTRY_T entry)
408 +{
409 +       const char *errfun = NULL;
410 +       SMB_ACL_PERMSET_T permset;
411 +
412 +       COE( sys_acl_get_permset,(entry, &permset) );
413 +       COE( sys_acl_clear_perms,(permset) );
414 +       if (access & 4)
415 +               COE( sys_acl_add_perm,(permset, SMB_ACL_READ) );
416 +       if (access & 2)
417 +               COE( sys_acl_add_perm,(permset, SMB_ACL_WRITE) );
418 +       if (access & 1)
419 +               COE( sys_acl_add_perm,(permset, SMB_ACL_EXECUTE) );
420 +       COE( sys_acl_set_permset,(entry, permset) );
421 +
422 +       return 0;
423 +
424 +  error_exit:
425 +       rsyserr(FERROR, errno, "store_access_in_entry %s()", errfun);
426 +       return -1;
427 +}
428 +
429 +/* Pack rsync ACL -> system ACL verbatim.  Return whether we succeeded. */
430 +static BOOL pack_smb_acl(SMB_ACL_T *smb_acl, const rsync_acl *racl)
431 +{
432 +#ifdef ACLS_NEED_MASK
433 +       uchar mask_bits;
434 +#endif
435 +       size_t count;
436 +       id_access *ida;
437 +       const char *errfun = NULL;
438 +       SMB_ACL_ENTRY_T entry;
439 +
440 +       if (!(*smb_acl = sys_acl_init(calc_sacl_entries(racl)))) {
441 +               rsyserr(FERROR, errno, "pack_smb_acl: sys_acl_init()");
442 +               return False;
443 +       }
444 +
445 +       COE( sys_acl_create_entry,(smb_acl, &entry) );
446 +       COE( sys_acl_set_tag_type,(entry, SMB_ACL_USER_OBJ) );
447 +       COE2( store_access_in_entry,(racl->user_obj & 7, entry) );
448 +
449 +       for (ida = racl->users.idas, count = racl->users.count; count--; ida++) {
450 +               COE( sys_acl_create_entry,(smb_acl, &entry) );
451 +               COE( sys_acl_set_tag_type,(entry, SMB_ACL_USER) );
452 +               COE( sys_acl_set_qualifier,(entry, (void*)&ida->id) );
453 +               COE2( store_access_in_entry,(ida->access, entry) );
454 +       }
455 +
456 +       COE( sys_acl_create_entry,(smb_acl, &entry) );
457 +       COE( sys_acl_set_tag_type,(entry, SMB_ACL_GROUP_OBJ) );
458 +       COE2( store_access_in_entry,(racl->group_obj & 7, entry) );
459 +
460 +       for (ida = racl->groups.idas, count = racl->groups.count; count--; ida++) {
461 +               COE( sys_acl_create_entry,(smb_acl, &entry) );
462 +               COE( sys_acl_set_tag_type,(entry, SMB_ACL_GROUP) );
463 +               COE( sys_acl_set_qualifier,(entry, (void*)&ida->id) );
464 +               COE2( store_access_in_entry,(ida->access, entry) );
465 +       }
466 +
467 +#ifdef ACLS_NEED_MASK
468 +       mask_bits = racl->mask == NO_ENTRY ? racl->group_obj & 7 : racl->mask;
469 +       COE( sys_acl_create_entry,(smb_acl, &entry) );
470 +       COE( sys_acl_set_tag_type,(entry, SMB_ACL_MASK) );
471 +       COE2( store_access_in_entry,(mask_bits, entry) );
472 +#else
473 +       if (racl->mask != NO_ENTRY) {
474 +               COE( sys_acl_create_entry,(smb_acl, &entry) );
475 +               COE( sys_acl_set_tag_type,(entry, SMB_ACL_MASK) );
476 +               COE2( store_access_in_entry,(racl->mask, entry) );
477 +       }
478 +#endif
479 +
480 +       COE( sys_acl_create_entry,(smb_acl, &entry) );
481 +       COE( sys_acl_set_tag_type,(entry, SMB_ACL_OTHER) );
482 +       COE2( store_access_in_entry,(racl->other & 7, entry) );
483 +
484 +#ifdef DEBUG
485 +       if (sys_acl_valid(*smb_acl) < 0)
486 +               rprintf(FERROR, "pack_smb_acl: warning: system says the ACL I packed is invalid\n");
487 +#endif
488 +
489 +       return True;
490 +
491 +  error_exit:
492 +       if (errfun) {
493 +               rsyserr(FERROR, errno, "pack_smb_acl %s()", errfun);
494 +       }
495 +       sys_acl_free_acl(*smb_acl);
496 +       return False;
497 +}
498 +
499 +static int find_matching_rsync_acl(SMB_ACL_TYPE_T type,
500 +                                  const item_list *racl_list,
501 +                                  const rsync_acl *racl)
502 +{
503 +       static int access_match = -1, default_match = -1;
504 +       int *match = type == SMB_ACL_TYPE_ACCESS ? &access_match : &default_match;
505 +       size_t count = racl_list->count;
506 +
507 +       /* If this is the first time through or we didn't match the last
508 +        * time, then start at the end of the list, which should be the
509 +        * best place to start hunting. */
510 +       if (*match == -1)
511 +               *match = racl_list->count - 1;
512 +       while (count--) {
513 +               rsync_acl *base = racl_list->items;
514 +               if (rsync_acl_equal(base + *match, racl))
515 +                       return *match;
516 +               if (!(*match)--)
517 +                       *match = racl_list->count - 1;
518 +       }
519 +
520 +       *match = -1;
521 +       return *match;
522 +}
523 +
524 +/* Return the Access Control List for the given filename. */
525 +int get_acl(const char *fname, statx *sxp)
526 +{
527 +       SMB_ACL_TYPE_T type;
528 +
529 +       if (S_ISLNK(sxp->st.st_mode))
530 +               return 0;
531 +
532 +       type = SMB_ACL_TYPE_ACCESS;
533 +       do {
534 +               SMB_ACL_T sacl = sys_acl_get_file(fname, type);
535 +               rsync_acl *racl = new(rsync_acl);
536 +
537 +               if (!racl)
538 +                       out_of_memory("get_acl");
539 +               *racl = empty_rsync_acl;
540 +               if (type == SMB_ACL_TYPE_ACCESS)
541 +                       sxp->acc_acl = racl;
542 +               else
543 +                       sxp->def_acl = racl;
544 +
545 +               if (sacl) {
546 +                       BOOL ok = unpack_smb_acl(racl, sacl);
547 +
548 +                       sys_acl_free_acl(sacl);
549 +                       if (!ok) {
550 +                               free_acl(sxp);
551 +                               return -1;
552 +                       }
553 +               } else if (errno == ENOTSUP || errno == ENOSYS) {
554 +                       /* ACLs are not supported, so pretend we have a basic ACL. */
555 +                       if (type == SMB_ACL_TYPE_ACCESS)
556 +                               rsync_acl_fake_perms(racl, sxp->st.st_mode);
557 +               } else {
558 +                       rsyserr(FERROR, errno, "get_acl: sys_acl_get_file(%s, %s)",
559 +                               fname, str_acl_type(type));
560 +                       free_acl(sxp);
561 +                       return -1;
562 +               }
563 +       } while (BUMP_TYPE(type) && S_ISDIR(sxp->st.st_mode));
564 +
565 +       return 0;
566 +}
567 +
568 +/* === Send functions === */
569 +
570 +/* The general strategy with the tag_type <-> character mapping is that
571 + * lowercase implies that no qualifier follows, where uppercase does.
572 + * A similar idiom for the ACL type (access or default) itself, but
573 + * lowercase in this instance means there's no ACL following, so the
574 + * ACL is a repeat, so the receiver should reuse the last of the same
575 + * type ACL. */
576 +
577 +/* Send the ida list over the file descriptor. */
578 +static void send_ida_entries(int f, const ida_entries *idal, char tag_char)
579 +{
580 +       id_access *ida;
581 +       size_t count = idal->count;
582 +       for (ida = idal->idas; count--; ida++) {
583 +               write_byte(f, tag_char);
584 +               write_byte(f, ida->access);
585 +               write_int(f, ida->id);
586 +               /* FIXME: sorta wasteful: we should maybe buffer as
587 +                * many ids as max(ACL_USER + ACL_GROUP) objects to
588 +                * keep from making so many calls. */
589 +               if (tag_char == 'U')
590 +                       add_uid(ida->id);
591 +               else
592 +                       add_gid(ida->id);
593 +       }
594 +}
595 +
596 +/* Send an rsync ACL over the file descriptor. */
597 +static void send_rsync_acl(int f, const rsync_acl *racl)
598 +{
599 +       size_t count = count_racl_entries(racl);
600 +       write_int(f, count);
601 +       if (racl->user_obj != NO_ENTRY) {
602 +               write_byte(f, 'u');
603 +               write_byte(f, racl->user_obj);
604 +       }
605 +       send_ida_entries(f, &racl->users, 'U');
606 +       if (racl->group_obj != NO_ENTRY) {
607 +               write_byte(f, 'g');
608 +               write_byte(f, racl->group_obj);
609 +       }
610 +       send_ida_entries(f, &racl->groups, 'G');
611 +       if (racl->mask != NO_ENTRY) {
612 +               write_byte(f, 'm');
613 +               write_byte(f, racl->mask);
614 +       }
615 +       if (racl->other != NO_ENTRY) {
616 +               write_byte(f, 'o');
617 +               write_byte(f, racl->other);
618 +       }
619 +}
620 +
621 +/* Send the ACL from the statx structure down the indicated file descriptor.
622 + * This also frees the ACL data. */
623 +void send_acl(statx *sxp, int f)
624 +{
625 +       SMB_ACL_TYPE_T type;
626 +       rsync_acl *racl, *new_racl;
627 +       item_list *racl_list;
628 +       int ndx;
629 +
630 +       if (S_ISLNK(sxp->st.st_mode))
631 +               return;
632 +
633 +       type = SMB_ACL_TYPE_ACCESS;
634 +       racl = sxp->acc_acl;
635 +       racl_list = &access_acl_list;
636 +       do {
637 +               if (!racl) {
638 +                       racl = new(rsync_acl);
639 +                       if (!racl)
640 +                               out_of_memory("send_acl");
641 +                       *racl = empty_rsync_acl;
642 +                       if (type == SMB_ACL_TYPE_ACCESS) {
643 +                               rsync_acl_fake_perms(racl, sxp->st.st_mode);
644 +                               sxp->acc_acl = racl;
645 +                       } else
646 +                               sxp->def_acl = racl;
647 +               }
648 +
649 +               /* Avoid sending values that can be inferred from other data. */
650 +               if (type == SMB_ACL_TYPE_ACCESS)
651 +                       rsync_acl_strip_perms(racl);
652 +               if ((ndx = find_matching_rsync_acl(type, racl_list, racl)) != -1) {
653 +                       write_byte(f, type == SMB_ACL_TYPE_ACCESS ? 'a' : 'd');
654 +                       write_int(f, ndx);
655 +               } else {
656 +                       new_racl = EXPAND_ITEM_LIST(racl_list, rsync_acl, 1000);
657 +                       write_byte(f, type == SMB_ACL_TYPE_ACCESS ? 'A' : 'D');
658 +                       send_rsync_acl(f, racl);
659 +                       *new_racl = *racl;
660 +                       *racl = empty_rsync_acl;
661 +               }
662 +               racl = sxp->def_acl;
663 +               racl_list = &default_acl_list;
664 +       } while (BUMP_TYPE(type) && S_ISDIR(sxp->st.st_mode));
665 +
666 +       free_acl(sxp);
667 +}
668 +
669 +/* === Receive functions === */
670 +
671 +static void receive_rsync_acl(rsync_acl *racl, int f, SMB_ACL_TYPE_T type)
672 +{
673 +       static item_list temp_ida_list = EMPTY_ITEM_LIST;
674 +       SMB_ACL_TAG_T tag_type = 0, prior_list_type = 0;
675 +       uchar computed_mask_bits = 0;
676 +       id_access *ida;
677 +       size_t count;
678 +
679 +       if (!(count = read_int(f)))
680 +               return;
681 +
682 +       while (count--) {
683 +               char tag = read_byte(f);
684 +               uchar access = read_byte(f);
685 +               if (access & ~ (4 | 2 | 1)) {
686 +                       rprintf(FERROR, "receive_rsync_acl: bogus permset %o\n",
687 +                               access);
688 +                       exit_cleanup(RERR_STREAMIO);
689 +               }
690 +               switch (tag) {
691 +               case 'u':
692 +                       if (racl->user_obj != NO_ENTRY) {
693 +                               rprintf(FERROR, "receive_rsync_acl: error: duplicate USER_OBJ entry\n");
694 +                               exit_cleanup(RERR_STREAMIO);
695 +                       }
696 +                       racl->user_obj = access;
697 +                       continue;
698 +               case 'U':
699 +                       tag_type = SMB_ACL_USER;
700 +                       break;
701 +               case 'g':
702 +                       if (racl->group_obj != NO_ENTRY) {
703 +                               rprintf(FERROR, "receive_rsync_acl: error: duplicate GROUP_OBJ entry\n");
704 +                               exit_cleanup(RERR_STREAMIO);
705 +                       }
706 +                       racl->group_obj = access;
707 +                       continue;
708 +               case 'G':
709 +                       tag_type = SMB_ACL_GROUP;
710 +                       break;
711 +               case 'm':
712 +                       if (racl->mask != NO_ENTRY) {
713 +                               rprintf(FERROR, "receive_rsync_acl: error: duplicate MASK entry\n");
714 +                               exit_cleanup(RERR_STREAMIO);
715 +                       }
716 +                       racl->mask = access;
717 +                       continue;
718 +               case 'o':
719 +                       if (racl->other != NO_ENTRY) {
720 +                               rprintf(FERROR, "receive_rsync_acl: error: duplicate OTHER entry\n");
721 +                               exit_cleanup(RERR_STREAMIO);
722 +                       }
723 +                       racl->other = access;
724 +                       continue;
725 +               default:
726 +                       rprintf(FERROR, "receive_rsync_acl: unknown tag %c\n",
727 +                               tag);
728 +                       exit_cleanup(RERR_STREAMIO);
729 +               }
730 +               if (tag_type != prior_list_type) {
731 +                       if (prior_list_type)
732 +                               save_idas(&temp_ida_list, racl, prior_list_type);
733 +                       prior_list_type = tag_type;
734 +               }
735 +               ida = EXPAND_ITEM_LIST(&temp_ida_list, id_access, -10);
736 +               ida->access = access;
737 +               ida->id = read_int(f);
738 +               computed_mask_bits |= access;
739 +       }
740 +       if (prior_list_type)
741 +               save_idas(&temp_ida_list, racl, prior_list_type);
742 +
743 +       if (type == SMB_ACL_TYPE_DEFAULT) {
744 +               /* Ensure that these are never unset. */
745 +               if (racl->user_obj == NO_ENTRY)
746 +                       racl->user_obj = 7;
747 +               if (racl->group_obj == NO_ENTRY)
748 +                       racl->group_obj = 0;
749 +               if (racl->other == NO_ENTRY)
750 +                       racl->other = 0;
751 +       }
752 +
753 +       if (!racl->users.count && !racl->groups.count) {
754 +               /* If we received a superfluous mask, throw it away. */
755 +               if (racl->mask != NO_ENTRY) {
756 +                       /* Mask off the group perms with it first. */
757 +                       racl->group_obj &= racl->mask | NO_ENTRY;
758 +                       racl->mask = NO_ENTRY;
759 +               }
760 +       } else if (racl->mask == NO_ENTRY) /* Must be non-empty with lists. */
761 +               racl->mask = computed_mask_bits | (racl->group_obj & 7);
762 +}
763 +
764 +/* Receive the ACL info the sender has included for this file-list entry. */
765 +void receive_acl(struct file_struct *file, int f)
766 +{
767 +       SMB_ACL_TYPE_T type;
768 +       item_list *racl_list;
769 +
770 +       if (S_ISLNK(file->mode))
771 +               return;
772 +
773 +       type = SMB_ACL_TYPE_ACCESS;
774 +       racl_list = &access_acl_list;
775 +       do {
776 +               char tag = read_byte(f);
777 +               int ndx;
778 +
779 +               if (tag == 'A' || tag == 'a') {
780 +                       if (type != SMB_ACL_TYPE_ACCESS) {
781 +                               rprintf(FERROR, "receive_acl %s: duplicate access ACL\n",
782 +                                       f_name(file, NULL));
783 +                               exit_cleanup(RERR_STREAMIO);
784 +                       }
785 +               } else if (tag == 'D' || tag == 'd') {
786 +                       if (type == SMB_ACL_TYPE_ACCESS) {
787 +                               rprintf(FERROR, "receive_acl %s: expecting access ACL; got default\n",
788 +                                       f_name(file, NULL));
789 +                               exit_cleanup(RERR_STREAMIO);
790 +                       }
791 +               } else {
792 +                       rprintf(FERROR, "receive_acl %s: unknown ACL type tag: %c\n",
793 +                               f_name(file, NULL), tag);
794 +                       exit_cleanup(RERR_STREAMIO);
795 +               }
796 +               if (tag == 'A' || tag == 'D') {
797 +                       acl_duo *duo_item;
798 +                       ndx = racl_list->count;
799 +                       duo_item = EXPAND_ITEM_LIST(racl_list, acl_duo, 1000);
800 +                       duo_item->racl = empty_rsync_acl;
801 +                       receive_rsync_acl(&duo_item->racl, f, type);
802 +                       duo_item->sacl = NULL;
803 +               } else {
804 +                       ndx = read_int(f);
805 +                       if (ndx < 0 || (size_t)ndx >= racl_list->count) {
806 +                               rprintf(FERROR, "receive_acl %s: %s ACL index %d out of range\n",
807 +                                       f_name(file, NULL), str_acl_type(type), ndx);
808 +                               exit_cleanup(RERR_STREAMIO);
809 +                       }
810 +               }
811 +               if (type == SMB_ACL_TYPE_ACCESS)
812 +                       F_ACL(file) = ndx;
813 +               else
814 +                       F_DEF_ACL(file) = ndx;
815 +               racl_list = &default_acl_list;
816 +       } while (BUMP_TYPE(type) && S_ISDIR(file->mode));
817 +}
818 +
819 +/* Turn the ACL data in statx into cached ACL data, setting the index
820 + * values in the file struct. */
821 +void cache_acl(struct file_struct *file, statx *sxp)
822 +{
823 +       SMB_ACL_TYPE_T type;
824 +       rsync_acl *racl;
825 +       item_list *racl_list;
826 +       int ndx;
827 +
828 +       if (S_ISLNK(file->mode))
829 +               return;
830 +
831 +       type = SMB_ACL_TYPE_ACCESS;
832 +       racl = sxp->acc_acl;
833 +       racl_list = &access_acl_list;
834 +       do {
835 +               if (!racl)
836 +                       ndx = -1;
837 +               else if ((ndx = find_matching_rsync_acl(type, racl_list, racl)) == -1) {
838 +                       acl_duo *new_duo;
839 +                       ndx = racl_list->count;
840 +                       new_duo = EXPAND_ITEM_LIST(racl_list, acl_duo, 1000);
841 +                       new_duo->racl = *racl;
842 +                       new_duo->sacl = NULL;
843 +                       *racl = empty_rsync_acl;
844 +               }
845 +               if (type == SMB_ACL_TYPE_ACCESS)
846 +                       F_ACL(file) = ndx;
847 +               else
848 +                       F_DEF_ACL(file) = ndx;
849 +               racl = sxp->def_acl;
850 +               racl_list = &default_acl_list;
851 +       } while (BUMP_TYPE(type) && S_ISDIR(sxp->st.st_mode));
852 +
853 +       free_acl(sxp);
854 +}
855 +
856 +static mode_t change_sacl_perms(SMB_ACL_T sacl, rsync_acl *racl, mode_t old_mode, mode_t mode)
857 +{
858 +       SMB_ACL_ENTRY_T entry;
859 +       const char *errfun;
860 +       int rc;
861 +
862 +       if (S_ISDIR(mode)) {
863 +               /* If the sticky bit is going on, it's not safe to allow all
864 +                * the new ACL to go into effect before it gets set. */
865 +#ifdef SMB_ACL_LOSES_SPECIAL_MODE_BITS
866 +               if (mode & S_ISVTX)
867 +                       mode &= ~0077;
868 +#else
869 +               if (mode & S_ISVTX && !(old_mode & S_ISVTX))
870 +                       mode &= ~0077;
871 +       } else {
872 +               /* If setuid or setgid is going off, it's not safe to allow all
873 +                * the new ACL to go into effect before they get cleared. */
874 +               if ((old_mode & S_ISUID && !(mode & S_ISUID))
875 +                || (old_mode & S_ISGID && !(mode & S_ISGID)))
876 +                       mode &= ~0077;
877 +#endif
878 +       }
879 +
880 +       errfun = "sys_acl_get_entry";
881 +       for (rc = sys_acl_get_entry(sacl, SMB_ACL_FIRST_ENTRY, &entry);
882 +            rc == 1;
883 +            rc = sys_acl_get_entry(sacl, SMB_ACL_NEXT_ENTRY, &entry)) {
884 +               SMB_ACL_TAG_T tag_type;
885 +               if ((rc = sys_acl_get_tag_type(entry, &tag_type))) {
886 +                       errfun = "sys_acl_get_tag_type";
887 +                       break;
888 +               }
889 +               switch (tag_type) {
890 +               case SMB_ACL_USER_OBJ:
891 +                       COE2( store_access_in_entry,((mode >> 6) & 7, entry) );
892 +                       break;
893 +               case SMB_ACL_GROUP_OBJ:
894 +                       /* group is only empty when identical to group perms. */
895 +                       if (racl->group_obj != NO_ENTRY)
896 +                               break;
897 +                       COE2( store_access_in_entry,((mode >> 3) & 7, entry) );
898 +                       break;
899 +               case SMB_ACL_MASK:
900 +#ifndef ACLS_NEED_MASK
901 +                       /* mask is only empty when we don't need it. */
902 +                       if (racl->mask == NO_ENTRY)
903 +                               break;
904 +#endif
905 +                       COE2( store_access_in_entry,((mode >> 3) & 7, entry) );
906 +                       break;
907 +               case SMB_ACL_OTHER:
908 +                       COE2( store_access_in_entry,(mode & 7, entry) );
909 +                       break;
910 +               }
911 +       }
912 +       if (rc) {
913 +         error_exit:
914 +               if (errfun) {
915 +                       rsyserr(FERROR, errno, "change_sacl_perms: %s()",
916 +                               errfun);
917 +               }
918 +               return (mode_t)~0;
919 +       }
920 +
921 +#ifdef SMB_ACL_LOSES_SPECIAL_MODE_BITS
922 +       /* Ensure that chmod() will be called to restore any lost setid bits. */
923 +       if (old_mode & (S_ISUID | S_ISGID | S_ISVTX)
924 +        && (old_mode & CHMOD_BITS) == (mode & CHMOD_BITS))
925 +               old_mode &= ~(S_ISUID | S_ISGID | S_ISVTX);
926 +#endif
927 +
928 +       /* Return the mode of the file on disk, as we will set them. */
929 +       return (old_mode & ~ACCESSPERMS) | (mode & ACCESSPERMS);
930 +}
931 +
932 +/* Set ACL on indicated filename.
933 + *
934 + * This sets extended access ACL entries and default ACL.  If convenient,
935 + * it sets permission bits along with the access ACL and signals having
936 + * done so by modifying sxp->st.st_mode.
937 + *
938 + * Returns 1 for unchanged, 0 for changed, -1 for failed.  Call this
939 + * with fname set to NULL to just check if the ACL is unchanged. */
940 +int set_acl(const char *fname, const struct file_struct *file, statx *sxp)
941 +{
942 +       int unchanged = 1;
943 +       SMB_ACL_TYPE_T type;
944 +
945 +       if (!dry_run && (read_only || list_only)) {
946 +               errno = EROFS;
947 +               return -1;
948 +       }
949 +
950 +       if (S_ISLNK(file->mode))
951 +               return 1;
952 +
953 +       type = SMB_ACL_TYPE_ACCESS;
954 +       do {
955 +               acl_duo *duo_item;
956 +               int32 ndx;
957 +               BOOL eq;
958 +
959 +               if (type == SMB_ACL_TYPE_ACCESS) {
960 +                       ndx = F_ACL(file);
961 +                       if (ndx < 0 || (size_t)ndx >= access_acl_list.count)
962 +                               continue;
963 +                       duo_item = access_acl_list.items;
964 +                       duo_item += ndx;
965 +                       eq = sxp->acc_acl
966 +                           && rsync_acl_equal_enough(sxp->acc_acl, &duo_item->racl, file->mode);
967 +               } else {
968 +                       ndx = F_DEF_ACL(file);
969 +                       if (ndx < 0 || (size_t)ndx >= default_acl_list.count)
970 +                               continue;
971 +                       duo_item = default_acl_list.items;
972 +                       duo_item += ndx;
973 +                       eq = sxp->def_acl
974 +                           && rsync_acl_equal(sxp->def_acl, &duo_item->racl);
975 +               }
976 +               if (eq)
977 +                       continue;
978 +               if (!dry_run && fname) {
979 +                       if (type == SMB_ACL_TYPE_DEFAULT
980 +                        && duo_item->racl.user_obj == NO_ENTRY) {
981 +                               if (sys_acl_delete_def_file(fname) < 0) {
982 +                                       rsyserr(FERROR, errno, "set_acl: sys_acl_delete_def_file(%s)",
983 +                                               fname);
984 +                                       unchanged = -1;
985 +                                       continue;
986 +                               }
987 +                       } else {
988 +                               mode_t cur_mode = sxp->st.st_mode;
989 +                               if (!duo_item->sacl
990 +                                && !pack_smb_acl(&duo_item->sacl, &duo_item->racl)) {
991 +                                       unchanged = -1;
992 +                                       continue;
993 +                               }
994 +                               if (type == SMB_ACL_TYPE_ACCESS) {
995 +                                       cur_mode = change_sacl_perms(duo_item->sacl, &duo_item->racl,
996 +                                                                    cur_mode, file->mode);
997 +                                       if (cur_mode == (mode_t)~0)
998 +                                               continue;
999 +                               }
1000 +                               if (sys_acl_set_file(fname, type, duo_item->sacl) < 0) {
1001 +                                       rsyserr(FERROR, errno, "set_acl: sys_acl_set_file(%s, %s)",
1002 +                                               fname, str_acl_type(type));
1003 +                                       unchanged = -1;
1004 +                                       continue;
1005 +                               }
1006 +                               if (type == SMB_ACL_TYPE_ACCESS)
1007 +                                       sxp->st.st_mode = cur_mode;
1008 +                       }
1009 +               }
1010 +               if (unchanged == 1)
1011 +                       unchanged = 0;
1012 +       } while (BUMP_TYPE(type) && S_ISDIR(file->mode));
1013 +
1014 +       return unchanged;
1015 +}
1016 +
1017 +/* === Enumeration functions for uid mapping === */
1018 +
1019 +/* Context -- one and only one.  Should be cycled through once on uid
1020 + * mapping and once on gid mapping. */
1021 +static item_list *_enum_racl_lists[] = {
1022 +       &access_acl_list, &default_acl_list, NULL
1023 +};
1024 +
1025 +static item_list **enum_racl_list = &_enum_racl_lists[0];
1026 +static int enum_ida_index = 0;
1027 +static size_t enum_racl_index = 0;
1028 +
1029 +/* This returns the next tag_type id from the given ACL for the next entry,
1030 + * or it returns 0 if there are no more tag_type ids in the acl. */
1031 +static id_t *next_ace_id(SMB_ACL_TAG_T tag_type, const rsync_acl *racl)
1032 +{
1033 +       const ida_entries *idal = tag_type == SMB_ACL_USER ? &racl->users : &racl->groups;
1034 +       if (enum_ida_index < idal->count) {
1035 +               id_access *ida = &idal->idas[enum_ida_index++];
1036 +               return &ida->id;
1037 +       }
1038 +       enum_ida_index = 0;
1039 +       return NULL;
1040 +}
1041 +
1042 +static id_t *next_acl_id(SMB_ACL_TAG_T tag_type, const item_list *racl_list)
1043 +{
1044 +       for (; enum_racl_index < racl_list->count; enum_racl_index++) {
1045 +               id_t *id;
1046 +               acl_duo *duo_item = racl_list->items;
1047 +               duo_item += enum_racl_index;
1048 +               if ((id = next_ace_id(tag_type, &duo_item->racl)) != NULL)
1049 +                       return id;
1050 +       }
1051 +       enum_racl_index = 0;
1052 +       return NULL;
1053 +}
1054 +
1055 +static id_t *next_acl_list_id(SMB_ACL_TAG_T tag_type)
1056 +{
1057 +       for (; *enum_racl_list; enum_racl_list++) {
1058 +               id_t *id = next_acl_id(tag_type, *enum_racl_list);
1059 +               if (id)
1060 +                       return id;
1061 +       }
1062 +       enum_racl_list = &_enum_racl_lists[0];
1063 +       return NULL;
1064 +}
1065 +
1066 +id_t *next_acl_uid()
1067 +{
1068 +       return next_acl_list_id(SMB_ACL_USER);
1069 +}
1070 +
1071 +id_t *next_acl_gid()
1072 +{
1073 +       return next_acl_list_id(SMB_ACL_GROUP);
1074 +}
1075 +
1076 +/* This is used by dest_mode(). */
1077 +int default_perms_for_dir(const char *dir)
1078 +{
1079 +       rsync_acl racl;
1080 +       SMB_ACL_T sacl;
1081 +       BOOL ok;
1082 +       int perms;
1083 +
1084 +       if (dir == NULL)
1085 +               dir = ".";
1086 +       perms = ACCESSPERMS & ~orig_umask;
1087 +       /* Read the directory's default ACL.  If it has none, this will successfully return an empty ACL. */
1088 +       sacl = sys_acl_get_file(dir, SMB_ACL_TYPE_DEFAULT);
1089 +       if (sacl == NULL) {
1090 +               /* Couldn't get an ACL.  Darn. */
1091 +               switch (errno) {
1092 +               case ENOTSUP:
1093 +               case ENOSYS:
1094 +                       /* No ACLs are available. */
1095 +                       break;
1096 +               case ENOENT:
1097 +                       if (dry_run) {
1098 +                               /* We're doing a dry run, so the containing directory
1099 +                                * wasn't actually created.  Don't worry about it. */
1100 +                               break;
1101 +                       }
1102 +                       /* Otherwise fall through. */
1103 +               default:
1104 +                       rprintf(FERROR, "default_perms_for_dir: sys_acl_get_file(%s, %s): %s, falling back on umask\n",
1105 +                               dir, str_acl_type(SMB_ACL_TYPE_DEFAULT), strerror(errno));
1106 +               }
1107 +               return perms;
1108 +       }
1109 +
1110 +       /* Convert it. */
1111 +       racl = empty_rsync_acl;
1112 +       ok = unpack_smb_acl(&racl, sacl);
1113 +       sys_acl_free_acl(sacl);
1114 +       if (!ok) {
1115 +               rprintf(FERROR, "default_perms_for_dir: unpack_smb_acl failed, falling back on umask\n");
1116 +               return perms;
1117 +       }
1118 +
1119 +       /* Apply the permission-bit entries of the default ACL, if any. */
1120 +       if (racl.user_obj != NO_ENTRY) {
1121 +               perms = rsync_acl_get_perms(&racl);
1122 +               if (verbose > 2)
1123 +                       rprintf(FINFO, "got ACL-based default perms %o for directory %s\n", perms, dir);
1124 +       }
1125 +
1126 +       rsync_acl_free(&racl);
1127 +       return perms;
1128 +}
1129 +
1130 +#endif /* SUPPORT_ACLS */
1131 --- old/backup.c
1132 +++ new/backup.c
1133 @@ -23,6 +23,7 @@
1134  
1135  extern int verbose;
1136  extern int am_root;
1137 +extern int preserve_acls;
1138  extern int preserve_devices;
1139  extern int preserve_specials;
1140  extern int preserve_links;
1141 @@ -93,7 +94,8 @@ path
1142  ****************************************************************************/
1143  static int make_bak_dir(char *fullpath)
1144  {
1145 -       STRUCT_STAT st;
1146 +       statx sx;
1147 +       struct file_struct *file;
1148         char *rel = fullpath + backup_dir_len;
1149         char *end = rel + strlen(rel);
1150         char *p = end;
1151 @@ -125,15 +127,24 @@ static int make_bak_dir(char *fullpath)
1152                 if (p >= rel) {
1153                         /* Try to transfer the directory settings of the
1154                          * actual dir that the files are coming from. */
1155 -                       if (do_stat(rel, &st) < 0) {
1156 +                       if (do_stat(rel, &sx.st) < 0) {
1157                                 rsyserr(FERROR, errno,
1158                                         "make_bak_dir stat %s failed",
1159                                         full_fname(rel));
1160                         } else {
1161 -                               do_lchown(fullpath, st.st_uid, st.st_gid);
1162 -#ifdef HAVE_CHMOD
1163 -                               do_chmod(fullpath, st.st_mode);
1164 +#ifdef SUPPORT_ACLS
1165 +                               sx.acc_acl = sx.def_acl = NULL;
1166 +#endif
1167 +                               if (!(file = make_file(rel, NULL, NULL, 0, NO_FILTERS)))
1168 +                                       continue;
1169 +#ifdef SUPPORT_ACLS
1170 +                               if (preserve_acls) {
1171 +                                       get_acl(rel, &sx);
1172 +                                       cache_acl(file, &sx);
1173 +                               }
1174  #endif
1175 +                               set_file_attrs(fullpath, file, NULL, 0);
1176 +                               free(file);
1177                         }
1178                 }
1179                 *p = '/';
1180 @@ -171,15 +182,18 @@ static int robust_move(const char *src, 
1181   * We will move the file to be deleted into a parallel directory tree. */
1182  static int keep_backup(const char *fname)
1183  {
1184 -       STRUCT_STAT st;
1185 +       statx sx;
1186         struct file_struct *file;
1187         char *buf;
1188         int kept = 0;
1189         int ret_code;
1190  
1191         /* return if no file to keep */
1192 -       if (do_lstat(fname, &st) < 0)
1193 +       if (do_lstat(fname, &sx.st) < 0)
1194                 return 1;
1195 +#ifdef SUPPORT_ACLS
1196 +       sx.acc_acl = sx.def_acl = NULL;
1197 +#endif
1198  
1199         if (!(file = make_file(fname, NULL, NULL, 0, NO_FILTERS)))
1200                 return 1; /* the file could have disappeared */
1201 @@ -189,6 +203,13 @@ static int keep_backup(const char *fname
1202                 return 0;
1203         }
1204  
1205 +#ifdef SUPPORT_ACLS
1206 +       if (preserve_acls) {
1207 +               get_acl(fname, &sx);
1208 +               cache_acl(file, &sx);
1209 +       }
1210 +#endif
1211 +
1212         /* Check to see if this is a device file, or link */
1213         if ((am_root && preserve_devices && IS_DEVICE(file->mode))
1214          || (preserve_specials && IS_SPECIAL(file->mode))) {
1215 @@ -260,7 +281,7 @@ static int keep_backup(const char *fname
1216                 if (robust_move(fname, buf) != 0) {
1217                         rsyserr(FERROR, errno, "keep_backup failed: %s -> \"%s\"",
1218                                 full_fname(fname), buf);
1219 -               } else if (st.st_nlink > 1) {
1220 +               } else if (sx.st.st_nlink > 1) {
1221                         /* If someone has hard-linked the file into the backup
1222                          * dir, rename() might return success but do nothing! */
1223                         robust_unlink(fname); /* Just in case... */
1224 --- old/configure.in
1225 +++ new/configure.in
1226 @@ -537,6 +537,11 @@ if test x"$ac_cv_func_strcasecmp" = x"no
1227      AC_CHECK_LIB(resolv, strcasecmp)
1228  fi
1229  
1230 +AC_CHECK_FUNCS(aclsort)
1231 +if test x"$ac_cv_func_aclsort" = x"no"; then
1232 +    AC_CHECK_LIB(sec, aclsort)
1233 +fi
1234 +
1235  dnl At the moment we don't test for a broken memcmp(), because all we
1236  dnl need to do is test for equality, not comparison, and it seems that
1237  dnl every platform has a memcmp that can do at least that.
1238 @@ -801,6 +806,78 @@ AC_SUBST(OBJ_RESTORE)
1239  AC_SUBST(CC_SHOBJ_FLAG)
1240  AC_SUBST(BUILD_POPT)
1241  
1242 +AC_CHECK_HEADERS(sys/acl.h acl/libacl.h)
1243 +AC_CHECK_FUNCS(_acl __acl _facl __facl)
1244 +#################################################
1245 +# check for ACL support
1246 +
1247 +AC_MSG_CHECKING(whether to support ACLs)
1248 +AC_ARG_ENABLE(acl-support,
1249 +AC_HELP_STRING([--enable-acl-support], [Include ACL support (default=no)]),
1250 +[ case "$enableval" in
1251 +  yes)
1252 +
1253 +               case "$host_os" in
1254 +               *sysv5*)
1255 +                       AC_MSG_RESULT(Using UnixWare ACLs)
1256 +                       AC_DEFINE(HAVE_UNIXWARE_ACLS, 1, [true if you have UnixWare ACLs])
1257 +                       ;;
1258 +               *solaris*|*cygwin*)
1259 +                       AC_MSG_RESULT(Using solaris ACLs)
1260 +                       AC_DEFINE(HAVE_SOLARIS_ACLS, 1, [true if you have solaris ACLs])
1261 +                       ;;
1262 +               *hpux*)
1263 +                       AC_MSG_RESULT(Using HPUX ACLs)
1264 +                       AC_DEFINE(HAVE_HPUX_ACLS, 1, [true if you have HPUX ACLs])
1265 +                       ;;
1266 +               *irix*)
1267 +                       AC_MSG_RESULT(Using IRIX ACLs)
1268 +                       AC_DEFINE(HAVE_IRIX_ACLS, 1, [true if you have IRIX ACLs])
1269 +                       ;;
1270 +               *aix*)
1271 +                       AC_MSG_RESULT(Using AIX ACLs)
1272 +                       AC_DEFINE(HAVE_AIX_ACLS, 1, [true if you have AIX ACLs])
1273 +                       ;;
1274 +               *osf*)
1275 +                       AC_MSG_RESULT(Using Tru64 ACLs)
1276 +                       AC_DEFINE(HAVE_TRU64_ACLS, 1, [true if you have Tru64 ACLs])
1277 +                       LIBS="$LIBS -lpacl"
1278 +                       ;;
1279 +               *)
1280 +                   AC_MSG_RESULT(ACLs requested -- running tests)
1281 +                   AC_CHECK_LIB(acl,acl_get_file)
1282 +                       AC_CACHE_CHECK([for ACL support],samba_cv_HAVE_POSIX_ACLS,[
1283 +                       AC_TRY_LINK([#include <sys/types.h>
1284 +#include <sys/acl.h>],
1285 +[ acl_t acl; int entry_id; acl_entry_t *entry_p; return acl_get_entry( acl, entry_id, entry_p);],
1286 +samba_cv_HAVE_POSIX_ACLS=yes,samba_cv_HAVE_POSIX_ACLS=no)])
1287 +                       AC_MSG_CHECKING(ACL test results)
1288 +                       if test x"$samba_cv_HAVE_POSIX_ACLS" = x"yes"; then
1289 +                           AC_MSG_RESULT(Using posix ACLs)
1290 +                           AC_DEFINE(HAVE_POSIX_ACLS, 1, [true if you have posix ACLs])
1291 +                           AC_CACHE_CHECK([for acl_get_perm_np],samba_cv_HAVE_ACL_GET_PERM_NP,[
1292 +                               AC_TRY_LINK([#include <sys/types.h>
1293 +#include <sys/acl.h>],
1294 +[ acl_permset_t permset_d; acl_perm_t perm; return acl_get_perm_np( permset_d, perm);],
1295 +samba_cv_HAVE_ACL_GET_PERM_NP=yes,samba_cv_HAVE_ACL_GET_PERM_NP=no)])
1296 +                           if test x"$samba_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then
1297 +                               AC_DEFINE(HAVE_ACL_GET_PERM_NP, 1, [true if you have acl_get_perm_np])
1298 +                           fi
1299 +                       else
1300 +                           AC_MSG_ERROR(Failed to find ACL support)
1301 +                       fi
1302 +                       ;;
1303 +               esac
1304 +               ;;
1305 +  *)
1306 +    AC_MSG_RESULT(no)
1307 +       AC_DEFINE(HAVE_NO_ACLS, 1, [true if you don't have ACLs])
1308 +    ;;
1309 +  esac ],
1310 +  AC_DEFINE(HAVE_NO_ACLS, 1, [true if you don't have ACLs])
1311 +  AC_MSG_RESULT(no)
1312 +)
1313 +
1314  AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
1315  AC_OUTPUT
1316  
1317 --- old/flist.c
1318 +++ new/flist.c
1319 @@ -40,6 +40,7 @@ extern int filesfrom_fd;
1320  extern int one_file_system;
1321  extern int copy_dirlinks;
1322  extern int keep_dirlinks;
1323 +extern int preserve_acls;
1324  extern int preserve_links;
1325  extern int preserve_hard_links;
1326  extern int preserve_devices;
1327 @@ -144,6 +145,8 @@ static void list_file_entry(struct file_
1328         permstring(permbuf, f->mode);
1329         len = F_LENGTH(f);
1330  
1331 +       /* TODO: indicate '+' if the entry has an ACL. */
1332 +
1333  #ifdef SUPPORT_LINKS
1334         if (preserve_links && S_ISLNK(f->mode)) {
1335                 rprintf(FINFO, "%s %11.0f %s %s -> %s\n",
1336 @@ -621,6 +624,12 @@ static struct file_struct *recv_file_ent
1337         }
1338  #endif
1339  
1340 +#ifdef SUPPORT_ACLS
1341 +       /* We need one or two index int32s when we're preserving ACLs. */
1342 +       if (preserve_acls)
1343 +               extra_len += (S_ISDIR(mode) ? 2 : 1) * sizeof (union flist_extras);
1344 +#endif
1345 +
1346         if (always_checksum && S_ISREG(mode))
1347                 extra_len += SUM_EXTRA_CNT * EXTRA_LEN;
1348  
1349 @@ -733,6 +742,11 @@ static struct file_struct *recv_file_ent
1350                 read_buf(f, bp, checksum_len);
1351         }
1352  
1353 +#ifdef SUPPORT_ACLS
1354 +       if (preserve_acls)
1355 +               receive_acl(file, f);
1356 +#endif
1357 +
1358         return file;
1359  }
1360  
1361 @@ -993,6 +1007,9 @@ static struct file_struct *send_file_nam
1362                                           unsigned short flags)
1363  {
1364         struct file_struct *file;
1365 +#ifdef SUPPORT_ACLS
1366 +       statx sx;
1367 +#endif
1368  
1369         file = make_file(fname, flist, stp, flags,
1370                          f == -2 ? SERVER_FILTERS : ALL_FILTERS);
1371 @@ -1002,11 +1019,24 @@ static struct file_struct *send_file_nam
1372         if (chmod_modes && !S_ISLNK(file->mode))
1373                 file->mode = tweak_mode(file->mode, chmod_modes);
1374  
1375 +#ifdef SUPPORT_ACLS
1376 +       if (preserve_acls && f >= 0) {
1377 +               sx.st.st_mode = file->mode;
1378 +               sx.acc_acl = sx.def_acl = NULL;
1379 +               if (get_acl(fname, &sx) < 0)
1380 +                       return NULL;
1381 +       }
1382 +#endif
1383 +
1384         maybe_emit_filelist_progress(flist->count + flist_count_offset);
1385  
1386         flist_expand(flist);
1387         flist->files[flist->count++] = file;
1388         send_file_entry(file, f);
1389 +#ifdef SUPPORT_ACLS
1390 +       if (preserve_acls && f >= 0)
1391 +               send_acl(&sx, f);
1392 +#endif
1393         return file;
1394  }
1395  
1396 --- old/generator.c
1397 +++ new/generator.c
1398 @@ -35,6 +35,7 @@ extern int do_progress;
1399  extern int relative_paths;
1400  extern int implied_dirs;
1401  extern int keep_dirlinks;
1402 +extern int preserve_acls;
1403  extern int preserve_links;
1404  extern int preserve_devices;
1405  extern int preserve_specials;
1406 @@ -87,6 +88,7 @@ extern int force_delete;
1407  extern int one_file_system;
1408  extern struct stats stats;
1409  extern dev_t filesystem_dev;
1410 +extern mode_t orig_umask;
1411  extern char *backup_dir;
1412  extern char *backup_suffix;
1413  extern int backup_suffix_len;
1414 @@ -517,22 +519,27 @@ static void do_delete_pass(struct file_l
1415                 rprintf(FINFO, "                    \r");
1416  }
1417  
1418 -int unchanged_attrs(struct file_struct *file, STRUCT_STAT *st)
1419 +int unchanged_attrs(struct file_struct *file, statx *sxp)
1420  {
1421         if (preserve_perms
1422 -        && (unsigned)(st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS))
1423 +        && (unsigned)(sxp->st.st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS))
1424                 return 0;
1425  
1426 -       if (am_root && preserve_uid && st->st_uid != F_UID(file))
1427 +       if (am_root && preserve_uid && sxp->st.st_uid != F_UID(file))
1428                 return 0;
1429  
1430 -       if (preserve_gid && F_GID(file) != GID_NONE && st->st_gid != F_GID(file))
1431 +       if (preserve_gid && F_GID(file) != GID_NONE && sxp->st.st_gid != F_GID(file))
1432                 return 0;
1433  
1434 +#ifdef SUPPORT_ACLS
1435 +       if (preserve_acls && set_acl(NULL, file, sxp) == 0)
1436 +               return 0;
1437 +#endif
1438 +
1439         return 1;
1440  }
1441  
1442 -void itemize(struct file_struct *file, int ndx, int statret, STRUCT_STAT *st,
1443 +void itemize(struct file_struct *file, int ndx, int statret, statx *sxp,
1444              int32 iflags, uchar fnamecmp_type, const char *xname)
1445  {
1446         if (statret >= 0) { /* A from-dest-dir statret can == 1! */
1447 @@ -540,20 +547,24 @@ void itemize(struct file_struct *file, i
1448                     : S_ISDIR(file->mode) ? !omit_dir_times
1449                     : !S_ISLNK(file->mode);
1450  
1451 -               if (S_ISREG(file->mode) && F_LENGTH(file) != st->st_size)
1452 +               if (S_ISREG(file->mode) && F_LENGTH(file) != sxp->st.st_size)
1453                         iflags |= ITEM_REPORT_SIZE;
1454                 if ((iflags & (ITEM_TRANSFER|ITEM_LOCAL_CHANGE) && !keep_time
1455                   && !(iflags & ITEM_MATCHED)
1456                   && (!(iflags & ITEM_XNAME_FOLLOWS) || *xname))
1457 -                || (keep_time && cmp_time(file->modtime, st->st_mtime) != 0))
1458 +                || (keep_time && cmp_time(file->modtime, sxp->st.st_mtime) != 0))
1459                         iflags |= ITEM_REPORT_TIME;
1460 -               if ((unsigned)(st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS))
1461 +               if ((unsigned)(sxp->st.st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS))
1462                         iflags |= ITEM_REPORT_PERMS;
1463 -               if (preserve_uid && am_root && F_UID(file) != st->st_uid)
1464 +               if (preserve_uid && am_root && F_UID(file) != sxp->st.st_uid)
1465                         iflags |= ITEM_REPORT_OWNER;
1466                 if (preserve_gid && F_GID(file) != GID_NONE
1467 -                   && st->st_gid != F_GID(file))
1468 +                   && sxp->st.st_gid != F_GID(file))
1469                         iflags |= ITEM_REPORT_GROUP;
1470 +#ifdef SUPPORT_ACLS
1471 +               if (preserve_acls && set_acl(NULL, file, sxp) == 0)
1472 +                       iflags |= ITEM_REPORT_ACL;
1473 +#endif
1474         } else
1475                 iflags |= ITEM_IS_NEW;
1476  
1477 @@ -807,7 +818,7 @@ void check_for_finished_hlinks(int itemi
1478   * handling the file, -1 if no dest-linking occurred, or a non-negative
1479   * value if we found an alternate basis file. */
1480  static int try_dests_reg(struct file_struct *file, char *fname, int ndx,
1481 -                        char *cmpbuf, STRUCT_STAT *stp, int itemizing,
1482 +                        char *cmpbuf, statx *sxp, int itemizing,
1483                          int maybe_ATTRS_REPORT, enum logcode code)
1484  {
1485         int best_match = -1;
1486 @@ -816,7 +827,7 @@ static int try_dests_reg(struct file_str
1487  
1488         do {
1489                 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1490 -               if (link_stat(cmpbuf, stp, 0) < 0 || !S_ISREG(stp->st_mode))
1491 +               if (link_stat(cmpbuf, &sxp->st, 0) < 0 || !S_ISREG(sxp->st.st_mode))
1492                         continue;
1493                 switch (match_level) {
1494                 case 0:
1495 @@ -824,16 +835,20 @@ static int try_dests_reg(struct file_str
1496                         match_level = 1;
1497                         /* FALL THROUGH */
1498                 case 1:
1499 -                       if (!unchanged_file(cmpbuf, file, stp))
1500 +                       if (!unchanged_file(cmpbuf, file, &sxp->st))
1501                                 continue;
1502                         best_match = j;
1503                         match_level = 2;
1504                         /* FALL THROUGH */
1505                 case 2:
1506 -                       if (!unchanged_attrs(file, stp))
1507 +#ifdef SUPPORT_ACLS
1508 +                       if (preserve_acls)
1509 +                               get_acl(cmpbuf, sxp);
1510 +#endif
1511 +                       if (!unchanged_attrs(file, sxp))
1512                                 continue;
1513                         if (always_checksum && preserve_times
1514 -                        && cmp_time(stp->st_mtime, file->modtime))
1515 +                        && cmp_time(sxp->st.st_mtime, file->modtime))
1516                                 continue;
1517                         best_match = j;
1518                         match_level = 3;
1519 @@ -848,7 +863,7 @@ static int try_dests_reg(struct file_str
1520         if (j != best_match) {
1521                 j = best_match;
1522                 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1523 -               if (link_stat(cmpbuf, stp, 0) < 0)
1524 +               if (link_stat(cmpbuf, &sxp->st, 0) < 0)
1525                         return -1;
1526         }
1527  
1528 @@ -856,15 +871,20 @@ static int try_dests_reg(struct file_str
1529  #ifdef SUPPORT_HARD_LINKS
1530                 if (link_dest) {
1531                         int i = itemizing && (verbose > 1 || stdout_format_has_i > 1);
1532 -                       if (hard_link_one(file, ndx, fname, 0, stp,
1533 +                       if (hard_link_one(file, ndx, fname, 0, sxp,
1534                                           cmpbuf, 1, i, code) < 0)
1535                                 goto try_a_copy;
1536                         if (preserve_hard_links && F_IS_HLINKED(file))
1537                                 hard_link_cluster(file, ndx, itemizing, code, j);
1538                 } else
1539  #endif
1540 -               if (itemizing)
1541 -                       itemize(file, ndx, 0, stp, 0, 0, NULL);
1542 +               if (itemizing) {
1543 +#ifdef SUPPORT_ACLS
1544 +                       if (preserve_acls && !ACL_READY(*sxp))
1545 +                               get_acl(fname, sxp);
1546 +#endif
1547 +                       itemize(file, ndx, 0, sxp, 0, 0, NULL);
1548 +               }
1549                 if (verbose > 1 && maybe_ATTRS_REPORT) {
1550                         rprintf(FCLIENT, "%s is uptodate\n", fname);
1551                 }
1552 @@ -880,8 +900,13 @@ static int try_dests_reg(struct file_str
1553                         }
1554                         return -1;
1555                 }
1556 -               if (itemizing)
1557 -                       itemize(file, ndx, 0, stp, ITEM_LOCAL_CHANGE, 0, NULL);
1558 +               if (itemizing) {
1559 +#ifdef SUPPORT_ACLS
1560 +                       if (preserve_acls && !ACL_READY(*sxp))
1561 +                               get_acl(fname, sxp);
1562 +#endif
1563 +                       itemize(file, ndx, 0, sxp, ITEM_LOCAL_CHANGE, 0, NULL);
1564 +               }
1565                 set_file_attrs(fname, file, NULL, 0);
1566                 if (maybe_ATTRS_REPORT
1567                  && ((!itemizing && verbose && match_level == 2)
1568 @@ -904,7 +929,7 @@ static int try_dests_reg(struct file_str
1569   * handling the file, or -1 if no dest-linking occurred, or a non-negative
1570   * value if we found an alternate basis file. */
1571  static int try_dests_non(struct file_struct *file, char *fname, int ndx,
1572 -                        char *cmpbuf, STRUCT_STAT *stp, int itemizing,
1573 +                        char *cmpbuf, statx *sxp, int itemizing,
1574                          int maybe_ATTRS_REPORT, enum logcode code)
1575  {
1576         char lnk[MAXPATHLEN];
1577 @@ -937,24 +962,24 @@ static int try_dests_non(struct file_str
1578  
1579         do {
1580                 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1581 -               if (link_stat(cmpbuf, stp, 0) < 0)
1582 +               if (link_stat(cmpbuf, &sxp->st, 0) < 0)
1583                         continue;
1584                 switch (type) {
1585                 case TYPE_DIR:
1586 -                       if (!S_ISDIR(stp->st_mode))
1587 +                       if (!S_ISDIR(sxp->st.st_mode))
1588                                 continue;
1589                         break;
1590                 case TYPE_SPECIAL:
1591 -                       if (!IS_SPECIAL(stp->st_mode))
1592 +                       if (!IS_SPECIAL(sxp->st.st_mode))
1593                                 continue;
1594                         break;
1595                 case TYPE_DEVICE:
1596 -                       if (!IS_DEVICE(stp->st_mode))
1597 +                       if (!IS_DEVICE(sxp->st.st_mode))
1598                                 continue;
1599                         break;
1600  #ifdef SUPPORT_LINKS
1601                 case TYPE_SYMLINK:
1602 -                       if (!S_ISLNK(stp->st_mode))
1603 +                       if (!S_ISLNK(sxp->st.st_mode))
1604                                 continue;
1605                         break;
1606  #endif
1607 @@ -969,7 +994,7 @@ static int try_dests_non(struct file_str
1608                 case TYPE_SPECIAL:
1609                 case TYPE_DEVICE:
1610                         devp = F_RDEV_P(file);
1611 -                       if (stp->st_rdev != MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp)))
1612 +                       if (sxp->st.st_rdev != MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp)))
1613                                 continue;
1614                         break;
1615  #ifdef SUPPORT_LINKS
1616 @@ -986,7 +1011,11 @@ static int try_dests_non(struct file_str
1617                         match_level = 2;
1618                         best_match = j;
1619                 }
1620 -               if (unchanged_attrs(file, stp)) {
1621 +#ifdef SUPPORT_ACLS
1622 +               if (preserve_acls)
1623 +                       get_acl(cmpbuf, sxp);
1624 +#endif
1625 +               if (unchanged_attrs(file, sxp)) {
1626                         match_level = 3;
1627                         best_match = j;
1628                         break;
1629 @@ -999,7 +1028,7 @@ static int try_dests_non(struct file_str
1630         if (j != best_match) {
1631                 j = best_match;
1632                 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1633 -               if (link_stat(cmpbuf, stp, 0) < 0)
1634 +               if (link_stat(cmpbuf, &sxp->st, 0) < 0)
1635                         return -1;
1636         }
1637  
1638 @@ -1030,7 +1059,15 @@ static int try_dests_non(struct file_str
1639                             : ITEM_LOCAL_CHANGE
1640                              + (match_level == 3 ? ITEM_XNAME_FOLLOWS : 0);
1641                         char *lp = match_level == 3 ? "" : NULL;
1642 -                       itemize(file, ndx, 0, stp, chg + ITEM_MATCHED, 0, lp);
1643 +#ifdef SUPPORT_ACLS
1644 +                       if (preserve_acls)
1645 +                               get_acl(fname, sxp);
1646 +#endif
1647 +                       itemize(file, ndx, 0, sxp, chg + ITEM_MATCHED, 0, lp);
1648 +#ifdef SUPPORT_ACLS
1649 +                       if (preserve_acls)
1650 +                               free_acl(sxp);
1651 +#endif
1652                 }
1653                 if (verbose > 1 && maybe_ATTRS_REPORT) {
1654                         rprintf(FCLIENT, "%s%s is uptodate\n",
1655 @@ -1043,6 +1080,7 @@ static int try_dests_non(struct file_str
1656  }
1657  
1658  static int phase = 0;
1659 +static int dflt_perms;
1660  
1661  /* Acts on the_file_list->file's ndx'th item, whose name is fname.  If a dir,
1662   * make sure it exists, and has the right permissions/timestamp info.  For
1663 @@ -1064,7 +1102,8 @@ static void recv_generator(char *fname, 
1664         static int need_fuzzy_dirlist = 0;
1665         struct file_struct *fuzzy_file = NULL;
1666         int fd = -1, f_copy = -1;
1667 -       STRUCT_STAT st, real_st, partial_st;
1668 +       statx sx, real_sx;
1669 +       STRUCT_STAT partial_st;
1670         struct file_struct *back_file = NULL;
1671         int statret, real_ret, stat_errno;
1672         char *fnamecmp, *partialptr, *backupptr = NULL;
1673 @@ -1120,6 +1159,9 @@ static void recv_generator(char *fname, 
1674                 } else if (!dry_run)
1675                         return;
1676         }
1677 +#ifdef SUPPORT_ACLS
1678 +       sx.acc_acl = sx.def_acl = NULL;
1679 +#endif
1680         if (dry_run > 1) {
1681                 statret = -1;
1682                 stat_errno = ENOENT;
1683 @@ -1127,7 +1169,7 @@ static void recv_generator(char *fname, 
1684                 const char *dn = file->dirname ? file->dirname : ".";
1685                 if (parent_dirname != dn && strcmp(parent_dirname, dn) != 0) {
1686                         if (relative_paths && !implied_dirs
1687 -                        && do_stat(dn, &st) < 0
1688 +                        && do_stat(dn, &sx.st) < 0
1689                          && create_directory_path(fname) < 0) {
1690                                 rsyserr(FERROR, errno,
1691                                         "recv_generator: mkdir %s failed",
1692 @@ -1139,6 +1181,10 @@ static void recv_generator(char *fname, 
1693                         }
1694                         if (fuzzy_basis)
1695                                 need_fuzzy_dirlist = 1;
1696 +#ifdef SUPPORT_ACLS
1697 +                       if (!preserve_perms)
1698 +                               dflt_perms = default_perms_for_dir(dn);
1699 +#endif
1700                 }
1701                 parent_dirname = dn;
1702  
1703 @@ -1148,7 +1194,7 @@ static void recv_generator(char *fname, 
1704                         need_fuzzy_dirlist = 0;
1705                 }
1706  
1707 -               statret = link_stat(fname, &st,
1708 +               statret = link_stat(fname, &sx.st,
1709                                     keep_dirlinks && S_ISDIR(file->mode));
1710                 stat_errno = errno;
1711         }
1712 @@ -1166,8 +1212,9 @@ static void recv_generator(char *fname, 
1713          * mode based on the local permissions and some heuristics. */
1714         if (!preserve_perms) {
1715                 int exists = statret == 0
1716 -                         && S_ISDIR(st.st_mode) == S_ISDIR(file->mode);
1717 -               file->mode = dest_mode(file->mode, st.st_mode, exists);
1718 +                         && S_ISDIR(sx.st.st_mode) == S_ISDIR(file->mode);
1719 +               file->mode = dest_mode(file->mode, sx.st.st_mode, dflt_perms,
1720 +                                      exists);
1721         }
1722  
1723         if (S_ISDIR(file->mode)) {
1724 @@ -1176,8 +1223,8 @@ static void recv_generator(char *fname, 
1725                  * file of that name and it is *not* a directory, then
1726                  * we need to delete it.  If it doesn't exist, then
1727                  * (perhaps recursively) create it. */
1728 -               if (statret == 0 && !S_ISDIR(st.st_mode)) {
1729 -                       if (delete_item(fname, st.st_mode, "directory", del_opts) != 0)
1730 +               if (statret == 0 && !S_ISDIR(sx.st.st_mode)) {
1731 +                       if (delete_item(fname, sx.st.st_mode, "directory", del_opts) != 0)
1732                                 return;
1733                         statret = -1;
1734                 }
1735 @@ -1186,14 +1233,14 @@ static void recv_generator(char *fname, 
1736                         dry_run++;
1737                 }
1738                 real_ret = statret;
1739 -               real_st = st;
1740 +               real_sx = sx;
1741                 if (new_root_dir) {
1742                         if (*fname == '.' && fname[1] == '\0')
1743                                 statret = -1;
1744                         new_root_dir = 0;
1745                 }
1746                 if (statret != 0 && basis_dir[0] != NULL) {
1747 -                       int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &st,
1748 +                       int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &sx,
1749                                               itemizing, maybe_ATTRS_REPORT, code);
1750                         if (j == -2) {
1751                                 itemizing = 0;
1752 @@ -1202,7 +1249,11 @@ static void recv_generator(char *fname, 
1753                                 statret = 1;
1754                 }
1755                 if (itemizing && f_out != -1) {
1756 -                       itemize(file, ndx, statret, &st,
1757 +#ifdef SUPPORT_ACLS
1758 +                       if (preserve_acls && statret == 0)
1759 +                               get_acl(fname, &sx);
1760 +#endif
1761 +                       itemize(file, ndx, statret, &sx,
1762                                 statret ? ITEM_LOCAL_CHANGE : 0, 0, NULL);
1763                 }
1764                 if (real_ret != 0 && do_mkdir(fname,file->mode) < 0 && errno != EEXIST) {
1765 @@ -1222,22 +1273,22 @@ static void recv_generator(char *fname, 
1766                                 return;
1767                         }
1768                 }
1769 -               if (set_file_attrs(fname, file, real_ret ? NULL : &real_st, 0)
1770 +               if (set_file_attrs(fname, file, real_ret ? NULL : &real_sx, 0)
1771                     && verbose && code != FNONE && f_out != -1)
1772                         rprintf(code, "%s/\n", fname);
1773                 if (real_ret != 0 && one_file_system)
1774 -                       real_st.st_dev = filesystem_dev;
1775 +                       real_sx.st.st_dev = filesystem_dev;
1776                 if (delete_during && f_out != -1 && !phase && dry_run < 2
1777                     && (file->flags & FLAG_XFER_DIR))
1778 -                       delete_in_dir(the_file_list, fname, file, &real_st);
1779 -               return;
1780 +                       delete_in_dir(the_file_list, fname, file, &real_sx.st);
1781 +               goto cleanup;
1782         }
1783  
1784  #ifdef SUPPORT_HARD_LINKS
1785         if (preserve_hard_links && F_IS_HLINKED(file)
1786 -           && hard_link_check(file, ndx, fname, statret, &st,
1787 +           && hard_link_check(file, ndx, fname, statret, &sx,
1788                                itemizing, code, HL_CHECK_MASTER))
1789 -               return;
1790 +               goto cleanup;
1791  #endif
1792  
1793         if (preserve_links && S_ISLNK(file->mode)) {
1794 @@ -1257,14 +1308,14 @@ static void recv_generator(char *fname, 
1795                         char lnk[MAXPATHLEN];
1796                         int len;
1797  
1798 -                       if (!S_ISLNK(st.st_mode))
1799 +                       if (!S_ISLNK(sx.st.st_mode))
1800                                 statret = -1;
1801                         else if ((len = readlink(fname, lnk, MAXPATHLEN-1)) > 0
1802                               && strncmp(lnk, sl, len) == 0 && sl[len] == '\0') {
1803                                 /* The link is pointing to the right place. */
1804                                 if (itemizing)
1805 -                                       itemize(file, ndx, 0, &st, 0, 0, NULL);
1806 -                               set_file_attrs(fname, file, &st, maybe_ATTRS_REPORT);
1807 +                                       itemize(file, ndx, 0, &sx, 0, 0, NULL);
1808 +                               set_file_attrs(fname, file, &sx, maybe_ATTRS_REPORT);
1809  #ifdef SUPPORT_HARD_LINKS
1810                                 if (preserve_hard_links && F_IS_HLINKED(file))
1811                                         hard_link_cluster(file, ndx, itemizing, code, -1);
1812 @@ -1275,10 +1326,10 @@ static void recv_generator(char *fname, 
1813                         }
1814                         /* Not the right symlink (or not a symlink), so
1815                          * delete it. */
1816 -                       if (delete_item(fname, st.st_mode, "symlink", del_opts) != 0)
1817 +                       if (delete_item(fname, sx.st.st_mode, "symlink", del_opts) != 0)
1818                                 return;
1819                 } else if (basis_dir[0] != NULL) {
1820 -                       int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &st,
1821 +                       int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &sx,
1822                                               itemizing, maybe_ATTRS_REPORT, code);
1823                         if (j == -2) {
1824  #ifndef CAN_HARDLINK_SYMLINK
1825 @@ -1295,7 +1346,7 @@ static void recv_generator(char *fname, 
1826                 }
1827  #ifdef SUPPORT_HARD_LINKS
1828                 if (preserve_hard_links && F_IS_HLINKED(file)
1829 -                   && hard_link_check(file, ndx, fname, -1, &st,
1830 +                   && hard_link_check(file, ndx, fname, -1, &sx,
1831                                        itemizing, code, HL_SKIP))
1832                         return;
1833  #endif
1834 @@ -1305,7 +1356,7 @@ static void recv_generator(char *fname, 
1835                 } else {
1836                         set_file_attrs(fname, file, NULL, 0);
1837                         if (itemizing) {
1838 -                               itemize(file, ndx, statret, &st,
1839 +                               itemize(file, ndx, statret, &sx,
1840                                         ITEM_LOCAL_CHANGE, 0, NULL);
1841                         }
1842                         if (code != FNONE && verbose)
1843 @@ -1331,33 +1382,38 @@ static void recv_generator(char *fname, 
1844                 if (statret == 0) {
1845                         char *t;
1846                         if (IS_DEVICE(file->mode)) {
1847 -                               if (!IS_DEVICE(st.st_mode))
1848 +                               if (!IS_DEVICE(sx.st.st_mode))
1849                                         statret = -1;
1850                                 t = "device file";
1851                         } else {
1852 -                               if (!IS_SPECIAL(st.st_mode))
1853 +                               if (!IS_SPECIAL(sx.st.st_mode))
1854                                         statret = -1;
1855                                 t = "special file";
1856                         }
1857                         if (statret == 0
1858 -                        && (unsigned)(st.st_mode & ~CHMOD_BITS) == (file->mode & ~CHMOD_BITS)
1859 -                        && st.st_rdev == rdev) {
1860 +                        && (unsigned)(sx.st.st_mode & ~CHMOD_BITS) == (file->mode & ~CHMOD_BITS)
1861 +                        && sx.st.st_rdev == rdev) {
1862                                 /* The device or special file is identical. */
1863 -                               if (itemizing)
1864 -                                       itemize(file, ndx, 0, &st, 0, 0, NULL);
1865 -                               set_file_attrs(fname, file, &st, maybe_ATTRS_REPORT);
1866 +                               if (itemizing) {
1867 +#ifdef SUPPORT_ACLS
1868 +                                       if (preserve_acls)
1869 +                                               get_acl(fname, &sx);
1870 +#endif
1871 +                                       itemize(file, ndx, 0, &sx, 0, 0, NULL);
1872 +                               }
1873 +                               set_file_attrs(fname, file, &sx, maybe_ATTRS_REPORT);
1874  #ifdef SUPPORT_HARD_LINKS
1875                                 if (preserve_hard_links && F_IS_HLINKED(file))
1876                                         hard_link_cluster(file, ndx, itemizing, code, -1);
1877  #endif
1878                                 if (remove_source_files == 1)
1879                                         goto return_with_success;
1880 -                               return;
1881 +                               goto cleanup;
1882                         }
1883 -                       if (delete_item(fname, st.st_mode, t, del_opts) != 0)
1884 +                       if (delete_item(fname, sx.st.st_mode, t, del_opts) != 0)
1885                                 return;
1886                 } else if (basis_dir[0] != NULL) {
1887 -                       int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &st,
1888 +                       int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &sx,
1889                                               itemizing, maybe_ATTRS_REPORT, code);
1890                         if (j == -2) {
1891  #ifndef CAN_HARDLINK_SPECIAL
1892 @@ -1374,7 +1430,7 @@ static void recv_generator(char *fname, 
1893                 }
1894  #ifdef SUPPORT_HARD_LINKS
1895                 if (preserve_hard_links && F_IS_HLINKED(file)
1896 -                   && hard_link_check(file, ndx, fname, -1, &st,
1897 +                   && hard_link_check(file, ndx, fname, -1, &sx,
1898                                        itemizing, code, HL_SKIP))
1899                         return;
1900  #endif
1901 @@ -1389,7 +1445,11 @@ static void recv_generator(char *fname, 
1902                 } else {
1903                         set_file_attrs(fname, file, NULL, 0);
1904                         if (itemizing) {
1905 -                               itemize(file, ndx, statret, &st,
1906 +#ifdef SUPPORT_ACLS
1907 +                               if (preserve_acls && statret == 0)
1908 +                                       get_acl(fname, &sx);
1909 +#endif
1910 +                               itemize(file, ndx, statret, &sx,
1911                                         ITEM_LOCAL_CHANGE, 0, NULL);
1912                         }
1913                         if (code != FNONE && verbose)
1914 @@ -1401,7 +1461,7 @@ static void recv_generator(char *fname, 
1915                         if (remove_source_files == 1)
1916                                 goto return_with_success;
1917                 }
1918 -               return;
1919 +               goto cleanup;
1920         }
1921  
1922         if (!S_ISREG(file->mode)) {
1923 @@ -1435,7 +1495,7 @@ static void recv_generator(char *fname, 
1924         }
1925  
1926         if (update_only && statret == 0
1927 -           && cmp_time(st.st_mtime, file->modtime) > 0) {
1928 +           && cmp_time(sx.st.st_mtime, file->modtime) > 0) {
1929                 if (verbose > 1)
1930                         rprintf(FINFO, "%s is newer\n", fname);
1931                 return;
1932 @@ -1444,20 +1504,20 @@ static void recv_generator(char *fname, 
1933         fnamecmp = fname;
1934         fnamecmp_type = FNAMECMP_FNAME;
1935  
1936 -       if (statret == 0 && !S_ISREG(st.st_mode)) {
1937 -               if (delete_item(fname, st.st_mode, "regular file", del_opts) != 0)
1938 +       if (statret == 0 && !S_ISREG(sx.st.st_mode)) {
1939 +               if (delete_item(fname, sx.st.st_mode, "regular file", del_opts) != 0)
1940                         return;
1941                 statret = -1;
1942                 stat_errno = ENOENT;
1943         }
1944  
1945         if (statret != 0 && basis_dir[0] != NULL) {
1946 -               int j = try_dests_reg(file, fname, ndx, fnamecmpbuf, &st,
1947 +               int j = try_dests_reg(file, fname, ndx, fnamecmpbuf, &sx,
1948                                       itemizing, maybe_ATTRS_REPORT, code);
1949                 if (j == -2) {
1950                         if (remove_source_files == 1)
1951                                 goto return_with_success;
1952 -                       return;
1953 +                       goto cleanup;
1954                 }
1955                 if (j >= 0) {
1956                         fnamecmp = fnamecmpbuf;
1957 @@ -1467,7 +1527,7 @@ static void recv_generator(char *fname, 
1958         }
1959  
1960         real_ret = statret;
1961 -       real_st = st;
1962 +       real_sx = sx;
1963  
1964         if (partial_dir && (partialptr = partial_dir_fname(fname)) != NULL
1965             && link_stat(partialptr, &partial_st, 0) == 0
1966 @@ -1486,7 +1546,7 @@ static void recv_generator(char *fname, 
1967                                 rprintf(FINFO, "fuzzy basis selected for %s: %s\n",
1968                                         fname, fnamecmpbuf);
1969                         }
1970 -                       st.st_size = F_LENGTH(fuzzy_file);
1971 +                       sx.st.st_size = F_LENGTH(fuzzy_file);
1972                         statret = 0;
1973                         fnamecmp = fnamecmpbuf;
1974                         fnamecmp_type = FNAMECMP_FUZZY;
1975 @@ -1496,7 +1556,7 @@ static void recv_generator(char *fname, 
1976         if (statret != 0) {
1977  #ifdef SUPPORT_HARD_LINKS
1978                 if (preserve_hard_links && F_IS_HLINKED(file)
1979 -                   && hard_link_check(file, ndx, fname, statret, &st,
1980 +                   && hard_link_check(file, ndx, fname, statret, &sx,
1981                                        itemizing, code, HL_SKIP))
1982                         return;
1983  #endif
1984 @@ -1507,38 +1567,51 @@ static void recv_generator(char *fname, 
1985                 return;
1986         }
1987  
1988 -       if (append_mode && st.st_size > F_LENGTH(file))
1989 +       if (append_mode && sx.st.st_size > F_LENGTH(file))
1990                 return;
1991  
1992         if (fnamecmp_type <= FNAMECMP_BASIS_DIR_HIGH)
1993                 ;
1994         else if (fnamecmp_type == FNAMECMP_FUZZY)
1995                 ;
1996 -       else if (unchanged_file(fnamecmp, file, &st)) {
1997 +       else if (unchanged_file(fnamecmp, file, &sx.st)) {
1998                 if (partialptr) {
1999                         do_unlink(partialptr);
2000                         handle_partial_dir(partialptr, PDIR_DELETE);
2001                 }
2002                 if (itemizing) {
2003 -                       itemize(file, ndx, real_ret, &real_st,
2004 +#ifdef SUPPORT_ACLS
2005 +                       if (preserve_acls && real_ret == 0)
2006 +                               get_acl(fnamecmp, &real_sx);
2007 +#endif
2008 +                       itemize(file, ndx, real_ret, &real_sx,
2009                                 0, 0, NULL);
2010 +#ifdef SUPPORT_ACLS
2011 +                       if (preserve_acls) {
2012 +                               if (fnamecmp_type == FNAMECMP_FNAME) {
2013 +                                       sx.acc_acl = real_sx.acc_acl;
2014 +                                       sx.def_acl = real_sx.def_acl;
2015 +                               } else
2016 +                                       free_acl(&real_sx);
2017 +                       }
2018 +#endif
2019                 }
2020 -               set_file_attrs(fname, file, &st, maybe_ATTRS_REPORT);
2021 +               set_file_attrs(fname, file, &sx, maybe_ATTRS_REPORT);
2022  #ifdef SUPPORT_HARD_LINKS
2023                 if (preserve_hard_links && F_IS_HLINKED(file))
2024                         hard_link_cluster(file, ndx, itemizing, code, -1);
2025  #endif
2026                 if (remove_source_files != 1)
2027 -                       return;
2028 +                       goto cleanup;
2029           return_with_success:
2030                 if (!dry_run)
2031                         send_msg_int(MSG_SUCCESS, ndx);
2032 -               return;
2033 +               goto cleanup;
2034         }
2035  
2036    prepare_to_open:
2037         if (partialptr) {
2038 -               st = partial_st;
2039 +               sx.st = partial_st;
2040                 fnamecmp = partialptr;
2041                 fnamecmp_type = FNAMECMP_PARTIAL_DIR;
2042                 statret = 0;
2043 @@ -1563,18 +1636,22 @@ static void recv_generator(char *fname, 
2044                 /* pretend the file didn't exist */
2045  #ifdef SUPPORT_HARD_LINKS
2046                 if (preserve_hard_links && F_IS_HLINKED(file)
2047 -                   && hard_link_check(file, ndx, fname, statret, &st,
2048 +                   && hard_link_check(file, ndx, fname, statret, &sx,
2049                                        itemizing, code, HL_SKIP))
2050 -                       return;
2051 +                       goto cleanup;
2052  #endif
2053                 statret = real_ret = -1;
2054 +#ifdef SUPPORT_ACLS
2055 +               if (preserve_acls && ACL_READY(sx))
2056 +                       free_acl(&sx);
2057 +#endif
2058                 goto notify_others;
2059         }
2060  
2061         if (inplace && make_backups && fnamecmp_type == FNAMECMP_FNAME) {
2062                 if (!(backupptr = get_backup_name(fname))) {
2063                         close(fd);
2064 -                       return;
2065 +                       goto cleanup;
2066                 }
2067                 if (!(back_file = make_file(fname, NULL, NULL, 0, NO_FILTERS))) {
2068                         close(fd);
2069 @@ -1585,7 +1662,7 @@ static void recv_generator(char *fname, 
2070                                 full_fname(backupptr));
2071                         unmake_file(back_file);
2072                         close(fd);
2073 -                       return;
2074 +                       goto cleanup;
2075                 }
2076                 if ((f_copy = do_open(backupptr,
2077                     O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0600)) < 0) {
2078 @@ -1593,14 +1670,14 @@ static void recv_generator(char *fname, 
2079                                 full_fname(backupptr));
2080                         unmake_file(back_file);
2081                         close(fd);
2082 -                       return;
2083 +                       goto cleanup;
2084                 }
2085                 fnamecmp_type = FNAMECMP_BACKUP;
2086         }
2087  
2088         if (verbose > 3) {
2089                 rprintf(FINFO, "gen mapped %s of size %.0f\n",
2090 -                       fnamecmp, (double)st.st_size);
2091 +                       fnamecmp, (double)sx.st.st_size);
2092         }
2093  
2094         if (verbose > 2)
2095 @@ -1618,8 +1695,16 @@ static void recv_generator(char *fname, 
2096                         iflags |= ITEM_BASIS_TYPE_FOLLOWS;
2097                 if (fnamecmp_type == FNAMECMP_FUZZY)
2098                         iflags |= ITEM_XNAME_FOLLOWS;
2099 -               itemize(file, -1, real_ret, &real_st, iflags, fnamecmp_type,
2100 +#ifdef SUPPORT_ACLS
2101 +               if (preserve_acls && real_ret == 0)
2102 +                       get_acl(fnamecmp, &real_sx);
2103 +#endif
2104 +               itemize(file, -1, real_ret, &real_sx, iflags, fnamecmp_type,
2105                         fuzzy_file ? F_BASENAME(fuzzy_file) : NULL);
2106 +#ifdef SUPPORT_ACLS
2107 +               if (preserve_acls)
2108 +                       free_acl(&real_sx);
2109 +#endif
2110         }
2111  
2112         if (!do_xfers) {
2113 @@ -1627,17 +1712,17 @@ static void recv_generator(char *fname, 
2114                 if (preserve_hard_links && F_IS_HLINKED(file))
2115                         hard_link_cluster(file, ndx, itemizing, code, -1);
2116  #endif
2117 -               return;
2118 +               goto cleanup;
2119         }
2120         if (read_batch)
2121 -               return;
2122 +               goto cleanup;
2123  
2124         if (statret != 0 || whole_file) {
2125                 write_sum_head(f_out, NULL);
2126 -               return;
2127 +               goto cleanup;
2128         }
2129  
2130 -       generate_and_send_sums(fd, st.st_size, f_out, f_copy);
2131 +       generate_and_send_sums(fd, sx.st.st_size, f_out, f_copy);
2132  
2133         if (f_copy >= 0) {
2134                 close(f_copy);
2135 @@ -1650,6 +1735,13 @@ static void recv_generator(char *fname, 
2136         }
2137  
2138         close(fd);
2139 +
2140 +  cleanup:
2141 +#ifdef SUPPORT_ACLS
2142 +       if (preserve_acls)
2143 +               free_acl(&sx);
2144 +#endif
2145 +       return;
2146  }
2147  
2148  void generate_files(int f_out, struct file_list *flist, char *local_name)
2149 @@ -1716,6 +1808,8 @@ void generate_files(int f_out, struct fi
2150          * notice that and let us know via the redo pipe (or its closing). */
2151         ignore_timeout = 1;
2152  
2153 +       dflt_perms = (ACCESSPERMS & ~orig_umask);
2154 +
2155         for (i = 0; i < flist->count; i++) {
2156                 struct file_struct *file = flist->files[i];
2157  
2158 --- old/hlink.c
2159 +++ new/hlink.c
2160 @@ -27,6 +27,7 @@ extern int verbose;
2161  extern int dry_run;
2162  extern int do_xfers;
2163  extern int link_dest;
2164 +extern int preserve_acls;
2165  extern int make_backups;
2166  extern int remove_source_files;
2167  extern int stdout_format_has_i;
2168 @@ -150,15 +151,19 @@ void init_hard_links(void)
2169  }
2170  
2171  static int maybe_hard_link(struct file_struct *file, int ndx,
2172 -                          const char *fname, int statret, STRUCT_STAT *stp,
2173 +                          const char *fname, int statret, statx *sxp,
2174                            const char *toname, STRUCT_STAT *to_stp,
2175                            int itemizing, enum logcode code)
2176  {
2177         if (statret == 0) {
2178 -               if (stp->st_dev == to_stp->st_dev
2179 -                && stp->st_ino == to_stp->st_ino) {
2180 +               if (sxp->st.st_dev == to_stp->st_dev
2181 +                && sxp->st.st_ino == to_stp->st_ino) {
2182                         if (itemizing) {
2183 -                               itemize(file, ndx, statret, stp,
2184 +#ifdef SUPPORT_ACLS
2185 +                               if (preserve_acls && !ACL_READY(*sxp))
2186 +                                       get_acl(fname, sxp);
2187 +#endif
2188 +                               itemize(file, ndx, statret, sxp,
2189                                         ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS,
2190                                         0, "");
2191                         }
2192 @@ -173,12 +178,12 @@ static int maybe_hard_link(struct file_s
2193                         return -1;
2194                 }
2195         }
2196 -       return hard_link_one(file, ndx, fname, statret, stp, toname,
2197 +       return hard_link_one(file, ndx, fname, statret, sxp, toname,
2198                              0, itemizing, code);
2199  }
2200  
2201  int hard_link_check(struct file_struct *file, int ndx, const char *fname,
2202 -                   int statret, STRUCT_STAT *stp, int itemizing,
2203 +                   int statret, statx *sxp, int itemizing,
2204                     enum logcode code, int skip)
2205  {
2206         int head;
2207 @@ -221,7 +226,7 @@ int hard_link_check(struct file_struct *
2208                                                  || st2.st_ino != st3.st_ino)
2209                                                         continue;
2210                                                 statret = 1;
2211 -                                               stp = &st3;
2212 +                                               sxp->st = st3;
2213                                                 if (verbose < 2 || !stdout_format_has_i) {
2214                                                         itemizing = 0;
2215                                                         code = FNONE;
2216 @@ -231,12 +236,16 @@ int hard_link_check(struct file_struct *
2217                                         if (!unchanged_file(cmpbuf, file, &st3))
2218                                                 continue;
2219                                         statret = 1;
2220 -                                       stp = &st3;
2221 -                                       if (unchanged_attrs(file, &st3))
2222 +                                       sxp->st = st3;
2223 +#ifdef SUPPORT_ACLS
2224 +                                       if (preserve_acls)
2225 +                                               get_acl(cmpbuf, sxp);
2226 +#endif
2227 +                                       if (unchanged_attrs(file, sxp))
2228                                                 break;
2229                                 } while (basis_dir[++j] != NULL);
2230                         }
2231 -                       maybe_hard_link(file, ndx, fname, statret, stp,
2232 +                       maybe_hard_link(file, ndx, fname, statret, sxp,
2233                                         toname, &st2, itemizing, code);
2234                         if (remove_source_files == 1 && do_xfers)
2235                                 send_msg_int(MSG_SUCCESS, ndx);
2236 @@ -249,7 +258,7 @@ int hard_link_check(struct file_struct *
2237  }
2238  
2239  int hard_link_one(struct file_struct *file, int ndx, const char *fname,
2240 -                 int statret, STRUCT_STAT *stp, const char *toname, int terse,
2241 +                 int statret, statx *sxp, const char *toname, int terse,
2242                   int itemizing, enum logcode code)
2243  {
2244         if (do_link(toname, fname)) {
2245 @@ -265,7 +274,11 @@ int hard_link_one(struct file_struct *fi
2246         }
2247  
2248         if (itemizing) {
2249 -               itemize(file, ndx, statret, stp,
2250 +#ifdef SUPPORT_ACLS
2251 +               if (preserve_acls && statret == 0 && !ACL_READY(*sxp))
2252 +                       get_acl(fname, sxp);
2253 +#endif
2254 +               itemize(file, ndx, statret, sxp,
2255                         ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS, 0,
2256                         terse ? "" : toname);
2257         }
2258 @@ -279,14 +292,15 @@ void hard_link_cluster(struct file_struc
2259  {
2260         char hlink1[MAXPATHLEN];
2261         char *hlink2;
2262 -       STRUCT_STAT st1, st2;
2263 +       statx sx;
2264 +       STRUCT_STAT st;
2265         int statret, ndx = master;
2266         struct hlist *hl = F_HL_LIST(file);
2267  
2268         hl->hlindex = FINISHED_LINK;
2269         if (dry_run)
2270                 hl->dest_used = dest_used + 1;
2271 -       if (link_stat(f_name(file, hlink1), &st1, 0) < 0)
2272 +       if (link_stat(f_name(file, hlink1), &st, 0) < 0)
2273                 return;
2274         if (!(file->flags & FLAG_HLINK_FIRST)) {
2275                 while (!(file->flags & FLAG_HLINK_LAST)) {
2276 @@ -302,9 +316,13 @@ void hard_link_cluster(struct file_struc
2277                 if (hl->hlindex != SKIPPED_LINK)
2278                         continue;
2279                 hlink2 = f_name(file, NULL);
2280 -               statret = link_stat(hlink2, &st2, 0);
2281 -               maybe_hard_link(file, ndx, hlink2, statret, &st2,
2282 -                               hlink1, &st1, itemizing, code);
2283 +               statret = link_stat(hlink2, &sx.st, 0);
2284 +               maybe_hard_link(file, ndx, hlink2, statret, &sx,
2285 +                               hlink1, &st, itemizing, code);
2286 +#ifdef SUPPORT_ACLS
2287 +               if (preserve_acls)
2288 +                       free_acl(&sx);
2289 +#endif
2290                 if (remove_source_files == 1 && do_xfers)
2291                         send_msg_int(MSG_SUCCESS, ndx);
2292                 hl->hlindex = FINISHED_LINK;
2293 --- old/lib/sysacls.c
2294 +++ new/lib/sysacls.c
2295 @@ -0,0 +1,3251 @@
2296 +/* 
2297 +   Unix SMB/CIFS implementation.
2298 +   Samba system utilities for ACL support.
2299 +   Copyright (C) Jeremy Allison 2000.
2300 +   
2301 +   This program is free software; you can redistribute it and/or modify
2302 +   it under the terms of the GNU General Public License as published by
2303 +   the Free Software Foundation; either version 2 of the License, or
2304 +   (at your option) any later version.
2305 +   
2306 +   This program is distributed in the hope that it will be useful,
2307 +   but WITHOUT ANY WARRANTY; without even the implied warranty of
2308 +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2309 +   GNU General Public License for more details.
2310 +   
2311 +   You should have received a copy of the GNU General Public License
2312 +   along with this program; if not, write to the Free Software
2313 +   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
2314 +*/
2315 +
2316 +#include "rsync.h"
2317 +#include "sysacls.h" /****** ADDED ******/
2318 +
2319 +#ifdef SUPPORT_ACLS
2320 +
2321 +/****** EXTRAS -- THESE ITEMS ARE NOT FROM THE SAMBA SOURCE ******/
2322 +#ifdef DEBUG
2323 +#undef DEBUG
2324 +#endif
2325 +#define DEBUG(x,y)
2326 +
2327 +void SAFE_FREE(void *mem)
2328 +{
2329 +       if (mem)
2330 +               free(mem);
2331 +}
2332 +
2333 +char *uidtoname(uid_t uid)
2334 +{
2335 +       static char idbuf[12];
2336 +       struct passwd *pw;
2337 +
2338 +       if ((pw = getpwuid(uid)) == NULL) {
2339 +               slprintf(idbuf, sizeof(idbuf)-1, "%ld", (long)uid);
2340 +               return idbuf;
2341 +       }
2342 +       return pw->pw_name;
2343 +}
2344 +/****** EXTRAS -- END ******/
2345 +
2346 +/*
2347 + This file wraps all differing system ACL interfaces into a consistent
2348 + one based on the POSIX interface. It also returns the correct errors
2349 + for older UNIX systems that don't support ACLs.
2350 +
2351 + The interfaces that each ACL implementation must support are as follows :
2352 +
2353 + int sys_acl_get_entry( SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
2354 + int sys_acl_get_tag_type( SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
2355 + int sys_acl_get_permset( SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p
2356 + void *sys_acl_get_qualifier( SMB_ACL_ENTRY_T entry_d)
2357 + SMB_ACL_T sys_acl_get_file( const char *path_p, SMB_ACL_TYPE_T type)
2358 + SMB_ACL_T sys_acl_get_fd(int fd)
2359 + int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset);
2360 + int sys_acl_add_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm);
2361 + char *sys_acl_to_text( SMB_ACL_T theacl, ssize_t *plen)
2362 + SMB_ACL_T sys_acl_init( int count)
2363 + int sys_acl_create_entry( SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
2364 + int sys_acl_set_tag_type( SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
2365 + int sys_acl_set_qualifier( SMB_ACL_ENTRY_T entry, void *qual)
2366 + int sys_acl_set_permset( SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
2367 + int sys_acl_valid( SMB_ACL_T theacl )
2368 + int sys_acl_set_file( const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
2369 + int sys_acl_set_fd( int fd, SMB_ACL_T theacl)
2370 + int sys_acl_delete_def_file(const char *path)
2371 +
2372 + This next one is not POSIX complient - but we *have* to have it !
2373 + More POSIX braindamage.
2374 +
2375 + int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
2376 +
2377 + The generic POSIX free is the following call. We split this into
2378 + several different free functions as we may need to add tag info
2379 + to structures when emulating the POSIX interface.
2380 +
2381 + int sys_acl_free( void *obj_p)
2382 +
2383 + The calls we actually use are :
2384 +
2385 + int sys_acl_free_text(char *text) - free acl_to_text
2386 + int sys_acl_free_acl(SMB_ACL_T posix_acl)
2387 + int sys_acl_free_qualifier(void *qualifier, SMB_ACL_TAG_T tagtype)
2388 +
2389 +*/
2390 +
2391 +#if defined(HAVE_POSIX_ACLS)
2392 +
2393 +/* Identity mapping - easy. */
2394 +
2395 +int sys_acl_get_entry( SMB_ACL_T the_acl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
2396 +{
2397 +       return acl_get_entry( the_acl, entry_id, entry_p);
2398 +}
2399 +
2400 +int sys_acl_get_tag_type( SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
2401 +{
2402 +       return acl_get_tag_type( entry_d, tag_type_p);
2403 +}
2404 +
2405 +int sys_acl_get_permset( SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
2406 +{
2407 +       return acl_get_permset( entry_d, permset_p);
2408 +}
2409 +
2410 +void *sys_acl_get_qualifier( SMB_ACL_ENTRY_T entry_d)
2411 +{
2412 +       return acl_get_qualifier( entry_d);
2413 +}
2414 +
2415 +SMB_ACL_T sys_acl_get_file( const char *path_p, SMB_ACL_TYPE_T type)
2416 +{
2417 +       return acl_get_file( path_p, type);
2418 +}
2419 +
2420 +SMB_ACL_T sys_acl_get_fd(int fd)
2421 +{
2422 +       return acl_get_fd(fd);
2423 +}
2424 +
2425 +int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset)
2426 +{
2427 +       return acl_clear_perms(permset);
2428 +}
2429 +
2430 +int sys_acl_add_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
2431 +{
2432 +       return acl_add_perm(permset, perm);
2433 +}
2434 +
2435 +int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
2436 +{
2437 +#if defined(HAVE_ACL_GET_PERM_NP)
2438 +       /*
2439 +        * Required for TrustedBSD-based ACL implementations where
2440 +        * non-POSIX.1e functions are denoted by a _np (non-portable)
2441 +        * suffix.
2442 +        */
2443 +       return acl_get_perm_np(permset, perm);
2444 +#else
2445 +       return acl_get_perm(permset, perm);
2446 +#endif
2447 +}
2448 +
2449 +char *sys_acl_to_text( SMB_ACL_T the_acl, ssize_t *plen)
2450 +{
2451 +       return acl_to_text( the_acl, plen);
2452 +}
2453 +
2454 +SMB_ACL_T sys_acl_init( int count)
2455 +{
2456 +       return acl_init(count);
2457 +}
2458 +
2459 +int sys_acl_create_entry( SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
2460 +{
2461 +       return acl_create_entry(pacl, pentry);
2462 +}
2463 +
2464 +int sys_acl_set_tag_type( SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
2465 +{
2466 +       return acl_set_tag_type(entry, tagtype);
2467 +}
2468 +
2469 +int sys_acl_set_qualifier( SMB_ACL_ENTRY_T entry, void *qual)
2470 +{
2471 +       return acl_set_qualifier(entry, qual);
2472 +}
2473 +
2474 +int sys_acl_set_permset( SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
2475 +{
2476 +       return acl_set_permset(entry, permset);
2477 +}
2478 +
2479 +int sys_acl_valid( SMB_ACL_T theacl )
2480 +{
2481 +       return acl_valid(theacl);
2482 +}
2483 +
2484 +int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
2485 +{
2486 +       return acl_set_file(name, acltype, theacl);
2487 +}
2488 +
2489 +int sys_acl_set_fd( int fd, SMB_ACL_T theacl)
2490 +{
2491 +       return acl_set_fd(fd, theacl);
2492 +}
2493 +
2494 +int sys_acl_delete_def_file(const char *name)
2495 +{
2496 +       return acl_delete_def_file(name);
2497 +}
2498 +
2499 +int sys_acl_free_text(char *text)
2500 +{
2501 +       return acl_free(text);
2502 +}
2503 +
2504 +int sys_acl_free_acl(SMB_ACL_T the_acl) 
2505 +{
2506 +       return acl_free(the_acl);
2507 +}
2508 +
2509 +int sys_acl_free_qualifier(void *qual, UNUSED(SMB_ACL_TAG_T tagtype))
2510 +{
2511 +       return acl_free(qual);
2512 +}
2513 +
2514 +#elif defined(HAVE_TRU64_ACLS)
2515 +/*
2516 + * The interface to DEC/Compaq Tru64 UNIX ACLs
2517 + * is based on Draft 13 of the POSIX spec which is
2518 + * slightly different from the Draft 16 interface.
2519 + * 
2520 + * Also, some of the permset manipulation functions
2521 + * such as acl_clear_perm() and acl_add_perm() appear
2522 + * to be broken on Tru64 so we have to manipulate
2523 + * the permission bits in the permset directly.
2524 + */
2525 +int sys_acl_get_entry( SMB_ACL_T the_acl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
2526 +{
2527 +       SMB_ACL_ENTRY_T entry;
2528 +
2529 +       if (entry_id == SMB_ACL_FIRST_ENTRY && acl_first_entry(the_acl) != 0) {
2530 +               return -1;
2531 +       }
2532 +
2533 +       errno = 0;
2534 +       if ((entry = acl_get_entry(the_acl)) != NULL) {
2535 +               *entry_p = entry;
2536 +               return 1;
2537 +       }
2538 +
2539 +       return errno ? -1 : 0;
2540 +}
2541 +
2542 +int sys_acl_get_tag_type( SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
2543 +{
2544 +       return acl_get_tag_type( entry_d, tag_type_p);
2545 +}
2546 +
2547 +int sys_acl_get_permset( SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
2548 +{
2549 +       return acl_get_permset( entry_d, permset_p);
2550 +}
2551 +
2552 +void *sys_acl_get_qualifier( SMB_ACL_ENTRY_T entry_d)
2553 +{
2554 +       return acl_get_qualifier( entry_d);
2555 +}
2556 +
2557 +SMB_ACL_T sys_acl_get_file( const char *path_p, SMB_ACL_TYPE_T type)
2558 +{
2559 +       return acl_get_file((char *)path_p, type);
2560 +}
2561 +
2562 +SMB_ACL_T sys_acl_get_fd(int fd)
2563 +{
2564 +       return acl_get_fd(fd, ACL_TYPE_ACCESS);
2565 +}
2566 +
2567 +int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset)
2568 +{
2569 +       *permset = 0;           /* acl_clear_perm() is broken on Tru64  */
2570 +
2571 +       return 0;
2572 +}
2573 +
2574 +int sys_acl_add_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
2575 +{
2576 +       if (perm & ~(SMB_ACL_READ | SMB_ACL_WRITE | SMB_ACL_EXECUTE)) {
2577 +               errno = EINVAL;
2578 +               return -1;
2579 +       }
2580 +
2581 +       *permset |= perm;       /* acl_add_perm() is broken on Tru64    */
2582 +
2583 +       return 0;
2584 +}
2585 +
2586 +int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
2587 +{
2588 +       return *permset & perm; /* Tru64 doesn't have acl_get_perm() */
2589 +}
2590 +
2591 +char *sys_acl_to_text( SMB_ACL_T the_acl, ssize_t *plen)
2592 +{
2593 +       return acl_to_text( the_acl, plen);
2594 +}
2595 +
2596 +SMB_ACL_T sys_acl_init( int count)
2597 +{
2598 +       return acl_init(count);
2599 +}
2600 +
2601 +int sys_acl_create_entry( SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
2602 +{
2603 +       SMB_ACL_ENTRY_T entry;
2604 +
2605 +       if ((entry = acl_create_entry(pacl)) == NULL) {
2606 +               return -1;
2607 +       }
2608 +
2609 +       *pentry = entry;
2610 +       return 0;
2611 +}
2612 +
2613 +int sys_acl_set_tag_type( SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
2614 +{
2615 +       return acl_set_tag_type(entry, tagtype);
2616 +}
2617 +
2618 +int sys_acl_set_qualifier( SMB_ACL_ENTRY_T entry, void *qual)
2619 +{
2620 +       return acl_set_qualifier(entry, qual);
2621 +}
2622 +
2623 +int sys_acl_set_permset( SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
2624 +{
2625 +       return acl_set_permset(entry, permset);
2626 +}
2627 +
2628 +int sys_acl_valid( SMB_ACL_T theacl )
2629 +{
2630 +       acl_entry_t     entry;
2631 +
2632 +       return acl_valid(theacl, &entry);
2633 +}
2634 +
2635 +int sys_acl_set_file( const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
2636 +{
2637 +       return acl_set_file((char *)name, acltype, theacl);
2638 +}
2639 +
2640 +int sys_acl_set_fd( int fd, SMB_ACL_T theacl)
2641 +{
2642 +       return acl_set_fd(fd, ACL_TYPE_ACCESS, theacl);
2643 +}
2644 +
2645 +int sys_acl_delete_def_file(const char *name)
2646 +{
2647 +       return acl_delete_def_file((char *)name);
2648 +}
2649 +
2650 +int sys_acl_free_text(char *text)
2651 +{
2652 +       /*
2653 +        * (void) cast and explicit return 0 are for DEC UNIX
2654 +        *  which just #defines acl_free_text() to be free()
2655 +        */
2656 +       (void) acl_free_text(text);
2657 +       return 0;
2658 +}
2659 +
2660 +int sys_acl_free_acl(SMB_ACL_T the_acl) 
2661 +{
2662 +       return acl_free(the_acl);
2663 +}
2664 +
2665 +int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype)
2666 +{
2667 +       return acl_free_qualifier(qual, tagtype);
2668 +}
2669 +
2670 +#elif defined(HAVE_UNIXWARE_ACLS) || defined(HAVE_SOLARIS_ACLS)
2671 +
2672 +/*
2673 + * Donated by Michael Davidson <md@sco.COM> for UnixWare / OpenUNIX.
2674 + * Modified by Toomas Soome <tsoome@ut.ee> for Solaris.
2675 + */
2676 +
2677 +/*
2678 + * Note that while this code implements sufficient functionality
2679 + * to support the sys_acl_* interfaces it does not provide all
2680 + * of the semantics of the POSIX ACL interfaces.
2681 + *
2682 + * In particular, an ACL entry descriptor (SMB_ACL_ENTRY_T) returned
2683 + * from a call to sys_acl_get_entry() should not be assumed to be
2684 + * valid after calling any of the following functions, which may
2685 + * reorder the entries in the ACL.
2686 + *
2687 + *     sys_acl_valid()
2688 + *     sys_acl_set_file()
2689 + *     sys_acl_set_fd()
2690 + */
2691 +
2692 +/*
2693 + * The only difference between Solaris and UnixWare / OpenUNIX is
2694 + * that the #defines for the ACL operations have different names
2695 + */
2696 +#if defined(HAVE_UNIXWARE_ACLS)
2697 +
2698 +#define        SETACL          ACL_SET
2699 +#define        GETACL          ACL_GET
2700 +#define        GETACLCNT       ACL_CNT
2701 +
2702 +#endif
2703 +
2704 +
2705 +int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p)
2706 +{
2707 +       if (entry_id != SMB_ACL_FIRST_ENTRY && entry_id != SMB_ACL_NEXT_ENTRY) {
2708 +               errno = EINVAL;
2709 +               return -1;
2710 +       }
2711 +
2712 +       if (entry_p == NULL) {
2713 +               errno = EINVAL;
2714 +               return -1;
2715 +       }
2716 +
2717 +       if (entry_id == SMB_ACL_FIRST_ENTRY) {
2718 +               acl_d->next = 0;
2719 +       }
2720 +
2721 +       if (acl_d->next < 0) {
2722 +               errno = EINVAL;
2723 +               return -1;
2724 +       }
2725 +
2726 +       if (acl_d->next >= acl_d->count) {
2727 +               return 0;
2728 +       }
2729 +
2730 +       *entry_p = &acl_d->acl[acl_d->next++];
2731 +
2732 +       return 1;
2733 +}
2734 +
2735 +int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p)
2736 +{
2737 +       *type_p = entry_d->a_type;
2738 +
2739 +       return 0;
2740 +}
2741 +
2742 +int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
2743 +{
2744 +       *permset_p = &entry_d->a_perm;
2745 +
2746 +       return 0;
2747 +}
2748 +
2749 +void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d)
2750 +{
2751 +       if (entry_d->a_type != SMB_ACL_USER
2752 +           && entry_d->a_type != SMB_ACL_GROUP) {
2753 +               errno = EINVAL;
2754 +               return NULL;
2755 +       }
2756 +
2757 +       return &entry_d->a_id;
2758 +}
2759 +
2760 +/*
2761 + * There is no way of knowing what size the ACL returned by
2762 + * GETACL will be unless you first call GETACLCNT which means
2763 + * making an additional system call.
2764 + *
2765 + * In the hope of avoiding the cost of the additional system
2766 + * call in most cases, we initially allocate enough space for
2767 + * an ACL with INITIAL_ACL_SIZE entries. If this turns out to
2768 + * be too small then we use GETACLCNT to find out the actual
2769 + * size, reallocate the ACL buffer, and then call GETACL again.
2770 + */
2771 +
2772 +#define        INITIAL_ACL_SIZE        16
2773 +
2774 +SMB_ACL_T sys_acl_get_file(const char *path_p, SMB_ACL_TYPE_T type)
2775 +{
2776 +       SMB_ACL_T       acl_d;
2777 +       int             count;          /* # of ACL entries allocated   */
2778 +       int             naccess;        /* # of access ACL entries      */
2779 +       int             ndefault;       /* # of default ACL entries     */
2780 +
2781 +       if (type != SMB_ACL_TYPE_ACCESS && type != SMB_ACL_TYPE_DEFAULT) {
2782 +               errno = EINVAL;
2783 +               return NULL;
2784 +       }
2785 +
2786 +       count = INITIAL_ACL_SIZE;
2787 +       if ((acl_d = sys_acl_init(count)) == NULL) {
2788 +               return NULL;
2789 +       }
2790 +
2791 +       /*
2792 +        * If there isn't enough space for the ACL entries we use
2793 +        * GETACLCNT to determine the actual number of ACL entries
2794 +        * reallocate and try again. This is in a loop because it
2795 +        * is possible that someone else could modify the ACL and
2796 +        * increase the number of entries between the call to
2797 +        * GETACLCNT and the call to GETACL.
2798 +        */
2799 +       while ((count = acl(path_p, GETACL, count, &acl_d->acl[0])) < 0
2800 +           && errno == ENOSPC) {
2801 +
2802 +               sys_acl_free_acl(acl_d);
2803 +
2804 +               if ((count = acl(path_p, GETACLCNT, 0, NULL)) < 0) {
2805 +                       return NULL;
2806 +               }
2807 +
2808 +               if ((acl_d = sys_acl_init(count)) == NULL) {
2809 +                       return NULL;
2810 +               }
2811 +       }
2812 +
2813 +       if (count < 0) {
2814 +               sys_acl_free_acl(acl_d);
2815 +               return NULL;
2816 +       }
2817 +
2818 +       /*
2819 +        * calculate the number of access and default ACL entries
2820 +        *
2821 +        * Note: we assume that the acl() system call returned a
2822 +        * well formed ACL which is sorted so that all of the
2823 +        * access ACL entries preceed any default ACL entries
2824 +        */
2825 +       for (naccess = 0; naccess < count; naccess++) {
2826 +               if (acl_d->acl[naccess].a_type & ACL_DEFAULT)
2827 +                       break;
2828 +       }
2829 +       ndefault = count - naccess;
2830 +       
2831 +       /*
2832 +        * if the caller wants the default ACL we have to copy
2833 +        * the entries down to the start of the acl[] buffer
2834 +        * and mask out the ACL_DEFAULT flag from the type field
2835 +        */
2836 +       if (type == SMB_ACL_TYPE_DEFAULT) {
2837 +               int     i, j;
2838 +
2839 +               for (i = 0, j = naccess; i < ndefault; i++, j++) {
2840 +                       acl_d->acl[i] = acl_d->acl[j];
2841 +                       acl_d->acl[i].a_type &= ~ACL_DEFAULT;
2842 +               }
2843 +
2844 +               acl_d->count = ndefault;
2845 +       } else {
2846 +               acl_d->count = naccess;
2847 +       }
2848 +
2849 +       return acl_d;
2850 +}
2851 +
2852 +SMB_ACL_T sys_acl_get_fd(int fd)
2853 +{
2854 +       SMB_ACL_T       acl_d;
2855 +       int             count;          /* # of ACL entries allocated   */
2856 +       int             naccess;        /* # of access ACL entries      */
2857 +
2858 +       count = INITIAL_ACL_SIZE;
2859 +       if ((acl_d = sys_acl_init(count)) == NULL) {
2860 +               return NULL;
2861 +       }
2862 +
2863 +       while ((count = facl(fd, GETACL, count, &acl_d->acl[0])) < 0
2864 +           && errno == ENOSPC) {
2865 +
2866 +               sys_acl_free_acl(acl_d);
2867 +
2868 +               if ((count = facl(fd, GETACLCNT, 0, NULL)) < 0) {
2869 +                       return NULL;
2870 +               }
2871 +
2872 +               if ((acl_d = sys_acl_init(count)) == NULL) {
2873 +                       return NULL;
2874 +               }
2875 +       }
2876 +
2877 +       if (count < 0) {
2878 +               sys_acl_free_acl(acl_d);
2879 +               return NULL;
2880 +       }
2881 +
2882 +       /*
2883 +        * calculate the number of access ACL entries
2884 +        */
2885 +       for (naccess = 0; naccess < count; naccess++) {
2886 +               if (acl_d->acl[naccess].a_type & ACL_DEFAULT)
2887 +                       break;
2888 +       }
2889 +       
2890 +       acl_d->count = naccess;
2891 +
2892 +       return acl_d;
2893 +}
2894 +
2895 +int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d)
2896 +{
2897 +       *permset_d = 0;
2898 +
2899 +       return 0;
2900 +}
2901 +
2902 +int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
2903 +{
2904 +       if (perm != SMB_ACL_READ && perm != SMB_ACL_WRITE
2905 +           && perm != SMB_ACL_EXECUTE) {
2906 +               errno = EINVAL;
2907 +               return -1;
2908 +       }
2909 +
2910 +       if (permset_d == NULL) {
2911 +               errno = EINVAL;
2912 +               return -1;
2913 +       }
2914 +
2915 +       *permset_d |= perm;
2916 +
2917 +       return 0;
2918 +}
2919 +
2920 +int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
2921 +{
2922 +       return *permset_d & perm;
2923 +}
2924 +
2925 +char *sys_acl_to_text(SMB_ACL_T acl_d, ssize_t *len_p)
2926 +{
2927 +       int     i;
2928 +       int     len, maxlen;
2929 +       char    *text;
2930 +
2931 +       /*
2932 +        * use an initial estimate of 20 bytes per ACL entry
2933 +        * when allocating memory for the text representation
2934 +        * of the ACL
2935 +        */
2936 +       len     = 0;
2937 +       maxlen  = 20 * acl_d->count;
2938 +       if ((text = SMB_MALLOC(maxlen)) == NULL) {
2939 +               errno = ENOMEM;
2940 +               return NULL;
2941 +       }
2942 +
2943 +       for (i = 0; i < acl_d->count; i++) {
2944 +               struct acl      *ap     = &acl_d->acl[i];
2945 +               struct group    *gr;
2946 +               char            tagbuf[12];
2947 +               char            idbuf[12];
2948 +               char            *tag;
2949 +               char            *id     = "";
2950 +               char            perms[4];
2951 +               int             nbytes;
2952 +
2953 +               switch (ap->a_type) {
2954 +                       /*
2955 +                        * for debugging purposes it's probably more
2956 +                        * useful to dump unknown tag types rather
2957 +                        * than just returning an error
2958 +                        */
2959 +                       default:
2960 +                               slprintf(tagbuf, sizeof(tagbuf)-1, "0x%x",
2961 +                                       ap->a_type);
2962 +                               tag = tagbuf;
2963 +                               slprintf(idbuf, sizeof(idbuf)-1, "%ld",
2964 +                                       (long)ap->a_id);
2965 +                               id = idbuf;
2966 +                               break;
2967 +
2968 +                       case SMB_ACL_USER:
2969 +                               id = uidtoname(ap->a_id);
2970 +                       case SMB_ACL_USER_OBJ:
2971 +                               tag = "user";
2972 +                               break;
2973 +
2974 +                       case SMB_ACL_GROUP:
2975 +                               if ((gr = getgrgid(ap->a_id)) == NULL) {
2976 +                                       slprintf(idbuf, sizeof(idbuf)-1, "%ld",
2977 +                                               (long)ap->a_id);
2978 +                                       id = idbuf;
2979 +                               } else {
2980 +                                       id = gr->gr_name;
2981 +                               }
2982 +                       case SMB_ACL_GROUP_OBJ:
2983 +                               tag = "group";
2984 +                               break;
2985 +
2986 +                       case SMB_ACL_OTHER:
2987 +                               tag = "other";
2988 +                               break;
2989 +
2990 +                       case SMB_ACL_MASK:
2991 +                               tag = "mask";
2992 +                               break;
2993 +
2994 +               }
2995 +
2996 +               perms[0] = (ap->a_perm & SMB_ACL_READ) ? 'r' : '-';
2997 +               perms[1] = (ap->a_perm & SMB_ACL_WRITE) ? 'w' : '-';
2998 +               perms[2] = (ap->a_perm & SMB_ACL_EXECUTE) ? 'x' : '-';
2999 +               perms[3] = '\0';
3000 +
3001 +               /*          <tag>      :  <qualifier>   :  rwx \n  \0 */
3002 +               nbytes = strlen(tag) + 1 + strlen(id) + 1 + 3 + 1 + 1;
3003 +
3004 +               /*
3005 +                * If this entry would overflow the buffer
3006 +                * allocate enough additional memory for this
3007 +                * entry and an estimate of another 20 bytes
3008 +                * for each entry still to be processed
3009 +                */
3010 +               if ((len + nbytes) > maxlen) {
3011 +                       char *oldtext = text;
3012 +
3013 +                       maxlen += nbytes + 20 * (acl_d->count - i);
3014 +
3015 +                       if ((text = SMB_REALLOC(oldtext, maxlen)) == NULL) {
3016 +                               SAFE_FREE(oldtext);
3017 +                               errno = ENOMEM;
3018 +                               return NULL;
3019 +                       }
3020 +               }
3021 +
3022 +               slprintf(&text[len], nbytes-1, "%s:%s:%s\n", tag, id, perms);
3023 +               len += nbytes - 1;
3024 +       }
3025 +
3026 +       if (len_p)
3027 +               *len_p = len;
3028 +
3029 +       return text;
3030 +}
3031 +
3032 +SMB_ACL_T sys_acl_init(int count)
3033 +{
3034 +       SMB_ACL_T       a;
3035 +
3036 +       if (count < 0) {
3037 +               errno = EINVAL;
3038 +               return NULL;
3039 +       }
3040 +
3041 +       /*
3042 +        * note that since the definition of the structure pointed
3043 +        * to by the SMB_ACL_T includes the first element of the
3044 +        * acl[] array, this actually allocates an ACL with room
3045 +        * for (count+1) entries
3046 +        */
3047 +       if ((a = (SMB_ACL_T)SMB_MALLOC(sizeof(struct SMB_ACL_T) + count * sizeof(struct acl))) == NULL) {
3048 +               errno = ENOMEM;
3049 +               return NULL;
3050 +       }
3051 +
3052 +       a->size = count + 1;
3053 +       a->count = 0;
3054 +       a->next = -1;
3055 +
3056 +       return a;
3057 +}
3058 +
3059 +
3060 +int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p)
3061 +{
3062 +       SMB_ACL_T       acl_d;
3063 +       SMB_ACL_ENTRY_T entry_d;
3064 +
3065 +       if (acl_p == NULL || entry_p == NULL || (acl_d = *acl_p) == NULL) {
3066 +               errno = EINVAL;
3067 +               return -1;
3068 +       }
3069 +
3070 +       if (acl_d->count >= acl_d->size) {
3071 +               errno = ENOSPC;
3072 +               return -1;
3073 +       }
3074 +
3075 +       entry_d         = &acl_d->acl[acl_d->count++];
3076 +       entry_d->a_type = 0;
3077 +       entry_d->a_id   = -1;
3078 +       entry_d->a_perm = 0;
3079 +       *entry_p        = entry_d;
3080 +
3081 +       return 0;
3082 +}
3083 +
3084 +int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type)
3085 +{
3086 +       switch (tag_type) {
3087 +               case SMB_ACL_USER:
3088 +               case SMB_ACL_USER_OBJ:
3089 +               case SMB_ACL_GROUP:
3090 +               case SMB_ACL_GROUP_OBJ:
3091 +               case SMB_ACL_OTHER:
3092 +               case SMB_ACL_MASK:
3093 +                       entry_d->a_type = tag_type;
3094 +                       break;
3095 +               default:
3096 +                       errno = EINVAL;
3097 +                       return -1;
3098 +       }
3099 +
3100 +       return 0;
3101 +}
3102 +
3103 +int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p)
3104 +{
3105 +       if (entry_d->a_type != SMB_ACL_GROUP
3106 +           && entry_d->a_type != SMB_ACL_USER) {
3107 +               errno = EINVAL;
3108 +               return -1;
3109 +       }
3110 +
3111 +       entry_d->a_id = *((id_t *)qual_p);
3112 +
3113 +       return 0;
3114 +}
3115 +
3116 +int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d)
3117 +{
3118 +       if (*permset_d & ~(SMB_ACL_READ|SMB_ACL_WRITE|SMB_ACL_EXECUTE)) {
3119 +               return EINVAL;
3120 +       }
3121 +
3122 +       entry_d->a_perm = *permset_d;
3123 +
3124 +       return 0;
3125 +}
3126 +
3127 +/*
3128 + * sort the ACL and check it for validity
3129 + *
3130 + * if it's a minimal ACL with only 4 entries then we
3131 + * need to recalculate the mask permissions to make
3132 + * sure that they are the same as the GROUP_OBJ
3133 + * permissions as required by the UnixWare acl() system call.
3134 + *
3135 + * (note: since POSIX allows minimal ACLs which only contain
3136 + * 3 entries - ie there is no mask entry - we should, in theory,
3137 + * check for this and add a mask entry if necessary - however
3138 + * we "know" that the caller of this interface always specifies
3139 + * a mask so, in practice "this never happens" (tm) - if it *does*
3140 + * happen aclsort() will fail and return an error and someone will
3141 + * have to fix it ...)
3142 + */
3143 +
3144 +static int acl_sort(SMB_ACL_T acl_d)
3145 +{
3146 +       int     fixmask = (acl_d->count <= 4);
3147 +
3148 +       if (aclsort(acl_d->count, fixmask, acl_d->acl) != 0) {
3149 +               errno = EINVAL;
3150 +               return -1;
3151 +       }
3152 +       return 0;
3153 +}
3154
3155 +int sys_acl_valid(SMB_ACL_T acl_d)
3156 +{
3157 +       return acl_sort(acl_d);
3158 +}
3159 +
3160 +int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d)
3161 +{
3162 +       struct stat     s;
3163 +       struct acl      *acl_p;
3164 +       int             acl_count;
3165 +       struct acl      *acl_buf        = NULL;
3166 +       int             ret;
3167 +
3168 +       if (type != SMB_ACL_TYPE_ACCESS && type != SMB_ACL_TYPE_DEFAULT) {
3169 +               errno = EINVAL;
3170 +               return -1;
3171 +       }
3172 +
3173 +       if (acl_sort(acl_d) != 0) {
3174 +               return -1;
3175 +       }
3176 +
3177 +       acl_p           = &acl_d->acl[0];
3178 +       acl_count       = acl_d->count;
3179 +
3180 +       /*
3181 +        * if it's a directory there is extra work to do
3182 +        * since the acl() system call will replace both
3183 +        * the access ACLs and the default ACLs (if any)
3184 +        */
3185 +       if (stat(name, &s) != 0) {
3186 +               return -1;
3187 +       }
3188 +       if (S_ISDIR(s.st_mode)) {
3189 +               SMB_ACL_T       acc_acl;
3190 +               SMB_ACL_T       def_acl;
3191 +               SMB_ACL_T       tmp_acl;
3192 +               int             i;
3193 +
3194 +               if (type == SMB_ACL_TYPE_ACCESS) {
3195 +                       acc_acl = acl_d;
3196 +                       def_acl = tmp_acl = sys_acl_get_file(name, SMB_ACL_TYPE_DEFAULT);
3197 +
3198 +               } else {
3199 +                       def_acl = acl_d;
3200 +                       acc_acl = tmp_acl = sys_acl_get_file(name, SMB_ACL_TYPE_ACCESS);
3201 +               }
3202 +
3203 +               if (tmp_acl == NULL) {
3204 +                       return -1;
3205 +               }
3206 +
3207 +               /*
3208 +                * allocate a temporary buffer for the complete ACL
3209 +                */
3210 +               acl_count = acc_acl->count + def_acl->count;
3211 +               acl_p = acl_buf = SMB_MALLOC_ARRAY(struct acl, acl_count);
3212 +
3213 +               if (acl_buf == NULL) {
3214 +                       sys_acl_free_acl(tmp_acl);
3215 +                       errno = ENOMEM;
3216 +                       return -1;
3217 +               }
3218 +
3219 +               /*
3220 +                * copy the access control and default entries into the buffer
3221 +                */
3222 +               memcpy(&acl_buf[0], &acc_acl->acl[0],
3223 +                       acc_acl->count * sizeof(acl_buf[0]));
3224 +
3225 +               memcpy(&acl_buf[acc_acl->count], &def_acl->acl[0],
3226 +                       def_acl->count * sizeof(acl_buf[0]));
3227 +
3228 +               /*
3229 +                * set the ACL_DEFAULT flag on the default entries
3230 +                */
3231 +               for (i = acc_acl->count; i < acl_count; i++) {
3232 +                       acl_buf[i].a_type |= ACL_DEFAULT;
3233 +               }
3234 +
3235 +               sys_acl_free_acl(tmp_acl);
3236 +
3237 +       } else if (type != SMB_ACL_TYPE_ACCESS) {
3238 +               errno = EINVAL;
3239 +               return -1;
3240 +       }
3241 +
3242 +       ret = acl(name, SETACL, acl_count, acl_p);
3243 +
3244 +       SAFE_FREE(acl_buf);
3245 +
3246 +       return ret;
3247 +}
3248 +
3249 +int sys_acl_set_fd(int fd, SMB_ACL_T acl_d)
3250 +{
3251 +       if (acl_sort(acl_d) != 0) {
3252 +               return -1;
3253 +       }
3254 +
3255 +       return facl(fd, SETACL, acl_d->count, &acl_d->acl[0]);
3256 +}
3257 +
3258 +int sys_acl_delete_def_file(const char *path)
3259 +{
3260 +       SMB_ACL_T       acl_d;
3261 +       int             ret;
3262 +
3263 +       /*
3264 +        * fetching the access ACL and rewriting it has
3265 +        * the effect of deleting the default ACL
3266 +        */
3267 +       if ((acl_d = sys_acl_get_file(path, SMB_ACL_TYPE_ACCESS)) == NULL) {
3268 +               return -1;
3269 +       }
3270 +
3271 +       ret = acl(path, SETACL, acl_d->count, acl_d->acl);
3272 +
3273 +       sys_acl_free_acl(acl_d);
3274 +       
3275 +       return ret;
3276 +}
3277 +
3278 +int sys_acl_free_text(char *text)
3279 +{
3280 +       SAFE_FREE(text);
3281 +       return 0;
3282 +}
3283 +
3284 +int sys_acl_free_acl(SMB_ACL_T acl_d) 
3285 +{
3286 +       SAFE_FREE(acl_d);
3287 +       return 0;
3288 +}
3289 +
3290 +int sys_acl_free_qualifier(UNUSED(void *qual), UNUSED(SMB_ACL_TAG_T tagtype))
3291 +{
3292 +       return 0;
3293 +}
3294 +
3295 +#elif defined(HAVE_HPUX_ACLS)
3296 +#include <dl.h>
3297 +
3298 +/*
3299 + * Based on the Solaris/SCO code - with modifications.
3300 + */
3301 +
3302 +/*
3303 + * Note that while this code implements sufficient functionality
3304 + * to support the sys_acl_* interfaces it does not provide all
3305 + * of the semantics of the POSIX ACL interfaces.
3306 + *
3307 + * In particular, an ACL entry descriptor (SMB_ACL_ENTRY_T) returned
3308 + * from a call to sys_acl_get_entry() should not be assumed to be
3309 + * valid after calling any of the following functions, which may
3310 + * reorder the entries in the ACL.
3311 + *
3312 + *     sys_acl_valid()
3313 + *     sys_acl_set_file()
3314 + *     sys_acl_set_fd()
3315 + */
3316 +
3317 +/* This checks if the POSIX ACL system call is defined */
3318 +/* which basically corresponds to whether JFS 3.3 or   */
3319 +/* higher is installed. If acl() was called when it    */
3320 +/* isn't defined, it causes the process to core dump   */
3321 +/* so it is important to check this and avoid acl()    */
3322 +/* calls if it isn't there.                            */
3323 +
3324 +static BOOL hpux_acl_call_presence(void)
3325 +{
3326 +
3327 +       shl_t handle = NULL;
3328 +       void *value;
3329 +       int ret_val=0;
3330 +       static BOOL already_checked=0;
3331 +
3332 +       if(already_checked)
3333 +               return True;
3334 +
3335 +
3336 +       ret_val = shl_findsym(&handle, "acl", TYPE_PROCEDURE, &value);
3337 +
3338 +       if(ret_val != 0) {
3339 +               DEBUG(5, ("hpux_acl_call_presence: shl_findsym() returned %d, errno = %d, error %s\n",
3340 +                       ret_val, errno, strerror(errno)));
3341 +               DEBUG(5,("hpux_acl_call_presence: acl() system call is not present. Check if you have JFS 3.3 and above?\n"));
3342 +               return False;
3343 +       }
3344 +
3345 +       DEBUG(10,("hpux_acl_call_presence: acl() system call is present. We have JFS 3.3 or above \n"));
3346 +
3347 +       already_checked = True;
3348 +       return True;
3349 +}
3350 +
3351 +int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p)
3352 +{
3353 +       if (entry_id != SMB_ACL_FIRST_ENTRY && entry_id != SMB_ACL_NEXT_ENTRY) {
3354 +               errno = EINVAL;
3355 +               return -1;
3356 +       }
3357 +
3358 +       if (entry_p == NULL) {
3359 +               errno = EINVAL;
3360 +               return -1;
3361 +       }
3362 +
3363 +       if (entry_id == SMB_ACL_FIRST_ENTRY) {
3364 +               acl_d->next = 0;
3365 +       }
3366 +
3367 +       if (acl_d->next < 0) {
3368 +               errno = EINVAL;
3369 +               return -1;
3370 +       }
3371 +
3372 +       if (acl_d->next >= acl_d->count) {
3373 +               return 0;
3374 +       }
3375 +
3376 +       *entry_p = &acl_d->acl[acl_d->next++];
3377 +
3378 +       return 1;
3379 +}
3380 +
3381 +int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p)
3382 +{
3383 +       *type_p = entry_d->a_type;
3384 +
3385 +       return 0;
3386 +}
3387 +
3388 +int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
3389 +{
3390 +       *permset_p = &entry_d->a_perm;
3391 +
3392 +       return 0;
3393 +}
3394 +
3395 +void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d)
3396 +{
3397 +       if (entry_d->a_type != SMB_ACL_USER
3398 +           && entry_d->a_type != SMB_ACL_GROUP) {
3399 +               errno = EINVAL;
3400 +               return NULL;
3401 +       }
3402 +
3403 +       return &entry_d->a_id;
3404 +}
3405 +
3406 +/*
3407 + * There is no way of knowing what size the ACL returned by
3408 + * ACL_GET will be unless you first call ACL_CNT which means
3409 + * making an additional system call.
3410 + *
3411 + * In the hope of avoiding the cost of the additional system
3412 + * call in most cases, we initially allocate enough space for
3413 + * an ACL with INITIAL_ACL_SIZE entries. If this turns out to
3414 + * be too small then we use ACL_CNT to find out the actual
3415 + * size, reallocate the ACL buffer, and then call ACL_GET again.
3416 + */
3417 +
3418 +#define        INITIAL_ACL_SIZE        16
3419 +
3420 +SMB_ACL_T sys_acl_get_file(const char *path_p, SMB_ACL_TYPE_T type)
3421 +{
3422 +       SMB_ACL_T       acl_d;
3423 +       int             count;          /* # of ACL entries allocated   */
3424 +       int             naccess;        /* # of access ACL entries      */
3425 +       int             ndefault;       /* # of default ACL entries     */
3426 +
3427 +       if(hpux_acl_call_presence() == False) {
3428 +               /* Looks like we don't have the acl() system call on HPUX. 
3429 +                * May be the system doesn't have the latest version of JFS.
3430 +                */
3431 +               return NULL; 
3432 +       }
3433 +
3434 +       if (type != SMB_ACL_TYPE_ACCESS && type != SMB_ACL_TYPE_DEFAULT) {
3435 +               errno = EINVAL;
3436 +               return NULL;
3437 +       }
3438 +
3439 +       count = INITIAL_ACL_SIZE;
3440 +       if ((acl_d = sys_acl_init(count)) == NULL) {
3441 +               return NULL;
3442 +       }
3443 +
3444 +       /*
3445 +        * If there isn't enough space for the ACL entries we use
3446 +        * ACL_CNT to determine the actual number of ACL entries
3447 +        * reallocate and try again. This is in a loop because it
3448 +        * is possible that someone else could modify the ACL and
3449 +        * increase the number of entries between the call to
3450 +        * ACL_CNT and the call to ACL_GET.
3451 +        */
3452 +       while ((count = acl(path_p, ACL_GET, count, &acl_d->acl[0])) < 0 && errno == ENOSPC) {
3453 +
3454 +               sys_acl_free_acl(acl_d);
3455 +
3456 +               if ((count = acl(path_p, ACL_CNT, 0, NULL)) < 0) {
3457 +                       return NULL;
3458 +               }
3459 +
3460 +               if ((acl_d = sys_acl_init(count)) == NULL) {
3461 +                       return NULL;
3462 +               }
3463 +       }
3464 +
3465 +       if (count < 0) {
3466 +               sys_acl_free_acl(acl_d);
3467 +               return NULL;
3468 +       }
3469 +
3470 +       /*
3471 +        * calculate the number of access and default ACL entries
3472 +        *
3473 +        * Note: we assume that the acl() system call returned a
3474 +        * well formed ACL which is sorted so that all of the
3475 +        * access ACL entries preceed any default ACL entries
3476 +        */
3477 +       for (naccess = 0; naccess < count; naccess++) {
3478 +               if (acl_d->acl[naccess].a_type & ACL_DEFAULT)
3479 +                       break;
3480 +       }
3481 +       ndefault = count - naccess;
3482 +       
3483 +       /*
3484 +        * if the caller wants the default ACL we have to copy
3485 +        * the entries down to the start of the acl[] buffer
3486 +        * and mask out the ACL_DEFAULT flag from the type field
3487 +        */
3488 +       if (type == SMB_ACL_TYPE_DEFAULT) {
3489 +               int     i, j;
3490 +
3491 +               for (i = 0, j = naccess; i < ndefault; i++, j++) {
3492 +                       acl_d->acl[i] = acl_d->acl[j];
3493 +                       acl_d->acl[i].a_type &= ~ACL_DEFAULT;
3494 +               }
3495 +
3496 +               acl_d->count = ndefault;
3497 +       } else {
3498 +               acl_d->count = naccess;
3499 +       }
3500 +
3501 +       return acl_d;
3502 +}
3503 +
3504 +SMB_ACL_T sys_acl_get_fd(int fd)
3505 +{
3506 +       /*
3507 +        * HPUX doesn't have the facl call. Fake it using the path.... JRA.
3508 +        */
3509 +
3510 +       files_struct *fsp = file_find_fd(fd);
3511 +
3512 +       if (fsp == NULL) {
3513 +               errno = EBADF;
3514 +               return NULL;
3515 +       }
3516 +
3517 +       /*
3518 +        * We know we're in the same conn context. So we
3519 +        * can use the relative path.
3520 +        */
3521 +
3522 +       return sys_acl_get_file(fsp->fsp_name, SMB_ACL_TYPE_ACCESS);
3523 +}
3524 +
3525 +int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d)
3526 +{
3527 +       *permset_d = 0;
3528 +
3529 +       return 0;
3530 +}
3531 +
3532 +int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
3533 +{
3534 +       if (perm != SMB_ACL_READ && perm != SMB_ACL_WRITE
3535 +           && perm != SMB_ACL_EXECUTE) {
3536 +               errno = EINVAL;
3537 +               return -1;
3538 +       }
3539 +
3540 +       if (permset_d == NULL) {
3541 +               errno = EINVAL;
3542 +               return -1;
3543 +       }
3544 +
3545 +       *permset_d |= perm;
3546 +
3547 +       return 0;
3548 +}
3549 +
3550 +int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
3551 +{
3552 +       return *permset_d & perm;
3553 +}
3554 +
3555 +char *sys_acl_to_text(SMB_ACL_T acl_d, ssize_t *len_p)
3556 +{
3557 +       int     i;
3558 +       int     len, maxlen;
3559 +       char    *text;
3560 +
3561 +       /*
3562 +        * use an initial estimate of 20 bytes per ACL entry
3563 +        * when allocating memory for the text representation
3564 +        * of the ACL
3565 +        */
3566 +       len     = 0;
3567 +       maxlen  = 20 * acl_d->count;
3568 +       if ((text = SMB_MALLOC(maxlen)) == NULL) {
3569 +               errno = ENOMEM;
3570 +               return NULL;
3571 +       }
3572 +
3573 +       for (i = 0; i < acl_d->count; i++) {
3574 +               struct acl      *ap     = &acl_d->acl[i];
3575 +               struct group    *gr;
3576 +               char            tagbuf[12];
3577 +               char            idbuf[12];
3578 +               char            *tag;
3579 +               char            *id     = "";
3580 +               char            perms[4];
3581 +               int             nbytes;
3582 +
3583 +               switch (ap->a_type) {
3584 +                       /*
3585 +                        * for debugging purposes it's probably more
3586 +                        * useful to dump unknown tag types rather
3587 +                        * than just returning an error
3588 +                        */
3589 +                       default:
3590 +                               slprintf(tagbuf, sizeof(tagbuf)-1, "0x%x",
3591 +                                       ap->a_type);
3592 +                               tag = tagbuf;
3593 +                               slprintf(idbuf, sizeof(idbuf)-1, "%ld",
3594 +                                       (long)ap->a_id);
3595 +                               id = idbuf;
3596 +                               break;
3597 +
3598 +                       case SMB_ACL_USER:
3599 +                               id = uidtoname(ap->a_id);
3600 +                       case SMB_ACL_USER_OBJ:
3601 +                               tag = "user";
3602 +                               break;
3603 +
3604 +                       case SMB_ACL_GROUP:
3605 +                               if ((gr = getgrgid(ap->a_id)) == NULL) {
3606 +                                       slprintf(idbuf, sizeof(idbuf)-1, "%ld",
3607 +                                               (long)ap->a_id);
3608 +                                       id = idbuf;
3609 +                               } else {
3610 +                                       id = gr->gr_name;
3611 +                               }
3612 +                       case SMB_ACL_GROUP_OBJ:
3613 +                               tag = "group";
3614 +                               break;
3615 +
3616 +                       case SMB_ACL_OTHER:
3617 +                               tag = "other";
3618 +                               break;
3619 +
3620 +                       case SMB_ACL_MASK:
3621 +                               tag = "mask";
3622 +                               break;
3623 +
3624 +               }
3625 +
3626 +               perms[0] = (ap->a_perm & SMB_ACL_READ) ? 'r' : '-';
3627 +               perms[1] = (ap->a_perm & SMB_ACL_WRITE) ? 'w' : '-';
3628 +               perms[2] = (ap->a_perm & SMB_ACL_EXECUTE) ? 'x' : '-';
3629 +               perms[3] = '\0';
3630 +
3631 +               /*          <tag>      :  <qualifier>   :  rwx \n  \0 */
3632 +               nbytes = strlen(tag) + 1 + strlen(id) + 1 + 3 + 1 + 1;
3633 +
3634 +               /*
3635 +                * If this entry would overflow the buffer
3636 +                * allocate enough additional memory for this
3637 +                * entry and an estimate of another 20 bytes
3638 +                * for each entry still to be processed
3639 +                */
3640 +               if ((len + nbytes) > maxlen) {
3641 +                       char *oldtext = text;
3642 +
3643 +                       maxlen += nbytes + 20 * (acl_d->count - i);
3644 +
3645 +                       if ((text = SMB_REALLOC(oldtext, maxlen)) == NULL) {
3646 +                               free(oldtext);
3647 +                               errno = ENOMEM;
3648 +                               return NULL;
3649 +                       }
3650 +               }
3651 +
3652 +               slprintf(&text[len], nbytes-1, "%s:%s:%s\n", tag, id, perms);
3653 +               len += nbytes - 1;
3654 +       }
3655 +
3656 +       if (len_p)
3657 +               *len_p = len;
3658 +
3659 +       return text;
3660 +}
3661 +
3662 +SMB_ACL_T sys_acl_init(int count)
3663 +{
3664 +       SMB_ACL_T       a;
3665 +
3666 +       if (count < 0) {
3667 +               errno = EINVAL;
3668 +               return NULL;
3669 +       }
3670 +
3671 +       /*
3672 +        * note that since the definition of the structure pointed
3673 +        * to by the SMB_ACL_T includes the first element of the
3674 +        * acl[] array, this actually allocates an ACL with room
3675 +        * for (count+1) entries
3676 +        */
3677 +       if ((a = SMB_MALLOC(sizeof(struct SMB_ACL_T) + count * sizeof(struct acl))) == NULL) {
3678 +               errno = ENOMEM;
3679 +               return NULL;
3680 +       }
3681 +
3682 +       a->size = count + 1;
3683 +       a->count = 0;
3684 +       a->next = -1;
3685 +
3686 +       return a;
3687 +}
3688 +
3689 +
3690 +int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p)
3691 +{
3692 +       SMB_ACL_T       acl_d;
3693 +       SMB_ACL_ENTRY_T entry_d;
3694 +
3695 +       if (acl_p == NULL || entry_p == NULL || (acl_d = *acl_p) == NULL) {
3696 +               errno = EINVAL;
3697 +               return -1;
3698 +       }
3699 +
3700 +       if (acl_d->count >= acl_d->size) {
3701 +               errno = ENOSPC;
3702 +               return -1;
3703 +       }
3704 +
3705 +       entry_d         = &acl_d->acl[acl_d->count++];
3706 +       entry_d->a_type = 0;
3707 +       entry_d->a_id   = -1;
3708 +       entry_d->a_perm = 0;
3709 +       *entry_p        = entry_d;
3710 +
3711 +       return 0;
3712 +}
3713 +
3714 +int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type)
3715 +{
3716 +       switch (tag_type) {
3717 +               case SMB_ACL_USER:
3718 +               case SMB_ACL_USER_OBJ:
3719 +               case SMB_ACL_GROUP:
3720 +               case SMB_ACL_GROUP_OBJ:
3721 +               case SMB_ACL_OTHER:
3722 +               case SMB_ACL_MASK:
3723 +                       entry_d->a_type = tag_type;
3724 +                       break;
3725 +               default:
3726 +                       errno = EINVAL;
3727 +                       return -1;
3728 +       }
3729 +
3730 +       return 0;
3731 +}
3732 +
3733 +int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p)
3734 +{
3735 +       if (entry_d->a_type != SMB_ACL_GROUP
3736 +           && entry_d->a_type != SMB_ACL_USER) {
3737 +               errno = EINVAL;
3738 +               return -1;
3739 +       }
3740 +
3741 +       entry_d->a_id = *((id_t *)qual_p);
3742 +
3743 +       return 0;
3744 +}
3745 +
3746 +int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d)
3747 +{
3748 +       if (*permset_d & ~(SMB_ACL_READ|SMB_ACL_WRITE|SMB_ACL_EXECUTE)) {
3749 +               return EINVAL;
3750 +       }
3751 +
3752 +       entry_d->a_perm = *permset_d;
3753 +
3754 +       return 0;
3755 +}
3756 +
3757 +/* Structure to capture the count for each type of ACE. */
3758 +
3759 +struct hpux_acl_types {
3760 +       int n_user;
3761 +       int n_def_user;
3762 +       int n_user_obj;
3763 +       int n_def_user_obj;
3764 +
3765 +       int n_group;
3766 +       int n_def_group;
3767 +       int n_group_obj;
3768 +       int n_def_group_obj;
3769 +
3770 +       int n_other;
3771 +       int n_other_obj;
3772 +       int n_def_other_obj;
3773 +
3774 +       int n_class_obj;
3775 +       int n_def_class_obj;
3776 +
3777 +       int n_illegal_obj;
3778 +};
3779 +
3780 +/* count_obj:
3781 + * Counts the different number of objects in a given array of ACL
3782 + * structures.
3783 + * Inputs:
3784 + *
3785 + * acl_count      - Count of ACLs in the array of ACL strucutres.
3786 + * aclp           - Array of ACL structures.
3787 + * acl_type_count - Pointer to acl_types structure. Should already be
3788 + *                  allocated.
3789 + * Output: 
3790 + *
3791 + * acl_type_count - This structure is filled up with counts of various 
3792 + *                  acl types.
3793 + */
3794 +
3795 +static int hpux_count_obj(int acl_count, struct acl *aclp, struct hpux_acl_types *acl_type_count)
3796 +{
3797 +       int i;
3798 +
3799 +       memset(acl_type_count, 0, sizeof(struct hpux_acl_types));
3800 +
3801 +       for(i=0;i<acl_count;i++) {
3802 +               switch(aclp[i].a_type) {
3803 +               case USER: 
3804 +                       acl_type_count->n_user++;
3805 +                       break;
3806 +               case USER_OBJ: 
3807 +                       acl_type_count->n_user_obj++;
3808 +                       break;
3809 +               case DEF_USER_OBJ: 
3810 +                       acl_type_count->n_def_user_obj++;
3811 +                       break;
3812 +               case GROUP: 
3813 +                       acl_type_count->n_group++;
3814 +                       break;
3815 +               case GROUP_OBJ: 
3816 +                       acl_type_count->n_group_obj++;
3817 +                       break;
3818 +               case DEF_GROUP_OBJ: 
3819 +                       acl_type_count->n_def_group_obj++;
3820 +                       break;
3821 +               case OTHER_OBJ: 
3822 +                       acl_type_count->n_other_obj++;
3823 +                       break;
3824 +               case DEF_OTHER_OBJ: 
3825 +                       acl_type_count->n_def_other_obj++;
3826 +                       break;
3827 +               case CLASS_OBJ:
3828 +                       acl_type_count->n_class_obj++;
3829 +                       break;
3830 +               case DEF_CLASS_OBJ:
3831 +                       acl_type_count->n_def_class_obj++;
3832 +                       break;
3833 +               case DEF_USER:
3834 +                       acl_type_count->n_def_user++;
3835 +                       break;
3836 +               case DEF_GROUP:
3837 +                       acl_type_count->n_def_group++;
3838 +                       break;
3839 +               default: 
3840 +                       acl_type_count->n_illegal_obj++;
3841 +                       break;
3842 +               }
3843 +       }
3844 +}
3845 +
3846 +/* swap_acl_entries:  Swaps two ACL entries. 
3847 + *
3848 + * Inputs: aclp0, aclp1 - ACL entries to be swapped.
3849 + */
3850 +
3851 +static void hpux_swap_acl_entries(struct acl *aclp0, struct acl *aclp1)
3852 +{
3853 +       struct acl temp_acl;
3854 +
3855 +       temp_acl.a_type = aclp0->a_type;
3856 +       temp_acl.a_id = aclp0->a_id;
3857 +       temp_acl.a_perm = aclp0->a_perm;
3858 +
3859 +       aclp0->a_type = aclp1->a_type;
3860 +       aclp0->a_id = aclp1->a_id;
3861 +       aclp0->a_perm = aclp1->a_perm;
3862 +
3863 +       aclp1->a_type = temp_acl.a_type;
3864 +       aclp1->a_id = temp_acl.a_id;
3865 +       aclp1->a_perm = temp_acl.a_perm;
3866 +}
3867 +
3868 +/* prohibited_duplicate_type
3869 + * Identifies if given ACL type can have duplicate entries or 
3870 + * not.
3871 + *
3872 + * Inputs: acl_type - ACL Type.
3873 + *
3874 + * Outputs: 
3875 + *
3876 + * Return.. 
3877 + *
3878 + * True - If the ACL type matches any of the prohibited types.
3879 + * False - If the ACL type doesn't match any of the prohibited types.
3880 + */ 
3881 +
3882 +static BOOL hpux_prohibited_duplicate_type(int acl_type)
3883 +{
3884 +       switch(acl_type) {
3885 +               case USER:
3886 +               case GROUP:
3887 +               case DEF_USER: 
3888 +               case DEF_GROUP:
3889 +                       return True;
3890 +               default:
3891 +                       return False;
3892 +       }
3893 +}
3894 +
3895 +/* get_needed_class_perm
3896 + * Returns the permissions of a ACL structure only if the ACL
3897 + * type matches one of the pre-determined types for computing 
3898 + * CLASS_OBJ permissions.
3899 + *
3900 + * Inputs: aclp - Pointer to ACL structure.
3901 + */
3902 +
3903 +static int hpux_get_needed_class_perm(struct acl *aclp)
3904 +{
3905 +       switch(aclp->a_type) {
3906 +               case USER: 
3907 +               case GROUP_OBJ: 
3908 +               case GROUP: 
3909 +               case DEF_USER_OBJ: 
3910 +               case DEF_USER:
3911 +               case DEF_GROUP_OBJ: 
3912 +               case DEF_GROUP:
3913 +               case DEF_CLASS_OBJ:
3914 +               case DEF_OTHER_OBJ: 
3915 +                       return aclp->a_perm;
3916 +               default: 
3917 +                       return 0;
3918 +       }
3919 +}
3920 +
3921 +/* acl_sort for HPUX.
3922 + * Sorts the array of ACL structures as per the description in
3923 + * aclsort man page. Refer to aclsort man page for more details
3924 + *
3925 + * Inputs:
3926 + *
3927 + * acl_count - Count of ACLs in the array of ACL structures.
3928 + * calclass  - If this is not zero, then we compute the CLASS_OBJ
3929 + *             permissions.
3930 + * aclp      - Array of ACL structures.
3931 + *
3932 + * Outputs:
3933 + *
3934 + * aclp     - Sorted array of ACL structures.
3935 + *
3936 + * Outputs:
3937 + *
3938 + * Returns 0 for success -1 for failure. Prints a message to the Samba
3939 + * debug log in case of failure.
3940 + */
3941 +
3942 +static int hpux_acl_sort(int acl_count, int calclass, struct acl *aclp)
3943 +{
3944 +#if !defined(HAVE_HPUX_ACLSORT)
3945 +       /*
3946 +        * The aclsort() system call is availabe on the latest HPUX General
3947 +        * Patch Bundles. So for HPUX, we developed our version of acl_sort 
3948 +        * function. Because, we don't want to update to a new 
3949 +        * HPUX GR bundle just for aclsort() call.
3950 +        */
3951 +
3952 +       struct hpux_acl_types acl_obj_count;
3953 +       int n_class_obj_perm = 0;
3954 +       int i, j;
3955
3956 +       if(!acl_count) {
3957 +               DEBUG(10,("Zero acl count passed. Returning Success\n"));
3958 +               return 0;
3959 +       }
3960 +
3961 +       if(aclp == NULL) {
3962 +               DEBUG(0,("Null ACL pointer in hpux_acl_sort. Returning Failure. \n"));
3963 +               return -1;
3964 +       }
3965 +
3966 +       /* Count different types of ACLs in the ACLs array */
3967 +
3968 +       hpux_count_obj(acl_count, aclp, &acl_obj_count);
3969 +
3970 +       /* There should be only one entry each of type USER_OBJ, GROUP_OBJ, 
3971 +        * CLASS_OBJ and OTHER_OBJ 
3972 +        */
3973 +
3974 +       if( (acl_obj_count.n_user_obj  != 1) || 
3975 +               (acl_obj_count.n_group_obj != 1) || 
3976 +               (acl_obj_count.n_class_obj != 1) ||
3977 +               (acl_obj_count.n_other_obj != 1) 
3978 +       ) {
3979 +               DEBUG(0,("hpux_acl_sort: More than one entry or no entries for \
3980 +USER OBJ or GROUP_OBJ or OTHER_OBJ or CLASS_OBJ\n"));
3981 +               return -1;
3982 +       }
3983 +
3984 +       /* If any of the default objects are present, there should be only
3985 +        * one of them each.
3986 +        */
3987 +
3988 +       if( (acl_obj_count.n_def_user_obj  > 1) || (acl_obj_count.n_def_group_obj > 1) || 
3989 +                       (acl_obj_count.n_def_other_obj > 1) || (acl_obj_count.n_def_class_obj > 1) ) {
3990 +               DEBUG(0,("hpux_acl_sort: More than one entry for DEF_CLASS_OBJ \
3991 +or DEF_USER_OBJ or DEF_GROUP_OBJ or DEF_OTHER_OBJ\n"));
3992 +               return -1;
3993 +       }
3994 +
3995 +       /* We now have proper number of OBJ and DEF_OBJ entries. Now sort the acl 
3996 +        * structures.  
3997 +        *
3998 +        * Sorting crieteria - First sort by ACL type. If there are multiple entries of
3999 +        * same ACL type, sort by ACL id.
4000 +        *
4001 +        * I am using the trival kind of sorting method here because, performance isn't 
4002 +        * really effected by the ACLs feature. More over there aren't going to be more
4003 +        * than 17 entries on HPUX. 
4004 +        */
4005 +
4006 +       for(i=0; i<acl_count;i++) {
4007 +               for (j=i+1; j<acl_count; j++) {
4008 +                       if( aclp[i].a_type > aclp[j].a_type ) {
4009 +                               /* ACL entries out of order, swap them */
4010 +
4011 +                               hpux_swap_acl_entries((aclp+i), (aclp+j));
4012 +
4013 +                       } else if ( aclp[i].a_type == aclp[j].a_type ) {
4014 +
4015 +                               /* ACL entries of same type, sort by id */
4016 +
4017 +                               if(aclp[i].a_id > aclp[j].a_id) {
4018 +                                       hpux_swap_acl_entries((aclp+i), (aclp+j));
4019 +                               } else if (aclp[i].a_id == aclp[j].a_id) {
4020 +                                       /* We have a duplicate entry. */
4021 +                                       if(hpux_prohibited_duplicate_type(aclp[i].a_type)) {
4022 +                                               DEBUG(0, ("hpux_acl_sort: Duplicate entry: Type(hex): %x Id: %d\n",
4023 +                                                       aclp[i].a_type, aclp[i].a_id));
4024 +                                               return -1;
4025 +                                       }
4026 +                               }
4027 +
4028 +                       }
4029 +               }
4030 +       }
4031 +
4032 +       /* set the class obj permissions to the computed one. */
4033 +       if(calclass) {
4034 +               int n_class_obj_index = -1;
4035 +
4036 +               for(i=0;i<acl_count;i++) {
4037 +                       n_class_obj_perm |= hpux_get_needed_class_perm((aclp+i));
4038 +
4039 +                       if(aclp[i].a_type == CLASS_OBJ)
4040 +                               n_class_obj_index = i;
4041 +               }
4042 +               aclp[n_class_obj_index].a_perm = n_class_obj_perm;
4043 +       }
4044 +
4045 +       return 0;
4046 +#else
4047 +       return aclsort(acl_count, calclass, aclp);
4048 +#endif
4049 +}
4050 +
4051 +/*
4052 + * sort the ACL and check it for validity
4053 + *
4054 + * if it's a minimal ACL with only 4 entries then we
4055 + * need to recalculate the mask permissions to make
4056 + * sure that they are the same as the GROUP_OBJ
4057 + * permissions as required by the UnixWare acl() system call.
4058 + *
4059 + * (note: since POSIX allows minimal ACLs which only contain
4060 + * 3 entries - ie there is no mask entry - we should, in theory,
4061 + * check for this and add a mask entry if necessary - however
4062 + * we "know" that the caller of this interface always specifies
4063 + * a mask so, in practice "this never happens" (tm) - if it *does*
4064 + * happen aclsort() will fail and return an error and someone will
4065 + * have to fix it ...)
4066 + */
4067 +
4068 +static int acl_sort(SMB_ACL_T acl_d)
4069 +{
4070 +       int fixmask = (acl_d->count <= 4);
4071 +
4072 +       if (hpux_acl_sort(acl_d->count, fixmask, acl_d->acl) != 0) {
4073 +               errno = EINVAL;
4074 +               return -1;
4075 +       }
4076 +       return 0;
4077 +}
4078
4079 +int sys_acl_valid(SMB_ACL_T acl_d)
4080 +{
4081 +       return acl_sort(acl_d);
4082 +}
4083 +
4084 +int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d)
4085 +{
4086 +       struct stat     s;
4087 +       struct acl      *acl_p;
4088 +       int             acl_count;
4089 +       struct acl      *acl_buf        = NULL;
4090 +       int             ret;
4091 +
4092 +       if(hpux_acl_call_presence() == False) {
4093 +               /* Looks like we don't have the acl() system call on HPUX. 
4094 +                * May be the system doesn't have the latest version of JFS.
4095 +                */
4096 +               errno=ENOSYS;
4097 +               return -1; 
4098 +       }
4099 +
4100 +       if (type != SMB_ACL_TYPE_ACCESS && type != SMB_ACL_TYPE_DEFAULT) {
4101 +               errno = EINVAL;
4102 +               return -1;
4103 +       }
4104 +
4105 +       if (acl_sort(acl_d) != 0) {
4106 +               return -1;
4107 +       }
4108 +
4109 +       acl_p           = &acl_d->acl[0];
4110 +       acl_count       = acl_d->count;
4111 +
4112 +       /*
4113 +        * if it's a directory there is extra work to do
4114 +        * since the acl() system call will replace both
4115 +        * the access ACLs and the default ACLs (if any)
4116 +        */
4117 +       if (stat(name, &s) != 0) {
4118 +               return -1;
4119 +       }
4120 +       if (S_ISDIR(s.st_mode)) {
4121 +               SMB_ACL_T       acc_acl;
4122 +               SMB_ACL_T       def_acl;
4123 +               SMB_ACL_T       tmp_acl;
4124 +               int             i;
4125 +
4126 +               if (type == SMB_ACL_TYPE_ACCESS) {
4127 +                       acc_acl = acl_d;
4128 +                       def_acl = tmp_acl = sys_acl_get_file(name, SMB_ACL_TYPE_DEFAULT);
4129 +
4130 +               } else {
4131 +                       def_acl = acl_d;
4132 +                       acc_acl = tmp_acl = sys_acl_get_file(name, SMB_ACL_TYPE_ACCESS);
4133 +               }
4134 +
4135 +               if (tmp_acl == NULL) {
4136 +                       return -1;
4137 +               }
4138 +
4139 +               /*
4140 +                * allocate a temporary buffer for the complete ACL
4141 +                */
4142 +               acl_count = acc_acl->count + def_acl->count;
4143 +               acl_p = acl_buf = SMB_MALLOC_ARRAY(struct acl, acl_count);
4144 +
4145 +               if (acl_buf == NULL) {
4146 +                       sys_acl_free_acl(tmp_acl);
4147 +                       errno = ENOMEM;
4148 +                       return -1;
4149 +               }
4150 +
4151 +               /*
4152 +                * copy the access control and default entries into the buffer
4153 +                */
4154 +               memcpy(&acl_buf[0], &acc_acl->acl[0],
4155 +                       acc_acl->count * sizeof(acl_buf[0]));
4156 +
4157 +               memcpy(&acl_buf[acc_acl->count], &def_acl->acl[0],
4158 +                       def_acl->count * sizeof(acl_buf[0]));
4159 +
4160 +               /*
4161 +                * set the ACL_DEFAULT flag on the default entries
4162 +                */
4163 +               for (i = acc_acl->count; i < acl_count; i++) {
4164 +                       acl_buf[i].a_type |= ACL_DEFAULT;
4165 +               }
4166 +
4167 +               sys_acl_free_acl(tmp_acl);
4168 +
4169 +       } else if (type != SMB_ACL_TYPE_ACCESS) {
4170 +               errno = EINVAL;
4171 +               return -1;
4172 +       }
4173 +
4174 +       ret = acl(name, ACL_SET, acl_count, acl_p);
4175 +
4176 +       if (acl_buf) {
4177 +               free(acl_buf);
4178 +       }
4179 +
4180 +       return ret;
4181 +}
4182 +
4183 +int sys_acl_set_fd(int fd, SMB_ACL_T acl_d)
4184 +{
4185 +       /*
4186 +        * HPUX doesn't have the facl call. Fake it using the path.... JRA.
4187 +        */
4188 +
4189 +       files_struct *fsp = file_find_fd(fd);
4190 +
4191 +       if (fsp == NULL) {
4192 +               errno = EBADF;
4193 +               return NULL;
4194 +       }
4195 +
4196 +       if (acl_sort(acl_d) != 0) {
4197 +               return -1;
4198 +       }
4199 +
4200 +       /*
4201 +        * We know we're in the same conn context. So we
4202 +        * can use the relative path.
4203 +        */
4204 +
4205 +       return sys_acl_set_file(fsp->fsp_name, SMB_ACL_TYPE_ACCESS, acl_d);
4206 +}
4207 +
4208 +int sys_acl_delete_def_file(const char *path)
4209 +{
4210 +       SMB_ACL_T       acl_d;
4211 +       int             ret;
4212 +
4213 +       /*
4214 +        * fetching the access ACL and rewriting it has
4215 +        * the effect of deleting the default ACL
4216 +        */
4217 +       if ((acl_d = sys_acl_get_file(path, SMB_ACL_TYPE_ACCESS)) == NULL) {
4218 +               return -1;
4219 +       }
4220 +
4221 +       ret = acl(path, ACL_SET, acl_d->count, acl_d->acl);
4222 +
4223 +       sys_acl_free_acl(acl_d);
4224 +       
4225 +       return ret;
4226 +}
4227 +
4228 +int sys_acl_free_text(char *text)
4229 +{
4230 +       free(text);
4231 +       return 0;
4232 +}
4233 +
4234 +int sys_acl_free_acl(SMB_ACL_T acl_d) 
4235 +{
4236 +       free(acl_d);
4237 +       return 0;
4238 +}
4239 +
4240 +int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype)
4241 +{
4242 +       return 0;
4243 +}
4244 +
4245 +#elif defined(HAVE_IRIX_ACLS)
4246 +
4247 +int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p)
4248 +{
4249 +       if (entry_id != SMB_ACL_FIRST_ENTRY && entry_id != SMB_ACL_NEXT_ENTRY) {
4250 +               errno = EINVAL;
4251 +               return -1;
4252 +       }
4253 +
4254 +       if (entry_p == NULL) {
4255 +               errno = EINVAL;
4256 +               return -1;
4257 +       }
4258 +
4259 +       if (entry_id == SMB_ACL_FIRST_ENTRY) {
4260 +               acl_d->next = 0;
4261 +       }
4262 +
4263 +       if (acl_d->next < 0) {
4264 +               errno = EINVAL;
4265 +               return -1;
4266 +       }
4267 +
4268 +       if (acl_d->next >= acl_d->aclp->acl_cnt) {
4269 +               return 0;
4270 +       }
4271 +
4272 +       *entry_p = &acl_d->aclp->acl_entry[acl_d->next++];
4273 +
4274 +       return 1;
4275 +}
4276 +
4277 +int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p)
4278 +{
4279 +       *type_p = entry_d->ae_tag;
4280 +
4281 +       return 0;
4282 +}
4283 +
4284 +int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
4285 +{
4286 +       *permset_p = entry_d;
4287 +
4288 +       return 0;
4289 +}
4290 +
4291 +void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d)
4292 +{
4293 +       if (entry_d->ae_tag != SMB_ACL_USER
4294 +           && entry_d->ae_tag != SMB_ACL_GROUP) {
4295 +               errno = EINVAL;
4296 +               return NULL;
4297 +       }
4298 +
4299 +       return &entry_d->ae_id;
4300 +}
4301 +
4302 +SMB_ACL_T sys_acl_get_file(const char *path_p, SMB_ACL_TYPE_T type)
4303 +{
4304 +       SMB_ACL_T       a;
4305 +
4306 +       if ((a = SMB_MALLOC_P(struct SMB_ACL_T)) == NULL) {
4307 +               errno = ENOMEM;
4308 +               return NULL;
4309 +       }
4310 +       if ((a->aclp = acl_get_file(path_p, type)) == NULL) {
4311 +               SAFE_FREE(a);
4312 +               return NULL;
4313 +       }
4314 +       a->next = -1;
4315 +       a->freeaclp = True;
4316 +       return a;
4317 +}
4318 +
4319 +SMB_ACL_T sys_acl_get_fd(int fd)
4320 +{
4321 +       SMB_ACL_T       a;
4322 +
4323 +       if ((a = SMB_MALLOC_P(struct SMB_ACL_T)) == NULL) {
4324 +               errno = ENOMEM;
4325 +               return NULL;
4326 +       }
4327 +       if ((a->aclp = acl_get_fd(fd)) == NULL) {
4328 +               SAFE_FREE(a);
4329 +               return NULL;
4330 +       }
4331 +       a->next = -1;
4332 +       a->freeaclp = True;
4333 +       return a;
4334 +}
4335 +
4336 +int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d)
4337 +{
4338 +       permset_d->ae_perm = 0;
4339 +
4340 +       return 0;
4341 +}
4342 +
4343 +int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
4344 +{
4345 +       if (perm != SMB_ACL_READ && perm != SMB_ACL_WRITE
4346 +           && perm != SMB_ACL_EXECUTE) {
4347 +               errno = EINVAL;
4348 +               return -1;
4349 +       }
4350 +
4351 +       if (permset_d == NULL) {
4352 +               errno = EINVAL;
4353 +               return -1;
4354 +       }
4355 +
4356 +       permset_d->ae_perm |= perm;
4357 +
4358 +       return 0;
4359 +}
4360 +
4361 +int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm)
4362 +{
4363 +       return permset_d->ae_perm & perm;
4364 +}
4365 +
4366 +char *sys_acl_to_text(SMB_ACL_T acl_d, ssize_t *len_p)
4367 +{
4368 +       return acl_to_text(acl_d->aclp, len_p);
4369 +}
4370 +
4371 +SMB_ACL_T sys_acl_init(int count)
4372 +{
4373 +       SMB_ACL_T       a;
4374 +
4375 +       if (count < 0) {
4376 +               errno = EINVAL;
4377 +               return NULL;
4378 +       }
4379 +
4380 +       if ((a = SMB_MALLOC(sizeof(struct SMB_ACL_T) + sizeof(struct acl))) == NULL) {
4381 +               errno = ENOMEM;
4382 +               return NULL;
4383 +       }
4384 +
4385 +       a->next = -1;
4386 +       a->freeaclp = False;
4387 +       a->aclp = (struct acl *)(&a->aclp + sizeof(struct acl *));
4388 +       a->aclp->acl_cnt = 0;
4389 +
4390 +       return a;
4391 +}
4392 +
4393 +
4394 +int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p)
4395 +{
4396 +       SMB_ACL_T       acl_d;
4397 +       SMB_ACL_ENTRY_T entry_d;
4398 +
4399 +       if (acl_p == NULL || entry_p == NULL || (acl_d = *acl_p) == NULL) {
4400 +               errno = EINVAL;
4401 +               return -1;
4402 +       }
4403 +
4404 +       if (acl_d->aclp->acl_cnt >= ACL_MAX_ENTRIES) {
4405 +               errno = ENOSPC;
4406 +               return -1;
4407 +       }
4408 +
4409 +       entry_d         = &acl_d->aclp->acl_entry[acl_d->aclp->acl_cnt++];
4410 +       entry_d->ae_tag = 0;
4411 +       entry_d->ae_id  = 0;
4412 +       entry_d->ae_perm        = 0;
4413 +       *entry_p        = entry_d;
4414 +
4415 +       return 0;
4416 +}
4417 +
4418 +int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type)
4419 +{
4420 +       switch (tag_type) {
4421 +               case SMB_ACL_USER:
4422 +               case SMB_ACL_USER_OBJ:
4423 +               case SMB_ACL_GROUP:
4424 +               case SMB_ACL_GROUP_OBJ:
4425 +               case SMB_ACL_OTHER:
4426 +               case SMB_ACL_MASK:
4427 +                       entry_d->ae_tag = tag_type;
4428 +                       break;
4429 +               default:
4430 +                       errno = EINVAL;
4431 +                       return -1;
4432 +       }
4433 +
4434 +       return 0;
4435 +}
4436 +
4437 +int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p)
4438 +{
4439 +       if (entry_d->ae_tag != SMB_ACL_GROUP
4440 +           && entry_d->ae_tag != SMB_ACL_USER) {
4441 +               errno = EINVAL;
4442 +               return -1;
4443 +       }
4444 +
4445 +       entry_d->ae_id = *((id_t *)qual_p);
4446 +
4447 +       return 0;
4448 +}
4449 +
4450 +int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d)
4451 +{
4452 +       if (permset_d->ae_perm & ~(SMB_ACL_READ|SMB_ACL_WRITE|SMB_ACL_EXECUTE)) {
4453 +               return EINVAL;
4454 +       }
4455 +
4456 +       entry_d->ae_perm = permset_d->ae_perm;
4457 +
4458 +       return 0;
4459 +}
4460 +
4461 +int sys_acl_valid(SMB_ACL_T acl_d)
4462 +{
4463 +       return acl_valid(acl_d->aclp);
4464 +}
4465 +
4466 +int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d)
4467 +{
4468 +       return acl_set_file(name, type, acl_d->aclp);
4469 +}
4470 +
4471 +int sys_acl_set_fd(int fd, SMB_ACL_T acl_d)
4472 +{
4473 +       return acl_set_fd(fd, acl_d->aclp);
4474 +}
4475 +
4476 +int sys_acl_delete_def_file(const char *name)
4477 +{
4478 +       return acl_delete_def_file(name);
4479 +}
4480 +
4481 +int sys_acl_free_text(char *text)
4482 +{
4483 +       return acl_free(text);
4484 +}
4485 +
4486 +int sys_acl_free_acl(SMB_ACL_T acl_d) 
4487 +{
4488 +       if (acl_d->freeaclp) {
4489 +               acl_free(acl_d->aclp);
4490 +       }
4491 +       acl_free(acl_d);
4492 +       return 0;
4493 +}
4494 +
4495 +int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype)
4496 +{
4497 +       return 0;
4498 +}
4499 +
4500 +#elif defined(HAVE_AIX_ACLS)
4501 +
4502 +/* Donated by Medha Date, mdate@austin.ibm.com, for IBM */
4503 +
4504 +int sys_acl_get_entry( SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
4505 +{
4506 +       struct acl_entry_link *link;
4507 +       struct new_acl_entry *entry;
4508 +       int keep_going;
4509 +
4510 +       DEBUG(10,("This is the count: %d\n",theacl->count));
4511 +
4512 +       /* Check if count was previously set to -1. *
4513 +        * If it was, that means we reached the end *
4514 +        * of the acl last time.                    */
4515 +       if(theacl->count == -1)
4516 +               return(0);
4517 +
4518 +       link = theacl;
4519 +       /* To get to the next acl, traverse linked list until index *
4520 +        * of acl matches the count we are keeping.  This count is  *
4521 +        * incremented each time we return an acl entry.            */
4522 +
4523 +       for(keep_going = 0; keep_going < theacl->count; keep_going++)
4524 +               link = link->nextp;
4525 +
4526 +       entry = *entry_p =  link->entryp;
4527 +
4528 +       DEBUG(10,("*entry_p is %d\n",entry_p));
4529 +       DEBUG(10,("*entry_p->ace_access is %d\n",entry->ace_access));
4530 +
4531 +       /* Increment count */
4532 +       theacl->count++;
4533 +       if(link->nextp == NULL)
4534 +               theacl->count = -1;
4535 +
4536 +       return(1);
4537 +}
4538 +
4539 +int sys_acl_get_tag_type( SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
4540 +{
4541 +       /* Initialize tag type */
4542 +
4543 +       *tag_type_p = -1;
4544 +       DEBUG(10,("the tagtype is %d\n",entry_d->ace_id->id_type));
4545 +
4546 +       /* Depending on what type of entry we have, *
4547 +        * return tag type.                         */
4548 +       switch(entry_d->ace_id->id_type) {
4549 +       case ACEID_USER:
4550 +               *tag_type_p = SMB_ACL_USER;
4551 +               break;
4552 +       case ACEID_GROUP:
4553 +               *tag_type_p = SMB_ACL_GROUP;
4554 +               break;
4555 +
4556 +       case SMB_ACL_USER_OBJ:
4557 +       case SMB_ACL_GROUP_OBJ:
4558 +       case SMB_ACL_OTHER:
4559 +               *tag_type_p = entry_d->ace_id->id_type;
4560 +               break;
4561
4562 +       default:
4563 +               return(-1);
4564 +       }
4565 +
4566 +       return(0);
4567 +}
4568 +
4569 +int sys_acl_get_permset( SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
4570 +{
4571 +       DEBUG(10,("Starting AIX sys_acl_get_permset\n"));
4572 +       *permset_p = &entry_d->ace_access;
4573 +       DEBUG(10,("**permset_p is %d\n",**permset_p));
4574 +       if(!(**permset_p & S_IXUSR) &&
4575 +               !(**permset_p & S_IWUSR) &&
4576 +               !(**permset_p & S_IRUSR) &&
4577 +               (**permset_p != 0))
4578 +                       return(-1);
4579 +
4580 +       DEBUG(10,("Ending AIX sys_acl_get_permset\n"));
4581 +       return(0);
4582 +}
4583 +
4584 +void *sys_acl_get_qualifier( SMB_ACL_ENTRY_T entry_d)
4585 +{
4586 +       return(entry_d->ace_id->id_data);
4587 +}
4588 +
4589 +SMB_ACL_T sys_acl_get_file( const char *path_p, SMB_ACL_TYPE_T type)
4590 +{
4591 +       struct acl *file_acl = (struct acl *)NULL;
4592 +       struct acl_entry *acl_entry;
4593 +       struct new_acl_entry *new_acl_entry;
4594 +       struct ace_id *idp;
4595 +       struct acl_entry_link *acl_entry_link;
4596 +       struct acl_entry_link *acl_entry_link_head;
4597 +       int i;
4598 +       int rc = 0;
4599 +       uid_t user_id;
4600 +
4601 +       /* AIX has no DEFAULT */
4602 +       if  ( type == SMB_ACL_TYPE_DEFAULT ) {
4603 +               errno = ENOTSUP;
4604 +               return NULL;
4605 +       }
4606 +
4607 +       /* Get the acl using statacl */
4608
4609 +       DEBUG(10,("Entering sys_acl_get_file\n"));
4610 +       DEBUG(10,("path_p is %s\n",path_p));
4611 +
4612 +       file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
4613
4614 +       if(file_acl == NULL) {
4615 +               errno=ENOMEM;
4616 +               DEBUG(0,("Error in AIX sys_acl_get_file: %d\n",errno));
4617 +               return(NULL);
4618 +       }
4619 +
4620 +       memset(file_acl,0,BUFSIZ);
4621 +
4622 +       rc = statacl((char *)path_p,0,file_acl,BUFSIZ);
4623 +       if(rc == -1) {
4624 +               DEBUG(0,("statacl returned %d with errno %d\n",rc,errno));
4625 +               SAFE_FREE(file_acl);
4626 +               return(NULL);
4627 +       }
4628 +
4629 +       DEBUG(10,("Got facl and returned it\n"));
4630 +
4631 +       /* Point to the first acl entry in the acl */
4632 +       acl_entry =  file_acl->acl_ext;
4633 +
4634 +       /* Begin setting up the head of the linked list *
4635 +        * that will be used for the storing the acl    *
4636 +        * in a way that is useful for the posix_acls.c *
4637 +        * code.                                          */
4638 +
4639 +       acl_entry_link_head = acl_entry_link = sys_acl_init(0);
4640 +       if(acl_entry_link_head == NULL)
4641 +               return(NULL);
4642 +
4643 +       acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
4644 +       if(acl_entry_link->entryp == NULL) {
4645 +               SAFE_FREE(file_acl);
4646 +               errno = ENOMEM;
4647 +               DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
4648 +               return(NULL);
4649 +       }
4650 +
4651 +       DEBUG(10,("acl_entry is %d\n",acl_entry));
4652 +       DEBUG(10,("acl_last(file_acl) id %d\n",acl_last(file_acl)));
4653 +
4654 +       /* Check if the extended acl bit is on.   *
4655 +        * If it isn't, do not show the           *
4656 +        * contents of the acl since AIX intends *
4657 +        * the extended info to remain unused     */
4658 +
4659 +       if(file_acl->acl_mode & S_IXACL){
4660 +               /* while we are not pointing to the very end */
4661 +               while(acl_entry < acl_last(file_acl)) {
4662 +                       /* before we malloc anything, make sure this is  */
4663 +                       /* a valid acl entry and one that we want to map */
4664 +                       idp = id_nxt(acl_entry->ace_id);
4665 +                       if((acl_entry->ace_type == ACC_SPECIFY ||
4666 +                               (acl_entry->ace_type == ACC_PERMIT)) && (idp != id_last(acl_entry))) {
4667 +                                       acl_entry = acl_nxt(acl_entry);
4668 +                                       continue;
4669 +                       }
4670 +
4671 +                       idp = acl_entry->ace_id;
4672 +
4673 +                       /* Check if this is the first entry in the linked list. *
4674 +                        * The first entry needs to keep prevp pointing to NULL *
4675 +                        * and already has entryp allocated.                  */
4676 +
4677 +                       if(acl_entry_link_head->count != 0) {
4678 +                               acl_entry_link->nextp = SMB_MALLOC_P(struct acl_entry_link);
4679 +
4680 +                               if(acl_entry_link->nextp == NULL) {
4681 +                                       SAFE_FREE(file_acl);
4682 +                                       errno = ENOMEM;
4683 +                                       DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
4684 +                                       return(NULL);
4685 +                               }
4686 +
4687 +                               acl_entry_link->nextp->prevp = acl_entry_link;
4688 +                               acl_entry_link = acl_entry_link->nextp;
4689 +                               acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
4690 +                               if(acl_entry_link->entryp == NULL) {
4691 +                                       SAFE_FREE(file_acl);
4692 +                                       errno = ENOMEM;
4693 +                                       DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
4694 +                                       return(NULL);
4695 +                               }
4696 +                               acl_entry_link->nextp = NULL;
4697 +                       }
4698 +
4699 +                       acl_entry_link->entryp->ace_len = acl_entry->ace_len;
4700 +
4701 +                       /* Don't really need this since all types are going *
4702 +                        * to be specified but, it's better than leaving it 0 */
4703 +
4704 +                       acl_entry_link->entryp->ace_type = acl_entry->ace_type;
4705
4706 +                       acl_entry_link->entryp->ace_access = acl_entry->ace_access;
4707
4708 +                       memcpy(acl_entry_link->entryp->ace_id,idp,sizeof(struct ace_id));
4709 +
4710 +                       /* The access in the acl entries must be left shifted by *
4711 +                        * three bites, because they will ultimately be compared *
4712 +                        * to S_IRUSR, S_IWUSR, and S_IXUSR.                  */
4713 +
4714 +                       switch(acl_entry->ace_type){
4715 +                       case ACC_PERMIT:
4716 +                       case ACC_SPECIFY:
4717 +                               acl_entry_link->entryp->ace_access = acl_entry->ace_access;
4718 +                               acl_entry_link->entryp->ace_access <<= 6;
4719 +                               acl_entry_link_head->count++;
4720 +                               break;
4721 +                       case ACC_DENY:
4722 +                               /* Since there is no way to return a DENY acl entry *
4723 +                                * change to PERMIT and then shift.                 */
4724 +                               DEBUG(10,("acl_entry->ace_access is %d\n",acl_entry->ace_access));
4725 +                               acl_entry_link->entryp->ace_access = ~acl_entry->ace_access & 7;
4726 +                               DEBUG(10,("acl_entry_link->entryp->ace_access is %d\n",acl_entry_link->entryp->ace_access));
4727 +                               acl_entry_link->entryp->ace_access <<= 6;
4728 +                               acl_entry_link_head->count++;
4729 +                               break;
4730 +                       default:
4731 +                               return(0);
4732 +                       }
4733 +
4734 +                       DEBUG(10,("acl_entry = %d\n",acl_entry));
4735 +                       DEBUG(10,("The ace_type is %d\n",acl_entry->ace_type));
4736
4737 +                       acl_entry = acl_nxt(acl_entry);
4738 +               }
4739 +       } /* end of if enabled */
4740 +
4741 +       /* Since owner, group, other acl entries are not *
4742 +        * part of the acl entries in an acl, they must  *
4743 +        * be dummied up to become part of the list.     */
4744 +
4745 +       for( i = 1; i < 4; i++) {
4746 +               DEBUG(10,("i is %d\n",i));
4747 +               if(acl_entry_link_head->count != 0) {
4748 +                       acl_entry_link->nextp = SMB_MALLOC_P(struct acl_entry_link);
4749 +                       if(acl_entry_link->nextp == NULL) {
4750 +                               SAFE_FREE(file_acl);
4751 +                               errno = ENOMEM;
4752 +                               DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
4753 +                               return(NULL);
4754 +                       }
4755 +
4756 +                       acl_entry_link->nextp->prevp = acl_entry_link;
4757 +                       acl_entry_link = acl_entry_link->nextp;
4758 +                       acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
4759 +                       if(acl_entry_link->entryp == NULL) {
4760 +                               SAFE_FREE(file_acl);
4761 +                               errno = ENOMEM;
4762 +                               DEBUG(0,("Error in AIX sys_acl_get_file is %d\n",errno));
4763 +                               return(NULL);
4764 +                       }
4765 +               }
4766 +
4767 +               acl_entry_link->nextp = NULL;
4768 +
4769 +               new_acl_entry = acl_entry_link->entryp;
4770 +               idp = new_acl_entry->ace_id;
4771 +
4772 +               new_acl_entry->ace_len = sizeof(struct acl_entry);
4773 +               new_acl_entry->ace_type = ACC_PERMIT;
4774 +               idp->id_len = sizeof(struct ace_id);
4775 +               DEBUG(10,("idp->id_len = %d\n",idp->id_len));
4776 +               memset(idp->id_data,0,sizeof(uid_t));
4777 +
4778 +               switch(i) {
4779 +               case 2:
4780 +                       new_acl_entry->ace_access = file_acl->g_access << 6;
4781 +                       idp->id_type = SMB_ACL_GROUP_OBJ;
4782 +                       break;
4783 +
4784 +               case 3:
4785 +                       new_acl_entry->ace_access = file_acl->o_access << 6;
4786 +                       idp->id_type = SMB_ACL_OTHER;
4787 +                       break;
4788
4789 +               case 1:
4790 +                       new_acl_entry->ace_access = file_acl->u_access << 6;
4791 +                       idp->id_type = SMB_ACL_USER_OBJ;
4792 +                       break;
4793
4794 +               default:
4795 +                       return(NULL);
4796 +
4797 +               }
4798 +
4799 +               acl_entry_link_head->count++;
4800 +               DEBUG(10,("new_acl_entry->ace_access = %d\n",new_acl_entry->ace_access));
4801 +       }
4802 +
4803 +       acl_entry_link_head->count = 0;
4804 +       SAFE_FREE(file_acl);
4805 +
4806 +       return(acl_entry_link_head);
4807 +}
4808 +
4809 +SMB_ACL_T sys_acl_get_fd(int fd)
4810 +{
4811 +       struct acl *file_acl = (struct acl *)NULL;
4812 +       struct acl_entry *acl_entry;
4813 +       struct new_acl_entry *new_acl_entry;
4814 +       struct ace_id *idp;
4815 +       struct acl_entry_link *acl_entry_link;
4816 +       struct acl_entry_link *acl_entry_link_head;
4817 +       int i;
4818 +       int rc = 0;
4819 +       uid_t user_id;
4820 +
4821 +       /* Get the acl using fstatacl */
4822 +   
4823 +       DEBUG(10,("Entering sys_acl_get_fd\n"));
4824 +       DEBUG(10,("fd is %d\n",fd));
4825 +       file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
4826 +
4827 +       if(file_acl == NULL) {
4828 +               errno=ENOMEM;
4829 +               DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
4830 +               return(NULL);
4831 +       }
4832 +
4833 +       memset(file_acl,0,BUFSIZ);
4834 +
4835 +       rc = fstatacl(fd,0,file_acl,BUFSIZ);
4836 +       if(rc == -1) {
4837 +               DEBUG(0,("The fstatacl call returned %d with errno %d\n",rc,errno));
4838 +               SAFE_FREE(file_acl);
4839 +               return(NULL);
4840 +       }
4841 +
4842 +       DEBUG(10,("Got facl and returned it\n"));
4843 +
4844 +       /* Point to the first acl entry in the acl */
4845 +
4846 +       acl_entry =  file_acl->acl_ext;
4847 +       /* Begin setting up the head of the linked list *
4848 +        * that will be used for the storing the acl    *
4849 +        * in a way that is useful for the posix_acls.c *
4850 +        * code.                                        */
4851 +
4852 +       acl_entry_link_head = acl_entry_link = sys_acl_init(0);
4853 +       if(acl_entry_link_head == NULL){
4854 +               SAFE_FREE(file_acl);
4855 +               return(NULL);
4856 +       }
4857 +
4858 +       acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
4859 +
4860 +       if(acl_entry_link->entryp == NULL) {
4861 +               errno = ENOMEM;
4862 +               DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
4863 +               SAFE_FREE(file_acl);
4864 +               return(NULL);
4865 +       }
4866 +
4867 +       DEBUG(10,("acl_entry is %d\n",acl_entry));
4868 +       DEBUG(10,("acl_last(file_acl) id %d\n",acl_last(file_acl)));
4869
4870 +       /* Check if the extended acl bit is on.   *
4871 +        * If it isn't, do not show the           *
4872 +        * contents of the acl since AIX intends  *
4873 +        * the extended info to remain unused     */
4874
4875 +       if(file_acl->acl_mode & S_IXACL){
4876 +               /* while we are not pointing to the very end */
4877 +               while(acl_entry < acl_last(file_acl)) {
4878 +                       /* before we malloc anything, make sure this is  */
4879 +                       /* a valid acl entry and one that we want to map */
4880 +
4881 +                       idp = id_nxt(acl_entry->ace_id);
4882 +                       if((acl_entry->ace_type == ACC_SPECIFY ||
4883 +                               (acl_entry->ace_type == ACC_PERMIT)) && (idp != id_last(acl_entry))) {
4884 +                                       acl_entry = acl_nxt(acl_entry);
4885 +                                       continue;
4886 +                       }
4887 +
4888 +                       idp = acl_entry->ace_id;
4889
4890 +                       /* Check if this is the first entry in the linked list. *
4891 +                        * The first entry needs to keep prevp pointing to NULL *
4892 +                        * and already has entryp allocated.                 */
4893 +
4894 +                       if(acl_entry_link_head->count != 0) {
4895 +                               acl_entry_link->nextp = SMB_MALLOC_P(struct acl_entry_link);
4896 +                               if(acl_entry_link->nextp == NULL) {
4897 +                                       errno = ENOMEM;
4898 +                                       DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
4899 +                                       SAFE_FREE(file_acl);
4900 +                                       return(NULL);
4901 +                               }
4902 +                               acl_entry_link->nextp->prevp = acl_entry_link;
4903 +                               acl_entry_link = acl_entry_link->nextp;
4904 +                               acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
4905 +                               if(acl_entry_link->entryp == NULL) {
4906 +                                       errno = ENOMEM;
4907 +                                       DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
4908 +                                       SAFE_FREE(file_acl);
4909 +                                       return(NULL);
4910 +                               }
4911 +
4912 +                               acl_entry_link->nextp = NULL;
4913 +                       }
4914 +
4915 +                       acl_entry_link->entryp->ace_len = acl_entry->ace_len;
4916 +
4917 +                       /* Don't really need this since all types are going *
4918 +                        * to be specified but, it's better than leaving it 0 */
4919 +
4920 +                       acl_entry_link->entryp->ace_type = acl_entry->ace_type;
4921 +                       acl_entry_link->entryp->ace_access = acl_entry->ace_access;
4922 +
4923 +                       memcpy(acl_entry_link->entryp->ace_id, idp, sizeof(struct ace_id));
4924 +
4925 +                       /* The access in the acl entries must be left shifted by *
4926 +                        * three bites, because they will ultimately be compared *
4927 +                        * to S_IRUSR, S_IWUSR, and S_IXUSR.                  */
4928 +
4929 +                       switch(acl_entry->ace_type){
4930 +                       case ACC_PERMIT:
4931 +                       case ACC_SPECIFY:
4932 +                               acl_entry_link->entryp->ace_access = acl_entry->ace_access;
4933 +                               acl_entry_link->entryp->ace_access <<= 6;
4934 +                               acl_entry_link_head->count++;
4935 +                               break;
4936 +                       case ACC_DENY:
4937 +                               /* Since there is no way to return a DENY acl entry *
4938 +                                * change to PERMIT and then shift.                 */
4939 +                               DEBUG(10,("acl_entry->ace_access is %d\n",acl_entry->ace_access));
4940 +                               acl_entry_link->entryp->ace_access = ~acl_entry->ace_access & 7;
4941 +                               DEBUG(10,("acl_entry_link->entryp->ace_access is %d\n",acl_entry_link->entryp->ace_access));
4942 +                               acl_entry_link->entryp->ace_access <<= 6;
4943 +                               acl_entry_link_head->count++;
4944 +                               break;
4945 +                       default:
4946 +                               return(0);
4947 +                       }
4948 +
4949 +                       DEBUG(10,("acl_entry = %d\n",acl_entry));
4950 +                       DEBUG(10,("The ace_type is %d\n",acl_entry->ace_type));
4951
4952 +                       acl_entry = acl_nxt(acl_entry);
4953 +               }
4954 +       } /* end of if enabled */
4955 +
4956 +       /* Since owner, group, other acl entries are not *
4957 +        * part of the acl entries in an acl, they must  *
4958 +        * be dummied up to become part of the list.     */
4959 +
4960 +       for( i = 1; i < 4; i++) {
4961 +               DEBUG(10,("i is %d\n",i));
4962 +               if(acl_entry_link_head->count != 0){
4963 +                       acl_entry_link->nextp = SMB_MALLOC_P(struct acl_entry_link);
4964 +                       if(acl_entry_link->nextp == NULL) {
4965 +                               errno = ENOMEM;
4966 +                               DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
4967 +                               SAFE_FREE(file_acl);
4968 +                               return(NULL);
4969 +                       }
4970 +
4971 +                       acl_entry_link->nextp->prevp = acl_entry_link;
4972 +                       acl_entry_link = acl_entry_link->nextp;
4973 +                       acl_entry_link->entryp = SMB_MALLOC_P(struct new_acl_entry);
4974 +
4975 +                       if(acl_entry_link->entryp == NULL) {
4976 +                               SAFE_FREE(file_acl);
4977 +                               errno = ENOMEM;
4978 +                               DEBUG(0,("Error in sys_acl_get_fd is %d\n",errno));
4979 +                               return(NULL);
4980 +                       }
4981 +               }
4982 +
4983 +               acl_entry_link->nextp = NULL;
4984
4985 +               new_acl_entry = acl_entry_link->entryp;
4986 +               idp = new_acl_entry->ace_id;
4987
4988 +               new_acl_entry->ace_len = sizeof(struct acl_entry);
4989 +               new_acl_entry->ace_type = ACC_PERMIT;
4990 +               idp->id_len = sizeof(struct ace_id);
4991 +               DEBUG(10,("idp->id_len = %d\n",idp->id_len));
4992 +               memset(idp->id_data,0,sizeof(uid_t));
4993
4994 +               switch(i) {
4995 +               case 2:
4996 +                       new_acl_entry->ace_access = file_acl->g_access << 6;
4997 +                       idp->id_type = SMB_ACL_GROUP_OBJ;
4998 +                       break;
4999
5000 +               case 3:
5001 +                       new_acl_entry->ace_access = file_acl->o_access << 6;
5002 +                       idp->id_type = SMB_ACL_OTHER;
5003 +                       break;
5004
5005 +               case 1:
5006 +                       new_acl_entry->ace_access = file_acl->u_access << 6;
5007 +                       idp->id_type = SMB_ACL_USER_OBJ;
5008 +                       break;
5009
5010 +               default:
5011 +                       return(NULL);
5012 +               }
5013
5014 +               acl_entry_link_head->count++;
5015 +               DEBUG(10,("new_acl_entry->ace_access = %d\n",new_acl_entry->ace_access));
5016 +       }
5017 +
5018 +       acl_entry_link_head->count = 0;
5019 +       SAFE_FREE(file_acl);
5020
5021 +       return(acl_entry_link_head);
5022 +}
5023 +
5024 +int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset)
5025 +{
5026 +       *permset = *permset & ~0777;
5027 +       return(0);
5028 +}
5029 +
5030 +int sys_acl_add_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
5031 +{
5032 +       if((perm != 0) &&
5033 +                       (perm & (S_IXUSR | S_IWUSR | S_IRUSR)) == 0)
5034 +               return(-1);
5035 +
5036 +       *permset |= perm;
5037 +       DEBUG(10,("This is the permset now: %d\n",*permset));
5038 +       return(0);
5039 +}
5040 +
5041 +char *sys_acl_to_text( SMB_ACL_T theacl, ssize_t *plen)
5042 +{
5043 +       return(NULL);
5044 +}
5045 +
5046 +SMB_ACL_T sys_acl_init( int count)
5047 +{
5048 +       struct acl_entry_link *theacl = NULL;
5049
5050 +       DEBUG(10,("Entering sys_acl_init\n"));
5051 +
5052 +       theacl = SMB_MALLOC_P(struct acl_entry_link);
5053 +       if(theacl == NULL) {
5054 +               errno = ENOMEM;
5055 +               DEBUG(0,("Error in sys_acl_init is %d\n",errno));
5056 +               return(NULL);
5057 +       }
5058 +
5059 +       theacl->count = 0;
5060 +       theacl->nextp = NULL;
5061 +       theacl->prevp = NULL;
5062 +       theacl->entryp = NULL;
5063 +       DEBUG(10,("Exiting sys_acl_init\n"));
5064 +       return(theacl);
5065 +}
5066 +
5067 +int sys_acl_create_entry( SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
5068 +{
5069 +       struct acl_entry_link *theacl;
5070 +       struct acl_entry_link *acl_entryp;
5071 +       struct acl_entry_link *temp_entry;
5072 +       int counting;
5073 +
5074 +       DEBUG(10,("Entering the sys_acl_create_entry\n"));
5075 +
5076 +       theacl = acl_entryp = *pacl;
5077 +
5078 +       /* Get to the end of the acl before adding entry */
5079 +
5080 +       for(counting=0; counting < theacl->count; counting++){
5081 +               DEBUG(10,("The acl_entryp is %d\n",acl_entryp));
5082 +               temp_entry = acl_entryp;
5083 +               acl_entryp = acl_entryp->nextp;
5084 +       }
5085 +
5086 +       if(theacl->count != 0){
5087 +               temp_entry->nextp = acl_entryp = SMB_MALLOC_P(struct acl_entry_link);
5088 +               if(acl_entryp == NULL) {
5089 +                       errno = ENOMEM;
5090 +                       DEBUG(0,("Error in sys_acl_create_entry is %d\n",errno));
5091 +                       return(-1);
5092 +               }
5093 +
5094 +               DEBUG(10,("The acl_entryp is %d\n",acl_entryp));
5095 +               acl_entryp->prevp = temp_entry;
5096 +               DEBUG(10,("The acl_entryp->prevp is %d\n",acl_entryp->prevp));
5097 +       }
5098 +
5099 +       *pentry = acl_entryp->entryp = SMB_MALLOC_P(struct new_acl_entry);
5100 +       if(*pentry == NULL) {
5101 +               errno = ENOMEM;
5102 +               DEBUG(0,("Error in sys_acl_create_entry is %d\n",errno));
5103 +               return(-1);
5104 +       }
5105 +
5106 +       memset(*pentry,0,sizeof(struct new_acl_entry));
5107 +       acl_entryp->entryp->ace_len = sizeof(struct acl_entry);
5108 +       acl_entryp->entryp->ace_type = ACC_PERMIT;
5109 +       acl_entryp->entryp->ace_id->id_len = sizeof(struct ace_id);
5110 +       acl_entryp->nextp = NULL;
5111 +       theacl->count++;
5112 +       DEBUG(10,("Exiting sys_acl_create_entry\n"));
5113 +       return(0);
5114 +}
5115 +
5116 +int sys_acl_set_tag_type( SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
5117 +{
5118 +       DEBUG(10,("Starting AIX sys_acl_set_tag_type\n"));
5119 +       entry->ace_id->id_type = tagtype;
5120 +       DEBUG(10,("The tag type is %d\n",entry->ace_id->id_type));
5121 +       DEBUG(10,("Ending AIX sys_acl_set_tag_type\n"));
5122 +}
5123 +
5124 +int sys_acl_set_qualifier( SMB_ACL_ENTRY_T entry, void *qual)
5125 +{
5126 +       DEBUG(10,("Starting AIX sys_acl_set_qualifier\n"));
5127 +       memcpy(entry->ace_id->id_data,qual,sizeof(uid_t));
5128 +       DEBUG(10,("Ending AIX sys_acl_set_qualifier\n"));
5129 +       return(0);
5130 +}
5131 +
5132 +int sys_acl_set_permset( SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
5133 +{
5134 +       DEBUG(10,("Starting AIX sys_acl_set_permset\n"));
5135 +       if(!(*permset & S_IXUSR) &&
5136 +               !(*permset & S_IWUSR) &&
5137 +               !(*permset & S_IRUSR) &&
5138 +               (*permset != 0))
5139 +                       return(-1);
5140 +
5141 +       entry->ace_access = *permset;
5142 +       DEBUG(10,("entry->ace_access = %d\n",entry->ace_access));
5143 +       DEBUG(10,("Ending AIX sys_acl_set_permset\n"));
5144 +       return(0);
5145 +}
5146 +
5147 +int sys_acl_valid( SMB_ACL_T theacl )
5148 +{
5149 +       int user_obj = 0;
5150 +       int group_obj = 0;
5151 +       int other_obj = 0;
5152 +       struct acl_entry_link *acl_entry;
5153 +
5154 +       for(acl_entry=theacl; acl_entry != NULL; acl_entry = acl_entry->nextp) {
5155 +               user_obj += (acl_entry->entryp->ace_id->id_type == SMB_ACL_USER_OBJ);
5156 +               group_obj += (acl_entry->entryp->ace_id->id_type == SMB_ACL_GROUP_OBJ);
5157 +               other_obj += (acl_entry->entryp->ace_id->id_type == SMB_ACL_OTHER);
5158 +       }
5159 +
5160 +       DEBUG(10,("user_obj=%d, group_obj=%d, other_obj=%d\n",user_obj,group_obj,other_obj));
5161
5162 +       if(user_obj != 1 || group_obj != 1 || other_obj != 1)
5163 +               return(-1); 
5164 +
5165 +       return(0);
5166 +}
5167 +
5168 +int sys_acl_set_file( const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
5169 +{
5170 +       struct acl_entry_link *acl_entry_link = NULL;
5171 +       struct acl *file_acl = NULL;
5172 +       struct acl *file_acl_temp = NULL;
5173 +       struct acl_entry *acl_entry = NULL;
5174 +       struct ace_id *ace_id = NULL;
5175 +       uint id_type;
5176 +       uint ace_access;
5177 +       uint user_id;
5178 +       uint acl_length;
5179 +       uint rc;
5180 +
5181 +       DEBUG(10,("Entering sys_acl_set_file\n"));
5182 +       DEBUG(10,("File name is %s\n",name));
5183
5184 +       /* AIX has no default ACL */
5185 +       if(acltype == SMB_ACL_TYPE_DEFAULT)
5186 +               return(0);
5187 +
5188 +       acl_length = BUFSIZ;
5189 +       file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
5190 +
5191 +       if(file_acl == NULL) {
5192 +               errno = ENOMEM;
5193 +               DEBUG(0,("Error in sys_acl_set_file is %d\n",errno));
5194 +               return(-1);
5195 +       }
5196 +
5197 +       memset(file_acl,0,BUFSIZ);
5198 +
5199 +       file_acl->acl_len = ACL_SIZ;
5200 +       file_acl->acl_mode = S_IXACL;
5201 +
5202 +       for(acl_entry_link=theacl; acl_entry_link != NULL; acl_entry_link = acl_entry_link->nextp) {
5203 +               acl_entry_link->entryp->ace_access >>= 6;
5204 +               id_type = acl_entry_link->entryp->ace_id->id_type;
5205 +
5206 +               switch(id_type) {
5207 +               case SMB_ACL_USER_OBJ:
5208 +                       file_acl->u_access = acl_entry_link->entryp->ace_access;
5209 +                       continue;
5210 +               case SMB_ACL_GROUP_OBJ:
5211 +                       file_acl->g_access = acl_entry_link->entryp->ace_access;
5212 +                       continue;
5213 +               case SMB_ACL_OTHER:
5214 +                       file_acl->o_access = acl_entry_link->entryp->ace_access;
5215 +                       continue;
5216 +               case SMB_ACL_MASK:
5217 +                       continue;
5218 +               }
5219 +
5220 +               if((file_acl->acl_len + sizeof(struct acl_entry)) > acl_length) {
5221 +                       acl_length += sizeof(struct acl_entry);
5222 +                       file_acl_temp = (struct acl *)SMB_MALLOC(acl_length);
5223 +                       if(file_acl_temp == NULL) {
5224 +                               SAFE_FREE(file_acl);
5225 +                               errno = ENOMEM;
5226 +                               DEBUG(0,("Error in sys_acl_set_file is %d\n",errno));
5227 +                               return(-1);
5228 +                       }  
5229 +
5230 +                       memcpy(file_acl_temp,file_acl,file_acl->acl_len);
5231 +                       SAFE_FREE(file_acl);
5232 +                       file_acl = file_acl_temp;
5233 +               }
5234 +
5235 +               acl_entry = (struct acl_entry *)((char *)file_acl + file_acl->acl_len);
5236 +               file_acl->acl_len += sizeof(struct acl_entry);
5237 +               acl_entry->ace_len = acl_entry_link->entryp->ace_len;
5238 +               acl_entry->ace_access = acl_entry_link->entryp->ace_access;
5239
5240 +               /* In order to use this, we'll need to wait until we can get denies */
5241 +               /* if(!acl_entry->ace_access && acl_entry->ace_type == ACC_PERMIT)
5242 +               acl_entry->ace_type = ACC_SPECIFY; */
5243 +
5244 +               acl_entry->ace_type = ACC_SPECIFY;
5245
5246 +               ace_id = acl_entry->ace_id;
5247
5248 +               ace_id->id_type = acl_entry_link->entryp->ace_id->id_type;
5249 +               DEBUG(10,("The id type is %d\n",ace_id->id_type));
5250 +               ace_id->id_len = acl_entry_link->entryp->ace_id->id_len;
5251 +               memcpy(&user_id, acl_entry_link->entryp->ace_id->id_data, sizeof(uid_t));
5252 +               memcpy(acl_entry->ace_id->id_data, &user_id, sizeof(uid_t));
5253 +       }
5254 +
5255 +       rc = chacl(name,file_acl,file_acl->acl_len);
5256 +       DEBUG(10,("errno is %d\n",errno));
5257 +       DEBUG(10,("return code is %d\n",rc));
5258 +       SAFE_FREE(file_acl);
5259 +       DEBUG(10,("Exiting the sys_acl_set_file\n"));
5260 +       return(rc);
5261 +}
5262 +
5263 +int sys_acl_set_fd( int fd, SMB_ACL_T theacl)
5264 +{
5265 +       struct acl_entry_link *acl_entry_link = NULL;
5266 +       struct acl *file_acl = NULL;
5267 +       struct acl *file_acl_temp = NULL;
5268 +       struct acl_entry *acl_entry = NULL;
5269 +       struct ace_id *ace_id = NULL;
5270 +       uint id_type;
5271 +       uint user_id;
5272 +       uint acl_length;
5273 +       uint rc;
5274
5275 +       DEBUG(10,("Entering sys_acl_set_fd\n"));
5276 +       acl_length = BUFSIZ;
5277 +       file_acl = (struct acl *)SMB_MALLOC(BUFSIZ);
5278 +
5279 +       if(file_acl == NULL) {
5280 +               errno = ENOMEM;
5281 +               DEBUG(0,("Error in sys_acl_set_fd is %d\n",errno));
5282 +               return(-1);
5283 +       }
5284 +
5285 +       memset(file_acl,0,BUFSIZ);
5286
5287 +       file_acl->acl_len = ACL_SIZ;
5288 +       file_acl->acl_mode = S_IXACL;
5289 +
5290 +       for(acl_entry_link=theacl; acl_entry_link != NULL; acl_entry_link = acl_entry_link->nextp) {
5291 +               acl_entry_link->entryp->ace_access >>= 6;
5292 +               id_type = acl_entry_link->entryp->ace_id->id_type;
5293 +               DEBUG(10,("The id_type is %d\n",id_type));
5294 +
5295 +               switch(id_type) {
5296 +               case SMB_ACL_USER_OBJ:
5297 +                       file_acl->u_access = acl_entry_link->entryp->ace_access;
5298 +                       continue;
5299 +               case SMB_ACL_GROUP_OBJ:
5300 +                       file_acl->g_access = acl_entry_link->entryp->ace_access;
5301 +                       continue;
5302 +               case SMB_ACL_OTHER:
5303 +                       file_acl->o_access = acl_entry_link->entryp->ace_access;
5304 +                       continue;
5305 +               case SMB_ACL_MASK:
5306 +                       continue;
5307 +               }
5308 +
5309 +               if((file_acl->acl_len + sizeof(struct acl_entry)) > acl_length) {
5310 +                       acl_length += sizeof(struct acl_entry);
5311 +                       file_acl_temp = (struct acl *)SMB_MALLOC(acl_length);
5312 +                       if(file_acl_temp == NULL) {
5313 +                               SAFE_FREE(file_acl);
5314 +                               errno = ENOMEM;
5315 +                               DEBUG(0,("Error in sys_acl_set_fd is %d\n",errno));
5316 +                               return(-1);
5317 +                       }
5318 +
5319 +                       memcpy(file_acl_temp,file_acl,file_acl->acl_len);
5320 +                       SAFE_FREE(file_acl);
5321 +                       file_acl = file_acl_temp;
5322 +               }
5323 +
5324 +               acl_entry = (struct acl_entry *)((char *)file_acl + file_acl->acl_len);
5325 +               file_acl->acl_len += sizeof(struct acl_entry);
5326 +               acl_entry->ace_len = acl_entry_link->entryp->ace_len;
5327 +               acl_entry->ace_access = acl_entry_link->entryp->ace_access;
5328
5329 +               /* In order to use this, we'll need to wait until we can get denies */
5330 +               /* if(!acl_entry->ace_access && acl_entry->ace_type == ACC_PERMIT)
5331 +                       acl_entry->ace_type = ACC_SPECIFY; */
5332
5333 +               acl_entry->ace_type = ACC_SPECIFY;
5334
5335 +               ace_id = acl_entry->ace_id;
5336
5337 +               ace_id->id_type = acl_entry_link->entryp->ace_id->id_type;
5338 +               DEBUG(10,("The id type is %d\n",ace_id->id_type));
5339 +               ace_id->id_len = acl_entry_link->entryp->ace_id->id_len;
5340 +               memcpy(&user_id, acl_entry_link->entryp->ace_id->id_data, sizeof(uid_t));
5341 +               memcpy(ace_id->id_data, &user_id, sizeof(uid_t));
5342 +       }
5343
5344 +       rc = fchacl(fd,file_acl,file_acl->acl_len);
5345 +       DEBUG(10,("errno is %d\n",errno));
5346 +       DEBUG(10,("return code is %d\n",rc));
5347 +       SAFE_FREE(file_acl);
5348 +       DEBUG(10,("Exiting sys_acl_set_fd\n"));
5349 +       return(rc);
5350 +}
5351 +
5352 +int sys_acl_delete_def_file(const char *name)
5353 +{
5354 +       /* AIX has no default ACL */
5355 +       return 0;
5356 +}
5357 +
5358 +int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
5359 +{
5360 +       return(*permset & perm);
5361 +}
5362 +
5363 +int sys_acl_free_text(char *text)
5364 +{
5365 +       return(0);
5366 +}
5367 +
5368 +int sys_acl_free_acl(SMB_ACL_T posix_acl)
5369 +{
5370 +       struct acl_entry_link *acl_entry_link;
5371 +
5372 +       for(acl_entry_link = posix_acl->nextp; acl_entry_link->nextp != NULL; acl_entry_link = acl_entry_link->nextp) {
5373 +               SAFE_FREE(acl_entry_link->prevp->entryp);
5374 +               SAFE_FREE(acl_entry_link->prevp);
5375 +       }
5376 +
5377 +       SAFE_FREE(acl_entry_link->prevp->entryp);
5378 +       SAFE_FREE(acl_entry_link->prevp);
5379 +       SAFE_FREE(acl_entry_link->entryp);
5380 +       SAFE_FREE(acl_entry_link);
5381
5382 +       return(0);
5383 +}
5384 +
5385 +int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype)
5386 +{
5387 +       return(0);
5388 +}
5389 +
5390 +#else /* No ACLs. */
5391 +
5392 +int sys_acl_get_entry(UNUSED(SMB_ACL_T the_acl), UNUSED(int entry_id), UNUSED(SMB_ACL_ENTRY_T *entry_p))
5393 +{
5394 +       errno = ENOSYS;
5395 +       return -1;
5396 +}
5397 +
5398 +int sys_acl_get_tag_type(UNUSED(SMB_ACL_ENTRY_T entry_d), UNUSED(SMB_ACL_TAG_T *tag_type_p))
5399 +{
5400 +       errno = ENOSYS;
5401 +       return -1;
5402 +}
5403 +
5404 +int sys_acl_get_permset(UNUSED(SMB_ACL_ENTRY_T entry_d), UNUSED(SMB_ACL_PERMSET_T *permset_p))
5405 +{
5406 +       errno = ENOSYS;
5407 +       return -1;
5408 +}
5409 +
5410 +void *sys_acl_get_qualifier(UNUSED(SMB_ACL_ENTRY_T entry_d))
5411 +{
5412 +       errno = ENOSYS;
5413 +       return NULL;
5414 +}
5415 +
5416 +SMB_ACL_T sys_acl_get_file(UNUSED(const char *path_p), UNUSED(SMB_ACL_TYPE_T type))
5417 +{
5418 +       errno = ENOSYS;
5419 +       return (SMB_ACL_T)NULL;
5420 +}
5421 +
5422 +SMB_ACL_T sys_acl_get_fd(UNUSED(int fd))
5423 +{
5424 +       errno = ENOSYS;
5425 +       return (SMB_ACL_T)NULL;
5426 +}
5427 +
5428 +int sys_acl_clear_perms(UNUSED(SMB_ACL_PERMSET_T permset))
5429 +{
5430 +       errno = ENOSYS;
5431 +       return -1;
5432 +}
5433 +
5434 +int sys_acl_add_perm( UNUSED(SMB_ACL_PERMSET_T permset), UNUSED(SMB_ACL_PERM_T perm))
5435 +{
5436 +       errno = ENOSYS;
5437 +       return -1;
5438 +}
5439 +
5440 +int sys_acl_get_perm( SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
5441 +{
5442 +       errno = ENOSYS;
5443 +       return (permset & perm) ? 1 : 0;
5444 +}
5445 +
5446 +char *sys_acl_to_text(UNUSED(SMB_ACL_T the_acl), UNUSED(ssize_t *plen))
5447 +{
5448 +       errno = ENOSYS;
5449 +       return NULL;
5450 +}
5451 +
5452 +int sys_acl_free_text(UNUSED(char *text))
5453 +{
5454 +       errno = ENOSYS;
5455 +       return -1;
5456 +}
5457 +
5458 +SMB_ACL_T sys_acl_init(UNUSED(int count))
5459 +{
5460 +       errno = ENOSYS;
5461 +       return NULL;
5462 +}
5463 +
5464 +int sys_acl_create_entry(UNUSED(SMB_ACL_T *pacl), UNUSED(SMB_ACL_ENTRY_T *pentry))
5465 +{
5466 +       errno = ENOSYS;
5467 +       return -1;
5468 +}
5469 +
5470 +int sys_acl_set_tag_type(UNUSED(SMB_ACL_ENTRY_T entry), UNUSED(SMB_ACL_TAG_T tagtype))
5471 +{
5472 +       errno = ENOSYS;
5473 +       return -1;
5474 +}
5475 +
5476 +int sys_acl_set_qualifier(UNUSED(SMB_ACL_ENTRY_T entry), UNUSED(void *qual))
5477 +{
5478 +       errno = ENOSYS;
5479 +       return -1;
5480 +}
5481 +
5482 +int sys_acl_set_permset(UNUSED(SMB_ACL_ENTRY_T entry), UNUSED(SMB_ACL_PERMSET_T permset))
5483 +{
5484 +       errno = ENOSYS;
5485 +       return -1;
5486 +}
5487 +
5488 +int sys_acl_valid(UNUSED(SMB_ACL_T theacl))
5489 +{
5490 +       errno = ENOSYS;
5491 +       return -1;
5492 +}
5493 +
5494 +int sys_acl_set_file(UNUSED(const char *name), UNUSED(SMB_ACL_TYPE_T acltype), UNUSED(SMB_ACL_T theacl))
5495 +{
5496 +       errno = ENOSYS;
5497 +       return -1;
5498 +}
5499 +
5500 +int sys_acl_set_fd(UNUSED(int fd), UNUSED(SMB_ACL_T theacl))
5501 +{
5502 +       errno = ENOSYS;
5503 +       return -1;
5504 +}
5505 +
5506 +int sys_acl_delete_def_file(UNUSED(const char *name))
5507 +{
5508 +       errno = ENOSYS;
5509 +       return -1;
5510 +}
5511 +
5512 +int sys_acl_free_acl(UNUSED(SMB_ACL_T the_acl))
5513 +{
5514 +       errno = ENOSYS;
5515 +       return -1;
5516 +}
5517 +
5518 +int sys_acl_free_qualifier(UNUSED(void *qual), UNUSED(SMB_ACL_TAG_T tagtype))
5519 +{
5520 +       errno = ENOSYS;
5521 +       return -1;
5522 +}
5523 +
5524 +#endif /* No ACLs. */
5525 +
5526 +/************************************************************************
5527 + Deliberately outside the ACL defines. Return 1 if this is a "no acls"
5528 + errno, 0 if not.
5529 +************************************************************************/
5530 +
5531 +int no_acl_syscall_error(int err)
5532 +{
5533 +#if defined(ENOSYS)
5534 +       if (err == ENOSYS) {
5535 +               return 1;
5536 +       }
5537 +#endif
5538 +#if defined(ENOTSUP)
5539 +       if (err == ENOTSUP) {
5540 +               return 1;
5541 +       }
5542 +#endif
5543 +       return 0;
5544 +}
5545 +
5546 +#endif /* SUPPORT_ACLS */
5547 --- old/lib/sysacls.h
5548 +++ new/lib/sysacls.h
5549 @@ -0,0 +1,40 @@
5550 +#ifdef SUPPORT_ACLS
5551 +
5552 +#ifdef HAVE_SYS_ACL_H
5553 +#include <sys/acl.h>
5554 +#endif
5555 +#ifdef HAVE_ACL_LIBACL_H
5556 +#include <acl/libacl.h>
5557 +#endif
5558 +#include "smb_acls.h"
5559 +
5560 +#define SMB_MALLOC(cnt) new_array(char, cnt)
5561 +#define SMB_MALLOC_P(obj) new_array(obj, 1)
5562 +#define SMB_MALLOC_ARRAY(obj, cnt) new_array(obj, cnt)
5563 +#define SMB_REALLOC(mem, cnt) realloc_array(mem, char, cnt)
5564 +#define slprintf snprintf
5565 +
5566 +int sys_acl_get_entry(SMB_ACL_T the_acl, int entry_id, SMB_ACL_ENTRY_T *entry_p);
5567 +int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p);
5568 +int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p);
5569 +void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d);
5570 +SMB_ACL_T sys_acl_get_file(const char *path_p, SMB_ACL_TYPE_T type);
5571 +SMB_ACL_T sys_acl_get_fd(int fd);
5572 +int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset);
5573 +int sys_acl_add_perm(SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm);
5574 +int sys_acl_get_perm(SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm);
5575 +char *sys_acl_to_text(SMB_ACL_T the_acl, ssize_t *plen);
5576 +SMB_ACL_T sys_acl_init(int count);
5577 +int sys_acl_create_entry(SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry);
5578 +int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype);
5579 +int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry, void *qual);
5580 +int sys_acl_set_permset(SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset);
5581 +int sys_acl_valid(SMB_ACL_T theacl);
5582 +int sys_acl_set_file(const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl);
5583 +int sys_acl_set_fd(int fd, SMB_ACL_T theacl);
5584 +int sys_acl_delete_def_file(const char *name);
5585 +int sys_acl_free_text(char *text);
5586 +int sys_acl_free_acl(SMB_ACL_T the_acl);
5587 +int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype);
5588 +
5589 +#endif /* SUPPORT_ACLS */
5590 --- old/log.c
5591 +++ new/log.c
5592 @@ -625,8 +625,10 @@ static void log_formatted(enum logcode c
5593                         c[5] = !(iflags & ITEM_REPORT_PERMS) ? '.' : 'p';
5594                         c[6] = !(iflags & ITEM_REPORT_OWNER) ? '.' : 'o';
5595                         c[7] = !(iflags & ITEM_REPORT_GROUP) ? '.' : 'g';
5596 -                       c[8] = '.';
5597 -                       c[9] = '\0';
5598 +                       c[8] = !(iflags & ITEM_REPORT_ATIME) ? '.' : 'u';
5599 +                       c[9] = !(iflags & ITEM_REPORT_ACL) ? '.' : 'a';
5600 +                       c[10] = !(iflags & ITEM_REPORT_XATTR) ? '.' : 'x';
5601 +                       c[11] = '\0';
5602  
5603                         if (iflags & (ITEM_IS_NEW|ITEM_MISSING_DATA)) {
5604                                 char ch = iflags & ITEM_IS_NEW ? '+' : '?';
5605 --- old/options.c
5606 +++ new/options.c
5607 @@ -47,6 +47,7 @@ int copy_dirlinks = 0;
5608  int copy_links = 0;
5609  int preserve_links = 0;
5610  int preserve_hard_links = 0;
5611 +int preserve_acls = 0;
5612  int preserve_perms = 0;
5613  int preserve_executability = 0;
5614  int preserve_devices = 0;
5615 @@ -199,6 +200,7 @@ static void print_rsync_version(enum log
5616         char const *got_socketpair = "no ";
5617         char const *have_inplace = "no ";
5618         char const *hardlinks = "no ";
5619 +       char const *acls = "no ";
5620         char const *links = "no ";
5621         char const *ipv6 = "no ";
5622         STRUCT_STAT *dumstat;
5623 @@ -215,6 +217,10 @@ static void print_rsync_version(enum log
5624         hardlinks = "";
5625  #endif
5626  
5627 +#ifdef SUPPORT_ACLS
5628 +       acls = "";
5629 +#endif
5630 +
5631  #ifdef SUPPORT_LINKS
5632         links = "";
5633  #endif
5634 @@ -233,8 +239,8 @@ static void print_rsync_version(enum log
5635                 (int)(sizeof (int64) * 8));
5636         rprintf(f, "    %ssocketpairs, %shardlinks, %ssymlinks, %sIPv6, batchfiles, %sinplace,\n",
5637                 got_socketpair, hardlinks, links, ipv6, have_inplace);
5638 -       rprintf(f, "    %sappend\n",
5639 -               have_inplace);
5640 +       rprintf(f, "    %sappend, %sACLs\n",
5641 +               have_inplace, acls);
5642  
5643  #ifdef MAINTAINER_MODE
5644         rprintf(f, "Panic Action: \"%s\"\n", get_panic_action());
5645 @@ -280,7 +286,7 @@ void usage(enum logcode F)
5646    rprintf(F," -q, --quiet                 suppress non-error messages\n");
5647    rprintf(F,"     --no-motd               suppress daemon-mode MOTD (see manpage caveat)\n");
5648    rprintf(F," -c, --checksum              skip based on checksum, not mod-time & size\n");
5649 -  rprintf(F," -a, --archive               archive mode; same as -rlptgoD (no -H)\n");
5650 +  rprintf(F," -a, --archive               archive mode; same as -rlptgoD (no -H, -A)\n");
5651    rprintf(F,"     --no-OPTION             turn off an implied OPTION (e.g. --no-D)\n");
5652    rprintf(F," -r, --recursive             recurse into directories\n");
5653    rprintf(F," -R, --relative              use relative path names\n");
5654 @@ -302,6 +308,9 @@ void usage(enum logcode F)
5655    rprintf(F," -p, --perms                 preserve permissions\n");
5656    rprintf(F," -E, --executability         preserve the file's executability\n");
5657    rprintf(F,"     --chmod=CHMOD           affect file and/or directory permissions\n");
5658 +#ifdef SUPPORT_ACLS
5659 +  rprintf(F," -A, --acls                  preserve ACLs (implies --perms)\n");
5660 +#endif
5661    rprintf(F," -o, --owner                 preserve owner (super-user only)\n");
5662    rprintf(F," -g, --group                 preserve group\n");
5663    rprintf(F,"     --devices               preserve device files (super-user only)\n");
5664 @@ -422,6 +431,9 @@ static struct poptOption long_options[] 
5665    {"no-perms",         0,  POPT_ARG_VAL,    &preserve_perms, 0, 0, 0 },
5666    {"no-p",             0,  POPT_ARG_VAL,    &preserve_perms, 0, 0, 0 },
5667    {"executability",   'E', POPT_ARG_NONE,   &preserve_executability, 0, 0, 0 },
5668 +  {"acls",            'A', POPT_ARG_NONE,   0, 'A', 0, 0 },
5669 +  {"no-acls",          0,  POPT_ARG_VAL,    &preserve_acls, 0, 0, 0 },
5670 +  {"no-A",             0,  POPT_ARG_VAL,    &preserve_acls, 0, 0, 0 },
5671    {"times",           't', POPT_ARG_VAL,    &preserve_times, 1, 0, 0 },
5672    {"no-times",         0,  POPT_ARG_VAL,    &preserve_times, 0, 0, 0 },
5673    {"no-t",             0,  POPT_ARG_VAL,    &preserve_times, 0, 0, 0 },
5674 @@ -1087,6 +1099,24 @@ int parse_arguments(int *argc, const cha
5675                         usage(FINFO);
5676                         exit_cleanup(0);
5677  
5678 +               case 'A':
5679 +#ifdef SUPPORT_ACLS
5680 +                       preserve_acls = 1;
5681 +                       preserve_perms = 1;
5682 +                       break;
5683 +#else
5684 +                       /* FIXME: this should probably be ignored with a
5685 +                        * warning and then countermeasures taken to
5686 +                        * restrict group and other access in the presence
5687 +                        * of any more restrictive ACLs, but this is safe
5688 +                        * for now */
5689 +                       snprintf(err_buf,sizeof(err_buf),
5690 +                                 "ACLs are not supported on this %s\n",
5691 +                                am_server ? "server" : "client");
5692 +                       return 0;
5693 +#endif
5694 +
5695 +
5696                 default:
5697                         /* A large opt value means that set_refuse_options()
5698                          * turned this option off. */
5699 @@ -1223,6 +1253,8 @@ int parse_arguments(int *argc, const cha
5700                 preserve_uid = ++flist_extra_cnt;
5701         if (preserve_gid)
5702                 preserve_gid = ++flist_extra_cnt;
5703 +       if (preserve_acls)
5704 +               preserve_acls = ++flist_extra_cnt;
5705  
5706         *argv = poptGetArgs(pc);
5707         *argc = count_args(*argv);
5708 @@ -1534,6 +1566,10 @@ void server_options(char **args,int *arg
5709  
5710         if (preserve_hard_links)
5711                 argstr[x++] = 'H';
5712 +#ifdef SUPPORT_ACLS
5713 +       if (preserve_acls)
5714 +               argstr[x++] = 'A';
5715 +#endif
5716         if (preserve_uid)
5717                 argstr[x++] = 'o';
5718         if (preserve_gid)
5719 --- old/receiver.c
5720 +++ new/receiver.c
5721 @@ -47,6 +47,7 @@ extern int keep_partial;
5722  extern int checksum_seed;
5723  extern int inplace;
5724  extern int delay_updates;
5725 +extern mode_t orig_umask;
5726  extern struct stats stats;
5727  extern char *stdout_format;
5728  extern char *tmpdir;
5729 @@ -347,6 +348,10 @@ int recv_files(int f_in, struct file_lis
5730         int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
5731         enum logcode log_code = log_before_transfer ? FLOG : FINFO;
5732         int max_phase = protocol_version >= 29 ? 2 : 1;
5733 +       int dflt_perms = (ACCESSPERMS & ~orig_umask);
5734 +#ifdef SUPPORT_ACLS
5735 +       const char *parent_dirname = "";
5736 +#endif
5737         int ndx, recv_ok;
5738  
5739         if (verbose > 2)
5740 @@ -550,7 +555,16 @@ int recv_files(int f_in, struct file_lis
5741                  * mode based on the local permissions and some heuristics. */
5742                 if (!preserve_perms) {
5743                         int exists = fd1 != -1;
5744 -                       file->mode = dest_mode(file->mode, st.st_mode, exists);
5745 +#ifdef SUPPORT_ACLS
5746 +                       const char *dn = file->dirname ? file->dirname : ".";
5747 +                       if (parent_dirname != dn
5748 +                        && strcmp(parent_dirname, dn) != 0) {
5749 +                               dflt_perms = default_perms_for_dir(dn);
5750 +                               parent_dirname = dn;
5751 +                       }
5752 +#endif
5753 +                       file->mode = dest_mode(file->mode, st.st_mode,
5754 +                                              dflt_perms, exists);
5755                 }
5756  
5757                 /* We now check to see if we are writing the file "inplace" */
5758 --- old/rsync.c
5759 +++ new/rsync.c
5760 @@ -32,6 +32,7 @@
5761  
5762  extern int verbose;
5763  extern int dry_run;
5764 +extern int preserve_acls;
5765  extern int preserve_perms;
5766  extern int preserve_executability;
5767  extern int preserve_times;
5768 @@ -48,7 +49,6 @@ extern int preserve_gid;
5769  extern int inplace;
5770  extern int keep_dirlinks;
5771  extern int make_backups;
5772 -extern mode_t orig_umask;
5773  extern struct stats stats;
5774  extern struct file_list *the_file_list;
5775  extern struct chmod_mode_struct *daemon_chmod_modes;
5776 @@ -153,7 +153,8 @@ void free_sums(struct sum_struct *s)
5777  
5778  /* This is only called when we aren't preserving permissions.  Figure out what
5779   * the permissions should be and return them merged back into the mode. */
5780 -mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int exists)
5781 +mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms,
5782 +                int exists)
5783  {
5784         int new_mode;
5785         /* If the file already exists, we'll return the local permissions,
5786 @@ -170,56 +171,65 @@ mode_t dest_mode(mode_t flist_mode, mode
5787                                 new_mode |= (new_mode & 0444) >> 2;
5788                 }
5789         } else {
5790 -               /* Apply the umask and turn off special permissions. */
5791 -               new_mode = flist_mode & (~CHMOD_BITS | (ACCESSPERMS & ~orig_umask));
5792 +               /* Apply destination default permissions and turn
5793 +                * off special permissions. */
5794 +               new_mode = flist_mode & (~CHMOD_BITS | dflt_perms);
5795         }
5796         return new_mode;
5797  }
5798  
5799 -int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st,
5800 +int set_file_attrs(char *fname, struct file_struct *file, statx *sxp,
5801                    int flags)
5802  {
5803         int updated = 0;
5804 -       STRUCT_STAT st2;
5805 +       statx sx2;
5806         int change_uid, change_gid;
5807         mode_t new_mode = file->mode;
5808  
5809 -       if (!st) {
5810 +       if (!sxp) {
5811                 if (dry_run)
5812                         return 1;
5813 -               if (link_stat(fname, &st2, 0) < 0) {
5814 +               if (link_stat(fname, &sx2.st, 0) < 0) {
5815                         rsyserr(FERROR, errno, "stat %s failed",
5816                                 full_fname(fname));
5817                         return 0;
5818                 }
5819 -               st = &st2;
5820 +#ifdef SUPPORT_ACLS
5821 +               sx2.acc_acl = sx2.def_acl = NULL;
5822 +#endif
5823                 if (!preserve_perms && S_ISDIR(new_mode)
5824 -                && st->st_mode & S_ISGID) {
5825 +                && sx2.st.st_mode & S_ISGID) {
5826                         /* We just created this directory and its setgid
5827                          * bit is on, so make sure it stays on. */
5828                         new_mode |= S_ISGID;
5829                 }
5830 +               sxp = &sx2;
5831         }
5832  
5833 -       if (!preserve_times || (S_ISDIR(st->st_mode) && omit_dir_times))
5834 +#ifdef SUPPORT_ACLS
5835 +       if (preserve_acls && !ACL_READY(*sxp))
5836 +               get_acl(fname, sxp);
5837 +#endif
5838 +
5839 +       if (!preserve_times || (S_ISDIR(sxp->st.st_mode) && omit_dir_times))
5840                 flags |= ATTRS_SKIP_MTIME;
5841         if (!(flags & ATTRS_SKIP_MTIME)
5842 -           && cmp_time(st->st_mtime, file->modtime) != 0) {
5843 -               int ret = set_modtime(fname, file->modtime, st->st_mode);
5844 +           && cmp_time(sxp->st.st_mtime, file->modtime) != 0) {
5845 +               int ret = set_modtime(fname, file->modtime, sxp->st.st_mode);
5846                 if (ret < 0) {
5847                         rsyserr(FERROR, errno, "failed to set times on %s",
5848                                 full_fname(fname));
5849 -                       return 0;
5850 +                       goto cleanup;
5851                 }
5852                 if (ret == 0) /* ret == 1 if symlink could not be set */
5853                         updated = 1;
5854         }
5855  
5856 -       change_uid = am_root && preserve_uid && st->st_uid != F_UID(file);
5857 +       change_uid = am_root && preserve_uid && sxp->st.st_uid != F_UID(file);
5858         change_gid = preserve_gid && F_GID(file) != GID_NONE
5859 -               && st->st_gid != F_GID(file);
5860 +               && sxp->st.st_gid != F_GID(file);
5861  #if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
5862 -       if (S_ISLNK(st->st_mode))
5863 +       if (S_ISLNK(sxp->st.st_mode))
5864                 ;
5865         else
5866  #endif
5867 @@ -229,45 +239,57 @@ int set_file_attrs(char *fname, struct f
5868                                 rprintf(FINFO,
5869                                         "set uid of %s from %ld to %ld\n",
5870                                         fname,
5871 -                                       (long)st->st_uid, (long)F_UID(file));
5872 +                                       (long)sxp->st.st_uid, (long)F_UID(file));
5873                         }
5874                         if (change_gid) {
5875                                 rprintf(FINFO,
5876                                         "set gid of %s from %ld to %ld\n",
5877                                         fname,
5878 -                                       (long)st->st_gid, (long)F_GID(file));
5879 +                                       (long)sxp->st.st_gid, (long)F_GID(file));
5880                         }
5881                 }
5882                 if (do_lchown(fname,
5883 -                   change_uid ? F_UID(file) : st->st_uid,
5884 -                   change_gid ? F_GID(file) : st->st_gid) != 0) {
5885 +                   change_uid ? F_UID(file) : sxp->st.st_uid,
5886 +                   change_gid ? F_GID(file) : sxp->st.st_gid) != 0) {
5887                         /* shouldn't have attempted to change uid or gid
5888                          * unless have the privilege */
5889                         rsyserr(FERROR, errno, "%s %s failed",
5890                             change_uid ? "chown" : "chgrp",
5891                             full_fname(fname));
5892 -                       return 0;
5893 +                       goto cleanup;
5894                 }
5895                 /* a lchown had been done - we have to re-stat if the
5896                  * destination had the setuid or setgid bits set due
5897                  * to the side effect of the chown call */
5898 -               if (st->st_mode & (S_ISUID | S_ISGID)) {
5899 -                       link_stat(fname, st,
5900 -                                 keep_dirlinks && S_ISDIR(st->st_mode));
5901 +               if (sxp->st.st_mode & (S_ISUID | S_ISGID)) {
5902 +                       link_stat(fname, &sxp->st,
5903 +                                 keep_dirlinks && S_ISDIR(sxp->st.st_mode));
5904                 }
5905                 updated = 1;
5906         }
5907  
5908         if (daemon_chmod_modes && !S_ISLNK(new_mode))
5909                 new_mode = tweak_mode(new_mode, daemon_chmod_modes);
5910 +
5911 +#ifdef SUPPORT_ACLS
5912 +       /* It's OK to call set_acl() now, even for a dir, as the generator
5913 +        * will enable owner-writability using chmod, if necessary.
5914 +        * 
5915 +        * If set_acl() changes permission bits in the process of setting
5916 +        * an access ACL, it changes sxp->st.st_mode so we know whether we
5917 +        * need to chmod(). */
5918 +       if (preserve_acls && set_acl(fname, file, sxp) == 0)
5919 +               updated = 1;
5920 +#endif
5921 +
5922  #ifdef HAVE_CHMOD
5923 -       if ((st->st_mode & CHMOD_BITS) != (new_mode & CHMOD_BITS)) {
5924 +       if ((sxp->st.st_mode & CHMOD_BITS) != (new_mode & CHMOD_BITS)) {
5925                 int ret = do_chmod(fname, new_mode);
5926                 if (ret < 0) {
5927                         rsyserr(FERROR, errno,
5928                                 "failed to set permissions on %s",
5929                                 full_fname(fname));
5930 -                       return 0;
5931 +                       goto cleanup;
5932                 }
5933                 if (ret == 0) /* ret == 1 if symlink could not be set */
5934                         updated = 1;
5935 @@ -280,6 +302,11 @@ int set_file_attrs(char *fname, struct f
5936                 else
5937                         rprintf(FCLIENT, "%s is uptodate\n", fname);
5938         }
5939 +  cleanup:
5940 +#ifdef SUPPORT_ACLS
5941 +       if (preserve_acls && sxp == &sx2)
5942 +               free_acl(&sx2);
5943 +#endif
5944         return updated;
5945  }
5946  
5947 --- old/rsync.h
5948 +++ new/rsync.h
5949 @@ -496,6 +496,14 @@ struct idev {
5950  #define IN_LOOPBACKNET 127
5951  #endif
5952  
5953 +#ifndef HAVE_NO_ACLS
5954 +#define SUPPORT_ACLS 1
5955 +#endif
5956 +
5957 +#if HAVE_UNIXWARE_ACLS|HAVE_SOLARIS_ACLS|HAVE_HPUX_ACLS
5958 +#define ACLS_NEED_MASK 1
5959 +#endif
5960 +
5961  #define GID_NONE ((gid_t)-1)
5962  
5963  #define HL_CHECK_MASTER        0
5964 @@ -553,10 +561,12 @@ extern int preserve_gid;
5965  /* When the associated option is on, all entries will have these present: */
5966  #define F_UID(f) REQ_EXTRA(f, preserve_uid)->uid
5967  #define F_GID(f) REQ_EXTRA(f, preserve_gid)->gid
5968 +#define F_ACL(f) REQ_EXTRA(f, preserve_acls)->unum
5969  
5970  /* These items are per-entry optional and mutally exclusive: */
5971  #define F_HL_IDEV(f) OPT_EXTRA(f, LEN64_BUMP(f))->idev
5972  #define F_HL_LIST(f) OPT_EXTRA(f, LEN64_BUMP(f))->hlist
5973 +#define F_DEF_ACL(f) OPT_EXTRA(f, LEN64_BUMP(f))->unum
5974  
5975  /* This optional item might follow an F_HL_*() item.
5976   * (Note: a device doesn't need to check LEN64_BUMP(f).) */
5977 @@ -694,6 +704,17 @@ struct stats {
5978  
5979  struct chmod_mode_struct;
5980  
5981 +#define EMPTY_ITEM_LIST {NULL, 0, 0}
5982 +
5983 +typedef struct {
5984 +       void *items;
5985 +       size_t count;
5986 +       size_t malloced;
5987 +} item_list;
5988 +
5989 +#define EXPAND_ITEM_LIST(lp, type, incr) \
5990 +       (type*)expand_item_list(lp, sizeof (type), #type, incr)
5991 +
5992  #include "byteorder.h"
5993  #include "lib/mdfour.h"
5994  #include "lib/wildmatch.h"
5995 @@ -712,6 +733,16 @@ struct chmod_mode_struct;
5996  #define NORETURN __attribute__((__noreturn__))
5997  #endif
5998  
5999 +typedef struct {
6000 +    STRUCT_STAT st;
6001 +#ifdef SUPPORT_ACLS
6002 +    struct rsync_acl *acc_acl; /* access ACL */
6003 +    struct rsync_acl *def_acl; /* default ACL */
6004 +#endif
6005 +} statx;
6006 +
6007 +#define ACL_READY(sx) ((sx).acc_acl != NULL)
6008 +
6009  #include "proto.h"
6010  
6011  /* We have replacement versions of these if they're missing. */
6012 --- old/rsync.yo
6013 +++ new/rsync.yo
6014 @@ -301,7 +301,7 @@ to the detailed description below for a 
6015   -q, --quiet                 suppress non-error messages
6016       --no-motd               suppress daemon-mode MOTD (see caveat)
6017   -c, --checksum              skip based on checksum, not mod-time & size
6018 - -a, --archive               archive mode; same as -rlptgoD (no -H)
6019 + -a, --archive               archive mode; same as -rlptgoD (no -H, -A)
6020       --no-OPTION             turn off an implied OPTION (e.g. --no-D)
6021   -r, --recursive             recurse into directories
6022   -R, --relative              use relative path names
6023 @@ -323,6 +323,7 @@ to the detailed description below for a 
6024   -p, --perms                 preserve permissions
6025   -E, --executability         preserve executability
6026       --chmod=CHMOD           affect file and/or directory permissions
6027 + -A, --acls                  preserve ACLs (implies -p) [non-standard]
6028   -o, --owner                 preserve owner (super-user only)
6029   -g, --group                 preserve group
6030       --devices               preserve device files (super-user only)
6031 @@ -754,7 +755,9 @@ quote(itemization(
6032    permissions, though the bf(--executability) option might change just
6033    the execute permission for the file.
6034    it() New files get their "normal" permission bits set to the source
6035 -  file's permissions masked with the receiving end's umask setting, and
6036 +  file's permissions masked with the receiving directory's default
6037 +  permissions (either the receiving process's umask, or the permissions
6038 +  specified via the destination directory's default ACL), and
6039    their special permission bits disabled except in the case where a new
6040    directory inherits a setgid bit from its parent directory.
6041  ))
6042 @@ -785,9 +788,11 @@ The preservation of the destination's se
6043  directories when bf(--perms) is off was added in rsync 2.6.7.  Older rsync
6044  versions erroneously preserved the three special permission bits for
6045  newly-created files when bf(--perms) was off, while overriding the
6046 -destination's setgid bit setting on a newly-created directory.  (Keep in
6047 -mind that it is the version of the receiving rsync that affects this
6048 -behavior.)
6049 +destination's setgid bit setting on a newly-created directory.  Default ACL
6050 +observance was added to the ACL patch for rsync 2.6.7, so older (or
6051 +non-ACL-enabled) rsyncs use the umask even if default ACLs are present.
6052 +(Keep in mind that it is the version of the receiving rsync that affects
6053 +these behaviors.)
6054  
6055  dit(bf(-E, --executability)) This option causes rsync to preserve the
6056  executability (or non-executability) of regular files when bf(--perms) is
6057 @@ -805,6 +810,15 @@ quote(itemization(
6058  
6059  If bf(--perms) is enabled, this option is ignored.
6060  
6061 +dit(bf(-A, --acls)) This option causes rsync to update the destination
6062 +ACLs to be the same as the source ACLs.  This nonstandard option only
6063 +works if the remote rsync also supports it.  bf(--acls) implies bf(--perms).
6064 +
6065 +Note also that an optimization of the ACL-sending protocol used by this
6066 +version makes it incompatible with sending files to an older ACL-enabled
6067 +rsync unless you double the bf(--acls) option (e.g. bf(-AA)).  This
6068 +doubling is not needed when pulling files from an older rsync.
6069 +
6070  dit(bf(--chmod)) This option tells rsync to apply one or more
6071  comma-separated "chmod" strings to the permission of the files in the
6072  transfer.  The resulting value is treated as though it was the permissions
6073 @@ -1402,8 +1416,8 @@ if the receiving rsync is at least versi
6074  with older versions of rsync, but that also turns on the output of other
6075  verbose messages).
6076  
6077 -The "%i" escape has a cryptic output that is 9 letters long.  The general
6078 -format is like the string bf(YXcstpogz), where bf(Y) is replaced by the
6079 +The "%i" escape has a cryptic output that is 11 letters long.  The general
6080 +format is like the string bf(YXcstpoguax), where bf(Y) is replaced by the
6081  type of update being done, bf(X) is replaced by the file-type, and the
6082  other letters represent attributes that may be output if they are being
6083  modified.
6084 @@ -1452,7 +1466,11 @@ quote(itemization(
6085    sender's value (requires bf(--owner) and super-user privileges).
6086    it() A bf(g) means the group is different and is being updated to the
6087    sender's value (requires bf(--group) and the authority to set the group).
6088 -  it() The bf(z) slot is reserved for future use.
6089 +  it() The bf(u) slot is reserved for reporting update (access) time changes
6090 +  (a feature that is not yet released).
6091 +  it() The bf(a) means that the ACL information changed.
6092 +  it() The bf(x) slot is reserved for reporting extended attribute changes
6093 +  (a feature that is not yet released).
6094  ))
6095  
6096  One other output is possible:  when deleting files, the "%i" will output
6097 --- old/smb_acls.h
6098 +++ new/smb_acls.h
6099 @@ -0,0 +1,281 @@
6100 +/* 
6101 +   Unix SMB/Netbios implementation.
6102 +   Version 2.2.x
6103 +   Portable SMB ACL interface
6104 +   Copyright (C) Jeremy Allison 2000
6105 +   
6106 +   This program is free software; you can redistribute it and/or modify
6107 +   it under the terms of the GNU General Public License as published by
6108 +   the Free Software Foundation; either version 2 of the License, or
6109 +   (at your option) any later version.
6110 +   
6111 +   This program is distributed in the hope that it will be useful,
6112 +   but WITHOUT ANY WARRANTY; without even the implied warranty of
6113 +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6114 +   GNU General Public License for more details.
6115 +   
6116 +   You should have received a copy of the GNU General Public License
6117 +   along with this program; if not, write to the Free Software
6118 +   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
6119 +*/
6120 +
6121 +#ifndef _SMB_ACLS_H
6122 +#define _SMB_ACLS_H
6123 +
6124 +#if defined HAVE_POSIX_ACLS
6125 +
6126 +/* This is an identity mapping (just remove the SMB_). */
6127 +
6128 +#define SMB_ACL_TAG_T          acl_tag_t
6129 +#define SMB_ACL_TYPE_T         acl_type_t
6130 +#define SMB_ACL_PERMSET_T      acl_permset_t
6131 +#define SMB_ACL_PERM_T         acl_perm_t
6132 +#define SMB_ACL_READ           ACL_READ
6133 +#define SMB_ACL_WRITE          ACL_WRITE
6134 +#define SMB_ACL_EXECUTE                ACL_EXECUTE
6135 +
6136 +/* Types of ACLs. */
6137 +#define SMB_ACL_USER           ACL_USER
6138 +#define SMB_ACL_USER_OBJ       ACL_USER_OBJ
6139 +#define SMB_ACL_GROUP          ACL_GROUP
6140 +#define SMB_ACL_GROUP_OBJ      ACL_GROUP_OBJ
6141 +#define SMB_ACL_OTHER          ACL_OTHER
6142 +#define SMB_ACL_MASK           ACL_MASK
6143 +
6144 +#define SMB_ACL_T              acl_t
6145 +
6146 +#define SMB_ACL_ENTRY_T                acl_entry_t
6147 +
6148 +#define SMB_ACL_FIRST_ENTRY    ACL_FIRST_ENTRY
6149 +#define SMB_ACL_NEXT_ENTRY     ACL_NEXT_ENTRY
6150 +
6151 +#define SMB_ACL_TYPE_ACCESS    ACL_TYPE_ACCESS
6152 +#define SMB_ACL_TYPE_DEFAULT   ACL_TYPE_DEFAULT
6153 +
6154 +#elif defined HAVE_TRU64_ACLS
6155 +
6156 +/* This is for DEC/Compaq Tru64 UNIX */
6157 +
6158 +#define SMB_ACL_TAG_T          acl_tag_t
6159 +#define SMB_ACL_TYPE_T         acl_type_t
6160 +#define SMB_ACL_PERMSET_T      acl_permset_t
6161 +#define SMB_ACL_PERM_T         acl_perm_t
6162 +#define SMB_ACL_READ           ACL_READ
6163 +#define SMB_ACL_WRITE          ACL_WRITE
6164 +#define SMB_ACL_EXECUTE                ACL_EXECUTE
6165 +
6166 +/* Types of ACLs. */
6167 +#define SMB_ACL_USER           ACL_USER
6168 +#define SMB_ACL_USER_OBJ       ACL_USER_OBJ
6169 +#define SMB_ACL_GROUP          ACL_GROUP
6170 +#define SMB_ACL_GROUP_OBJ      ACL_GROUP_OBJ
6171 +#define SMB_ACL_OTHER          ACL_OTHER
6172 +#define SMB_ACL_MASK           ACL_MASK
6173 +
6174 +#define SMB_ACL_T              acl_t
6175 +
6176 +#define SMB_ACL_ENTRY_T                acl_entry_t
6177 +
6178 +#define SMB_ACL_FIRST_ENTRY    0
6179 +#define SMB_ACL_NEXT_ENTRY     1
6180 +
6181 +#define SMB_ACL_TYPE_ACCESS    ACL_TYPE_ACCESS
6182 +#define SMB_ACL_TYPE_DEFAULT   ACL_TYPE_DEFAULT
6183 +
6184 +#elif defined HAVE_UNIXWARE_ACLS || defined HAVE_SOLARIS_ACLS
6185 +/*
6186 + * Donated by Michael Davidson <md@sco.COM> for UnixWare / OpenUNIX.
6187 + * Modified by Toomas Soome <tsoome@ut.ee> for Solaris.
6188 + */
6189 +
6190 +/* SVR4.2 ES/MP ACLs */
6191 +typedef int SMB_ACL_TAG_T;
6192 +typedef int SMB_ACL_TYPE_T;
6193 +typedef ushort *SMB_ACL_PERMSET_T;
6194 +typedef ushort SMB_ACL_PERM_T;
6195 +#define SMB_ACL_READ           4
6196 +#define SMB_ACL_WRITE          2
6197 +#define SMB_ACL_EXECUTE                1
6198 +
6199 +/* Types of ACLs. */
6200 +#define SMB_ACL_USER           USER
6201 +#define SMB_ACL_USER_OBJ       USER_OBJ
6202 +#define SMB_ACL_GROUP          GROUP
6203 +#define SMB_ACL_GROUP_OBJ      GROUP_OBJ
6204 +#define SMB_ACL_OTHER          OTHER_OBJ
6205 +#define SMB_ACL_MASK           CLASS_OBJ
6206 +
6207 +typedef struct SMB_ACL_T {
6208 +       int size;
6209 +       int count;
6210 +       int next;
6211 +       struct acl acl[1];
6212 +} *SMB_ACL_T;
6213 +
6214 +typedef struct acl *SMB_ACL_ENTRY_T;
6215 +
6216 +#define SMB_ACL_FIRST_ENTRY    0
6217 +#define SMB_ACL_NEXT_ENTRY     1
6218 +
6219 +#define SMB_ACL_TYPE_ACCESS    0
6220 +#define SMB_ACL_TYPE_DEFAULT   1
6221 +
6222 +#ifdef __CYGWIN__
6223 +#define SMB_ACL_LOSES_SPECIAL_MODE_BITS
6224 +#endif
6225 +
6226 +#elif defined HAVE_HPUX_ACLS
6227 +
6228 +/*
6229 + * Based on the Solaris & UnixWare code.
6230 + */
6231 +
6232 +#undef GROUP
6233 +#include <sys/aclv.h>
6234 +
6235 +/* SVR4.2 ES/MP ACLs */
6236 +typedef int SMB_ACL_TAG_T;
6237 +typedef int SMB_ACL_TYPE_T;
6238 +typedef ushort *SMB_ACL_PERMSET_T;
6239 +typedef ushort SMB_ACL_PERM_T;
6240 +#define SMB_ACL_READ           4
6241 +#define SMB_ACL_WRITE          2
6242 +#define SMB_ACL_EXECUTE                1
6243 +
6244 +/* Types of ACLs. */
6245 +#define SMB_ACL_USER           USER
6246 +#define SMB_ACL_USER_OBJ       USER_OBJ
6247 +#define SMB_ACL_GROUP          GROUP
6248 +#define SMB_ACL_GROUP_OBJ      GROUP_OBJ
6249 +#define SMB_ACL_OTHER          OTHER_OBJ
6250 +#define SMB_ACL_MASK           CLASS_OBJ
6251 +
6252 +typedef struct SMB_ACL_T {
6253 +       int size;
6254 +       int count;
6255 +       int next;
6256 +       struct acl acl[1];
6257 +} *SMB_ACL_T;
6258 +
6259 +typedef struct acl *SMB_ACL_ENTRY_T;
6260 +
6261 +#define SMB_ACL_FIRST_ENTRY    0
6262 +#define SMB_ACL_NEXT_ENTRY     1
6263 +
6264 +#define SMB_ACL_TYPE_ACCESS    0
6265 +#define SMB_ACL_TYPE_DEFAULT   1
6266 +
6267 +#elif defined HAVE_IRIX_ACLS
6268 +
6269 +#define SMB_ACL_TAG_T          acl_tag_t
6270 +#define SMB_ACL_TYPE_T         acl_type_t
6271 +#define SMB_ACL_PERMSET_T      acl_permset_t
6272 +#define SMB_ACL_PERM_T         acl_perm_t
6273 +#define SMB_ACL_READ           ACL_READ
6274 +#define SMB_ACL_WRITE          ACL_WRITE
6275 +#define SMB_ACL_EXECUTE                ACL_EXECUTE
6276 +
6277 +/* Types of ACLs. */
6278 +#define SMB_ACL_USER           ACL_USER
6279 +#define SMB_ACL_USER_OBJ       ACL_USER_OBJ
6280 +#define SMB_ACL_GROUP          ACL_GROUP
6281 +#define SMB_ACL_GROUP_OBJ      ACL_GROUP_OBJ
6282 +#define SMB_ACL_OTHER          ACL_OTHER_OBJ
6283 +#define SMB_ACL_MASK           ACL_MASK
6284 +
6285 +typedef struct SMB_ACL_T {
6286 +       int next;
6287 +       BOOL freeaclp;
6288 +       struct acl *aclp;
6289 +} *SMB_ACL_T;
6290 +
6291 +#define SMB_ACL_ENTRY_T                acl_entry_t
6292 +
6293 +#define SMB_ACL_FIRST_ENTRY    0
6294 +#define SMB_ACL_NEXT_ENTRY     1
6295 +
6296 +#define SMB_ACL_TYPE_ACCESS    ACL_TYPE_ACCESS
6297 +#define SMB_ACL_TYPE_DEFAULT   ACL_TYPE_DEFAULT
6298 +
6299 +#elif defined HAVE_AIX_ACLS
6300 +
6301 +/* Donated by Medha Date, mdate@austin.ibm.com, for IBM */
6302 +
6303 +#include "/usr/include/acl.h"
6304 +
6305 +typedef uint *SMB_ACL_PERMSET_T;
6306
6307 +struct acl_entry_link{
6308 +       struct acl_entry_link *prevp;
6309 +       struct new_acl_entry *entryp;
6310 +       struct acl_entry_link *nextp;
6311 +       int count;
6312 +};
6313 +
6314 +struct new_acl_entry{
6315 +       unsigned short ace_len;
6316 +       unsigned short ace_type;
6317 +       unsigned int ace_access;
6318 +       struct ace_id ace_id[1];
6319 +};
6320 +
6321 +#define SMB_ACL_ENTRY_T                struct new_acl_entry*
6322 +#define SMB_ACL_T              struct acl_entry_link*
6323
6324 +#define SMB_ACL_TAG_T          unsigned short
6325 +#define SMB_ACL_TYPE_T         int
6326 +#define SMB_ACL_PERM_T         uint
6327 +#define SMB_ACL_READ           S_IRUSR
6328 +#define SMB_ACL_WRITE          S_IWUSR
6329 +#define SMB_ACL_EXECUTE                S_IXUSR
6330 +
6331 +/* Types of ACLs. */
6332 +#define SMB_ACL_USER           ACEID_USER
6333 +#define SMB_ACL_USER_OBJ       3
6334 +#define SMB_ACL_GROUP          ACEID_GROUP
6335 +#define SMB_ACL_GROUP_OBJ      4
6336 +#define SMB_ACL_OTHER          5
6337 +#define SMB_ACL_MASK           6
6338 +
6339 +
6340 +#define SMB_ACL_FIRST_ENTRY    1
6341 +#define SMB_ACL_NEXT_ENTRY     2
6342 +
6343 +#define SMB_ACL_TYPE_ACCESS    0
6344 +#define SMB_ACL_TYPE_DEFAULT   1
6345 +
6346 +#else /* No ACLs. */
6347 +
6348 +/* No ACLS - fake it. */
6349 +#define SMB_ACL_TAG_T          int
6350 +#define SMB_ACL_TYPE_T         int
6351 +#define SMB_ACL_PERMSET_T      mode_t
6352 +#define SMB_ACL_PERM_T         mode_t
6353 +#define SMB_ACL_READ           S_IRUSR
6354 +#define SMB_ACL_WRITE          S_IWUSR
6355 +#define SMB_ACL_EXECUTE                S_IXUSR
6356 +
6357 +/* Types of ACLs. */
6358 +#define SMB_ACL_USER           0
6359 +#define SMB_ACL_USER_OBJ       1
6360 +#define SMB_ACL_GROUP          2
6361 +#define SMB_ACL_GROUP_OBJ      3
6362 +#define SMB_ACL_OTHER          4
6363 +#define SMB_ACL_MASK           5
6364 +
6365 +typedef struct SMB_ACL_T {
6366 +       int dummy;
6367 +} *SMB_ACL_T;
6368 +
6369 +typedef struct SMB_ACL_ENTRY_T {
6370 +       int dummy;
6371 +} *SMB_ACL_ENTRY_T;
6372 +
6373 +#define SMB_ACL_FIRST_ENTRY    0
6374 +#define SMB_ACL_NEXT_ENTRY     1
6375 +
6376 +#define SMB_ACL_TYPE_ACCESS    0
6377 +#define SMB_ACL_TYPE_DEFAULT   1
6378 +
6379 +#endif /* No ACLs. */
6380 +#endif /* _SMB_ACLS_H */
6381 --- old/testsuite/acls.test
6382 +++ new/testsuite/acls.test
6383 @@ -0,0 +1,34 @@
6384 +#! /bin/sh
6385 +
6386 +# This program is distributable under the terms of the GNU GPL (see
6387 +# COPYING).
6388 +
6389 +# Test that rsync handles basic ACL preservation.
6390 +
6391 +. $srcdir/testsuite/rsync.fns
6392 +
6393 +$RSYNC --version | grep ", ACLs" >/dev/null || test_skipped "Rsync is configured without ACL support"
6394 +case "$setfacl_nodef" in
6395 +true) test_skipped "I don't know how to use your setfacl command" ;;
6396 +esac
6397 +
6398 +makepath "$fromdir/foo"
6399 +echo something >"$fromdir/file1"
6400 +echo else >"$fromdir/file2"
6401 +
6402 +files='foo file1 file2'
6403 +
6404 +setfacl -m u:0:7 "$fromdir/foo" || test_skipped "Your filesystem has ACLs disabled"
6405 +setfacl -m u:0:5 "$fromdir/file1"
6406 +setfacl -m u:0:5 "$fromdir/file2"
6407 +
6408 +$RSYNC -avvA "$fromdir/" "$todir/"
6409 +
6410 +cd "$fromdir"
6411 +getfacl $files >"$scratchdir/acls.txt"
6412 +
6413 +cd "$todir"
6414 +getfacl $files | diff $diffopt "$scratchdir/acls.txt" -
6415 +
6416 +# The script would have aborted on error, so getting here means we've won.
6417 +exit 0
6418 --- old/testsuite/default-acls.test
6419 +++ new/testsuite/default-acls.test
6420 @@ -0,0 +1,65 @@
6421 +#! /bin/sh
6422 +
6423 +# This program is distributable under the terms of the GNU GPL (see
6424 +# COPYING).
6425 +
6426 +# Test that rsync obeys default ACLs. -- Matt McCutchen
6427 +
6428 +. $srcdir/testsuite/rsync.fns
6429 +
6430 +$RSYNC --version | grep ", ACLs" >/dev/null || test_skipped "Rsync is configured without ACL support"
6431 +case "$setfacl_nodef" in
6432 +true) test_skipped "I don't know how to use your setfacl command" ;;
6433 +*-k*) opts='-dm u::7,g::5,o:5' ;;
6434 +*) opts='-m d:u::7,d:g::5,d:o:5' ;;
6435 +esac
6436 +setfacl $opts "$scratchdir" || test_skipped "Your filesystem has ACLs disabled"
6437 +
6438 +# Call as: testit <dirname> <default-acl> <file-expected> <program-expected>
6439 +testit() {
6440 +    todir="$scratchdir/$1"
6441 +    mkdir "$todir"
6442 +    $setfacl_nodef "$todir"
6443 +    if [ "$2" ]; then
6444 +       case "$setfacl_nodef" in
6445 +       *-k*) opts="-dm $2" ;;
6446 +       *) opts="-m `echo $2 | sed 's/\([ugom]:\)/d:\1/g'`"
6447 +       esac
6448 +       setfacl $opts "$todir"
6449 +    fi
6450 +    # Make sure we obey ACLs when creating a directory to hold multiple transferred files,
6451 +    # even though the directory itself is outside the transfer
6452 +    $RSYNC -rvv "$scratchdir/dir" "$scratchdir/file" "$scratchdir/program" "$todir/to/"
6453 +    check_perms "$todir/to" $4 "Target $1"
6454 +    check_perms "$todir/to/dir" $4 "Target $1"
6455 +    check_perms "$todir/to/file" $3 "Target $1"
6456 +    check_perms "$todir/to/program" $4 "Target $1"
6457 +    # Make sure get_local_name doesn't mess us up when transferring only one file
6458 +    $RSYNC -rvv "$scratchdir/file" "$todir/to/anotherfile"
6459 +    check_perms "$todir/to/anotherfile" $3 "Target $1"
6460 +    # Make sure we obey default ACLs when not transferring a regular file
6461 +    $RSYNC -rvv "$scratchdir/dir/" "$todir/to/anotherdir/"
6462 +    check_perms "$todir/to/anotherdir" $4 "Target $1"
6463 +}
6464 +
6465 +mkdir "$scratchdir/dir"
6466 +echo "File!" >"$scratchdir/file"
6467 +echo "#!/bin/sh" >"$scratchdir/program"
6468 +chmod 777 "$scratchdir/dir"
6469 +chmod 666 "$scratchdir/file"
6470 +chmod 777 "$scratchdir/program"
6471 +
6472 +# Test some target directories
6473 +umask 0077
6474 +testit da777 u::7,g::7,o:7 rw-rw-rw- rwxrwxrwx
6475 +testit da775 u::7,g::7,o:5 rw-rw-r-- rwxrwxr-x
6476 +testit da750 u::7,g::5,o:0 rw-r----- rwxr-x---
6477 +testit da770mask u::7,u:0:7,g::0,m:7,o:0 rw-rw---- rwxrwx---
6478 +testit noda1 '' rw------- rwx------
6479 +umask 0000
6480 +testit noda2 '' rw-rw-rw- rwxrwxrwx
6481 +umask 0022
6482 +testit noda3 '' rw-r--r-- rwxr-xr-x
6483 +
6484 +# Hooray
6485 +exit 0
6486 --- old/testsuite/devices.test
6487 +++ new/testsuite/devices.test
6488 @@ -42,14 +42,14 @@ touch -r "$fromdir/block" "$fromdir/bloc
6489  $RSYNC -ai "$fromdir/block" "$todir/block2" \
6490      | tee "$outfile"
6491  cat <<EOT >"$chkfile"
6492 -cD+++++++ block
6493 +cD+++++++++ block
6494  EOT
6495  diff $diffopt "$chkfile" "$outfile" || test_fail "test 1 failed"
6496  
6497  $RSYNC -ai "$fromdir/block2" "$todir/block" \
6498      | tee "$outfile"
6499  cat <<EOT >"$chkfile"
6500 -cD+++++++ block2
6501 +cD+++++++++ block2
6502  EOT
6503  diff $diffopt "$chkfile" "$outfile" || test_fail "test 2 failed"
6504  
6505 @@ -58,7 +58,7 @@ sleep 1
6506  $RSYNC -Di "$fromdir/block3" "$todir/block" \
6507      | tee "$outfile"
6508  cat <<EOT >"$chkfile"
6509 -cD..T.... block3
6510 +cD..T...... block3
6511  EOT
6512  diff $diffopt "$chkfile" "$outfile" || test_fail "test 3 failed"
6513  
6514 @@ -66,15 +66,15 @@ $RSYNC -aiHvv "$fromdir/" "$todir/" \
6515      | tee "$outfile"
6516  filter_outfile
6517  cat <<EOT >"$chkfile"
6518 -.d..t.... ./
6519 -cD..t.... block
6520 -cD        block2
6521 -cD+++++++ block3
6522 -hD+++++++ block2.5 => block3
6523 -cD+++++++ char
6524 -cD+++++++ char2
6525 -cD+++++++ char3
6526 -cS+++++++ fifo
6527 +.d..t...... ./
6528 +cD..t...... block
6529 +cD          block2
6530 +cD+++++++++ block3
6531 +hD+++++++++ block2.5 => block3
6532 +cD+++++++++ char
6533 +cD+++++++++ char2
6534 +cD+++++++++ char3
6535 +cS+++++++++ fifo
6536  EOT
6537  if test ! -b "$fromdir/block2.5"; then
6538      sed -e '/block2\.5/d' \
6539 @@ -94,15 +94,15 @@ if test -b "$fromdir/block2.5"; then
6540      $RSYNC -aii --link-dest="$todir" "$fromdir/" "$chkdir/" \
6541         | tee "$outfile"
6542      cat <<EOT >"$chkfile"
6543 -cd        ./
6544 -hD        block
6545 -hD        block2
6546 -hD        block2.5
6547 -hD        block3
6548 -hD        char
6549 -hD        char2
6550 -hD        char3
6551 -hS        fifo
6552 +cd          ./
6553 +hD          block
6554 +hD          block2
6555 +hD          block2.5
6556 +hD          block3
6557 +hD          char
6558 +hD          char2
6559 +hD          char3
6560 +hS          fifo
6561  EOT
6562      diff $diffopt "$chkfile" "$outfile" || test_fail "test 4 failed"
6563  fi
6564 --- old/testsuite/itemize.test
6565 +++ new/testsuite/itemize.test
6566 @@ -38,15 +38,15 @@ rm -f "$to2dir" "$to2dir.test"
6567  $RSYNC -iplr "$fromdir/" "$todir/" \
6568      | tee "$outfile"
6569  cat <<EOT >"$chkfile"
6570 -cd+++++++ ./
6571 -cd+++++++ bar/
6572 -cd+++++++ bar/baz/
6573 ->f+++++++ bar/baz/rsync
6574 -cd+++++++ foo/
6575 ->f+++++++ foo/config1
6576 ->f+++++++ foo/config2
6577 ->f+++++++ foo/extra
6578 -cL+++++++ foo/sym -> ../bar/baz/rsync
6579 +cd+++++++++ ./
6580 +cd+++++++++ bar/
6581 +cd+++++++++ bar/baz/
6582 +>f+++++++++ bar/baz/rsync
6583 +cd+++++++++ foo/
6584 +>f+++++++++ foo/config1
6585 +>f+++++++++ foo/config2
6586 +>f+++++++++ foo/extra
6587 +cL+++++++++ foo/sym -> ../bar/baz/rsync
6588  EOT
6589  diff $diffopt "$chkfile" "$outfile" || test_fail "test 1 failed"
6590  
6591 @@ -58,10 +58,10 @@ chmod 601 "$fromdir/foo/config2"
6592  $RSYNC -iplrH "$fromdir/" "$todir/" \
6593      | tee "$outfile"
6594  cat <<EOT >"$chkfile"
6595 ->f..T.... bar/baz/rsync
6596 ->f..T.... foo/config1
6597 ->f.sTp... foo/config2
6598 -hf..T.... foo/extra => foo/config1
6599 +>f..T...... bar/baz/rsync
6600 +>f..T...... foo/config1
6601 +>f.sTp..... foo/config2
6602 +hf..T...... foo/extra => foo/config1
6603  EOT
6604  diff $diffopt "$chkfile" "$outfile" || test_fail "test 2 failed"
6605  
6606 @@ -78,11 +78,11 @@ chmod 777 "$todir/bar/baz/rsync"
6607  $RSYNC -iplrtc "$fromdir/" "$todir/" \
6608      | tee "$outfile"
6609  cat <<EOT >"$chkfile"
6610 -.f..tp... bar/baz/rsync
6611 -.d..t.... foo/
6612 -.f..t.... foo/config1
6613 ->fcstp... foo/config2
6614 -cL..T.... foo/sym -> ../bar/baz/rsync
6615 +.f..tp..... bar/baz/rsync
6616 +.d..t...... foo/
6617 +.f..t...... foo/config1
6618 +>fcstp..... foo/config2
6619 +cL..T...... foo/sym -> ../bar/baz/rsync
6620  EOT
6621  diff $diffopt "$chkfile" "$outfile" || test_fail "test 3 failed"
6622  
6623 @@ -107,15 +107,15 @@ $RSYNC -ivvplrtH "$fromdir/" "$todir/" \
6624      | tee "$outfile"
6625  filter_outfile
6626  cat <<EOT >"$chkfile"
6627 -.d        ./
6628 -.d        bar/
6629 -.d        bar/baz/
6630 -.f...p... bar/baz/rsync
6631 -.d        foo/
6632 -.f        foo/config1
6633 ->f..t.... foo/config2
6634 -hf        foo/extra
6635 -.L        foo/sym -> ../bar/baz/rsync
6636 +.d          ./
6637 +.d          bar/
6638 +.d          bar/baz/
6639 +.f...p..... bar/baz/rsync
6640 +.d          foo/
6641 +.f          foo/config1
6642 +>f..t...... foo/config2
6643 +hf          foo/extra
6644 +.L          foo/sym -> ../bar/baz/rsync
6645  EOT
6646  diff $diffopt "$chkfile" "$outfile" || test_fail "test 5 failed"
6647  
6648 @@ -134,8 +134,8 @@ touch "$todir/foo/config2"
6649  $RSYNC -iplrtH "$fromdir/" "$todir/" \
6650      | tee "$outfile"
6651  cat <<EOT >"$chkfile"
6652 -.f...p... foo/config1
6653 ->f..t.... foo/config2
6654 +.f...p..... foo/config1
6655 +>f..t...... foo/config2
6656  EOT
6657  diff $diffopt "$chkfile" "$outfile" || test_fail "test 7 failed"
6658  
6659 @@ -143,15 +143,15 @@ $RSYNC -ivvplrtH --copy-dest=../to "$fro
6660      | tee "$outfile"
6661  filter_outfile
6662  cat <<EOT >"$chkfile"
6663 -cd        ./
6664 -cd        bar/
6665 -cd        bar/baz/
6666 -cf        bar/baz/rsync
6667 -cd        foo/
6668 -cf        foo/config1
6669 -cf        foo/config2
6670 -hf        foo/extra => foo/config1
6671 -cL        foo/sym -> ../bar/baz/rsync
6672 +cd          ./
6673 +cd          bar/
6674 +cd          bar/baz/
6675 +cf          bar/baz/rsync
6676 +cd          foo/
6677 +cf          foo/config1
6678 +cf          foo/config2
6679 +hf          foo/extra => foo/config1
6680 +cL          foo/sym -> ../bar/baz/rsync
6681  EOT
6682  diff $diffopt "$chkfile" "$outfile" || test_fail "test 8 failed"
6683  
6684 @@ -159,7 +159,7 @@ rm -rf "$to2dir"
6685  $RSYNC -iplrtH --copy-dest=../to "$fromdir/" "$to2dir/" \
6686      | tee "$outfile"
6687  cat <<EOT >"$chkfile"
6688 -hf        foo/extra => foo/config1
6689 +hf          foo/extra => foo/config1
6690  EOT
6691  diff $diffopt "$chkfile" "$outfile" || test_fail "test 9 failed"
6692  
6693 @@ -186,15 +186,15 @@ $RSYNC -ivvplrtH --link-dest="$todir" "$
6694      | tee "$outfile"
6695  filter_outfile
6696  cat <<EOT >"$chkfile"
6697 -cd        ./
6698 -cd        bar/
6699 -cd        bar/baz/
6700 -hf        bar/baz/rsync
6701 -cd        foo/
6702 -hf        foo/config1
6703 -hf        foo/config2
6704 -hf        foo/extra => foo/config1
6705 -$L        foo/sym -> ../bar/baz/rsync
6706 +cd          ./
6707 +cd          bar/
6708 +cd          bar/baz/
6709 +hf          bar/baz/rsync
6710 +cd          foo/
6711 +hf          foo/config1
6712 +hf          foo/config2
6713 +hf          foo/extra => foo/config1
6714 +$L          foo/sym -> ../bar/baz/rsync
6715  EOT
6716  diff $diffopt "$chkfile" "$outfile" || test_fail "test 11 failed"
6717  
6718 @@ -236,14 +236,14 @@ filter_outfile
6719  # TODO fix really-old problem when combining -H with --compare-dest:
6720  # missing output for foo/extra hard-link (and it might not be updated)!
6721  cat <<EOT >"$chkfile"
6722 -cd        ./
6723 -cd        bar/
6724 -cd        bar/baz/
6725 -.f        bar/baz/rsync
6726 -cd        foo/
6727 -.f        foo/config1
6728 -.f        foo/config2
6729 -.L        foo/sym -> ../bar/baz/rsync
6730 +cd          ./
6731 +cd          bar/
6732 +cd          bar/baz/
6733 +.f          bar/baz/rsync
6734 +cd          foo/
6735 +.f          foo/config1
6736 +.f          foo/config2
6737 +.L          foo/sym -> ../bar/baz/rsync
6738  EOT
6739  diff $diffopt "$chkfile" "$outfile" || test_fail "test 15 failed"
6740  
6741 --- old/uidlist.c
6742 +++ new/uidlist.c
6743 @@ -35,6 +35,7 @@
6744  extern int verbose;
6745  extern int preserve_uid;
6746  extern int preserve_gid;
6747 +extern int preserve_acls;
6748  extern int numeric_ids;
6749  extern int am_root;
6750  
6751 @@ -270,7 +271,7 @@ void send_uid_list(int f)
6752  {
6753         struct idlist *list;
6754  
6755 -       if (preserve_uid) {
6756 +       if (preserve_uid || preserve_acls) {
6757                 int len;
6758                 /* we send sequences of uid/byte-length/name */
6759                 for (list = uidlist; list; list = list->next) {
6760 @@ -287,7 +288,7 @@ void send_uid_list(int f)
6761                 write_int(f, 0);
6762         }
6763  
6764 -       if (preserve_gid) {
6765 +       if (preserve_gid || preserve_acls) {
6766                 int len;
6767                 for (list = gidlist; list; list = list->next) {
6768                         if (!list->name)
6769 @@ -308,7 +309,7 @@ void recv_uid_list(int f, struct file_li
6770         int id, i;
6771         char *name;
6772  
6773 -       if (preserve_uid && !numeric_ids) {
6774 +       if ((preserve_uid || preserve_acls) && !numeric_ids) {
6775                 /* read the uid list */
6776                 while ((id = read_int(f)) != 0) {
6777                         int len = read_byte(f);
6778 @@ -320,7 +321,7 @@ void recv_uid_list(int f, struct file_li
6779                 }
6780         }
6781  
6782 -       if (preserve_gid && !numeric_ids) {
6783 +       if ((preserve_gid || preserve_acls) && !numeric_ids) {
6784                 /* read the gid list */
6785                 while ((id = read_int(f)) != 0) {
6786                         int len = read_byte(f);
6787 @@ -332,6 +333,16 @@ void recv_uid_list(int f, struct file_li
6788                 }
6789         }
6790  
6791 +#ifdef SUPPORT_ACLS
6792 +       if (preserve_acls && !numeric_ids) {
6793 +               id_t *id;
6794 +               while ((id = next_acl_uid(flist)) != NULL)
6795 +                       *id = match_uid(*id);
6796 +               while ((id = next_acl_gid(flist)) != NULL)
6797 +                       *id = match_gid(*id);
6798 +       }
6799 +#endif
6800 +
6801         /* Now convert all the uids/gids from sender values to our values. */
6802         if (am_root && preserve_uid && !numeric_ids) {
6803                 for (i = 0; i < flist->count; i++)
6804 --- old/util.c
6805 +++ new/util.c
6806 @@ -1467,3 +1467,31 @@ int bitbag_next_bit(struct bitbag *bb, i
6807  
6808         return -1;
6809  }
6810 +
6811 +void *expand_item_list(item_list *lp, size_t item_size,
6812 +                      const char *desc, int incr)
6813 +{
6814 +       /* First time through, 0 <= 0, so list is expanded. */
6815 +       if (lp->malloced <= lp->count) {
6816 +               void *new_ptr;
6817 +               size_t new_size = lp->malloced;
6818 +               if (incr < 0)
6819 +                       new_size -= incr; /* increase slowly */
6820 +               else if (new_size < (size_t)incr)
6821 +                       new_size += incr;
6822 +               else
6823 +                       new_size *= 2;
6824 +               new_ptr = realloc_array(lp->items, char, new_size * item_size);
6825 +               if (verbose >= 4) {
6826 +                       rprintf(FINFO, "[%s] expand %s to %.0f bytes, did%s move\n",
6827 +                               who_am_i(), desc, (double)new_size * item_size,
6828 +                               new_ptr == lp->items ? " not" : "");
6829 +               }
6830 +               if (!new_ptr)
6831 +                       out_of_memory("expand_item_list");
6832 +
6833 +               lp->items = new_ptr;
6834 +               lp->malloced = new_size;
6835 +       }
6836 +       return (char*)lp->items + (lp->count++ * item_size);
6837 +}