Adding filter-attribute-mods patch; updating patches.
[rsync/rsync-patches.git] / osx-xattr-nodev.diff
1 This patch makes the xattr functions skip devices and special files,
2 because OS X returns the wrong errno when getting/setting xattrs on
3 them (it returns EPERM instead of ENOTSUP).
4
5 To use this patch, run these commands for a successful build:
6
7     patch -p1 <patches/osx-xattr-nodev.diff
8     ./configure                         (optional if already run)
9     make
10
11 based-on: 181c9faf928faad08ef095f4667afe460ec3bef6
12 diff --git a/flist.c b/flist.c
13 --- a/flist.c
14 +++ b/flist.c
15 @@ -1476,6 +1476,7 @@ static struct file_struct *send_file_name(int f, struct file_list *flist,
16  #endif
17  #ifdef SUPPORT_XATTRS
18                 if (preserve_xattrs) {
19 +                       sx.st.st_mode = file->mode;
20                         if (get_xattr(fname, &sx) < 0) {
21                                 io_error |= IOERR_GENERAL;
22                                 return NULL;
23 diff --git a/xattrs.c b/xattrs.c
24 --- a/xattrs.c
25 +++ b/xattrs.c
26 @@ -284,6 +284,10 @@ int get_xattr(const char *fname, stat_x *sxp)
27  {
28         sxp->xattr = new(item_list);
29         *sxp->xattr = empty_xattr;
30 +
31 +       if (IS_SPECIAL(sxp->st.st_mode) || IS_DEVICE(sxp->st.st_mode))
32 +               return 0;
33 +
34         if (rsync_xal_get(fname, sxp->xattr) < 0) {
35                 free_xattr(sxp);
36                 return -1;
37 @@ -884,6 +888,11 @@ int set_xattr(const char *fname, const struct file_struct *file,
38                 return -1;
39         }
40  
41 +       if (IS_SPECIAL(sxp->st.st_mode) || IS_DEVICE(sxp->st.st_mode)) {
42 +               errno = ENOTSUP;
43 +               return -1;
44 +       }
45 +
46         ndx = F_XATTR(file);
47         return rsync_xal_set(fname, lst + ndx, fnamecmp, sxp);
48  }