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