1 /* -*- c-file-style: "linux" -*-
3 * Copyright (C) 1996-2000 by Andrew Tridgell
4 * Copyright (C) Paul Mackerras 1996
5 * Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * Utilities used in rsync
32 int sanitize_paths
= 0;
37 * Set a fd into nonblocking mode
39 void set_nonblocking(int fd
)
43 if ((val
= fcntl(fd
, F_GETFL
, 0)) == -1)
45 if (!(val
& NONBLOCK_FLAG
)) {
47 fcntl(fd
, F_SETFL
, val
);
52 * Set a fd into blocking mode
54 void set_blocking(int fd
)
58 if ((val
= fcntl(fd
, F_GETFL
, 0)) == -1)
60 if (val
& NONBLOCK_FLAG
) {
61 val
&= ~NONBLOCK_FLAG
;
62 fcntl(fd
, F_SETFL
, val
);
68 * Create a file descriptor pair - like pipe() but use socketpair if
69 * possible (because of blocking issues on pipes).
71 * Always set non-blocking.
73 int fd_pair(int fd
[2])
78 ret
= socketpair(AF_UNIX
, SOCK_STREAM
, 0, fd
);
84 set_nonblocking(fd
[0]);
85 set_nonblocking(fd
[1]);
92 void print_child_argv(char **cmd
)
94 rprintf(FINFO
, "opening connection using ");
96 /* Look for characters that ought to be quoted. This
97 * is not a great quoting algorithm, but it's
98 * sufficient for a log message. */
99 if (strspn(*cmd
, "abcdefghijklmnopqrstuvwxyz"
100 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
102 ",.-_=+@/") != strlen(*cmd
)) {
103 rprintf(FINFO
, "\"%s\" ", *cmd
);
105 rprintf(FINFO
, "%s ", *cmd
);
108 rprintf(FINFO
, "\n");
112 void out_of_memory(char *str
)
114 rprintf(FERROR
,"ERROR: out of memory in %s\n",str
);
115 exit_cleanup(RERR_MALLOC
);
118 void overflow(char *str
)
120 rprintf(FERROR
,"ERROR: buffer overflow in %s\n",str
);
121 exit_cleanup(RERR_MALLOC
);
126 int set_modtime(char *fname
, time_t modtime
)
133 rprintf(FINFO
, "set modtime of %s to (%ld) %s",
134 fname
, (long) modtime
,
135 asctime(localtime(&modtime
)));
141 tbuf
.actime
= time(NULL
);
142 tbuf
.modtime
= modtime
;
143 return utime(fname
,&tbuf
);
144 #elif defined(HAVE_UTIME)
148 return utime(fname
,t
);
151 t
[0].tv_sec
= time(NULL
);
153 t
[1].tv_sec
= modtime
;
155 return utimes(fname
,t
);
162 Create any necessary directories in fname. Unfortunately we don't know
163 what perms to give the directory when this is called so we need to rely
166 int create_directory_path(char *fname
, int base_umask
)
170 while (*fname
== '/') fname
++;
171 while (strncmp(fname
,"./",2)==0) fname
+= 2;
174 while ((p
=strchr(p
,'/'))) {
176 do_mkdir(fname
, 0777 & ~base_umask
);
185 * Write @p len bytes at @p ptr to descriptor @p desc, retrying if
188 * @retval len upon success
190 * @retval <0 write's (negative) error code
192 * Derived from GNU C's cccp.c.
194 static int full_write(int desc
, char *ptr
, size_t len
)
200 int written
= write (desc
, ptr
, len
);
208 total_written
+= written
;
212 return total_written
;
217 * Read @p len bytes at @p ptr from descriptor @p desc, retrying if
220 * @retval >0 the actual number of bytes read
224 * @retval <0 for an error.
226 * Derived from GNU C's cccp.c. */
227 static int safe_read(int desc
, char *ptr
, size_t len
)
236 n_chars
= read(desc
, ptr
, len
);
237 } while (n_chars
< 0 && errno
== EINTR
);
239 n_chars
= read(desc
, ptr
, len
);
248 * This is used in conjunction with the --temp-dir option */
249 int copy_file(char *source
, char *dest
, mode_t mode
)
254 int len
; /* Number of bytes read into `buf'. */
256 ifd
= do_open(source
, O_RDONLY
, 0);
258 rprintf(FERROR
,"open %s: %s\n",
259 source
,strerror(errno
));
263 if (robust_unlink(dest
) && errno
!= ENOENT
) {
264 rprintf(FERROR
,"unlink %s: %s\n",
265 dest
,strerror(errno
));
269 ofd
= do_open(dest
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXCL
, mode
);
271 rprintf(FERROR
,"open %s: %s\n",
272 dest
,strerror(errno
));
277 while ((len
= safe_read(ifd
, buf
, sizeof(buf
))) > 0) {
278 if (full_write(ofd
, buf
, len
) < 0) {
279 rprintf(FERROR
,"write %s: %s\n",
280 dest
,strerror(errno
));
291 rprintf(FERROR
,"read %s: %s\n",
292 source
,strerror(errno
));
299 /* MAX_RENAMES should be 10**MAX_RENAMES_DIGITS */
300 #define MAX_RENAMES_DIGITS 3
301 #define MAX_RENAMES 1000
304 * Robust unlink: some OS'es (HPUX) refuse to unlink busy files, so
305 * rename to <path>/.rsyncNNN instead.
307 * Note that successive rsync runs will shuffle the filenames around a
308 * bit as long as the file is still busy; this is because this function
309 * does not know if the unlink call is due to a new file coming in, or
310 * --delete trying to remove old .rsyncNNN files, hence it renames it
313 int robust_unlink(char *fname
)
316 return do_unlink(fname
);
318 static int counter
= 1;
320 char path
[MAXPATHLEN
];
322 rc
= do_unlink(fname
);
323 if ((rc
== 0) || (errno
!= ETXTBSY
))
326 strlcpy(path
, fname
, MAXPATHLEN
);
329 while((path
[--pos
] != '/') && (pos
>= 0))
332 strlcpy(&path
[pos
], ".rsync", MAXPATHLEN
-pos
);
333 pos
+= sizeof(".rsync")-1;
335 if (pos
> (MAXPATHLEN
-MAX_RENAMES_DIGITS
-1)) {
340 /* start where the last one left off to reduce chance of clashes */
343 sprintf(&path
[pos
], "%03d", counter
);
344 if (++counter
>= MAX_RENAMES
)
346 } while (((rc
= access(path
, 0)) == 0) && (counter
!= start
));
349 rprintf(FINFO
,"renaming %s to %s because of text busy\n",
352 /* maybe we should return rename()'s exit status? Nah. */
353 if (do_rename(fname
, path
) != 0) {
361 int robust_rename(char *from
, char *to
)
364 return do_rename(from
, to
);
366 int rc
= do_rename(from
, to
);
367 if ((rc
== 0) || (errno
!= ETXTBSY
))
369 if (robust_unlink(to
) != 0)
371 return do_rename(from
, to
);
376 static pid_t all_pids
[10];
379 /** Fork and record the pid of the child. **/
382 pid_t newpid
= fork();
384 if (newpid
!= 0 && newpid
!= -1) {
385 all_pids
[num_pids
++] = newpid
;
393 * @todo It would be kind of nice to make sure that they are actually
394 * all our children before we kill them, because their pids may have
395 * been recycled by some other process. Perhaps when we wait for a
396 * child, we should remove it from this array. Alternatively we could
397 * perhaps use process groups, but I think that would not work on
398 * ancient Unix versions that don't support them.
400 void kill_all(int sig
)
404 for (i
= 0; i
< num_pids
; i
++) {
405 /* Let's just be a little careful where we
406 * point that gun, hey? See kill(2) for the
407 * magic caused by negative values. */
408 pid_t p
= all_pids
[i
];
420 /** Turn a user name into a uid */
421 int name_to_uid(char *name
, uid_t
*uid
)
424 if (!name
|| !*name
) return 0;
425 pass
= getpwnam(name
);
433 /** Turn a group name into a gid */
434 int name_to_gid(char *name
, gid_t
*gid
)
437 if (!name
|| !*name
) return 0;
438 grp
= getgrnam(name
);
447 /** Lock a byte range in a open file */
448 int lock_range(int fd
, int offset
, int len
)
452 lock
.l_type
= F_WRLCK
;
453 lock
.l_whence
= SEEK_SET
;
454 lock
.l_start
= offset
;
458 return fcntl(fd
,F_SETLK
,&lock
) == 0;
462 static void glob_expand_one(char *s
, char **argv
, int *argc
, int maxargs
)
464 #if !(defined(HAVE_GLOB) && defined(HAVE_GLOB_H))
466 argv
[*argc
] = strdup(s
);
470 extern int sanitize_paths
;
476 argv
[*argc
] = strdup(s
);
477 if (sanitize_paths
) {
478 sanitize_path(argv
[*argc
], NULL
);
481 memset(&globbuf
, 0, sizeof(globbuf
));
482 glob(argv
[*argc
], 0, NULL
, &globbuf
);
483 if (globbuf
.gl_pathc
== 0) {
488 for (i
=0; i
<(maxargs
- (*argc
)) && i
< (int) globbuf
.gl_pathc
;i
++) {
489 if (i
== 0) free(argv
[*argc
]);
490 argv
[(*argc
) + i
] = strdup(globbuf
.gl_pathv
[i
]);
491 if (!argv
[(*argc
) + i
]) out_of_memory("glob_expand");
498 void glob_expand(char *base1
, char **argv
, int *argc
, int maxargs
)
500 char *s
= argv
[*argc
];
504 if (!s
|| !*s
) return;
506 if (strncmp(s
, base
, strlen(base
)) == 0) {
511 if (!s
) out_of_memory("glob_expand");
513 if (asprintf(&base
," %s/", base1
) <= 0) out_of_memory("glob_expand");
516 while ((p
= strstr(q
,base
)) && ((*argc
) < maxargs
)) {
517 /* split it at this point */
519 glob_expand_one(q
, argv
, argc
, maxargs
);
523 if (*q
&& (*argc
< maxargs
)) glob_expand_one(q
, argv
, argc
, maxargs
);
530 * Convert a string to lower case
532 void strlower(char *s
)
535 if (isupper(* (unsigned char *) s
))
536 *s
= tolower(* (unsigned char *) s
);
541 void *Realloc(void *p
, int size
)
543 if (!p
) return (void *)malloc(size
);
544 return (void *)realloc(p
, size
);
548 void clean_fname(char *name
)
559 if ((p
=strstr(name
,"/./"))) {
567 if ((p
=strstr(name
,"//"))) {
575 if (strncmp(p
=name
,"./",2) == 0) {
583 if (l
> 1 && p
[l
-1] == '/') {
591 * Make path appear as if a chroot had occurred:
593 * @li 1. remove leading "/" (or replace with "." if at end)
595 * @li 2. remove leading ".." components (except those allowed by @p reldir)
597 * @li 3. delete any other "<dir>/.." (recursively)
599 * Can only shrink paths, so sanitizes in place.
601 * While we're at it, remove double slashes and "." components like
602 * clean_fname() does, but DON'T remove a trailing slash because that
603 * is sometimes significant on command line arguments.
605 * If @p reldir is non-null, it is a sanitized directory that the path will be
606 * relative to, so allow as many ".." at the beginning of the path as
607 * there are components in reldir. This is used for symbolic link targets.
608 * If reldir is non-null and the path began with "/", to be completely like
609 * a chroot we should add in depth levels of ".." at the beginning of the
610 * path, but that would blow the assumption that the path doesn't grow and
611 * it is not likely to end up being a valid symlink anyway, so just do
612 * the normal removal of the leading "/" instead.
614 * Contributed by Dave Dykstra <dwd@bell-labs.com>
616 void sanitize_path(char *p
, char *reldir
)
625 if (*reldir
++ == '/') {
633 /* remove leading slashes */
637 /* this loop iterates once per filename component in p.
638 * both p (and sanp if the original had a slash) should
639 * always be left pointing after a slash
641 if ((*p
== '.') && ((*(p
+1) == '/') || (*(p
+1) == '\0'))) {
642 /* skip "." component */
643 while (*++p
== '/') {
644 /* skip following slashes */
650 if ((*p
== '.') && (*(p
+1) == '.') &&
651 ((*(p
+2) == '/') || (*(p
+2) == '\0'))) {
652 /* ".." component followed by slash or end */
653 if ((depth
> 0) && (sanp
== start
)) {
654 /* allow depth levels of .. at the beginning */
662 /* back up sanp one level */
663 --sanp
; /* now pointing at slash */
664 while ((sanp
> start
) && (*(sanp
- 1) != '/')) {
665 /* skip back up to slash */
673 /* copy one component through next slash */
675 if ((*p
== '\0') || (*(p
-1) == '/')) {
677 /* skip multiple slashes */
684 /* move the virtual beginning to leave the .. alone */
688 if ((sanp
== start
) && !allowdotdot
) {
689 /* ended up with nothing, so put in "." component */
691 * note that the !allowdotdot doesn't prevent this from
692 * happening in all allowed ".." situations, but I didn't
693 * think it was worth putting in an extra variable to ensure
694 * it since an extra "." won't hurt in those situations.
702 static char curr_dir
[MAXPATHLEN
];
705 * Like chdir() but can be reversed with pop_dir() if @p save is set.
706 * It is also much faster as it remembers where we have been.
708 char *push_dir(char *dir
, int save
)
710 char *ret
= curr_dir
;
711 static int initialised
;
715 getcwd(curr_dir
, sizeof(curr_dir
)-1);
718 if (!dir
) return NULL
; /* this call was probably just to initialize */
720 if (chdir(dir
)) return NULL
;
723 ret
= strdup(curr_dir
);
727 strlcpy(curr_dir
, dir
, sizeof(curr_dir
));
729 strlcat(curr_dir
,"/", sizeof(curr_dir
));
730 strlcat(curr_dir
,dir
, sizeof(curr_dir
));
733 clean_fname(curr_dir
);
738 /** Reverse a push_dir() call */
739 int pop_dir(char *dir
)
749 strlcpy(curr_dir
, dir
, sizeof(curr_dir
));
756 /** We need to supply our own strcmp function for file list comparisons
757 to ensure that signed/unsigned usage is consistent between machines. */
758 int u_strcmp(const char *cs1
, const char *cs2
)
760 const uchar
*s1
= (const uchar
*)cs1
;
761 const uchar
*s2
= (const uchar
*)cs2
;
763 while (*s1
&& *s2
&& (*s1
== *s2
)) {
767 return (int)*s1
- (int)*s2
;
773 * Determine if a symlink points outside the current directory tree.
774 * This is considered "unsafe" because e.g. when mirroring somebody
775 * else's machine it might allow them to establish a symlink to
776 * /etc/passwd, and then read it through a web server.
778 * Null symlinks and absolute symlinks are always unsafe.
780 * Basically here we are concerned with symlinks whose target contains
781 * "..", because this might cause us to walk back up out of the
782 * transferred directory. We are not allowed to go back up and
785 * @param dest Target of the symlink in question.
787 * @param src Top source directory currently applicable. Basically this
788 * is the first parameter to rsync in a simple invocation, but it's
789 * modified by flist.c in slightly complex ways.
791 * @retval True if unsafe
792 * @retval False is unsafe
796 int unsafe_symlink(const char *dest
, const char *src
)
798 const char *name
, *slash
;
801 /* all absolute and null symlinks are unsafe */
802 if (!dest
|| !*dest
|| *dest
== '/') return 1;
804 /* find out what our safety margin is */
805 for (name
= src
; (slash
= strchr(name
, '/')) != 0; name
= slash
+1) {
806 if (strncmp(name
, "../", 3) == 0) {
808 } else if (strncmp(name
, "./", 2) == 0) {
814 if (strcmp(name
, "..") == 0)
817 for (name
= dest
; (slash
= strchr(name
, '/')) != 0; name
= slash
+1) {
818 if (strncmp(name
, "../", 3) == 0) {
819 /* if at any point we go outside the current directory
820 then stop - it is unsafe */
823 } else if (strncmp(name
, "./", 2) == 0) {
829 if (strcmp(name
, "..") == 0)
837 * Return the date and time as a string
839 char *timestring(time_t t
)
841 static char TimeBuf
[200];
842 struct tm
*tm
= localtime(&t
);
845 strftime(TimeBuf
,sizeof(TimeBuf
)-1,"%Y/%m/%d %T",tm
);
847 strlcpy(TimeBuf
, asctime(tm
), sizeof(TimeBuf
));
850 if (TimeBuf
[strlen(TimeBuf
)-1] == '\n') {
851 TimeBuf
[strlen(TimeBuf
)-1] = 0;
859 * Sleep for a specified number of milliseconds.
861 * Always returns TRUE. (In the future it might return FALSE if
867 struct timeval tval
,t1
,t2
;
869 gettimeofday(&t1
, NULL
);
870 gettimeofday(&t2
, NULL
);
873 tval
.tv_sec
= (t
-tdiff
)/1000;
874 tval
.tv_usec
= 1000*((t
-tdiff
)%1000);
877 select(0,NULL
,NULL
, NULL
, &tval
);
879 gettimeofday(&t2
, NULL
);
880 tdiff
= (t2
.tv_sec
- t1
.tv_sec
)*1000 +
881 (t2
.tv_usec
- t1
.tv_usec
)/1000;
889 * Determine if two file modification times are equivalent (either
890 * exact or in the modification timestamp window established by
893 * @retval 0 if the times should be treated as the same
895 * @retval +1 if the first is later
897 * @retval -1 if the 2nd is later
899 int cmp_modtime(time_t file1
, time_t file2
)
901 extern int modify_window
;
904 if (file2
- file1
<= modify_window
) return 0;
907 if (file1
- file2
<= modify_window
) return 0;
916 This routine is a trick to immediately catch errors when debugging
917 with insure. A xterm with a gdb is popped up when insure catches
918 a error. It is Linux specific.
920 int _Insure_trap_error(int a1
, int a2
, int a3
, int a4
, int a5
, int a6
)
926 asprintf(&cmd
, "/usr/X11R6/bin/xterm -display :0 -T Panic -n Panic -e /bin/sh -c 'cat /tmp/ierrs.*.%d ; gdb /proc/%d/exe %d'",
927 getpid(), getpid(), getpid());
931 h
= dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY
);
932 fn
= dlsym(h
, "_Insure_trap_error");
935 ret
= fn(a1
, a2
, a3
, a4
, a5
, a6
);