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-2014 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_UTIMENSAT
133 if (do_utimensat(fname
, modtime
, mod_nsec
) == 0)
143 if (do_lutimes(fname
, modtime
, mod_nsec
) == 0)
153 if (preserve_times
& PRESERVE_LINK_TIMES
) {
154 preserve_times
&= ~PRESERVE_LINK_TIMES
;
162 if (do_utimes(fname
, modtime
, mod_nsec
) == 0)
165 if (do_utime(fname
, modtime
, mod_nsec
) == 0)
175 /* Create any necessary directories in fname. Any missing directories are
176 * created with default permissions. Returns < 0 on error, or the number
177 * of directories created. */
178 int make_path(char *fname
, int flags
)
183 if (flags
& MKP_SKIP_SLASH
) {
184 while (*fname
== '/')
188 while (*fname
== '.' && fname
[1] == '/')
191 if (flags
& MKP_DROP_NAME
) {
192 end
= strrchr(fname
, '/');
197 end
= fname
+ strlen(fname
);
199 /* Try to find an existing dir, starting from the deepest dir. */
203 if (do_stat(fname
, &st
) == 0) {
204 if (S_ISDIR(st
.st_mode
))
209 } else if (do_mkdir(fname
, ACCESSPERMS
) == 0) {
213 if (errno
!= ENOENT
) {
220 /* We got a relative path that doesn't exist, so assume that '.'
221 * is there and just break out and create the whole thing. */
227 /* We reached the "/" dir, which we assume is there. */
237 /* Make all the dirs that we didn't find on the way here. */
244 if (ret
< 0) /* Skip mkdir on error, but keep restoring the path. */
246 if (do_mkdir(fname
, ACCESSPERMS
) < 0)
252 if (flags
& MKP_DROP_NAME
)
259 * Write @p len bytes at @p ptr to descriptor @p desc, retrying if
262 * @retval len upon success
264 * @retval <0 write's (negative) error code
266 * Derived from GNU C's cccp.c.
268 int full_write(int desc
, const char *ptr
, size_t len
)
274 int written
= write(desc
, ptr
, len
);
280 total_written
+= written
;
284 return total_written
;
288 * Read @p len bytes at @p ptr from descriptor @p desc, retrying if
291 * @retval >0 the actual number of bytes read
295 * @retval <0 for an error.
297 * Derived from GNU C's cccp.c. */
298 static int safe_read(int desc
, char *ptr
, size_t len
)
306 n_chars
= read(desc
, ptr
, len
);
307 } while (n_chars
< 0 && errno
== EINTR
);
312 /* Copy a file. If ofd < 0, copy_file unlinks and opens the "dest" file.
313 * Otherwise, it just writes to and closes the provided file descriptor.
314 * In either case, if --xattrs are being preserved, the dest file will
315 * have its xattrs set from the source file.
317 * This is used in conjunction with the --temp-dir, --backup, and
318 * --copy-dest options. */
319 int copy_file(const char *source
, const char *dest
, int ofd
, mode_t mode
)
323 int len
; /* Number of bytes read into `buf'. */
324 #ifdef PREALLOCATE_NEEDS_TRUNCATE
325 OFF_T preallocated_len
= 0, offset
= 0;
328 if ((ifd
= do_open(source
, O_RDONLY
, 0)) < 0) {
329 int save_errno
= errno
;
330 rsyserr(FERROR_XFER
, errno
, "open %s", full_fname(source
));
336 if (robust_unlink(dest
) && errno
!= ENOENT
) {
337 int save_errno
= errno
;
338 rsyserr(FERROR_XFER
, errno
, "unlink %s", full_fname(dest
));
343 #ifdef SUPPORT_XATTRS
347 mode
&= INITACCESSPERMS
;
348 if ((ofd
= do_open(dest
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXCL
, mode
)) < 0) {
349 int save_errno
= errno
;
350 rsyserr(FERROR_XFER
, save_errno
, "open %s", full_fname(dest
));
357 #ifdef SUPPORT_PREALLOCATION
358 if (preallocate_files
) {
361 /* Try to preallocate enough space for file's eventual length. Can
362 * reduce fragmentation on filesystems like ext4, xfs, and NTFS. */
363 if (do_fstat(ifd
, &srcst
) < 0)
364 rsyserr(FWARNING
, errno
, "fstat %s", full_fname(source
));
365 else if (srcst
.st_size
> 0) {
366 if (do_fallocate(ofd
, 0, srcst
.st_size
) == 0) {
367 #ifdef PREALLOCATE_NEEDS_TRUNCATE
368 preallocated_len
= srcst
.st_size
;
371 rsyserr(FWARNING
, errno
, "do_fallocate %s", full_fname(dest
));
376 while ((len
= safe_read(ifd
, buf
, sizeof buf
)) > 0) {
377 if (full_write(ofd
, buf
, len
) < 0) {
378 int save_errno
= errno
;
379 rsyserr(FERROR_XFER
, errno
, "write %s", full_fname(dest
));
385 #ifdef PREALLOCATE_NEEDS_TRUNCATE
391 int save_errno
= errno
;
392 rsyserr(FERROR_XFER
, errno
, "read %s", full_fname(source
));
399 if (close(ifd
) < 0) {
400 rsyserr(FWARNING
, errno
, "close failed on %s",
404 #ifdef PREALLOCATE_NEEDS_TRUNCATE
405 /* Source file might have shrunk since we fstatted it.
406 * Cut off any extra preallocated zeros from dest file. */
407 if (offset
< preallocated_len
&& do_ftruncate(ofd
, offset
) < 0) {
408 /* If we fail to truncate, the dest file may be wrong, so we
409 * must trigger the "partial transfer" error. */
410 rsyserr(FERROR_XFER
, errno
, "ftruncate %s", full_fname(dest
));
414 if (close(ofd
) < 0) {
415 int save_errno
= errno
;
416 rsyserr(FERROR_XFER
, errno
, "close failed on %s",
422 #ifdef SUPPORT_XATTRS
424 copy_xattrs(source
, dest
);
430 /* MAX_RENAMES should be 10**MAX_RENAMES_DIGITS */
431 #define MAX_RENAMES_DIGITS 3
432 #define MAX_RENAMES 1000
435 * Robust unlink: some OS'es (HPUX) refuse to unlink busy files, so
436 * rename to <path>/.rsyncNNN instead.
438 * Note that successive rsync runs will shuffle the filenames around a
439 * bit as long as the file is still busy; this is because this function
440 * does not know if the unlink call is due to a new file coming in, or
441 * --delete trying to remove old .rsyncNNN files, hence it renames it
444 int robust_unlink(const char *fname
)
447 return do_unlink(fname
);
449 static int counter
= 1;
451 char path
[MAXPATHLEN
];
453 rc
= do_unlink(fname
);
454 if (rc
== 0 || errno
!= ETXTBSY
)
457 if ((pos
= strlcpy(path
, fname
, MAXPATHLEN
)) >= MAXPATHLEN
)
458 pos
= MAXPATHLEN
- 1;
460 while (pos
> 0 && path
[pos
-1] != '/')
462 pos
+= strlcpy(path
+pos
, ".rsync", MAXPATHLEN
-pos
);
464 if (pos
> (MAXPATHLEN
-MAX_RENAMES_DIGITS
-1)) {
469 /* start where the last one left off to reduce chance of clashes */
472 snprintf(&path
[pos
], MAX_RENAMES_DIGITS
+1, "%03d", counter
);
473 if (++counter
>= MAX_RENAMES
)
475 } while ((rc
= access(path
, 0)) == 0 && counter
!= start
);
477 if (INFO_GTE(MISC
, 1)) {
478 rprintf(FWARNING
, "renaming %s to %s because of text busy\n",
482 /* maybe we should return rename()'s exit status? Nah. */
483 if (do_rename(fname
, path
) != 0) {
491 /* Returns 0 on successful rename, 1 if we successfully copied the file
492 * across filesystems, -2 if copy_file() failed, and -1 on other errors.
493 * If partialptr is not NULL and we need to do a copy, copy the file into
494 * the active partial-dir instead of over the destination file. */
495 int robust_rename(const char *from
, const char *to
, const char *partialptr
,
501 if (do_rename(from
, to
) == 0)
507 if (robust_unlink(to
) != 0) {
516 if (!handle_partial_dir(partialptr
,PDIR_CREATE
))
520 if (copy_file(from
, to
, -1, mode
) != 0)
531 static pid_t all_pids
[10];
534 /** Fork and record the pid of the child. **/
537 pid_t newpid
= fork();
539 if (newpid
!= 0 && newpid
!= -1) {
540 all_pids
[num_pids
++] = newpid
;
548 * @todo It would be kind of nice to make sure that they are actually
549 * all our children before we kill them, because their pids may have
550 * been recycled by some other process. Perhaps when we wait for a
551 * child, we should remove it from this array. Alternatively we could
552 * perhaps use process groups, but I think that would not work on
553 * ancient Unix versions that don't support them.
555 void kill_all(int sig
)
559 for (i
= 0; i
< num_pids
; i
++) {
560 /* Let's just be a little careful where we
561 * point that gun, hey? See kill(2) for the
562 * magic caused by negative values. */
563 pid_t p
= all_pids
[i
];
574 /** Lock a byte range in a open file */
575 int lock_range(int fd
, int offset
, int len
)
579 lock
.l_type
= F_WRLCK
;
580 lock
.l_whence
= SEEK_SET
;
581 lock
.l_start
= offset
;
585 return fcntl(fd
,F_SETLK
,&lock
) == 0;
588 #define ENSURE_MEMSPACE(buf, type, sz, req) \
589 if ((req) > sz && !(buf = realloc_array(buf, type, sz = MAX(sz * 2, req)))) \
590 out_of_memory("glob_expand")
592 static inline void call_glob_match(const char *name
, int len
, int from_glob
,
593 char *arg
, int abpos
, int fbpos
);
595 static struct glob_data
{
596 char *arg_buf
, *filt_buf
, **argv
;
597 int absize
, fbsize
, maxargs
, argc
;
600 static void glob_match(char *arg
, int abpos
, int fbpos
)
605 while (*arg
== '.' && arg
[1] == '/') {
607 ENSURE_MEMSPACE(glob
.filt_buf
, char, glob
.fbsize
, glob
.absize
);
608 memcpy(glob
.filt_buf
, glob
.arg_buf
, abpos
+ 1);
611 ENSURE_MEMSPACE(glob
.arg_buf
, char, glob
.absize
, abpos
+ 3);
612 glob
.arg_buf
[abpos
++] = *arg
++;
613 glob
.arg_buf
[abpos
++] = *arg
++;
614 glob
.arg_buf
[abpos
] = '\0';
616 if ((slash
= strchr(arg
, '/')) != NULL
) {
621 if (strpbrk(arg
, "*?[")) {
625 if (!(d
= opendir(abpos
? glob
.arg_buf
: ".")))
627 while ((di
= readdir(d
)) != NULL
) {
628 char *dname
= d_name(di
);
629 if (dname
[0] == '.' && (dname
[1] == '\0'
630 || (dname
[1] == '.' && dname
[2] == '\0')))
632 if (!wildmatch(arg
, dname
))
634 call_glob_match(dname
, strlen(dname
), 1,
635 slash
? arg
+ len
+ 1 : NULL
,
640 call_glob_match(arg
, len
, 0,
641 slash
? arg
+ len
+ 1 : NULL
,
648 static inline void call_glob_match(const char *name
, int len
, int from_glob
,
649 char *arg
, int abpos
, int fbpos
)
653 ENSURE_MEMSPACE(glob
.arg_buf
, char, glob
.absize
, abpos
+ len
+ 2);
654 memcpy(glob
.arg_buf
+ abpos
, name
, len
);
656 glob
.arg_buf
[abpos
] = '\0';
659 ENSURE_MEMSPACE(glob
.filt_buf
, char, glob
.fbsize
, fbpos
+ len
+ 2);
660 memcpy(glob
.filt_buf
+ fbpos
, name
, len
);
662 glob
.filt_buf
[fbpos
] = '\0';
663 use_buf
= glob
.filt_buf
;
665 use_buf
= glob
.arg_buf
;
667 if (from_glob
|| (arg
&& len
)) {
671 if (do_stat(glob
.arg_buf
, &st
) != 0)
673 is_dir
= S_ISDIR(st
.st_mode
) != 0;
677 if (daemon_filter_list
.head
678 && check_filter(&daemon_filter_list
, FLOG
, use_buf
, is_dir
) < 0)
683 glob
.arg_buf
[abpos
++] = '/';
684 glob
.arg_buf
[abpos
] = '\0';
686 glob
.filt_buf
[fbpos
++] = '/';
687 glob
.filt_buf
[fbpos
] = '\0';
689 glob_match(arg
, abpos
, fbpos
);
691 ENSURE_MEMSPACE(glob
.argv
, char *, glob
.maxargs
, glob
.argc
+ 1);
692 if (!(glob
.argv
[glob
.argc
++] = strdup(glob
.arg_buf
)))
693 out_of_memory("glob_match");
697 /* This routine performs wild-card expansion of the pathname in "arg". Any
698 * daemon-excluded files/dirs will not be matched by the wildcards. Returns 0
699 * if a wild-card string is the only returned item (due to matching nothing). */
700 int glob_expand(const char *arg
, char ***argv_p
, int *argc_p
, int *maxargs_p
)
709 memset(&glob
, 0, sizeof glob
);
714 s
= sanitize_path(NULL
, arg
, "", 0, SP_KEEP_DOT_DIRS
);
718 out_of_memory("glob_expand");
719 clean_fname(s
, CFN_KEEP_DOT_DIRS
720 | CFN_KEEP_TRAILING_SLASH
721 | CFN_COLLAPSE_DOT_DOT_DIRS
);
724 ENSURE_MEMSPACE(glob
.arg_buf
, char, glob
.absize
, MAXPATHLEN
);
725 *glob
.arg_buf
= '\0';
727 glob
.argc
= save_argc
= *argc_p
;
729 glob
.maxargs
= *maxargs_p
;
731 ENSURE_MEMSPACE(glob
.argv
, char *, glob
.maxargs
, 100);
733 glob_match(s
, 0, -1);
735 /* The arg didn't match anything, so add the failed arg to the list. */
736 if (glob
.argc
== save_argc
) {
737 ENSURE_MEMSPACE(glob
.argv
, char *, glob
.maxargs
, glob
.argc
+ 1);
738 glob
.argv
[glob
.argc
++] = s
;
745 *maxargs_p
= glob
.maxargs
;
752 /* This routine is only used in daemon mode. */
753 void glob_expand_module(char *base1
, char *arg
, char ***argv_p
, int *argc_p
, int *maxargs_p
)
757 int base_len
= strlen(base
);
762 if (strncmp(arg
, base
, base_len
) == 0)
766 glob_expand(arg
, argv_p
, argc_p
, maxargs_p
);
770 if (!(arg
= strdup(arg
)))
771 out_of_memory("glob_expand_module");
773 if (asprintf(&base
," %s/", base1
) < 0)
774 out_of_memory("glob_expand_module");
777 for (s
= arg
; *s
; s
= p
+ base_len
) {
778 if ((p
= strstr(s
, base
)) != NULL
)
779 *p
= '\0'; /* split it at this point */
780 glob_expand(s
, argv_p
, argc_p
, maxargs_p
);
790 * Convert a string to lower case
792 void strlower(char *s
)
801 /* Join strings p1 & p2 into "dest" with a guaranteed '/' between them. (If
802 * p1 ends with a '/', no extra '/' is inserted.) Returns the length of both
803 * strings + 1 (if '/' was inserted), regardless of whether the null-terminated
804 * string fits into destsize. */
805 size_t pathjoin(char *dest
, size_t destsize
, const char *p1
, const char *p2
)
807 size_t len
= strlcpy(dest
, p1
, destsize
);
808 if (len
< destsize
- 1) {
809 if (!len
|| dest
[len
-1] != '/')
811 if (len
< destsize
- 1)
812 len
+= strlcpy(dest
+ len
, p2
, destsize
- len
);
819 len
+= strlen(p2
) + 1; /* Assume we'd insert a '/'. */
823 /* Join any number of strings together, putting them in "dest". The return
824 * value is the length of all the strings, regardless of whether the null-
825 * terminated whole fits in destsize. Your list of string pointers must end
826 * with a NULL to indicate the end of the list. */
827 size_t stringjoin(char *dest
, size_t destsize
, ...)
833 va_start(ap
, destsize
);
835 if (!(src
= va_arg(ap
, const char *)))
842 memcpy(dest
, src
, len
);
853 int count_dir_elements(const char *p
)
855 int cnt
= 0, new_component
= 1;
858 new_component
= (*p
!= '.' || (p
[1] != '/' && p
[1] != '\0'));
859 else if (new_component
) {
867 /* Turns multiple adjacent slashes into a single slash (possible exception:
868 * the preserving of two leading slashes at the start), drops all leading or
869 * interior "." elements unless CFN_KEEP_DOT_DIRS is flagged. Will also drop
870 * a trailing '.' after a '/' if CFN_DROP_TRAILING_DOT_DIR is flagged, removes
871 * a trailing slash (perhaps after removing the aforementioned dot) unless
872 * CFN_KEEP_TRAILING_SLASH is flagged, and will also collapse ".." elements
873 * (except at the start) if CFN_COLLAPSE_DOT_DOT_DIRS is flagged. If the
874 * resulting name would be empty, returns ".". */
875 int clean_fname(char *name
, int flags
)
877 char *limit
= name
- 1, *t
= name
, *f
= name
;
883 #define DOT_IS_DOT_DOT_DIR(bp) (bp[1] == '.' && (bp[2] == '/' || !bp[2]))
885 if ((anchored
= *f
== '/') != 0) {
888 /* If there are exactly 2 slashes at the start, preserve
889 * them. Would break daemon excludes unless the paths are
890 * really treated differently, so used this sparingly. */
891 if (*f
== '/' && f
[1] != '/')
894 } else if (flags
& CFN_KEEP_DOT_DIRS
&& *f
== '.' && f
[1] == '/') {
897 } else if (flags
& CFN_REFUSE_DOT_DOT_DIRS
&& *f
== '.' && DOT_IS_DOT_DOT_DIR(f
))
900 /* discard extra slashes */
906 /* discard interior "." dirs */
907 if (f
[1] == '/' && !(flags
& CFN_KEEP_DOT_DIRS
)) {
911 if (f
[1] == '\0' && flags
& CFN_DROP_TRAILING_DOT_DIR
)
913 /* collapse ".." dirs */
914 if (flags
& (CFN_COLLAPSE_DOT_DOT_DIRS
|CFN_REFUSE_DOT_DOT_DIRS
) && DOT_IS_DOT_DOT_DIR(f
)) {
916 if (flags
& CFN_REFUSE_DOT_DOT_DIRS
)
918 if (s
== name
&& anchored
) {
922 while (s
> limit
&& *--s
!= '/') {}
923 if (s
!= t
- 1 && (s
< name
|| *s
== '/')) {
931 while (*f
&& (*t
++ = *f
++) != '/') {}
934 if (t
> name
+anchored
&& t
[-1] == '/' && !(flags
& CFN_KEEP_TRAILING_SLASH
))
940 #undef DOT_IS_DOT_DOT_DIR
945 /* Make path appear as if a chroot had occurred. This handles a leading
946 * "/" (either removing it or expanding it) and any leading or embedded
947 * ".." components that attempt to escape past the module's top dir.
949 * If dest is NULL, a buffer is allocated to hold the result. It is legal
950 * to call with the dest and the path (p) pointing to the same buffer, but
951 * rootdir will be ignored to avoid expansion of the string.
953 * The rootdir string contains a value to use in place of a leading slash.
954 * Specify NULL to get the default of "module_dir".
956 * The depth var is a count of how many '..'s to allow at the start of the
959 * We also clean the path in a manner similar to clean_fname() but with a
962 * Turns multiple adjacent slashes into a single slash, gets rid of "." dir
963 * elements (INCLUDING a trailing dot dir), PRESERVES a trailing slash, and
964 * ALWAYS collapses ".." elements (except for those at the start of the
965 * string up to "depth" deep). If the resulting name would be empty,
966 * change it into a ".". */
967 char *sanitize_path(char *dest
, const char *p
, const char *rootdir
, int depth
,
971 int rlen
= 0, drop_dot_dirs
= !relative_paths
|| !(flags
& SP_KEEP_DOT_DIRS
);
974 int plen
= strlen(p
);
977 rootdir
= module_dir
;
978 rlen
= strlen(rootdir
);
983 if (rlen
+ plen
+ 1 >= MAXPATHLEN
)
985 } else if (!(dest
= new_array(char, rlen
+ plen
+ 1)))
986 out_of_memory("sanitize_path");
988 memcpy(dest
, rootdir
, rlen
);
995 while (*p
== '.' && p
[1] == '/')
999 start
= sanp
= dest
+ rlen
;
1000 /* This loop iterates once per filename component in p, pointing at
1001 * the start of the name (past any prior slash) for each iteration. */
1003 /* discard leading or extra slashes */
1008 if (drop_dot_dirs
) {
1009 if (*p
== '.' && (p
[1] == '/' || p
[1] == '\0')) {
1010 /* skip "." component */
1015 if (*p
== '.' && p
[1] == '.' && (p
[2] == '/' || p
[2] == '\0')) {
1016 /* ".." component followed by slash or end */
1017 if (depth
<= 0 || sanp
!= start
) {
1019 if (sanp
!= start
) {
1020 /* back up sanp one level */
1021 --sanp
; /* now pointing at slash */
1022 while (sanp
> start
&& sanp
[-1] != '/')
1027 /* allow depth levels of .. at the beginning */
1029 /* move the virtual beginning to leave the .. alone */
1032 /* copy one component through next slash */
1033 while (*p
&& (*sanp
++ = *p
++) != '/') {}
1036 /* ended up with nothing, so put in "." component */
1044 /* Like chdir(), but it keeps track of the current directory (in the
1045 * global "curr_dir"), and ensures that the path size doesn't overflow.
1046 * Also cleans the path using the clean_fname() function. */
1047 int change_dir(const char *dir
, int set_path_only
)
1049 static int initialised
, skipped_chdir
;
1054 if (getcwd(curr_dir
, sizeof curr_dir
- 1) == NULL
) {
1055 rsyserr(FERROR
, errno
, "getcwd()");
1056 exit_cleanup(RERR_FILESELECT
);
1058 curr_dir_len
= strlen(curr_dir
);
1061 if (!dir
) /* this call was probably just to initialize */
1065 if (len
== 1 && *dir
== '.' && (!skipped_chdir
|| set_path_only
))
1069 if (len
>= sizeof curr_dir
) {
1070 errno
= ENAMETOOLONG
;
1073 if (!set_path_only
&& chdir(dir
))
1075 skipped_chdir
= set_path_only
;
1076 memcpy(curr_dir
, dir
, len
+ 1);
1078 if (curr_dir_len
+ 1 + len
>= sizeof curr_dir
) {
1079 errno
= ENAMETOOLONG
;
1082 if (!(curr_dir_len
&& curr_dir
[curr_dir_len
-1] == '/'))
1083 curr_dir
[curr_dir_len
++] = '/';
1084 memcpy(curr_dir
+ curr_dir_len
, dir
, len
+ 1);
1086 if (!set_path_only
&& chdir(curr_dir
)) {
1087 curr_dir
[curr_dir_len
] = '\0';
1090 skipped_chdir
= set_path_only
;
1093 curr_dir_len
= clean_fname(curr_dir
, CFN_COLLAPSE_DOT_DOT_DIRS
| CFN_DROP_TRAILING_DOT_DIR
);
1094 if (sanitize_paths
) {
1095 if (module_dirlen
> curr_dir_len
)
1096 module_dirlen
= curr_dir_len
;
1097 curr_dir_depth
= count_dir_elements(curr_dir
+ module_dirlen
);
1100 if (DEBUG_GTE(CHDIR
, 1) && !set_path_only
)
1101 rprintf(FINFO
, "[%s] change_dir(%s)\n", who_am_i(), curr_dir
);
1106 /* This will make a relative path absolute and clean it up via clean_fname().
1107 * Returns the string, which might be newly allocated, or NULL on error. */
1108 char *normalize_path(char *path
, BOOL force_newbuf
, unsigned int *len_ptr
)
1112 if (*path
!= '/') { /* Make path absolute. */
1113 int len
= strlen(path
);
1114 if (curr_dir_len
+ 1 + len
>= sizeof curr_dir
)
1116 curr_dir
[curr_dir_len
] = '/';
1117 memcpy(curr_dir
+ curr_dir_len
+ 1, path
, len
+ 1);
1118 if (!(path
= strdup(curr_dir
)))
1119 out_of_memory("normalize_path");
1120 curr_dir
[curr_dir_len
] = '\0';
1121 } else if (force_newbuf
) {
1122 if (!(path
= strdup(path
)))
1123 out_of_memory("normalize_path");
1126 len
= clean_fname(path
, CFN_COLLAPSE_DOT_DOT_DIRS
| CFN_DROP_TRAILING_DOT_DIR
);
1135 * Return a quoted string with the full pathname of the indicated filename.
1136 * The string " (in MODNAME)" may also be appended. The returned pointer
1137 * remains valid until the next time full_fname() is called.
1139 char *full_fname(const char *fn
)
1141 static char *result
= NULL
;
1151 p1
= curr_dir
+ module_dirlen
;
1152 for (p2
= p1
; *p2
== '/'; p2
++) {}
1156 if (module_id
>= 0) {
1158 m2
= lp_name(module_id
);
1163 if (asprintf(&result
, "\"%s%s%s\"%s%s%s", p1
, p2
, fn
, m1
, m2
, m3
) < 0)
1164 out_of_memory("full_fname");
1169 static char partial_fname
[MAXPATHLEN
];
1171 char *partial_dir_fname(const char *fname
)
1173 char *t
= partial_fname
;
1174 int sz
= sizeof partial_fname
;
1177 if ((fn
= strrchr(fname
, '/')) != NULL
) {
1179 if (*partial_dir
!= '/') {
1180 int len
= fn
- fname
;
1181 strncpy(t
, fname
, len
); /* safe */
1187 if ((int)pathjoin(t
, sz
, partial_dir
, fn
) >= sz
)
1189 if (daemon_filter_list
.head
) {
1190 t
= strrchr(partial_fname
, '/');
1192 if (check_filter(&daemon_filter_list
, FLOG
, partial_fname
, 1) < 0)
1195 if (check_filter(&daemon_filter_list
, FLOG
, partial_fname
, 0) < 0)
1199 return partial_fname
;
1202 /* If no --partial-dir option was specified, we don't need to do anything
1203 * (the partial-dir is essentially '.'), so just return success. */
1204 int handle_partial_dir(const char *fname
, int create
)
1208 if (fname
!= partial_fname
)
1210 if (!create
&& *partial_dir
== '/')
1212 if (!(fn
= strrchr(partial_fname
, '/')))
1216 dir
= partial_fname
;
1219 int statret
= do_lstat(dir
, &st
);
1220 if (statret
== 0 && !S_ISDIR(st
.st_mode
)) {
1221 if (do_unlink(dir
) < 0) {
1227 if (statret
< 0 && do_mkdir(dir
, 0700) < 0) {
1238 /* Determine if a symlink points outside the current directory tree.
1239 * This is considered "unsafe" because e.g. when mirroring somebody
1240 * else's machine it might allow them to establish a symlink to
1241 * /etc/passwd, and then read it through a web server.
1243 * Returns 1 if unsafe, 0 if safe.
1245 * Null symlinks and absolute symlinks are always unsafe.
1247 * Basically here we are concerned with symlinks whose target contains
1248 * "..", because this might cause us to walk back up out of the
1249 * transferred directory. We are not allowed to go back up and
1252 * "dest" is the target of the symlink in question.
1254 * "src" is the top source directory currently applicable at the level
1255 * of the referenced symlink. This is usually the symlink's full path
1256 * (including its name), as referenced from the root of the transfer. */
1257 int unsafe_symlink(const char *dest
, const char *src
)
1259 const char *name
, *slash
;
1262 /* all absolute and null symlinks are unsafe */
1263 if (!dest
|| !*dest
|| *dest
== '/')
1266 /* find out what our safety margin is */
1267 for (name
= src
; (slash
= strchr(name
, '/')) != 0; name
= slash
+1) {
1268 /* ".." segment starts the count over. "." segment is ignored. */
1269 if (*name
== '.' && (name
[1] == '/' || (name
[1] == '.' && name
[2] == '/'))) {
1274 while (slash
[1] == '/') slash
++; /* just in case src isn't clean */
1276 if (*name
== '.' && name
[1] == '.' && name
[2] == '\0')
1279 for (name
= dest
; (slash
= strchr(name
, '/')) != 0; name
= slash
+1) {
1280 if (*name
== '.' && (name
[1] == '/' || (name
[1] == '.' && name
[2] == '/'))) {
1281 if (name
[1] == '.') {
1282 /* if at any point we go outside the current directory
1283 then stop - it is unsafe */
1289 while (slash
[1] == '/') slash
++;
1291 if (*name
== '.' && name
[1] == '.' && name
[2] == '\0')
1297 /* Return the date and time as a string. Some callers tweak returned buf. */
1298 char *timestring(time_t t
)
1300 static char TimeBuf
[200];
1301 struct tm
*tm
= localtime(&t
);
1304 #ifdef HAVE_STRFTIME
1305 strftime(TimeBuf
, sizeof TimeBuf
- 1, "%Y/%m/%d %H:%M:%S", tm
);
1307 strlcpy(TimeBuf
, asctime(tm
), sizeof TimeBuf
);
1310 if ((p
= strchr(TimeBuf
, '\n')) != NULL
)
1316 /* Determine if two time_t values are equivalent (either exact, or in
1317 * the modification timestamp window established by --modify-window).
1319 * @retval 0 if the times should be treated as the same
1321 * @retval +1 if the first is later
1323 * @retval -1 if the 2nd is later
1325 int cmp_time(time_t file1
, time_t file2
)
1327 if (file2
> file1
) {
1328 /* The final comparison makes sure that modify_window doesn't overflow a
1329 * time_t, which would mean that file2 must be in the equality window. */
1330 if (!modify_window
|| (file2
> file1
+ modify_window
&& file1
+ modify_window
> file1
))
1332 } else if (file1
> file2
) {
1333 if (!modify_window
|| (file1
> file2
+ modify_window
&& file2
+ modify_window
> file2
))
1343 This routine is a trick to immediately catch errors when debugging
1344 with insure. A xterm with a gdb is popped up when insure catches
1345 a error. It is Linux specific.
1347 int _Insure_trap_error(int a1
, int a2
, int a3
, int a4
, int a5
, int a6
)
1350 int ret
, pid_int
= getpid();
1354 "/usr/X11R6/bin/xterm -display :0 -T Panic -n Panic -e /bin/sh -c 'cat /tmp/ierrs.*.%d ; "
1355 "gdb /proc/%d/exe %d'", pid_int
, pid_int
, pid_int
) < 0)
1360 h
= dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY
);
1361 fn
= dlsym(h
, "_Insure_trap_error");
1364 ret
= fn(a1
, a2
, a3
, a4
, a5
, a6
);
1374 /* Take a filename and filename length and return the most significant
1375 * filename suffix we can find. This ignores suffixes such as "~",
1376 * ".bak", ".orig", ".~1~", etc. */
1377 const char *find_filename_suffix(const char *fn
, int fn_len
, int *len_ptr
)
1379 const char *suf
, *s
;
1383 /* One or more dots at the start aren't a suffix. */
1384 while (fn_len
&& *fn
== '.') fn
++, fn_len
--;
1386 /* Ignore the ~ in a "foo~" filename. */
1387 if (fn_len
> 1 && fn
[fn_len
-1] == '~')
1388 fn_len
--, had_tilde
= True
;
1392 /* Assume we don't find an suffix. */
1396 /* Find the last significant suffix. */
1397 for (s
= fn
+ fn_len
; fn_len
> 1; ) {
1398 while (*--s
!= '.' && s
!= fn
) {}
1401 s_len
= fn_len
- (s
- fn
);
1404 if (strcmp(s
+1, "bak") == 0
1405 || strcmp(s
+1, "old") == 0)
1407 } else if (s_len
== 5) {
1408 if (strcmp(s
+1, "orig") == 0)
1410 } else if (s_len
> 2 && had_tilde
1411 && s
[1] == '~' && isDigit(s
+ 2))
1417 /* Determine if the suffix is all digits. */
1418 for (s
++, s_len
--; s_len
> 0; s
++, s_len
--) {
1422 /* An all-digit suffix may not be that signficant. */
1429 /* This is an implementation of the Levenshtein distance algorithm. It
1430 * was implemented to avoid needing a two-dimensional matrix (to save
1431 * memory). It was also tweaked to try to factor in the ASCII distance
1432 * between changed characters as a minor distance quantity. The normal
1433 * Levenshtein units of distance (each signifying a single change between
1434 * the two strings) are defined as a "UNIT". */
1436 #define UNIT (1 << 16)
1438 uint32
fuzzy_distance(const char *s1
, unsigned len1
, const char *s2
, unsigned len2
)
1440 uint32 a
[MAXPATHLEN
], diag
, above
, left
, diag_inc
, above_inc
, left_inc
;
1444 if (!len1
|| !len2
) {
1449 for (i1
= 0, cost
= 0; i1
< len1
; i1
++)
1451 return (int32
)len1
* UNIT
+ cost
;
1454 for (i2
= 0; i2
< len2
; i2
++)
1455 a
[i2
] = (i2
+1) * UNIT
;
1457 for (i1
= 0; i1
< len1
; i1
++) {
1459 above
= (i1
+1) * UNIT
;
1460 for (i2
= 0; i2
< len2
; i2
++) {
1462 if ((cost
= *((uchar
*)s1
+i1
) - *((uchar
*)s2
+i2
)) != 0) {
1468 diag_inc
= diag
+ cost
;
1469 left_inc
= left
+ UNIT
+ *((uchar
*)s1
+i1
);
1470 above_inc
= above
+ UNIT
+ *((uchar
*)s2
+i2
);
1471 a
[i2
] = above
= left
< above
1472 ? (left_inc
< diag_inc
? left_inc
: diag_inc
)
1473 : (above_inc
< diag_inc
? above_inc
: diag_inc
);
1481 #define BB_SLOT_SIZE (16*1024) /* Desired size in bytes */
1482 #define BB_PER_SLOT_BITS (BB_SLOT_SIZE * 8) /* Number of bits per slot */
1483 #define BB_PER_SLOT_INTS (BB_SLOT_SIZE / 4) /* Number of int32s per slot */
1490 struct bitbag
*bitbag_create(int max_ndx
)
1492 struct bitbag
*bb
= new(struct bitbag
);
1493 bb
->slot_cnt
= (max_ndx
+ BB_PER_SLOT_BITS
- 1) / BB_PER_SLOT_BITS
;
1495 if (!(bb
->bits
= (uint32
**)calloc(bb
->slot_cnt
, sizeof (uint32
*))))
1496 out_of_memory("bitbag_create");
1501 void bitbag_set_bit(struct bitbag
*bb
, int ndx
)
1503 int slot
= ndx
/ BB_PER_SLOT_BITS
;
1504 ndx
%= BB_PER_SLOT_BITS
;
1506 if (!bb
->bits
[slot
]) {
1507 if (!(bb
->bits
[slot
] = (uint32
*)calloc(BB_PER_SLOT_INTS
, 4)))
1508 out_of_memory("bitbag_set_bit");
1511 bb
->bits
[slot
][ndx
/32] |= 1u << (ndx
% 32);
1514 #if 0 /* not needed yet */
1515 void bitbag_clear_bit(struct bitbag
*bb
, int ndx
)
1517 int slot
= ndx
/ BB_PER_SLOT_BITS
;
1518 ndx
%= BB_PER_SLOT_BITS
;
1520 if (!bb
->bits
[slot
])
1523 bb
->bits
[slot
][ndx
/32] &= ~(1u << (ndx
% 32));
1526 int bitbag_check_bit(struct bitbag
*bb
, int ndx
)
1528 int slot
= ndx
/ BB_PER_SLOT_BITS
;
1529 ndx
%= BB_PER_SLOT_BITS
;
1531 if (!bb
->bits
[slot
])
1534 return bb
->bits
[slot
][ndx
/32] & (1u << (ndx
% 32)) ? 1 : 0;
1538 /* Call this with -1 to start checking from 0. Returns -1 at the end. */
1539 int bitbag_next_bit(struct bitbag
*bb
, int after
)
1542 int i
, ndx
= after
+ 1;
1543 int slot
= ndx
/ BB_PER_SLOT_BITS
;
1544 ndx
%= BB_PER_SLOT_BITS
;
1546 mask
= (1u << (ndx
% 32)) - 1;
1547 for (i
= ndx
/ 32; slot
< bb
->slot_cnt
; slot
++, i
= mask
= 0) {
1548 if (!bb
->bits
[slot
])
1550 for ( ; i
< BB_PER_SLOT_INTS
; i
++, mask
= 0) {
1551 if (!(bits
= bb
->bits
[slot
][i
] & ~mask
))
1553 /* The xor magic figures out the lowest enabled bit in
1554 * bits, and the switch quickly computes log2(bit). */
1555 switch (bits
^ (bits
& (bits
-1))) {
1556 #define LOG2(n) case 1u << n: return slot*BB_PER_SLOT_BITS + i*32 + n
1557 LOG2(0); LOG2(1); LOG2(2); LOG2(3);
1558 LOG2(4); LOG2(5); LOG2(6); LOG2(7);
1559 LOG2(8); LOG2(9); LOG2(10); LOG2(11);
1560 LOG2(12); LOG2(13); LOG2(14); LOG2(15);
1561 LOG2(16); LOG2(17); LOG2(18); LOG2(19);
1562 LOG2(20); LOG2(21); LOG2(22); LOG2(23);
1563 LOG2(24); LOG2(25); LOG2(26); LOG2(27);
1564 LOG2(28); LOG2(29); LOG2(30); LOG2(31);
1566 return -1; /* impossible... */
1573 void flist_ndx_push(flist_ndx_list
*lp
, int ndx
)
1575 struct flist_ndx_item
*item
;
1577 if (!(item
= new(struct flist_ndx_item
)))
1578 out_of_memory("flist_ndx_push");
1582 lp
->tail
->next
= item
;
1588 int flist_ndx_pop(flist_ndx_list
*lp
)
1590 struct flist_ndx_item
*next
;
1596 ndx
= lp
->head
->ndx
;
1597 next
= lp
->head
->next
;
1606 void *expand_item_list(item_list
*lp
, size_t item_size
,
1607 const char *desc
, int incr
)
1609 /* First time through, 0 <= 0, so list is expanded. */
1610 if (lp
->malloced
<= lp
->count
) {
1612 size_t new_size
= lp
->malloced
;
1614 new_size
+= -incr
; /* increase slowly */
1615 else if (new_size
< (size_t)incr
)
1619 if (new_size
< lp
->malloced
)
1620 overflow_exit("expand_item_list");
1621 /* Using _realloc_array() lets us pass the size, not a type. */
1622 new_ptr
= _realloc_array(lp
->items
, item_size
, new_size
);
1623 if (DEBUG_GTE(FLIST
, 3)) {
1624 rprintf(FINFO
, "[%s] expand %s to %s bytes, did%s move\n",
1625 who_am_i(), desc
, big_num(new_size
* item_size
),
1626 new_ptr
== lp
->items
? " not" : "");
1629 out_of_memory("expand_item_list");
1631 lp
->items
= new_ptr
;
1632 lp
->malloced
= new_size
;
1634 return (char*)lp
->items
+ (lp
->count
++ * item_size
);