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