Made some more char pointers const.
[rsync/rsync.git] / util.c
... / ...
CommitLineData
1/*
2 * Utility routines used in rsync.
3 *
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-2007 Wayne Davison
8 *
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.
13 *
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.
18 *
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.
21 */
22
23#include "rsync.h"
24#include "ifuncs.h"
25
26extern int verbose;
27extern int dry_run;
28extern int module_id;
29extern int modify_window;
30extern int relative_paths;
31extern int human_readable;
32extern char *module_dir;
33extern unsigned int module_dirlen;
34extern mode_t orig_umask;
35extern char *partial_dir;
36extern struct filter_list_struct server_filter_list;
37
38int sanitize_paths = 0;
39
40char curr_dir[MAXPATHLEN];
41unsigned int curr_dir_len;
42int curr_dir_depth; /* This is only set for a sanitizing daemon. */
43
44/* Set a fd into nonblocking mode. */
45void set_nonblocking(int fd)
46{
47 int val;
48
49 if ((val = fcntl(fd, F_GETFL)) == -1)
50 return;
51 if (!(val & NONBLOCK_FLAG)) {
52 val |= NONBLOCK_FLAG;
53 fcntl(fd, F_SETFL, val);
54 }
55}
56
57/* Set a fd into blocking mode. */
58void set_blocking(int fd)
59{
60 int val;
61
62 if ((val = fcntl(fd, F_GETFL)) == -1)
63 return;
64 if (val & NONBLOCK_FLAG) {
65 val &= ~NONBLOCK_FLAG;
66 fcntl(fd, F_SETFL, val);
67 }
68}
69
70/**
71 * Create a file descriptor pair - like pipe() but use socketpair if
72 * possible (because of blocking issues on pipes).
73 *
74 * Always set non-blocking.
75 */
76int fd_pair(int fd[2])
77{
78 int ret;
79
80#ifdef HAVE_SOCKETPAIR
81 ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fd);
82#else
83 ret = pipe(fd);
84#endif
85
86 if (ret == 0) {
87 set_nonblocking(fd[0]);
88 set_nonblocking(fd[1]);
89 }
90
91 return ret;
92}
93
94void print_child_argv(const char *prefix, char **cmd)
95{
96 rprintf(FCLIENT, "%s ", prefix);
97 for (; *cmd; cmd++) {
98 /* Look for characters that ought to be quoted. This
99 * is not a great quoting algorithm, but it's
100 * sufficient for a log message. */
101 if (strspn(*cmd, "abcdefghijklmnopqrstuvwxyz"
102 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
103 "0123456789"
104 ",.-_=+@/") != strlen(*cmd)) {
105 rprintf(FCLIENT, "\"%s\" ", *cmd);
106 } else {
107 rprintf(FCLIENT, "%s ", *cmd);
108 }
109 }
110 rprintf(FCLIENT, "\n");
111}
112
113NORETURN void out_of_memory(const char *str)
114{
115 rprintf(FERROR, "ERROR: out of memory in %s [%s]\n", str, who_am_i());
116 exit_cleanup(RERR_MALLOC);
117}
118
119NORETURN void overflow_exit(const char *str)
120{
121 rprintf(FERROR, "ERROR: buffer overflow in %s [%s]\n", str, who_am_i());
122 exit_cleanup(RERR_MALLOC);
123}
124
125int set_modtime(const char *fname, time_t modtime, mode_t mode)
126{
127#if !defined HAVE_LUTIMES || !defined HAVE_UTIMES
128 if (S_ISLNK(mode))
129 return 1;
130#endif
131
132 if (verbose > 2) {
133 rprintf(FINFO, "set modtime of %s to (%ld) %s",
134 fname, (long)modtime,
135 asctime(localtime(&modtime)));
136 }
137
138 if (dry_run)
139 return 0;
140
141 {
142#ifdef HAVE_UTIMES
143 struct timeval t[2];
144 t[0].tv_sec = time(NULL);
145 t[0].tv_usec = 0;
146 t[1].tv_sec = modtime;
147 t[1].tv_usec = 0;
148# ifdef HAVE_LUTIMES
149 if (S_ISLNK(mode)) {
150 lutimes(fname, t);
151 return 0; /* ignore errors */
152 }
153# endif
154 return utimes(fname, t);
155#elif defined HAVE_UTIMBUF
156 struct utimbuf tbuf;
157 tbuf.actime = time(NULL);
158 tbuf.modtime = modtime;
159 return utime(fname,&tbuf);
160#elif defined HAVE_UTIME
161 time_t t[2];
162 t[0] = time(NULL);
163 t[1] = modtime;
164 return utime(fname,t);
165#else
166#error No file-time-modification routine found!
167#endif
168 }
169}
170
171/* This creates a new directory with default permissions. Since there
172 * might be some directory-default permissions affecting this, we can't
173 * force the permissions directly using the original umask and mkdir(). */
174int mkdir_defmode(char *fname)
175{
176 int ret;
177
178 umask(orig_umask);
179 ret = do_mkdir(fname, ACCESSPERMS);
180 umask(0);
181
182 return ret;
183}
184
185/* Create any necessary directories in fname. Any missing directories are
186 * created with default permissions. */
187int create_directory_path(char *fname)
188{
189 char *p;
190 int ret = 0;
191
192 while (*fname == '/')
193 fname++;
194 while (strncmp(fname, "./", 2) == 0)
195 fname += 2;
196
197 umask(orig_umask);
198 p = fname;
199 while ((p = strchr(p,'/')) != NULL) {
200 *p = '\0';
201 if (do_mkdir(fname, ACCESSPERMS) < 0 && errno != EEXIST)
202 ret = -1;
203 *p++ = '/';
204 }
205 umask(0);
206
207 return ret;
208}
209
210/**
211 * Write @p len bytes at @p ptr to descriptor @p desc, retrying if
212 * interrupted.
213 *
214 * @retval len upon success
215 *
216 * @retval <0 write's (negative) error code
217 *
218 * Derived from GNU C's cccp.c.
219 */
220int full_write(int desc, const char *ptr, size_t len)
221{
222 int total_written;
223
224 total_written = 0;
225 while (len > 0) {
226 int written = write(desc, ptr, len);
227 if (written < 0) {
228 if (errno == EINTR)
229 continue;
230 return written;
231 }
232 total_written += written;
233 ptr += written;
234 len -= written;
235 }
236 return total_written;
237}
238
239/**
240 * Read @p len bytes at @p ptr from descriptor @p desc, retrying if
241 * interrupted.
242 *
243 * @retval >0 the actual number of bytes read
244 *
245 * @retval 0 for EOF
246 *
247 * @retval <0 for an error.
248 *
249 * Derived from GNU C's cccp.c. */
250static int safe_read(int desc, char *ptr, size_t len)
251{
252 int n_chars;
253
254 if (len == 0)
255 return len;
256
257 do {
258 n_chars = read(desc, ptr, len);
259 } while (n_chars < 0 && errno == EINTR);
260
261 return n_chars;
262}
263
264/** Copy a file.
265 *
266 * This is used in conjunction with the --temp-dir, --backup, and
267 * --copy-dest options. */
268int copy_file(const char *source, const char *dest, mode_t mode, int create_bak_dir)
269{
270 int ifd;
271 int ofd;
272 char buf[1024 * 8];
273 int len; /* Number of bytes read into `buf'. */
274
275 if ((ifd = do_open(source, O_RDONLY, 0)) < 0) {
276 rsyserr(FERROR, errno, "open %s", full_fname(source));
277 return -1;
278 }
279
280 if (robust_unlink(dest) && errno != ENOENT) {
281 rsyserr(FERROR, errno, "unlink %s", full_fname(dest));
282 return -1;
283 }
284
285 if ((ofd = do_open(dest, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode)) < 0
286 && (!create_bak_dir || errno != ENOENT || make_bak_dir(dest) < 0
287 || (ofd = do_open(dest, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode)) < 0)) {
288 rsyserr(FERROR, errno, "open %s", full_fname(dest));
289 close(ifd);
290 return -1;
291 }
292
293 while ((len = safe_read(ifd, buf, sizeof buf)) > 0) {
294 if (full_write(ofd, buf, len) < 0) {
295 rsyserr(FERROR, errno, "write %s", full_fname(dest));
296 close(ifd);
297 close(ofd);
298 return -1;
299 }
300 }
301
302 if (len < 0) {
303 rsyserr(FERROR, errno, "read %s", full_fname(source));
304 close(ifd);
305 close(ofd);
306 return -1;
307 }
308
309 if (close(ifd) < 0) {
310 rsyserr(FINFO, errno, "close failed on %s",
311 full_fname(source));
312 }
313
314 if (close(ofd) < 0) {
315 rsyserr(FERROR, errno, "close failed on %s",
316 full_fname(dest));
317 return -1;
318 }
319
320 return 0;
321}
322
323/* MAX_RENAMES should be 10**MAX_RENAMES_DIGITS */
324#define MAX_RENAMES_DIGITS 3
325#define MAX_RENAMES 1000
326
327/**
328 * Robust unlink: some OS'es (HPUX) refuse to unlink busy files, so
329 * rename to <path>/.rsyncNNN instead.
330 *
331 * Note that successive rsync runs will shuffle the filenames around a
332 * bit as long as the file is still busy; this is because this function
333 * does not know if the unlink call is due to a new file coming in, or
334 * --delete trying to remove old .rsyncNNN files, hence it renames it
335 * each time.
336 **/
337int robust_unlink(const char *fname)
338{
339#ifndef ETXTBSY
340 return do_unlink(fname);
341#else
342 static int counter = 1;
343 int rc, pos, start;
344 char path[MAXPATHLEN];
345
346 rc = do_unlink(fname);
347 if (rc == 0 || errno != ETXTBSY)
348 return rc;
349
350 if ((pos = strlcpy(path, fname, MAXPATHLEN)) >= MAXPATHLEN)
351 pos = MAXPATHLEN - 1;
352
353 while (pos > 0 && path[pos-1] != '/')
354 pos--;
355 pos += strlcpy(path+pos, ".rsync", MAXPATHLEN-pos);
356
357 if (pos > (MAXPATHLEN-MAX_RENAMES_DIGITS-1)) {
358 errno = ETXTBSY;
359 return -1;
360 }
361
362 /* start where the last one left off to reduce chance of clashes */
363 start = counter;
364 do {
365 snprintf(&path[pos], MAX_RENAMES_DIGITS+1, "%03d", counter);
366 if (++counter >= MAX_RENAMES)
367 counter = 1;
368 } while ((rc = access(path, 0)) == 0 && counter != start);
369
370 if (verbose > 0) {
371 rprintf(FINFO,"renaming %s to %s because of text busy\n",
372 fname, path);
373 }
374
375 /* maybe we should return rename()'s exit status? Nah. */
376 if (do_rename(fname, path) != 0) {
377 errno = ETXTBSY;
378 return -1;
379 }
380 return 0;
381#endif
382}
383
384/* Returns 0 on successful rename, 1 if we successfully copied the file
385 * across filesystems, -2 if copy_file() failed, and -1 on other errors.
386 * If partialptr is not NULL and we need to do a copy, copy the file into
387 * the active partial-dir instead of over the destination file. */
388int robust_rename(const char *from, const char *to, const char *partialptr,
389 int mode)
390{
391 int tries = 4;
392
393 while (tries--) {
394 if (do_rename(from, to) == 0)
395 return 0;
396
397 switch (errno) {
398#ifdef ETXTBSY
399 case ETXTBSY:
400 if (robust_unlink(to) != 0)
401 return -1;
402 break;
403#endif
404 case EXDEV:
405 if (partialptr) {
406 if (!handle_partial_dir(partialptr,PDIR_CREATE))
407 return -1;
408 to = partialptr;
409 }
410 if (copy_file(from, to, mode, 0) != 0)
411 return -2;
412 do_unlink(from);
413 return 1;
414 default:
415 return -1;
416 }
417 }
418 return -1;
419}
420
421static pid_t all_pids[10];
422static int num_pids;
423
424/** Fork and record the pid of the child. **/
425pid_t do_fork(void)
426{
427 pid_t newpid = fork();
428
429 if (newpid != 0 && newpid != -1) {
430 all_pids[num_pids++] = newpid;
431 }
432 return newpid;
433}
434
435/**
436 * Kill all children.
437 *
438 * @todo It would be kind of nice to make sure that they are actually
439 * all our children before we kill them, because their pids may have
440 * been recycled by some other process. Perhaps when we wait for a
441 * child, we should remove it from this array. Alternatively we could
442 * perhaps use process groups, but I think that would not work on
443 * ancient Unix versions that don't support them.
444 **/
445void kill_all(int sig)
446{
447 int i;
448
449 for (i = 0; i < num_pids; i++) {
450 /* Let's just be a little careful where we
451 * point that gun, hey? See kill(2) for the
452 * magic caused by negative values. */
453 pid_t p = all_pids[i];
454
455 if (p == getpid())
456 continue;
457 if (p <= 0)
458 continue;
459
460 kill(p, sig);
461 }
462}
463
464/** Turn a user name into a uid */
465int name_to_uid(const char *name, uid_t *uid)
466{
467 struct passwd *pass;
468 if (!name || !*name)
469 return 0;
470 pass = getpwnam(name);
471 if (pass) {
472 *uid = pass->pw_uid;
473 return 1;
474 }
475 return 0;
476}
477
478/** Turn a group name into a gid */
479int name_to_gid(const char *name, gid_t *gid)
480{
481 struct group *grp;
482 if (!name || !*name)
483 return 0;
484 grp = getgrnam(name);
485 if (grp) {
486 *gid = grp->gr_gid;
487 return 1;
488 }
489 return 0;
490}
491
492/** Lock a byte range in a open file */
493int lock_range(int fd, int offset, int len)
494{
495 struct flock lock;
496
497 lock.l_type = F_WRLCK;
498 lock.l_whence = SEEK_SET;
499 lock.l_start = offset;
500 lock.l_len = len;
501 lock.l_pid = 0;
502
503 return fcntl(fd,F_SETLK,&lock) == 0;
504}
505
506static int filter_server_path(char *arg)
507{
508 char *s;
509
510 if (server_filter_list.head) {
511 for (s = arg; (s = strchr(s, '/')) != NULL; ) {
512 *s = '\0';
513 if (check_filter(&server_filter_list, arg, 1) < 0) {
514 /* We must leave arg truncated! */
515 return 1;
516 }
517 *s++ = '/';
518 }
519 }
520 return 0;
521}
522
523void glob_expand(char *s, char ***argv_ptr, int *argc_ptr, int *maxargs_ptr)
524{
525 char **argv = *argv_ptr;
526 int argc = *argc_ptr;
527 int maxargs = *maxargs_ptr;
528#if !defined HAVE_GLOB || !defined HAVE_GLOB_H
529 if (argc == maxargs) {
530 maxargs += MAX_ARGS;
531 if (!(argv = realloc_array(argv, char *, maxargs)))
532 out_of_memory("glob_expand");
533 *argv_ptr = argv;
534 *maxargs_ptr = maxargs;
535 }
536 if (!*s)
537 s = ".";
538 s = argv[argc++] = strdup(s);
539 filter_server_path(s);
540#else
541 glob_t globbuf;
542
543 if (maxargs <= argc)
544 return;
545 if (!*s)
546 s = ".";
547
548 if (sanitize_paths)
549 s = sanitize_path(NULL, s, "", 0, NULL);
550 else
551 s = strdup(s);
552 if (!s)
553 out_of_memory("glob_expand");
554
555 memset(&globbuf, 0, sizeof globbuf);
556 if (!filter_server_path(s))
557 glob(s, 0, NULL, &globbuf);
558 if (MAX((int)globbuf.gl_pathc, 1) > maxargs - argc) {
559 maxargs += globbuf.gl_pathc + MAX_ARGS;
560 if (!(argv = realloc_array(argv, char *, maxargs)))
561 out_of_memory("glob_expand");
562 *argv_ptr = argv;
563 *maxargs_ptr = maxargs;
564 }
565 if (globbuf.gl_pathc == 0)
566 argv[argc++] = s;
567 else {
568 int i;
569 free(s);
570 for (i = 0; i < (int)globbuf.gl_pathc; i++) {
571 if (!(argv[argc++] = strdup(globbuf.gl_pathv[i])))
572 out_of_memory("glob_expand");
573 }
574 }
575 globfree(&globbuf);
576#endif
577 *argc_ptr = argc;
578}
579
580/* This routine is only used in daemon mode. */
581void glob_expand_module(char *base1, char *arg, char ***argv_ptr, int *argc_ptr, int *maxargs_ptr)
582{
583 char *p, *s;
584 char *base = base1;
585 int base_len = strlen(base);
586
587 if (!arg || !*arg)
588 return;
589
590 if (strncmp(arg, base, base_len) == 0)
591 arg += base_len;
592
593 if (!(arg = strdup(arg)))
594 out_of_memory("glob_expand_module");
595
596 if (asprintf(&base," %s/", base1) <= 0)
597 out_of_memory("glob_expand_module");
598 base_len++;
599
600 for (s = arg; *s; s = p + base_len) {
601 if ((p = strstr(s, base)) != NULL)
602 *p = '\0'; /* split it at this point */
603 glob_expand(s, argv_ptr, argc_ptr, maxargs_ptr);
604 if (!p)
605 break;
606 }
607
608 free(arg);
609 free(base);
610}
611
612/**
613 * Convert a string to lower case
614 **/
615void strlower(char *s)
616{
617 while (*s) {
618 if (isUpper(s))
619 *s = toLower(s);
620 s++;
621 }
622}
623
624/* Join strings p1 & p2 into "dest" with a guaranteed '/' between them. (If
625 * p1 ends with a '/', no extra '/' is inserted.) Returns the length of both
626 * strings + 1 (if '/' was inserted), regardless of whether the null-terminated
627 * string fits into destsize. */
628size_t pathjoin(char *dest, size_t destsize, const char *p1, const char *p2)
629{
630 size_t len = strlcpy(dest, p1, destsize);
631 if (len < destsize - 1) {
632 if (!len || dest[len-1] != '/')
633 dest[len++] = '/';
634 if (len < destsize - 1)
635 len += strlcpy(dest + len, p2, destsize - len);
636 else {
637 dest[len] = '\0';
638 len += strlen(p2);
639 }
640 }
641 else
642 len += strlen(p2) + 1; /* Assume we'd insert a '/'. */
643 return len;
644}
645
646/* Join any number of strings together, putting them in "dest". The return
647 * value is the length of all the strings, regardless of whether the null-
648 * terminated whole fits in destsize. Your list of string pointers must end
649 * with a NULL to indicate the end of the list. */
650size_t stringjoin(char *dest, size_t destsize, ...)
651{
652 va_list ap;
653 size_t len, ret = 0;
654 const char *src;
655
656 va_start(ap, destsize);
657 while (1) {
658 if (!(src = va_arg(ap, const char *)))
659 break;
660 len = strlen(src);
661 ret += len;
662 if (destsize > 1) {
663 if (len >= destsize)
664 len = destsize - 1;
665 memcpy(dest, src, len);
666 destsize -= len;
667 dest += len;
668 }
669 }
670 *dest = '\0';
671 va_end(ap);
672
673 return ret;
674}
675
676int count_dir_elements(const char *p)
677{
678 int cnt = 0, new_component = 1;
679 while (*p) {
680 if (*p++ == '/')
681 new_component = (*p != '.' || (p[1] != '/' && p[1] != '\0'));
682 else if (new_component) {
683 new_component = 0;
684 cnt++;
685 }
686 }
687 return cnt;
688}
689
690/* Turns multiple adjacent slashes into a single slash, gets rid of "./"
691 * elements (but not a trailing dot dir), removes a trailing slash, and
692 * optionally collapses ".." elements (except for those at the start of the
693 * string). If the resulting name would be empty, change it into a ".". */
694unsigned int clean_fname(char *name, BOOL collapse_dot_dot)
695{
696 char *limit = name - 1, *t = name, *f = name;
697 int anchored;
698
699 if (!name)
700 return 0;
701
702 if ((anchored = *f == '/') != 0)
703 *t++ = *f++;
704 while (*f) {
705 /* discard extra slashes */
706 if (*f == '/') {
707 f++;
708 continue;
709 }
710 if (*f == '.') {
711 /* discard "." dirs (but NOT a trailing '.'!) */
712 if (f[1] == '/') {
713 f += 2;
714 continue;
715 }
716 /* collapse ".." dirs */
717 if (collapse_dot_dot
718 && f[1] == '.' && (f[2] == '/' || !f[2])) {
719 char *s = t - 1;
720 if (s == name && anchored) {
721 f += 2;
722 continue;
723 }
724 while (s > limit && *--s != '/') {}
725 if (s != t - 1 && (s < name || *s == '/')) {
726 t = s + 1;
727 f += 2;
728 continue;
729 }
730 limit = t + 2;
731 }
732 }
733 while (*f && (*t++ = *f++) != '/') {}
734 }
735
736 if (t > name+anchored && t[-1] == '/')
737 t--;
738 if (t == name)
739 *t++ = '.';
740 *t = '\0';
741
742 return t - name;
743}
744
745/* Make path appear as if a chroot had occurred. This handles a leading
746 * "/" (either removing it or expanding it) and any leading or embedded
747 * ".." components that attempt to escape past the module's top dir.
748 *
749 * If dest is NULL, a buffer is allocated to hold the result. It is legal
750 * to call with the dest and the path (p) pointing to the same buffer, but
751 * rootdir will be ignored to avoid expansion of the string.
752 *
753 * The rootdir string contains a value to use in place of a leading slash.
754 * Specify NULL to get the default of "module_dir".
755 *
756 * The depth var is a count of how many '..'s to allow at the start of the
757 * path. If symlink is set, combine its value with the "p" value to get
758 * the target path, and **return NULL if any '..'s try to escape**.
759 *
760 * We also clean the path in a manner similar to clean_fname() but with a
761 * few differences:
762 *
763 * Turns multiple adjacent slashes into a single slash, gets rid of "." dir
764 * elements (INCLUDING a trailing dot dir), PRESERVES a trailing slash, and
765 * ALWAYS collapses ".." elements (except for those at the start of the
766 * string up to "depth" deep). If the resulting name would be empty,
767 * change it into a ".". */
768char *sanitize_path(char *dest, const char *p, const char *rootdir, int depth,
769 const char *symlink)
770{
771 char *start, *sanp, *save_dest = dest;
772 int rlen = 0, leave_one_dotdir = relative_paths;
773
774 if (symlink && *symlink == '/') {
775 p = symlink;
776 symlink = "";
777 }
778
779 if (dest != p) {
780 int plen = strlen(p);
781 if (*p == '/') {
782 if (!rootdir)
783 rootdir = module_dir;
784 rlen = strlen(rootdir);
785 depth = 0;
786 p++;
787 }
788 if (dest) {
789 if (rlen + plen + 1 >= MAXPATHLEN)
790 return NULL;
791 } else if (!(dest = new_array(char, rlen + plen + 1)))
792 out_of_memory("sanitize_path");
793 if (rlen) {
794 memcpy(dest, rootdir, rlen);
795 if (rlen > 1)
796 dest[rlen++] = '/';
797 }
798 }
799
800 start = sanp = dest + rlen;
801 while (1) {
802 if (*p == '\0') {
803 if (!symlink || !*symlink)
804 break;
805 while (sanp != start && sanp[-1] != '/') {
806 /* strip last element */
807 sanp--;
808 }
809 /* Append a relative symlink */
810 p = symlink;
811 symlink = "";
812 }
813 /* discard leading or extra slashes */
814 if (*p == '/') {
815 p++;
816 continue;
817 }
818 /* this loop iterates once per filename component in p.
819 * both p (and sanp if the original had a slash) should
820 * always be left pointing after a slash
821 */
822 if (*p == '.' && (p[1] == '/' || p[1] == '\0')) {
823 if (leave_one_dotdir && p[1])
824 leave_one_dotdir = 0;
825 else {
826 /* skip "." component */
827 p++;
828 continue;
829 }
830 }
831 if (*p == '.' && p[1] == '.' && (p[2] == '/' || p[2] == '\0')) {
832 /* ".." component followed by slash or end */
833 if (depth <= 0 || sanp != start) {
834 if (symlink && sanp == start) {
835 if (!save_dest)
836 free(dest);
837 return NULL;
838 }
839 p += 2;
840 if (sanp != start) {
841 /* back up sanp one level */
842 --sanp; /* now pointing at slash */
843 while (sanp > start && sanp[-1] != '/') {
844 /* skip back up to slash */
845 sanp--;
846 }
847 }
848 continue;
849 }
850 /* allow depth levels of .. at the beginning */
851 depth--;
852 /* move the virtual beginning to leave the .. alone */
853 start = sanp + 3;
854 }
855 /* copy one component through next slash */
856 while (*p && (*sanp++ = *p++) != '/') {}
857 }
858 if (sanp == dest) {
859 /* ended up with nothing, so put in "." component */
860 *sanp++ = '.';
861 }
862 *sanp = '\0';
863
864 return dest;
865}
866
867/* Like chdir(), but it keeps track of the current directory (in the
868 * global "curr_dir"), and ensures that the path size doesn't overflow.
869 * Also cleans the path using the clean_fname() function. */
870int push_dir(const char *dir, int set_path_only)
871{
872 static int initialised;
873 unsigned int len;
874
875 if (!initialised) {
876 initialised = 1;
877 getcwd(curr_dir, sizeof curr_dir - 1);
878 curr_dir_len = strlen(curr_dir);
879 }
880
881 if (!dir) /* this call was probably just to initialize */
882 return 0;
883
884 len = strlen(dir);
885 if (len == 1 && *dir == '.')
886 return 1;
887
888 if ((*dir == '/' ? len : curr_dir_len + 1 + len) >= sizeof curr_dir) {
889 errno = ENAMETOOLONG;
890 return 0;
891 }
892
893 if (!set_path_only && chdir(dir))
894 return 0;
895
896 if (*dir == '/') {
897 memcpy(curr_dir, dir, len + 1);
898 curr_dir_len = len;
899 } else {
900 curr_dir[curr_dir_len++] = '/';
901 memcpy(curr_dir + curr_dir_len, dir, len + 1);
902 curr_dir_len += len;
903 }
904
905 curr_dir_len = clean_fname(curr_dir, 1);
906 if (sanitize_paths) {
907 if (module_dirlen > curr_dir_len)
908 module_dirlen = curr_dir_len;
909 curr_dir_depth = count_dir_elements(curr_dir + module_dirlen);
910 }
911
912 return 1;
913}
914
915/**
916 * Reverse a push_dir() call. You must pass in an absolute path
917 * that was copied from a prior value of "curr_dir".
918 **/
919int pop_dir(const char *dir)
920{
921 if (chdir(dir))
922 return 0;
923
924 curr_dir_len = strlcpy(curr_dir, dir, sizeof curr_dir);
925 if (curr_dir_len >= sizeof curr_dir)
926 curr_dir_len = sizeof curr_dir - 1;
927 if (sanitize_paths)
928 curr_dir_depth = count_dir_elements(curr_dir + module_dirlen);
929
930 return 1;
931}
932
933/**
934 * Return a quoted string with the full pathname of the indicated filename.
935 * The string " (in MODNAME)" may also be appended. The returned pointer
936 * remains valid until the next time full_fname() is called.
937 **/
938char *full_fname(const char *fn)
939{
940 static char *result = NULL;
941 char *m1, *m2, *m3;
942 char *p1, *p2;
943
944 if (result)
945 free(result);
946
947 if (*fn == '/')
948 p1 = p2 = "";
949 else {
950 p1 = curr_dir + module_dirlen;
951 for (p2 = p1; *p2 == '/'; p2++) {}
952 if (*p2)
953 p2 = "/";
954 }
955 if (module_id >= 0) {
956 m1 = " (in ";
957 m2 = lp_name(module_id);
958 m3 = ")";
959 } else
960 m1 = m2 = m3 = "";
961
962 if (asprintf(&result, "\"%s%s%s\"%s%s%s", p1, p2, fn, m1, m2, m3) <= 0)
963 out_of_memory("full_fname");
964
965 return result;
966}
967
968static char partial_fname[MAXPATHLEN];
969
970char *partial_dir_fname(const char *fname)
971{
972 char *t = partial_fname;
973 int sz = sizeof partial_fname;
974 const char *fn;
975
976 if ((fn = strrchr(fname, '/')) != NULL) {
977 fn++;
978 if (*partial_dir != '/') {
979 int len = fn - fname;
980 strncpy(t, fname, len); /* safe */
981 t += len;
982 sz -= len;
983 }
984 } else
985 fn = fname;
986 if ((int)pathjoin(t, sz, partial_dir, fn) >= sz)
987 return NULL;
988 if (server_filter_list.head) {
989 t = strrchr(partial_fname, '/');
990 *t = '\0';
991 if (check_filter(&server_filter_list, partial_fname, 1) < 0)
992 return NULL;
993 *t = '/';
994 if (check_filter(&server_filter_list, partial_fname, 0) < 0)
995 return NULL;
996 }
997
998 return partial_fname;
999}
1000
1001/* If no --partial-dir option was specified, we don't need to do anything
1002 * (the partial-dir is essentially '.'), so just return success. */
1003int handle_partial_dir(const char *fname, int create)
1004{
1005 char *fn, *dir;
1006
1007 if (fname != partial_fname)
1008 return 1;
1009 if (!create && *partial_dir == '/')
1010 return 1;
1011 if (!(fn = strrchr(partial_fname, '/')))
1012 return 1;
1013
1014 *fn = '\0';
1015 dir = partial_fname;
1016 if (create) {
1017 STRUCT_STAT st;
1018 int statret = do_lstat(dir, &st);
1019 if (statret == 0 && !S_ISDIR(st.st_mode)) {
1020 if (do_unlink(dir) < 0)
1021 return 0;
1022 statret = -1;
1023 }
1024 if (statret < 0 && do_mkdir(dir, 0700) < 0)
1025 return 0;
1026 } else
1027 do_rmdir(dir);
1028 *fn = '/';
1029
1030 return 1;
1031}
1032
1033/**
1034 * Determine if a symlink points outside the current directory tree.
1035 * This is considered "unsafe" because e.g. when mirroring somebody
1036 * else's machine it might allow them to establish a symlink to
1037 * /etc/passwd, and then read it through a web server.
1038 *
1039 * Null symlinks and absolute symlinks are always unsafe.
1040 *
1041 * Basically here we are concerned with symlinks whose target contains
1042 * "..", because this might cause us to walk back up out of the
1043 * transferred directory. We are not allowed to go back up and
1044 * reenter.
1045 *
1046 * @param dest Target of the symlink in question.
1047 *
1048 * @param src Top source directory currently applicable. Basically this
1049 * is the first parameter to rsync in a simple invocation, but it's
1050 * modified by flist.c in slightly complex ways.
1051 *
1052 * @retval True if unsafe
1053 * @retval False is unsafe
1054 *
1055 * @sa t_unsafe.c
1056 **/
1057int unsafe_symlink(const char *dest, const char *src)
1058{
1059 const char *name, *slash;
1060 int depth = 0;
1061
1062 /* all absolute and null symlinks are unsafe */
1063 if (!dest || !*dest || *dest == '/')
1064 return 1;
1065
1066 /* find out what our safety margin is */
1067 for (name = src; (slash = strchr(name, '/')) != 0; name = slash+1) {
1068 if (strncmp(name, "../", 3) == 0) {
1069 depth = 0;
1070 } else if (strncmp(name, "./", 2) == 0) {
1071 /* nothing */
1072 } else {
1073 depth++;
1074 }
1075 }
1076 if (strcmp(name, "..") == 0)
1077 depth = 0;
1078
1079 for (name = dest; (slash = strchr(name, '/')) != 0; name = slash+1) {
1080 if (strncmp(name, "../", 3) == 0) {
1081 /* if at any point we go outside the current directory
1082 then stop - it is unsafe */
1083 if (--depth < 0)
1084 return 1;
1085 } else if (strncmp(name, "./", 2) == 0) {
1086 /* nothing */
1087 } else {
1088 depth++;
1089 }
1090 }
1091 if (strcmp(name, "..") == 0)
1092 depth--;
1093
1094 return (depth < 0);
1095}
1096
1097/* Return the int64 number as a string. If the --human-readable option was
1098 * specified, we may output the number in K, M, or G units. We can return
1099 * up to 4 buffers at a time. */
1100char *human_num(int64 num)
1101{
1102 static char bufs[4][128]; /* more than enough room */
1103 static unsigned int n;
1104 char *s;
1105
1106 n = (n + 1) % (sizeof bufs / sizeof bufs[0]);
1107
1108 if (human_readable) {
1109 char units = '\0';
1110 int mult = human_readable == 1 ? 1000 : 1024;
1111 double dnum = 0;
1112 if (num > mult*mult*mult) {
1113 dnum = (double)num / (mult*mult*mult);
1114 units = 'G';
1115 } else if (num > mult*mult) {
1116 dnum = (double)num / (mult*mult);
1117 units = 'M';
1118 } else if (num > mult) {
1119 dnum = (double)num / mult;
1120 units = 'K';
1121 }
1122 if (units) {
1123 snprintf(bufs[n], sizeof bufs[0], "%.2f%c", dnum, units);
1124 return bufs[n];
1125 }
1126 }
1127
1128 s = bufs[n] + sizeof bufs[0] - 1;
1129 *s = '\0';
1130
1131 if (!num)
1132 *--s = '0';
1133 while (num) {
1134 *--s = (char)(num % 10) + '0';
1135 num /= 10;
1136 }
1137 return s;
1138}
1139
1140/* Return the double number as a string. If the --human-readable option was
1141 * specified, we may output the number in K, M, or G units. We use a buffer
1142 * from human_num() to return our result. */
1143char *human_dnum(double dnum, int decimal_digits)
1144{
1145 char *buf = human_num(dnum);
1146 int len = strlen(buf);
1147 if (isDigit(buf + len - 1)) {
1148 /* There's extra room in buf prior to the start of the num. */
1149 buf -= decimal_digits + 1;
1150 snprintf(buf, len + decimal_digits + 2, "%.*f", decimal_digits, dnum);
1151 }
1152 return buf;
1153}
1154
1155/* Return the date and time as a string. Some callers tweak returned buf. */
1156char *timestring(time_t t)
1157{
1158 static char TimeBuf[200];
1159 struct tm *tm = localtime(&t);
1160 char *p;
1161
1162#ifdef HAVE_STRFTIME
1163 strftime(TimeBuf, sizeof TimeBuf - 1, "%Y/%m/%d %H:%M:%S", tm);
1164#else
1165 strlcpy(TimeBuf, asctime(tm), sizeof TimeBuf);
1166#endif
1167
1168 if ((p = strchr(TimeBuf, '\n')) != NULL)
1169 *p = '\0';
1170
1171 return TimeBuf;
1172}
1173
1174/**
1175 * Sleep for a specified number of milliseconds.
1176 *
1177 * Always returns TRUE. (In the future it might return FALSE if
1178 * interrupted.)
1179 **/
1180int msleep(int t)
1181{
1182 int tdiff = 0;
1183 struct timeval tval, t1, t2;
1184
1185 gettimeofday(&t1, NULL);
1186
1187 while (tdiff < t) {
1188 tval.tv_sec = (t-tdiff)/1000;
1189 tval.tv_usec = 1000*((t-tdiff)%1000);
1190
1191 errno = 0;
1192 select(0,NULL,NULL, NULL, &tval);
1193
1194 gettimeofday(&t2, NULL);
1195 tdiff = (t2.tv_sec - t1.tv_sec)*1000 +
1196 (t2.tv_usec - t1.tv_usec)/1000;
1197 }
1198
1199 return True;
1200}
1201
1202/* Determine if two time_t values are equivalent (either exact, or in
1203 * the modification timestamp window established by --modify-window).
1204 *
1205 * @retval 0 if the times should be treated as the same
1206 *
1207 * @retval +1 if the first is later
1208 *
1209 * @retval -1 if the 2nd is later
1210 **/
1211int cmp_time(time_t file1, time_t file2)
1212{
1213 if (file2 > file1) {
1214 if (file2 - file1 <= modify_window)
1215 return 0;
1216 return -1;
1217 }
1218 if (file1 - file2 <= modify_window)
1219 return 0;
1220 return 1;
1221}
1222
1223
1224#ifdef __INSURE__XX
1225#include <dlfcn.h>
1226
1227/**
1228 This routine is a trick to immediately catch errors when debugging
1229 with insure. A xterm with a gdb is popped up when insure catches
1230 a error. It is Linux specific.
1231**/
1232int _Insure_trap_error(int a1, int a2, int a3, int a4, int a5, int a6)
1233{
1234 static int (*fn)();
1235 int ret;
1236 char *cmd;
1237
1238 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'",
1239 getpid(), getpid(), getpid());
1240
1241 if (!fn) {
1242 static void *h;
1243 h = dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY);
1244 fn = dlsym(h, "_Insure_trap_error");
1245 }
1246
1247 ret = fn(a1, a2, a3, a4, a5, a6);
1248
1249 system(cmd);
1250
1251 free(cmd);
1252
1253 return ret;
1254}
1255#endif
1256
1257#define MALLOC_MAX 0x40000000
1258
1259void *_new_array(unsigned long num, unsigned int size, int use_calloc)
1260{
1261 if (num >= MALLOC_MAX/size)
1262 return NULL;
1263 return use_calloc ? calloc(num, size) : malloc(num * size);
1264}
1265
1266void *_realloc_array(void *ptr, unsigned int size, unsigned long num)
1267{
1268 if (num >= MALLOC_MAX/size)
1269 return NULL;
1270 if (!ptr)
1271 return malloc(size * num);
1272 return realloc(ptr, size * num);
1273}
1274
1275/* Take a filename and filename length and return the most significant
1276 * filename suffix we can find. This ignores suffixes such as "~",
1277 * ".bak", ".orig", ".~1~", etc. */
1278const char *find_filename_suffix(const char *fn, int fn_len, int *len_ptr)
1279{
1280 const char *suf, *s;
1281 BOOL had_tilde;
1282 int s_len;
1283
1284 /* One or more dots at the start aren't a suffix. */
1285 while (fn_len && *fn == '.') fn++, fn_len--;
1286
1287 /* Ignore the ~ in a "foo~" filename. */
1288 if (fn_len > 1 && fn[fn_len-1] == '~')
1289 fn_len--, had_tilde = True;
1290 else
1291 had_tilde = False;
1292
1293 /* Assume we don't find an suffix. */
1294 suf = "";
1295 *len_ptr = 0;
1296
1297 /* Find the last significant suffix. */
1298 for (s = fn + fn_len; fn_len > 1; ) {
1299 while (*--s != '.' && s != fn) {}
1300 if (s == fn)
1301 break;
1302 s_len = fn_len - (s - fn);
1303 fn_len = s - fn;
1304 if (s_len == 4) {
1305 if (strcmp(s+1, "bak") == 0
1306 || strcmp(s+1, "old") == 0)
1307 continue;
1308 } else if (s_len == 5) {
1309 if (strcmp(s+1, "orig") == 0)
1310 continue;
1311 } else if (s_len > 2 && had_tilde
1312 && s[1] == '~' && isDigit(s + 2))
1313 continue;
1314 *len_ptr = s_len;
1315 suf = s;
1316 if (s_len == 1)
1317 break;
1318 /* Determine if the suffix is all digits. */
1319 for (s++, s_len--; s_len > 0; s++, s_len--) {
1320 if (!isDigit(s))
1321 return suf;
1322 }
1323 /* An all-digit suffix may not be that signficant. */
1324 s = suf;
1325 }
1326
1327 return suf;
1328}
1329
1330/* This is an implementation of the Levenshtein distance algorithm. It
1331 * was implemented to avoid needing a two-dimensional matrix (to save
1332 * memory). It was also tweaked to try to factor in the ASCII distance
1333 * between changed characters as a minor distance quantity. The normal
1334 * Levenshtein units of distance (each signifying a single change between
1335 * the two strings) are defined as a "UNIT". */
1336
1337#define UNIT (1 << 16)
1338
1339uint32 fuzzy_distance(const char *s1, int len1, const char *s2, int len2)
1340{
1341 uint32 a[MAXPATHLEN], diag, above, left, diag_inc, above_inc, left_inc;
1342 int32 cost;
1343 int i1, i2;
1344
1345 if (!len1 || !len2) {
1346 if (!len1) {
1347 s1 = s2;
1348 len1 = len2;
1349 }
1350 for (i1 = 0, cost = 0; i1 < len1; i1++)
1351 cost += s1[i1];
1352 return (int32)len1 * UNIT + cost;
1353 }
1354
1355 for (i2 = 0; i2 < len2; i2++)
1356 a[i2] = (i2+1) * UNIT;
1357
1358 for (i1 = 0; i1 < len1; i1++) {
1359 diag = i1 * UNIT;
1360 above = (i1+1) * UNIT;
1361 for (i2 = 0; i2 < len2; i2++) {
1362 left = a[i2];
1363 if ((cost = *((uchar*)s1+i1) - *((uchar*)s2+i2)) != 0) {
1364 if (cost < 0)
1365 cost = UNIT - cost;
1366 else
1367 cost = UNIT + cost;
1368 }
1369 diag_inc = diag + cost;
1370 left_inc = left + UNIT + *((uchar*)s1+i1);
1371 above_inc = above + UNIT + *((uchar*)s2+i2);
1372 a[i2] = above = left < above
1373 ? (left_inc < diag_inc ? left_inc : diag_inc)
1374 : (above_inc < diag_inc ? above_inc : diag_inc);
1375 diag = left;
1376 }
1377 }
1378
1379 return a[len2-1];
1380}
1381
1382#define BB_SLOT_SIZE (16*1024) /* Desired size in bytes */
1383#define BB_PER_SLOT_BITS (BB_SLOT_SIZE * 8) /* Number of bits per slot */
1384#define BB_PER_SLOT_INTS (BB_SLOT_SIZE / 4) /* Number of int32s per slot */
1385
1386struct bitbag {
1387 uint32 **bits;
1388 int slot_cnt;
1389};
1390
1391struct bitbag *bitbag_create(int max_ndx)
1392{
1393 struct bitbag *bb = new(struct bitbag);
1394 bb->slot_cnt = (max_ndx + BB_PER_SLOT_BITS - 1) / BB_PER_SLOT_BITS;
1395
1396 if (!(bb->bits = (uint32**)calloc(bb->slot_cnt, sizeof (uint32*))))
1397 out_of_memory("bitbag_create");
1398
1399 return bb;
1400}
1401
1402void bitbag_set_bit(struct bitbag *bb, int ndx)
1403{
1404 int slot = ndx / BB_PER_SLOT_BITS;
1405 ndx %= BB_PER_SLOT_BITS;
1406
1407 if (!bb->bits[slot]) {
1408 if (!(bb->bits[slot] = (uint32*)calloc(BB_PER_SLOT_INTS, 4)))
1409 out_of_memory("bitbag_set_bit");
1410 }
1411
1412 bb->bits[slot][ndx/32] |= 1u << (ndx % 32);
1413}
1414
1415#if 0 /* not needed yet */
1416void bitbag_clear_bit(struct bitbag *bb, int ndx)
1417{
1418 int slot = ndx / BB_PER_SLOT_BITS;
1419 ndx %= BB_PER_SLOT_BITS;
1420
1421 if (!bb->bits[slot])
1422 return;
1423
1424 bb->bits[slot][ndx/32] &= ~(1u << (ndx % 32));
1425}
1426
1427int bitbag_check_bit(struct bitbag *bb, int ndx)
1428{
1429 int slot = ndx / BB_PER_SLOT_BITS;
1430 ndx %= BB_PER_SLOT_BITS;
1431
1432 if (!bb->bits[slot])
1433 return 0;
1434
1435 return bb->bits[slot][ndx/32] & (1u << (ndx % 32)) ? 1 : 0;
1436}
1437#endif
1438
1439/* Call this with -1 to start checking from 0. Returns -1 at the end. */
1440int bitbag_next_bit(struct bitbag *bb, int after)
1441{
1442 uint32 bits, mask;
1443 int i, ndx = after + 1;
1444 int slot = ndx / BB_PER_SLOT_BITS;
1445 ndx %= BB_PER_SLOT_BITS;
1446
1447 mask = (1u << (ndx % 32)) - 1;
1448 for (i = ndx / 32; slot < bb->slot_cnt; slot++, i = mask = 0) {
1449 if (!bb->bits[slot])
1450 continue;
1451 for ( ; i < BB_PER_SLOT_INTS; i++, mask = 0) {
1452 if (!(bits = bb->bits[slot][i] & ~mask))
1453 continue;
1454 /* The xor magic figures out the lowest enabled bit in
1455 * bits, and the switch quickly computes log2(bit). */
1456 switch (bits ^ (bits & (bits-1))) {
1457#define LOG2(n) case 1u << n: return slot*BB_PER_SLOT_BITS + i*32 + n
1458 LOG2(0); LOG2(1); LOG2(2); LOG2(3);
1459 LOG2(4); LOG2(5); LOG2(6); LOG2(7);
1460 LOG2(8); LOG2(9); LOG2(10); LOG2(11);
1461 LOG2(12); LOG2(13); LOG2(14); LOG2(15);
1462 LOG2(16); LOG2(17); LOG2(18); LOG2(19);
1463 LOG2(20); LOG2(21); LOG2(22); LOG2(23);
1464 LOG2(24); LOG2(25); LOG2(26); LOG2(27);
1465 LOG2(28); LOG2(29); LOG2(30); LOG2(31);
1466 }
1467 return -1; /* impossible... */
1468 }
1469 }
1470
1471 return -1;
1472}
1473
1474void *expand_item_list(item_list *lp, size_t item_size,
1475 const char *desc, int incr)
1476{
1477 /* First time through, 0 <= 0, so list is expanded. */
1478 if (lp->malloced <= lp->count) {
1479 void *new_ptr;
1480 size_t new_size = lp->malloced;
1481 if (incr < 0)
1482 new_size += -incr; /* increase slowly */
1483 else if (new_size < (size_t)incr)
1484 new_size += incr;
1485 else
1486 new_size *= 2;
1487 new_ptr = realloc_array(lp->items, char, new_size * item_size);
1488 if (verbose >= 4) {
1489 rprintf(FINFO, "[%s] expand %s to %.0f bytes, did%s move\n",
1490 who_am_i(), desc, (double)new_size * item_size,
1491 new_ptr == lp->items ? " not" : "");
1492 }
1493 if (!new_ptr)
1494 out_of_memory("expand_item_list");
1495
1496 lp->items = new_ptr;
1497 lp->malloced = new_size;
1498 }
1499 return (char*)lp->items + (lp->count++ * item_size);
1500}