One more attempt to get HP-UX's cc to build popt successfully.
[rsync/rsync.git] / util.c
CommitLineData
1960e228 1/* -*- c-file-style: "linux" -*-
5cb37436
WD
2 *
3 * Copyright (C) 1996-2000 by Andrew Tridgell
0ecfbf27
MP
4 * Copyright (C) Paul Mackerras 1996
5 * Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
5cb37436 6 *
0ecfbf27
MP
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.
5cb37436 11 *
0ecfbf27
MP
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.
5cb37436 16 *
0ecfbf27
MP
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.
20 */
c627d613 21
ac13ad10 22/**
0ecfbf27 23 * @file
ac13ad10 24 *
5cb37436 25 * Utilities used in rsync
ac13ad10 26 **/
c627d613 27
c627d613
AT
28#include "rsync.h"
29
c7c11a0d 30extern int verbose;
bf6dcd17 31extern struct exclude_list_struct server_exclude_list;
c7c11a0d 32
0ecfbf27
MP
33int sanitize_paths = 0;
34
35
f0359dd0 36
ac13ad10 37/**
0ecfbf27
MP
38 * Set a fd into nonblocking mode
39 **/
f0359dd0
AT
40void set_nonblocking(int fd)
41{
42 int val;
43
0ecfbf27 44 if ((val = fcntl(fd, F_GETFL, 0)) == -1)
f0359dd0
AT
45 return;
46 if (!(val & NONBLOCK_FLAG)) {
47 val |= NONBLOCK_FLAG;
48 fcntl(fd, F_SETFL, val);
49 }
50}
51
ac13ad10 52/**
0ecfbf27
MP
53 * Set a fd into blocking mode
54 **/
36349ea0
AT
55void set_blocking(int fd)
56{
57 int val;
58
0ecfbf27 59 if ((val = fcntl(fd, F_GETFL, 0)) == -1)
36349ea0
AT
60 return;
61 if (val & NONBLOCK_FLAG) {
62 val &= ~NONBLOCK_FLAG;
63 fcntl(fd, F_SETFL, val);
64 }
65}
66
f0359dd0 67
ac13ad10 68/**
0ecfbf27
MP
69 * Create a file descriptor pair - like pipe() but use socketpair if
70 * possible (because of blocking issues on pipes).
5cb37436 71 *
0ecfbf27 72 * Always set non-blocking.
f0359dd0 73 */
08f15335
AT
74int fd_pair(int fd[2])
75{
f0359dd0
AT
76 int ret;
77
08f15335 78#if HAVE_SOCKETPAIR
f0359dd0 79 ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fd);
08f15335 80#else
f0359dd0 81 ret = pipe(fd);
08f15335 82#endif
f0359dd0
AT
83
84 if (ret == 0) {
85 set_nonblocking(fd[0]);
86 set_nonblocking(fd[1]);
87 }
0ecfbf27 88
f0359dd0 89 return ret;
08f15335
AT
90}
91
92
0ecfbf27 93void print_child_argv(char **cmd)
5ad0e46f 94{
1bbd10fe 95 rprintf(FINFO, "opening connection using ");
5ad0e46f
MP
96 for (; *cmd; cmd++) {
97 /* Look for characters that ought to be quoted. This
98 * is not a great quoting algorithm, but it's
99 * sufficient for a log message. */
100 if (strspn(*cmd, "abcdefghijklmnopqrstuvwxyz"
101 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
102 "0123456789"
103 ",.-_=+@/") != strlen(*cmd)) {
104 rprintf(FINFO, "\"%s\" ", *cmd);
105 } else {
106 rprintf(FINFO, "%s ", *cmd);
107 }
108 }
109 rprintf(FINFO, "\n");
110}
111
112
c627d613
AT
113void out_of_memory(char *str)
114{
c284f34a
WD
115 rprintf(FERROR, "ERROR: out of memory in %s\n", str);
116 exit_cleanup(RERR_MALLOC);
575f2fca
AT
117}
118
119void overflow(char *str)
120{
c284f34a
WD
121 rprintf(FERROR, "ERROR: buffer overflow in %s\n", str);
122 exit_cleanup(RERR_MALLOC);
c627d613
AT
123}
124
125
c627d613 126
404e813c 127int set_modtime(char *fname, time_t modtime)
c627d613 128{
31e12522 129 extern int dry_run;
404e813c
MP
130 if (dry_run)
131 return 0;
132
133 if (verbose > 2) {
134 rprintf(FINFO, "set modtime of %s to (%ld) %s",
135 fname, (long) modtime,
136 asctime(localtime(&modtime)));
137 }
5cb37436 138
31e12522 139 {
1e9f155a 140#ifdef HAVE_UTIMBUF
5cb37436 141 struct utimbuf tbuf;
31e12522
AT
142 tbuf.actime = time(NULL);
143 tbuf.modtime = modtime;
144 return utime(fname,&tbuf);
c627d613 145#elif defined(HAVE_UTIME)
31e12522
AT
146 time_t t[2];
147 t[0] = time(NULL);
148 t[1] = modtime;
149 return utime(fname,t);
c627d613 150#else
31e12522
AT
151 struct timeval t[2];
152 t[0].tv_sec = time(NULL);
153 t[0].tv_usec = 0;
154 t[1].tv_sec = modtime;
155 t[1].tv_usec = 0;
156 return utimes(fname,t);
c627d613 157#endif
31e12522 158 }
c627d613 159}
94481d91 160
720b47f2 161
ac13ad10
MP
162/**
163 Create any necessary directories in fname. Unfortunately we don't know
164 what perms to give the directory when this is called so we need to rely
165 on the umask
166**/
0ecfbf27 167int create_directory_path(char *fname, int base_umask)
6574b4f7 168{
6574b4f7
AT
169 char *p;
170
c284f34a
WD
171 while (*fname == '/')
172 fname++;
173 while (strncmp(fname, "./", 2) == 0)
174 fname += 2;
6574b4f7
AT
175
176 p = fname;
c284f34a 177 while ((p = strchr(p,'/')) != NULL) {
6574b4f7 178 *p = 0;
5cb37436 179 do_mkdir(fname, 0777 & ~base_umask);
6574b4f7
AT
180 *p = '/';
181 p++;
182 }
183 return 0;
184}
950ab32d
AT
185
186
ac13ad10
MP
187/**
188 * Write @p len bytes at @p ptr to descriptor @p desc, retrying if
189 * interrupted.
190 *
191 * @retval len upon success
192 *
193 * @retval <0 write's (negative) error code
194 *
195 * Derived from GNU C's cccp.c.
196 */
9dd891bb 197static int full_write(int desc, char *ptr, size_t len)
950ab32d
AT
198{
199 int total_written;
5cb37436 200
950ab32d
AT
201 total_written = 0;
202 while (len > 0) {
5c1b7bfd 203 int written = write(desc, ptr, len);
950ab32d 204 if (written < 0) {
950ab32d
AT
205 if (errno == EINTR)
206 continue;
950ab32d
AT
207 return written;
208 }
209 total_written += written;
210 ptr += written;
211 len -= written;
212 }
213 return total_written;
214}
215
950ab32d 216
ac13ad10
MP
217/**
218 * Read @p len bytes at @p ptr from descriptor @p desc, retrying if
219 * interrupted.
220 *
221 * @retval >0 the actual number of bytes read
222 *
223 * @retval 0 for EOF
224 *
225 * @retval <0 for an error.
226 *
227 * Derived from GNU C's cccp.c. */
9dd891bb 228static int safe_read(int desc, char *ptr, size_t len)
950ab32d
AT
229{
230 int n_chars;
5cb37436 231
9dd891bb 232 if (len == 0)
950ab32d 233 return len;
5cb37436 234
950ab32d
AT
235 do {
236 n_chars = read(desc, ptr, len);
237 } while (n_chars < 0 && errno == EINTR);
5cb37436 238
950ab32d
AT
239 return n_chars;
240}
241
242
ac13ad10
MP
243/** Copy a file.
244 *
245 * This is used in conjunction with the --temp-dir option */
950ab32d
AT
246int copy_file(char *source, char *dest, mode_t mode)
247{
248 int ifd;
249 int ofd;
250 char buf[1024 * 8];
251 int len; /* Number of bytes read into `buf'. */
252
8c9fd200 253 ifd = do_open(source, O_RDONLY, 0);
950ab32d 254 if (ifd == -1) {
9486289c 255 rprintf(FERROR,"open %s: %s\n",
9f27cd8c 256 full_fname(source), strerror(errno));
950ab32d
AT
257 return -1;
258 }
259
c7c11a0d 260 if (robust_unlink(dest) && errno != ENOENT) {
9486289c 261 rprintf(FERROR,"unlink %s: %s\n",
9f27cd8c 262 full_fname(dest), strerror(errno));
950ab32d
AT
263 return -1;
264 }
265
31e12522 266 ofd = do_open(dest, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode);
c46ded46 267 if (ofd == -1) {
9486289c 268 rprintf(FERROR,"open %s: %s\n",
9f27cd8c 269 full_fname(dest), strerror(errno));
950ab32d
AT
270 close(ifd);
271 return -1;
272 }
273
5cb37436 274 while ((len = safe_read(ifd, buf, sizeof buf)) > 0) {
950ab32d 275 if (full_write(ofd, buf, len) < 0) {
9486289c 276 rprintf(FERROR,"write %s: %s\n",
9f27cd8c 277 full_fname(dest), strerror(errno));
950ab32d
AT
278 close(ifd);
279 close(ofd);
280 return -1;
281 }
282 }
283
8b602edd
WD
284 if (len < 0) {
285 rprintf(FERROR, "read %s: %s\n",
286 full_fname(source), strerror(errno));
287 close(ifd);
288 close(ofd);
289 return -1;
290 }
291
9f27cd8c
WD
292 if (close(ifd) < 0) {
293 rprintf(FINFO, "close failed on %s: %s\n",
294 full_fname(source), strerror(errno));
295 }
296
297 if (close(ofd) < 0) {
298 rprintf(FERROR, "close failed on %s: %s\n",
299 full_fname(dest), strerror(errno));
300 return -1;
301 }
950ab32d 302
950ab32d
AT
303 return 0;
304}
feaa89c4 305
c7c11a0d
DD
306/* MAX_RENAMES should be 10**MAX_RENAMES_DIGITS */
307#define MAX_RENAMES_DIGITS 3
308#define MAX_RENAMES 1000
309
ac13ad10 310/**
b4235b31
MP
311 * Robust unlink: some OS'es (HPUX) refuse to unlink busy files, so
312 * rename to <path>/.rsyncNNN instead.
313 *
314 * Note that successive rsync runs will shuffle the filenames around a
315 * bit as long as the file is still busy; this is because this function
316 * does not know if the unlink call is due to a new file coming in, or
317 * --delete trying to remove old .rsyncNNN files, hence it renames it
318 * each time.
319 **/
c7c11a0d
DD
320int robust_unlink(char *fname)
321{
322#ifndef ETXTBSY
323 return do_unlink(fname);
324#else
325 static int counter = 1;
326 int rc, pos, start;
327 char path[MAXPATHLEN];
328
329 rc = do_unlink(fname);
c284f34a 330 if (rc == 0 || errno != ETXTBSY)
c7c11a0d
DD
331 return rc;
332
c284f34a
WD
333 if ((pos = strlcpy(path, fname, MAXPATHLEN)) >= MAXPATHLEN)
334 pos = MAXPATHLEN - 1;
c7c11a0d 335
c284f34a
WD
336 while (pos > 0 && path[pos-1] != '/')
337 pos--;
5cb37436 338 pos += strlcpy(path+pos, ".rsync", MAXPATHLEN-pos);
c7c11a0d
DD
339
340 if (pos > (MAXPATHLEN-MAX_RENAMES_DIGITS-1)) {
341 errno = ETXTBSY;
342 return -1;
343 }
344
345 /* start where the last one left off to reduce chance of clashes */
346 start = counter;
347 do {
348 sprintf(&path[pos], "%03d", counter);
349 if (++counter >= MAX_RENAMES)
350 counter = 1;
c284f34a 351 } while ((rc = access(path, 0)) == 0 && counter != start);
c7c11a0d 352
4791825d 353 if (verbose > 0) {
c7c11a0d 354 rprintf(FINFO,"renaming %s to %s because of text busy\n",
4791825d
WD
355 fname, path);
356 }
c7c11a0d
DD
357
358 /* maybe we should return rename()'s exit status? Nah. */
359 if (do_rename(fname, path) != 0) {
360 errno = ETXTBSY;
361 return -1;
362 }
363 return 0;
364#endif
365}
366
62c9e6b3
WD
367/* Returns 0 on success, -1 on most errors, and -2 if we got an error
368 * trying to copy the file across file systems. */
369int robust_rename(char *from, char *to, int mode)
c7c11a0d 370{
62c9e6b3
WD
371 int tries = 4;
372
373 while (tries--) {
374 if (do_rename(from, to) == 0)
375 return 0;
376
377 switch (errno) {
378#ifdef ETXTBSY
379 case ETXTBSY:
380 if (robust_unlink(to) != 0)
381 return -1;
382 break;
c7c11a0d 383#endif
62c9e6b3
WD
384 case EXDEV:
385 if (copy_file(from, to, mode) != 0)
386 return -2;
387 do_unlink(from);
388 return 0;
389 default:
390 return -1;
391 }
392 }
393 return -1;
feaa89c4 394}
3ba62a83
AT
395
396
397static pid_t all_pids[10];
398static int num_pids;
399
4cf64834 400/** Fork and record the pid of the child. **/
3ba62a83
AT
401pid_t do_fork(void)
402{
403 pid_t newpid = fork();
5cb37436 404
4cf64834 405 if (newpid != 0 && newpid != -1) {
3ba62a83
AT
406 all_pids[num_pids++] = newpid;
407 }
408 return newpid;
409}
410
4cf64834
MP
411/**
412 * Kill all children.
413 *
414 * @todo It would be kind of nice to make sure that they are actually
415 * all our children before we kill them, because their pids may have
416 * been recycled by some other process. Perhaps when we wait for a
417 * child, we should remove it from this array. Alternatively we could
418 * perhaps use process groups, but I think that would not work on
419 * ancient Unix versions that don't support them.
420 **/
3ba62a83
AT
421void kill_all(int sig)
422{
423 int i;
4cf64834
MP
424
425 for (i = 0; i < num_pids; i++) {
426 /* Let's just be a little careful where we
427 * point that gun, hey? See kill(2) for the
428 * magic caused by negative values. */
429 pid_t p = all_pids[i];
430
431 if (p == getpid())
432 continue;
433 if (p <= 0)
434 continue;
435
436 kill(p, sig);
3ba62a83
AT
437 }
438}
9486289c 439
4cf64834 440
ac13ad10 441/** Turn a user name into a uid */
8ef4ffd6
AT
442int name_to_uid(char *name, uid_t *uid)
443{
444 struct passwd *pass;
445 if (!name || !*name) return 0;
446 pass = getpwnam(name);
447 if (pass) {
448 *uid = pass->pw_uid;
449 return 1;
450 }
451 return 0;
452}
453
ac13ad10 454/** Turn a group name into a gid */
8ef4ffd6
AT
455int name_to_gid(char *name, gid_t *gid)
456{
457 struct group *grp;
458 if (!name || !*name) return 0;
459 grp = getgrnam(name);
460 if (grp) {
461 *gid = grp->gr_gid;
462 return 1;
463 }
464 return 0;
465}
466
ff8b29b8 467
ac13ad10 468/** Lock a byte range in a open file */
31593dd6 469int lock_range(int fd, int offset, int len)
0c515f17 470{
31593dd6 471 struct flock lock;
0c515f17 472
31593dd6
AT
473 lock.l_type = F_WRLCK;
474 lock.l_whence = SEEK_SET;
475 lock.l_start = offset;
476 lock.l_len = len;
477 lock.l_pid = 0;
5cb37436 478
31593dd6 479 return fcntl(fd,F_SETLK,&lock) == 0;
0c515f17 480}
874895d5 481
4791825d
WD
482static int exclude_server_path(char *arg)
483{
484 char *s;
4791825d 485
bf6dcd17 486 if (server_exclude_list.head) {
4791825d
WD
487 for (s = arg; (s = strchr(s, '/')) != NULL; ) {
488 *s = '\0';
9fdb334e 489 if (check_exclude(&server_exclude_list, arg, 1) < 0) {
4791825d
WD
490 /* We must leave arg truncated! */
491 return 1;
492 }
493 *s++ = '/';
494 }
495 }
496 return 0;
497}
874895d5 498
cb13abfe 499static void glob_expand_one(char *s, char **argv, int *argc, int maxargs)
874895d5 500{
932be9aa 501#if !(defined(HAVE_GLOB) && defined(HAVE_GLOB_H))
e42c9458 502 if (!*s) s = ".";
4791825d
WD
503 s = argv[*argc] = strdup(s);
504 exclude_server_path(s);
874895d5 505 (*argc)++;
874895d5 506#else
cb13abfe 507 extern int sanitize_paths;
874895d5
AT
508 glob_t globbuf;
509 int i;
510
e42c9458
AT
511 if (!*s) s = ".";
512
4791825d 513 s = argv[*argc] = strdup(s);
cb13abfe 514 if (sanitize_paths) {
4791825d 515 sanitize_path(s, NULL);
cb13abfe 516 }
087bf010 517
5cb37436 518 memset(&globbuf, 0, sizeof globbuf);
4791825d
WD
519 if (!exclude_server_path(s))
520 glob(s, 0, NULL, &globbuf);
874895d5
AT
521 if (globbuf.gl_pathc == 0) {
522 (*argc)++;
523 globfree(&globbuf);
524 return;
525 }
c284f34a
WD
526 for (i = 0; i < maxargs - *argc && i < (int)globbuf.gl_pathc; i++) {
527 if (i == 0)
528 free(s);
529 argv[*argc + i] = strdup(globbuf.gl_pathv[i]);
530 if (!argv[*argc + i])
531 out_of_memory("glob_expand");
874895d5
AT
532 }
533 globfree(&globbuf);
c284f34a 534 *argc += i;
874895d5
AT
535#endif
536}
5a96ee05 537
4791825d 538/* This routine is only used in daemon mode. */
cb13abfe 539void glob_expand(char *base1, char **argv, int *argc, int maxargs)
087bf010
AT
540{
541 char *s = argv[*argc];
542 char *p, *q;
ba5e128d 543 char *base = base1;
4791825d 544 int base_len = strlen(base);
087bf010
AT
545
546 if (!s || !*s) return;
547
4791825d
WD
548 if (strncmp(s, base, base_len) == 0)
549 s += base_len;
e42c9458 550
087bf010
AT
551 s = strdup(s);
552 if (!s) out_of_memory("glob_expand");
553
8950ac03 554 if (asprintf(&base," %s/", base1) <= 0) out_of_memory("glob_expand");
4791825d 555 base_len++;
ba5e128d 556
087bf010 557 q = s;
c284f34a 558 while ((p = strstr(q,base)) != NULL && *argc < maxargs) {
ba5e128d
AT
559 /* split it at this point */
560 *p = 0;
cb13abfe 561 glob_expand_one(q, argv, argc, maxargs);
4791825d 562 q = p + base_len;
087bf010
AT
563 }
564
c284f34a
WD
565 if (*q && *argc < maxargs)
566 glob_expand_one(q, argv, argc, maxargs);
087bf010
AT
567
568 free(s);
ba5e128d 569 free(base);
087bf010 570}
5a96ee05 571
ac13ad10
MP
572/**
573 * Convert a string to lower case
574 **/
5a96ee05
AT
575void strlower(char *s)
576{
577 while (*s) {
32f76175
MP
578 if (isupper(* (unsigned char *) s))
579 *s = tolower(* (unsigned char *) s);
5a96ee05
AT
580 s++;
581 }
582}
e42c9458 583
368ad70e
WD
584/* Join strings p1 & p2 into "dest" with a guaranteed '/' between them. (If
585 * p1 ends with a '/', no extra '/' is inserted.) Returns the length of both
a8f7e4b8
WD
586 * strings + 1 (if '/' was inserted), regardless of whether the null-terminated
587 * string fits into destsize. */
368ad70e
WD
588size_t pathjoin(char *dest, size_t destsize, const char *p1, const char *p2)
589{
590 size_t len = strlcpy(dest, p1, destsize);
591 if (len < destsize - 1) {
592 if (!len || dest[len-1] != '/')
593 dest[len++] = '/';
594 if (len < destsize - 1)
595 len += strlcpy(dest + len, p2, destsize - len);
596 else {
597 dest[len] = '\0';
598 len += strlen(p2);
599 }
600 }
601 else
602 len += strlen(p2) + 1; /* Assume we'd insert a '/'. */
603 return len;
604}
605
606/* Join any number of strings together, putting them in "dest". The return
a8f7e4b8
WD
607 * value is the length of all the strings, regardless of whether the null-
608 * terminated whole fits in destsize. Your list of string pointers must end
609 * with a NULL to indicate the end of the list. */
368ad70e
WD
610size_t stringjoin(char *dest, size_t destsize, ...)
611{
5cb37436 612 va_list ap;
368ad70e
WD
613 size_t len, ret = 0;
614 const char *src;
615
616 va_start(ap, destsize);
617 while (1) {
618 if (!(src = va_arg(ap, const char *)))
619 break;
620 len = strlen(src);
621 ret += len;
622 if (destsize > 1) {
623 if (len >= destsize)
624 len = destsize - 1;
625 memcpy(dest, src, len);
626 destsize -= len;
627 dest += len;
628 }
629 }
630 *dest = '\0';
631 va_end(ap);
632
633 return ret;
634}
635
5243c216
AT
636void clean_fname(char *name)
637{
638 char *p;
639 int l;
640 int modified = 1;
641
642 if (!name) return;
643
644 while (modified) {
645 modified = 0;
646
c284f34a 647 if ((p = strstr(name,"/./")) != NULL) {
5243c216
AT
648 modified = 1;
649 while (*p) {
650 p[0] = p[2];
651 p++;
652 }
653 }
654
c284f34a 655 if ((p = strstr(name,"//")) != NULL) {
5243c216
AT
656 modified = 1;
657 while (*p) {
658 p[0] = p[1];
659 p++;
660 }
661 }
662
c284f34a 663 if (strncmp(p = name, "./", 2) == 0) {
5243c216
AT
664 modified = 1;
665 do {
666 p[0] = p[2];
667 } while (*p++);
668 }
669
c284f34a 670 l = strlen(p = name);
5243c216
AT
671 if (l > 1 && p[l-1] == '/') {
672 modified = 1;
673 p[l-1] = 0;
674 }
675 }
676}
677
ac13ad10 678/**
1b8e662a 679 * Make path appear as if a chroot had occurred:
ac13ad10 680 *
b4235b31
MP
681 * @li 1. remove leading "/" (or replace with "." if at end)
682 *
683 * @li 2. remove leading ".." components (except those allowed by @p reldir)
684 *
685 * @li 3. delete any other "<dir>/.." (recursively)
ac13ad10 686 *
79452d46 687 * Can only shrink paths, so sanitizes in place.
ac13ad10 688 *
b5f9e67d 689 * While we're at it, remove double slashes and "." components like
b4235b31 690 * clean_fname() does, but DON'T remove a trailing slash because that
b5f9e67d 691 * is sometimes significant on command line arguments.
ac13ad10 692 *
b4235b31 693 * If @p reldir is non-null, it is a sanitized directory that the path will be
79452d46
DD
694 * relative to, so allow as many ".." at the beginning of the path as
695 * there are components in reldir. This is used for symbolic link targets.
696 * If reldir is non-null and the path began with "/", to be completely like
697 * a chroot we should add in depth levels of ".." at the beginning of the
698 * path, but that would blow the assumption that the path doesn't grow and
699 * it is not likely to end up being a valid symlink anyway, so just do
700 * the normal removal of the leading "/" instead.
ac13ad10 701 *
1b8e662a
DD
702 * Contributed by Dave Dykstra <dwd@bell-labs.com>
703 */
cb13abfe 704void sanitize_path(char *p, char *reldir)
1b8e662a 705{
44e2e578 706 char *start, *sanp;
cb13abfe
DD
707 int depth = 0;
708 int allowdotdot = 0;
709
710 if (reldir) {
711 depth++;
712 while (*reldir) {
713 if (*reldir++ == '/') {
714 depth++;
715 }
716 }
717 }
44e2e578
DD
718 start = p;
719 sanp = p;
b5f9e67d
DD
720 while (*p == '/') {
721 /* remove leading slashes */
722 p++;
723 }
1b8e662a 724 while (*p != '\0') {
b5f9e67d 725 /* this loop iterates once per filename component in p.
44e2e578 726 * both p (and sanp if the original had a slash) should
b5f9e67d
DD
727 * always be left pointing after a slash
728 */
c284f34a 729 if (*p == '.' && (p[1] == '/' || p[1] == '\0')) {
b5f9e67d
DD
730 /* skip "." component */
731 while (*++p == '/') {
732 /* skip following slashes */
733 ;
734 }
cb13abfe
DD
735 continue;
736 }
737 allowdotdot = 0;
c284f34a 738 if (*p == '.' && p[1] == '.' && (p[2] == '/' || p[2] == '\0')) {
cb13abfe 739 /* ".." component followed by slash or end */
c284f34a 740 if (depth > 0 && sanp == start) {
cb13abfe
DD
741 /* allow depth levels of .. at the beginning */
742 --depth;
743 allowdotdot = 1;
744 } else {
745 p += 2;
746 if (*p == '/')
747 p++;
748 if (sanp != start) {
749 /* back up sanp one level */
750 --sanp; /* now pointing at slash */
c284f34a 751 while (sanp > start && sanp[-1] != '/') {
cb13abfe
DD
752 /* skip back up to slash */
753 sanp--;
754 }
b5f9e67d 755 }
cb13abfe 756 continue;
1b8e662a 757 }
cb13abfe
DD
758 }
759 while (1) {
760 /* copy one component through next slash */
761 *sanp++ = *p++;
42509417 762 if (*p == '\0' || p[-1] == '/') {
cb13abfe
DD
763 while (*p == '/') {
764 /* skip multiple slashes */
765 p++;
b5f9e67d 766 }
cb13abfe 767 break;
1b8e662a
DD
768 }
769 }
cb13abfe
DD
770 if (allowdotdot) {
771 /* move the virtual beginning to leave the .. alone */
772 start = sanp;
773 }
1b8e662a 774 }
c284f34a 775 if (sanp == start && !allowdotdot) {
b5f9e67d 776 /* ended up with nothing, so put in "." component */
79452d46
DD
777 /*
778 * note that the !allowdotdot doesn't prevent this from
779 * happening in all allowed ".." situations, but I didn't
780 * think it was worth putting in an extra variable to ensure
781 * it since an extra "." won't hurt in those situations.
782 */
44e2e578 783 *sanp++ = '.';
b5f9e67d 784 }
44e2e578 785 *sanp = '\0';
1b8e662a
DD
786}
787
14b61c63
WD
788/* Works much like sanitize_path(), with these differences: (1) a new buffer
789 * is allocated for the sanitized path rather than modifying it in-place; (2)
790 * a leading slash gets transformed into the rootdir value (which can be empty
791 * or NULL if you just want the slash to get dropped); (3) no "reldir" can be
792 * specified. */
793char *alloc_sanitize_path(const char *path, const char *rootdir)
794{
795 char *buf;
796 int rlen, plen = strlen(path);
797
b05b3c9b 798 if (*path == '/' && rootdir) {
14b61c63 799 rlen = strlen(rootdir);
b05b3c9b
WD
800 if (rlen == 1)
801 path++;
802 } else
14b61c63
WD
803 rlen = 0;
804 if (!(buf = new_array(char, rlen + plen + 1)))
805 out_of_memory("alloc_sanitize_path");
806 if (rlen)
807 memcpy(buf, rootdir, rlen);
808 memcpy(buf + rlen, path, plen + 1);
809
b05b3c9b 810 if (rlen > 1)
14b61c63
WD
811 rlen++;
812 sanitize_path(buf + rlen, NULL);
b05b3c9b
WD
813 if (rlen && buf[rlen] == '.' && buf[rlen+1] == '\0') {
814 if (rlen > 1)
815 rlen--;
816 buf[rlen] = '\0';
817 }
14b61c63
WD
818
819 return buf;
820}
5243c216 821
4791825d 822char curr_dir[MAXPATHLEN];
4af8fe4e 823unsigned int curr_dir_len;
5243c216 824
4e5db0ad 825/**
a16d8f2b
WD
826 * Like chdir(), but it keeps track of the current directory (in the
827 * global "curr_dir"), and ensures that the path size doesn't overflow.
828 * Also cleans the path using the clean_fname() function.
4e5db0ad 829 **/
4af8fe4e 830int push_dir(char *dir)
5243c216 831{
5243c216 832 static int initialised;
4af8fe4e 833 unsigned int len;
5243c216
AT
834
835 if (!initialised) {
836 initialised = 1;
5cb37436 837 getcwd(curr_dir, sizeof curr_dir - 1);
4af8fe4e 838 curr_dir_len = strlen(curr_dir);
5243c216
AT
839 }
840
4af8fe4e
WD
841 if (!dir) /* this call was probably just to initialize */
842 return 0;
c226b7c2 843
4af8fe4e
WD
844 len = strlen(dir);
845 if (len == 1 && *dir == '.')
846 return 1;
5243c216 847
4af8fe4e
WD
848 if ((*dir == '/' ? len : curr_dir_len + 1 + len) >= sizeof curr_dir)
849 return 0;
850
851 if (chdir(dir))
852 return 0;
5243c216
AT
853
854 if (*dir == '/') {
4af8fe4e
WD
855 memcpy(curr_dir, dir, len + 1);
856 curr_dir_len = len;
857 } else {
858 curr_dir[curr_dir_len++] = '/';
859 memcpy(curr_dir + curr_dir_len, dir, len + 1);
860 curr_dir_len += len;
5243c216
AT
861 }
862
863 clean_fname(curr_dir);
864
4af8fe4e 865 return 1;
5243c216
AT
866}
867
a16d8f2b
WD
868/**
869 * Reverse a push_dir() call. You must pass in an absolute path
870 * that was copied from a prior value of "curr_dir".
871 **/
5243c216
AT
872int pop_dir(char *dir)
873{
4af8fe4e
WD
874 if (chdir(dir))
875 return 0;
5243c216 876
4af8fe4e
WD
877 curr_dir_len = strlcpy(curr_dir, dir, sizeof curr_dir);
878 if (curr_dir_len >= sizeof curr_dir)
879 curr_dir_len = sizeof curr_dir - 1;
5243c216 880
4af8fe4e 881 return 1;
5243c216 882}
aa9b77a5 883
eb61be19
WD
884/**
885 * Return a quoted string with the full pathname of the indicated filename.
886 * The string " (in MODNAME)" may also be appended. The returned pointer
887 * remains valid until the next time full_fname() is called.
888 **/
889char *full_fname(char *fn)
890{
891 extern int module_id;
892 static char *result = NULL;
893 char *m1, *m2, *m3;
894 char *p1, *p2;
895
896 if (result)
897 free(result);
898
899 if (*fn == '/')
900 p1 = p2 = "";
901 else {
902 p1 = curr_dir;
903 p2 = "/";
904 }
905 if (module_id >= 0) {
906 m1 = " (in ";
907 m2 = lp_name(module_id);
908 m3 = ")";
909 if (*p1) {
910 if (!lp_use_chroot(module_id)) {
911 char *p = lp_path(module_id);
912 if (*p != '/' || p[1])
913 p1 += strlen(p);
914 }
915 if (!*p1)
916 p2++;
917 else
918 p1++;
919 }
920 else
921 fn++;
922 } else
923 m1 = m2 = m3 = "";
924
925 asprintf(&result, "\"%s%s%s\"%s%s%s", p1, p2, fn, m1, m2, m3);
926
927 return result;
928}
929
ac13ad10 930/** We need to supply our own strcmp function for file list comparisons
aa9b77a5
AT
931 to ensure that signed/unsigned usage is consistent between machines. */
932int u_strcmp(const char *cs1, const char *cs2)
933{
5a788ade
AT
934 const uchar *s1 = (const uchar *)cs1;
935 const uchar *s2 = (const uchar *)cs2;
aa9b77a5
AT
936
937 while (*s1 && *s2 && (*s1 == *s2)) {
938 s1++; s2++;
939 }
5cb37436 940
aa9b77a5
AT
941 return (int)*s1 - (int)*s2;
942}
eb86d661 943
4b957c22 944
ac13ad10
MP
945
946/**
947 * Determine if a symlink points outside the current directory tree.
036e70b0
MP
948 * This is considered "unsafe" because e.g. when mirroring somebody
949 * else's machine it might allow them to establish a symlink to
950 * /etc/passwd, and then read it through a web server.
951 *
4e5db0ad
MP
952 * Null symlinks and absolute symlinks are always unsafe.
953 *
954 * Basically here we are concerned with symlinks whose target contains
955 * "..", because this might cause us to walk back up out of the
956 * transferred directory. We are not allowed to go back up and
957 * reenter.
958 *
036e70b0
MP
959 * @param dest Target of the symlink in question.
960 *
25d34a5c 961 * @param src Top source directory currently applicable. Basically this
036e70b0 962 * is the first parameter to rsync in a simple invocation, but it's
25d34a5c 963 * modified by flist.c in slightly complex ways.
036e70b0
MP
964 *
965 * @retval True if unsafe
966 * @retval False is unsafe
4e5db0ad
MP
967 *
968 * @sa t_unsafe.c
ac13ad10 969 **/
7afa3a4a 970int unsafe_symlink(const char *dest, const char *src)
4b957c22 971{
7afa3a4a 972 const char *name, *slash;
4b957c22
AT
973 int depth = 0;
974
975 /* all absolute and null symlinks are unsafe */
7afa3a4a 976 if (!dest || !*dest || *dest == '/') return 1;
4b957c22
AT
977
978 /* find out what our safety margin is */
7afa3a4a
WD
979 for (name = src; (slash = strchr(name, '/')) != 0; name = slash+1) {
980 if (strncmp(name, "../", 3) == 0) {
c284f34a 981 depth = 0;
7afa3a4a 982 } else if (strncmp(name, "./", 2) == 0) {
4b957c22
AT
983 /* nothing */
984 } else {
985 depth++;
986 }
987 }
7afa3a4a
WD
988 if (strcmp(name, "..") == 0)
989 depth = 0;
4b957c22 990
7afa3a4a
WD
991 for (name = dest; (slash = strchr(name, '/')) != 0; name = slash+1) {
992 if (strncmp(name, "../", 3) == 0) {
993 /* if at any point we go outside the current directory
994 then stop - it is unsafe */
995 if (--depth < 0)
996 return 1;
997 } else if (strncmp(name, "./", 2) == 0) {
4b957c22
AT
998 /* nothing */
999 } else {
1000 depth++;
1001 }
4b957c22 1002 }
7afa3a4a
WD
1003 if (strcmp(name, "..") == 0)
1004 depth--;
4b957c22 1005
4b957c22
AT
1006 return (depth < 0);
1007}
375a4556 1008
f7632fc6 1009
ac13ad10 1010/**
b4235b31
MP
1011 * Return the date and time as a string
1012 **/
f7632fc6
AT
1013char *timestring(time_t t)
1014{
1015 static char TimeBuf[200];
1016 struct tm *tm = localtime(&t);
1017
1018#ifdef HAVE_STRFTIME
5cb37436 1019 strftime(TimeBuf, sizeof TimeBuf - 1, "%Y/%m/%d %H:%M:%S", tm);
f7632fc6 1020#else
5cb37436 1021 strlcpy(TimeBuf, asctime(tm), sizeof TimeBuf);
f7632fc6
AT
1022#endif
1023
1024 if (TimeBuf[strlen(TimeBuf)-1] == '\n') {
1025 TimeBuf[strlen(TimeBuf)-1] = 0;
1026 }
1027
1028 return(TimeBuf);
1029}
1030
9ec16c83 1031
e1bd49d6
MP
1032/**
1033 * Sleep for a specified number of milliseconds.
1034 *
1035 * Always returns TRUE. (In the future it might return FALSE if
1036 * interrupted.)
1037 **/
1038int msleep(int t)
9ec16c83 1039{
c284f34a
WD
1040 int tdiff = 0;
1041 struct timeval tval, t1, t2;
9ec16c83
AT
1042
1043 gettimeofday(&t1, NULL);
1044 gettimeofday(&t2, NULL);
5cb37436 1045
9ec16c83
AT
1046 while (tdiff < t) {
1047 tval.tv_sec = (t-tdiff)/1000;
1048 tval.tv_usec = 1000*((t-tdiff)%1000);
5cb37436 1049
9ec16c83
AT
1050 errno = 0;
1051 select(0,NULL,NULL, NULL, &tval);
1052
1053 gettimeofday(&t2, NULL);
5cb37436 1054 tdiff = (t2.tv_sec - t1.tv_sec)*1000 +
9ec16c83
AT
1055 (t2.tv_usec - t1.tv_usec)/1000;
1056 }
e1bd49d6
MP
1057
1058 return True;
9ec16c83
AT
1059}
1060
1061
ac13ad10
MP
1062/**
1063 * Determine if two file modification times are equivalent (either
1064 * exact or in the modification timestamp window established by
1065 * --modify-window).
1066 *
1067 * @retval 0 if the times should be treated as the same
1068 *
1069 * @retval +1 if the first is later
1070 *
1071 * @retval -1 if the 2nd is later
1072 **/
5b56cc19
AT
1073int cmp_modtime(time_t file1, time_t file2)
1074{
5b56cc19
AT
1075 extern int modify_window;
1076
1077 if (file2 > file1) {
1078 if (file2 - file1 <= modify_window) return 0;
1079 return -1;
1080 }
1081 if (file1 - file2 <= modify_window) return 0;
1082 return 1;
1083}
1084
1085
1086#ifdef __INSURE__XX
0f8f98c8
AT
1087#include <dlfcn.h>
1088
ac13ad10
MP
1089/**
1090 This routine is a trick to immediately catch errors when debugging
1091 with insure. A xterm with a gdb is popped up when insure catches
1092 a error. It is Linux specific.
1093**/
0f8f98c8
AT
1094int _Insure_trap_error(int a1, int a2, int a3, int a4, int a5, int a6)
1095{
1096 static int (*fn)();
1097 int ret;
8950ac03 1098 char *cmd;
0f8f98c8 1099
5cb37436 1100 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'",
0f8f98c8
AT
1101 getpid(), getpid(), getpid());
1102
1103 if (!fn) {
1104 static void *h;
1105 h = dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY);
1106 fn = dlsym(h, "_Insure_trap_error");
1107 }
1108
1109 ret = fn(a1, a2, a3, a4, a5, a6);
1110
1111 system(cmd);
1112
8950ac03
AT
1113 free(cmd);
1114
0f8f98c8
AT
1115 return ret;
1116}
1117#endif
58cadc86
WD
1118
1119
1120#define MALLOC_MAX 0x40000000
1121
1122void *_new_array(unsigned int size, unsigned long num)
1123{
1124 if (num >= MALLOC_MAX/size)
1125 return NULL;
1126 return malloc(size * num);
1127}
1128
1129void *_realloc_array(void *ptr, unsigned int size, unsigned long num)
1130{
1131 if (num >= MALLOC_MAX/size)
1132 return NULL;
1133 /* No realloc should need this, but just in case... */
1134 if (!ptr)
1135 return malloc(size * num);
1136 return realloc(ptr, size * num);
1137}