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