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 unsigned int clean_fname(char *name
, int flags
)
877 char *limit
= name
- 1, *t
= name
, *f
= name
;
883 if ((anchored
= *f
== '/') != 0) {
886 /* If there are exactly 2 slashes at the start, preserve
887 * them. Would break daemon excludes unless the paths are
888 * really treated differently, so used this sparingly. */
889 if (*f
== '/' && f
[1] != '/')
892 } else if (flags
& CFN_KEEP_DOT_DIRS
&& *f
== '.' && f
[1] == '/') {
897 /* discard extra slashes */
903 /* discard interior "." dirs */
904 if (f
[1] == '/' && !(flags
& CFN_KEEP_DOT_DIRS
)) {
908 if (f
[1] == '\0' && flags
& CFN_DROP_TRAILING_DOT_DIR
)
910 /* collapse ".." dirs */
911 if (flags
& CFN_COLLAPSE_DOT_DOT_DIRS
912 && f
[1] == '.' && (f
[2] == '/' || !f
[2])) {
914 if (s
== name
&& anchored
) {
918 while (s
> limit
&& *--s
!= '/') {}
919 if (s
!= t
- 1 && (s
< name
|| *s
== '/')) {
927 while (*f
&& (*t
++ = *f
++) != '/') {}
930 if (t
> name
+anchored
&& t
[-1] == '/' && !(flags
& CFN_KEEP_TRAILING_SLASH
))
939 /* Make path appear as if a chroot had occurred. This handles a leading
940 * "/" (either removing it or expanding it) and any leading or embedded
941 * ".." components that attempt to escape past the module's top dir.
943 * If dest is NULL, a buffer is allocated to hold the result. It is legal
944 * to call with the dest and the path (p) pointing to the same buffer, but
945 * rootdir will be ignored to avoid expansion of the string.
947 * The rootdir string contains a value to use in place of a leading slash.
948 * Specify NULL to get the default of "module_dir".
950 * The depth var is a count of how many '..'s to allow at the start of the
953 * We also clean the path in a manner similar to clean_fname() but with a
956 * Turns multiple adjacent slashes into a single slash, gets rid of "." dir
957 * elements (INCLUDING a trailing dot dir), PRESERVES a trailing slash, and
958 * ALWAYS collapses ".." elements (except for those at the start of the
959 * string up to "depth" deep). If the resulting name would be empty,
960 * change it into a ".". */
961 char *sanitize_path(char *dest
, const char *p
, const char *rootdir
, int depth
,
965 int rlen
= 0, drop_dot_dirs
= !relative_paths
|| !(flags
& SP_KEEP_DOT_DIRS
);
968 int plen
= strlen(p
);
971 rootdir
= module_dir
;
972 rlen
= strlen(rootdir
);
977 if (rlen
+ plen
+ 1 >= MAXPATHLEN
)
979 } else if (!(dest
= new_array(char, rlen
+ plen
+ 1)))
980 out_of_memory("sanitize_path");
982 memcpy(dest
, rootdir
, rlen
);
989 while (*p
== '.' && p
[1] == '/')
993 start
= sanp
= dest
+ rlen
;
994 /* This loop iterates once per filename component in p, pointing at
995 * the start of the name (past any prior slash) for each iteration. */
997 /* discard leading or extra slashes */
1002 if (drop_dot_dirs
) {
1003 if (*p
== '.' && (p
[1] == '/' || p
[1] == '\0')) {
1004 /* skip "." component */
1009 if (*p
== '.' && p
[1] == '.' && (p
[2] == '/' || p
[2] == '\0')) {
1010 /* ".." component followed by slash or end */
1011 if (depth
<= 0 || sanp
!= start
) {
1013 if (sanp
!= start
) {
1014 /* back up sanp one level */
1015 --sanp
; /* now pointing at slash */
1016 while (sanp
> start
&& sanp
[-1] != '/')
1021 /* allow depth levels of .. at the beginning */
1023 /* move the virtual beginning to leave the .. alone */
1026 /* copy one component through next slash */
1027 while (*p
&& (*sanp
++ = *p
++) != '/') {}
1030 /* ended up with nothing, so put in "." component */
1038 /* Like chdir(), but it keeps track of the current directory (in the
1039 * global "curr_dir"), and ensures that the path size doesn't overflow.
1040 * Also cleans the path using the clean_fname() function. */
1041 int change_dir(const char *dir
, int set_path_only
)
1043 static int initialised
, skipped_chdir
;
1048 if (getcwd(curr_dir
, sizeof curr_dir
- 1) == NULL
) {
1049 rsyserr(FERROR
, errno
, "getcwd()");
1050 exit_cleanup(RERR_FILESELECT
);
1052 curr_dir_len
= strlen(curr_dir
);
1055 if (!dir
) /* this call was probably just to initialize */
1059 if (len
== 1 && *dir
== '.' && (!skipped_chdir
|| set_path_only
))
1063 if (len
>= sizeof curr_dir
) {
1064 errno
= ENAMETOOLONG
;
1067 if (!set_path_only
&& chdir(dir
))
1069 skipped_chdir
= set_path_only
;
1070 memcpy(curr_dir
, dir
, len
+ 1);
1072 if (curr_dir_len
+ 1 + len
>= sizeof curr_dir
) {
1073 errno
= ENAMETOOLONG
;
1076 if (!(curr_dir_len
&& curr_dir
[curr_dir_len
-1] == '/'))
1077 curr_dir
[curr_dir_len
++] = '/';
1078 memcpy(curr_dir
+ curr_dir_len
, dir
, len
+ 1);
1080 if (!set_path_only
&& chdir(curr_dir
)) {
1081 curr_dir
[curr_dir_len
] = '\0';
1084 skipped_chdir
= set_path_only
;
1087 curr_dir_len
= clean_fname(curr_dir
, CFN_COLLAPSE_DOT_DOT_DIRS
| CFN_DROP_TRAILING_DOT_DIR
);
1088 if (sanitize_paths
) {
1089 if (module_dirlen
> curr_dir_len
)
1090 module_dirlen
= curr_dir_len
;
1091 curr_dir_depth
= count_dir_elements(curr_dir
+ module_dirlen
);
1094 if (DEBUG_GTE(CHDIR
, 1) && !set_path_only
)
1095 rprintf(FINFO
, "[%s] change_dir(%s)\n", who_am_i(), curr_dir
);
1100 /* This will make a relative path absolute and clean it up via clean_fname().
1101 * Returns the string, which might be newly allocated, or NULL on error. */
1102 char *normalize_path(char *path
, BOOL force_newbuf
, unsigned int *len_ptr
)
1106 if (*path
!= '/') { /* Make path absolute. */
1107 int len
= strlen(path
);
1108 if (curr_dir_len
+ 1 + len
>= sizeof curr_dir
)
1110 curr_dir
[curr_dir_len
] = '/';
1111 memcpy(curr_dir
+ curr_dir_len
+ 1, path
, len
+ 1);
1112 if (!(path
= strdup(curr_dir
)))
1113 out_of_memory("normalize_path");
1114 curr_dir
[curr_dir_len
] = '\0';
1115 } else if (force_newbuf
) {
1116 if (!(path
= strdup(path
)))
1117 out_of_memory("normalize_path");
1120 len
= clean_fname(path
, CFN_COLLAPSE_DOT_DOT_DIRS
| CFN_DROP_TRAILING_DOT_DIR
);
1129 * Return a quoted string with the full pathname of the indicated filename.
1130 * The string " (in MODNAME)" may also be appended. The returned pointer
1131 * remains valid until the next time full_fname() is called.
1133 char *full_fname(const char *fn
)
1135 static char *result
= NULL
;
1145 p1
= curr_dir
+ module_dirlen
;
1146 for (p2
= p1
; *p2
== '/'; p2
++) {}
1150 if (module_id
>= 0) {
1152 m2
= lp_name(module_id
);
1157 if (asprintf(&result
, "\"%s%s%s\"%s%s%s", p1
, p2
, fn
, m1
, m2
, m3
) < 0)
1158 out_of_memory("full_fname");
1163 static char partial_fname
[MAXPATHLEN
];
1165 char *partial_dir_fname(const char *fname
)
1167 char *t
= partial_fname
;
1168 int sz
= sizeof partial_fname
;
1171 if ((fn
= strrchr(fname
, '/')) != NULL
) {
1173 if (*partial_dir
!= '/') {
1174 int len
= fn
- fname
;
1175 strncpy(t
, fname
, len
); /* safe */
1181 if ((int)pathjoin(t
, sz
, partial_dir
, fn
) >= sz
)
1183 if (daemon_filter_list
.head
) {
1184 t
= strrchr(partial_fname
, '/');
1186 if (check_filter(&daemon_filter_list
, FLOG
, partial_fname
, 1) < 0)
1189 if (check_filter(&daemon_filter_list
, FLOG
, partial_fname
, 0) < 0)
1193 return partial_fname
;
1196 /* If no --partial-dir option was specified, we don't need to do anything
1197 * (the partial-dir is essentially '.'), so just return success. */
1198 int handle_partial_dir(const char *fname
, int create
)
1202 if (fname
!= partial_fname
)
1204 if (!create
&& *partial_dir
== '/')
1206 if (!(fn
= strrchr(partial_fname
, '/')))
1210 dir
= partial_fname
;
1213 int statret
= do_lstat(dir
, &st
);
1214 if (statret
== 0 && !S_ISDIR(st
.st_mode
)) {
1215 if (do_unlink(dir
) < 0) {
1221 if (statret
< 0 && do_mkdir(dir
, 0700) < 0) {
1232 /* Determine if a symlink points outside the current directory tree.
1233 * This is considered "unsafe" because e.g. when mirroring somebody
1234 * else's machine it might allow them to establish a symlink to
1235 * /etc/passwd, and then read it through a web server.
1237 * Returns 1 if unsafe, 0 if safe.
1239 * Null symlinks and absolute symlinks are always unsafe.
1241 * Basically here we are concerned with symlinks whose target contains
1242 * "..", because this might cause us to walk back up out of the
1243 * transferred directory. We are not allowed to go back up and
1246 * "dest" is the target of the symlink in question.
1248 * "src" is the top source directory currently applicable at the level
1249 * of the referenced symlink. This is usually the symlink's full path
1250 * (including its name), as referenced from the root of the transfer. */
1251 int unsafe_symlink(const char *dest
, const char *src
)
1253 const char *name
, *slash
;
1256 /* all absolute and null symlinks are unsafe */
1257 if (!dest
|| !*dest
|| *dest
== '/')
1260 /* find out what our safety margin is */
1261 for (name
= src
; (slash
= strchr(name
, '/')) != 0; name
= slash
+1) {
1262 /* ".." segment starts the count over. "." segment is ignored. */
1263 if (*name
== '.' && (name
[1] == '/' || (name
[1] == '.' && name
[2] == '/'))) {
1268 while (slash
[1] == '/') slash
++; /* just in case src isn't clean */
1270 if (*name
== '.' && name
[1] == '.' && name
[2] == '\0')
1273 for (name
= dest
; (slash
= strchr(name
, '/')) != 0; name
= slash
+1) {
1274 if (*name
== '.' && (name
[1] == '/' || (name
[1] == '.' && name
[2] == '/'))) {
1275 if (name
[1] == '.') {
1276 /* if at any point we go outside the current directory
1277 then stop - it is unsafe */
1283 while (slash
[1] == '/') slash
++;
1285 if (*name
== '.' && name
[1] == '.' && name
[2] == '\0')
1291 /* Return the date and time as a string. Some callers tweak returned buf. */
1292 char *timestring(time_t t
)
1294 static char TimeBuf
[200];
1295 struct tm
*tm
= localtime(&t
);
1298 #ifdef HAVE_STRFTIME
1299 strftime(TimeBuf
, sizeof TimeBuf
- 1, "%Y/%m/%d %H:%M:%S", tm
);
1301 strlcpy(TimeBuf
, asctime(tm
), sizeof TimeBuf
);
1304 if ((p
= strchr(TimeBuf
, '\n')) != NULL
)
1310 /* Determine if two time_t values are equivalent (either exact, or in
1311 * the modification timestamp window established by --modify-window).
1313 * @retval 0 if the times should be treated as the same
1315 * @retval +1 if the first is later
1317 * @retval -1 if the 2nd is later
1319 int cmp_time(time_t file1
, time_t file2
)
1321 if (file2
> file1
) {
1322 if (file2
- file1
<= modify_window
)
1326 if (file1
- file2
<= modify_window
)
1336 This routine is a trick to immediately catch errors when debugging
1337 with insure. A xterm with a gdb is popped up when insure catches
1338 a error. It is Linux specific.
1340 int _Insure_trap_error(int a1
, int a2
, int a3
, int a4
, int a5
, int a6
)
1343 int ret
, pid_int
= getpid();
1347 "/usr/X11R6/bin/xterm -display :0 -T Panic -n Panic -e /bin/sh -c 'cat /tmp/ierrs.*.%d ; "
1348 "gdb /proc/%d/exe %d'", pid_int
, pid_int
, pid_int
) < 0)
1353 h
= dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY
);
1354 fn
= dlsym(h
, "_Insure_trap_error");
1357 ret
= fn(a1
, a2
, a3
, a4
, a5
, a6
);
1367 /* Take a filename and filename length and return the most significant
1368 * filename suffix we can find. This ignores suffixes such as "~",
1369 * ".bak", ".orig", ".~1~", etc. */
1370 const char *find_filename_suffix(const char *fn
, int fn_len
, int *len_ptr
)
1372 const char *suf
, *s
;
1376 /* One or more dots at the start aren't a suffix. */
1377 while (fn_len
&& *fn
== '.') fn
++, fn_len
--;
1379 /* Ignore the ~ in a "foo~" filename. */
1380 if (fn_len
> 1 && fn
[fn_len
-1] == '~')
1381 fn_len
--, had_tilde
= True
;
1385 /* Assume we don't find an suffix. */
1389 /* Find the last significant suffix. */
1390 for (s
= fn
+ fn_len
; fn_len
> 1; ) {
1391 while (*--s
!= '.' && s
!= fn
) {}
1394 s_len
= fn_len
- (s
- fn
);
1397 if (strcmp(s
+1, "bak") == 0
1398 || strcmp(s
+1, "old") == 0)
1400 } else if (s_len
== 5) {
1401 if (strcmp(s
+1, "orig") == 0)
1403 } else if (s_len
> 2 && had_tilde
1404 && s
[1] == '~' && isDigit(s
+ 2))
1410 /* Determine if the suffix is all digits. */
1411 for (s
++, s_len
--; s_len
> 0; s
++, s_len
--) {
1415 /* An all-digit suffix may not be that signficant. */
1422 /* This is an implementation of the Levenshtein distance algorithm. It
1423 * was implemented to avoid needing a two-dimensional matrix (to save
1424 * memory). It was also tweaked to try to factor in the ASCII distance
1425 * between changed characters as a minor distance quantity. The normal
1426 * Levenshtein units of distance (each signifying a single change between
1427 * the two strings) are defined as a "UNIT". */
1429 #define UNIT (1 << 16)
1431 uint32
fuzzy_distance(const char *s1
, unsigned len1
, const char *s2
, unsigned len2
)
1433 uint32 a
[MAXPATHLEN
], diag
, above
, left
, diag_inc
, above_inc
, left_inc
;
1437 if (!len1
|| !len2
) {
1442 for (i1
= 0, cost
= 0; i1
< len1
; i1
++)
1444 return (int32
)len1
* UNIT
+ cost
;
1447 for (i2
= 0; i2
< len2
; i2
++)
1448 a
[i2
] = (i2
+1) * UNIT
;
1450 for (i1
= 0; i1
< len1
; i1
++) {
1452 above
= (i1
+1) * UNIT
;
1453 for (i2
= 0; i2
< len2
; i2
++) {
1455 if ((cost
= *((uchar
*)s1
+i1
) - *((uchar
*)s2
+i2
)) != 0) {
1461 diag_inc
= diag
+ cost
;
1462 left_inc
= left
+ UNIT
+ *((uchar
*)s1
+i1
);
1463 above_inc
= above
+ UNIT
+ *((uchar
*)s2
+i2
);
1464 a
[i2
] = above
= left
< above
1465 ? (left_inc
< diag_inc
? left_inc
: diag_inc
)
1466 : (above_inc
< diag_inc
? above_inc
: diag_inc
);
1474 #define BB_SLOT_SIZE (16*1024) /* Desired size in bytes */
1475 #define BB_PER_SLOT_BITS (BB_SLOT_SIZE * 8) /* Number of bits per slot */
1476 #define BB_PER_SLOT_INTS (BB_SLOT_SIZE / 4) /* Number of int32s per slot */
1483 struct bitbag
*bitbag_create(int max_ndx
)
1485 struct bitbag
*bb
= new(struct bitbag
);
1486 bb
->slot_cnt
= (max_ndx
+ BB_PER_SLOT_BITS
- 1) / BB_PER_SLOT_BITS
;
1488 if (!(bb
->bits
= (uint32
**)calloc(bb
->slot_cnt
, sizeof (uint32
*))))
1489 out_of_memory("bitbag_create");
1494 void bitbag_set_bit(struct bitbag
*bb
, int ndx
)
1496 int slot
= ndx
/ BB_PER_SLOT_BITS
;
1497 ndx
%= BB_PER_SLOT_BITS
;
1499 if (!bb
->bits
[slot
]) {
1500 if (!(bb
->bits
[slot
] = (uint32
*)calloc(BB_PER_SLOT_INTS
, 4)))
1501 out_of_memory("bitbag_set_bit");
1504 bb
->bits
[slot
][ndx
/32] |= 1u << (ndx
% 32);
1507 #if 0 /* not needed yet */
1508 void bitbag_clear_bit(struct bitbag
*bb
, int ndx
)
1510 int slot
= ndx
/ BB_PER_SLOT_BITS
;
1511 ndx
%= BB_PER_SLOT_BITS
;
1513 if (!bb
->bits
[slot
])
1516 bb
->bits
[slot
][ndx
/32] &= ~(1u << (ndx
% 32));
1519 int bitbag_check_bit(struct bitbag
*bb
, int ndx
)
1521 int slot
= ndx
/ BB_PER_SLOT_BITS
;
1522 ndx
%= BB_PER_SLOT_BITS
;
1524 if (!bb
->bits
[slot
])
1527 return bb
->bits
[slot
][ndx
/32] & (1u << (ndx
% 32)) ? 1 : 0;
1531 /* Call this with -1 to start checking from 0. Returns -1 at the end. */
1532 int bitbag_next_bit(struct bitbag
*bb
, int after
)
1535 int i
, ndx
= after
+ 1;
1536 int slot
= ndx
/ BB_PER_SLOT_BITS
;
1537 ndx
%= BB_PER_SLOT_BITS
;
1539 mask
= (1u << (ndx
% 32)) - 1;
1540 for (i
= ndx
/ 32; slot
< bb
->slot_cnt
; slot
++, i
= mask
= 0) {
1541 if (!bb
->bits
[slot
])
1543 for ( ; i
< BB_PER_SLOT_INTS
; i
++, mask
= 0) {
1544 if (!(bits
= bb
->bits
[slot
][i
] & ~mask
))
1546 /* The xor magic figures out the lowest enabled bit in
1547 * bits, and the switch quickly computes log2(bit). */
1548 switch (bits
^ (bits
& (bits
-1))) {
1549 #define LOG2(n) case 1u << n: return slot*BB_PER_SLOT_BITS + i*32 + n
1550 LOG2(0); LOG2(1); LOG2(2); LOG2(3);
1551 LOG2(4); LOG2(5); LOG2(6); LOG2(7);
1552 LOG2(8); LOG2(9); LOG2(10); LOG2(11);
1553 LOG2(12); LOG2(13); LOG2(14); LOG2(15);
1554 LOG2(16); LOG2(17); LOG2(18); LOG2(19);
1555 LOG2(20); LOG2(21); LOG2(22); LOG2(23);
1556 LOG2(24); LOG2(25); LOG2(26); LOG2(27);
1557 LOG2(28); LOG2(29); LOG2(30); LOG2(31);
1559 return -1; /* impossible... */
1566 void flist_ndx_push(flist_ndx_list
*lp
, int ndx
)
1568 struct flist_ndx_item
*item
;
1570 if (!(item
= new(struct flist_ndx_item
)))
1571 out_of_memory("flist_ndx_push");
1575 lp
->tail
->next
= item
;
1581 int flist_ndx_pop(flist_ndx_list
*lp
)
1583 struct flist_ndx_item
*next
;
1589 ndx
= lp
->head
->ndx
;
1590 next
= lp
->head
->next
;
1599 void *expand_item_list(item_list
*lp
, size_t item_size
,
1600 const char *desc
, int incr
)
1602 /* First time through, 0 <= 0, so list is expanded. */
1603 if (lp
->malloced
<= lp
->count
) {
1605 size_t new_size
= lp
->malloced
;
1607 new_size
+= -incr
; /* increase slowly */
1608 else if (new_size
< (size_t)incr
)
1612 if (new_size
< lp
->malloced
)
1613 overflow_exit("expand_item_list");
1614 /* Using _realloc_array() lets us pass the size, not a type. */
1615 new_ptr
= _realloc_array(lp
->items
, item_size
, new_size
);
1616 if (DEBUG_GTE(FLIST
, 3)) {
1617 rprintf(FINFO
, "[%s] expand %s to %s bytes, did%s move\n",
1618 who_am_i(), desc
, big_num(new_size
* item_size
),
1619 new_ptr
== lp
->items
? " not" : "");
1622 out_of_memory("expand_item_list");
1624 lp
->items
= new_ptr
;
1625 lp
->malloced
= new_size
;
1627 return (char*)lp
->items
+ (lp
->count
++ * item_size
);