1 From 962f8b90045ab331fc04c9e65f80f1a53e68243b Mon Sep 17 00:00:00 2001
2 From: Wayne Davison <wayned@samba.org>
3 Date: Wed, 31 Dec 2014 12:41:03 -0800
4 Subject: [PATCH] Complain if an inc-recursive path is not right for its dir.
5 This ensures that a malicious sender can't use a just-sent symlink as a
8 Upstream-Status: BackPort
10 Fix the CVE-2014-9512, rsync 3.1.1 allows remote attackers to write to arbitrary
11 files via a symlink attack on a file in the synchronization path.
13 BackPort and fix this patch to make it able to apply to source code
15 Signed-off-by: Roy Li <rongqing.li@windriver.com>
17 flist.c | 22 ++++++++++++++++++++--
22 6 files changed, 31 insertions(+), 8 deletions(-)
24 diff --git a/flist.c b/flist.c
25 index c24672e..92e4b65 100644
28 @@ -2435,8 +2435,9 @@ struct file_list *send_file_list(int f, int argc, char *argv[])
32 -struct file_list *recv_file_list(int f)
33 +struct file_list *recv_file_list(int f, int dir_ndx)
35 + const char *good_dirname = NULL;
36 struct file_list *flist;
39 @@ -2492,6 +2493,23 @@ struct file_list *recv_file_list(int f)
40 flist_expand(flist, 1);
41 file = recv_file_entry(f, flist, flags);
44 + static const char empty_dir[] = "\0";
45 + const char *cur_dir = file->dirname ? file->dirname : empty_dir;
46 + if (relative_paths && *cur_dir == '/')
48 + if (cur_dir != good_dirname) {
49 + const char *d = dir_ndx >= 0 ? f_name(dir_flist->files[dir_ndx], NULL) : empty_dir;
50 + if (strcmp(cur_dir, d) != 0) {
52 + "ABORTING due to invalid dir prefix from sender: %s (should be: %s)\n",
54 + exit_cleanup(RERR_PROTOCOL);
56 + good_dirname = cur_dir;
60 if (S_ISREG(file->mode)) {
62 } else if (S_ISDIR(file->mode)) {
63 @@ -2615,7 +2633,7 @@ void recv_additional_file_list(int f)
64 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
67 - flist = recv_file_list(f);
68 + flist = recv_file_list(f, ndx);
69 flist->parent_ndx = ndx;
72 diff --git a/io.c b/io.c
73 index b9a9bd0..a868fa9 100644
76 @@ -1685,7 +1685,7 @@ void wait_for_receiver(void)
77 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
80 - flist = recv_file_list(iobuf.in_fd);
81 + flist = recv_file_list(iobuf.in_fd, ndx);
82 flist->parent_ndx = ndx;
83 #ifdef SUPPORT_HARD_LINKS
84 if (preserve_hard_links)
85 diff --git a/main.c b/main.c
86 index e7a13f7..713b818 100644
89 @@ -1009,7 +1009,7 @@ static void do_server_recv(int f_in, int f_out, int argc, char *argv[])
93 - flist = recv_file_list(f_in);
94 + flist = recv_file_list(f_in, -1);
96 rprintf(FERROR,"server_recv: recv_file_list error\n");
97 exit_cleanup(RERR_FILESELECT);
98 @@ -1183,7 +1183,7 @@ int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[])
100 if (write_batch && !am_server)
101 start_write_batch(f_in);
102 - flist = recv_file_list(f_in);
103 + flist = recv_file_list(f_in, -1);
104 if (inc_recurse && file_total == 1)
105 recv_additional_file_list(f_in);
107 diff --git a/rsync.c b/rsync.c
108 index 68ff6b1..c3ecc51 100644
111 @@ -364,7 +364,7 @@ int read_ndx_and_attrs(int f_in, int f_out, int *iflag_ptr, uchar *type_ptr,
113 /* Send all the data we read for this flist to the generator. */
114 start_flist_forward(ndx);
115 - flist = recv_file_list(f_in);
116 + flist = recv_file_list(f_in, ndx);
117 flist->parent_ndx = ndx;
118 stop_flist_forward();
120 diff --git a/proto.h b/proto.h
121 index 22fc539..247c558 100644
124 @@ -89,7 +89,7 @@ struct file_struct *make_file(const char *fname, struct file_list *flist,
125 void unmake_file(struct file_struct *file);
126 void send_extra_file_list(int f, int at_least);
127 struct file_list *send_file_list(int f, int argc, char *argv[]);
128 -struct file_list *recv_file_list(int f);
129 +struct file_list *recv_file_list(int f, int dir_ndx);
130 void recv_additional_file_list(int f);
131 int flist_find(struct file_list *flist, struct file_struct *f);
132 int flist_find_ignore_dirness(struct file_list *flist, struct file_struct *f);