2 * Utility routines used in rsync.
4 * Copyright (C) 1996-2000 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
7 * Copyright (C) 2003-2018 Wayne Davison
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, visit the http://fsf.org website.
30 extern int protect_args;
31 extern int modify_window;
32 extern int relative_paths;
33 extern int preserve_times;
34 extern int preserve_xattrs;
35 extern int preallocate_files;
36 extern char *module_dir;
37 extern unsigned int module_dirlen;
38 extern char *partial_dir;
39 extern filter_rule_list daemon_filter_list;
41 int sanitize_paths = 0;
43 char curr_dir[MAXPATHLEN];
44 unsigned int curr_dir_len;
45 int curr_dir_depth; /* This is only set for a sanitizing daemon. */
47 /* Set a fd into nonblocking mode. */
48 void set_nonblocking(int fd)
52 if ((val = fcntl(fd, F_GETFL)) == -1)
54 if (!(val & NONBLOCK_FLAG)) {
56 fcntl(fd, F_SETFL, val);
60 /* Set a fd into blocking mode. */
61 void set_blocking(int fd)
65 if ((val = fcntl(fd, F_GETFL)) == -1)
67 if (val & NONBLOCK_FLAG) {
68 val &= ~NONBLOCK_FLAG;
69 fcntl(fd, F_SETFL, val);
74 * Create a file descriptor pair - like pipe() but use socketpair if
75 * possible (because of blocking issues on pipes).
77 * Always set non-blocking.
79 int fd_pair(int fd[2])
83 #ifdef HAVE_SOCKETPAIR
84 ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fd);
90 set_nonblocking(fd[0]);
91 set_nonblocking(fd[1]);
97 void print_child_argv(const char *prefix, char **cmd)
100 rprintf(FCLIENT, "%s ", prefix);
101 for (; *cmd; cmd++) {
102 /* Look for characters that ought to be quoted. This
103 * is not a great quoting algorithm, but it's
104 * sufficient for a log message. */
105 if (strspn(*cmd, "abcdefghijklmnopqrstuvwxyz"
106 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
108 ",.-_=+@/") != strlen(*cmd)) {
109 rprintf(FCLIENT, "\"%s\" ", *cmd);
111 rprintf(FCLIENT, "%s ", *cmd);
115 rprintf(FCLIENT, " (%d args)\n", cnt);
118 /* This returns 0 for success, 1 for a symlink if symlink time-setting
119 * is not possible, or -1 for any other error. */
120 int set_modtime(const char *fname, time_t modtime, uint32 mod_nsec, mode_t mode)
122 static int switch_step = 0;
124 if (DEBUG_GTE(TIME, 1)) {
125 rprintf(FINFO, "set modtime of %s to (%ld) %s",
126 fname, (long)modtime,
127 asctime(localtime(&modtime)));
130 switch (switch_step) {
131 #ifdef HAVE_SETATTRLIST
133 if (do_setattrlist_times(fname, modtime, mod_nsec) == 0)
141 #ifdef HAVE_UTIMENSAT
143 if (do_utimensat(fname, modtime, mod_nsec) == 0)
153 if (do_lutimes(fname, modtime, mod_nsec) == 0)
163 if (preserve_times & PRESERVE_LINK_TIMES) {
164 preserve_times &= ~PRESERVE_LINK_TIMES;
172 if (do_utimes(fname, modtime, mod_nsec) == 0)
175 if (do_utime(fname, modtime, mod_nsec) == 0)
185 /* Create any necessary directories in fname. Any missing directories are
186 * created with default permissions. Returns < 0 on error, or the number
187 * of directories created. */
188 int make_path(char *fname, int flags)
193 if (flags & MKP_SKIP_SLASH) {
194 while (*fname == '/')
198 while (*fname == '.' && fname[1] == '/')
201 if (flags & MKP_DROP_NAME) {
202 end = strrchr(fname, '/');
203 if (!end || end == fname)
207 end = fname + strlen(fname);
209 /* Try to find an existing dir, starting from the deepest dir. */
213 if (do_stat(fname, &st) == 0) {
214 if (S_ISDIR(st.st_mode))
219 } else if (do_mkdir(fname, ACCESSPERMS) == 0) {
224 if (errno != ENOENT) {
226 if (errno != EEXIST || (do_stat(fname, &st) == 0 && !S_ISDIR(st.st_mode)))
232 /* We got a relative path that doesn't exist, so assume that '.'
233 * is there and just break out and create the whole thing. */
239 /* We reached the "/" dir, which we assume is there. */
249 /* Make all the dirs that we didn't find on the way here. */
256 if (ret < 0) /* Skip mkdir on error, but keep restoring the path. */
258 if (do_mkdir(fname, ACCESSPERMS) < 0)
264 if (flags & MKP_DROP_NAME)
271 * Write @p len bytes at @p ptr to descriptor @p desc, retrying if
274 * @retval len upon success
276 * @retval <0 write's (negative) error code
278 * Derived from GNU C's cccp.c.
280 int full_write(int desc, const char *ptr, size_t len)
286 int written = write(desc, ptr, len);
292 total_written += written;
296 return total_written;
300 * Read @p len bytes at @p ptr from descriptor @p desc, retrying if
303 * @retval >0 the actual number of bytes read
307 * @retval <0 for an error.
309 * Derived from GNU C's cccp.c. */
310 static int safe_read(int desc, char *ptr, size_t len)
318 n_chars = read(desc, ptr, len);
319 } while (n_chars < 0 && errno == EINTR);
324 /* Copy a file. If ofd < 0, copy_file unlinks and opens the "dest" file.
325 * Otherwise, it just writes to and closes the provided file descriptor.
326 * In either case, if --xattrs are being preserved, the dest file will
327 * have its xattrs set from the source file.
329 * This is used in conjunction with the --temp-dir, --backup, and
330 * --copy-dest options. */
331 int copy_file(const char *source, const char *dest, int ofd, mode_t mode)
335 int len; /* Number of bytes read into `buf'. */
336 OFF_T prealloc_len = 0, offset = 0;
338 if ((ifd = do_open(source, O_RDONLY, 0)) < 0) {
339 int save_errno = errno;
340 rsyserr(FERROR_XFER, errno, "open %s", full_fname(source));
346 if (robust_unlink(dest) && errno != ENOENT) {
347 int save_errno = errno;
348 rsyserr(FERROR_XFER, errno, "unlink %s", full_fname(dest));
353 #ifdef SUPPORT_XATTRS
357 mode &= INITACCESSPERMS;
358 if ((ofd = do_open(dest, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode)) < 0) {
359 int save_errno = errno;
360 rsyserr(FERROR_XFER, save_errno, "open %s", full_fname(dest));
367 #ifdef SUPPORT_PREALLOCATION
368 if (preallocate_files) {
371 /* Try to preallocate enough space for file's eventual length. Can
372 * reduce fragmentation on filesystems like ext4, xfs, and NTFS. */
373 if (do_fstat(ifd, &srcst) < 0)
374 rsyserr(FWARNING, errno, "fstat %s", full_fname(source));
375 else if (srcst.st_size > 0) {
376 prealloc_len = do_fallocate(ofd, 0, srcst.st_size);
377 if (prealloc_len < 0)
378 rsyserr(FWARNING, errno, "do_fallocate %s", full_fname(dest));
383 while ((len = safe_read(ifd, buf, sizeof buf)) > 0) {
384 if (full_write(ofd, buf, len) < 0) {
385 int save_errno = errno;
386 rsyserr(FERROR_XFER, errno, "write %s", full_fname(dest));
396 int save_errno = errno;
397 rsyserr(FERROR_XFER, errno, "read %s", full_fname(source));
404 if (close(ifd) < 0) {
405 rsyserr(FWARNING, errno, "close failed on %s",
409 /* Source file might have shrunk since we fstatted it.
410 * Cut off any extra preallocated zeros from dest file. */
411 if (offset < prealloc_len && do_ftruncate(ofd, offset) < 0) {
412 /* If we fail to truncate, the dest file may be wrong, so we
413 * must trigger the "partial transfer" error. */
414 rsyserr(FERROR_XFER, errno, "ftruncate %s", full_fname(dest));
417 if (close(ofd) < 0) {
418 int save_errno = errno;
419 rsyserr(FERROR_XFER, errno, "close failed on %s",
425 #ifdef SUPPORT_XATTRS
427 copy_xattrs(source, dest);
433 /* MAX_RENAMES should be 10**MAX_RENAMES_DIGITS */
434 #define MAX_RENAMES_DIGITS 3
435 #define MAX_RENAMES 1000
438 * Robust unlink: some OS'es (HPUX) refuse to unlink busy files, so
439 * rename to <path>/.rsyncNNN instead.
441 * Note that successive rsync runs will shuffle the filenames around a
442 * bit as long as the file is still busy; this is because this function
443 * does not know if the unlink call is due to a new file coming in, or
444 * --delete trying to remove old .rsyncNNN files, hence it renames it
447 int robust_unlink(const char *fname)
450 return do_unlink(fname);
452 static int counter = 1;
454 char path[MAXPATHLEN];
456 rc = do_unlink(fname);
457 if (rc == 0 || errno != ETXTBSY)
460 if ((pos = strlcpy(path, fname, MAXPATHLEN)) >= MAXPATHLEN)
461 pos = MAXPATHLEN - 1;
463 while (pos > 0 && path[pos-1] != '/')
465 pos += strlcpy(path+pos, ".rsync", MAXPATHLEN-pos);
467 if (pos > (MAXPATHLEN-MAX_RENAMES_DIGITS-1)) {
472 /* start where the last one left off to reduce chance of clashes */
475 snprintf(&path[pos], MAX_RENAMES_DIGITS+1, "%03d", counter);
476 if (++counter >= MAX_RENAMES)
478 } while ((rc = access(path, 0)) == 0 && counter != start);
480 if (INFO_GTE(MISC, 1)) {
481 rprintf(FWARNING, "renaming %s to %s because of text busy\n",
485 /* maybe we should return rename()'s exit status? Nah. */
486 if (do_rename(fname, path) != 0) {
494 /* Returns 0 on successful rename, 1 if we successfully copied the file
495 * across filesystems, -2 if copy_file() failed, and -1 on other errors.
496 * If partialptr is not NULL and we need to do a copy, copy the file into
497 * the active partial-dir instead of over the destination file. */
498 int robust_rename(const char *from, const char *to, const char *partialptr,
504 if (do_rename(from, to) == 0)
510 if (robust_unlink(to) != 0) {
519 if (!handle_partial_dir(partialptr,PDIR_CREATE))
523 if (copy_file(from, to, -1, mode) != 0)
534 static pid_t all_pids[10];
537 /** Fork and record the pid of the child. **/
540 pid_t newpid = fork();
542 if (newpid != 0 && newpid != -1) {
543 all_pids[num_pids++] = newpid;
551 * @todo It would be kind of nice to make sure that they are actually
552 * all our children before we kill them, because their pids may have
553 * been recycled by some other process. Perhaps when we wait for a
554 * child, we should remove it from this array. Alternatively we could
555 * perhaps use process groups, but I think that would not work on
556 * ancient Unix versions that don't support them.
558 void kill_all(int sig)
562 for (i = 0; i < num_pids; i++) {
563 /* Let's just be a little careful where we
564 * point that gun, hey? See kill(2) for the
565 * magic caused by negative values. */
566 pid_t p = all_pids[i];
577 /** Lock a byte range in a open file */
578 int lock_range(int fd, int offset, int len)
582 lock.l_type = F_WRLCK;
583 lock.l_whence = SEEK_SET;
584 lock.l_start = offset;
588 return fcntl(fd,F_SETLK,&lock) == 0;
591 #define ENSURE_MEMSPACE(buf, type, sz, req) \
592 if ((req) > sz && !(buf = realloc_array(buf, type, sz = MAX(sz * 2, req)))) \
593 out_of_memory("glob_expand")
595 static inline void call_glob_match(const char *name, int len, int from_glob,
596 char *arg, int abpos, int fbpos);
598 static struct glob_data {
599 char *arg_buf, *filt_buf, **argv;
600 int absize, fbsize, maxargs, argc;
603 static void glob_match(char *arg, int abpos, int fbpos)
608 while (*arg == '.' && arg[1] == '/') {
610 ENSURE_MEMSPACE(glob.filt_buf, char, glob.fbsize, glob.absize);
611 memcpy(glob.filt_buf, glob.arg_buf, abpos + 1);
614 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, abpos + 3);
615 glob.arg_buf[abpos++] = *arg++;
616 glob.arg_buf[abpos++] = *arg++;
617 glob.arg_buf[abpos] = '\0';
619 if ((slash = strchr(arg, '/')) != NULL) {
624 if (strpbrk(arg, "*?[")) {
628 if (!(d = opendir(abpos ? glob.arg_buf : ".")))
630 while ((di = readdir(d)) != NULL) {
631 char *dname = d_name(di);
632 if (dname[0] == '.' && (dname[1] == '\0'
633 || (dname[1] == '.' && dname[2] == '\0')))
635 if (!wildmatch(arg, dname))
637 call_glob_match(dname, strlen(dname), 1,
638 slash ? arg + len + 1 : NULL,
643 call_glob_match(arg, len, 0,
644 slash ? arg + len + 1 : NULL,
651 static inline void call_glob_match(const char *name, int len, int from_glob,
652 char *arg, int abpos, int fbpos)
656 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, abpos + len + 2);
657 memcpy(glob.arg_buf + abpos, name, len);
659 glob.arg_buf[abpos] = '\0';
662 ENSURE_MEMSPACE(glob.filt_buf, char, glob.fbsize, fbpos + len + 2);
663 memcpy(glob.filt_buf + fbpos, name, len);
665 glob.filt_buf[fbpos] = '\0';
666 use_buf = glob.filt_buf;
668 use_buf = glob.arg_buf;
670 if (from_glob || (arg && len)) {
674 if (do_stat(glob.arg_buf, &st) != 0)
676 is_dir = S_ISDIR(st.st_mode) != 0;
680 if (daemon_filter_list.head
681 && check_filter(&daemon_filter_list, FLOG, use_buf, is_dir) < 0)
686 glob.arg_buf[abpos++] = '/';
687 glob.arg_buf[abpos] = '\0';
689 glob.filt_buf[fbpos++] = '/';
690 glob.filt_buf[fbpos] = '\0';
692 glob_match(arg, abpos, fbpos);
694 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, glob.argc + 1);
695 if (!(glob.argv[glob.argc++] = strdup(glob.arg_buf)))
696 out_of_memory("glob_match");
700 /* This routine performs wild-card expansion of the pathname in "arg". Any
701 * daemon-excluded files/dirs will not be matched by the wildcards. Returns 0
702 * if a wild-card string is the only returned item (due to matching nothing). */
703 int glob_expand(const char *arg, char ***argv_p, int *argc_p, int *maxargs_p)
712 memset(&glob, 0, sizeof glob);
717 s = sanitize_path(NULL, arg, "", 0, SP_KEEP_DOT_DIRS);
721 out_of_memory("glob_expand");
722 clean_fname(s, CFN_KEEP_DOT_DIRS
723 | CFN_KEEP_TRAILING_SLASH
724 | CFN_COLLAPSE_DOT_DOT_DIRS);
727 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, MAXPATHLEN);
728 *glob.arg_buf = '\0';
730 glob.argc = save_argc = *argc_p;
732 glob.maxargs = *maxargs_p;
734 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, 100);
736 glob_match(s, 0, -1);
738 /* The arg didn't match anything, so add the failed arg to the list. */
739 if (glob.argc == save_argc) {
740 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, glob.argc + 1);
741 glob.argv[glob.argc++] = s;
748 *maxargs_p = glob.maxargs;
755 /* This routine is only used in daemon mode. */
756 void glob_expand_module(char *base1, char *arg, char ***argv_p, int *argc_p, int *maxargs_p)
760 int base_len = strlen(base);
765 if (strncmp(arg, base, base_len) == 0)
769 glob_expand(arg, argv_p, argc_p, maxargs_p);
773 if (!(arg = strdup(arg)))
774 out_of_memory("glob_expand_module");
776 if (asprintf(&base," %s/", base1) < 0)
777 out_of_memory("glob_expand_module");
780 for (s = arg; *s; s = p + base_len) {
781 if ((p = strstr(s, base)) != NULL)
782 *p = '\0'; /* split it at this point */
783 glob_expand(s, argv_p, argc_p, maxargs_p);
793 * Convert a string to lower case
795 void strlower(char *s)
805 * Split a string into tokens based (usually) on whitespace & commas. If the
806 * string starts with a comma (after skipping any leading whitespace), then
807 * splitting is done only on commas. No empty tokens are ever returned. */
808 char *conf_strtok(char *str)
810 static int commas_only = 0;
813 while (isSpace(str)) str++;
821 while (commas_only) {
822 char *end, *tok = strtok(str, ",");
825 /* Trim just leading and trailing whitespace. */
828 end = tok + strlen(tok);
829 while (end > tok && isSpace(end-1))
836 return strtok(str, " ,\t\r\n");
839 /* Join strings p1 & p2 into "dest" with a guaranteed '/' between them. (If
840 * p1 ends with a '/', no extra '/' is inserted.) Returns the length of both
841 * strings + 1 (if '/' was inserted), regardless of whether the null-terminated
842 * string fits into destsize. */
843 size_t pathjoin(char *dest, size_t destsize, const char *p1, const char *p2)
845 size_t len = strlcpy(dest, p1, destsize);
846 if (len < destsize - 1) {
847 if (!len || dest[len-1] != '/')
849 if (len < destsize - 1)
850 len += strlcpy(dest + len, p2, destsize - len);
857 len += strlen(p2) + 1; /* Assume we'd insert a '/'. */
861 /* Join any number of strings together, putting them in "dest". The return
862 * value is the length of all the strings, regardless of whether the null-
863 * terminated whole fits in destsize. Your list of string pointers must end
864 * with a NULL to indicate the end of the list. */
865 size_t stringjoin(char *dest, size_t destsize, ...)
871 va_start(ap, destsize);
873 if (!(src = va_arg(ap, const char *)))
880 memcpy(dest, src, len);
891 int count_dir_elements(const char *p)
893 int cnt = 0, new_component = 1;
896 new_component = (*p != '.' || (p[1] != '/' && p[1] != '\0'));
897 else if (new_component) {
905 /* Turns multiple adjacent slashes into a single slash (possible exception:
906 * the preserving of two leading slashes at the start), drops all leading or
907 * interior "." elements unless CFN_KEEP_DOT_DIRS is flagged. Will also drop
908 * a trailing '.' after a '/' if CFN_DROP_TRAILING_DOT_DIR is flagged, removes
909 * a trailing slash (perhaps after removing the aforementioned dot) unless
910 * CFN_KEEP_TRAILING_SLASH is flagged, and will also collapse ".." elements
911 * (except at the start) if CFN_COLLAPSE_DOT_DOT_DIRS is flagged. If the
912 * resulting name would be empty, returns ".". */
913 int clean_fname(char *name, int flags)
915 char *limit = name - 1, *t = name, *f = name;
921 #define DOT_IS_DOT_DOT_DIR(bp) (bp[1] == '.' && (bp[2] == '/' || !bp[2]))
923 if ((anchored = *f == '/') != 0) {
926 /* If there are exactly 2 slashes at the start, preserve
927 * them. Would break daemon excludes unless the paths are
928 * really treated differently, so used this sparingly. */
929 if (*f == '/' && f[1] != '/')
932 } else if (flags & CFN_KEEP_DOT_DIRS && *f == '.' && f[1] == '/') {
935 } else if (flags & CFN_REFUSE_DOT_DOT_DIRS && *f == '.' && DOT_IS_DOT_DOT_DIR(f))
938 /* discard extra slashes */
944 /* discard interior "." dirs */
945 if (f[1] == '/' && !(flags & CFN_KEEP_DOT_DIRS)) {
949 if (f[1] == '\0' && flags & CFN_DROP_TRAILING_DOT_DIR)
951 /* collapse ".." dirs */
952 if (flags & (CFN_COLLAPSE_DOT_DOT_DIRS|CFN_REFUSE_DOT_DOT_DIRS) && DOT_IS_DOT_DOT_DIR(f)) {
954 if (flags & CFN_REFUSE_DOT_DOT_DIRS)
956 if (s == name && anchored) {
960 while (s > limit && *--s != '/') {}
961 if (s != t - 1 && (s < name || *s == '/')) {
969 while (*f && (*t++ = *f++) != '/') {}
972 if (t > name+anchored && t[-1] == '/' && !(flags & CFN_KEEP_TRAILING_SLASH))
978 #undef DOT_IS_DOT_DOT_DIR
983 /* Make path appear as if a chroot had occurred. This handles a leading
984 * "/" (either removing it or expanding it) and any leading or embedded
985 * ".." components that attempt to escape past the module's top dir.
987 * If dest is NULL, a buffer is allocated to hold the result. It is legal
988 * to call with the dest and the path (p) pointing to the same buffer, but
989 * rootdir will be ignored to avoid expansion of the string.
991 * The rootdir string contains a value to use in place of a leading slash.
992 * Specify NULL to get the default of "module_dir".
994 * The depth var is a count of how many '..'s to allow at the start of the
997 * We also clean the path in a manner similar to clean_fname() but with a
1000 * Turns multiple adjacent slashes into a single slash, gets rid of "." dir
1001 * elements (INCLUDING a trailing dot dir), PRESERVES a trailing slash, and
1002 * ALWAYS collapses ".." elements (except for those at the start of the
1003 * string up to "depth" deep). If the resulting name would be empty,
1004 * change it into a ".". */
1005 char *sanitize_path(char *dest, const char *p, const char *rootdir, int depth,
1009 int rlen = 0, drop_dot_dirs = !relative_paths || !(flags & SP_KEEP_DOT_DIRS);
1012 int plen = strlen(p); /* the path len INCLUDING any separating slash */
1015 rootdir = module_dir;
1016 rlen = strlen(rootdir);
1021 if (rlen + plen + 1 >= MAXPATHLEN)
1023 } else if (!(dest = new_array(char, MAX(rlen + plen + 1, 2))))
1024 out_of_memory("sanitize_path");
1025 if (rlen) { /* only true if p previously started with a slash */
1026 memcpy(dest, rootdir, rlen);
1027 if (rlen > 1) /* a rootdir of len 1 is "/", so this avoids a 2nd slash */
1032 if (drop_dot_dirs) {
1033 while (*p == '.' && p[1] == '/')
1037 start = sanp = dest + rlen;
1038 /* This loop iterates once per filename component in p, pointing at
1039 * the start of the name (past any prior slash) for each iteration. */
1041 /* discard leading or extra slashes */
1046 if (drop_dot_dirs) {
1047 if (*p == '.' && (p[1] == '/' || p[1] == '\0')) {
1048 /* skip "." component */
1053 if (*p == '.' && p[1] == '.' && (p[2] == '/' || p[2] == '\0')) {
1054 /* ".." component followed by slash or end */
1055 if (depth <= 0 || sanp != start) {
1057 if (sanp != start) {
1058 /* back up sanp one level */
1059 --sanp; /* now pointing at slash */
1060 while (sanp > start && sanp[-1] != '/')
1065 /* allow depth levels of .. at the beginning */
1067 /* move the virtual beginning to leave the .. alone */
1070 /* copy one component through next slash */
1071 while (*p && (*sanp++ = *p++) != '/') {}
1074 /* ended up with nothing, so put in "." component */
1082 /* Like chdir(), but it keeps track of the current directory (in the
1083 * global "curr_dir"), and ensures that the path size doesn't overflow.
1084 * Also cleans the path using the clean_fname() function. */
1085 int change_dir(const char *dir, int set_path_only)
1087 static int initialised, skipped_chdir;
1092 if (getcwd(curr_dir, sizeof curr_dir - 1) == NULL) {
1093 rsyserr(FERROR, errno, "getcwd()");
1094 exit_cleanup(RERR_FILESELECT);
1096 curr_dir_len = strlen(curr_dir);
1099 if (!dir) /* this call was probably just to initialize */
1103 if (len == 1 && *dir == '.' && (!skipped_chdir || set_path_only))
1107 if (len >= sizeof curr_dir) {
1108 errno = ENAMETOOLONG;
1111 if (!set_path_only && chdir(dir))
1113 skipped_chdir = set_path_only;
1114 memcpy(curr_dir, dir, len + 1);
1116 if (curr_dir_len + 1 + len >= sizeof curr_dir) {
1117 errno = ENAMETOOLONG;
1120 if (!(curr_dir_len && curr_dir[curr_dir_len-1] == '/'))
1121 curr_dir[curr_dir_len++] = '/';
1122 memcpy(curr_dir + curr_dir_len, dir, len + 1);
1124 if (!set_path_only && chdir(curr_dir)) {
1125 curr_dir[curr_dir_len] = '\0';
1128 skipped_chdir = set_path_only;
1131 curr_dir_len = clean_fname(curr_dir, CFN_COLLAPSE_DOT_DOT_DIRS | CFN_DROP_TRAILING_DOT_DIR);
1132 if (sanitize_paths) {
1133 if (module_dirlen > curr_dir_len)
1134 module_dirlen = curr_dir_len;
1135 curr_dir_depth = count_dir_elements(curr_dir + module_dirlen);
1138 if (DEBUG_GTE(CHDIR, 1) && !set_path_only)
1139 rprintf(FINFO, "[%s] change_dir(%s)\n", who_am_i(), curr_dir);
1144 /* This will make a relative path absolute and clean it up via clean_fname().
1145 * Returns the string, which might be newly allocated, or NULL on error. */
1146 char *normalize_path(char *path, BOOL force_newbuf, unsigned int *len_ptr)
1150 if (*path != '/') { /* Make path absolute. */
1151 int len = strlen(path);
1152 if (curr_dir_len + 1 + len >= sizeof curr_dir)
1154 curr_dir[curr_dir_len] = '/';
1155 memcpy(curr_dir + curr_dir_len + 1, path, len + 1);
1156 if (!(path = strdup(curr_dir)))
1157 out_of_memory("normalize_path");
1158 curr_dir[curr_dir_len] = '\0';
1159 } else if (force_newbuf) {
1160 if (!(path = strdup(path)))
1161 out_of_memory("normalize_path");
1164 len = clean_fname(path, CFN_COLLAPSE_DOT_DOT_DIRS | CFN_DROP_TRAILING_DOT_DIR);
1173 * Return a quoted string with the full pathname of the indicated filename.
1174 * The string " (in MODNAME)" may also be appended. The returned pointer
1175 * remains valid until the next time full_fname() is called.
1177 char *full_fname(const char *fn)
1179 static char *result = NULL;
1189 p1 = curr_dir + module_dirlen;
1190 for (p2 = p1; *p2 == '/'; p2++) {}
1194 if (module_id >= 0) {
1196 m2 = lp_name(module_id);
1201 if (asprintf(&result, "\"%s%s%s\"%s%s%s", p1, p2, fn, m1, m2, m3) < 0)
1202 out_of_memory("full_fname");
1207 static char partial_fname[MAXPATHLEN];
1209 char *partial_dir_fname(const char *fname)
1211 char *t = partial_fname;
1212 int sz = sizeof partial_fname;
1215 if ((fn = strrchr(fname, '/')) != NULL) {
1217 if (*partial_dir != '/') {
1218 int len = fn - fname;
1219 strncpy(t, fname, len); /* safe */
1225 if ((int)pathjoin(t, sz, partial_dir, fn) >= sz)
1227 if (daemon_filter_list.head) {
1228 t = strrchr(partial_fname, '/');
1230 if (check_filter(&daemon_filter_list, FLOG, partial_fname, 1) < 0)
1233 if (check_filter(&daemon_filter_list, FLOG, partial_fname, 0) < 0)
1237 return partial_fname;
1240 /* If no --partial-dir option was specified, we don't need to do anything
1241 * (the partial-dir is essentially '.'), so just return success. */
1242 int handle_partial_dir(const char *fname, int create)
1246 if (fname != partial_fname)
1248 if (!create && *partial_dir == '/')
1250 if (!(fn = strrchr(partial_fname, '/')))
1254 dir = partial_fname;
1257 int statret = do_lstat(dir, &st);
1258 if (statret == 0 && !S_ISDIR(st.st_mode)) {
1259 if (do_unlink(dir) < 0) {
1265 if (statret < 0 && do_mkdir(dir, 0700) < 0) {
1276 /* Determine if a symlink points outside the current directory tree.
1277 * This is considered "unsafe" because e.g. when mirroring somebody
1278 * else's machine it might allow them to establish a symlink to
1279 * /etc/passwd, and then read it through a web server.
1281 * Returns 1 if unsafe, 0 if safe.
1283 * Null symlinks and absolute symlinks are always unsafe.
1285 * Basically here we are concerned with symlinks whose target contains
1286 * "..", because this might cause us to walk back up out of the
1287 * transferred directory. We are not allowed to go back up and
1290 * "dest" is the target of the symlink in question.
1292 * "src" is the top source directory currently applicable at the level
1293 * of the referenced symlink. This is usually the symlink's full path
1294 * (including its name), as referenced from the root of the transfer. */
1295 int unsafe_symlink(const char *dest, const char *src)
1297 const char *name, *slash;
1300 /* all absolute and null symlinks are unsafe */
1301 if (!dest || !*dest || *dest == '/')
1304 /* find out what our safety margin is */
1305 for (name = src; (slash = strchr(name, '/')) != 0; name = slash+1) {
1306 /* ".." segment starts the count over. "." segment is ignored. */
1307 if (*name == '.' && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))) {
1312 while (slash[1] == '/') slash++; /* just in case src isn't clean */
1314 if (*name == '.' && name[1] == '.' && name[2] == '\0')
1317 for (name = dest; (slash = strchr(name, '/')) != 0; name = slash+1) {
1318 if (*name == '.' && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))) {
1319 if (name[1] == '.') {
1320 /* if at any point we go outside the current directory
1321 then stop - it is unsafe */
1327 while (slash[1] == '/') slash++;
1329 if (*name == '.' && name[1] == '.' && name[2] == '\0')
1335 /* Return the date and time as a string. Some callers tweak returned buf. */
1336 char *timestring(time_t t)
1338 static char TimeBuf[200];
1339 struct tm *tm = localtime(&t);
1342 #ifdef HAVE_STRFTIME
1343 strftime(TimeBuf, sizeof TimeBuf - 1, "%Y/%m/%d %H:%M:%S", tm);
1345 strlcpy(TimeBuf, asctime(tm), sizeof TimeBuf);
1348 if ((p = strchr(TimeBuf, '\n')) != NULL)
1354 /* Determine if two time_t values are equivalent (either exact, or in
1355 * the modification timestamp window established by --modify-window).
1357 * @retval 0 if the times should be treated as the same
1359 * @retval +1 if the first is later
1361 * @retval -1 if the 2nd is later
1363 int cmp_time(time_t f1_sec, unsigned long f1_nsec, time_t f2_sec, unsigned long f2_nsec)
1365 if (f2_sec > f1_sec) {
1366 /* The final comparison makes sure that modify_window doesn't overflow a
1367 * time_t, which would mean that f2_sec must be in the equality window. */
1368 if (modify_window <= 0 || (f2_sec > f1_sec + modify_window && f1_sec + modify_window > f1_sec))
1370 } else if (f1_sec > f2_sec) {
1371 if (modify_window <= 0 || (f1_sec > f2_sec + modify_window && f2_sec + modify_window > f2_sec))
1373 } else if (modify_window < 0) {
1374 if (f2_nsec > f1_nsec)
1376 else if (f1_nsec > f2_nsec)
1386 This routine is a trick to immediately catch errors when debugging
1387 with insure. A xterm with a gdb is popped up when insure catches
1388 a error. It is Linux specific.
1390 int _Insure_trap_error(int a1, int a2, int a3, int a4, int a5, int a6)
1393 int ret, pid_int = getpid();
1397 "/usr/X11R6/bin/xterm -display :0 -T Panic -n Panic -e /bin/sh -c 'cat /tmp/ierrs.*.%d ; "
1398 "gdb /proc/%d/exe %d'", pid_int, pid_int, pid_int) < 0)
1403 h = dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY);
1404 fn = dlsym(h, "_Insure_trap_error");
1407 ret = fn(a1, a2, a3, a4, a5, a6);
1417 /* Take a filename and filename length and return the most significant
1418 * filename suffix we can find. This ignores suffixes such as "~",
1419 * ".bak", ".orig", ".~1~", etc. */
1420 const char *find_filename_suffix(const char *fn, int fn_len, int *len_ptr)
1422 const char *suf, *s;
1426 /* One or more dots at the start aren't a suffix. */
1427 while (fn_len && *fn == '.') fn++, fn_len--;
1429 /* Ignore the ~ in a "foo~" filename. */
1430 if (fn_len > 1 && fn[fn_len-1] == '~')
1431 fn_len--, had_tilde = True;
1435 /* Assume we don't find an suffix. */
1439 /* Find the last significant suffix. */
1440 for (s = fn + fn_len; fn_len > 1; ) {
1441 while (*--s != '.' && s != fn) {}
1444 s_len = fn_len - (s - fn);
1447 if (strcmp(s+1, "bak") == 0
1448 || strcmp(s+1, "old") == 0)
1450 } else if (s_len == 5) {
1451 if (strcmp(s+1, "orig") == 0)
1453 } else if (s_len > 2 && had_tilde
1454 && s[1] == '~' && isDigit(s + 2))
1460 /* Determine if the suffix is all digits. */
1461 for (s++, s_len--; s_len > 0; s++, s_len--) {
1465 /* An all-digit suffix may not be that signficant. */
1472 /* This is an implementation of the Levenshtein distance algorithm. It
1473 * was implemented to avoid needing a two-dimensional matrix (to save
1474 * memory). It was also tweaked to try to factor in the ASCII distance
1475 * between changed characters as a minor distance quantity. The normal
1476 * Levenshtein units of distance (each signifying a single change between
1477 * the two strings) are defined as a "UNIT". */
1479 #define UNIT (1 << 16)
1481 uint32 fuzzy_distance(const char *s1, unsigned len1, const char *s2, unsigned len2)
1483 uint32 a[MAXPATHLEN], diag, above, left, diag_inc, above_inc, left_inc;
1487 if (!len1 || !len2) {
1492 for (i1 = 0, cost = 0; i1 < len1; i1++)
1494 return (int32)len1 * UNIT + cost;
1497 for (i2 = 0; i2 < len2; i2++)
1498 a[i2] = (i2+1) * UNIT;
1500 for (i1 = 0; i1 < len1; i1++) {
1502 above = (i1+1) * UNIT;
1503 for (i2 = 0; i2 < len2; i2++) {
1505 if ((cost = *((uchar*)s1+i1) - *((uchar*)s2+i2)) != 0) {
1511 diag_inc = diag + cost;
1512 left_inc = left + UNIT + *((uchar*)s1+i1);
1513 above_inc = above + UNIT + *((uchar*)s2+i2);
1514 a[i2] = above = left < above
1515 ? (left_inc < diag_inc ? left_inc : diag_inc)
1516 : (above_inc < diag_inc ? above_inc : diag_inc);
1524 #define BB_SLOT_SIZE (16*1024) /* Desired size in bytes */
1525 #define BB_PER_SLOT_BITS (BB_SLOT_SIZE * 8) /* Number of bits per slot */
1526 #define BB_PER_SLOT_INTS (BB_SLOT_SIZE / 4) /* Number of int32s per slot */
1533 struct bitbag *bitbag_create(int max_ndx)
1535 struct bitbag *bb = new(struct bitbag);
1536 bb->slot_cnt = (max_ndx + BB_PER_SLOT_BITS - 1) / BB_PER_SLOT_BITS;
1538 if (!(bb->bits = (uint32**)calloc(bb->slot_cnt, sizeof (uint32*))))
1539 out_of_memory("bitbag_create");
1544 void bitbag_set_bit(struct bitbag *bb, int ndx)
1546 int slot = ndx / BB_PER_SLOT_BITS;
1547 ndx %= BB_PER_SLOT_BITS;
1549 if (!bb->bits[slot]) {
1550 if (!(bb->bits[slot] = (uint32*)calloc(BB_PER_SLOT_INTS, 4)))
1551 out_of_memory("bitbag_set_bit");
1554 bb->bits[slot][ndx/32] |= 1u << (ndx % 32);
1557 #if 0 /* not needed yet */
1558 void bitbag_clear_bit(struct bitbag *bb, int ndx)
1560 int slot = ndx / BB_PER_SLOT_BITS;
1561 ndx %= BB_PER_SLOT_BITS;
1563 if (!bb->bits[slot])
1566 bb->bits[slot][ndx/32] &= ~(1u << (ndx % 32));
1569 int bitbag_check_bit(struct bitbag *bb, int ndx)
1571 int slot = ndx / BB_PER_SLOT_BITS;
1572 ndx %= BB_PER_SLOT_BITS;
1574 if (!bb->bits[slot])
1577 return bb->bits[slot][ndx/32] & (1u << (ndx % 32)) ? 1 : 0;
1581 /* Call this with -1 to start checking from 0. Returns -1 at the end. */
1582 int bitbag_next_bit(struct bitbag *bb, int after)
1585 int i, ndx = after + 1;
1586 int slot = ndx / BB_PER_SLOT_BITS;
1587 ndx %= BB_PER_SLOT_BITS;
1589 mask = (1u << (ndx % 32)) - 1;
1590 for (i = ndx / 32; slot < bb->slot_cnt; slot++, i = mask = 0) {
1591 if (!bb->bits[slot])
1593 for ( ; i < BB_PER_SLOT_INTS; i++, mask = 0) {
1594 if (!(bits = bb->bits[slot][i] & ~mask))
1596 /* The xor magic figures out the lowest enabled bit in
1597 * bits, and the switch quickly computes log2(bit). */
1598 switch (bits ^ (bits & (bits-1))) {
1599 #define LOG2(n) case 1u << n: return slot*BB_PER_SLOT_BITS + i*32 + n
1600 LOG2(0); LOG2(1); LOG2(2); LOG2(3);
1601 LOG2(4); LOG2(5); LOG2(6); LOG2(7);
1602 LOG2(8); LOG2(9); LOG2(10); LOG2(11);
1603 LOG2(12); LOG2(13); LOG2(14); LOG2(15);
1604 LOG2(16); LOG2(17); LOG2(18); LOG2(19);
1605 LOG2(20); LOG2(21); LOG2(22); LOG2(23);
1606 LOG2(24); LOG2(25); LOG2(26); LOG2(27);
1607 LOG2(28); LOG2(29); LOG2(30); LOG2(31);
1609 return -1; /* impossible... */
1616 void flist_ndx_push(flist_ndx_list *lp, int ndx)
1618 struct flist_ndx_item *item;
1620 if (!(item = new(struct flist_ndx_item)))
1621 out_of_memory("flist_ndx_push");
1625 lp->tail->next = item;
1631 int flist_ndx_pop(flist_ndx_list *lp)
1633 struct flist_ndx_item *next;
1639 ndx = lp->head->ndx;
1640 next = lp->head->next;
1649 /* Make sure there is room for one more item in the item list. If there
1650 * is not, expand the list as indicated by the value of "incr":
1651 * - if incr < 0 then increase the malloced size by -1 * incr
1652 * - if incr >= 0 then either make the malloced size equal to "incr"
1653 * or (if that's not large enough) double the malloced size
1654 * After the size check, the list's count is incremented by 1 and a pointer
1655 * to the "new" list item is returned.
1657 void *expand_item_list(item_list *lp, size_t item_size,
1658 const char *desc, int incr)
1660 /* First time through, 0 <= 0, so list is expanded. */
1661 if (lp->malloced <= lp->count) {
1663 size_t new_size = lp->malloced;
1665 new_size += -incr; /* increase slowly */
1666 else if (new_size < (size_t)incr)
1672 if (new_size <= lp->malloced)
1673 overflow_exit("expand_item_list");
1674 /* Using _realloc_array() lets us pass the size, not a type. */
1675 new_ptr = _realloc_array(lp->items, item_size, new_size);
1676 if (DEBUG_GTE(FLIST, 3)) {
1677 rprintf(FINFO, "[%s] expand %s to %s bytes, did%s move\n",
1678 who_am_i(), desc, big_num(new_size * item_size),
1679 new_ptr == lp->items ? " not" : "");
1682 out_of_memory("expand_item_list");
1684 lp->items = new_ptr;
1685 lp->malloced = new_size;
1687 return (char*)lp->items + (lp->count++ * item_size);