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