X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/761f1b713569c7ea93ba2b53120fa76909a6466e..c8a8b4a7fd58ee1ee8b055a1559c71c9921d8753:/usermap.diff diff --git a/usermap.diff b/usermap.diff index 6424c1c..1a560d0 100644 --- a/usermap.diff +++ b/usermap.diff @@ -9,16 +9,16 @@ To use this patch, run these commands for a successful build: --- old/flist.c +++ new/flist.c -@@ -61,6 +61,8 @@ extern int copy_links; +@@ -63,6 +63,8 @@ extern int copy_links; extern int copy_unsafe_links; extern int protocol_version; extern int sanitize_paths; +extern char *usermap; +extern char *groupmap; extern struct stats stats; + extern char *filesfrom_host; - extern char curr_dir[MAXPATHLEN]; -@@ -742,7 +744,7 @@ static struct file_struct *recv_file_ent +@@ -733,7 +735,7 @@ static struct file_struct *recv_file_ent uid = (uid_t)read_varint(f); if (xflags & XMIT_USER_NAME_FOLLOWS) uid = recv_user_name(f, uid); @@ -27,7 +27,7 @@ To use this patch, run these commands for a successful build: uid = match_uid(uid); } } -@@ -754,7 +756,7 @@ static struct file_struct *recv_file_ent +@@ -745,7 +747,7 @@ static struct file_struct *recv_file_ent gid_flags = 0; if (xflags & XMIT_GROUP_NAME_FOLLOWS) gid = recv_group_name(f, gid, &gid_flags); @@ -36,7 +36,7 @@ To use this patch, run these commands for a successful build: gid = match_gid(gid, &gid_flags); } } -@@ -1886,8 +1888,13 @@ struct file_list *recv_file_list(int f) +@@ -2045,8 +2047,13 @@ struct file_list *recv_file_list(int f) int dstart, flags; int64 start_read; @@ -53,7 +53,7 @@ To use this patch, run these commands for a successful build: else if (inc_recurse && verbose && !am_server && !first_flist) --- old/options.c +++ new/options.c -@@ -156,6 +156,8 @@ char *rsync_path = RSYNC_PATH; +@@ -164,6 +164,8 @@ char *rsync_path = RSYNC_PATH; char *backup_dir = NULL; char backup_dir_buf[MAXPATHLEN]; char *sockopts = NULL; @@ -62,7 +62,7 @@ To use this patch, run these commands for a successful build: int rsync_port = 0; int compare_dest = 0; int copy_dest = 0; -@@ -367,6 +369,8 @@ void usage(enum logcode F) +@@ -377,6 +379,8 @@ void usage(enum logcode F) rprintf(F," --delay-updates put all updated files into place at transfer's end\n"); rprintf(F," -m, --prune-empty-dirs prune empty directory chains from the file-list\n"); rprintf(F," --numeric-ids don't map uid/gid values by user/group name\n"); @@ -71,17 +71,17 @@ To use this patch, run these commands for a successful build: rprintf(F," --timeout=TIME set I/O timeout in seconds\n"); rprintf(F," -I, --ignore-times don't skip files that match in size and mod-time\n"); rprintf(F," --size-only skip files that match in size\n"); -@@ -568,6 +572,8 @@ static struct poptOption long_options[] - {"files-from", 0, POPT_ARG_STRING, &files_from, 0, 0, 0 }, - {"from0", '0', POPT_ARG_NONE, &eol_nulls, 0, 0, 0}, - {"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids, 0, 0, 0 }, +@@ -601,6 +605,8 @@ static struct poptOption long_options[] + {"no-s", 0, POPT_ARG_VAL, &protect_args, 0, 0, 0}, + {"numeric-ids", 0, POPT_ARG_VAL, &numeric_ids, 1, 0, 0 }, + {"no-numeric-ids", 0, POPT_ARG_VAL, &numeric_ids, 0, 0, 0 }, + {"usermap", 0, POPT_ARG_STRING, &usermap, 0, 0, 0 }, + {"groupmap", 0, POPT_ARG_STRING, &groupmap, 0, 0, 0 }, {"timeout", 0, POPT_ARG_INT, &io_timeout, 0, 0, 0 }, + {"no-timeout", 0, POPT_ARG_VAL, &io_timeout, 0, 0, 0 }, {"rsh", 'e', POPT_ARG_STRING, &shell_cmd, 0, 0, 0 }, - {"rsync-path", 0, POPT_ARG_STRING, &rsync_path, 0, 0, 0 }, -@@ -1857,6 +1863,18 @@ void server_options(char **args,int *arg - args[ac++] = "--numeric-ids"; +@@ -1935,6 +1941,18 @@ void server_options(char **args, int *ar + args[ac++] = "--no-i-r"; if (am_sender) { + if (usermap) { @@ -101,7 +101,7 @@ To use this patch, run these commands for a successful build: --- old/rsync.yo +++ new/rsync.yo -@@ -367,6 +367,8 @@ to the detailed description below for a +@@ -379,6 +379,8 @@ to the detailed description below for a --delay-updates put all updated files into place at end -m, --prune-empty-dirs prune empty directory chains from file-list --numeric-ids don't map uid/gid values by user/group name @@ -110,7 +110,7 @@ To use this patch, run these commands for a successful build: --timeout=TIME set I/O timeout in seconds -I, --ignore-times don't skip files that match size and time --size-only skip files that match in size -@@ -1451,6 +1453,46 @@ from the source system is used instead. +@@ -1553,6 +1555,46 @@ from the source system is used instead. the chroot setting affects rsync's ability to look up the names of the users and groups and what you can do about it. @@ -316,8 +316,8 @@ To use this patch, run these commands for a successful build: break; } if (!list) -- list = recv_add_gid(gid, flags_ptr); -+ list = recv_add_id(&gidmap, gid, flags_ptr); +- list = recv_add_gid(gid, NULL); ++ list = recv_add_id(&gidmap, gid, NULL); last = list; } @@ -349,12 +349,12 @@ To use this patch, run these commands for a successful build: #endif - if (am_root && preserve_uid && !numeric_ids) { + if (am_root && preserve_uid && (!numeric_ids || usermap)) { - for (i = 0; i < flist->count; i++) + for (i = 0; i < flist->used; i++) F_OWNER(flist->files[i]) = match_uid(F_OWNER(flist->files[i])); } - if (preserve_gid && (!am_root || !numeric_ids)) { + if (preserve_gid && (!am_root || !numeric_ids || groupmap)) { - for (i = 0; i < flist->count; i++) { + for (i = 0; i < flist->used; i++) { F_GROUP(flist->files[i]) = match_gid(F_GROUP(flist->files[i]), &flist->files[i]->flags); }