Adding filter-attribute-mods patch; updating patches.
[rsync/rsync-patches.git] / osx-xattr-nodev.diff
CommitLineData
5ae2d14e
WD
1This patch makes the xattr functions skip devices and special files,
2because OS X returns the wrong errno when getting/setting xattrs on
3them (it returns EPERM instead of ENOTSUP).
4
5To 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
7170ca8d 11based-on: 181c9faf928faad08ef095f4667afe460ec3bef6
5ae2d14e
WD
12diff --git a/flist.c b/flist.c
13--- a/flist.c
14+++ b/flist.c
7170ca8d 15@@ -1476,6 +1476,7 @@ static struct file_struct *send_file_name(int f, struct file_list *flist,
5ae2d14e
WD
16 #endif
17 #ifdef SUPPORT_XATTRS
18 if (preserve_xattrs) {
19+ sx.st.st_mode = file->mode;
e8972101
WD
20 if (get_xattr(fname, &sx) < 0) {
21 io_error |= IOERR_GENERAL;
fc557362 22 return NULL;
5ae2d14e
WD
23diff --git a/xattrs.c b/xattrs.c
24--- a/xattrs.c
25+++ b/xattrs.c
7170ca8d 26@@ -284,6 +284,10 @@ int get_xattr(const char *fname, stat_x *sxp)
5ae2d14e
WD
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;
7170ca8d 37@@ -884,6 +888,11 @@ int set_xattr(const char *fname, const struct file_struct *file,
5ae2d14e
WD
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 }