Tweaked the month guess in OLDNEWS.
[rsync.git] / util.c
blobece391872c3da282ff72df11e6537cec1d2061e9
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-2008 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 human_readable;
32 extern int preserve_xattrs;
33 extern char *module_dir;
34 extern unsigned int module_dirlen;
35 extern mode_t orig_umask;
36 extern char *partial_dir;
37 extern struct filter_list_struct daemon_filter_list;
39 int sanitize_paths = 0;
41 char curr_dir[MAXPATHLEN];
42 unsigned int curr_dir_len;
43 int curr_dir_depth; /* This is only set for a sanitizing daemon. */
45 /* Set a fd into nonblocking mode. */
46 void set_nonblocking(int fd)
48 int val;
50 if ((val = fcntl(fd, F_GETFL)) == -1)
51 return;
52 if (!(val & NONBLOCK_FLAG)) {
53 val |= NONBLOCK_FLAG;
54 fcntl(fd, F_SETFL, val);
58 /* Set a fd into blocking mode. */
59 void set_blocking(int fd)
61 int val;
63 if ((val = fcntl(fd, F_GETFL)) == -1)
64 return;
65 if (val & NONBLOCK_FLAG) {
66 val &= ~NONBLOCK_FLAG;
67 fcntl(fd, F_SETFL, val);
71 /**
72 * Create a file descriptor pair - like pipe() but use socketpair if
73 * possible (because of blocking issues on pipes).
75 * Always set non-blocking.
77 int fd_pair(int fd[2])
79 int ret;
81 #ifdef HAVE_SOCKETPAIR
82 ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fd);
83 #else
84 ret = pipe(fd);
85 #endif
87 if (ret == 0) {
88 set_nonblocking(fd[0]);
89 set_nonblocking(fd[1]);
92 return ret;
95 void print_child_argv(const char *prefix, char **cmd)
97 rprintf(FCLIENT, "%s ", prefix);
98 for (; *cmd; cmd++) {
99 /* Look for characters that ought to be quoted. This
100 * is not a great quoting algorithm, but it's
101 * sufficient for a log message. */
102 if (strspn(*cmd, "abcdefghijklmnopqrstuvwxyz"
103 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
104 "0123456789"
105 ",.-_=+@/") != strlen(*cmd)) {
106 rprintf(FCLIENT, "\"%s\" ", *cmd);
107 } else {
108 rprintf(FCLIENT, "%s ", *cmd);
111 rprintf(FCLIENT, "\n");
114 NORETURN void out_of_memory(const char *str)
116 rprintf(FERROR, "ERROR: out of memory in %s [%s]\n", str, who_am_i());
117 exit_cleanup(RERR_MALLOC);
120 NORETURN void overflow_exit(const char *str)
122 rprintf(FERROR, "ERROR: buffer overflow in %s [%s]\n", str, who_am_i());
123 exit_cleanup(RERR_MALLOC);
126 int set_modtime(const char *fname, time_t modtime, mode_t mode)
128 #if !defined HAVE_LUTIMES || !defined HAVE_UTIMES
129 if (S_ISLNK(mode))
130 return 1;
131 #endif
133 if (verbose > 2) {
134 rprintf(FINFO, "set modtime of %s to (%ld) %s",
135 fname, (long)modtime,
136 asctime(localtime(&modtime)));
139 if (dry_run)
140 return 0;
143 #ifdef HAVE_UTIMES
144 struct timeval t[2];
145 t[0].tv_sec = time(NULL);
146 t[0].tv_usec = 0;
147 t[1].tv_sec = modtime;
148 t[1].tv_usec = 0;
149 # ifdef HAVE_LUTIMES
150 if (S_ISLNK(mode)) {
151 if (lutimes(fname, t) < 0)
152 return errno == ENOSYS ? 1 : -1;
153 return 0;
155 # endif
156 return utimes(fname, t);
157 #elif defined HAVE_STRUCT_UTIMBUF
158 struct utimbuf tbuf;
159 tbuf.actime = time(NULL);
160 tbuf.modtime = modtime;
161 return utime(fname,&tbuf);
162 #elif defined HAVE_UTIME
163 time_t t[2];
164 t[0] = time(NULL);
165 t[1] = modtime;
166 return utime(fname,t);
167 #else
168 #error No file-time-modification routine found!
169 #endif
173 /* This creates a new directory with default permissions. Since there
174 * might be some directory-default permissions affecting this, we can't
175 * force the permissions directly using the original umask and mkdir(). */
176 int mkdir_defmode(char *fname)
178 int ret;
180 umask(orig_umask);
181 ret = do_mkdir(fname, ACCESSPERMS);
182 umask(0);
184 return ret;
187 /* Create any necessary directories in fname. Any missing directories are
188 * created with default permissions. */
189 int create_directory_path(char *fname)
191 char *p;
192 int ret = 0;
194 while (*fname == '/')
195 fname++;
196 while (strncmp(fname, "./", 2) == 0)
197 fname += 2;
199 umask(orig_umask);
200 p = fname;
201 while ((p = strchr(p,'/')) != NULL) {
202 *p = '\0';
203 if (do_mkdir(fname, ACCESSPERMS) < 0 && errno != EEXIST)
204 ret = -1;
205 *p++ = '/';
207 umask(0);
209 return ret;
213 * Write @p len bytes at @p ptr to descriptor @p desc, retrying if
214 * interrupted.
216 * @retval len upon success
218 * @retval <0 write's (negative) error code
220 * Derived from GNU C's cccp.c.
222 int full_write(int desc, const char *ptr, size_t len)
224 int total_written;
226 total_written = 0;
227 while (len > 0) {
228 int written = write(desc, ptr, len);
229 if (written < 0) {
230 if (errno == EINTR)
231 continue;
232 return written;
234 total_written += written;
235 ptr += written;
236 len -= written;
238 return total_written;
242 * Read @p len bytes at @p ptr from descriptor @p desc, retrying if
243 * interrupted.
245 * @retval >0 the actual number of bytes read
247 * @retval 0 for EOF
249 * @retval <0 for an error.
251 * Derived from GNU C's cccp.c. */
252 static int safe_read(int desc, char *ptr, size_t len)
254 int n_chars;
256 if (len == 0)
257 return len;
259 do {
260 n_chars = read(desc, ptr, len);
261 } while (n_chars < 0 && errno == EINTR);
263 return n_chars;
266 /* Copy a file. If ofd < 0, copy_file unlinks and opens the "dest" file.
267 * Otherwise, it just writes to and closes the provided file descriptor.
268 * In either case, if --xattrs are being preserved, the dest file will
269 * have its xattrs set from the source file.
271 * This is used in conjunction with the --temp-dir, --backup, and
272 * --copy-dest options. */
273 int copy_file(const char *source, const char *dest, int ofd,
274 mode_t mode, int create_bak_dir)
276 int ifd;
277 char buf[1024 * 8];
278 int len; /* Number of bytes read into `buf'. */
280 if ((ifd = do_open(source, O_RDONLY, 0)) < 0) {
281 int save_errno = errno;
282 rsyserr(FERROR_XFER, errno, "open %s", full_fname(source));
283 errno = save_errno;
284 return -1;
287 if (ofd < 0) {
288 if (robust_unlink(dest) && errno != ENOENT) {
289 int save_errno = errno;
290 rsyserr(FERROR_XFER, errno, "unlink %s", full_fname(dest));
291 errno = save_errno;
292 return -1;
295 if ((ofd = do_open(dest, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode)) < 0) {
296 int save_errno = errno ? errno : EINVAL; /* 0 paranoia */
297 if (create_bak_dir && errno == ENOENT && make_bak_dir(dest) == 0) {
298 if ((ofd = do_open(dest, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode)) < 0)
299 save_errno = errno ? errno : save_errno;
300 else
301 save_errno = 0;
303 if (save_errno) {
304 rsyserr(FERROR_XFER, save_errno, "open %s", full_fname(dest));
305 close(ifd);
306 errno = save_errno;
307 return -1;
312 while ((len = safe_read(ifd, buf, sizeof buf)) > 0) {
313 if (full_write(ofd, buf, len) < 0) {
314 int save_errno = errno;
315 rsyserr(FERROR_XFER, errno, "write %s", full_fname(dest));
316 close(ifd);
317 close(ofd);
318 errno = save_errno;
319 return -1;
323 if (len < 0) {
324 int save_errno = errno;
325 rsyserr(FERROR_XFER, errno, "read %s", full_fname(source));
326 close(ifd);
327 close(ofd);
328 errno = save_errno;
329 return -1;
332 if (close(ifd) < 0) {
333 rsyserr(FWARNING, errno, "close failed on %s",
334 full_fname(source));
337 if (close(ofd) < 0) {
338 int save_errno = errno;
339 rsyserr(FERROR_XFER, errno, "close failed on %s",
340 full_fname(dest));
341 errno = save_errno;
342 return -1;
345 #ifdef SUPPORT_XATTRS
346 if (preserve_xattrs)
347 copy_xattrs(source, dest);
348 #endif
350 return 0;
353 /* MAX_RENAMES should be 10**MAX_RENAMES_DIGITS */
354 #define MAX_RENAMES_DIGITS 3
355 #define MAX_RENAMES 1000
358 * Robust unlink: some OS'es (HPUX) refuse to unlink busy files, so
359 * rename to <path>/.rsyncNNN instead.
361 * Note that successive rsync runs will shuffle the filenames around a
362 * bit as long as the file is still busy; this is because this function
363 * does not know if the unlink call is due to a new file coming in, or
364 * --delete trying to remove old .rsyncNNN files, hence it renames it
365 * each time.
367 int robust_unlink(const char *fname)
369 #ifndef ETXTBSY
370 return do_unlink(fname);
371 #else
372 static int counter = 1;
373 int rc, pos, start;
374 char path[MAXPATHLEN];
376 rc = do_unlink(fname);
377 if (rc == 0 || errno != ETXTBSY)
378 return rc;
380 if ((pos = strlcpy(path, fname, MAXPATHLEN)) >= MAXPATHLEN)
381 pos = MAXPATHLEN - 1;
383 while (pos > 0 && path[pos-1] != '/')
384 pos--;
385 pos += strlcpy(path+pos, ".rsync", MAXPATHLEN-pos);
387 if (pos > (MAXPATHLEN-MAX_RENAMES_DIGITS-1)) {
388 errno = ETXTBSY;
389 return -1;
392 /* start where the last one left off to reduce chance of clashes */
393 start = counter;
394 do {
395 snprintf(&path[pos], MAX_RENAMES_DIGITS+1, "%03d", counter);
396 if (++counter >= MAX_RENAMES)
397 counter = 1;
398 } while ((rc = access(path, 0)) == 0 && counter != start);
400 if (verbose > 0) {
401 rprintf(FWARNING, "renaming %s to %s because of text busy\n",
402 fname, path);
405 /* maybe we should return rename()'s exit status? Nah. */
406 if (do_rename(fname, path) != 0) {
407 errno = ETXTBSY;
408 return -1;
410 return 0;
411 #endif
414 /* Returns 0 on successful rename, 1 if we successfully copied the file
415 * across filesystems, -2 if copy_file() failed, and -1 on other errors.
416 * If partialptr is not NULL and we need to do a copy, copy the file into
417 * the active partial-dir instead of over the destination file. */
418 int robust_rename(const char *from, const char *to, const char *partialptr,
419 int mode)
421 int tries = 4;
423 while (tries--) {
424 if (do_rename(from, to) == 0)
425 return 0;
427 switch (errno) {
428 #ifdef ETXTBSY
429 case ETXTBSY:
430 if (robust_unlink(to) != 0) {
431 errno = ETXTBSY;
432 return -1;
434 errno = ETXTBSY;
435 break;
436 #endif
437 case EXDEV:
438 if (partialptr) {
439 if (!handle_partial_dir(partialptr,PDIR_CREATE))
440 return -2;
441 to = partialptr;
443 if (copy_file(from, to, -1, mode, 0) != 0)
444 return -2;
445 do_unlink(from);
446 return 1;
447 default:
448 return -1;
451 return -1;
454 static pid_t all_pids[10];
455 static int num_pids;
457 /** Fork and record the pid of the child. **/
458 pid_t do_fork(void)
460 pid_t newpid = fork();
462 if (newpid != 0 && newpid != -1) {
463 all_pids[num_pids++] = newpid;
465 return newpid;
469 * Kill all children.
471 * @todo It would be kind of nice to make sure that they are actually
472 * all our children before we kill them, because their pids may have
473 * been recycled by some other process. Perhaps when we wait for a
474 * child, we should remove it from this array. Alternatively we could
475 * perhaps use process groups, but I think that would not work on
476 * ancient Unix versions that don't support them.
478 void kill_all(int sig)
480 int i;
482 for (i = 0; i < num_pids; i++) {
483 /* Let's just be a little careful where we
484 * point that gun, hey? See kill(2) for the
485 * magic caused by negative values. */
486 pid_t p = all_pids[i];
488 if (p == getpid())
489 continue;
490 if (p <= 0)
491 continue;
493 kill(p, sig);
497 /** Turn a user name into a uid */
498 int name_to_uid(const char *name, uid_t *uid_p)
500 struct passwd *pass;
501 if (!name || !*name)
502 return 0;
503 if (!(pass = getpwnam(name)))
504 return 0;
505 *uid_p = pass->pw_uid;
506 return 1;
509 /** Turn a group name into a gid */
510 int name_to_gid(const char *name, gid_t *gid_p)
512 struct group *grp;
513 if (!name || !*name)
514 return 0;
515 if (!(grp = getgrnam(name)))
516 return 0;
517 *gid_p = grp->gr_gid;
518 return 1;
521 /** Lock a byte range in a open file */
522 int lock_range(int fd, int offset, int len)
524 struct flock lock;
526 lock.l_type = F_WRLCK;
527 lock.l_whence = SEEK_SET;
528 lock.l_start = offset;
529 lock.l_len = len;
530 lock.l_pid = 0;
532 return fcntl(fd,F_SETLK,&lock) == 0;
535 #define ENSURE_MEMSPACE(buf, type, sz, req) \
536 if ((req) > sz && !(buf = realloc_array(buf, type, sz = MAX(sz * 2, req)))) \
537 out_of_memory("glob_expand")
539 static inline void call_glob_match(const char *name, int len, int from_glob,
540 char *arg, int abpos, int fbpos);
542 static struct glob_data {
543 char *arg_buf, *filt_buf, **argv;
544 int absize, fbsize, maxargs, argc;
545 } glob;
547 static void glob_match(char *arg, int abpos, int fbpos)
549 int len;
550 char *slash;
552 while (*arg == '.' && arg[1] == '/') {
553 if (fbpos < 0) {
554 ENSURE_MEMSPACE(glob.filt_buf, char, glob.fbsize, glob.absize);
555 memcpy(glob.filt_buf, glob.arg_buf, abpos + 1);
556 fbpos = abpos;
558 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, abpos + 3);
559 glob.arg_buf[abpos++] = *arg++;
560 glob.arg_buf[abpos++] = *arg++;
561 glob.arg_buf[abpos] = '\0';
563 if ((slash = strchr(arg, '/')) != NULL) {
564 *slash = '\0';
565 len = slash - arg;
566 } else
567 len = strlen(arg);
568 if (strpbrk(arg, "*?[")) {
569 struct dirent *di;
570 DIR *d;
572 if (!(d = opendir(abpos ? glob.arg_buf : ".")))
573 return;
574 while ((di = readdir(d)) != NULL) {
575 char *dname = d_name(di);
576 if (dname[0] == '.' && (dname[1] == '\0'
577 || (dname[1] == '.' && dname[2] == '\0')))
578 continue;
579 if (!wildmatch(arg, dname))
580 continue;
581 call_glob_match(dname, strlen(dname), 1,
582 slash ? arg + len + 1 : NULL,
583 abpos, fbpos);
585 closedir(d);
586 } else {
587 call_glob_match(arg, len, 0,
588 slash ? arg + len + 1 : NULL,
589 abpos, fbpos);
591 if (slash)
592 *slash = '/';
595 static inline void call_glob_match(const char *name, int len, int from_glob,
596 char *arg, int abpos, int fbpos)
598 char *use_buf;
600 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, abpos + len + 2);
601 memcpy(glob.arg_buf + abpos, name, len);
602 abpos += len;
603 glob.arg_buf[abpos] = '\0';
605 if (fbpos >= 0) {
606 ENSURE_MEMSPACE(glob.filt_buf, char, glob.fbsize, fbpos + len + 2);
607 memcpy(glob.filt_buf + fbpos, name, len);
608 fbpos += len;
609 glob.filt_buf[fbpos] = '\0';
610 use_buf = glob.filt_buf;
611 } else
612 use_buf = glob.arg_buf;
614 if (from_glob || (arg && len)) {
615 STRUCT_STAT st;
616 int is_dir;
618 if (do_stat(glob.arg_buf, &st) != 0)
619 return;
620 is_dir = S_ISDIR(st.st_mode) != 0;
621 if (arg && !is_dir)
622 return;
624 if (daemon_filter_list.head
625 && check_filter(&daemon_filter_list, FLOG, use_buf, is_dir) < 0)
626 return;
629 if (arg) {
630 glob.arg_buf[abpos++] = '/';
631 glob.arg_buf[abpos] = '\0';
632 if (fbpos >= 0) {
633 glob.filt_buf[fbpos++] = '/';
634 glob.filt_buf[fbpos] = '\0';
636 glob_match(arg, abpos, fbpos);
637 } else {
638 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, glob.argc + 1);
639 if (!(glob.argv[glob.argc++] = strdup(glob.arg_buf)))
640 out_of_memory("glob_match");
644 /* This routine performs wild-card expansion of the pathname in "arg". Any
645 * daemon-excluded files/dirs will not be matched by the wildcards. Returns 0
646 * if a wild-card string is the only returned item (due to matching nothing). */
647 int glob_expand(const char *arg, char ***argv_p, int *argc_p, int *maxargs_p)
649 int ret, save_argc;
650 char *s;
652 if (!arg) {
653 if (glob.filt_buf)
654 free(glob.filt_buf);
655 free(glob.arg_buf);
656 memset(&glob, 0, sizeof glob);
657 return -1;
660 if (sanitize_paths)
661 s = sanitize_path(NULL, arg, "", 0, SP_KEEP_DOT_DIRS);
662 else {
663 s = strdup(arg);
664 if (!s)
665 out_of_memory("glob_expand");
666 clean_fname(s, CFN_KEEP_DOT_DIRS
667 | CFN_KEEP_TRAILING_SLASH
668 | CFN_COLLAPSE_DOT_DOT_DIRS);
671 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, MAXPATHLEN);
672 *glob.arg_buf = '\0';
674 glob.argc = save_argc = *argc_p;
675 glob.argv = *argv_p;
676 glob.maxargs = *maxargs_p;
678 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, 100);
680 glob_match(s, 0, -1);
682 /* The arg didn't match anything, so add the failed arg to the list. */
683 if (glob.argc == save_argc) {
684 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, glob.argc + 1);
685 glob.argv[glob.argc++] = s;
686 ret = 0;
687 } else {
688 free(s);
689 ret = 1;
692 *maxargs_p = glob.maxargs;
693 *argv_p = glob.argv;
694 *argc_p = glob.argc;
696 return ret;
699 /* This routine is only used in daemon mode. */
700 void glob_expand_module(char *base1, char *arg, char ***argv_p, int *argc_p, int *maxargs_p)
702 char *p, *s;
703 char *base = base1;
704 int base_len = strlen(base);
706 if (!arg || !*arg)
707 return;
709 if (strncmp(arg, base, base_len) == 0)
710 arg += base_len;
712 if (!(arg = strdup(arg)))
713 out_of_memory("glob_expand_module");
715 if (asprintf(&base," %s/", base1) <= 0)
716 out_of_memory("glob_expand_module");
717 base_len++;
719 for (s = arg; *s; s = p + base_len) {
720 if ((p = strstr(s, base)) != NULL)
721 *p = '\0'; /* split it at this point */
722 glob_expand(s, argv_p, argc_p, maxargs_p);
723 if (!p)
724 break;
727 free(arg);
728 free(base);
732 * Convert a string to lower case
734 void strlower(char *s)
736 while (*s) {
737 if (isUpper(s))
738 *s = toLower(s);
739 s++;
743 /* Join strings p1 & p2 into "dest" with a guaranteed '/' between them. (If
744 * p1 ends with a '/', no extra '/' is inserted.) Returns the length of both
745 * strings + 1 (if '/' was inserted), regardless of whether the null-terminated
746 * string fits into destsize. */
747 size_t pathjoin(char *dest, size_t destsize, const char *p1, const char *p2)
749 size_t len = strlcpy(dest, p1, destsize);
750 if (len < destsize - 1) {
751 if (!len || dest[len-1] != '/')
752 dest[len++] = '/';
753 if (len < destsize - 1)
754 len += strlcpy(dest + len, p2, destsize - len);
755 else {
756 dest[len] = '\0';
757 len += strlen(p2);
760 else
761 len += strlen(p2) + 1; /* Assume we'd insert a '/'. */
762 return len;
765 /* Join any number of strings together, putting them in "dest". The return
766 * value is the length of all the strings, regardless of whether the null-
767 * terminated whole fits in destsize. Your list of string pointers must end
768 * with a NULL to indicate the end of the list. */
769 size_t stringjoin(char *dest, size_t destsize, ...)
771 va_list ap;
772 size_t len, ret = 0;
773 const char *src;
775 va_start(ap, destsize);
776 while (1) {
777 if (!(src = va_arg(ap, const char *)))
778 break;
779 len = strlen(src);
780 ret += len;
781 if (destsize > 1) {
782 if (len >= destsize)
783 len = destsize - 1;
784 memcpy(dest, src, len);
785 destsize -= len;
786 dest += len;
789 *dest = '\0';
790 va_end(ap);
792 return ret;
795 int count_dir_elements(const char *p)
797 int cnt = 0, new_component = 1;
798 while (*p) {
799 if (*p++ == '/')
800 new_component = (*p != '.' || (p[1] != '/' && p[1] != '\0'));
801 else if (new_component) {
802 new_component = 0;
803 cnt++;
806 return cnt;
809 /* Turns multiple adjacent slashes into a single slash (possible exception:
810 * the preserving of two leading slashes at the start), drops all leading or
811 * interior "." elements unless CFN_KEEP_DOT_DIRS is flagged. Will also drop
812 * a trailing '.' after a '/' if CFN_DROP_TRAILING_DOT_DIR is flagged, removes
813 * a trailing slash (perhaps after removing the aforementioned dot) unless
814 * CFN_KEEP_TRAILING_SLASH is flagged, and will also collapse ".." elements
815 * (except at the start) if CFN_COLLAPSE_DOT_DOT_DIRS is flagged. If the
816 * resulting name would be empty, returns ".". */
817 unsigned int clean_fname(char *name, int flags)
819 char *limit = name - 1, *t = name, *f = name;
820 int anchored;
822 if (!name)
823 return 0;
825 if ((anchored = *f == '/') != 0) {
826 *t++ = *f++;
827 #ifdef __CYGWIN__
828 /* If there are exactly 2 slashes at the start, preserve
829 * them. Would break daemon excludes unless the paths are
830 * really treated differently, so used this sparingly. */
831 if (*f == '/' && f[1] != '/')
832 *t++ = *f++;
833 #endif
834 } else if (flags & CFN_KEEP_DOT_DIRS && *f == '.' && f[1] == '/') {
835 *t++ = *f++;
836 *t++ = *f++;
838 while (*f) {
839 /* discard extra slashes */
840 if (*f == '/') {
841 f++;
842 continue;
844 if (*f == '.') {
845 /* discard interior "." dirs */
846 if (f[1] == '/' && !(flags & CFN_KEEP_DOT_DIRS)) {
847 f += 2;
848 continue;
850 if (f[1] == '\0' && flags & CFN_DROP_TRAILING_DOT_DIR)
851 break;
852 /* collapse ".." dirs */
853 if (flags & CFN_COLLAPSE_DOT_DOT_DIRS
854 && f[1] == '.' && (f[2] == '/' || !f[2])) {
855 char *s = t - 1;
856 if (s == name && anchored) {
857 f += 2;
858 continue;
860 while (s > limit && *--s != '/') {}
861 if (s != t - 1 && (s < name || *s == '/')) {
862 t = s + 1;
863 f += 2;
864 continue;
866 limit = t + 2;
869 while (*f && (*t++ = *f++) != '/') {}
872 if (t > name+anchored && t[-1] == '/' && !(flags & CFN_KEEP_TRAILING_SLASH))
873 t--;
874 if (t == name)
875 *t++ = '.';
876 *t = '\0';
878 return t - name;
881 /* Make path appear as if a chroot had occurred. This handles a leading
882 * "/" (either removing it or expanding it) and any leading or embedded
883 * ".." components that attempt to escape past the module's top dir.
885 * If dest is NULL, a buffer is allocated to hold the result. It is legal
886 * to call with the dest and the path (p) pointing to the same buffer, but
887 * rootdir will be ignored to avoid expansion of the string.
889 * The rootdir string contains a value to use in place of a leading slash.
890 * Specify NULL to get the default of "module_dir".
892 * The depth var is a count of how many '..'s to allow at the start of the
893 * path.
895 * We also clean the path in a manner similar to clean_fname() but with a
896 * few differences:
898 * Turns multiple adjacent slashes into a single slash, gets rid of "." dir
899 * elements (INCLUDING a trailing dot dir), PRESERVES a trailing slash, and
900 * ALWAYS collapses ".." elements (except for those at the start of the
901 * string up to "depth" deep). If the resulting name would be empty,
902 * change it into a ".". */
903 char *sanitize_path(char *dest, const char *p, const char *rootdir, int depth,
904 int flags)
906 char *start, *sanp;
907 int rlen = 0, drop_dot_dirs = !relative_paths || !(flags & SP_KEEP_DOT_DIRS);
909 if (dest != p) {
910 int plen = strlen(p);
911 if (*p == '/') {
912 if (!rootdir)
913 rootdir = module_dir;
914 rlen = strlen(rootdir);
915 depth = 0;
916 p++;
918 if (dest) {
919 if (rlen + plen + 1 >= MAXPATHLEN)
920 return NULL;
921 } else if (!(dest = new_array(char, rlen + plen + 1)))
922 out_of_memory("sanitize_path");
923 if (rlen) {
924 memcpy(dest, rootdir, rlen);
925 if (rlen > 1)
926 dest[rlen++] = '/';
930 if (drop_dot_dirs) {
931 while (*p == '.' && p[1] == '/')
932 p += 2;
935 start = sanp = dest + rlen;
936 /* This loop iterates once per filename component in p, pointing at
937 * the start of the name (past any prior slash) for each iteration. */
938 while (*p) {
939 /* discard leading or extra slashes */
940 if (*p == '/') {
941 p++;
942 continue;
944 if (drop_dot_dirs) {
945 if (*p == '.' && (p[1] == '/' || p[1] == '\0')) {
946 /* skip "." component */
947 p++;
948 continue;
951 if (*p == '.' && p[1] == '.' && (p[2] == '/' || p[2] == '\0')) {
952 /* ".." component followed by slash or end */
953 if (depth <= 0 || sanp != start) {
954 p += 2;
955 if (sanp != start) {
956 /* back up sanp one level */
957 --sanp; /* now pointing at slash */
958 while (sanp > start && sanp[-1] != '/')
959 sanp--;
961 continue;
963 /* allow depth levels of .. at the beginning */
964 depth--;
965 /* move the virtual beginning to leave the .. alone */
966 start = sanp + 3;
968 /* copy one component through next slash */
969 while (*p && (*sanp++ = *p++) != '/') {}
971 if (sanp == dest) {
972 /* ended up with nothing, so put in "." component */
973 *sanp++ = '.';
975 *sanp = '\0';
977 return dest;
980 /* Like chdir(), but it keeps track of the current directory (in the
981 * global "curr_dir"), and ensures that the path size doesn't overflow.
982 * Also cleans the path using the clean_fname() function. */
983 int change_dir(const char *dir, int set_path_only)
985 static int initialised;
986 unsigned int len;
988 if (!initialised) {
989 initialised = 1;
990 if (getcwd(curr_dir, sizeof curr_dir - 1) == NULL) {
991 rsyserr(FERROR, errno, "getcwd()");
992 exit_cleanup(RERR_FILESELECT);
994 curr_dir_len = strlen(curr_dir);
997 if (!dir) /* this call was probably just to initialize */
998 return 0;
1000 len = strlen(dir);
1001 if (len == 1 && *dir == '.')
1002 return 1;
1004 if (*dir == '/') {
1005 if (len >= sizeof curr_dir) {
1006 errno = ENAMETOOLONG;
1007 return 0;
1009 if (!set_path_only && chdir(dir))
1010 return 0;
1011 memcpy(curr_dir, dir, len + 1);
1012 } else {
1013 if (curr_dir_len + 1 + len >= sizeof curr_dir) {
1014 errno = ENAMETOOLONG;
1015 return 0;
1017 curr_dir[curr_dir_len] = '/';
1018 memcpy(curr_dir + curr_dir_len + 1, dir, len + 1);
1020 if (!set_path_only && chdir(curr_dir)) {
1021 curr_dir[curr_dir_len] = '\0';
1022 return 0;
1026 curr_dir_len = clean_fname(curr_dir, CFN_COLLAPSE_DOT_DOT_DIRS);
1027 if (sanitize_paths) {
1028 if (module_dirlen > curr_dir_len)
1029 module_dirlen = curr_dir_len;
1030 curr_dir_depth = count_dir_elements(curr_dir + module_dirlen);
1033 if (verbose >= 5 && !set_path_only)
1034 rprintf(FINFO, "[%s] change_dir(%s)\n", who_am_i(), curr_dir);
1036 return 1;
1039 /* This will make a relative path absolute and clean it up via clean_fname().
1040 * Returns the string, which might be newly allocated, or NULL on error. */
1041 char *normalize_path(char *path, BOOL force_newbuf, unsigned int *len_ptr)
1043 unsigned int len;
1045 if (*path != '/') { /* Make path absolute. */
1046 int len = strlen(path);
1047 if (curr_dir_len + 1 + len >= sizeof curr_dir)
1048 return NULL;
1049 curr_dir[curr_dir_len] = '/';
1050 memcpy(curr_dir + curr_dir_len + 1, path, len + 1);
1051 if (!(path = strdup(curr_dir)))
1052 out_of_memory("normalize_path");
1053 curr_dir[curr_dir_len] = '\0';
1054 } else if (force_newbuf) {
1055 if (!(path = strdup(path)))
1056 out_of_memory("normalize_path");
1059 len = clean_fname(path, CFN_COLLAPSE_DOT_DOT_DIRS | CFN_DROP_TRAILING_DOT_DIR);
1061 if (len_ptr)
1062 *len_ptr = len;
1064 return path;
1068 * Return a quoted string with the full pathname of the indicated filename.
1069 * The string " (in MODNAME)" may also be appended. The returned pointer
1070 * remains valid until the next time full_fname() is called.
1072 char *full_fname(const char *fn)
1074 static char *result = NULL;
1075 char *m1, *m2, *m3;
1076 char *p1, *p2;
1078 if (result)
1079 free(result);
1081 if (*fn == '/')
1082 p1 = p2 = "";
1083 else {
1084 p1 = curr_dir + module_dirlen;
1085 for (p2 = p1; *p2 == '/'; p2++) {}
1086 if (*p2)
1087 p2 = "/";
1089 if (module_id >= 0) {
1090 m1 = " (in ";
1091 m2 = lp_name(module_id);
1092 m3 = ")";
1093 } else
1094 m1 = m2 = m3 = "";
1096 if (asprintf(&result, "\"%s%s%s\"%s%s%s", p1, p2, fn, m1, m2, m3) <= 0)
1097 out_of_memory("full_fname");
1099 return result;
1102 static char partial_fname[MAXPATHLEN];
1104 char *partial_dir_fname(const char *fname)
1106 char *t = partial_fname;
1107 int sz = sizeof partial_fname;
1108 const char *fn;
1110 if ((fn = strrchr(fname, '/')) != NULL) {
1111 fn++;
1112 if (*partial_dir != '/') {
1113 int len = fn - fname;
1114 strncpy(t, fname, len); /* safe */
1115 t += len;
1116 sz -= len;
1118 } else
1119 fn = fname;
1120 if ((int)pathjoin(t, sz, partial_dir, fn) >= sz)
1121 return NULL;
1122 if (daemon_filter_list.head) {
1123 t = strrchr(partial_fname, '/');
1124 *t = '\0';
1125 if (check_filter(&daemon_filter_list, FLOG, partial_fname, 1) < 0)
1126 return NULL;
1127 *t = '/';
1128 if (check_filter(&daemon_filter_list, FLOG, partial_fname, 0) < 0)
1129 return NULL;
1132 return partial_fname;
1135 /* If no --partial-dir option was specified, we don't need to do anything
1136 * (the partial-dir is essentially '.'), so just return success. */
1137 int handle_partial_dir(const char *fname, int create)
1139 char *fn, *dir;
1141 if (fname != partial_fname)
1142 return 1;
1143 if (!create && *partial_dir == '/')
1144 return 1;
1145 if (!(fn = strrchr(partial_fname, '/')))
1146 return 1;
1148 *fn = '\0';
1149 dir = partial_fname;
1150 if (create) {
1151 STRUCT_STAT st;
1152 int statret = do_lstat(dir, &st);
1153 if (statret == 0 && !S_ISDIR(st.st_mode)) {
1154 if (do_unlink(dir) < 0) {
1155 *fn = '/';
1156 return 0;
1158 statret = -1;
1160 if (statret < 0 && do_mkdir(dir, 0700) < 0) {
1161 *fn = '/';
1162 return 0;
1164 } else
1165 do_rmdir(dir);
1166 *fn = '/';
1168 return 1;
1172 * Determine if a symlink points outside the current directory tree.
1173 * This is considered "unsafe" because e.g. when mirroring somebody
1174 * else's machine it might allow them to establish a symlink to
1175 * /etc/passwd, and then read it through a web server.
1177 * Null symlinks and absolute symlinks are always unsafe.
1179 * Basically here we are concerned with symlinks whose target contains
1180 * "..", because this might cause us to walk back up out of the
1181 * transferred directory. We are not allowed to go back up and
1182 * reenter.
1184 * @param dest Target of the symlink in question.
1186 * @param src Top source directory currently applicable. Basically this
1187 * is the first parameter to rsync in a simple invocation, but it's
1188 * modified by flist.c in slightly complex ways.
1190 * @retval True if unsafe
1191 * @retval False is unsafe
1193 * @sa t_unsafe.c
1195 int unsafe_symlink(const char *dest, const char *src)
1197 const char *name, *slash;
1198 int depth = 0;
1200 /* all absolute and null symlinks are unsafe */
1201 if (!dest || !*dest || *dest == '/')
1202 return 1;
1204 /* find out what our safety margin is */
1205 for (name = src; (slash = strchr(name, '/')) != 0; name = slash+1) {
1206 if (strncmp(name, "../", 3) == 0) {
1207 depth = 0;
1208 } else if (strncmp(name, "./", 2) == 0) {
1209 /* nothing */
1210 } else {
1211 depth++;
1214 if (strcmp(name, "..") == 0)
1215 depth = 0;
1217 for (name = dest; (slash = strchr(name, '/')) != 0; name = slash+1) {
1218 if (strncmp(name, "../", 3) == 0) {
1219 /* if at any point we go outside the current directory
1220 then stop - it is unsafe */
1221 if (--depth < 0)
1222 return 1;
1223 } else if (strncmp(name, "./", 2) == 0) {
1224 /* nothing */
1225 } else {
1226 depth++;
1229 if (strcmp(name, "..") == 0)
1230 depth--;
1232 return (depth < 0);
1235 #define HUMANIFY(mult) \
1236 do { \
1237 if (num >= mult || num <= -mult) { \
1238 double dnum = (double)num / mult; \
1239 char units; \
1240 if (num < 0) \
1241 dnum = -dnum; \
1242 if (dnum < mult) \
1243 units = 'K'; \
1244 else if ((dnum /= mult) < mult) \
1245 units = 'M'; \
1246 else { \
1247 dnum /= mult; \
1248 units = 'G'; \
1250 if (num < 0) \
1251 dnum = -dnum; \
1252 snprintf(bufs[n], sizeof bufs[0], "%.2f%c", dnum, units); \
1253 return bufs[n]; \
1255 } while (0)
1257 /* Return the int64 number as a string. If the --human-readable option was
1258 * specified, we may output the number in K, M, or G units. We can return
1259 * up to 4 buffers at a time. */
1260 char *human_num(int64 num)
1262 static char bufs[4][128]; /* more than enough room */
1263 static unsigned int n;
1264 char *s;
1265 int negated;
1267 n = (n + 1) % (sizeof bufs / sizeof bufs[0]);
1269 if (human_readable) {
1270 if (human_readable == 1)
1271 HUMANIFY(1000);
1272 else
1273 HUMANIFY(1024);
1276 s = bufs[n] + sizeof bufs[0] - 1;
1277 *s = '\0';
1279 if (!num)
1280 *--s = '0';
1281 if (num < 0) {
1282 /* A maximum-size negated number can't fit as a positive,
1283 * so do one digit in negated form to start us off. */
1284 *--s = (char)(-(num % 10)) + '0';
1285 num = -(num / 10);
1286 negated = 1;
1287 } else
1288 negated = 0;
1290 while (num) {
1291 *--s = (char)(num % 10) + '0';
1292 num /= 10;
1295 if (negated)
1296 *--s = '-';
1298 return s;
1301 /* Return the double number as a string. If the --human-readable option was
1302 * specified, we may output the number in K, M, or G units. We use a buffer
1303 * from human_num() to return our result. */
1304 char *human_dnum(double dnum, int decimal_digits)
1306 char *buf = human_num(dnum);
1307 int len = strlen(buf);
1308 if (isDigit(buf + len - 1)) {
1309 /* There's extra room in buf prior to the start of the num. */
1310 buf -= decimal_digits + 2;
1311 snprintf(buf, len + decimal_digits + 3, "%.*f", decimal_digits, dnum);
1313 return buf;
1316 /* Return the date and time as a string. Some callers tweak returned buf. */
1317 char *timestring(time_t t)
1319 static char TimeBuf[200];
1320 struct tm *tm = localtime(&t);
1321 char *p;
1323 #ifdef HAVE_STRFTIME
1324 strftime(TimeBuf, sizeof TimeBuf - 1, "%Y/%m/%d %H:%M:%S", tm);
1325 #else
1326 strlcpy(TimeBuf, asctime(tm), sizeof TimeBuf);
1327 #endif
1329 if ((p = strchr(TimeBuf, '\n')) != NULL)
1330 *p = '\0';
1332 return TimeBuf;
1336 * Sleep for a specified number of milliseconds.
1338 * Always returns TRUE. (In the future it might return FALSE if
1339 * interrupted.)
1341 int msleep(int t)
1343 int tdiff = 0;
1344 struct timeval tval, t1, t2;
1346 gettimeofday(&t1, NULL);
1348 while (tdiff < t) {
1349 tval.tv_sec = (t-tdiff)/1000;
1350 tval.tv_usec = 1000*((t-tdiff)%1000);
1352 errno = 0;
1353 select(0,NULL,NULL, NULL, &tval);
1355 gettimeofday(&t2, NULL);
1356 tdiff = (t2.tv_sec - t1.tv_sec)*1000 +
1357 (t2.tv_usec - t1.tv_usec)/1000;
1360 return True;
1363 /* Determine if two time_t values are equivalent (either exact, or in
1364 * the modification timestamp window established by --modify-window).
1366 * @retval 0 if the times should be treated as the same
1368 * @retval +1 if the first is later
1370 * @retval -1 if the 2nd is later
1372 int cmp_time(time_t file1, time_t file2)
1374 if (file2 > file1) {
1375 if (file2 - file1 <= modify_window)
1376 return 0;
1377 return -1;
1379 if (file1 - file2 <= modify_window)
1380 return 0;
1381 return 1;
1385 #ifdef __INSURE__XX
1386 #include <dlfcn.h>
1389 This routine is a trick to immediately catch errors when debugging
1390 with insure. A xterm with a gdb is popped up when insure catches
1391 a error. It is Linux specific.
1393 int _Insure_trap_error(int a1, int a2, int a3, int a4, int a5, int a6)
1395 static int (*fn)();
1396 int ret;
1397 char *cmd;
1399 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'",
1400 getpid(), getpid(), getpid());
1402 if (!fn) {
1403 static void *h;
1404 h = dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY);
1405 fn = dlsym(h, "_Insure_trap_error");
1408 ret = fn(a1, a2, a3, a4, a5, a6);
1410 system(cmd);
1412 free(cmd);
1414 return ret;
1416 #endif
1418 #define MALLOC_MAX 0x40000000
1420 void *_new_array(unsigned long num, unsigned int size, int use_calloc)
1422 if (num >= MALLOC_MAX/size)
1423 return NULL;
1424 return use_calloc ? calloc(num, size) : malloc(num * size);
1427 void *_realloc_array(void *ptr, unsigned int size, size_t num)
1429 if (num >= MALLOC_MAX/size)
1430 return NULL;
1431 if (!ptr)
1432 return malloc(size * num);
1433 return realloc(ptr, size * num);
1436 /* Take a filename and filename length and return the most significant
1437 * filename suffix we can find. This ignores suffixes such as "~",
1438 * ".bak", ".orig", ".~1~", etc. */
1439 const char *find_filename_suffix(const char *fn, int fn_len, int *len_ptr)
1441 const char *suf, *s;
1442 BOOL had_tilde;
1443 int s_len;
1445 /* One or more dots at the start aren't a suffix. */
1446 while (fn_len && *fn == '.') fn++, fn_len--;
1448 /* Ignore the ~ in a "foo~" filename. */
1449 if (fn_len > 1 && fn[fn_len-1] == '~')
1450 fn_len--, had_tilde = True;
1451 else
1452 had_tilde = False;
1454 /* Assume we don't find an suffix. */
1455 suf = "";
1456 *len_ptr = 0;
1458 /* Find the last significant suffix. */
1459 for (s = fn + fn_len; fn_len > 1; ) {
1460 while (*--s != '.' && s != fn) {}
1461 if (s == fn)
1462 break;
1463 s_len = fn_len - (s - fn);
1464 fn_len = s - fn;
1465 if (s_len == 4) {
1466 if (strcmp(s+1, "bak") == 0
1467 || strcmp(s+1, "old") == 0)
1468 continue;
1469 } else if (s_len == 5) {
1470 if (strcmp(s+1, "orig") == 0)
1471 continue;
1472 } else if (s_len > 2 && had_tilde
1473 && s[1] == '~' && isDigit(s + 2))
1474 continue;
1475 *len_ptr = s_len;
1476 suf = s;
1477 if (s_len == 1)
1478 break;
1479 /* Determine if the suffix is all digits. */
1480 for (s++, s_len--; s_len > 0; s++, s_len--) {
1481 if (!isDigit(s))
1482 return suf;
1484 /* An all-digit suffix may not be that signficant. */
1485 s = suf;
1488 return suf;
1491 /* This is an implementation of the Levenshtein distance algorithm. It
1492 * was implemented to avoid needing a two-dimensional matrix (to save
1493 * memory). It was also tweaked to try to factor in the ASCII distance
1494 * between changed characters as a minor distance quantity. The normal
1495 * Levenshtein units of distance (each signifying a single change between
1496 * the two strings) are defined as a "UNIT". */
1498 #define UNIT (1 << 16)
1500 uint32 fuzzy_distance(const char *s1, int len1, const char *s2, int len2)
1502 uint32 a[MAXPATHLEN], diag, above, left, diag_inc, above_inc, left_inc;
1503 int32 cost;
1504 int i1, i2;
1506 if (!len1 || !len2) {
1507 if (!len1) {
1508 s1 = s2;
1509 len1 = len2;
1511 for (i1 = 0, cost = 0; i1 < len1; i1++)
1512 cost += s1[i1];
1513 return (int32)len1 * UNIT + cost;
1516 for (i2 = 0; i2 < len2; i2++)
1517 a[i2] = (i2+1) * UNIT;
1519 for (i1 = 0; i1 < len1; i1++) {
1520 diag = i1 * UNIT;
1521 above = (i1+1) * UNIT;
1522 for (i2 = 0; i2 < len2; i2++) {
1523 left = a[i2];
1524 if ((cost = *((uchar*)s1+i1) - *((uchar*)s2+i2)) != 0) {
1525 if (cost < 0)
1526 cost = UNIT - cost;
1527 else
1528 cost = UNIT + cost;
1530 diag_inc = diag + cost;
1531 left_inc = left + UNIT + *((uchar*)s1+i1);
1532 above_inc = above + UNIT + *((uchar*)s2+i2);
1533 a[i2] = above = left < above
1534 ? (left_inc < diag_inc ? left_inc : diag_inc)
1535 : (above_inc < diag_inc ? above_inc : diag_inc);
1536 diag = left;
1540 return a[len2-1];
1543 #define BB_SLOT_SIZE (16*1024) /* Desired size in bytes */
1544 #define BB_PER_SLOT_BITS (BB_SLOT_SIZE * 8) /* Number of bits per slot */
1545 #define BB_PER_SLOT_INTS (BB_SLOT_SIZE / 4) /* Number of int32s per slot */
1547 struct bitbag {
1548 uint32 **bits;
1549 int slot_cnt;
1552 struct bitbag *bitbag_create(int max_ndx)
1554 struct bitbag *bb = new(struct bitbag);
1555 bb->slot_cnt = (max_ndx + BB_PER_SLOT_BITS - 1) / BB_PER_SLOT_BITS;
1557 if (!(bb->bits = (uint32**)calloc(bb->slot_cnt, sizeof (uint32*))))
1558 out_of_memory("bitbag_create");
1560 return bb;
1563 void bitbag_set_bit(struct bitbag *bb, int ndx)
1565 int slot = ndx / BB_PER_SLOT_BITS;
1566 ndx %= BB_PER_SLOT_BITS;
1568 if (!bb->bits[slot]) {
1569 if (!(bb->bits[slot] = (uint32*)calloc(BB_PER_SLOT_INTS, 4)))
1570 out_of_memory("bitbag_set_bit");
1573 bb->bits[slot][ndx/32] |= 1u << (ndx % 32);
1576 #if 0 /* not needed yet */
1577 void bitbag_clear_bit(struct bitbag *bb, int ndx)
1579 int slot = ndx / BB_PER_SLOT_BITS;
1580 ndx %= BB_PER_SLOT_BITS;
1582 if (!bb->bits[slot])
1583 return;
1585 bb->bits[slot][ndx/32] &= ~(1u << (ndx % 32));
1588 int bitbag_check_bit(struct bitbag *bb, int ndx)
1590 int slot = ndx / BB_PER_SLOT_BITS;
1591 ndx %= BB_PER_SLOT_BITS;
1593 if (!bb->bits[slot])
1594 return 0;
1596 return bb->bits[slot][ndx/32] & (1u << (ndx % 32)) ? 1 : 0;
1598 #endif
1600 /* Call this with -1 to start checking from 0. Returns -1 at the end. */
1601 int bitbag_next_bit(struct bitbag *bb, int after)
1603 uint32 bits, mask;
1604 int i, ndx = after + 1;
1605 int slot = ndx / BB_PER_SLOT_BITS;
1606 ndx %= BB_PER_SLOT_BITS;
1608 mask = (1u << (ndx % 32)) - 1;
1609 for (i = ndx / 32; slot < bb->slot_cnt; slot++, i = mask = 0) {
1610 if (!bb->bits[slot])
1611 continue;
1612 for ( ; i < BB_PER_SLOT_INTS; i++, mask = 0) {
1613 if (!(bits = bb->bits[slot][i] & ~mask))
1614 continue;
1615 /* The xor magic figures out the lowest enabled bit in
1616 * bits, and the switch quickly computes log2(bit). */
1617 switch (bits ^ (bits & (bits-1))) {
1618 #define LOG2(n) case 1u << n: return slot*BB_PER_SLOT_BITS + i*32 + n
1619 LOG2(0); LOG2(1); LOG2(2); LOG2(3);
1620 LOG2(4); LOG2(5); LOG2(6); LOG2(7);
1621 LOG2(8); LOG2(9); LOG2(10); LOG2(11);
1622 LOG2(12); LOG2(13); LOG2(14); LOG2(15);
1623 LOG2(16); LOG2(17); LOG2(18); LOG2(19);
1624 LOG2(20); LOG2(21); LOG2(22); LOG2(23);
1625 LOG2(24); LOG2(25); LOG2(26); LOG2(27);
1626 LOG2(28); LOG2(29); LOG2(30); LOG2(31);
1628 return -1; /* impossible... */
1632 return -1;
1635 void flist_ndx_push(flist_ndx_list *lp, int ndx)
1637 struct flist_ndx_item *item;
1639 if (!(item = new(struct flist_ndx_item)))
1640 out_of_memory("flist_ndx_push");
1641 item->next = NULL;
1642 item->ndx = ndx;
1643 if (lp->tail)
1644 lp->tail->next = item;
1645 else
1646 lp->head = item;
1647 lp->tail = item;
1650 int flist_ndx_pop(flist_ndx_list *lp)
1652 struct flist_ndx_item *next;
1653 int ndx;
1655 if (!lp->head)
1656 return -1;
1658 ndx = lp->head->ndx;
1659 next = lp->head->next;
1660 free(lp->head);
1661 lp->head = next;
1662 if (!next)
1663 lp->tail = NULL;
1665 return ndx;
1668 void *expand_item_list(item_list *lp, size_t item_size,
1669 const char *desc, int incr)
1671 /* First time through, 0 <= 0, so list is expanded. */
1672 if (lp->malloced <= lp->count) {
1673 void *new_ptr;
1674 size_t new_size = lp->malloced;
1675 if (incr < 0)
1676 new_size += -incr; /* increase slowly */
1677 else if (new_size < (size_t)incr)
1678 new_size += incr;
1679 else
1680 new_size *= 2;
1681 if (new_size < lp->malloced)
1682 overflow_exit("expand_item_list");
1683 /* Using _realloc_array() lets us pass the size, not a type. */
1684 new_ptr = _realloc_array(lp->items, item_size, new_size);
1685 if (verbose >= 4) {
1686 rprintf(FINFO, "[%s] expand %s to %.0f bytes, did%s move\n",
1687 who_am_i(), desc, (double)new_size * item_size,
1688 new_ptr == lp->items ? " not" : "");
1690 if (!new_ptr)
1691 out_of_memory("expand_item_list");
1693 lp->items = new_ptr;
1694 lp->malloced = new_size;
1696 return (char*)lp->items + (lp->count++ * item_size);