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