X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/434764269cc3f5bc2fc62f3789ff9d23a562d2d7..cad8f6f980f4782a6113a5d3ea49ad8d8504aece:/generator.c diff --git a/generator.c b/generator.c index e9e145c8..1860b0d1 100644 --- a/generator.c +++ b/generator.c @@ -1,25 +1,25 @@ -/* -*- c-file-style: "linux" -*- - - rsync -- fast file replication program - - Copyright (C) 1996-2000 by Andrew Tridgell - Copyright (C) Paul Mackerras 1996 - Copyright (C) 2002 by Martin Pool - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -*/ +/* + * Routines that are exclusive to the generator process. + * + * Copyright (C) 1996-2000 Andrew Tridgell + * Copyright (C) 1996 Paul Mackerras + * Copyright (C) 2002 Martin Pool + * Copyright (C) 2003, 2004, 2005, 2006 Wayne Davison + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + */ #include "rsync.h" @@ -50,6 +50,8 @@ extern int delete_before; extern int delete_during; extern int delete_after; extern int module_id; +extern int sanitize_paths; +extern int startdir_depth; extern int ignore_errors; extern int remove_sent_files; extern int delay_updates; @@ -606,10 +608,16 @@ static int try_dests_reg(struct file_struct *file, char *fname, int ndx, char *cmpbuf, STRUCT_STAT *stp, int itemizing, int maybe_ATTRS_REPORT, enum logcode code) { + int save_ignore_times = ignore_times; + int save_size_only = size_only; int best_match = -1; int match_level = 0; int j = 0; + /* We can't let these send-affecting options affect our checking + * for identical files in the alternate basis dirs. */ + ignore_times = size_only = 0; + do { pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname); if (link_stat(cmpbuf, stp, 0) < 0 || !S_ISREG(stp->st_mode)) @@ -628,7 +636,7 @@ static int try_dests_reg(struct file_struct *file, char *fname, int ndx, case 2: if (!unchanged_attrs(file, stp)) continue; - if ((always_checksum || ignore_times) + if (always_checksum && cmp_time(stp->st_mtime, file->modtime)) continue; best_match = j; @@ -638,6 +646,9 @@ static int try_dests_reg(struct file_struct *file, char *fname, int ndx, break; } while (basis_dir[++j] != NULL); + ignore_times = save_ignore_times; + size_only = save_size_only; + if (!match_level) return -1; @@ -944,6 +955,10 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx, } return; } + if (sanitize_paths) { + sanitize_path(file->u.link, file->u.link, "", + startdir_depth + file->dir.depth - 1); + } if (statret == 0) { char lnk[MAXPATHLEN]; int len;