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