Preparing for release of 3.1.1pre1
[rsync.git] / util.c
blobefd3c3276de8cfce826db12dab8cf14211403ca3
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-2014 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"
25 #include "itypes.h"
26 #include "inums.h"
28 extern int dry_run;
29 extern int module_id;
30 extern int protect_args;
31 extern int modify_window;
32 extern int relative_paths;
33 extern int preserve_times;
34 extern int preserve_xattrs;
35 extern int preallocate_files;
36 extern char *module_dir;
37 extern unsigned int module_dirlen;
38 extern char *partial_dir;
39 extern filter_rule_list daemon_filter_list;
41 int sanitize_paths = 0;
43 char curr_dir[MAXPATHLEN];
44 unsigned int curr_dir_len;
45 int curr_dir_depth; /* This is only set for a sanitizing daemon. */
47 /* Set a fd into nonblocking mode. */
48 void set_nonblocking(int fd)
50 int val;
52 if ((val = fcntl(fd, F_GETFL)) == -1)
53 return;
54 if (!(val & NONBLOCK_FLAG)) {
55 val |= NONBLOCK_FLAG;
56 fcntl(fd, F_SETFL, val);
60 /* Set a fd into blocking mode. */
61 void set_blocking(int fd)
63 int val;
65 if ((val = fcntl(fd, F_GETFL)) == -1)
66 return;
67 if (val & NONBLOCK_FLAG) {
68 val &= ~NONBLOCK_FLAG;
69 fcntl(fd, F_SETFL, val);
73 /**
74 * Create a file descriptor pair - like pipe() but use socketpair if
75 * possible (because of blocking issues on pipes).
77 * Always set non-blocking.
79 int fd_pair(int fd[2])
81 int ret;
83 #ifdef HAVE_SOCKETPAIR
84 ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fd);
85 #else
86 ret = pipe(fd);
87 #endif
89 if (ret == 0) {
90 set_nonblocking(fd[0]);
91 set_nonblocking(fd[1]);
94 return ret;
97 void print_child_argv(const char *prefix, char **cmd)
99 int cnt = 0;
100 rprintf(FCLIENT, "%s ", prefix);
101 for (; *cmd; cmd++) {
102 /* Look for characters that ought to be quoted. This
103 * is not a great quoting algorithm, but it's
104 * sufficient for a log message. */
105 if (strspn(*cmd, "abcdefghijklmnopqrstuvwxyz"
106 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
107 "0123456789"
108 ",.-_=+@/") != strlen(*cmd)) {
109 rprintf(FCLIENT, "\"%s\" ", *cmd);
110 } else {
111 rprintf(FCLIENT, "%s ", *cmd);
113 cnt++;
115 rprintf(FCLIENT, " (%d args)\n", cnt);
118 /* This returns 0 for success, 1 for a symlink if symlink time-setting
119 * is not possible, or -1 for any other error. */
120 int set_modtime(const char *fname, time_t modtime, uint32 mod_nsec, mode_t mode)
122 static int switch_step = 0;
124 if (DEBUG_GTE(TIME, 1)) {
125 rprintf(FINFO, "set modtime of %s to (%ld) %s",
126 fname, (long)modtime,
127 asctime(localtime(&modtime)));
130 switch (switch_step) {
131 #ifdef HAVE_UTIMENSAT
132 #include "case_N.h"
133 if (do_utimensat(fname, modtime, mod_nsec) == 0)
134 break;
135 if (errno != ENOSYS)
136 return -1;
137 switch_step++;
138 /* FALLTHROUGH */
139 #endif
141 #ifdef HAVE_LUTIMES
142 #include "case_N.h"
143 if (do_lutimes(fname, modtime, mod_nsec) == 0)
144 break;
145 if (errno != ENOSYS)
146 return -1;
147 switch_step++;
148 /* FALLTHROUGH */
149 #endif
151 #include "case_N.h"
152 switch_step++;
153 if (preserve_times & PRESERVE_LINK_TIMES) {
154 preserve_times &= ~PRESERVE_LINK_TIMES;
155 if (S_ISLNK(mode))
156 return 1;
158 /* FALLTHROUGH */
160 #include "case_N.h"
161 #ifdef HAVE_UTIMES
162 if (do_utimes(fname, modtime, mod_nsec) == 0)
163 break;
164 #else
165 if (do_utime(fname, modtime, mod_nsec) == 0)
166 break;
167 #endif
169 return -1;
172 return 0;
175 /* Create any necessary directories in fname. Any missing directories are
176 * created with default permissions. Returns < 0 on error, or the number
177 * of directories created. */
178 int make_path(char *fname, int flags)
180 char *end, *p;
181 int ret = 0;
183 if (flags & MKP_SKIP_SLASH) {
184 while (*fname == '/')
185 fname++;
188 while (*fname == '.' && fname[1] == '/')
189 fname += 2;
191 if (flags & MKP_DROP_NAME) {
192 end = strrchr(fname, '/');
193 if (!end)
194 return 0;
195 *end = '\0';
196 } else
197 end = fname + strlen(fname);
199 /* Try to find an existing dir, starting from the deepest dir. */
200 for (p = end; ; ) {
201 if (dry_run) {
202 STRUCT_STAT st;
203 if (do_stat(fname, &st) == 0) {
204 if (S_ISDIR(st.st_mode))
205 errno = EEXIST;
206 else
207 errno = ENOTDIR;
209 } else if (do_mkdir(fname, ACCESSPERMS) == 0) {
210 ret++;
211 break;
213 if (errno != ENOENT) {
214 if (errno != EEXIST)
215 ret = -ret - 1;
216 break;
218 while (1) {
219 if (p == fname) {
220 /* We got a relative path that doesn't exist, so assume that '.'
221 * is there and just break out and create the whole thing. */
222 p = NULL;
223 goto double_break;
225 if (*--p == '/') {
226 if (p == fname) {
227 /* We reached the "/" dir, which we assume is there. */
228 goto double_break;
230 *p = '\0';
231 break;
235 double_break:
237 /* Make all the dirs that we didn't find on the way here. */
238 while (p != end) {
239 if (p)
240 *p = '/';
241 else
242 p = fname;
243 p += strlen(p);
244 if (ret < 0) /* Skip mkdir on error, but keep restoring the path. */
245 continue;
246 if (do_mkdir(fname, ACCESSPERMS) < 0)
247 ret = -ret - 1;
248 else
249 ret++;
252 if (flags & MKP_DROP_NAME)
253 *end = '/';
255 return ret;
259 * Write @p len bytes at @p ptr to descriptor @p desc, retrying if
260 * interrupted.
262 * @retval len upon success
264 * @retval <0 write's (negative) error code
266 * Derived from GNU C's cccp.c.
268 int full_write(int desc, const char *ptr, size_t len)
270 int total_written;
272 total_written = 0;
273 while (len > 0) {
274 int written = write(desc, ptr, len);
275 if (written < 0) {
276 if (errno == EINTR)
277 continue;
278 return written;
280 total_written += written;
281 ptr += written;
282 len -= written;
284 return total_written;
288 * Read @p len bytes at @p ptr from descriptor @p desc, retrying if
289 * interrupted.
291 * @retval >0 the actual number of bytes read
293 * @retval 0 for EOF
295 * @retval <0 for an error.
297 * Derived from GNU C's cccp.c. */
298 static int safe_read(int desc, char *ptr, size_t len)
300 int n_chars;
302 if (len == 0)
303 return len;
305 do {
306 n_chars = read(desc, ptr, len);
307 } while (n_chars < 0 && errno == EINTR);
309 return n_chars;
312 /* Copy a file. If ofd < 0, copy_file unlinks and opens the "dest" file.
313 * Otherwise, it just writes to and closes the provided file descriptor.
314 * In either case, if --xattrs are being preserved, the dest file will
315 * have its xattrs set from the source file.
317 * This is used in conjunction with the --temp-dir, --backup, and
318 * --copy-dest options. */
319 int copy_file(const char *source, const char *dest, int ofd, mode_t mode)
321 int ifd;
322 char buf[1024 * 8];
323 int len; /* Number of bytes read into `buf'. */
324 #ifdef PREALLOCATE_NEEDS_TRUNCATE
325 OFF_T preallocated_len = 0, offset = 0;
326 #endif
328 if ((ifd = do_open(source, O_RDONLY, 0)) < 0) {
329 int save_errno = errno;
330 rsyserr(FERROR_XFER, errno, "open %s", full_fname(source));
331 errno = save_errno;
332 return -1;
335 if (ofd < 0) {
336 if (robust_unlink(dest) && errno != ENOENT) {
337 int save_errno = errno;
338 rsyserr(FERROR_XFER, errno, "unlink %s", full_fname(dest));
339 errno = save_errno;
340 return -1;
343 #ifdef SUPPORT_XATTRS
344 if (preserve_xattrs)
345 mode |= S_IWUSR;
346 #endif
347 mode &= INITACCESSPERMS;
348 if ((ofd = do_open(dest, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode)) < 0) {
349 int save_errno = errno;
350 rsyserr(FERROR_XFER, save_errno, "open %s", full_fname(dest));
351 close(ifd);
352 errno = save_errno;
353 return -1;
357 #ifdef SUPPORT_PREALLOCATION
358 if (preallocate_files) {
359 STRUCT_STAT srcst;
361 /* Try to preallocate enough space for file's eventual length. Can
362 * reduce fragmentation on filesystems like ext4, xfs, and NTFS. */
363 if (do_fstat(ifd, &srcst) < 0)
364 rsyserr(FWARNING, errno, "fstat %s", full_fname(source));
365 else if (srcst.st_size > 0) {
366 if (do_fallocate(ofd, 0, srcst.st_size) == 0) {
367 #ifdef PREALLOCATE_NEEDS_TRUNCATE
368 preallocated_len = srcst.st_size;
369 #endif
370 } else
371 rsyserr(FWARNING, errno, "do_fallocate %s", full_fname(dest));
374 #endif
376 while ((len = safe_read(ifd, buf, sizeof buf)) > 0) {
377 if (full_write(ofd, buf, len) < 0) {
378 int save_errno = errno;
379 rsyserr(FERROR_XFER, errno, "write %s", full_fname(dest));
380 close(ifd);
381 close(ofd);
382 errno = save_errno;
383 return -1;
385 #ifdef PREALLOCATE_NEEDS_TRUNCATE
386 offset += len;
387 #endif
390 if (len < 0) {
391 int save_errno = errno;
392 rsyserr(FERROR_XFER, errno, "read %s", full_fname(source));
393 close(ifd);
394 close(ofd);
395 errno = save_errno;
396 return -1;
399 if (close(ifd) < 0) {
400 rsyserr(FWARNING, errno, "close failed on %s",
401 full_fname(source));
404 #ifdef PREALLOCATE_NEEDS_TRUNCATE
405 /* Source file might have shrunk since we fstatted it.
406 * Cut off any extra preallocated zeros from dest file. */
407 if (offset < preallocated_len && do_ftruncate(ofd, offset) < 0) {
408 /* If we fail to truncate, the dest file may be wrong, so we
409 * must trigger the "partial transfer" error. */
410 rsyserr(FERROR_XFER, errno, "ftruncate %s", full_fname(dest));
412 #endif
414 if (close(ofd) < 0) {
415 int save_errno = errno;
416 rsyserr(FERROR_XFER, errno, "close failed on %s",
417 full_fname(dest));
418 errno = save_errno;
419 return -1;
422 #ifdef SUPPORT_XATTRS
423 if (preserve_xattrs)
424 copy_xattrs(source, dest);
425 #endif
427 return 0;
430 /* MAX_RENAMES should be 10**MAX_RENAMES_DIGITS */
431 #define MAX_RENAMES_DIGITS 3
432 #define MAX_RENAMES 1000
435 * Robust unlink: some OS'es (HPUX) refuse to unlink busy files, so
436 * rename to <path>/.rsyncNNN instead.
438 * Note that successive rsync runs will shuffle the filenames around a
439 * bit as long as the file is still busy; this is because this function
440 * does not know if the unlink call is due to a new file coming in, or
441 * --delete trying to remove old .rsyncNNN files, hence it renames it
442 * each time.
444 int robust_unlink(const char *fname)
446 #ifndef ETXTBSY
447 return do_unlink(fname);
448 #else
449 static int counter = 1;
450 int rc, pos, start;
451 char path[MAXPATHLEN];
453 rc = do_unlink(fname);
454 if (rc == 0 || errno != ETXTBSY)
455 return rc;
457 if ((pos = strlcpy(path, fname, MAXPATHLEN)) >= MAXPATHLEN)
458 pos = MAXPATHLEN - 1;
460 while (pos > 0 && path[pos-1] != '/')
461 pos--;
462 pos += strlcpy(path+pos, ".rsync", MAXPATHLEN-pos);
464 if (pos > (MAXPATHLEN-MAX_RENAMES_DIGITS-1)) {
465 errno = ETXTBSY;
466 return -1;
469 /* start where the last one left off to reduce chance of clashes */
470 start = counter;
471 do {
472 snprintf(&path[pos], MAX_RENAMES_DIGITS+1, "%03d", counter);
473 if (++counter >= MAX_RENAMES)
474 counter = 1;
475 } while ((rc = access(path, 0)) == 0 && counter != start);
477 if (INFO_GTE(MISC, 1)) {
478 rprintf(FWARNING, "renaming %s to %s because of text busy\n",
479 fname, path);
482 /* maybe we should return rename()'s exit status? Nah. */
483 if (do_rename(fname, path) != 0) {
484 errno = ETXTBSY;
485 return -1;
487 return 0;
488 #endif
491 /* Returns 0 on successful rename, 1 if we successfully copied the file
492 * across filesystems, -2 if copy_file() failed, and -1 on other errors.
493 * If partialptr is not NULL and we need to do a copy, copy the file into
494 * the active partial-dir instead of over the destination file. */
495 int robust_rename(const char *from, const char *to, const char *partialptr,
496 int mode)
498 int tries = 4;
500 while (tries--) {
501 if (do_rename(from, to) == 0)
502 return 0;
504 switch (errno) {
505 #ifdef ETXTBSY
506 case ETXTBSY:
507 if (robust_unlink(to) != 0) {
508 errno = ETXTBSY;
509 return -1;
511 errno = ETXTBSY;
512 break;
513 #endif
514 case EXDEV:
515 if (partialptr) {
516 if (!handle_partial_dir(partialptr,PDIR_CREATE))
517 return -2;
518 to = partialptr;
520 if (copy_file(from, to, -1, mode) != 0)
521 return -2;
522 do_unlink(from);
523 return 1;
524 default:
525 return -1;
528 return -1;
531 static pid_t all_pids[10];
532 static int num_pids;
534 /** Fork and record the pid of the child. **/
535 pid_t do_fork(void)
537 pid_t newpid = fork();
539 if (newpid != 0 && newpid != -1) {
540 all_pids[num_pids++] = newpid;
542 return newpid;
546 * Kill all children.
548 * @todo It would be kind of nice to make sure that they are actually
549 * all our children before we kill them, because their pids may have
550 * been recycled by some other process. Perhaps when we wait for a
551 * child, we should remove it from this array. Alternatively we could
552 * perhaps use process groups, but I think that would not work on
553 * ancient Unix versions that don't support them.
555 void kill_all(int sig)
557 int i;
559 for (i = 0; i < num_pids; i++) {
560 /* Let's just be a little careful where we
561 * point that gun, hey? See kill(2) for the
562 * magic caused by negative values. */
563 pid_t p = all_pids[i];
565 if (p == getpid())
566 continue;
567 if (p <= 0)
568 continue;
570 kill(p, sig);
574 /** Lock a byte range in a open file */
575 int lock_range(int fd, int offset, int len)
577 struct flock lock;
579 lock.l_type = F_WRLCK;
580 lock.l_whence = SEEK_SET;
581 lock.l_start = offset;
582 lock.l_len = len;
583 lock.l_pid = 0;
585 return fcntl(fd,F_SETLK,&lock) == 0;
588 #define ENSURE_MEMSPACE(buf, type, sz, req) \
589 if ((req) > sz && !(buf = realloc_array(buf, type, sz = MAX(sz * 2, req)))) \
590 out_of_memory("glob_expand")
592 static inline void call_glob_match(const char *name, int len, int from_glob,
593 char *arg, int abpos, int fbpos);
595 static struct glob_data {
596 char *arg_buf, *filt_buf, **argv;
597 int absize, fbsize, maxargs, argc;
598 } glob;
600 static void glob_match(char *arg, int abpos, int fbpos)
602 int len;
603 char *slash;
605 while (*arg == '.' && arg[1] == '/') {
606 if (fbpos < 0) {
607 ENSURE_MEMSPACE(glob.filt_buf, char, glob.fbsize, glob.absize);
608 memcpy(glob.filt_buf, glob.arg_buf, abpos + 1);
609 fbpos = abpos;
611 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, abpos + 3);
612 glob.arg_buf[abpos++] = *arg++;
613 glob.arg_buf[abpos++] = *arg++;
614 glob.arg_buf[abpos] = '\0';
616 if ((slash = strchr(arg, '/')) != NULL) {
617 *slash = '\0';
618 len = slash - arg;
619 } else
620 len = strlen(arg);
621 if (strpbrk(arg, "*?[")) {
622 struct dirent *di;
623 DIR *d;
625 if (!(d = opendir(abpos ? glob.arg_buf : ".")))
626 return;
627 while ((di = readdir(d)) != NULL) {
628 char *dname = d_name(di);
629 if (dname[0] == '.' && (dname[1] == '\0'
630 || (dname[1] == '.' && dname[2] == '\0')))
631 continue;
632 if (!wildmatch(arg, dname))
633 continue;
634 call_glob_match(dname, strlen(dname), 1,
635 slash ? arg + len + 1 : NULL,
636 abpos, fbpos);
638 closedir(d);
639 } else {
640 call_glob_match(arg, len, 0,
641 slash ? arg + len + 1 : NULL,
642 abpos, fbpos);
644 if (slash)
645 *slash = '/';
648 static inline void call_glob_match(const char *name, int len, int from_glob,
649 char *arg, int abpos, int fbpos)
651 char *use_buf;
653 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, abpos + len + 2);
654 memcpy(glob.arg_buf + abpos, name, len);
655 abpos += len;
656 glob.arg_buf[abpos] = '\0';
658 if (fbpos >= 0) {
659 ENSURE_MEMSPACE(glob.filt_buf, char, glob.fbsize, fbpos + len + 2);
660 memcpy(glob.filt_buf + fbpos, name, len);
661 fbpos += len;
662 glob.filt_buf[fbpos] = '\0';
663 use_buf = glob.filt_buf;
664 } else
665 use_buf = glob.arg_buf;
667 if (from_glob || (arg && len)) {
668 STRUCT_STAT st;
669 int is_dir;
671 if (do_stat(glob.arg_buf, &st) != 0)
672 return;
673 is_dir = S_ISDIR(st.st_mode) != 0;
674 if (arg && !is_dir)
675 return;
677 if (daemon_filter_list.head
678 && check_filter(&daemon_filter_list, FLOG, use_buf, is_dir) < 0)
679 return;
682 if (arg) {
683 glob.arg_buf[abpos++] = '/';
684 glob.arg_buf[abpos] = '\0';
685 if (fbpos >= 0) {
686 glob.filt_buf[fbpos++] = '/';
687 glob.filt_buf[fbpos] = '\0';
689 glob_match(arg, abpos, fbpos);
690 } else {
691 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, glob.argc + 1);
692 if (!(glob.argv[glob.argc++] = strdup(glob.arg_buf)))
693 out_of_memory("glob_match");
697 /* This routine performs wild-card expansion of the pathname in "arg". Any
698 * daemon-excluded files/dirs will not be matched by the wildcards. Returns 0
699 * if a wild-card string is the only returned item (due to matching nothing). */
700 int glob_expand(const char *arg, char ***argv_p, int *argc_p, int *maxargs_p)
702 int ret, save_argc;
703 char *s;
705 if (!arg) {
706 if (glob.filt_buf)
707 free(glob.filt_buf);
708 free(glob.arg_buf);
709 memset(&glob, 0, sizeof glob);
710 return -1;
713 if (sanitize_paths)
714 s = sanitize_path(NULL, arg, "", 0, SP_KEEP_DOT_DIRS);
715 else {
716 s = strdup(arg);
717 if (!s)
718 out_of_memory("glob_expand");
719 clean_fname(s, CFN_KEEP_DOT_DIRS
720 | CFN_KEEP_TRAILING_SLASH
721 | CFN_COLLAPSE_DOT_DOT_DIRS);
724 ENSURE_MEMSPACE(glob.arg_buf, char, glob.absize, MAXPATHLEN);
725 *glob.arg_buf = '\0';
727 glob.argc = save_argc = *argc_p;
728 glob.argv = *argv_p;
729 glob.maxargs = *maxargs_p;
731 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, 100);
733 glob_match(s, 0, -1);
735 /* The arg didn't match anything, so add the failed arg to the list. */
736 if (glob.argc == save_argc) {
737 ENSURE_MEMSPACE(glob.argv, char *, glob.maxargs, glob.argc + 1);
738 glob.argv[glob.argc++] = s;
739 ret = 0;
740 } else {
741 free(s);
742 ret = 1;
745 *maxargs_p = glob.maxargs;
746 *argv_p = glob.argv;
747 *argc_p = glob.argc;
749 return ret;
752 /* This routine is only used in daemon mode. */
753 void glob_expand_module(char *base1, char *arg, char ***argv_p, int *argc_p, int *maxargs_p)
755 char *p, *s;
756 char *base = base1;
757 int base_len = strlen(base);
759 if (!arg || !*arg)
760 return;
762 if (strncmp(arg, base, base_len) == 0)
763 arg += base_len;
765 if (protect_args) {
766 glob_expand(arg, argv_p, argc_p, maxargs_p);
767 return;
770 if (!(arg = strdup(arg)))
771 out_of_memory("glob_expand_module");
773 if (asprintf(&base," %s/", base1) < 0)
774 out_of_memory("glob_expand_module");
775 base_len++;
777 for (s = arg; *s; s = p + base_len) {
778 if ((p = strstr(s, base)) != NULL)
779 *p = '\0'; /* split it at this point */
780 glob_expand(s, argv_p, argc_p, maxargs_p);
781 if (!p)
782 break;
785 free(arg);
786 free(base);
790 * Convert a string to lower case
792 void strlower(char *s)
794 while (*s) {
795 if (isUpper(s))
796 *s = toLower(s);
797 s++;
801 /* Join strings p1 & p2 into "dest" with a guaranteed '/' between them. (If
802 * p1 ends with a '/', no extra '/' is inserted.) Returns the length of both
803 * strings + 1 (if '/' was inserted), regardless of whether the null-terminated
804 * string fits into destsize. */
805 size_t pathjoin(char *dest, size_t destsize, const char *p1, const char *p2)
807 size_t len = strlcpy(dest, p1, destsize);
808 if (len < destsize - 1) {
809 if (!len || dest[len-1] != '/')
810 dest[len++] = '/';
811 if (len < destsize - 1)
812 len += strlcpy(dest + len, p2, destsize - len);
813 else {
814 dest[len] = '\0';
815 len += strlen(p2);
818 else
819 len += strlen(p2) + 1; /* Assume we'd insert a '/'. */
820 return len;
823 /* Join any number of strings together, putting them in "dest". The return
824 * value is the length of all the strings, regardless of whether the null-
825 * terminated whole fits in destsize. Your list of string pointers must end
826 * with a NULL to indicate the end of the list. */
827 size_t stringjoin(char *dest, size_t destsize, ...)
829 va_list ap;
830 size_t len, ret = 0;
831 const char *src;
833 va_start(ap, destsize);
834 while (1) {
835 if (!(src = va_arg(ap, const char *)))
836 break;
837 len = strlen(src);
838 ret += len;
839 if (destsize > 1) {
840 if (len >= destsize)
841 len = destsize - 1;
842 memcpy(dest, src, len);
843 destsize -= len;
844 dest += len;
847 *dest = '\0';
848 va_end(ap);
850 return ret;
853 int count_dir_elements(const char *p)
855 int cnt = 0, new_component = 1;
856 while (*p) {
857 if (*p++ == '/')
858 new_component = (*p != '.' || (p[1] != '/' && p[1] != '\0'));
859 else if (new_component) {
860 new_component = 0;
861 cnt++;
864 return cnt;
867 /* Turns multiple adjacent slashes into a single slash (possible exception:
868 * the preserving of two leading slashes at the start), drops all leading or
869 * interior "." elements unless CFN_KEEP_DOT_DIRS is flagged. Will also drop
870 * a trailing '.' after a '/' if CFN_DROP_TRAILING_DOT_DIR is flagged, removes
871 * a trailing slash (perhaps after removing the aforementioned dot) unless
872 * CFN_KEEP_TRAILING_SLASH is flagged, and will also collapse ".." elements
873 * (except at the start) if CFN_COLLAPSE_DOT_DOT_DIRS is flagged. If the
874 * resulting name would be empty, returns ".". */
875 unsigned int clean_fname(char *name, int flags)
877 char *limit = name - 1, *t = name, *f = name;
878 int anchored;
880 if (!name)
881 return 0;
883 if ((anchored = *f == '/') != 0) {
884 *t++ = *f++;
885 #ifdef __CYGWIN__
886 /* If there are exactly 2 slashes at the start, preserve
887 * them. Would break daemon excludes unless the paths are
888 * really treated differently, so used this sparingly. */
889 if (*f == '/' && f[1] != '/')
890 *t++ = *f++;
891 #endif
892 } else if (flags & CFN_KEEP_DOT_DIRS && *f == '.' && f[1] == '/') {
893 *t++ = *f++;
894 *t++ = *f++;
896 while (*f) {
897 /* discard extra slashes */
898 if (*f == '/') {
899 f++;
900 continue;
902 if (*f == '.') {
903 /* discard interior "." dirs */
904 if (f[1] == '/' && !(flags & CFN_KEEP_DOT_DIRS)) {
905 f += 2;
906 continue;
908 if (f[1] == '\0' && flags & CFN_DROP_TRAILING_DOT_DIR)
909 break;
910 /* collapse ".." dirs */
911 if (flags & CFN_COLLAPSE_DOT_DOT_DIRS
912 && f[1] == '.' && (f[2] == '/' || !f[2])) {
913 char *s = t - 1;
914 if (s == name && anchored) {
915 f += 2;
916 continue;
918 while (s > limit && *--s != '/') {}
919 if (s != t - 1 && (s < name || *s == '/')) {
920 t = s + 1;
921 f += 2;
922 continue;
924 limit = t + 2;
927 while (*f && (*t++ = *f++) != '/') {}
930 if (t > name+anchored && t[-1] == '/' && !(flags & CFN_KEEP_TRAILING_SLASH))
931 t--;
932 if (t == name)
933 *t++ = '.';
934 *t = '\0';
936 return t - name;
939 /* Make path appear as if a chroot had occurred. This handles a leading
940 * "/" (either removing it or expanding it) and any leading or embedded
941 * ".." components that attempt to escape past the module's top dir.
943 * If dest is NULL, a buffer is allocated to hold the result. It is legal
944 * to call with the dest and the path (p) pointing to the same buffer, but
945 * rootdir will be ignored to avoid expansion of the string.
947 * The rootdir string contains a value to use in place of a leading slash.
948 * Specify NULL to get the default of "module_dir".
950 * The depth var is a count of how many '..'s to allow at the start of the
951 * path.
953 * We also clean the path in a manner similar to clean_fname() but with a
954 * few differences:
956 * Turns multiple adjacent slashes into a single slash, gets rid of "." dir
957 * elements (INCLUDING a trailing dot dir), PRESERVES a trailing slash, and
958 * ALWAYS collapses ".." elements (except for those at the start of the
959 * string up to "depth" deep). If the resulting name would be empty,
960 * change it into a ".". */
961 char *sanitize_path(char *dest, const char *p, const char *rootdir, int depth,
962 int flags)
964 char *start, *sanp;
965 int rlen = 0, drop_dot_dirs = !relative_paths || !(flags & SP_KEEP_DOT_DIRS);
967 if (dest != p) {
968 int plen = strlen(p);
969 if (*p == '/') {
970 if (!rootdir)
971 rootdir = module_dir;
972 rlen = strlen(rootdir);
973 depth = 0;
974 p++;
976 if (dest) {
977 if (rlen + plen + 1 >= MAXPATHLEN)
978 return NULL;
979 } else if (!(dest = new_array(char, rlen + plen + 1)))
980 out_of_memory("sanitize_path");
981 if (rlen) {
982 memcpy(dest, rootdir, rlen);
983 if (rlen > 1)
984 dest[rlen++] = '/';
988 if (drop_dot_dirs) {
989 while (*p == '.' && p[1] == '/')
990 p += 2;
993 start = sanp = dest + rlen;
994 /* This loop iterates once per filename component in p, pointing at
995 * the start of the name (past any prior slash) for each iteration. */
996 while (*p) {
997 /* discard leading or extra slashes */
998 if (*p == '/') {
999 p++;
1000 continue;
1002 if (drop_dot_dirs) {
1003 if (*p == '.' && (p[1] == '/' || p[1] == '\0')) {
1004 /* skip "." component */
1005 p++;
1006 continue;
1009 if (*p == '.' && p[1] == '.' && (p[2] == '/' || p[2] == '\0')) {
1010 /* ".." component followed by slash or end */
1011 if (depth <= 0 || sanp != start) {
1012 p += 2;
1013 if (sanp != start) {
1014 /* back up sanp one level */
1015 --sanp; /* now pointing at slash */
1016 while (sanp > start && sanp[-1] != '/')
1017 sanp--;
1019 continue;
1021 /* allow depth levels of .. at the beginning */
1022 depth--;
1023 /* move the virtual beginning to leave the .. alone */
1024 start = sanp + 3;
1026 /* copy one component through next slash */
1027 while (*p && (*sanp++ = *p++) != '/') {}
1029 if (sanp == dest) {
1030 /* ended up with nothing, so put in "." component */
1031 *sanp++ = '.';
1033 *sanp = '\0';
1035 return dest;
1038 /* Like chdir(), but it keeps track of the current directory (in the
1039 * global "curr_dir"), and ensures that the path size doesn't overflow.
1040 * Also cleans the path using the clean_fname() function. */
1041 int change_dir(const char *dir, int set_path_only)
1043 static int initialised, skipped_chdir;
1044 unsigned int len;
1046 if (!initialised) {
1047 initialised = 1;
1048 if (getcwd(curr_dir, sizeof curr_dir - 1) == NULL) {
1049 rsyserr(FERROR, errno, "getcwd()");
1050 exit_cleanup(RERR_FILESELECT);
1052 curr_dir_len = strlen(curr_dir);
1055 if (!dir) /* this call was probably just to initialize */
1056 return 0;
1058 len = strlen(dir);
1059 if (len == 1 && *dir == '.' && (!skipped_chdir || set_path_only))
1060 return 1;
1062 if (*dir == '/') {
1063 if (len >= sizeof curr_dir) {
1064 errno = ENAMETOOLONG;
1065 return 0;
1067 if (!set_path_only && chdir(dir))
1068 return 0;
1069 skipped_chdir = set_path_only;
1070 memcpy(curr_dir, dir, len + 1);
1071 } else {
1072 if (curr_dir_len + 1 + len >= sizeof curr_dir) {
1073 errno = ENAMETOOLONG;
1074 return 0;
1076 if (!(curr_dir_len && curr_dir[curr_dir_len-1] == '/'))
1077 curr_dir[curr_dir_len++] = '/';
1078 memcpy(curr_dir + curr_dir_len, dir, len + 1);
1080 if (!set_path_only && chdir(curr_dir)) {
1081 curr_dir[curr_dir_len] = '\0';
1082 return 0;
1084 skipped_chdir = set_path_only;
1087 curr_dir_len = clean_fname(curr_dir, CFN_COLLAPSE_DOT_DOT_DIRS | CFN_DROP_TRAILING_DOT_DIR);
1088 if (sanitize_paths) {
1089 if (module_dirlen > curr_dir_len)
1090 module_dirlen = curr_dir_len;
1091 curr_dir_depth = count_dir_elements(curr_dir + module_dirlen);
1094 if (DEBUG_GTE(CHDIR, 1) && !set_path_only)
1095 rprintf(FINFO, "[%s] change_dir(%s)\n", who_am_i(), curr_dir);
1097 return 1;
1100 /* This will make a relative path absolute and clean it up via clean_fname().
1101 * Returns the string, which might be newly allocated, or NULL on error. */
1102 char *normalize_path(char *path, BOOL force_newbuf, unsigned int *len_ptr)
1104 unsigned int len;
1106 if (*path != '/') { /* Make path absolute. */
1107 int len = strlen(path);
1108 if (curr_dir_len + 1 + len >= sizeof curr_dir)
1109 return NULL;
1110 curr_dir[curr_dir_len] = '/';
1111 memcpy(curr_dir + curr_dir_len + 1, path, len + 1);
1112 if (!(path = strdup(curr_dir)))
1113 out_of_memory("normalize_path");
1114 curr_dir[curr_dir_len] = '\0';
1115 } else if (force_newbuf) {
1116 if (!(path = strdup(path)))
1117 out_of_memory("normalize_path");
1120 len = clean_fname(path, CFN_COLLAPSE_DOT_DOT_DIRS | CFN_DROP_TRAILING_DOT_DIR);
1122 if (len_ptr)
1123 *len_ptr = len;
1125 return path;
1129 * Return a quoted string with the full pathname of the indicated filename.
1130 * The string " (in MODNAME)" may also be appended. The returned pointer
1131 * remains valid until the next time full_fname() is called.
1133 char *full_fname(const char *fn)
1135 static char *result = NULL;
1136 char *m1, *m2, *m3;
1137 char *p1, *p2;
1139 if (result)
1140 free(result);
1142 if (*fn == '/')
1143 p1 = p2 = "";
1144 else {
1145 p1 = curr_dir + module_dirlen;
1146 for (p2 = p1; *p2 == '/'; p2++) {}
1147 if (*p2)
1148 p2 = "/";
1150 if (module_id >= 0) {
1151 m1 = " (in ";
1152 m2 = lp_name(module_id);
1153 m3 = ")";
1154 } else
1155 m1 = m2 = m3 = "";
1157 if (asprintf(&result, "\"%s%s%s\"%s%s%s", p1, p2, fn, m1, m2, m3) < 0)
1158 out_of_memory("full_fname");
1160 return result;
1163 static char partial_fname[MAXPATHLEN];
1165 char *partial_dir_fname(const char *fname)
1167 char *t = partial_fname;
1168 int sz = sizeof partial_fname;
1169 const char *fn;
1171 if ((fn = strrchr(fname, '/')) != NULL) {
1172 fn++;
1173 if (*partial_dir != '/') {
1174 int len = fn - fname;
1175 strncpy(t, fname, len); /* safe */
1176 t += len;
1177 sz -= len;
1179 } else
1180 fn = fname;
1181 if ((int)pathjoin(t, sz, partial_dir, fn) >= sz)
1182 return NULL;
1183 if (daemon_filter_list.head) {
1184 t = strrchr(partial_fname, '/');
1185 *t = '\0';
1186 if (check_filter(&daemon_filter_list, FLOG, partial_fname, 1) < 0)
1187 return NULL;
1188 *t = '/';
1189 if (check_filter(&daemon_filter_list, FLOG, partial_fname, 0) < 0)
1190 return NULL;
1193 return partial_fname;
1196 /* If no --partial-dir option was specified, we don't need to do anything
1197 * (the partial-dir is essentially '.'), so just return success. */
1198 int handle_partial_dir(const char *fname, int create)
1200 char *fn, *dir;
1202 if (fname != partial_fname)
1203 return 1;
1204 if (!create && *partial_dir == '/')
1205 return 1;
1206 if (!(fn = strrchr(partial_fname, '/')))
1207 return 1;
1209 *fn = '\0';
1210 dir = partial_fname;
1211 if (create) {
1212 STRUCT_STAT st;
1213 int statret = do_lstat(dir, &st);
1214 if (statret == 0 && !S_ISDIR(st.st_mode)) {
1215 if (do_unlink(dir) < 0) {
1216 *fn = '/';
1217 return 0;
1219 statret = -1;
1221 if (statret < 0 && do_mkdir(dir, 0700) < 0) {
1222 *fn = '/';
1223 return 0;
1225 } else
1226 do_rmdir(dir);
1227 *fn = '/';
1229 return 1;
1232 /* Determine if a symlink points outside the current directory tree.
1233 * This is considered "unsafe" because e.g. when mirroring somebody
1234 * else's machine it might allow them to establish a symlink to
1235 * /etc/passwd, and then read it through a web server.
1237 * Returns 1 if unsafe, 0 if safe.
1239 * Null symlinks and absolute symlinks are always unsafe.
1241 * Basically here we are concerned with symlinks whose target contains
1242 * "..", because this might cause us to walk back up out of the
1243 * transferred directory. We are not allowed to go back up and
1244 * reenter.
1246 * "dest" is the target of the symlink in question.
1248 * "src" is the top source directory currently applicable at the level
1249 * of the referenced symlink. This is usually the symlink's full path
1250 * (including its name), as referenced from the root of the transfer. */
1251 int unsafe_symlink(const char *dest, const char *src)
1253 const char *name, *slash;
1254 int depth = 0;
1256 /* all absolute and null symlinks are unsafe */
1257 if (!dest || !*dest || *dest == '/')
1258 return 1;
1260 /* find out what our safety margin is */
1261 for (name = src; (slash = strchr(name, '/')) != 0; name = slash+1) {
1262 /* ".." segment starts the count over. "." segment is ignored. */
1263 if (*name == '.' && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))) {
1264 if (name[1] == '.')
1265 depth = 0;
1266 } else
1267 depth++;
1268 while (slash[1] == '/') slash++; /* just in case src isn't clean */
1270 if (*name == '.' && name[1] == '.' && name[2] == '\0')
1271 depth = 0;
1273 for (name = dest; (slash = strchr(name, '/')) != 0; name = slash+1) {
1274 if (*name == '.' && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))) {
1275 if (name[1] == '.') {
1276 /* if at any point we go outside the current directory
1277 then stop - it is unsafe */
1278 if (--depth < 0)
1279 return 1;
1281 } else
1282 depth++;
1283 while (slash[1] == '/') slash++;
1285 if (*name == '.' && name[1] == '.' && name[2] == '\0')
1286 depth--;
1288 return depth < 0;
1291 /* Return the date and time as a string. Some callers tweak returned buf. */
1292 char *timestring(time_t t)
1294 static char TimeBuf[200];
1295 struct tm *tm = localtime(&t);
1296 char *p;
1298 #ifdef HAVE_STRFTIME
1299 strftime(TimeBuf, sizeof TimeBuf - 1, "%Y/%m/%d %H:%M:%S", tm);
1300 #else
1301 strlcpy(TimeBuf, asctime(tm), sizeof TimeBuf);
1302 #endif
1304 if ((p = strchr(TimeBuf, '\n')) != NULL)
1305 *p = '\0';
1307 return TimeBuf;
1310 /* Determine if two time_t values are equivalent (either exact, or in
1311 * the modification timestamp window established by --modify-window).
1313 * @retval 0 if the times should be treated as the same
1315 * @retval +1 if the first is later
1317 * @retval -1 if the 2nd is later
1319 int cmp_time(time_t file1, time_t file2)
1321 if (file2 > file1) {
1322 if (file2 - file1 <= modify_window)
1323 return 0;
1324 return -1;
1326 if (file1 - file2 <= modify_window)
1327 return 0;
1328 return 1;
1332 #ifdef __INSURE__XX
1333 #include <dlfcn.h>
1336 This routine is a trick to immediately catch errors when debugging
1337 with insure. A xterm with a gdb is popped up when insure catches
1338 a error. It is Linux specific.
1340 int _Insure_trap_error(int a1, int a2, int a3, int a4, int a5, int a6)
1342 static int (*fn)();
1343 int ret, pid_int = getpid();
1344 char *cmd;
1346 if (asprintf(&cmd,
1347 "/usr/X11R6/bin/xterm -display :0 -T Panic -n Panic -e /bin/sh -c 'cat /tmp/ierrs.*.%d ; "
1348 "gdb /proc/%d/exe %d'", pid_int, pid_int, pid_int) < 0)
1349 return -1;
1351 if (!fn) {
1352 static void *h;
1353 h = dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY);
1354 fn = dlsym(h, "_Insure_trap_error");
1357 ret = fn(a1, a2, a3, a4, a5, a6);
1359 system(cmd);
1361 free(cmd);
1363 return ret;
1365 #endif
1367 /* Take a filename and filename length and return the most significant
1368 * filename suffix we can find. This ignores suffixes such as "~",
1369 * ".bak", ".orig", ".~1~", etc. */
1370 const char *find_filename_suffix(const char *fn, int fn_len, int *len_ptr)
1372 const char *suf, *s;
1373 BOOL had_tilde;
1374 int s_len;
1376 /* One or more dots at the start aren't a suffix. */
1377 while (fn_len && *fn == '.') fn++, fn_len--;
1379 /* Ignore the ~ in a "foo~" filename. */
1380 if (fn_len > 1 && fn[fn_len-1] == '~')
1381 fn_len--, had_tilde = True;
1382 else
1383 had_tilde = False;
1385 /* Assume we don't find an suffix. */
1386 suf = "";
1387 *len_ptr = 0;
1389 /* Find the last significant suffix. */
1390 for (s = fn + fn_len; fn_len > 1; ) {
1391 while (*--s != '.' && s != fn) {}
1392 if (s == fn)
1393 break;
1394 s_len = fn_len - (s - fn);
1395 fn_len = s - fn;
1396 if (s_len == 4) {
1397 if (strcmp(s+1, "bak") == 0
1398 || strcmp(s+1, "old") == 0)
1399 continue;
1400 } else if (s_len == 5) {
1401 if (strcmp(s+1, "orig") == 0)
1402 continue;
1403 } else if (s_len > 2 && had_tilde
1404 && s[1] == '~' && isDigit(s + 2))
1405 continue;
1406 *len_ptr = s_len;
1407 suf = s;
1408 if (s_len == 1)
1409 break;
1410 /* Determine if the suffix is all digits. */
1411 for (s++, s_len--; s_len > 0; s++, s_len--) {
1412 if (!isDigit(s))
1413 return suf;
1415 /* An all-digit suffix may not be that signficant. */
1416 s = suf;
1419 return suf;
1422 /* This is an implementation of the Levenshtein distance algorithm. It
1423 * was implemented to avoid needing a two-dimensional matrix (to save
1424 * memory). It was also tweaked to try to factor in the ASCII distance
1425 * between changed characters as a minor distance quantity. The normal
1426 * Levenshtein units of distance (each signifying a single change between
1427 * the two strings) are defined as a "UNIT". */
1429 #define UNIT (1 << 16)
1431 uint32 fuzzy_distance(const char *s1, unsigned len1, const char *s2, unsigned len2)
1433 uint32 a[MAXPATHLEN], diag, above, left, diag_inc, above_inc, left_inc;
1434 int32 cost;
1435 unsigned i1, i2;
1437 if (!len1 || !len2) {
1438 if (!len1) {
1439 s1 = s2;
1440 len1 = len2;
1442 for (i1 = 0, cost = 0; i1 < len1; i1++)
1443 cost += s1[i1];
1444 return (int32)len1 * UNIT + cost;
1447 for (i2 = 0; i2 < len2; i2++)
1448 a[i2] = (i2+1) * UNIT;
1450 for (i1 = 0; i1 < len1; i1++) {
1451 diag = i1 * UNIT;
1452 above = (i1+1) * UNIT;
1453 for (i2 = 0; i2 < len2; i2++) {
1454 left = a[i2];
1455 if ((cost = *((uchar*)s1+i1) - *((uchar*)s2+i2)) != 0) {
1456 if (cost < 0)
1457 cost = UNIT - cost;
1458 else
1459 cost = UNIT + cost;
1461 diag_inc = diag + cost;
1462 left_inc = left + UNIT + *((uchar*)s1+i1);
1463 above_inc = above + UNIT + *((uchar*)s2+i2);
1464 a[i2] = above = left < above
1465 ? (left_inc < diag_inc ? left_inc : diag_inc)
1466 : (above_inc < diag_inc ? above_inc : diag_inc);
1467 diag = left;
1471 return a[len2-1];
1474 #define BB_SLOT_SIZE (16*1024) /* Desired size in bytes */
1475 #define BB_PER_SLOT_BITS (BB_SLOT_SIZE * 8) /* Number of bits per slot */
1476 #define BB_PER_SLOT_INTS (BB_SLOT_SIZE / 4) /* Number of int32s per slot */
1478 struct bitbag {
1479 uint32 **bits;
1480 int slot_cnt;
1483 struct bitbag *bitbag_create(int max_ndx)
1485 struct bitbag *bb = new(struct bitbag);
1486 bb->slot_cnt = (max_ndx + BB_PER_SLOT_BITS - 1) / BB_PER_SLOT_BITS;
1488 if (!(bb->bits = (uint32**)calloc(bb->slot_cnt, sizeof (uint32*))))
1489 out_of_memory("bitbag_create");
1491 return bb;
1494 void bitbag_set_bit(struct bitbag *bb, int ndx)
1496 int slot = ndx / BB_PER_SLOT_BITS;
1497 ndx %= BB_PER_SLOT_BITS;
1499 if (!bb->bits[slot]) {
1500 if (!(bb->bits[slot] = (uint32*)calloc(BB_PER_SLOT_INTS, 4)))
1501 out_of_memory("bitbag_set_bit");
1504 bb->bits[slot][ndx/32] |= 1u << (ndx % 32);
1507 #if 0 /* not needed yet */
1508 void bitbag_clear_bit(struct bitbag *bb, int ndx)
1510 int slot = ndx / BB_PER_SLOT_BITS;
1511 ndx %= BB_PER_SLOT_BITS;
1513 if (!bb->bits[slot])
1514 return;
1516 bb->bits[slot][ndx/32] &= ~(1u << (ndx % 32));
1519 int bitbag_check_bit(struct bitbag *bb, int ndx)
1521 int slot = ndx / BB_PER_SLOT_BITS;
1522 ndx %= BB_PER_SLOT_BITS;
1524 if (!bb->bits[slot])
1525 return 0;
1527 return bb->bits[slot][ndx/32] & (1u << (ndx % 32)) ? 1 : 0;
1529 #endif
1531 /* Call this with -1 to start checking from 0. Returns -1 at the end. */
1532 int bitbag_next_bit(struct bitbag *bb, int after)
1534 uint32 bits, mask;
1535 int i, ndx = after + 1;
1536 int slot = ndx / BB_PER_SLOT_BITS;
1537 ndx %= BB_PER_SLOT_BITS;
1539 mask = (1u << (ndx % 32)) - 1;
1540 for (i = ndx / 32; slot < bb->slot_cnt; slot++, i = mask = 0) {
1541 if (!bb->bits[slot])
1542 continue;
1543 for ( ; i < BB_PER_SLOT_INTS; i++, mask = 0) {
1544 if (!(bits = bb->bits[slot][i] & ~mask))
1545 continue;
1546 /* The xor magic figures out the lowest enabled bit in
1547 * bits, and the switch quickly computes log2(bit). */
1548 switch (bits ^ (bits & (bits-1))) {
1549 #define LOG2(n) case 1u << n: return slot*BB_PER_SLOT_BITS + i*32 + n
1550 LOG2(0); LOG2(1); LOG2(2); LOG2(3);
1551 LOG2(4); LOG2(5); LOG2(6); LOG2(7);
1552 LOG2(8); LOG2(9); LOG2(10); LOG2(11);
1553 LOG2(12); LOG2(13); LOG2(14); LOG2(15);
1554 LOG2(16); LOG2(17); LOG2(18); LOG2(19);
1555 LOG2(20); LOG2(21); LOG2(22); LOG2(23);
1556 LOG2(24); LOG2(25); LOG2(26); LOG2(27);
1557 LOG2(28); LOG2(29); LOG2(30); LOG2(31);
1559 return -1; /* impossible... */
1563 return -1;
1566 void flist_ndx_push(flist_ndx_list *lp, int ndx)
1568 struct flist_ndx_item *item;
1570 if (!(item = new(struct flist_ndx_item)))
1571 out_of_memory("flist_ndx_push");
1572 item->next = NULL;
1573 item->ndx = ndx;
1574 if (lp->tail)
1575 lp->tail->next = item;
1576 else
1577 lp->head = item;
1578 lp->tail = item;
1581 int flist_ndx_pop(flist_ndx_list *lp)
1583 struct flist_ndx_item *next;
1584 int ndx;
1586 if (!lp->head)
1587 return -1;
1589 ndx = lp->head->ndx;
1590 next = lp->head->next;
1591 free(lp->head);
1592 lp->head = next;
1593 if (!next)
1594 lp->tail = NULL;
1596 return ndx;
1599 void *expand_item_list(item_list *lp, size_t item_size,
1600 const char *desc, int incr)
1602 /* First time through, 0 <= 0, so list is expanded. */
1603 if (lp->malloced <= lp->count) {
1604 void *new_ptr;
1605 size_t new_size = lp->malloced;
1606 if (incr < 0)
1607 new_size += -incr; /* increase slowly */
1608 else if (new_size < (size_t)incr)
1609 new_size += incr;
1610 else
1611 new_size *= 2;
1612 if (new_size < lp->malloced)
1613 overflow_exit("expand_item_list");
1614 /* Using _realloc_array() lets us pass the size, not a type. */
1615 new_ptr = _realloc_array(lp->items, item_size, new_size);
1616 if (DEBUG_GTE(FLIST, 3)) {
1617 rprintf(FINFO, "[%s] expand %s to %s bytes, did%s move\n",
1618 who_am_i(), desc, big_num(new_size * item_size),
1619 new_ptr == lp->items ? " not" : "");
1621 if (!new_ptr)
1622 out_of_memory("expand_item_list");
1624 lp->items = new_ptr;
1625 lp->malloced = new_size;
1627 return (char*)lp->items + (lp->count++ * item_size);