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