Integrate time-setting fixes/improvements from the master branch.
[rsync/qnx.git] / util.c
blob7f207a3bb83b88ebd2f072e5687533455acf9f69
1 /*
2 * Utility routines used in rsync.
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-2009 Wayne Davison
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.
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.
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.
23 #include "rsync.h"
24 #include "ifuncs.h"
26 extern int verbose;
27 extern int dry_run;
28 extern int module_id;
29 extern int modify_window;
30 extern int relative_paths;
31 extern int preserve_times;
32 extern int human_readable;
33 extern int preserve_xattrs;
34 extern char *module_dir;
35 extern unsigned int module_dirlen;
36 extern mode_t orig_umask;
37 extern char *partial_dir;
38 extern struct filter_list_struct daemon_filter_list;
40 int sanitize_paths = 0;
42 char curr_dir[MAXPATHLEN];
43 unsigned int curr_dir_len;
44 int curr_dir_depth; /* This is only set for a sanitizing daemon. */
46 /* Set a fd into nonblocking mode. */
47 void set_nonblocking(int fd)
49 int val;
51 if ((val = fcntl(fd, F_GETFL)) == -1)
52 return;
53 if (!(val & NONBLOCK_FLAG)) {
54 val |= NONBLOCK_FLAG;
55 fcntl(fd, F_SETFL, val);
59 /* Set a fd into blocking mode. */
60 void set_blocking(int fd)
62 int val;
64 if ((val = fcntl(fd, F_GETFL)) == -1)
65 return;
66 if (val & NONBLOCK_FLAG) {
67 val &= ~NONBLOCK_FLAG;
68 fcntl(fd, F_SETFL, val);
72 /**
73 * Create a file descriptor pair - like pipe() but use socketpair if
74 * possible (because of blocking issues on pipes).
76 * Always set non-blocking.
78 int fd_pair(int fd[2])
80 int ret;
82 #ifdef HAVE_SOCKETPAIR
83 ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fd);
84 #else
85 ret = pipe(fd);
86 #endif
88 if (ret == 0) {
89 set_nonblocking(fd[0]);
90 set_nonblocking(fd[1]);
93 return ret;
96 void print_child_argv(const char *prefix, char **cmd)
98 rprintf(FCLIENT, "%s ", prefix);
99 for (; *cmd; cmd++) {
100 /* Look for characters that ought to be quoted. This
101 * is not a great quoting algorithm, but it's
102 * sufficient for a log message. */
103 if (strspn(*cmd, "abcdefghijklmnopqrstuvwxyz"
104 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
105 "0123456789"
106 ",.-_=+@/") != strlen(*cmd)) {
107 rprintf(FCLIENT, "\"%s\" ", *cmd);
108 } else {
109 rprintf(FCLIENT, "%s ", *cmd);
112 rprintf(FCLIENT, "\n");
115 NORETURN void out_of_memory(const char *str)
117 rprintf(FERROR, "ERROR: out of memory in %s [%s]\n", str, who_am_i());
118 exit_cleanup(RERR_MALLOC);
121 NORETURN void overflow_exit(const char *str)
123 rprintf(FERROR, "ERROR: buffer overflow in %s [%s]\n", str, who_am_i());
124 exit_cleanup(RERR_MALLOC);
127 /* This returns 0 for success, 1 for a symlink if symlink time-setting
128 * is not possible, or -1 for any other error. */
129 int set_modtime(const char *fname, time_t modtime, mode_t mode)
131 static int switch_step = 0;
133 if (verbose > 2) {
134 rprintf(FINFO, "set modtime of %s to (%ld) %s",
135 fname, (long)modtime,
136 asctime(localtime(&modtime)));
139 switch (switch_step) {
140 #ifdef HAVE_UTIMENSAT
141 #include "case_N.h"
142 if (do_utimensat(fname, modtime, 0) == 0)
143 break;
144 if (errno != ENOSYS)
145 return -1;
146 switch_step++;
147 /* FALLTHROUGH */
148 #endif
150 #ifdef HAVE_LUTIMES
151 #include "case_N.h"
152 if (do_lutimes(fname, modtime, 0) == 0)
153 break;
154 if (errno != ENOSYS)
155 return -1;
156 switch_step++;
157 /* FALLTHROUGH */
158 #endif
160 #include "case_N.h"
161 switch_step++;
162 if (preserve_times & PRESERVE_LINK_TIMES) {
163 preserve_times &= ~PRESERVE_LINK_TIMES;
164 if (S_ISLNK(mode))
165 return 1;
167 /* FALLTHROUGH */
169 #include "case_N.h"
170 #ifdef HAVE_UTIMES
171 if (do_utimes(fname, modtime, 0) == 0)
172 break;
173 #else
174 if (do_utime(fname, modtime, 0) == 0)
175 break;
176 #endif
178 return -1;
181 return 0;
184 /* This creates a new directory with default permissions. Since there
185 * might be some directory-default permissions affecting this, we can't
186 * force the permissions directly using the original umask and mkdir(). */
187 int mkdir_defmode(char *fname)
189 int ret;
191 umask(orig_umask);
192 ret = do_mkdir(fname, ACCESSPERMS);
193 umask(0);
195 return ret;
198 /* Create any necessary directories in fname. Any missing directories are
199 * created with default permissions. */
200 int create_directory_path(char *fname)
202 char *p;
203 int ret = 0;
205 while (*fname == '/')
206 fname++;
207 while (strncmp(fname, "./", 2) == 0)
208 fname += 2;
210 umask(orig_umask);
211 p = fname;
212 while ((p = strchr(p,'/')) != NULL) {
213 *p = '\0';
214 if (do_mkdir(fname, ACCESSPERMS) < 0 && errno != EEXIST)
215 ret = -1;
216 *p++ = '/';
218 umask(0);
220 return ret;
224 * Write @p len bytes at @p ptr to descriptor @p desc, retrying if
225 * interrupted.
227 * @retval len upon success
229 * @retval <0 write's (negative) error code
231 * Derived from GNU C's cccp.c.
233 int full_write(int desc, const char *ptr, size_t len)
235 int total_written;
237 total_written = 0;
238 while (len > 0) {
239 int written = write(desc, ptr, len);
240 if (written < 0) {
241 if (errno == EINTR)
242 continue;
243 return written;
245 total_written += written;
246 ptr += written;
247 len -= written;
249 return total_written;
253 * Read @p len bytes at @p ptr from descriptor @p desc, retrying if
254 * interrupted.
256 * @retval >0 the actual number of bytes read
258 * @retval 0 for EOF
260 * @retval <0 for an error.
262 * Derived from GNU C's cccp.c. */
263 static int safe_read(int desc, char *ptr, size_t len)
265 int n_chars;
267 if (len == 0)
268 return len;
270 do {
271 n_chars = read(desc, ptr, len);
272 } while (n_chars < 0 && errno == EINTR);
274 return n_chars;
277 /* Copy a file. If ofd < 0, copy_file unlinks and opens the "dest" file.
278 * Otherwise, it just writes to and closes the provided file descriptor.
279 * In either case, if --xattrs are being preserved, the dest file will
280 * have its xattrs set from the source file.
282 * This is used in conjunction with the --temp-dir, --backup, and
283 * --copy-dest options. */
284 int copy_file(const char *source, const char *dest, int ofd,
285 mode_t mode, int create_bak_dir)
287 int ifd;
288 char buf[1024 * 8];
289 int len; /* Number of bytes read into `buf'. */
291 if ((ifd = do_open(source, O_RDONLY, 0)) < 0) {
292 int save_errno = errno;
293 rsyserr(FERROR_XFER, errno, "open %s", full_fname(source));
294 errno = save_errno;
295 return -1;
298 if (ofd < 0) {
299 if (robust_unlink(dest) && errno != ENOENT) {
300 int save_errno = errno;
301 rsyserr(FERROR_XFER, errno, "unlink %s", full_fname(dest));
302 errno = save_errno;
303 return -1;
306 if ((ofd = do_open(dest, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode)) < 0) {
307 int save_errno = errno ? errno : EINVAL; /* 0 paranoia */
308 if (create_bak_dir && errno == ENOENT && make_bak_dir(dest) == 0) {
309 if ((ofd = do_open(dest, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode)) < 0)
310 save_errno = errno ? errno : save_errno;
311 else
312 save_errno = 0;
314 if (save_errno) {
315 rsyserr(FERROR_XFER, save_errno, "open %s", full_fname(dest));
316 close(ifd);
317 errno = save_errno;
318 return -1;
323 while ((len = safe_read(ifd, buf, sizeof buf)) > 0) {
324 if (full_write(ofd, buf, len) < 0) {
325 int save_errno = errno;
326 rsyserr(FERROR_XFER, errno, "write %s", full_fname(dest));
327 close(ifd);
328 close(ofd);
329 errno = save_errno;
330 return -1;
334 if (len < 0) {
335 int save_errno = errno;
336 rsyserr(FERROR_XFER, errno, "read %s", full_fname(source));
337 close(ifd);
338 close(ofd);
339 errno = save_errno;
340 return -1;
343 if (close(ifd) < 0) {
344 rsyserr(FWARNING, errno, "close failed on %s",
345 full_fname(source));
348 if (close(ofd) < 0) {
349 int save_errno = errno;
350 rsyserr(FERROR_XFER, errno, "close failed on %s",
351 full_fname(dest));
352 errno = save_errno;
353 return -1;
356 #ifdef SUPPORT_XATTRS
357 if (preserve_xattrs)
358 copy_xattrs(source, dest);
359 #endif
361 return 0;
364 /* MAX_RENAMES should be 10**MAX_RENAMES_DIGITS */
365 #define MAX_RENAMES_DIGITS 3
366 #define MAX_RENAMES 1000
369 * Robust unlink: some OS'es (HPUX) refuse to unlink busy files, so
370 * rename to <path>/.rsyncNNN instead.
372 * Note that successive rsync runs will shuffle the filenames around a
373 * bit as long as the file is still busy; this is because this function
374 * does not know if the unlink call is due to a new file coming in, or
375 * --delete trying to remove old .rsyncNNN files, hence it renames it
376 * each time.
378 int robust_unlink(const char *fname)
380 #ifndef ETXTBSY
381 return do_unlink(fname);
382 #else
383 static int counter = 1;
384 int rc, pos, start;
385 char path[MAXPATHLEN];
387 rc = do_unlink(fname);
388 if (rc == 0 || errno != ETXTBSY)
389 return rc;
391 if ((pos = strlcpy(path, fname, MAXPATHLEN)) >= MAXPATHLEN)
392 pos = MAXPATHLEN - 1;
394 while (pos > 0 && path[pos-1] != '/')
395 pos--;
396 pos += strlcpy(path+pos, ".rsync", MAXPATHLEN-pos);
398 if (pos > (MAXPATHLEN-MAX_RENAMES_DIGITS-1)) {
399 errno = ETXTBSY;
400 return -1;
403 /* start where the last one left off to reduce chance of clashes */
404 start = counter;
405 do {
406 snprintf(&path[pos], MAX_RENAMES_DIGITS+1, "%03d", counter);
407 if (++counter >= MAX_RENAMES)
408 counter = 1;
409 } while ((rc = access(path, 0)) == 0 && counter != start);
411 if (verbose > 0) {
412 rprintf(FWARNING, "renaming %s to %s because of text busy\n",
413 fname, path);
416 /* maybe we should return rename()'s exit status? Nah. */
417 if (do_rename(fname, path) != 0) {
418 errno = ETXTBSY;
419 return -1;
421 return 0;
422 #endif
425 /* Returns 0 on successful rename, 1 if we successfully copied the file
426 * across filesystems, -2 if copy_file() failed, and -1 on other errors.
427 * If partialptr is not NULL and we need to do a copy, copy the file into
428 * the active partial-dir instead of over the destination file. */
429 int robust_rename(const char *from, const char *to, const char *partialptr,
430 int mode)
432 int tries = 4;
434 while (tries--) {
435 if (do_rename(from, to) == 0)
436 return 0;
438 switch (errno) {
439 #ifdef ETXTBSY
440 case ETXTBSY:
441 if (robust_unlink(to) != 0) {
442 errno = ETXTBSY;
443 return -1;
445 errno = ETXTBSY;
446 break;
447 #endif
448 case EXDEV:
449 if (partialptr) {
450 if (!handle_partial_dir(partialptr,PDIR_CREATE))
451 return -2;
452 to = partialptr;
454 if (copy_file(from, to, -1, mode, 0) != 0)
455 return -2;
456 do_unlink(from);
457 return 1;
458 default:
459 return -1;
462 return -1;
465 static pid_t all_pids[10];
466 static int num_pids;
468 /** Fork and record the pid of the child. **/
469 pid_t do_fork(void)
471 pid_t newpid = fork();
473 if (newpid != 0 && newpid != -1) {
474 all_pids[num_pids++] = newpid;
476 return newpid;
480 * Kill all children.
482 * @todo It would be kind of nice to make sure that they are actually
483 * all our children before we kill them, because their pids may have
484 * been recycled by some other process. Perhaps when we wait for a
485 * child, we should remove it from this array. Alternatively we could
486 * perhaps use process groups, but I think that would not work on
487 * ancient Unix versions that don't support them.
489 void kill_all(int sig)
491 int i;
493 for (i = 0; i < num_pids; i++) {
494 /* Let's just be a little careful where we
495 * point that gun, hey? See kill(2) for the
496 * magic caused by negative values. */
497 pid_t p = all_pids[i];
499 if (p == getpid())
500 continue;
501 if (p <= 0)
502 continue;
504 kill(p, sig);
508 /** Turn a user name into a uid */
509 int name_to_uid(const char *name, uid_t *uid_p)
511 struct passwd *pass;
512 if (!name || !*name)
513 return 0;
514 if (!(pass = getpwnam(name)))
515 return 0;
516 *uid_p = pass->pw_uid;
517 return 1;
520 /** Turn a group name into a gid */
521 int name_to_gid(const char *name, gid_t *gid_p)
523 struct group *grp;
524 if (!name || !*name)
525 return 0;
526 if (!(grp = getgrnam(name)))
527 return 0;
528 *gid_p = grp->gr_gid;
529 return 1;
532 /** Lock a byte range in a open file */
533 int lock_range(int fd, int offset, int len)
535 struct flock lock;
537 lock.l_type = F_WRLCK;
538 lock.l_whence = SEEK_SET;
539 lock.l_start = offset;
540 lock.l_len = len;
541 lock.l_pid = 0;
543 return fcntl(fd,F_SETLK,&lock) == 0;
546 #define ENSURE_MEMSPACE(buf, type, sz, req) \
547 if ((req) > sz && !(buf = realloc_array(buf, type, sz = MAX(sz * 2, req)))) \
548 out_of_memory("glob_expand")
550 static inline void call_glob_match(const char *name, int len, int from_glob,
551 char *arg, int abpos, int fbpos);
553 static struct glob_data {
554 char *arg_buf, *filt_buf, **argv;
555 int absize, fbsize, maxargs, argc;
556 } glob;
558 static void glob_match(char *arg, int abpos, int fbpos)
560 int len;
561 char *slash;
563 while (*arg == '.' && arg[1] == '/') {
564 if (fbpos < 0) {
565 ENSURE_MEMSPACE(glob.filt_buf, char, glob.fbsize, glob.absize);
566 memcpy(glob.filt_buf, glob.arg_buf, abpos + 1);
567 fbpos = abpos;
569 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, abpos + 3);
570 glob.arg_buf[abpos++] = *arg++;
571 glob.arg_buf[abpos++] = *arg++;
572 glob.arg_buf[abpos] = '\0';
574 if ((slash = strchr(arg, '/')) != NULL) {
575 *slash = '\0';
576 len = slash - arg;
577 } else
578 len = strlen(arg);
579 if (strpbrk(arg, "*?[")) {
580 struct dirent *di;
581 DIR *d;
583 if (!(d = opendir(abpos ? glob.arg_buf : ".")))
584 return;
585 while ((di = readdir(d)) != NULL) {
586 char *dname = d_name(di);
587 if (dname[0] == '.' && (dname[1] == '\0'
588 || (dname[1] == '.' && dname[2] == '\0')))
589 continue;
590 if (!wildmatch(arg, dname))
591 continue;
592 call_glob_match(dname, strlen(dname), 1,
593 slash ? arg + len + 1 : NULL,
594 abpos, fbpos);
596 closedir(d);
597 } else {
598 call_glob_match(arg, len, 0,
599 slash ? arg + len + 1 : NULL,
600 abpos, fbpos);
602 if (slash)
603 *slash = '/';
606 static inline void call_glob_match(const char *name, int len, int from_glob,
607 char *arg, int abpos, int fbpos)
609 char *use_buf;
611 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, abpos + len + 2);
612 memcpy(glob.arg_buf + abpos, name, len);
613 abpos += len;
614 glob.arg_buf[abpos] = '\0';
616 if (fbpos >= 0) {
617 ENSURE_MEMSPACE(glob.filt_buf, char, glob.fbsize, fbpos + len + 2);
618 memcpy(glob.filt_buf + fbpos, name, len);
619 fbpos += len;
620 glob.filt_buf[fbpos] = '\0';
621 use_buf = glob.filt_buf;
622 } else
623 use_buf = glob.arg_buf;
625 if (from_glob || (arg && len)) {
626 STRUCT_STAT st;
627 int is_dir;
629 if (do_stat(glob.arg_buf, &st) != 0)
630 return;
631 is_dir = S_ISDIR(st.st_mode) != 0;
632 if (arg && !is_dir)
633 return;
635 if (daemon_filter_list.head
636 && check_filter(&daemon_filter_list, FLOG, use_buf, is_dir) < 0)
637 return;
640 if (arg) {
641 glob.arg_buf[abpos++] = '/';
642 glob.arg_buf[abpos] = '\0';
643 if (fbpos >= 0) {
644 glob.filt_buf[fbpos++] = '/';
645 glob.filt_buf[fbpos] = '\0';
647 glob_match(arg, abpos, fbpos);
648 } else {
649 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, glob.argc + 1);
650 if (!(glob.argv[glob.argc++] = strdup(glob.arg_buf)))
651 out_of_memory("glob_match");
655 /* This routine performs wild-card expansion of the pathname in "arg". Any
656 * daemon-excluded files/dirs will not be matched by the wildcards. Returns 0
657 * if a wild-card string is the only returned item (due to matching nothing). */
658 int glob_expand(const char *arg, char ***argv_p, int *argc_p, int *maxargs_p)
660 int ret, save_argc;
661 char *s;
663 if (!arg) {
664 if (glob.filt_buf)
665 free(glob.filt_buf);
666 free(glob.arg_buf);
667 memset(&glob, 0, sizeof glob);
668 return -1;
671 if (sanitize_paths)
672 s = sanitize_path(NULL, arg, "", 0, SP_KEEP_DOT_DIRS);
673 else {
674 s = strdup(arg);
675 if (!s)
676 out_of_memory("glob_expand");
677 clean_fname(s, CFN_KEEP_DOT_DIRS
678 | CFN_KEEP_TRAILING_SLASH
679 | CFN_COLLAPSE_DOT_DOT_DIRS);
682 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, MAXPATHLEN);
683 *glob.arg_buf = '\0';
685 glob.argc = save_argc = *argc_p;
686 glob.argv = *argv_p;
687 glob.maxargs = *maxargs_p;
689 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, 100);
691 glob_match(s, 0, -1);
693 /* The arg didn't match anything, so add the failed arg to the list. */
694 if (glob.argc == save_argc) {
695 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, glob.argc + 1);
696 glob.argv[glob.argc++] = s;
697 ret = 0;
698 } else {
699 free(s);
700 ret = 1;
703 *maxargs_p = glob.maxargs;
704 *argv_p = glob.argv;
705 *argc_p = glob.argc;
707 return ret;
710 /* This routine is only used in daemon mode. */
711 void glob_expand_module(char *base1, char *arg, char ***argv_p, int *argc_p, int *maxargs_p)
713 char *p, *s;
714 char *base = base1;
715 int base_len = strlen(base);
717 if (!arg || !*arg)
718 return;
720 if (strncmp(arg, base, base_len) == 0)
721 arg += base_len;
723 if (!(arg = strdup(arg)))
724 out_of_memory("glob_expand_module");
726 if (asprintf(&base," %s/", base1) <= 0)
727 out_of_memory("glob_expand_module");
728 base_len++;
730 for (s = arg; *s; s = p + base_len) {
731 if ((p = strstr(s, base)) != NULL)
732 *p = '\0'; /* split it at this point */
733 glob_expand(s, argv_p, argc_p, maxargs_p);
734 if (!p)
735 break;
738 free(arg);
739 free(base);
743 * Convert a string to lower case
745 void strlower(char *s)
747 while (*s) {
748 if (isUpper(s))
749 *s = toLower(s);
750 s++;
754 /* Join strings p1 & p2 into "dest" with a guaranteed '/' between them. (If
755 * p1 ends with a '/', no extra '/' is inserted.) Returns the length of both
756 * strings + 1 (if '/' was inserted), regardless of whether the null-terminated
757 * string fits into destsize. */
758 size_t pathjoin(char *dest, size_t destsize, const char *p1, const char *p2)
760 size_t len = strlcpy(dest, p1, destsize);
761 if (len < destsize - 1) {
762 if (!len || dest[len-1] != '/')
763 dest[len++] = '/';
764 if (len < destsize - 1)
765 len += strlcpy(dest + len, p2, destsize - len);
766 else {
767 dest[len] = '\0';
768 len += strlen(p2);
771 else
772 len += strlen(p2) + 1; /* Assume we'd insert a '/'. */
773 return len;
776 /* Join any number of strings together, putting them in "dest". The return
777 * value is the length of all the strings, regardless of whether the null-
778 * terminated whole fits in destsize. Your list of string pointers must end
779 * with a NULL to indicate the end of the list. */
780 size_t stringjoin(char *dest, size_t destsize, ...)
782 va_list ap;
783 size_t len, ret = 0;
784 const char *src;
786 va_start(ap, destsize);
787 while (1) {
788 if (!(src = va_arg(ap, const char *)))
789 break;
790 len = strlen(src);
791 ret += len;
792 if (destsize > 1) {
793 if (len >= destsize)
794 len = destsize - 1;
795 memcpy(dest, src, len);
796 destsize -= len;
797 dest += len;
800 *dest = '\0';
801 va_end(ap);
803 return ret;
806 int count_dir_elements(const char *p)
808 int cnt = 0, new_component = 1;
809 while (*p) {
810 if (*p++ == '/')
811 new_component = (*p != '.' || (p[1] != '/' && p[1] != '\0'));
812 else if (new_component) {
813 new_component = 0;
814 cnt++;
817 return cnt;
820 /* Turns multiple adjacent slashes into a single slash (possible exception:
821 * the preserving of two leading slashes at the start), drops all leading or
822 * interior "." elements unless CFN_KEEP_DOT_DIRS is flagged. Will also drop
823 * a trailing '.' after a '/' if CFN_DROP_TRAILING_DOT_DIR is flagged, removes
824 * a trailing slash (perhaps after removing the aforementioned dot) unless
825 * CFN_KEEP_TRAILING_SLASH is flagged, and will also collapse ".." elements
826 * (except at the start) if CFN_COLLAPSE_DOT_DOT_DIRS is flagged. If the
827 * resulting name would be empty, returns ".". */
828 unsigned int clean_fname(char *name, int flags)
830 char *limit = name - 1, *t = name, *f = name;
831 int anchored;
833 if (!name)
834 return 0;
836 if ((anchored = *f == '/') != 0) {
837 *t++ = *f++;
838 #ifdef __CYGWIN__
839 /* If there are exactly 2 slashes at the start, preserve
840 * them. Would break daemon excludes unless the paths are
841 * really treated differently, so used this sparingly. */
842 if (*f == '/' && f[1] != '/')
843 *t++ = *f++;
844 #endif
845 } else if (flags & CFN_KEEP_DOT_DIRS && *f == '.' && f[1] == '/') {
846 *t++ = *f++;
847 *t++ = *f++;
849 while (*f) {
850 /* discard extra slashes */
851 if (*f == '/') {
852 f++;
853 continue;
855 if (*f == '.') {
856 /* discard interior "." dirs */
857 if (f[1] == '/' && !(flags & CFN_KEEP_DOT_DIRS)) {
858 f += 2;
859 continue;
861 if (f[1] == '\0' && flags & CFN_DROP_TRAILING_DOT_DIR)
862 break;
863 /* collapse ".." dirs */
864 if (flags & CFN_COLLAPSE_DOT_DOT_DIRS
865 && f[1] == '.' && (f[2] == '/' || !f[2])) {
866 char *s = t - 1;
867 if (s == name && anchored) {
868 f += 2;
869 continue;
871 while (s > limit && *--s != '/') {}
872 if (s != t - 1 && (s < name || *s == '/')) {
873 t = s + 1;
874 f += 2;
875 continue;
877 limit = t + 2;
880 while (*f && (*t++ = *f++) != '/') {}
883 if (t > name+anchored && t[-1] == '/' && !(flags & CFN_KEEP_TRAILING_SLASH))
884 t--;
885 if (t == name)
886 *t++ = '.';
887 *t = '\0';
889 return t - name;
892 /* Make path appear as if a chroot had occurred. This handles a leading
893 * "/" (either removing it or expanding it) and any leading or embedded
894 * ".." components that attempt to escape past the module's top dir.
896 * If dest is NULL, a buffer is allocated to hold the result. It is legal
897 * to call with the dest and the path (p) pointing to the same buffer, but
898 * rootdir will be ignored to avoid expansion of the string.
900 * The rootdir string contains a value to use in place of a leading slash.
901 * Specify NULL to get the default of "module_dir".
903 * The depth var is a count of how many '..'s to allow at the start of the
904 * path.
906 * We also clean the path in a manner similar to clean_fname() but with a
907 * few differences:
909 * Turns multiple adjacent slashes into a single slash, gets rid of "." dir
910 * elements (INCLUDING a trailing dot dir), PRESERVES a trailing slash, and
911 * ALWAYS collapses ".." elements (except for those at the start of the
912 * string up to "depth" deep). If the resulting name would be empty,
913 * change it into a ".". */
914 char *sanitize_path(char *dest, const char *p, const char *rootdir, int depth,
915 int flags)
917 char *start, *sanp;
918 int rlen = 0, drop_dot_dirs = !relative_paths || !(flags & SP_KEEP_DOT_DIRS);
920 if (dest != p) {
921 int plen = strlen(p);
922 if (*p == '/') {
923 if (!rootdir)
924 rootdir = module_dir;
925 rlen = strlen(rootdir);
926 depth = 0;
927 p++;
929 if (dest) {
930 if (rlen + plen + 1 >= MAXPATHLEN)
931 return NULL;
932 } else if (!(dest = new_array(char, rlen + plen + 1)))
933 out_of_memory("sanitize_path");
934 if (rlen) {
935 memcpy(dest, rootdir, rlen);
936 if (rlen > 1)
937 dest[rlen++] = '/';
941 if (drop_dot_dirs) {
942 while (*p == '.' && p[1] == '/')
943 p += 2;
946 start = sanp = dest + rlen;
947 /* This loop iterates once per filename component in p, pointing at
948 * the start of the name (past any prior slash) for each iteration. */
949 while (*p) {
950 /* discard leading or extra slashes */
951 if (*p == '/') {
952 p++;
953 continue;
955 if (drop_dot_dirs) {
956 if (*p == '.' && (p[1] == '/' || p[1] == '\0')) {
957 /* skip "." component */
958 p++;
959 continue;
962 if (*p == '.' && p[1] == '.' && (p[2] == '/' || p[2] == '\0')) {
963 /* ".." component followed by slash or end */
964 if (depth <= 0 || sanp != start) {
965 p += 2;
966 if (sanp != start) {
967 /* back up sanp one level */
968 --sanp; /* now pointing at slash */
969 while (sanp > start && sanp[-1] != '/')
970 sanp--;
972 continue;
974 /* allow depth levels of .. at the beginning */
975 depth--;
976 /* move the virtual beginning to leave the .. alone */
977 start = sanp + 3;
979 /* copy one component through next slash */
980 while (*p && (*sanp++ = *p++) != '/') {}
982 if (sanp == dest) {
983 /* ended up with nothing, so put in "." component */
984 *sanp++ = '.';
986 *sanp = '\0';
988 return dest;
991 /* Like chdir(), but it keeps track of the current directory (in the
992 * global "curr_dir"), and ensures that the path size doesn't overflow.
993 * Also cleans the path using the clean_fname() function. */
994 int change_dir(const char *dir, int set_path_only)
996 static int initialised;
997 unsigned int len;
999 if (!initialised) {
1000 initialised = 1;
1001 if (getcwd(curr_dir, sizeof curr_dir - 1) == NULL) {
1002 rsyserr(FERROR, errno, "getcwd()");
1003 exit_cleanup(RERR_FILESELECT);
1005 curr_dir_len = strlen(curr_dir);
1008 if (!dir) /* this call was probably just to initialize */
1009 return 0;
1011 len = strlen(dir);
1012 if (len == 1 && *dir == '.')
1013 return 1;
1015 if (*dir == '/') {
1016 if (len >= sizeof curr_dir) {
1017 errno = ENAMETOOLONG;
1018 return 0;
1020 if (!set_path_only && chdir(dir))
1021 return 0;
1022 memcpy(curr_dir, dir, len + 1);
1023 } else {
1024 if (curr_dir_len + 1 + len >= sizeof curr_dir) {
1025 errno = ENAMETOOLONG;
1026 return 0;
1028 curr_dir[curr_dir_len] = '/';
1029 memcpy(curr_dir + curr_dir_len + 1, dir, len + 1);
1031 if (!set_path_only && chdir(curr_dir)) {
1032 curr_dir[curr_dir_len] = '\0';
1033 return 0;
1037 curr_dir_len = clean_fname(curr_dir, CFN_COLLAPSE_DOT_DOT_DIRS);
1038 if (sanitize_paths) {
1039 if (module_dirlen > curr_dir_len)
1040 module_dirlen = curr_dir_len;
1041 curr_dir_depth = count_dir_elements(curr_dir + module_dirlen);
1044 if (verbose >= 5 && !set_path_only)
1045 rprintf(FINFO, "[%s] change_dir(%s)\n", who_am_i(), curr_dir);
1047 return 1;
1050 /* This will make a relative path absolute and clean it up via clean_fname().
1051 * Returns the string, which might be newly allocated, or NULL on error. */
1052 char *normalize_path(char *path, BOOL force_newbuf, unsigned int *len_ptr)
1054 unsigned int len;
1056 if (*path != '/') { /* Make path absolute. */
1057 int len = strlen(path);
1058 if (curr_dir_len + 1 + len >= sizeof curr_dir)
1059 return NULL;
1060 curr_dir[curr_dir_len] = '/';
1061 memcpy(curr_dir + curr_dir_len + 1, path, len + 1);
1062 if (!(path = strdup(curr_dir)))
1063 out_of_memory("normalize_path");
1064 curr_dir[curr_dir_len] = '\0';
1065 } else if (force_newbuf) {
1066 if (!(path = strdup(path)))
1067 out_of_memory("normalize_path");
1070 len = clean_fname(path, CFN_COLLAPSE_DOT_DOT_DIRS | CFN_DROP_TRAILING_DOT_DIR);
1072 if (len_ptr)
1073 *len_ptr = len;
1075 return path;
1079 * Return a quoted string with the full pathname of the indicated filename.
1080 * The string " (in MODNAME)" may also be appended. The returned pointer
1081 * remains valid until the next time full_fname() is called.
1083 char *full_fname(const char *fn)
1085 static char *result = NULL;
1086 char *m1, *m2, *m3;
1087 char *p1, *p2;
1089 if (result)
1090 free(result);
1092 if (*fn == '/')
1093 p1 = p2 = "";
1094 else {
1095 p1 = curr_dir + module_dirlen;
1096 for (p2 = p1; *p2 == '/'; p2++) {}
1097 if (*p2)
1098 p2 = "/";
1100 if (module_id >= 0) {
1101 m1 = " (in ";
1102 m2 = lp_name(module_id);
1103 m3 = ")";
1104 } else
1105 m1 = m2 = m3 = "";
1107 if (asprintf(&result, "\"%s%s%s\"%s%s%s", p1, p2, fn, m1, m2, m3) <= 0)
1108 out_of_memory("full_fname");
1110 return result;
1113 static char partial_fname[MAXPATHLEN];
1115 char *partial_dir_fname(const char *fname)
1117 char *t = partial_fname;
1118 int sz = sizeof partial_fname;
1119 const char *fn;
1121 if ((fn = strrchr(fname, '/')) != NULL) {
1122 fn++;
1123 if (*partial_dir != '/') {
1124 int len = fn - fname;
1125 strncpy(t, fname, len); /* safe */
1126 t += len;
1127 sz -= len;
1129 } else
1130 fn = fname;
1131 if ((int)pathjoin(t, sz, partial_dir, fn) >= sz)
1132 return NULL;
1133 if (daemon_filter_list.head) {
1134 t = strrchr(partial_fname, '/');
1135 *t = '\0';
1136 if (check_filter(&daemon_filter_list, FLOG, partial_fname, 1) < 0)
1137 return NULL;
1138 *t = '/';
1139 if (check_filter(&daemon_filter_list, FLOG, partial_fname, 0) < 0)
1140 return NULL;
1143 return partial_fname;
1146 /* If no --partial-dir option was specified, we don't need to do anything
1147 * (the partial-dir is essentially '.'), so just return success. */
1148 int handle_partial_dir(const char *fname, int create)
1150 char *fn, *dir;
1152 if (fname != partial_fname)
1153 return 1;
1154 if (!create && *partial_dir == '/')
1155 return 1;
1156 if (!(fn = strrchr(partial_fname, '/')))
1157 return 1;
1159 *fn = '\0';
1160 dir = partial_fname;
1161 if (create) {
1162 STRUCT_STAT st;
1163 int statret = do_lstat(dir, &st);
1164 if (statret == 0 && !S_ISDIR(st.st_mode)) {
1165 if (do_unlink(dir) < 0) {
1166 *fn = '/';
1167 return 0;
1169 statret = -1;
1171 if (statret < 0 && do_mkdir(dir, 0700) < 0) {
1172 *fn = '/';
1173 return 0;
1175 } else
1176 do_rmdir(dir);
1177 *fn = '/';
1179 return 1;
1182 /* Determine if a symlink points outside the current directory tree.
1183 * This is considered "unsafe" because e.g. when mirroring somebody
1184 * else's machine it might allow them to establish a symlink to
1185 * /etc/passwd, and then read it through a web server.
1187 * Returns 1 if unsafe, 0 if safe.
1189 * Null symlinks and absolute symlinks are always unsafe.
1191 * Basically here we are concerned with symlinks whose target contains
1192 * "..", because this might cause us to walk back up out of the
1193 * transferred directory. We are not allowed to go back up and
1194 * reenter.
1196 * "dest" is the target of the symlink in question.
1198 * "src" is the top source directory currently applicable at the level
1199 * of the referenced symlink. This is usually the symlink's full path
1200 * (including its name), as referenced from the root of the transfer. */
1201 int unsafe_symlink(const char *dest, const char *src)
1203 const char *name, *slash;
1204 int depth = 0;
1206 /* all absolute and null symlinks are unsafe */
1207 if (!dest || !*dest || *dest == '/')
1208 return 1;
1210 /* find out what our safety margin is */
1211 for (name = src; (slash = strchr(name, '/')) != 0; name = slash+1) {
1212 /* ".." segment starts the count over. "." segment is ignored. */
1213 if (*name == '.' && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))) {
1214 if (name[1] == '.')
1215 depth = 0;
1216 } else
1217 depth++;
1218 while (slash[1] == '/') slash++; /* just in case src isn't clean */
1220 if (*name == '.' && name[1] == '.' && name[2] == '\0')
1221 depth = 0;
1223 for (name = dest; (slash = strchr(name, '/')) != 0; name = slash+1) {
1224 if (*name == '.' && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))) {
1225 if (name[1] == '.') {
1226 /* if at any point we go outside the current directory
1227 then stop - it is unsafe */
1228 if (--depth < 0)
1229 return 1;
1231 } else
1232 depth++;
1233 while (slash[1] == '/') slash++;
1235 if (*name == '.' && name[1] == '.' && name[2] == '\0')
1236 depth--;
1238 return depth < 0;
1241 #define HUMANIFY(mult) \
1242 do { \
1243 if (num >= mult || num <= -mult) { \
1244 double dnum = (double)num / mult; \
1245 char units; \
1246 if (num < 0) \
1247 dnum = -dnum; \
1248 if (dnum < mult) \
1249 units = 'K'; \
1250 else if ((dnum /= mult) < mult) \
1251 units = 'M'; \
1252 else { \
1253 dnum /= mult; \
1254 units = 'G'; \
1256 if (num < 0) \
1257 dnum = -dnum; \
1258 snprintf(bufs[n], sizeof bufs[0], "%.2f%c", dnum, units); \
1259 return bufs[n]; \
1261 } while (0)
1263 /* Return the int64 number as a string. If the --human-readable option was
1264 * specified, we may output the number in K, M, or G units. We can return
1265 * up to 4 buffers at a time. */
1266 char *human_num(int64 num)
1268 static char bufs[4][128]; /* more than enough room */
1269 static unsigned int n;
1270 char *s;
1271 int negated;
1273 n = (n + 1) % (sizeof bufs / sizeof bufs[0]);
1275 if (human_readable) {
1276 if (human_readable == 1)
1277 HUMANIFY(1000);
1278 else
1279 HUMANIFY(1024);
1282 s = bufs[n] + sizeof bufs[0] - 1;
1283 *s = '\0';
1285 if (!num)
1286 *--s = '0';
1287 if (num < 0) {
1288 /* A maximum-size negated number can't fit as a positive,
1289 * so do one digit in negated form to start us off. */
1290 *--s = (char)(-(num % 10)) + '0';
1291 num = -(num / 10);
1292 negated = 1;
1293 } else
1294 negated = 0;
1296 while (num) {
1297 *--s = (char)(num % 10) + '0';
1298 num /= 10;
1301 if (negated)
1302 *--s = '-';
1304 return s;
1307 /* Return the double number as a string. If the --human-readable option was
1308 * specified, we may output the number in K, M, or G units. We use a buffer
1309 * from human_num() to return our result. */
1310 char *human_dnum(double dnum, int decimal_digits)
1312 char *buf = human_num(dnum);
1313 int len = strlen(buf);
1314 if (isDigit(buf + len - 1)) {
1315 /* There's extra room in buf prior to the start of the num. */
1316 buf -= decimal_digits + 2;
1317 snprintf(buf, len + decimal_digits + 3, "%.*f", decimal_digits, dnum);
1319 return buf;
1322 /* Return the date and time as a string. Some callers tweak returned buf. */
1323 char *timestring(time_t t)
1325 static char TimeBuf[200];
1326 struct tm *tm = localtime(&t);
1327 char *p;
1329 #ifdef HAVE_STRFTIME
1330 strftime(TimeBuf, sizeof TimeBuf - 1, "%Y/%m/%d %H:%M:%S", tm);
1331 #else
1332 strlcpy(TimeBuf, asctime(tm), sizeof TimeBuf);
1333 #endif
1335 if ((p = strchr(TimeBuf, '\n')) != NULL)
1336 *p = '\0';
1338 return TimeBuf;
1342 * Sleep for a specified number of milliseconds.
1344 * Always returns TRUE. (In the future it might return FALSE if
1345 * interrupted.)
1347 int msleep(int t)
1349 int tdiff = 0;
1350 struct timeval tval, t1, t2;
1352 gettimeofday(&t1, NULL);
1354 while (tdiff < t) {
1355 tval.tv_sec = (t-tdiff)/1000;
1356 tval.tv_usec = 1000*((t-tdiff)%1000);
1358 errno = 0;
1359 select(0,NULL,NULL, NULL, &tval);
1361 gettimeofday(&t2, NULL);
1362 tdiff = (t2.tv_sec - t1.tv_sec)*1000 +
1363 (t2.tv_usec - t1.tv_usec)/1000;
1366 return True;
1369 /* Determine if two time_t values are equivalent (either exact, or in
1370 * the modification timestamp window established by --modify-window).
1372 * @retval 0 if the times should be treated as the same
1374 * @retval +1 if the first is later
1376 * @retval -1 if the 2nd is later
1378 int cmp_time(time_t file1, time_t file2)
1380 if (file2 > file1) {
1381 if (file2 - file1 <= modify_window)
1382 return 0;
1383 return -1;
1385 if (file1 - file2 <= modify_window)
1386 return 0;
1387 return 1;
1391 #ifdef __INSURE__XX
1392 #include <dlfcn.h>
1395 This routine is a trick to immediately catch errors when debugging
1396 with insure. A xterm with a gdb is popped up when insure catches
1397 a error. It is Linux specific.
1399 int _Insure_trap_error(int a1, int a2, int a3, int a4, int a5, int a6)
1401 static int (*fn)();
1402 int ret;
1403 char *cmd;
1405 asprintf(&cmd, "/usr/X11R6/bin/xterm -display :0 -T Panic -n Panic -e /bin/sh -c 'cat /tmp/ierrs.*.%d ; gdb /proc/%d/exe %d'",
1406 getpid(), getpid(), getpid());
1408 if (!fn) {
1409 static void *h;
1410 h = dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY);
1411 fn = dlsym(h, "_Insure_trap_error");
1414 ret = fn(a1, a2, a3, a4, a5, a6);
1416 system(cmd);
1418 free(cmd);
1420 return ret;
1422 #endif
1424 #define MALLOC_MAX 0x40000000
1426 void *_new_array(unsigned long num, unsigned int size, int use_calloc)
1428 if (num >= MALLOC_MAX/size)
1429 return NULL;
1430 return use_calloc ? calloc(num, size) : malloc(num * size);
1433 void *_realloc_array(void *ptr, unsigned int size, size_t num)
1435 if (num >= MALLOC_MAX/size)
1436 return NULL;
1437 if (!ptr)
1438 return malloc(size * num);
1439 return realloc(ptr, size * num);
1442 /* Take a filename and filename length and return the most significant
1443 * filename suffix we can find. This ignores suffixes such as "~",
1444 * ".bak", ".orig", ".~1~", etc. */
1445 const char *find_filename_suffix(const char *fn, int fn_len, int *len_ptr)
1447 const char *suf, *s;
1448 BOOL had_tilde;
1449 int s_len;
1451 /* One or more dots at the start aren't a suffix. */
1452 while (fn_len && *fn == '.') fn++, fn_len--;
1454 /* Ignore the ~ in a "foo~" filename. */
1455 if (fn_len > 1 && fn[fn_len-1] == '~')
1456 fn_len--, had_tilde = True;
1457 else
1458 had_tilde = False;
1460 /* Assume we don't find an suffix. */
1461 suf = "";
1462 *len_ptr = 0;
1464 /* Find the last significant suffix. */
1465 for (s = fn + fn_len; fn_len > 1; ) {
1466 while (*--s != '.' && s != fn) {}
1467 if (s == fn)
1468 break;
1469 s_len = fn_len - (s - fn);
1470 fn_len = s - fn;
1471 if (s_len == 4) {
1472 if (strcmp(s+1, "bak") == 0
1473 || strcmp(s+1, "old") == 0)
1474 continue;
1475 } else if (s_len == 5) {
1476 if (strcmp(s+1, "orig") == 0)
1477 continue;
1478 } else if (s_len > 2 && had_tilde
1479 && s[1] == '~' && isDigit(s + 2))
1480 continue;
1481 *len_ptr = s_len;
1482 suf = s;
1483 if (s_len == 1)
1484 break;
1485 /* Determine if the suffix is all digits. */
1486 for (s++, s_len--; s_len > 0; s++, s_len--) {
1487 if (!isDigit(s))
1488 return suf;
1490 /* An all-digit suffix may not be that signficant. */
1491 s = suf;
1494 return suf;
1497 /* This is an implementation of the Levenshtein distance algorithm. It
1498 * was implemented to avoid needing a two-dimensional matrix (to save
1499 * memory). It was also tweaked to try to factor in the ASCII distance
1500 * between changed characters as a minor distance quantity. The normal
1501 * Levenshtein units of distance (each signifying a single change between
1502 * the two strings) are defined as a "UNIT". */
1504 #define UNIT (1 << 16)
1506 uint32 fuzzy_distance(const char *s1, int len1, const char *s2, int len2)
1508 uint32 a[MAXPATHLEN], diag, above, left, diag_inc, above_inc, left_inc;
1509 int32 cost;
1510 int i1, i2;
1512 if (!len1 || !len2) {
1513 if (!len1) {
1514 s1 = s2;
1515 len1 = len2;
1517 for (i1 = 0, cost = 0; i1 < len1; i1++)
1518 cost += s1[i1];
1519 return (int32)len1 * UNIT + cost;
1522 for (i2 = 0; i2 < len2; i2++)
1523 a[i2] = (i2+1) * UNIT;
1525 for (i1 = 0; i1 < len1; i1++) {
1526 diag = i1 * UNIT;
1527 above = (i1+1) * UNIT;
1528 for (i2 = 0; i2 < len2; i2++) {
1529 left = a[i2];
1530 if ((cost = *((uchar*)s1+i1) - *((uchar*)s2+i2)) != 0) {
1531 if (cost < 0)
1532 cost = UNIT - cost;
1533 else
1534 cost = UNIT + cost;
1536 diag_inc = diag + cost;
1537 left_inc = left + UNIT + *((uchar*)s1+i1);
1538 above_inc = above + UNIT + *((uchar*)s2+i2);
1539 a[i2] = above = left < above
1540 ? (left_inc < diag_inc ? left_inc : diag_inc)
1541 : (above_inc < diag_inc ? above_inc : diag_inc);
1542 diag = left;
1546 return a[len2-1];
1549 #define BB_SLOT_SIZE (16*1024) /* Desired size in bytes */
1550 #define BB_PER_SLOT_BITS (BB_SLOT_SIZE * 8) /* Number of bits per slot */
1551 #define BB_PER_SLOT_INTS (BB_SLOT_SIZE / 4) /* Number of int32s per slot */
1553 struct bitbag {
1554 uint32 **bits;
1555 int slot_cnt;
1558 struct bitbag *bitbag_create(int max_ndx)
1560 struct bitbag *bb = new(struct bitbag);
1561 bb->slot_cnt = (max_ndx + BB_PER_SLOT_BITS - 1) / BB_PER_SLOT_BITS;
1563 if (!(bb->bits = (uint32**)calloc(bb->slot_cnt, sizeof (uint32*))))
1564 out_of_memory("bitbag_create");
1566 return bb;
1569 void bitbag_set_bit(struct bitbag *bb, int ndx)
1571 int slot = ndx / BB_PER_SLOT_BITS;
1572 ndx %= BB_PER_SLOT_BITS;
1574 if (!bb->bits[slot]) {
1575 if (!(bb->bits[slot] = (uint32*)calloc(BB_PER_SLOT_INTS, 4)))
1576 out_of_memory("bitbag_set_bit");
1579 bb->bits[slot][ndx/32] |= 1u << (ndx % 32);
1582 #if 0 /* not needed yet */
1583 void bitbag_clear_bit(struct bitbag *bb, int ndx)
1585 int slot = ndx / BB_PER_SLOT_BITS;
1586 ndx %= BB_PER_SLOT_BITS;
1588 if (!bb->bits[slot])
1589 return;
1591 bb->bits[slot][ndx/32] &= ~(1u << (ndx % 32));
1594 int bitbag_check_bit(struct bitbag *bb, int ndx)
1596 int slot = ndx / BB_PER_SLOT_BITS;
1597 ndx %= BB_PER_SLOT_BITS;
1599 if (!bb->bits[slot])
1600 return 0;
1602 return bb->bits[slot][ndx/32] & (1u << (ndx % 32)) ? 1 : 0;
1604 #endif
1606 /* Call this with -1 to start checking from 0. Returns -1 at the end. */
1607 int bitbag_next_bit(struct bitbag *bb, int after)
1609 uint32 bits, mask;
1610 int i, ndx = after + 1;
1611 int slot = ndx / BB_PER_SLOT_BITS;
1612 ndx %= BB_PER_SLOT_BITS;
1614 mask = (1u << (ndx % 32)) - 1;
1615 for (i = ndx / 32; slot < bb->slot_cnt; slot++, i = mask = 0) {
1616 if (!bb->bits[slot])
1617 continue;
1618 for ( ; i < BB_PER_SLOT_INTS; i++, mask = 0) {
1619 if (!(bits = bb->bits[slot][i] & ~mask))
1620 continue;
1621 /* The xor magic figures out the lowest enabled bit in
1622 * bits, and the switch quickly computes log2(bit). */
1623 switch (bits ^ (bits & (bits-1))) {
1624 #define LOG2(n) case 1u << n: return slot*BB_PER_SLOT_BITS + i*32 + n
1625 LOG2(0); LOG2(1); LOG2(2); LOG2(3);
1626 LOG2(4); LOG2(5); LOG2(6); LOG2(7);
1627 LOG2(8); LOG2(9); LOG2(10); LOG2(11);
1628 LOG2(12); LOG2(13); LOG2(14); LOG2(15);
1629 LOG2(16); LOG2(17); LOG2(18); LOG2(19);
1630 LOG2(20); LOG2(21); LOG2(22); LOG2(23);
1631 LOG2(24); LOG2(25); LOG2(26); LOG2(27);
1632 LOG2(28); LOG2(29); LOG2(30); LOG2(31);
1634 return -1; /* impossible... */
1638 return -1;
1641 void flist_ndx_push(flist_ndx_list *lp, int ndx)
1643 struct flist_ndx_item *item;
1645 if (!(item = new(struct flist_ndx_item)))
1646 out_of_memory("flist_ndx_push");
1647 item->next = NULL;
1648 item->ndx = ndx;
1649 if (lp->tail)
1650 lp->tail->next = item;
1651 else
1652 lp->head = item;
1653 lp->tail = item;
1656 int flist_ndx_pop(flist_ndx_list *lp)
1658 struct flist_ndx_item *next;
1659 int ndx;
1661 if (!lp->head)
1662 return -1;
1664 ndx = lp->head->ndx;
1665 next = lp->head->next;
1666 free(lp->head);
1667 lp->head = next;
1668 if (!next)
1669 lp->tail = NULL;
1671 return ndx;
1674 void *expand_item_list(item_list *lp, size_t item_size,
1675 const char *desc, int incr)
1677 /* First time through, 0 <= 0, so list is expanded. */
1678 if (lp->malloced <= lp->count) {
1679 void *new_ptr;
1680 size_t new_size = lp->malloced;
1681 if (incr < 0)
1682 new_size += -incr; /* increase slowly */
1683 else if (new_size < (size_t)incr)
1684 new_size += incr;
1685 else
1686 new_size *= 2;
1687 if (new_size < lp->malloced)
1688 overflow_exit("expand_item_list");
1689 /* Using _realloc_array() lets us pass the size, not a type. */
1690 new_ptr = _realloc_array(lp->items, item_size, new_size);
1691 if (verbose >= 4) {
1692 rprintf(FINFO, "[%s] expand %s to %.0f bytes, did%s move\n",
1693 who_am_i(), desc, (double)new_size * item_size,
1694 new_ptr == lp->items ? " not" : "");
1696 if (!new_ptr)
1697 out_of_memory("expand_item_list");
1699 lp->items = new_ptr;
1700 lp->malloced = new_size;
1702 return (char*)lp->items + (lp->count++ * item_size);