cvsimport
[findutils.git] / find / pred.c
blob2eb0f3214bf5beed39a769c7f79056c7856eecd0
1 /* pred.c -- execute the expression tree.
2 Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000, 2003,
3 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include <config.h>
20 #include "defs.h"
22 #include <fnmatch.h>
23 #include <signal.h>
24 #include <math.h>
25 #include <pwd.h>
26 #include <grp.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <errno.h>
30 #include <assert.h>
31 #include <stdarg.h>
32 #include <fcntl.h>
33 #include <locale.h>
34 #include <openat.h>
35 #include "xalloc.h"
36 #include "dirname.h"
37 #include "human.h"
38 #include "modetype.h"
39 #include "filemode.h"
40 #include "wait.h"
41 #include "printquoted.h"
42 #include "buildcmd.h"
43 #include "yesno.h"
44 #include "listfile.h"
45 #include "stat-time.h"
46 #include "dircallback.h"
47 #include "error.h"
48 #include "verify.h"
50 #if ENABLE_NLS
51 # include <libintl.h>
52 # define _(Text) gettext (Text)
53 #else
54 # define _(Text) Text
55 #endif
56 #ifdef gettext_noop
57 # define N_(String) gettext_noop (String)
58 #else
59 /* See locate.c for explanation as to why not use (String) */
60 # define N_(String) String
61 #endif
63 #if !defined(SIGCHLD) && defined(SIGCLD)
64 #define SIGCHLD SIGCLD
65 #endif
69 #if HAVE_DIRENT_H
70 # include <dirent.h>
71 # define NAMLEN(dirent) strlen((dirent)->d_name)
72 #else
73 # define dirent direct
74 # define NAMLEN(dirent) (dirent)->d_namlen
75 # if HAVE_SYS_NDIR_H
76 # include <sys/ndir.h>
77 # endif
78 # if HAVE_SYS_DIR_H
79 # include <sys/dir.h>
80 # endif
81 # if HAVE_NDIR_H
82 # include <ndir.h>
83 # endif
84 #endif
86 #ifdef CLOSEDIR_VOID
87 /* Fake a return value. */
88 #define CLOSEDIR(d) (closedir (d), 0)
89 #else
90 #define CLOSEDIR(d) closedir (d)
91 #endif
96 /* Get or fake the disk device blocksize.
97 Usually defined by sys/param.h (if at all). */
98 #ifndef DEV_BSIZE
99 # ifdef BSIZE
100 # define DEV_BSIZE BSIZE
101 # else /* !BSIZE */
102 # define DEV_BSIZE 4096
103 # endif /* !BSIZE */
104 #endif /* !DEV_BSIZE */
106 /* Extract or fake data from a `struct stat'.
107 ST_BLKSIZE: Preferred I/O blocksize for the file, in bytes.
108 ST_NBLOCKS: Number of blocks in the file, including indirect blocks.
109 ST_NBLOCKSIZE: Size of blocks used when calculating ST_NBLOCKS. */
110 #ifndef HAVE_STRUCT_STAT_ST_BLOCKS
111 # define ST_BLKSIZE(statbuf) DEV_BSIZE
112 # if defined _POSIX_SOURCE || !defined BSIZE /* fileblocks.c uses BSIZE. */
113 # define ST_NBLOCKS(statbuf) \
114 (S_ISREG ((statbuf).st_mode) \
115 || S_ISDIR ((statbuf).st_mode) \
116 ? (statbuf).st_size / ST_NBLOCKSIZE + ((statbuf).st_size % ST_NBLOCKSIZE != 0) : 0)
117 # else /* !_POSIX_SOURCE && BSIZE */
118 # define ST_NBLOCKS(statbuf) \
119 (S_ISREG ((statbuf).st_mode) \
120 || S_ISDIR ((statbuf).st_mode) \
121 ? st_blocks ((statbuf).st_size) : 0)
122 # endif /* !_POSIX_SOURCE && BSIZE */
123 #else /* HAVE_STRUCT_STAT_ST_BLOCKS */
124 /* Some systems, like Sequents, return st_blksize of 0 on pipes. */
125 # define ST_BLKSIZE(statbuf) ((statbuf).st_blksize > 0 \
126 ? (statbuf).st_blksize : DEV_BSIZE)
127 # if defined hpux || defined __hpux__ || defined __hpux
128 /* HP-UX counts st_blocks in 1024-byte units.
129 This loses when mixing HP-UX and BSD file systems with NFS. */
130 # define ST_NBLOCKSIZE 1024
131 # else /* !hpux */
132 # if defined _AIX && defined _I386
133 /* AIX PS/2 counts st_blocks in 4K units. */
134 # define ST_NBLOCKSIZE (4 * 1024)
135 # else /* not AIX PS/2 */
136 # if defined _CRAY
137 # define ST_NBLOCKS(statbuf) \
138 (S_ISREG ((statbuf).st_mode) \
139 || S_ISDIR ((statbuf).st_mode) \
140 ? (statbuf).st_blocks * ST_BLKSIZE(statbuf)/ST_NBLOCKSIZE : 0)
141 # endif /* _CRAY */
142 # endif /* not AIX PS/2 */
143 # endif /* !hpux */
144 #endif /* HAVE_STRUCT_STAT_ST_BLOCKS */
146 #ifndef ST_NBLOCKS
147 # define ST_NBLOCKS(statbuf) \
148 (S_ISREG ((statbuf).st_mode) \
149 || S_ISDIR ((statbuf).st_mode) \
150 ? (statbuf).st_blocks : 0)
151 #endif
153 #ifndef ST_NBLOCKSIZE
154 # define ST_NBLOCKSIZE 512
155 #endif
158 #undef MAX
159 #define MAX(a, b) ((a) > (b) ? (a) : (b))
161 static boolean match_lname PARAMS((const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr, boolean ignore_case));
163 static char *format_date PARAMS((struct timespec ts, int kind));
164 static char *ctime_format PARAMS((struct timespec ts));
166 #ifdef DEBUG
167 struct pred_assoc
169 PRED_FUNC pred_func;
170 char *pred_name;
173 struct pred_assoc pred_table[] =
175 {pred_amin, "amin "},
176 {pred_and, "and "},
177 {pred_anewer, "anewer "},
178 {pred_atime, "atime "},
179 {pred_closeparen, ") "},
180 {pred_cmin, "cmin "},
181 {pred_cnewer, "cnewer "},
182 {pred_comma, ", "},
183 {pred_ctime, "ctime "},
184 {pred_delete, "delete "},
185 {pred_empty, "empty "},
186 {pred_exec, "exec "},
187 {pred_execdir, "execdir "},
188 {pred_executable, "executable "},
189 {pred_false, "false "},
190 {pred_fprint, "fprint "},
191 {pred_fprint0, "fprint0 "},
192 {pred_fprintf, "fprintf "},
193 {pred_fstype, "fstype "},
194 {pred_gid, "gid "},
195 {pred_group, "group "},
196 {pred_ilname, "ilname "},
197 {pred_iname, "iname "},
198 {pred_inum, "inum "},
199 {pred_ipath, "ipath "},
200 {pred_links, "links "},
201 {pred_lname, "lname "},
202 {pred_ls, "ls "},
203 {pred_mmin, "mmin "},
204 {pred_mtime, "mtime "},
205 {pred_name, "name "},
206 {pred_negate, "not "},
207 {pred_newer, "newer "},
208 {pred_newerXY, "newerXY "},
209 {pred_nogroup, "nogroup "},
210 {pred_nouser, "nouser "},
211 {pred_ok, "ok "},
212 {pred_okdir, "okdir "},
213 {pred_openparen, "( "},
214 {pred_or, "or "},
215 {pred_path, "path "},
216 {pred_perm, "perm "},
217 {pred_print, "print "},
218 {pred_print0, "print0 "},
219 {pred_prune, "prune "},
220 {pred_quit, "quit "},
221 {pred_readable, "readable "},
222 {pred_regex, "regex "},
223 {pred_samefile,"samefile "},
224 {pred_size, "size "},
225 {pred_true, "true "},
226 {pred_type, "type "},
227 {pred_uid, "uid "},
228 {pred_used, "used "},
229 {pred_user, "user "},
230 {pred_writable, "writable "},
231 {pred_xtype, "xtype "},
232 {0, "none "}
234 #endif
236 /* Returns ts1 - ts2 */
237 static double ts_difference(struct timespec ts1,
238 struct timespec ts2)
240 double d = difftime(ts1.tv_sec, ts2.tv_sec)
241 + (1.0e-9 * (ts1.tv_nsec - ts2.tv_nsec));
242 return d;
246 static int
247 compare_ts(struct timespec ts1,
248 struct timespec ts2)
250 if ((ts1.tv_sec == ts2.tv_sec) &&
251 (ts1.tv_nsec == ts2.tv_nsec))
253 return 0;
255 else
257 double diff = ts_difference(ts1, ts2);
258 return diff < 0.0 ? -1 : +1;
262 /* Predicate processing routines.
264 PATHNAME is the full pathname of the file being checked.
265 *STAT_BUF contains information about PATHNAME.
266 *PRED_PTR contains information for applying the predicate.
268 Return true if the file passes this predicate, false if not. */
271 /* pred_timewindow
273 * Returns true if THE_TIME is
274 * COMP_GT: after the specified time
275 * COMP_LT: before the specified time
276 * COMP_EQ: less than WINDOW seconds after the specified time.
278 static boolean
279 pred_timewindow(struct timespec ts, struct predicate const *pred_ptr, int window)
281 switch (pred_ptr->args.reftime.kind)
283 case COMP_GT:
284 return compare_ts(ts, pred_ptr->args.reftime.ts) > 0;
286 case COMP_LT:
287 return compare_ts(ts, pred_ptr->args.reftime.ts) < 0;
289 case COMP_EQ:
291 double delta = ts_difference(ts, pred_ptr->args.reftime.ts);
292 return (delta >= 0.0 && delta < window);
295 assert (0);
296 abort ();
300 boolean
301 pred_amin (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
303 (void) &pathname;
304 return pred_timewindow(get_stat_atime(stat_buf), pred_ptr, 60);
307 boolean
308 pred_and (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
310 if (pred_ptr->pred_left == NULL
311 || apply_predicate(pathname, stat_buf, pred_ptr->pred_left))
313 return apply_predicate(pathname, stat_buf, pred_ptr->pred_right);
315 else
316 return false;
319 boolean
320 pred_anewer (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
322 (void) &pathname;
323 assert (COMP_GT == pred_ptr->args.reftime.kind);
324 return compare_ts(get_stat_atime(stat_buf), pred_ptr->args.reftime.ts) > 0;
327 boolean
328 pred_atime (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
330 (void) &pathname;
331 return pred_timewindow(get_stat_atime(stat_buf), pred_ptr, DAYSECS);
334 boolean
335 pred_closeparen (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
337 (void) &pathname;
338 (void) &stat_buf;
339 (void) &pred_ptr;
341 return true;
344 boolean
345 pred_cmin (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
347 (void) pathname;
348 return pred_timewindow(get_stat_ctime(stat_buf), pred_ptr, 60);
351 boolean
352 pred_cnewer (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
354 (void) pathname;
356 assert (COMP_GT == pred_ptr->args.reftime.kind);
357 return compare_ts(get_stat_ctime(stat_buf), pred_ptr->args.reftime.ts) > 0;
360 boolean
361 pred_comma (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
363 if (pred_ptr->pred_left != NULL)
365 apply_predicate(pathname, stat_buf,pred_ptr->pred_left);
367 return apply_predicate(pathname, stat_buf, pred_ptr->pred_right);
370 boolean
371 pred_ctime (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
373 (void) &pathname;
374 return pred_timewindow(get_stat_ctime(stat_buf), pred_ptr, DAYSECS);
377 static boolean
378 perform_delete(int flags)
380 return 0 == unlinkat(state.cwd_dir_fd, state.rel_pathname, flags);
384 boolean
385 pred_delete (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
387 (void) pred_ptr;
388 (void) stat_buf;
389 if (strcmp (state.rel_pathname, "."))
391 int flags=0;
392 if (state.have_stat && S_ISDIR(stat_buf->st_mode))
393 flags |= AT_REMOVEDIR;
394 if (perform_delete(flags))
396 return true;
398 else
400 if (EISDIR == errno)
402 if ((flags & AT_REMOVEDIR) == 0)
404 /* unlink() operation failed because we should have done rmdir(). */
405 flags |= AT_REMOVEDIR;
406 if (perform_delete(flags))
407 return true;
411 error (0, errno, _("cannot delete %s"),
412 safely_quote_err_filename(0, pathname));
413 return false;
415 else
417 /* nothing to do. */
418 return true;
422 boolean
423 pred_empty (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
425 (void) pathname;
426 (void) pred_ptr;
428 if (S_ISDIR (stat_buf->st_mode))
430 int fd;
431 DIR *d;
432 struct dirent *dp;
433 boolean empty = true;
435 errno = 0;
436 if ((fd = openat(state.cwd_dir_fd, state.rel_pathname, O_RDONLY
437 #if defined O_LARGEFILE
438 |O_LARGEFILE
439 #endif
440 )) < 0)
442 error (0, errno, "%s", safely_quote_err_filename(0, pathname));
443 state.exit_status = 1;
444 return false;
446 d = fdopendir (fd);
447 if (d == NULL)
449 error (0, errno, "%s", safely_quote_err_filename(0, pathname));
450 state.exit_status = 1;
451 return false;
453 for (dp = readdir (d); dp; dp = readdir (d))
455 if (dp->d_name[0] != '.'
456 || (dp->d_name[1] != '\0'
457 && (dp->d_name[1] != '.' || dp->d_name[2] != '\0')))
459 empty = false;
460 break;
463 if (CLOSEDIR (d))
465 error (0, errno, "%s", safely_quote_err_filename(0, pathname));
466 state.exit_status = 1;
467 return false;
469 return (empty);
471 else if (S_ISREG (stat_buf->st_mode))
472 return (stat_buf->st_size == 0);
473 else
474 return (false);
477 static boolean
478 new_impl_pred_exec (int dirfd, const char *pathname,
479 struct stat *stat_buf,
480 struct predicate *pred_ptr,
481 const char *prefix, size_t pfxlen)
483 struct exec_val *execp = &pred_ptr->args.exec_vec;
484 size_t len = strlen(pathname);
486 (void) stat_buf;
487 execp->dirfd = dirfd;
488 if (execp->multiple)
490 /* Push the argument onto the current list.
491 * The command may or may not be run at this point,
492 * depending on the command line length limits.
494 bc_push_arg(&execp->ctl,
495 &execp->state,
496 pathname, len+1,
497 prefix, pfxlen,
500 /* remember that there are pending execdirs. */
501 state.execdirs_outstanding = true;
503 /* POSIX: If the primary expression is punctuated by a plus
504 * sign, the primary shall always evaluate as true
506 return true;
508 else
510 int i;
512 for (i=0; i<execp->num_args; ++i)
514 bc_do_insert(&execp->ctl,
515 &execp->state,
516 execp->replace_vec[i],
517 strlen(execp->replace_vec[i]),
518 prefix, pfxlen,
519 pathname, len,
523 /* Actually invoke the command. */
524 return execp->ctl.exec_callback(&execp->ctl,
525 &execp->state);
530 boolean
531 pred_exec (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
533 return new_impl_pred_exec(get_start_dirfd(),
534 pathname, stat_buf, pred_ptr, NULL, 0);
537 boolean
538 pred_execdir (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
540 const char *prefix = (state.rel_pathname[0] == '/') ? NULL : "./";
541 (void) &pathname;
542 return new_impl_pred_exec (get_current_dirfd(),
543 state.rel_pathname, stat_buf, pred_ptr,
544 prefix, (prefix ? 2 : 0));
547 boolean
548 pred_false (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
550 (void) &pathname;
551 (void) &stat_buf;
552 (void) &pred_ptr;
555 return (false);
558 boolean
559 pred_fls (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
561 FILE * stream = pred_ptr->args.printf_vec.stream;
562 list_file (pathname, state.cwd_dir_fd, state.rel_pathname, stat_buf,
563 options.start_time.tv_sec,
564 options.output_block_size,
565 pred_ptr->literal_control_chars, stream);
566 return true;
569 boolean
570 pred_fprint (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
572 (void) &pathname;
573 (void) &stat_buf;
575 print_quoted(pred_ptr->args.printf_vec.stream,
576 pred_ptr->args.printf_vec.quote_opts,
577 pred_ptr->args.printf_vec.dest_is_tty,
578 "%s\n",
579 pathname);
580 return true;
583 boolean
584 pred_fprint0 (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
586 FILE * fp = pred_ptr->args.printf_vec.stream;
588 (void) &stat_buf;
590 fputs (pathname, fp);
591 putc (0, fp);
592 return true;
597 static char*
598 mode_to_filetype(mode_t m)
600 #define HANDLE_TYPE(t,letter) if (m==t) { return letter; }
601 #ifdef S_IFREG
602 HANDLE_TYPE(S_IFREG, "f"); /* regular file */
603 #endif
604 #ifdef S_IFDIR
605 HANDLE_TYPE(S_IFDIR, "d"); /* directory */
606 #endif
607 #ifdef S_IFLNK
608 HANDLE_TYPE(S_IFLNK, "l"); /* symbolic link */
609 #endif
610 #ifdef S_IFSOCK
611 HANDLE_TYPE(S_IFSOCK, "s"); /* Unix domain socket */
612 #endif
613 #ifdef S_IFBLK
614 HANDLE_TYPE(S_IFBLK, "b"); /* block device */
615 #endif
616 #ifdef S_IFCHR
617 HANDLE_TYPE(S_IFCHR, "c"); /* character device */
618 #endif
619 #ifdef S_IFIFO
620 HANDLE_TYPE(S_IFIFO, "p"); /* FIFO */
621 #endif
622 #ifdef S_IFDOOR
623 HANDLE_TYPE(S_IFDOOR, "D"); /* Door (e.g. on Solaris) */
624 #endif
625 return "U"; /* Unknown */
628 static double
629 file_sparseness(const struct stat *p)
631 #if defined HAVE_STRUCT_STAT_ST_BLOCKS
632 if (0 == p->st_size)
634 if (0 == p->st_blocks)
635 return 1.0;
636 else
637 return p->st_blocks < 0 ? -HUGE_VAL : HUGE_VAL;
639 else
641 double blklen = file_blocksize(p) * (double)p->st_blocks;
642 return blklen / p->st_size;
644 #else
645 return 1.0;
646 #endif
651 static void
652 checked_fprintf(struct format_val *dest, const char *fmt, ...)
654 int rv;
655 va_list ap;
657 va_start(ap, fmt);
658 rv = vfprintf(dest->stream, fmt, ap);
659 if (rv < 0)
660 nonfatal_file_error(dest->filename);
664 static void
665 checked_print_quoted (struct format_val *dest,
666 const char *format, const char *s)
668 int rv = print_quoted(dest->stream, dest->quote_opts, dest->dest_is_tty,
669 format, s);
670 if (rv < 0)
671 nonfatal_file_error(dest->filename);
675 static void
676 checked_fwrite(void *p, size_t siz, size_t nmemb, struct format_val *dest)
678 int items_written = fwrite(p, siz, nmemb, dest->stream);
679 if (items_written < nmemb)
680 nonfatal_file_error(dest->filename);
683 static void
684 checked_fflush(struct format_val *dest)
686 if (0 != fflush(dest->stream))
688 nonfatal_file_error(dest->filename);
692 static void
693 do_fprintf(struct format_val *dest,
694 struct segment *segment,
695 const char *pathname,
696 const struct stat *stat_buf)
698 char hbuf[LONGEST_HUMAN_READABLE + 1];
699 const char *cp;
701 switch (segment->segkind)
703 case KIND_PLAIN: /* Plain text string (no % conversion). */
704 /* trusted */
705 checked_fwrite(segment->text, 1, segment->text_len, dest);
706 break;
708 case KIND_STOP: /* Terminate argument and flush output. */
709 /* trusted */
710 checked_fwrite(segment->text, 1, segment->text_len, dest);
711 checked_fflush(dest);
712 break;
714 case KIND_FORMAT:
715 switch (segment->format_char[0])
717 case 'a': /* atime in `ctime' format. */
718 /* UNTRUSTED, probably unexploitable */
719 checked_fprintf (dest, segment->text, ctime_format (get_stat_atime(stat_buf)));
720 break;
721 case 'b': /* size in 512-byte blocks */
722 /* UNTRUSTED, probably unexploitable */
723 checked_fprintf (dest, segment->text,
724 human_readable ((uintmax_t) ST_NBLOCKS (*stat_buf),
725 hbuf, human_ceiling,
726 ST_NBLOCKSIZE, 512));
727 break;
728 case 'c': /* ctime in `ctime' format */
729 /* UNTRUSTED, probably unexploitable */
730 checked_fprintf (dest, segment->text, ctime_format (get_stat_ctime(stat_buf)));
731 break;
732 case 'd': /* depth in search tree */
733 /* UNTRUSTED, probably unexploitable */
734 checked_fprintf (dest, segment->text, state.curdepth);
735 break;
736 case 'D': /* Device on which file exists (stat.st_dev) */
737 /* trusted */
738 checked_fprintf (dest, segment->text,
739 human_readable ((uintmax_t) stat_buf->st_dev, hbuf,
740 human_ceiling, 1, 1));
741 break;
742 case 'f': /* base name of path */
743 /* sanitised */
745 char *base = base_name (pathname);
746 checked_print_quoted (dest, segment->text, base);
747 free (base);
749 break;
750 case 'F': /* file system type */
751 /* trusted */
752 checked_print_quoted (dest, segment->text, filesystem_type (stat_buf, pathname));
753 break;
754 case 'g': /* group name */
755 /* trusted */
756 /* (well, the actual group is selected by the user but
757 * its name was selected by the system administrator)
760 struct group *g;
762 g = getgrgid (stat_buf->st_gid);
763 if (g)
765 segment->text[segment->text_len] = 's';
766 checked_fprintf (dest, segment->text, g->gr_name);
767 break;
769 else
771 /* Do nothing. */
772 /*FALLTHROUGH*/
775 /*FALLTHROUGH*/ /*...sometimes, so 'G' case.*/
777 case 'G': /* GID number */
778 /* UNTRUSTED, probably unexploitable */
779 checked_fprintf (dest, segment->text,
780 human_readable ((uintmax_t) stat_buf->st_gid, hbuf,
781 human_ceiling, 1, 1));
782 break;
783 case 'h': /* leading directories part of path */
784 /* sanitised */
786 cp = strrchr (pathname, '/');
787 if (cp == NULL) /* No leading directories. */
789 /* If there is no slash in the pathname, we still
790 * print the string because it contains characters
791 * other than just '%s'. The %h expands to ".".
793 checked_print_quoted (dest, segment->text, ".");
795 else
797 char *s = strdup(pathname);
798 s[cp - pathname] = 0;
799 checked_print_quoted (dest, segment->text, s);
800 free(s);
803 break;
805 case 'H': /* ARGV element file was found under */
806 /* trusted */
808 char *s = xmalloc(state.starting_path_length+1);
809 memcpy(s, pathname, state.starting_path_length);
810 s[state.starting_path_length] = 0;
811 checked_fprintf (dest, segment->text, s);
812 free(s);
814 break;
816 case 'i': /* inode number */
817 /* UNTRUSTED, but not exploitable I think */
818 checked_fprintf (dest, segment->text,
819 human_readable ((uintmax_t) stat_buf->st_ino, hbuf,
820 human_ceiling,
821 1, 1));
822 break;
823 case 'k': /* size in 1K blocks */
824 /* UNTRUSTED, but not exploitable I think */
825 checked_fprintf (dest, segment->text,
826 human_readable ((uintmax_t) ST_NBLOCKS (*stat_buf),
827 hbuf, human_ceiling,
828 ST_NBLOCKSIZE, 1024));
829 break;
830 case 'l': /* object of symlink */
831 /* sanitised */
832 #ifdef S_ISLNK
834 char *linkname = 0;
836 if (S_ISLNK (stat_buf->st_mode))
838 linkname = get_link_name_at (pathname, state.cwd_dir_fd, state.rel_pathname);
839 if (linkname == 0)
840 state.exit_status = 1;
842 if (linkname)
844 checked_print_quoted (dest, segment->text, linkname);
845 free (linkname);
847 else
849 /* We still need to honour the field width etc., so this is
850 * not a no-op.
852 checked_print_quoted (dest, segment->text, "");
855 #endif /* S_ISLNK */
856 break;
858 case 'M': /* mode as 10 chars (eg., "-rwxr-x--x" */
859 /* UNTRUSTED, probably unexploitable */
861 char modestring[16] ;
862 filemodestring (stat_buf, modestring);
863 modestring[10] = '\0';
864 checked_fprintf (dest, segment->text, modestring);
866 break;
868 case 'm': /* mode as octal number (perms only) */
869 /* UNTRUSTED, probably unexploitable */
871 /* Output the mode portably using the traditional numbers,
872 even if the host unwisely uses some other numbering
873 scheme. But help the compiler in the common case where
874 the host uses the traditional numbering scheme. */
875 mode_t m = stat_buf->st_mode;
876 boolean traditional_numbering_scheme =
877 (S_ISUID == 04000 && S_ISGID == 02000 && S_ISVTX == 01000
878 && S_IRUSR == 00400 && S_IWUSR == 00200 && S_IXUSR == 00100
879 && S_IRGRP == 00040 && S_IWGRP == 00020 && S_IXGRP == 00010
880 && S_IROTH == 00004 && S_IWOTH == 00002 && S_IXOTH == 00001);
881 checked_fprintf (dest, segment->text,
882 (traditional_numbering_scheme
883 ? m & MODE_ALL
884 : ((m & S_ISUID ? 04000 : 0)
885 | (m & S_ISGID ? 02000 : 0)
886 | (m & S_ISVTX ? 01000 : 0)
887 | (m & S_IRUSR ? 00400 : 0)
888 | (m & S_IWUSR ? 00200 : 0)
889 | (m & S_IXUSR ? 00100 : 0)
890 | (m & S_IRGRP ? 00040 : 0)
891 | (m & S_IWGRP ? 00020 : 0)
892 | (m & S_IXGRP ? 00010 : 0)
893 | (m & S_IROTH ? 00004 : 0)
894 | (m & S_IWOTH ? 00002 : 0)
895 | (m & S_IXOTH ? 00001 : 0))));
897 break;
899 case 'n': /* number of links */
900 /* UNTRUSTED, probably unexploitable */
901 checked_fprintf (dest, segment->text,
902 human_readable ((uintmax_t) stat_buf->st_nlink,
903 hbuf,
904 human_ceiling,
905 1, 1));
906 break;
908 case 'p': /* pathname */
909 /* sanitised */
910 checked_print_quoted (dest, segment->text, pathname);
911 break;
913 case 'P': /* pathname with ARGV element stripped */
914 /* sanitised */
915 if (state.curdepth > 0)
917 cp = pathname + state.starting_path_length;
918 if (*cp == '/')
919 /* Move past the slash between the ARGV element
920 and the rest of the pathname. But if the ARGV element
921 ends in a slash, we didn't add another, so we've
922 already skipped past it. */
923 cp++;
925 else
927 cp = "";
929 checked_print_quoted (dest, segment->text, cp);
930 break;
932 case 's': /* size in bytes */
933 /* UNTRUSTED, probably unexploitable */
934 checked_fprintf (dest, segment->text,
935 human_readable ((uintmax_t) stat_buf->st_size,
936 hbuf, human_ceiling, 1, 1));
937 break;
939 case 'S': /* sparseness */
940 /* UNTRUSTED, probably unexploitable */
941 checked_fprintf (dest, segment->text, file_sparseness(stat_buf));;
942 break;
944 case 't': /* mtime in `ctime' format */
945 /* UNTRUSTED, probably unexploitable */
946 checked_fprintf (dest, segment->text,
947 ctime_format (get_stat_mtime(stat_buf)));
948 break;
950 case 'u': /* user name */
951 /* trusted */
952 /* (well, the actual user is selected by the user on systems
953 * where chown is not restricted, but the user name was
954 * selected by the system administrator)
957 struct passwd *p;
959 p = getpwuid (stat_buf->st_uid);
960 if (p)
962 segment->text[segment->text_len] = 's';
963 checked_fprintf (dest, segment->text, p->pw_name);
964 break;
966 /* else fallthru */
968 /* FALLTHROUGH*/ /* .. to case U */
970 case 'U': /* UID number */
971 /* UNTRUSTED, probably unexploitable */
972 checked_fprintf (dest, segment->text,
973 human_readable ((uintmax_t) stat_buf->st_uid, hbuf,
974 human_ceiling, 1, 1));
975 break;
977 /* %Y: type of file system entry like `ls -l`:
978 * (d,-,l,s,p,b,c,n) n=nonexistent(symlink)
980 case 'Y': /* in case of symlink */
981 /* trusted */
983 #ifdef S_ISLNK
984 if (S_ISLNK (stat_buf->st_mode))
986 struct stat sbuf;
987 /* If we would normally follow links, do not do so.
988 * If we would normally not follow links, do so.
990 if ((following_links() ? lstat : stat)
991 (state.rel_pathname, &sbuf) != 0)
993 if ( errno == ENOENT )
995 checked_fprintf (dest, segment->text, "N");
996 break;
998 else if ( errno == ELOOP )
1000 checked_fprintf (dest, segment->text, "L");
1001 break;
1003 else
1005 checked_fprintf (dest, segment->text, "?");
1006 error (0, errno, "%s",
1007 safely_quote_err_filename(0, pathname));
1008 /* exit_status = 1;
1009 return ; */
1010 break;
1013 checked_fprintf (dest, segment->text,
1014 mode_to_filetype(sbuf.st_mode & S_IFMT));
1016 #endif /* S_ISLNK */
1017 else
1019 checked_fprintf (dest, segment->text,
1020 mode_to_filetype(stat_buf->st_mode & S_IFMT));
1023 break;
1025 case 'y':
1026 /* trusted */
1028 checked_fprintf (dest, segment->text,
1029 mode_to_filetype(stat_buf->st_mode & S_IFMT));
1031 break;
1033 /* end of KIND_FORMAT case */
1034 break;
1038 boolean
1039 pred_fprintf (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1041 struct format_val *dest = &pred_ptr->args.printf_vec;
1042 struct segment *segment;
1044 for (segment = dest->segment; segment; segment = segment->next)
1046 if ( (KIND_FORMAT == segment->segkind) && segment->format_char[1]) /* Component of date. */
1048 struct timespec ts;
1049 int valid = 0;
1051 switch (segment->format_char[0])
1053 case 'A':
1054 ts = get_stat_atime(stat_buf);
1055 valid = 1;
1056 break;
1057 case 'B':
1058 ts = get_stat_birthtime(stat_buf);
1059 if ('@' == segment->format_char[1])
1060 valid = 1;
1061 else
1062 valid = (ts.tv_nsec >= 0);
1063 break;
1064 case 'C':
1065 ts = get_stat_ctime(stat_buf);
1066 valid = 1;
1067 break;
1068 case 'T':
1069 ts = get_stat_mtime(stat_buf);
1070 valid = 1;
1071 break;
1072 default:
1073 assert (0);
1074 abort ();
1076 /* We trust the output of format_date not to contain
1077 * nasty characters, though the value of the date
1078 * is itself untrusted data.
1080 if (valid)
1082 /* trusted */
1083 checked_fprintf (dest, segment->text,
1084 format_date (ts, segment->format_char[1]));
1086 else
1088 /* The specified timestamp is not available, output
1089 * nothing for the timestamp, but use the rest (so that
1090 * for example find foo -printf '[%Bs] %p\n' can print
1091 * "[] foo").
1093 /* trusted */
1094 checked_fprintf (dest, segment->text, "");
1097 else
1099 /* Print a segment which is not a date. */
1100 do_fprintf(dest, segment, pathname, stat_buf);
1103 return true;
1106 boolean
1107 pred_fstype (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1109 (void) pathname;
1111 if (strcmp (filesystem_type (stat_buf, pathname), pred_ptr->args.str) == 0)
1112 return true;
1113 else
1114 return false;
1117 boolean
1118 pred_gid (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1120 (void) pathname;
1122 switch (pred_ptr->args.numinfo.kind)
1124 case COMP_GT:
1125 if (stat_buf->st_gid > pred_ptr->args.numinfo.l_val)
1126 return (true);
1127 break;
1128 case COMP_LT:
1129 if (stat_buf->st_gid < pred_ptr->args.numinfo.l_val)
1130 return (true);
1131 break;
1132 case COMP_EQ:
1133 if (stat_buf->st_gid == pred_ptr->args.numinfo.l_val)
1134 return (true);
1135 break;
1137 return (false);
1140 boolean
1141 pred_group (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1143 (void) pathname;
1145 if (pred_ptr->args.gid == stat_buf->st_gid)
1146 return (true);
1147 else
1148 return (false);
1151 boolean
1152 pred_ilname (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1154 return match_lname (pathname, stat_buf, pred_ptr, true);
1157 /* Common code between -name, -iname. PATHNAME is being visited, STR
1158 is name to compare basename against, and FLAGS are passed to
1159 fnmatch. Recall that 'find / -name /' is one of the few times where a '/'
1160 in the -name must actually find something. */
1161 static boolean
1162 pred_name_common (const char *pathname, const char *str, int flags)
1164 char *p;
1165 boolean b;
1166 /* We used to use last_component() here, but that would not allow us to modify the
1167 * input string, which is const. We could optimise by duplicating the string only
1168 * if we need to modify it, and I'll do that if there is a measurable
1169 * performance difference on a machine built after 1990...
1171 char *base = base_name (pathname);
1172 /* remove trailing slashes, but leave "/" or "//foo" unchanged. */
1173 strip_trailing_slashes(base);
1175 /* FNM_PERIOD is not used here because POSIX requires that it not be.
1176 * See http://standards.ieee.org/reading/ieee/interp/1003-2-92_int/pasc-1003.2-126.html
1178 b = fnmatch (str, base, flags) == 0;
1179 free (base);
1180 return b;
1183 boolean
1184 pred_iname (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1186 (void) stat_buf;
1187 return pred_name_common (pathname, pred_ptr->args.str, FNM_CASEFOLD);
1190 boolean
1191 pred_inum (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1193 (void) pathname;
1195 switch (pred_ptr->args.numinfo.kind)
1197 case COMP_GT:
1198 if (stat_buf->st_ino > pred_ptr->args.numinfo.l_val)
1199 return (true);
1200 break;
1201 case COMP_LT:
1202 if (stat_buf->st_ino < pred_ptr->args.numinfo.l_val)
1203 return (true);
1204 break;
1205 case COMP_EQ:
1206 if (stat_buf->st_ino == pred_ptr->args.numinfo.l_val)
1207 return (true);
1208 break;
1210 return (false);
1213 boolean
1214 pred_ipath (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1216 (void) stat_buf;
1218 if (fnmatch (pred_ptr->args.str, pathname, FNM_CASEFOLD) == 0)
1219 return (true);
1220 return (false);
1223 boolean
1224 pred_links (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1226 (void) pathname;
1228 switch (pred_ptr->args.numinfo.kind)
1230 case COMP_GT:
1231 if (stat_buf->st_nlink > pred_ptr->args.numinfo.l_val)
1232 return (true);
1233 break;
1234 case COMP_LT:
1235 if (stat_buf->st_nlink < pred_ptr->args.numinfo.l_val)
1236 return (true);
1237 break;
1238 case COMP_EQ:
1239 if (stat_buf->st_nlink == pred_ptr->args.numinfo.l_val)
1240 return (true);
1241 break;
1243 return (false);
1246 boolean
1247 pred_lname (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1249 return match_lname (pathname, stat_buf, pred_ptr, false);
1252 static boolean
1253 match_lname (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr, boolean ignore_case)
1255 boolean ret = false;
1256 #ifdef S_ISLNK
1257 if (S_ISLNK (stat_buf->st_mode))
1259 char *linkname = get_link_name_at (pathname, state.cwd_dir_fd, state.rel_pathname);
1260 if (linkname)
1262 if (fnmatch (pred_ptr->args.str, linkname,
1263 ignore_case ? FNM_CASEFOLD : 0) == 0)
1264 ret = true;
1265 free (linkname);
1268 #endif /* S_ISLNK */
1269 return ret;
1272 boolean
1273 pred_ls (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1275 return pred_fls(pathname, stat_buf, pred_ptr);
1278 boolean
1279 pred_mmin (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1281 (void) &pathname;
1282 return pred_timewindow(get_stat_mtime(stat_buf), pred_ptr, 60);
1285 boolean
1286 pred_mtime (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1288 (void) pathname;
1289 return pred_timewindow(get_stat_mtime(stat_buf), pred_ptr, DAYSECS);
1292 boolean
1293 pred_name (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1295 (void) stat_buf;
1296 return pred_name_common (pathname, pred_ptr->args.str, 0);
1299 boolean
1300 pred_negate (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1302 return !apply_predicate(pathname, stat_buf, pred_ptr->pred_right);
1305 boolean
1306 pred_newer (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1308 (void) pathname;
1310 assert (COMP_GT == pred_ptr->args.reftime.kind);
1311 return compare_ts(get_stat_mtime(stat_buf), pred_ptr->args.reftime.ts) > 0;
1314 boolean
1315 pred_newerXY (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1317 struct timespec ts;
1318 boolean collected = false;
1320 assert (COMP_GT == pred_ptr->args.reftime.kind);
1322 switch (pred_ptr->args.reftime.xval)
1324 case XVAL_TIME:
1325 assert (pred_ptr->args.reftime.xval != XVAL_TIME);
1326 return false;
1328 case XVAL_ATIME:
1329 ts = get_stat_atime(stat_buf);
1330 collected = true;
1331 break;
1333 case XVAL_BIRTHTIME:
1334 ts = get_stat_birthtime(stat_buf);
1335 collected = true;
1336 if (ts.tv_nsec < 0);
1338 /* XXX: Cannot determine birth time. Warn once. */
1339 error(0, 0, _("Warning: cannot determine birth time of file %s"),
1340 safely_quote_err_filename(0, pathname));
1341 return false;
1343 break;
1345 case XVAL_CTIME:
1346 ts = get_stat_ctime(stat_buf);
1347 collected = true;
1348 break;
1350 case XVAL_MTIME:
1351 ts = get_stat_mtime(stat_buf);
1352 collected = true;
1353 break;
1356 assert (collected);
1357 return compare_ts(ts, pred_ptr->args.reftime.ts) > 0;
1360 boolean
1361 pred_nogroup (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1363 (void) pathname;
1364 (void) pred_ptr;
1366 #ifdef CACHE_IDS
1367 extern char *gid_unused;
1369 return gid_unused[(unsigned) stat_buf->st_gid];
1370 #else
1371 return getgrgid (stat_buf->st_gid) == NULL;
1372 #endif
1375 boolean
1376 pred_nouser (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1378 #ifdef CACHE_IDS
1379 extern char *uid_unused;
1380 #endif
1382 (void) pathname;
1383 (void) pred_ptr;
1385 #ifdef CACHE_IDS
1386 return uid_unused[(unsigned) stat_buf->st_uid];
1387 #else
1388 return getpwuid (stat_buf->st_uid) == NULL;
1389 #endif
1393 static boolean
1394 is_ok(const char *program, const char *arg)
1396 fflush (stdout);
1397 /* The draft open standard requires that, in the POSIX locale,
1398 the last non-blank character of this prompt be '?'.
1399 The exact format is not specified.
1400 This standard does not have requirements for locales other than POSIX
1402 /* XXX: printing UNTRUSTED data here. */
1403 fprintf (stderr, _("< %s ... %s > ? "), program, arg);
1404 fflush (stderr);
1405 return yesno();
1408 boolean
1409 pred_ok (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1411 if (is_ok(pred_ptr->args.exec_vec.replace_vec[0], pathname))
1412 return new_impl_pred_exec (get_start_dirfd(),
1413 pathname, stat_buf, pred_ptr, NULL, 0);
1414 else
1415 return false;
1418 boolean
1419 pred_okdir (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1421 const char *prefix = (state.rel_pathname[0] == '/') ? NULL : "./";
1422 if (is_ok(pred_ptr->args.exec_vec.replace_vec[0], pathname))
1423 return new_impl_pred_exec (get_current_dirfd(),
1424 state.rel_pathname, stat_buf, pred_ptr,
1425 prefix, (prefix ? 2 : 0));
1426 else
1427 return false;
1430 boolean
1431 pred_openparen (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1433 (void) pathname;
1434 (void) stat_buf;
1435 (void) pred_ptr;
1436 return true;
1439 boolean
1440 pred_or (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1442 if (pred_ptr->pred_left == NULL
1443 || !apply_predicate(pathname, stat_buf, pred_ptr->pred_left))
1445 return apply_predicate(pathname, stat_buf, pred_ptr->pred_right);
1447 else
1448 return true;
1451 boolean
1452 pred_path (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1454 (void) stat_buf;
1455 if (fnmatch (pred_ptr->args.str, pathname, 0) == 0)
1456 return (true);
1457 return (false);
1460 boolean
1461 pred_perm (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1463 mode_t mode = stat_buf->st_mode;
1464 mode_t perm_val = pred_ptr->args.perm.val[S_ISDIR (mode) != 0];
1465 (void) pathname;
1466 switch (pred_ptr->args.perm.kind)
1468 case PERM_AT_LEAST:
1469 return (mode & perm_val) == perm_val;
1470 break;
1472 case PERM_ANY:
1473 /* True if any of the bits set in the mask are also set in the file's mode.
1476 * Otherwise, if onum is prefixed by a hyphen, the primary shall
1477 * evaluate as true if at least all of the bits specified in
1478 * onum that are also set in the octal mask 07777 are set.
1480 * Eric Blake's interpretation is that the mode argument is zero,
1483 if (0 == perm_val)
1484 return true; /* Savannah bug 14748; we used to return false */
1485 else
1486 return (mode & perm_val) != 0;
1487 break;
1489 case PERM_EXACT:
1490 return (mode & MODE_ALL) == perm_val;
1491 break;
1493 default:
1494 abort ();
1495 break;
1500 struct access_check_args
1502 const char *filename;
1503 int access_type;
1504 int cb_errno;
1508 static int
1509 access_callback(void *context)
1511 int rv;
1512 struct access_check_args *args = context;
1513 if ((rv = access(args->filename, args->access_type)) < 0)
1514 args->cb_errno = errno;
1515 return rv;
1518 static int
1519 can_access(int access_type)
1521 struct access_check_args args;
1522 args.filename = state.rel_pathname;
1523 args.access_type = access_type;
1524 args.cb_errno = 0;
1525 return 0 == run_in_dir(state.cwd_dir_fd, access_callback, &args);
1529 boolean
1530 pred_executable (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1532 (void) pathname;
1533 (void) stat_buf;
1534 (void) pred_ptr;
1536 return can_access(X_OK);
1539 boolean
1540 pred_readable (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1542 (void) pathname;
1543 (void) stat_buf;
1544 (void) pred_ptr;
1546 return can_access(R_OK);
1549 boolean
1550 pred_writable (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1552 (void) pathname;
1553 (void) stat_buf;
1554 (void) pred_ptr;
1556 return can_access(W_OK);
1559 boolean
1560 pred_print (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1562 (void) stat_buf;
1563 (void) pred_ptr;
1565 print_quoted(pred_ptr->args.printf_vec.stream,
1566 pred_ptr->args.printf_vec.quote_opts,
1567 pred_ptr->args.printf_vec.dest_is_tty,
1568 "%s\n", pathname);
1569 return true;
1572 boolean
1573 pred_print0 (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1575 return pred_fprint0(pathname, stat_buf, pred_ptr);
1578 boolean
1579 pred_prune (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1581 (void) pathname;
1582 (void) pred_ptr;
1584 if (options.do_dir_first == true &&
1585 stat_buf != NULL &&
1586 S_ISDIR(stat_buf->st_mode))
1587 state.stop_at_current_level = true;
1589 return (options.do_dir_first); /* This is what SunOS find seems to do. */
1592 boolean
1593 pred_quit (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1595 (void) pathname;
1596 (void) stat_buf;
1597 (void) pred_ptr;
1599 /* Run any cleanups. This includes executing any command lines
1600 * we have partly built but not executed.
1602 cleanup();
1604 /* Since -exec and friends don't leave child processes running in the
1605 * background, there is no need to wait for them here.
1607 exit(state.exit_status); /* 0 for success, etc. */
1610 boolean
1611 pred_regex (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1613 int len = strlen (pathname);
1614 (void) stat_buf;
1615 if (re_match (pred_ptr->args.regex, pathname, len, 0,
1616 (struct re_registers *) NULL) == len)
1617 return (true);
1618 return (false);
1621 boolean
1622 pred_size (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1624 uintmax_t f_val;
1626 (void) pathname;
1627 f_val = ((stat_buf->st_size / pred_ptr->args.size.blocksize)
1628 + (stat_buf->st_size % pred_ptr->args.size.blocksize != 0));
1629 switch (pred_ptr->args.size.kind)
1631 case COMP_GT:
1632 if (f_val > pred_ptr->args.size.size)
1633 return (true);
1634 break;
1635 case COMP_LT:
1636 if (f_val < pred_ptr->args.size.size)
1637 return (true);
1638 break;
1639 case COMP_EQ:
1640 if (f_val == pred_ptr->args.size.size)
1641 return (true);
1642 break;
1644 return (false);
1647 boolean
1648 pred_samefile (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1650 /* Potential optimisation: because of the loop protection, we always
1651 * know the device of the current directory, hence the device number
1652 * of the file we're currently considering. If -L is not in effect,
1653 * and the device number of the file we're looking for is not the
1654 * same as the device number of the current directory, this
1655 * predicate cannot return true. Hence there would be no need to
1656 * stat the file we're looking at.
1658 (void) pathname;
1660 /* We will often still have an fd open on the file under consideration,
1661 * but that's just to ensure inode number stability by maintaining
1662 * a reference to it; we don't need the file for anything else.
1664 return stat_buf->st_ino == pred_ptr->args.samefileid.ino
1665 && stat_buf->st_dev == pred_ptr->args.samefileid.dev;
1668 boolean
1669 pred_true (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1671 (void) pathname;
1672 (void) stat_buf;
1673 (void) pred_ptr;
1674 return true;
1677 boolean
1678 pred_type (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1680 mode_t mode;
1681 mode_t type = pred_ptr->args.type;
1683 assert (state.have_type);
1685 if (0 == state.type)
1687 /* This can sometimes happen with broken NFS servers.
1688 * See Savannah bug #16378.
1690 return false;
1693 (void) pathname;
1695 if (state.have_stat)
1696 mode = stat_buf->st_mode;
1697 else
1698 mode = state.type;
1700 #ifndef S_IFMT
1701 /* POSIX system; check `mode' the slow way. */
1702 if ((S_ISBLK (mode) && type == S_IFBLK)
1703 || (S_ISCHR (mode) && type == S_IFCHR)
1704 || (S_ISDIR (mode) && type == S_IFDIR)
1705 || (S_ISREG (mode) && type == S_IFREG)
1706 #ifdef S_IFLNK
1707 || (S_ISLNK (mode) && type == S_IFLNK)
1708 #endif
1709 #ifdef S_IFIFO
1710 || (S_ISFIFO (mode) && type == S_IFIFO)
1711 #endif
1712 #ifdef S_IFSOCK
1713 || (S_ISSOCK (mode) && type == S_IFSOCK)
1714 #endif
1715 #ifdef S_IFDOOR
1716 || (S_ISDOOR (mode) && type == S_IFDOOR)
1717 #endif
1719 #else /* S_IFMT */
1720 /* Unix system; check `mode' the fast way. */
1721 if ((mode & S_IFMT) == type)
1722 #endif /* S_IFMT */
1723 return (true);
1724 else
1725 return (false);
1728 boolean
1729 pred_uid (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1731 (void) pathname;
1732 switch (pred_ptr->args.numinfo.kind)
1734 case COMP_GT:
1735 if (stat_buf->st_uid > pred_ptr->args.numinfo.l_val)
1736 return (true);
1737 break;
1738 case COMP_LT:
1739 if (stat_buf->st_uid < pred_ptr->args.numinfo.l_val)
1740 return (true);
1741 break;
1742 case COMP_EQ:
1743 if (stat_buf->st_uid == pred_ptr->args.numinfo.l_val)
1744 return (true);
1745 break;
1747 return (false);
1750 boolean
1751 pred_used (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1753 struct timespec delta, at, ct;
1755 (void) pathname;
1757 /* TODO: this needs to be retested carefully (manually, if necessary) */
1758 at = get_stat_atime(stat_buf);
1759 ct = get_stat_ctime(stat_buf);
1760 delta.tv_sec = at.tv_sec - ct.tv_sec;
1761 delta.tv_nsec = at.tv_nsec - ct.tv_nsec;
1762 if (delta.tv_nsec < 0)
1764 delta.tv_nsec += 1000000000;
1765 delta.tv_sec -= 1;
1767 return pred_timewindow(delta, pred_ptr, DAYSECS);
1770 boolean
1771 pred_user (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1773 (void) pathname;
1774 if (pred_ptr->args.uid == stat_buf->st_uid)
1775 return (true);
1776 else
1777 return (false);
1780 boolean
1781 pred_xtype (const char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)
1783 struct stat sbuf; /* local copy, not stat_buf because we're using a different stat method */
1784 int (*ystat) (const char*, struct stat *p);
1786 /* If we would normally stat the link itself, stat the target instead.
1787 * If we would normally follow the link, stat the link itself instead.
1789 if (following_links())
1790 ystat = optionp_stat;
1791 else
1792 ystat = optionl_stat;
1794 set_stat_placeholders(&sbuf);
1795 if ((*ystat) (state.rel_pathname, &sbuf) != 0)
1797 if (following_links() && errno == ENOENT)
1799 /* If we failed to follow the symlink,
1800 * fall back on looking at the symlink itself.
1802 /* Mimic behavior of ls -lL. */
1803 return (pred_type (pathname, stat_buf, pred_ptr));
1805 else
1807 error (0, errno, "%s", safely_quote_err_filename(0, pathname));
1808 state.exit_status = 1;
1810 return false;
1812 /* Now that we have our stat() information, query it in the same
1813 * way that -type does.
1815 return (pred_type (pathname, &sbuf, pred_ptr));
1818 /* 1) fork to get a child; parent remembers the child pid
1819 2) child execs the command requested
1820 3) parent waits for child; checks for proper pid of child
1822 Possible returns:
1824 ret errno status(h) status(l)
1826 pid x signal# 0177 stopped
1827 pid x exit arg 0 term by _exit
1828 pid x 0 signal # term by signal
1829 -1 EINTR parent got signal
1830 -1 other some other kind of error
1832 Return true only if the pid matches, status(l) is
1833 zero, and the exit arg (status high) is 0.
1834 Otherwise return false, possibly printing an error message. */
1837 static boolean
1838 prep_child_for_exec (boolean close_stdin, int dirfd)
1840 boolean ok = true;
1841 if (close_stdin)
1843 const char inputfile[] = "/dev/null";
1845 if (close(0) < 0)
1847 error(0, errno, _("Cannot close standard input"));
1848 ok = false;
1850 else
1852 if (open(inputfile, O_RDONLY
1853 #if defined O_LARGEFILE
1854 |O_LARGEFILE
1855 #endif
1856 ) < 0)
1858 /* This is not entirely fatal, since
1859 * executing the child with a closed
1860 * stdin is almost as good as executing it
1861 * with its stdin attached to /dev/null.
1863 error (0, errno, "%s", safely_quote_err_filename(0, inputfile));
1864 /* do not set ok=false, it is OK to continue anyway. */
1869 /* Even if DebugSearch is set, don't announce our change of
1870 * directory, since we're not going to emit a subsequent
1871 * announcement of a call to stat() anyway, as we're about to exec
1872 * something.
1874 if (dirfd != AT_FDCWD)
1876 assert (dirfd >= 0);
1877 if (0 != fchdir(dirfd))
1879 /* If we cannot execute our command in the correct directory,
1880 * we should not execute it at all.
1882 error(0, errno, _("Failed to change directory"));
1883 ok = false;
1886 return ok;
1892 launch (const struct buildcmd_control *ctl,
1893 struct buildcmd_state *buildstate)
1895 int wait_status;
1896 pid_t child_pid;
1897 static int first_time = 1;
1898 const struct exec_val *execp = buildstate->usercontext;
1900 if (!execp->use_current_dir)
1902 assert (starting_desc >= 0);
1903 assert (execp->dirfd == starting_desc);
1907 /* Null terminate the arg list. */
1908 bc_push_arg (ctl, buildstate, (char *) NULL, 0, NULL, 0, false);
1910 /* Make sure output of command doesn't get mixed with find output. */
1911 fflush (stdout);
1912 fflush (stderr);
1914 /* Make sure to listen for the kids. */
1915 if (first_time)
1917 first_time = 0;
1918 signal (SIGCHLD, SIG_DFL);
1921 child_pid = fork ();
1922 if (child_pid == -1)
1923 error (1, errno, _("cannot fork"));
1924 if (child_pid == 0)
1926 /* We are the child. */
1927 assert (starting_desc >= 0);
1928 if (!prep_child_for_exec(execp->close_stdin, execp->dirfd))
1930 _exit(1);
1933 execvp (buildstate->cmd_argv[0], buildstate->cmd_argv);
1934 error (0, errno, "%s",
1935 safely_quote_err_filename(0, buildstate->cmd_argv[0]));
1936 _exit (1);
1940 /* In parent; set up for next time. */
1941 bc_clear_args(ctl, buildstate);
1944 while (waitpid (child_pid, &wait_status, 0) == (pid_t) -1)
1946 if (errno != EINTR)
1948 error (0, errno, _("error waiting for %s"),
1949 safely_quote_err_filename(0, buildstate->cmd_argv[0]));
1950 state.exit_status = 1;
1951 return 0; /* FAIL */
1955 if (WIFSIGNALED (wait_status))
1957 error (0, 0, _("%s terminated by signal %d"),
1958 quotearg_n_style(0, options.err_quoting_style,
1959 buildstate->cmd_argv[0]),
1960 WTERMSIG (wait_status));
1962 if (execp->multiple)
1964 /* -exec \; just returns false if the invoked command fails.
1965 * -exec {} + returns true if the invoked command fails, but
1966 * sets the program exit status.
1968 state.exit_status = 1;
1971 return 1; /* OK */
1974 if (0 == WEXITSTATUS (wait_status))
1976 return 1; /* OK */
1978 else
1980 if (execp->multiple)
1982 /* -exec \; just returns false if the invoked command fails.
1983 * -exec {} + returns true if the invoked command fails, but
1984 * sets the program exit status.
1986 state.exit_status = 1;
1988 return 0; /* FAIL */
1994 /* Return a static string formatting the time WHEN according to the
1995 * strftime format character KIND.
1997 * This function contains a number of assertions. These look like
1998 * runtime checks of the results of computations, which would be a
1999 * problem since external events should not be tested for with
2000 * "assert" (instead you should use "if"). However, they are not
2001 * really runtime checks. The assertions actually exist to verify
2002 * that the various buffers are correctly sized.
2004 static char *
2005 format_date (struct timespec ts, int kind)
2007 /* In theory, we use an extra 10 characters for 9 digits of
2008 * nanoseconds and 1 for the decimal point. However, the real
2009 * world is more complex than that.
2011 * For example, some systems return junk in the tv_nsec part of
2012 * st_birthtime. An example of this is the NetBSD-4.0-RELENG kernel
2013 * (at Sat Mar 24 18:46:46 2007) running a NetBSD-3.1-RELEASE
2014 * runtime and examining files on an msdos filesytem. So for that
2015 * reason we set NS_BUF_LEN to 32, which is simply "long enough" as
2016 * opposed to "exactly the right size". Note that the behaviour of
2017 * NetBSD appears to be a result of the use of uninitialised data,
2018 * as it's not 100% reproducible (more like 25%).
2020 enum {
2021 NS_BUF_LEN = 32,
2022 DATE_LEN_PERCENT_APLUS=21 /* length of result of %A+ (it's longer than %c)*/
2024 static char buf[128u+10u + MAX(DATE_LEN_PERCENT_APLUS,
2025 MAX (LONGEST_HUMAN_READABLE + 2, NS_BUF_LEN+64+200))];
2026 char ns_buf[NS_BUF_LEN]; /* -.9999999990 (- sign can happen!)*/
2027 int charsprinted, need_ns_suffix;
2028 struct tm *tm;
2029 char fmt[6];
2031 /* human_readable() assumes we pass a buffer which is at least as
2032 * long as LONGEST_HUMAN_READABLE. We use an assertion here to
2033 * ensure that no nasty unsigned overflow happend in our calculation
2034 * of the size of buf. Do the assertion here rather than in the
2035 * code for %@ so that we find the problem quickly if it exists. If
2036 * you want to submit a patch to move this into the if statement, go
2037 * ahead, I'll apply it. But include performance timings
2038 * demonstrating that the performance difference is actually
2039 * measurable.
2041 verify (sizeof(buf) >= LONGEST_HUMAN_READABLE);
2043 charsprinted = 0;
2044 need_ns_suffix = 0;
2046 /* Format the main part of the time. */
2047 if (kind == '+')
2049 strcpy (fmt, "%F+%T");
2050 need_ns_suffix = 1;
2052 else
2054 fmt[0] = '%';
2055 fmt[1] = kind;
2056 fmt[2] = '\0';
2058 /* %a, %c, and %t are handled in ctime_format() */
2059 switch (kind)
2061 case 'S':
2062 case 'T':
2063 case 'X':
2064 case '@':
2065 need_ns_suffix = 1;
2066 break;
2067 default:
2068 need_ns_suffix = 0;
2069 break;
2073 if (need_ns_suffix)
2075 /* Format the nanoseconds part. Leave a trailing zero to
2076 * discourage people from writing scripts which extract the
2077 * fractional part of the timestamp by using column offsets.
2078 * The reason for discouraging this is that in the future, the
2079 * granularity may not be nanoseconds.
2081 ns_buf[0] = 0;
2082 charsprinted = snprintf(ns_buf, NS_BUF_LEN, ".%09ld0", (long int)ts.tv_nsec);
2083 assert (charsprinted < NS_BUF_LEN);
2086 if (kind != '@'
2087 && (tm = localtime (&ts.tv_sec))
2088 && strftime (buf, sizeof buf, fmt, tm))
2090 /* For %AS, %CS, %TS, add the fractional part of the seconds
2091 * information.
2093 if (need_ns_suffix)
2095 assert ((sizeof buf - strlen(buf)) > strlen(ns_buf));
2096 strcat(buf, ns_buf);
2098 return buf;
2100 else
2102 uintmax_t w = ts.tv_sec;
2103 size_t used, len, remaining;
2105 /* XXX: note that we are negating an unsigned type which is the
2106 * widest possible unsigned type.
2108 char *p = human_readable (ts.tv_sec < 0 ? -w : w, buf + 1,
2109 human_ceiling, 1, 1);
2110 assert (p > buf);
2111 assert (p < (buf + (sizeof buf)));
2112 if (ts.tv_sec < 0)
2113 *--p = '-'; /* XXX: Ugh, relying on internal details of human_readable(). */
2115 /* Add the nanoseconds part. Because we cannot enforce a
2116 * particlar implementation of human_readable, we cannot assume
2117 * any particular value for (p-buf). So we need to be careful
2118 * that there is enough space remaining in the buffer.
2120 if (need_ns_suffix)
2122 len = strlen(p);
2123 used = (p-buf) + len; /* Offset into buf of current end */
2124 assert (sizeof buf > used); /* Ensure we can perform subtraction safely. */
2125 remaining = sizeof buf - used - 1u; /* allow space for NUL */
2127 if (strlen(ns_buf) >= remaining)
2129 error(0, 0,
2130 "charsprinted=%ld but remaining=%lu: ns_buf=%s",
2131 (long)charsprinted, (unsigned long)remaining, ns_buf);
2133 assert (strlen(ns_buf) < remaining);
2134 strcat(p, ns_buf);
2136 return p;
2140 static const char *weekdays[] =
2142 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
2144 static char * months[] =
2146 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2147 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2151 static char *
2152 ctime_format (struct timespec ts)
2154 const struct tm * ptm;
2155 #define TIME_BUF_LEN 1024u
2156 static char resultbuf[TIME_BUF_LEN];
2157 int nout;
2159 ptm = localtime(&ts.tv_sec);
2160 if (ptm)
2162 assert (ptm->tm_wday >= 0);
2163 assert (ptm->tm_wday < 7);
2164 assert (ptm->tm_mon >= 0);
2165 assert (ptm->tm_mon < 12);
2166 assert (ptm->tm_hour >= 0);
2167 assert (ptm->tm_hour < 24);
2168 assert (ptm->tm_min < 60);
2169 assert (ptm->tm_sec <= 61); /* allows 2 leap seconds. */
2171 /* wkday mon mday hh:mm:ss.nnnnnnnnn yyyy */
2172 nout = snprintf(resultbuf, TIME_BUF_LEN,
2173 "%3s %3s %2d %02d:%02d:%02d.%010ld %04d",
2174 weekdays[ptm->tm_wday],
2175 months[ptm->tm_mon],
2176 ptm->tm_mday,
2177 ptm->tm_hour,
2178 ptm->tm_min,
2179 ptm->tm_sec,
2180 (long int)ts.tv_nsec,
2181 1900 + ptm->tm_year);
2183 assert (nout < TIME_BUF_LEN);
2184 return resultbuf;
2186 else
2188 /* The time cannot be represented as a struct tm.
2189 Output it as an integer. */
2190 return format_date (ts, '@');
2194 /* Copy STR into BUF and trim blanks from the end of BUF.
2195 Return BUF. */
2197 static char *
2198 blank_rtrim (str, buf)
2199 char *str;
2200 char *buf;
2202 int i;
2204 if (str == NULL)
2205 return (NULL);
2206 strcpy (buf, str);
2207 i = strlen (buf) - 1;
2208 while ((i >= 0) && ((buf[i] == ' ') || buf[i] == '\t'))
2209 i--;
2210 buf[++i] = '\0';
2211 return (buf);
2214 /* Print out the predicate list starting at NODE. */
2215 void
2216 print_list (FILE *fp, struct predicate *node)
2218 struct predicate *cur;
2219 char name[256];
2221 cur = node;
2222 while (cur != NULL)
2224 fprintf (fp, "[%s] ", blank_rtrim (cur->p_name, name));
2225 cur = cur->pred_next;
2227 fprintf (fp, "\n");
2230 /* Print out the predicate list starting at NODE. */
2231 static void
2232 print_parenthesised(FILE *fp, struct predicate *node)
2234 int parens = 0;
2236 if (node)
2238 if ((pred_is(node, pred_or) || pred_is(node, pred_and))
2239 && node->pred_left == NULL)
2241 /* We print "<nothing> or X" as just "X"
2242 * We print "<nothing> and X" as just "X"
2244 print_parenthesised(fp, node->pred_right);
2246 else
2248 if (node->pred_left || node->pred_right)
2249 parens = 1;
2251 if (parens)
2252 fprintf(fp, "%s", " ( ");
2253 print_optlist(fp, node);
2254 if (parens)
2255 fprintf(fp, "%s", " ) ");
2260 void
2261 print_optlist (FILE *fp, const struct predicate *p)
2263 if (p)
2265 print_parenthesised(fp, p->pred_left);
2266 fprintf (fp,
2267 "%s%s",
2268 p->need_stat ? "[call stat] " : "",
2269 p->need_type ? "[need type] " : "");
2270 print_predicate(fp, p);
2271 fprintf(fp, " [%g] ", p->est_success_rate);
2272 if (options.debug_options & DebugSuccessRates)
2274 fprintf(fp, "[%ld/%ld", p->perf.successes, p->perf.visits);
2275 if (p->perf.visits)
2277 double real_rate = (double)p->perf.successes / (double)p->perf.visits;
2278 fprintf(fp, "=%g] ", real_rate);
2280 else
2282 fprintf(fp, "=_] ");
2285 print_parenthesised(fp, p->pred_right);
2289 void show_success_rates(const struct predicate *p)
2291 if (options.debug_options & DebugSuccessRates)
2293 fprintf(stderr, "Predicate success rates after completion:\n");
2294 print_optlist(stderr, p);
2295 fprintf(stderr, "\n");
2302 #ifdef _NDEBUG
2303 /* If _NDEBUG is defined, the assertions will do nothing. Hence
2304 * there is no point in having a function body for pred_sanity_check()
2305 * if that preprocessor macro is defined.
2307 void
2308 pred_sanity_check(const struct predicate *predicates)
2310 /* Do nothing, since assert is a no-op with _NDEBUG set */
2311 return;
2313 #else
2314 void
2315 pred_sanity_check(const struct predicate *predicates)
2317 const struct predicate *p;
2319 for (p=predicates; p != NULL; p=p->pred_next)
2321 /* All predicates must do something. */
2322 assert (p->pred_func != NULL);
2324 /* All predicates must have a parser table entry. */
2325 assert (p->parser_entry != NULL);
2327 /* If the parser table tells us that just one predicate function is
2328 * possible, verify that that is still the one that is in effect.
2329 * If the parser has NULL for the predicate function, that means that
2330 * the parse_xxx function fills it in, so we can't check it.
2332 if (p->parser_entry->pred_func)
2334 assert (p->parser_entry->pred_func == p->pred_func);
2337 switch (p->parser_entry->type)
2339 /* Options all take effect during parsing, so there should
2340 * be no predicate entries corresponding to them. Hence we
2341 * should not see any ARG_OPTION or ARG_POSITIONAL_OPTION
2342 * items.
2344 * This is a silly way of coding this test, but it prevents
2345 * a compiler warning (i.e. otherwise it would think that
2346 * there would be case statements missing).
2348 case ARG_OPTION:
2349 case ARG_POSITIONAL_OPTION:
2350 assert (p->parser_entry->type != ARG_OPTION);
2351 assert (p->parser_entry->type != ARG_POSITIONAL_OPTION);
2352 break;
2354 case ARG_ACTION:
2355 assert(p->side_effects); /* actions have side effects. */
2356 if (!pred_is(p, pred_prune) && !pred_is(p, pred_quit))
2358 /* actions other than -prune and -quit should
2359 * inhibit the default -print
2361 assert (p->no_default_print);
2363 break;
2365 /* We happen to know that the only user of ARG_SPECIAL_PARSE
2366 * is a test, so handle it like ARG_TEST.
2368 case ARG_SPECIAL_PARSE:
2369 case ARG_TEST:
2370 case ARG_PUNCTUATION:
2371 case ARG_NOOP:
2372 /* Punctuation and tests should have no side
2373 * effects and not inhibit default print.
2375 assert (!p->no_default_print);
2376 assert (!p->side_effects);
2377 break;
2381 #endif