1 /* pred.c -- execute the expression tree.
2 Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000, 2003,
3 2004, 2005, 2006, 2007, 2008 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/>.
27 #include <sys/types.h>
41 #include "printquoted.h"
45 #include "stat-time.h"
46 #include "dircallback.h"
52 # define _(Text) gettext (Text)
57 # define N_(String) gettext_noop (String)
59 /* See locate.c for explanation as to why not use (String) */
60 # define N_(String) String
63 #if !defined(SIGCHLD) && defined(SIGCLD)
64 #define SIGCHLD SIGCLD
71 # define NAMLEN(dirent) strlen((dirent)->d_name)
73 # define dirent direct
74 # define NAMLEN(dirent) (dirent)->d_namlen
76 # include <sys/ndir.h>
87 /* Fake a return value. */
88 #define CLOSEDIR(d) (closedir (d), 0)
90 #define CLOSEDIR(d) closedir (d)
96 /* Get or fake the disk device blocksize.
97 Usually defined by sys/param.h (if at all). */
100 # define DEV_BSIZE BSIZE
102 # define DEV_BSIZE 4096
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
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 */
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)
142 # endif /* not AIX PS/2 */
144 #endif /* HAVE_STRUCT_STAT_ST_BLOCKS */
147 # define ST_NBLOCKS(statbuf) \
148 (S_ISREG ((statbuf).st_mode) \
149 || S_ISDIR ((statbuf).st_mode) \
150 ? (statbuf).st_blocks : 0)
153 #ifndef ST_NBLOCKSIZE
154 # define ST_NBLOCKSIZE 512
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
));
173 struct pred_assoc pred_table
[] =
175 {pred_amin
, "amin "},
177 {pred_anewer
, "anewer "},
178 {pred_atime
, "atime "},
179 {pred_closeparen
, ") "},
180 {pred_cmin
, "cmin "},
181 {pred_cnewer
, "cnewer "},
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 "},
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 "},
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 "},
212 {pred_okdir
, "okdir "},
213 {pred_openparen
, "( "},
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 "},
228 {pred_used
, "used "},
229 {pred_user
, "user "},
230 {pred_writable
, "writable "},
231 {pred_xtype
, "xtype "},
236 /* Returns ts1 - ts2 */
237 static double ts_difference(struct timespec ts1
,
240 double d
= difftime(ts1
.tv_sec
, ts2
.tv_sec
)
241 + (1.0e-9 * (ts1
.tv_nsec
- ts2
.tv_nsec
));
247 compare_ts(struct timespec ts1
,
250 if ((ts1
.tv_sec
== ts2
.tv_sec
) &&
251 (ts1
.tv_nsec
== ts2
.tv_nsec
))
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. */
273 * Returns true if THE_TIME is
274 * COMP_GT: after the specified time
275 * COMP_LT: before the specified time
276 * COMP_EQ: after the specified time but by not more than WINDOW seconds.
279 pred_timewindow(struct timespec ts
, struct predicate
const *pred_ptr
, int window
)
281 switch (pred_ptr
->args
.reftime
.kind
)
284 return compare_ts(ts
, pred_ptr
->args
.reftime
.ts
) > 0;
287 return compare_ts(ts
, pred_ptr
->args
.reftime
.ts
) < 0;
291 /* consider "find . -mtime 0".
293 * Here, the origin is exactly 86400 seconds before the start
294 * of the program (since -daystart was not specified). This
295 * function will be called with window=86400 and
296 * pred_ptr->args.reftime.ts as the origin. Hence a file
297 * created the instant the program starts will show a time
298 * difference (value of delta) of 86400. Similarly, a file
299 * created exactly 24h ago would be the newest file which was
300 * _not_ created today. So, if delta is 0.0, the file
301 * was not created today. If the delta is 86400, the file
302 * was created this instant.
304 double delta
= ts_difference(ts
, pred_ptr
->args
.reftime
.ts
);
305 return (delta
> 0.0 && delta
<= window
);
314 pred_amin (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
317 return pred_timewindow(get_stat_atime(stat_buf
), pred_ptr
, 60);
321 pred_and (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
323 if (pred_ptr
->pred_left
== NULL
324 || apply_predicate(pathname
, stat_buf
, pred_ptr
->pred_left
))
326 return apply_predicate(pathname
, stat_buf
, pred_ptr
->pred_right
);
333 pred_anewer (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
336 assert (COMP_GT
== pred_ptr
->args
.reftime
.kind
);
337 return compare_ts(get_stat_atime(stat_buf
), pred_ptr
->args
.reftime
.ts
) > 0;
341 pred_atime (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
344 return pred_timewindow(get_stat_atime(stat_buf
), pred_ptr
, DAYSECS
);
348 pred_closeparen (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
358 pred_cmin (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
361 return pred_timewindow(get_stat_ctime(stat_buf
), pred_ptr
, 60);
365 pred_cnewer (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
369 assert (COMP_GT
== pred_ptr
->args
.reftime
.kind
);
370 return compare_ts(get_stat_ctime(stat_buf
), pred_ptr
->args
.reftime
.ts
) > 0;
374 pred_comma (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
376 if (pred_ptr
->pred_left
!= NULL
)
378 apply_predicate(pathname
, stat_buf
,pred_ptr
->pred_left
);
380 return apply_predicate(pathname
, stat_buf
, pred_ptr
->pred_right
);
384 pred_ctime (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
387 return pred_timewindow(get_stat_ctime(stat_buf
), pred_ptr
, DAYSECS
);
391 perform_delete(int flags
)
393 return 0 == unlinkat(state
.cwd_dir_fd
, state
.rel_pathname
, flags
);
398 pred_delete (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
402 if (strcmp (state
.rel_pathname
, "."))
405 if (state
.have_stat
&& S_ISDIR(stat_buf
->st_mode
))
406 flags
|= AT_REMOVEDIR
;
407 if (perform_delete(flags
))
415 if ((flags
& AT_REMOVEDIR
) == 0)
417 /* unlink() operation failed because we should have done rmdir(). */
418 flags
|= AT_REMOVEDIR
;
419 if (perform_delete(flags
))
424 error (0, errno
, _("cannot delete %s"),
425 safely_quote_err_filename(0, pathname
));
426 /* Previously I had believed that having the -delete action
427 * return false provided the user with control over whether an
428 * error message is issued. While this is true, the policy of
429 * not affecting the exit status is contrary to the POSIX
430 * requirement that diagnostic messages are accompanied by a
431 * nonzero exit status. While -delete is not a POSIX option and
432 * we can therefore opt not to follow POSIX in this case, that
433 * seems somewhat arbitrary and confusing. So, as of
434 * findutils-4.3.11, we also set the exit status in this case.
436 state
.exit_status
= 1;
447 pred_empty (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
452 if (S_ISDIR (stat_buf
->st_mode
))
457 boolean empty
= true;
460 if ((fd
= openat(state
.cwd_dir_fd
, state
.rel_pathname
, O_RDONLY
461 #if defined O_LARGEFILE
466 error (0, errno
, "%s", safely_quote_err_filename(0, pathname
));
467 state
.exit_status
= 1;
473 error (0, errno
, "%s", safely_quote_err_filename(0, pathname
));
474 state
.exit_status
= 1;
477 for (dp
= readdir (d
); dp
; dp
= readdir (d
))
479 if (dp
->d_name
[0] != '.'
480 || (dp
->d_name
[1] != '\0'
481 && (dp
->d_name
[1] != '.' || dp
->d_name
[2] != '\0')))
489 error (0, errno
, "%s", safely_quote_err_filename(0, pathname
));
490 state
.exit_status
= 1;
495 else if (S_ISREG (stat_buf
->st_mode
))
496 return (stat_buf
->st_size
== 0);
502 new_impl_pred_exec (int dir_fd
, const char *pathname
,
503 struct stat
*stat_buf
,
504 struct predicate
*pred_ptr
,
505 const char *prefix
, size_t pfxlen
)
507 struct exec_val
*execp
= &pred_ptr
->args
.exec_vec
;
508 size_t len
= strlen(pathname
);
511 execp
->dir_fd
= dir_fd
;
514 /* Push the argument onto the current list.
515 * The command may or may not be run at this point,
516 * depending on the command line length limits.
518 bc_push_arg(&execp
->ctl
,
524 /* remember that there are pending execdirs. */
525 state
.execdirs_outstanding
= true;
527 /* POSIX: If the primary expression is punctuated by a plus
528 * sign, the primary shall always evaluate as true
536 for (i
=0; i
<execp
->num_args
; ++i
)
538 bc_do_insert(&execp
->ctl
,
540 execp
->replace_vec
[i
],
541 strlen(execp
->replace_vec
[i
]),
547 /* Actually invoke the command. */
548 return execp
->ctl
.exec_callback(&execp
->ctl
,
555 pred_exec (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
557 return new_impl_pred_exec(get_start_dirfd(),
558 pathname
, stat_buf
, pred_ptr
, NULL
, 0);
562 pred_execdir (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
564 const char *prefix
= (state
.rel_pathname
[0] == '/') ? NULL
: "./";
566 return new_impl_pred_exec (get_current_dirfd(),
567 state
.rel_pathname
, stat_buf
, pred_ptr
,
568 prefix
, (prefix
? 2 : 0));
572 pred_false (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
583 pred_fls (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
585 FILE * stream
= pred_ptr
->args
.printf_vec
.stream
;
586 list_file (pathname
, state
.cwd_dir_fd
, state
.rel_pathname
, stat_buf
,
587 options
.start_time
.tv_sec
,
588 options
.output_block_size
,
589 pred_ptr
->literal_control_chars
, stream
);
594 pred_fprint (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
599 print_quoted(pred_ptr
->args
.printf_vec
.stream
,
600 pred_ptr
->args
.printf_vec
.quote_opts
,
601 pred_ptr
->args
.printf_vec
.dest_is_tty
,
608 pred_fprint0 (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
610 FILE * fp
= pred_ptr
->args
.printf_vec
.stream
;
614 fputs (pathname
, fp
);
622 mode_to_filetype(mode_t m
)
624 #define HANDLE_TYPE(t,letter) if (m==t) { return letter; }
626 HANDLE_TYPE(S_IFREG
, "f"); /* regular file */
629 HANDLE_TYPE(S_IFDIR
, "d"); /* directory */
632 HANDLE_TYPE(S_IFLNK
, "l"); /* symbolic link */
635 HANDLE_TYPE(S_IFSOCK
, "s"); /* Unix domain socket */
638 HANDLE_TYPE(S_IFBLK
, "b"); /* block device */
641 HANDLE_TYPE(S_IFCHR
, "c"); /* character device */
644 HANDLE_TYPE(S_IFIFO
, "p"); /* FIFO */
647 HANDLE_TYPE(S_IFDOOR
, "D"); /* Door (e.g. on Solaris) */
649 return "U"; /* Unknown */
653 file_sparseness(const struct stat
*p
)
655 #if defined HAVE_STRUCT_STAT_ST_BLOCKS
658 if (0 == p
->st_blocks
)
661 return p
->st_blocks
< 0 ? -HUGE_VAL
: HUGE_VAL
;
665 double blklen
= file_blocksize(p
) * (double)p
->st_blocks
;
666 return blklen
/ p
->st_size
;
676 checked_fprintf(struct format_val
*dest
, const char *fmt
, ...)
682 rv
= vfprintf(dest
->stream
, fmt
, ap
);
684 nonfatal_file_error(dest
->filename
);
689 checked_print_quoted (struct format_val
*dest
,
690 const char *format
, const char *s
)
692 int rv
= print_quoted(dest
->stream
, dest
->quote_opts
, dest
->dest_is_tty
,
695 nonfatal_file_error(dest
->filename
);
700 checked_fwrite(void *p
, size_t siz
, size_t nmemb
, struct format_val
*dest
)
702 int items_written
= fwrite(p
, siz
, nmemb
, dest
->stream
);
703 if (items_written
< nmemb
)
704 nonfatal_file_error(dest
->filename
);
708 checked_fflush(struct format_val
*dest
)
710 if (0 != fflush(dest
->stream
))
712 nonfatal_file_error(dest
->filename
);
717 do_fprintf(struct format_val
*dest
,
718 struct segment
*segment
,
719 const char *pathname
,
720 const struct stat
*stat_buf
)
722 char hbuf
[LONGEST_HUMAN_READABLE
+ 1];
725 switch (segment
->segkind
)
727 case KIND_PLAIN
: /* Plain text string (no % conversion). */
729 checked_fwrite(segment
->text
, 1, segment
->text_len
, dest
);
732 case KIND_STOP
: /* Terminate argument and flush output. */
734 checked_fwrite(segment
->text
, 1, segment
->text_len
, dest
);
735 checked_fflush(dest
);
739 switch (segment
->format_char
[0])
741 case 'a': /* atime in `ctime' format. */
742 /* UNTRUSTED, probably unexploitable */
743 checked_fprintf (dest
, segment
->text
, ctime_format (get_stat_atime(stat_buf
)));
745 case 'b': /* size in 512-byte blocks */
746 /* UNTRUSTED, probably unexploitable */
747 checked_fprintf (dest
, segment
->text
,
748 human_readable ((uintmax_t) ST_NBLOCKS (*stat_buf
),
750 ST_NBLOCKSIZE
, 512));
752 case 'c': /* ctime in `ctime' format */
753 /* UNTRUSTED, probably unexploitable */
754 checked_fprintf (dest
, segment
->text
, ctime_format (get_stat_ctime(stat_buf
)));
756 case 'd': /* depth in search tree */
757 /* UNTRUSTED, probably unexploitable */
758 checked_fprintf (dest
, segment
->text
, state
.curdepth
);
760 case 'D': /* Device on which file exists (stat.st_dev) */
762 checked_fprintf (dest
, segment
->text
,
763 human_readable ((uintmax_t) stat_buf
->st_dev
, hbuf
,
764 human_ceiling
, 1, 1));
766 case 'f': /* base name of path */
769 char *base
= base_name (pathname
);
770 checked_print_quoted (dest
, segment
->text
, base
);
774 case 'F': /* file system type */
776 checked_print_quoted (dest
, segment
->text
, filesystem_type (stat_buf
, pathname
));
778 case 'g': /* group name */
780 /* (well, the actual group is selected by the user but
781 * its name was selected by the system administrator)
786 g
= getgrgid (stat_buf
->st_gid
);
789 segment
->text
[segment
->text_len
] = 's';
790 checked_fprintf (dest
, segment
->text
, g
->gr_name
);
799 /*FALLTHROUGH*/ /*...sometimes, so 'G' case.*/
801 case 'G': /* GID number */
802 /* UNTRUSTED, probably unexploitable */
803 checked_fprintf (dest
, segment
->text
,
804 human_readable ((uintmax_t) stat_buf
->st_gid
, hbuf
,
805 human_ceiling
, 1, 1));
807 case 'h': /* leading directories part of path */
810 cp
= strrchr (pathname
, '/');
811 if (cp
== NULL
) /* No leading directories. */
813 /* If there is no slash in the pathname, we still
814 * print the string because it contains characters
815 * other than just '%s'. The %h expands to ".".
817 checked_print_quoted (dest
, segment
->text
, ".");
821 char *s
= strdup(pathname
);
822 s
[cp
- pathname
] = 0;
823 checked_print_quoted (dest
, segment
->text
, s
);
829 case 'H': /* ARGV element file was found under */
832 char *s
= xmalloc(state
.starting_path_length
+1);
833 memcpy(s
, pathname
, state
.starting_path_length
);
834 s
[state
.starting_path_length
] = 0;
835 checked_fprintf (dest
, segment
->text
, s
);
840 case 'i': /* inode number */
841 /* UNTRUSTED, but not exploitable I think */
842 checked_fprintf (dest
, segment
->text
,
843 human_readable ((uintmax_t) stat_buf
->st_ino
, hbuf
,
847 case 'k': /* size in 1K blocks */
848 /* UNTRUSTED, but not exploitable I think */
849 checked_fprintf (dest
, segment
->text
,
850 human_readable ((uintmax_t) ST_NBLOCKS (*stat_buf
),
852 ST_NBLOCKSIZE
, 1024));
854 case 'l': /* object of symlink */
860 if (S_ISLNK (stat_buf
->st_mode
))
862 linkname
= get_link_name_at (pathname
, state
.cwd_dir_fd
, state
.rel_pathname
);
864 state
.exit_status
= 1;
868 checked_print_quoted (dest
, segment
->text
, linkname
);
873 /* We still need to honour the field width etc., so this is
876 checked_print_quoted (dest
, segment
->text
, "");
882 case 'M': /* mode as 10 chars (eg., "-rwxr-x--x" */
883 /* UNTRUSTED, probably unexploitable */
885 char modestring
[16] ;
886 filemodestring (stat_buf
, modestring
);
887 modestring
[10] = '\0';
888 checked_fprintf (dest
, segment
->text
, modestring
);
892 case 'm': /* mode as octal number (perms only) */
893 /* UNTRUSTED, probably unexploitable */
895 /* Output the mode portably using the traditional numbers,
896 even if the host unwisely uses some other numbering
897 scheme. But help the compiler in the common case where
898 the host uses the traditional numbering scheme. */
899 mode_t m
= stat_buf
->st_mode
;
900 boolean traditional_numbering_scheme
=
901 (S_ISUID
== 04000 && S_ISGID
== 02000 && S_ISVTX
== 01000
902 && S_IRUSR
== 00400 && S_IWUSR
== 00200 && S_IXUSR
== 00100
903 && S_IRGRP
== 00040 && S_IWGRP
== 00020 && S_IXGRP
== 00010
904 && S_IROTH
== 00004 && S_IWOTH
== 00002 && S_IXOTH
== 00001);
905 checked_fprintf (dest
, segment
->text
,
906 (traditional_numbering_scheme
908 : ((m
& S_ISUID
? 04000 : 0)
909 | (m
& S_ISGID
? 02000 : 0)
910 | (m
& S_ISVTX
? 01000 : 0)
911 | (m
& S_IRUSR
? 00400 : 0)
912 | (m
& S_IWUSR
? 00200 : 0)
913 | (m
& S_IXUSR
? 00100 : 0)
914 | (m
& S_IRGRP
? 00040 : 0)
915 | (m
& S_IWGRP
? 00020 : 0)
916 | (m
& S_IXGRP
? 00010 : 0)
917 | (m
& S_IROTH
? 00004 : 0)
918 | (m
& S_IWOTH
? 00002 : 0)
919 | (m
& S_IXOTH
? 00001 : 0))));
923 case 'n': /* number of links */
924 /* UNTRUSTED, probably unexploitable */
925 checked_fprintf (dest
, segment
->text
,
926 human_readable ((uintmax_t) stat_buf
->st_nlink
,
932 case 'p': /* pathname */
934 checked_print_quoted (dest
, segment
->text
, pathname
);
937 case 'P': /* pathname with ARGV element stripped */
939 if (state
.curdepth
> 0)
941 cp
= pathname
+ state
.starting_path_length
;
943 /* Move past the slash between the ARGV element
944 and the rest of the pathname. But if the ARGV element
945 ends in a slash, we didn't add another, so we've
946 already skipped past it. */
953 checked_print_quoted (dest
, segment
->text
, cp
);
956 case 's': /* size in bytes */
957 /* UNTRUSTED, probably unexploitable */
958 checked_fprintf (dest
, segment
->text
,
959 human_readable ((uintmax_t) stat_buf
->st_size
,
960 hbuf
, human_ceiling
, 1, 1));
963 case 'S': /* sparseness */
964 /* UNTRUSTED, probably unexploitable */
965 checked_fprintf (dest
, segment
->text
, file_sparseness(stat_buf
));;
968 case 't': /* mtime in `ctime' format */
969 /* UNTRUSTED, probably unexploitable */
970 checked_fprintf (dest
, segment
->text
,
971 ctime_format (get_stat_mtime(stat_buf
)));
974 case 'u': /* user name */
976 /* (well, the actual user is selected by the user on systems
977 * where chown is not restricted, but the user name was
978 * selected by the system administrator)
983 p
= getpwuid (stat_buf
->st_uid
);
986 segment
->text
[segment
->text_len
] = 's';
987 checked_fprintf (dest
, segment
->text
, p
->pw_name
);
992 /* FALLTHROUGH*/ /* .. to case U */
994 case 'U': /* UID number */
995 /* UNTRUSTED, probably unexploitable */
996 checked_fprintf (dest
, segment
->text
,
997 human_readable ((uintmax_t) stat_buf
->st_uid
, hbuf
,
998 human_ceiling
, 1, 1));
1001 /* %Y: type of file system entry like `ls -l`:
1002 * (d,-,l,s,p,b,c,n) n=nonexistent(symlink)
1004 case 'Y': /* in case of symlink */
1008 if (S_ISLNK (stat_buf
->st_mode
))
1011 /* If we would normally follow links, do not do so.
1012 * If we would normally not follow links, do so.
1014 if ((following_links() ? lstat
: stat
)
1015 (state
.rel_pathname
, &sbuf
) != 0)
1017 if ( errno
== ENOENT
)
1019 checked_fprintf (dest
, segment
->text
, "N");
1022 else if ( errno
== ELOOP
)
1024 checked_fprintf (dest
, segment
->text
, "L");
1029 checked_fprintf (dest
, segment
->text
, "?");
1030 error (0, errno
, "%s",
1031 safely_quote_err_filename(0, pathname
));
1037 checked_fprintf (dest
, segment
->text
,
1038 mode_to_filetype(sbuf
.st_mode
& S_IFMT
));
1040 #endif /* S_ISLNK */
1043 checked_fprintf (dest
, segment
->text
,
1044 mode_to_filetype(stat_buf
->st_mode
& S_IFMT
));
1052 checked_fprintf (dest
, segment
->text
,
1053 mode_to_filetype(stat_buf
->st_mode
& S_IFMT
));
1057 /* end of KIND_FORMAT case */
1063 pred_fprintf (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1065 struct format_val
*dest
= &pred_ptr
->args
.printf_vec
;
1066 struct segment
*segment
;
1068 for (segment
= dest
->segment
; segment
; segment
= segment
->next
)
1070 if ( (KIND_FORMAT
== segment
->segkind
) && segment
->format_char
[1]) /* Component of date. */
1075 switch (segment
->format_char
[0])
1078 ts
= get_stat_atime(stat_buf
);
1082 ts
= get_stat_birthtime(stat_buf
);
1083 if ('@' == segment
->format_char
[1])
1086 valid
= (ts
.tv_nsec
>= 0);
1089 ts
= get_stat_ctime(stat_buf
);
1093 ts
= get_stat_mtime(stat_buf
);
1100 /* We trust the output of format_date not to contain
1101 * nasty characters, though the value of the date
1102 * is itself untrusted data.
1107 checked_fprintf (dest
, segment
->text
,
1108 format_date (ts
, segment
->format_char
[1]));
1112 /* The specified timestamp is not available, output
1113 * nothing for the timestamp, but use the rest (so that
1114 * for example find foo -printf '[%Bs] %p\n' can print
1118 checked_fprintf (dest
, segment
->text
, "");
1123 /* Print a segment which is not a date. */
1124 do_fprintf(dest
, segment
, pathname
, stat_buf
);
1131 pred_fstype (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1135 if (strcmp (filesystem_type (stat_buf
, pathname
), pred_ptr
->args
.str
) == 0)
1142 pred_gid (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1146 switch (pred_ptr
->args
.numinfo
.kind
)
1149 if (stat_buf
->st_gid
> pred_ptr
->args
.numinfo
.l_val
)
1153 if (stat_buf
->st_gid
< pred_ptr
->args
.numinfo
.l_val
)
1157 if (stat_buf
->st_gid
== pred_ptr
->args
.numinfo
.l_val
)
1165 pred_group (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1169 if (pred_ptr
->args
.gid
== stat_buf
->st_gid
)
1176 pred_ilname (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1178 return match_lname (pathname
, stat_buf
, pred_ptr
, true);
1181 /* Common code between -name, -iname. PATHNAME is being visited, STR
1182 is name to compare basename against, and FLAGS are passed to
1183 fnmatch. Recall that 'find / -name /' is one of the few times where a '/'
1184 in the -name must actually find something. */
1186 pred_name_common (const char *pathname
, const char *str
, int flags
)
1189 /* We used to use last_component() here, but that would not allow us to modify the
1190 * input string, which is const. We could optimise by duplicating the string only
1191 * if we need to modify it, and I'll do that if there is a measurable
1192 * performance difference on a machine built after 1990...
1194 char *base
= base_name (pathname
);
1195 /* remove trailing slashes, but leave "/" or "//foo" unchanged. */
1196 strip_trailing_slashes(base
);
1198 /* FNM_PERIOD is not used here because POSIX requires that it not be.
1199 * See http://standards.ieee.org/reading/ieee/interp/1003-2-92_int/pasc-1003.2-126.html
1201 b
= fnmatch (str
, base
, flags
) == 0;
1207 pred_iname (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1210 return pred_name_common (pathname
, pred_ptr
->args
.str
, FNM_CASEFOLD
);
1214 pred_inum (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1218 switch (pred_ptr
->args
.numinfo
.kind
)
1221 if (stat_buf
->st_ino
> pred_ptr
->args
.numinfo
.l_val
)
1225 if (stat_buf
->st_ino
< pred_ptr
->args
.numinfo
.l_val
)
1229 if (stat_buf
->st_ino
== pred_ptr
->args
.numinfo
.l_val
)
1237 pred_ipath (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1241 if (fnmatch (pred_ptr
->args
.str
, pathname
, FNM_CASEFOLD
) == 0)
1247 pred_links (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1251 switch (pred_ptr
->args
.numinfo
.kind
)
1254 if (stat_buf
->st_nlink
> pred_ptr
->args
.numinfo
.l_val
)
1258 if (stat_buf
->st_nlink
< pred_ptr
->args
.numinfo
.l_val
)
1262 if (stat_buf
->st_nlink
== pred_ptr
->args
.numinfo
.l_val
)
1270 pred_lname (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1272 return match_lname (pathname
, stat_buf
, pred_ptr
, false);
1276 match_lname (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
, boolean ignore_case
)
1278 boolean ret
= false;
1280 if (S_ISLNK (stat_buf
->st_mode
))
1282 char *linkname
= get_link_name_at (pathname
, state
.cwd_dir_fd
, state
.rel_pathname
);
1285 if (fnmatch (pred_ptr
->args
.str
, linkname
,
1286 ignore_case
? FNM_CASEFOLD
: 0) == 0)
1291 #endif /* S_ISLNK */
1296 pred_ls (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1298 return pred_fls(pathname
, stat_buf
, pred_ptr
);
1302 pred_mmin (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1305 return pred_timewindow(get_stat_mtime(stat_buf
), pred_ptr
, 60);
1309 pred_mtime (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1312 return pred_timewindow(get_stat_mtime(stat_buf
), pred_ptr
, DAYSECS
);
1316 pred_name (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1319 return pred_name_common (pathname
, pred_ptr
->args
.str
, 0);
1323 pred_negate (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1325 return !apply_predicate(pathname
, stat_buf
, pred_ptr
->pred_right
);
1329 pred_newer (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1333 assert (COMP_GT
== pred_ptr
->args
.reftime
.kind
);
1334 return compare_ts(get_stat_mtime(stat_buf
), pred_ptr
->args
.reftime
.ts
) > 0;
1338 pred_newerXY (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1341 boolean collected
= false;
1343 assert (COMP_GT
== pred_ptr
->args
.reftime
.kind
);
1345 switch (pred_ptr
->args
.reftime
.xval
)
1348 assert (pred_ptr
->args
.reftime
.xval
!= XVAL_TIME
);
1352 ts
= get_stat_atime(stat_buf
);
1356 case XVAL_BIRTHTIME
:
1357 ts
= get_stat_birthtime(stat_buf
);
1359 if (ts
.tv_nsec
< 0);
1361 /* XXX: Cannot determine birth time. Warn once. */
1362 error(0, 0, _("Warning: cannot determine birth time of file %s"),
1363 safely_quote_err_filename(0, pathname
));
1369 ts
= get_stat_ctime(stat_buf
);
1374 ts
= get_stat_mtime(stat_buf
);
1380 return compare_ts(ts
, pred_ptr
->args
.reftime
.ts
) > 0;
1384 pred_nogroup (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1390 extern char *gid_unused
;
1392 return gid_unused
[(unsigned) stat_buf
->st_gid
];
1394 return getgrgid (stat_buf
->st_gid
) == NULL
;
1399 pred_nouser (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1402 extern char *uid_unused
;
1409 return uid_unused
[(unsigned) stat_buf
->st_uid
];
1411 return getpwuid (stat_buf
->st_uid
) == NULL
;
1417 is_ok(const char *program
, const char *arg
)
1420 /* The draft open standard requires that, in the POSIX locale,
1421 the last non-blank character of this prompt be '?'.
1422 The exact format is not specified.
1423 This standard does not have requirements for locales other than POSIX
1425 /* XXX: printing UNTRUSTED data here. */
1426 fprintf (stderr
, _("< %s ... %s > ? "), program
, arg
);
1432 pred_ok (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1434 if (is_ok(pred_ptr
->args
.exec_vec
.replace_vec
[0], pathname
))
1435 return new_impl_pred_exec (get_start_dirfd(),
1436 pathname
, stat_buf
, pred_ptr
, NULL
, 0);
1442 pred_okdir (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1444 const char *prefix
= (state
.rel_pathname
[0] == '/') ? NULL
: "./";
1445 if (is_ok(pred_ptr
->args
.exec_vec
.replace_vec
[0], pathname
))
1446 return new_impl_pred_exec (get_current_dirfd(),
1447 state
.rel_pathname
, stat_buf
, pred_ptr
,
1448 prefix
, (prefix
? 2 : 0));
1454 pred_openparen (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1463 pred_or (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1465 if (pred_ptr
->pred_left
== NULL
1466 || !apply_predicate(pathname
, stat_buf
, pred_ptr
->pred_left
))
1468 return apply_predicate(pathname
, stat_buf
, pred_ptr
->pred_right
);
1475 pred_path (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1478 if (fnmatch (pred_ptr
->args
.str
, pathname
, 0) == 0)
1484 pred_perm (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1486 mode_t mode
= stat_buf
->st_mode
;
1487 mode_t perm_val
= pred_ptr
->args
.perm
.val
[S_ISDIR (mode
) != 0];
1489 switch (pred_ptr
->args
.perm
.kind
)
1492 return (mode
& perm_val
) == perm_val
;
1496 /* True if any of the bits set in the mask are also set in the file's mode.
1499 * Otherwise, if onum is prefixed by a hyphen, the primary shall
1500 * evaluate as true if at least all of the bits specified in
1501 * onum that are also set in the octal mask 07777 are set.
1503 * Eric Blake's interpretation is that the mode argument is zero,
1507 return true; /* Savannah bug 14748; we used to return false */
1509 return (mode
& perm_val
) != 0;
1513 return (mode
& MODE_ALL
) == perm_val
;
1523 struct access_check_args
1525 const char *filename
;
1532 access_callback(void *context
)
1535 struct access_check_args
*args
= context
;
1536 if ((rv
= access(args
->filename
, args
->access_type
)) < 0)
1537 args
->cb_errno
= errno
;
1542 can_access(int access_type
)
1544 struct access_check_args args
;
1545 args
.filename
= state
.rel_pathname
;
1546 args
.access_type
= access_type
;
1548 return 0 == run_in_dir(state
.cwd_dir_fd
, access_callback
, &args
);
1553 pred_executable (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1559 return can_access(X_OK
);
1563 pred_readable (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1569 return can_access(R_OK
);
1573 pred_writable (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1579 return can_access(W_OK
);
1583 pred_print (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1588 print_quoted(pred_ptr
->args
.printf_vec
.stream
,
1589 pred_ptr
->args
.printf_vec
.quote_opts
,
1590 pred_ptr
->args
.printf_vec
.dest_is_tty
,
1596 pred_print0 (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1598 return pred_fprint0(pathname
, stat_buf
, pred_ptr
);
1602 pred_prune (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1607 if (options
.do_dir_first
== true && /* no effect with -depth */
1609 S_ISDIR(stat_buf
->st_mode
))
1610 state
.stop_at_current_level
= true;
1612 /* findutils used to return options.do_dir_first here, so that -prune
1613 * returns true only if -depth is not in effect. But POSIX requires
1614 * that -prune always evaluate as true.
1620 pred_quit (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1626 /* Run any cleanups. This includes executing any command lines
1627 * we have partly built but not executed.
1631 /* Since -exec and friends don't leave child processes running in the
1632 * background, there is no need to wait for them here.
1634 exit(state
.exit_status
); /* 0 for success, etc. */
1638 pred_regex (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1640 int len
= strlen (pathname
);
1642 if (re_match (pred_ptr
->args
.regex
, pathname
, len
, 0,
1643 (struct re_registers
*) NULL
) == len
)
1649 pred_size (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1654 f_val
= ((stat_buf
->st_size
/ pred_ptr
->args
.size
.blocksize
)
1655 + (stat_buf
->st_size
% pred_ptr
->args
.size
.blocksize
!= 0));
1656 switch (pred_ptr
->args
.size
.kind
)
1659 if (f_val
> pred_ptr
->args
.size
.size
)
1663 if (f_val
< pred_ptr
->args
.size
.size
)
1667 if (f_val
== pred_ptr
->args
.size
.size
)
1675 pred_samefile (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1677 /* Potential optimisation: because of the loop protection, we always
1678 * know the device of the current directory, hence the device number
1679 * of the file we're currently considering. If -L is not in effect,
1680 * and the device number of the file we're looking for is not the
1681 * same as the device number of the current directory, this
1682 * predicate cannot return true. Hence there would be no need to
1683 * stat the file we're looking at.
1687 /* We will often still have an fd open on the file under consideration,
1688 * but that's just to ensure inode number stability by maintaining
1689 * a reference to it; we don't need the file for anything else.
1691 return stat_buf
->st_ino
== pred_ptr
->args
.samefileid
.ino
1692 && stat_buf
->st_dev
== pred_ptr
->args
.samefileid
.dev
;
1696 pred_true (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1705 pred_type (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1708 mode_t type
= pred_ptr
->args
.type
;
1710 assert (state
.have_type
);
1712 if (0 == state
.type
)
1714 /* This can sometimes happen with broken NFS servers.
1715 * See Savannah bug #16378.
1722 if (state
.have_stat
)
1723 mode
= stat_buf
->st_mode
;
1728 /* POSIX system; check `mode' the slow way. */
1729 if ((S_ISBLK (mode
) && type
== S_IFBLK
)
1730 || (S_ISCHR (mode
) && type
== S_IFCHR
)
1731 || (S_ISDIR (mode
) && type
== S_IFDIR
)
1732 || (S_ISREG (mode
) && type
== S_IFREG
)
1734 || (S_ISLNK (mode
) && type
== S_IFLNK
)
1737 || (S_ISFIFO (mode
) && type
== S_IFIFO
)
1740 || (S_ISSOCK (mode
) && type
== S_IFSOCK
)
1743 || (S_ISDOOR (mode
) && type
== S_IFDOOR
)
1747 /* Unix system; check `mode' the fast way. */
1748 if ((mode
& S_IFMT
) == type
)
1756 pred_uid (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1759 switch (pred_ptr
->args
.numinfo
.kind
)
1762 if (stat_buf
->st_uid
> pred_ptr
->args
.numinfo
.l_val
)
1766 if (stat_buf
->st_uid
< pred_ptr
->args
.numinfo
.l_val
)
1770 if (stat_buf
->st_uid
== pred_ptr
->args
.numinfo
.l_val
)
1778 pred_used (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1780 struct timespec delta
, at
, ct
;
1784 /* TODO: this needs to be retested carefully (manually, if necessary) */
1785 at
= get_stat_atime(stat_buf
);
1786 ct
= get_stat_ctime(stat_buf
);
1787 delta
.tv_sec
= at
.tv_sec
- ct
.tv_sec
;
1788 delta
.tv_nsec
= at
.tv_nsec
- ct
.tv_nsec
;
1789 if (delta
.tv_nsec
< 0)
1791 delta
.tv_nsec
+= 1000000000;
1794 return pred_timewindow(delta
, pred_ptr
, DAYSECS
);
1798 pred_user (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1801 if (pred_ptr
->args
.uid
== stat_buf
->st_uid
)
1808 pred_xtype (const char *pathname
, struct stat
*stat_buf
, struct predicate
*pred_ptr
)
1810 struct stat sbuf
; /* local copy, not stat_buf because we're using a different stat method */
1811 int (*ystat
) (const char*, struct stat
*p
);
1813 /* If we would normally stat the link itself, stat the target instead.
1814 * If we would normally follow the link, stat the link itself instead.
1816 if (following_links())
1817 ystat
= optionp_stat
;
1819 ystat
= optionl_stat
;
1821 set_stat_placeholders(&sbuf
);
1822 if ((*ystat
) (state
.rel_pathname
, &sbuf
) != 0)
1824 if (following_links() && errno
== ENOENT
)
1826 /* If we failed to follow the symlink,
1827 * fall back on looking at the symlink itself.
1829 /* Mimic behavior of ls -lL. */
1830 return (pred_type (pathname
, stat_buf
, pred_ptr
));
1834 error (0, errno
, "%s", safely_quote_err_filename(0, pathname
));
1835 state
.exit_status
= 1;
1839 /* Now that we have our stat() information, query it in the same
1840 * way that -type does.
1842 return (pred_type (pathname
, &sbuf
, pred_ptr
));
1845 /* 1) fork to get a child; parent remembers the child pid
1846 2) child execs the command requested
1847 3) parent waits for child; checks for proper pid of child
1851 ret errno status(h) status(l)
1853 pid x signal# 0177 stopped
1854 pid x exit arg 0 term by _exit
1855 pid x 0 signal # term by signal
1856 -1 EINTR parent got signal
1857 -1 other some other kind of error
1859 Return true only if the pid matches, status(l) is
1860 zero, and the exit arg (status high) is 0.
1861 Otherwise return false, possibly printing an error message. */
1865 prep_child_for_exec (boolean close_stdin
, int dir_fd
)
1870 const char inputfile
[] = "/dev/null";
1874 error(0, errno
, _("Cannot close standard input"));
1879 if (open(inputfile
, O_RDONLY
1880 #if defined O_LARGEFILE
1885 /* This is not entirely fatal, since
1886 * executing the child with a closed
1887 * stdin is almost as good as executing it
1888 * with its stdin attached to /dev/null.
1890 error (0, errno
, "%s", safely_quote_err_filename(0, inputfile
));
1891 /* do not set ok=false, it is OK to continue anyway. */
1896 /* Even if DebugSearch is set, don't announce our change of
1897 * directory, since we're not going to emit a subsequent
1898 * announcement of a call to stat() anyway, as we're about to exec
1901 if (dir_fd
!= AT_FDCWD
)
1903 assert (dir_fd
>= 0);
1904 if (0 != fchdir(dir_fd
))
1906 /* If we cannot execute our command in the correct directory,
1907 * we should not execute it at all.
1909 error(0, errno
, _("Failed to change directory"));
1919 launch (const struct buildcmd_control
*ctl
,
1920 struct buildcmd_state
*buildstate
)
1924 static int first_time
= 1;
1925 const struct exec_val
*execp
= buildstate
->usercontext
;
1927 if (!execp
->use_current_dir
)
1929 assert (starting_desc
>= 0);
1930 assert (execp
->dir_fd
== starting_desc
);
1934 /* Null terminate the arg list. */
1935 bc_push_arg (ctl
, buildstate
, (char *) NULL
, 0, NULL
, 0, false);
1937 /* Make sure output of command doesn't get mixed with find output. */
1941 /* Make sure to listen for the kids. */
1945 signal (SIGCHLD
, SIG_DFL
);
1948 child_pid
= fork ();
1949 if (child_pid
== -1)
1950 error (1, errno
, _("cannot fork"));
1953 /* We are the child. */
1954 assert (starting_desc
>= 0);
1955 if (!prep_child_for_exec(execp
->close_stdin
, execp
->dir_fd
))
1960 execvp (buildstate
->cmd_argv
[0], buildstate
->cmd_argv
);
1961 error (0, errno
, "%s",
1962 safely_quote_err_filename(0, buildstate
->cmd_argv
[0]));
1967 /* In parent; set up for next time. */
1968 bc_clear_args(ctl
, buildstate
);
1971 while (waitpid (child_pid
, &wait_status
, 0) == (pid_t
) -1)
1975 error (0, errno
, _("error waiting for %s"),
1976 safely_quote_err_filename(0, buildstate
->cmd_argv
[0]));
1977 state
.exit_status
= 1;
1978 return 0; /* FAIL */
1982 if (WIFSIGNALED (wait_status
))
1984 error (0, 0, _("%s terminated by signal %d"),
1985 quotearg_n_style(0, options
.err_quoting_style
,
1986 buildstate
->cmd_argv
[0]),
1987 WTERMSIG (wait_status
));
1989 if (execp
->multiple
)
1991 /* -exec \; just returns false if the invoked command fails.
1992 * -exec {} + returns true if the invoked command fails, but
1993 * sets the program exit status.
1995 state
.exit_status
= 1;
2001 if (0 == WEXITSTATUS (wait_status
))
2007 if (execp
->multiple
)
2009 /* -exec \; just returns false if the invoked command fails.
2010 * -exec {} + returns true if the invoked command fails, but
2011 * sets the program exit status.
2013 state
.exit_status
= 1;
2015 return 0; /* FAIL */
2021 /* Return a static string formatting the time WHEN according to the
2022 * strftime format character KIND.
2024 * This function contains a number of assertions. These look like
2025 * runtime checks of the results of computations, which would be a
2026 * problem since external events should not be tested for with
2027 * "assert" (instead you should use "if"). However, they are not
2028 * really runtime checks. The assertions actually exist to verify
2029 * that the various buffers are correctly sized.
2032 format_date (struct timespec ts
, int kind
)
2034 /* In theory, we use an extra 10 characters for 9 digits of
2035 * nanoseconds and 1 for the decimal point. However, the real
2036 * world is more complex than that.
2038 * For example, some systems return junk in the tv_nsec part of
2039 * st_birthtime. An example of this is the NetBSD-4.0-RELENG kernel
2040 * (at Sat Mar 24 18:46:46 2007) running a NetBSD-3.1-RELEASE
2041 * runtime and examining files on an msdos filesytem. So for that
2042 * reason we set NS_BUF_LEN to 32, which is simply "long enough" as
2043 * opposed to "exactly the right size". Note that the behaviour of
2044 * NetBSD appears to be a result of the use of uninitialised data,
2045 * as it's not 100% reproducible (more like 25%).
2049 DATE_LEN_PERCENT_APLUS
=21 /* length of result of %A+ (it's longer than %c)*/
2051 static char buf
[128u+10u + MAX(DATE_LEN_PERCENT_APLUS
,
2052 MAX (LONGEST_HUMAN_READABLE
+ 2, NS_BUF_LEN
+64+200))];
2053 char ns_buf
[NS_BUF_LEN
]; /* -.9999999990 (- sign can happen!)*/
2054 int charsprinted
, need_ns_suffix
;
2058 /* human_readable() assumes we pass a buffer which is at least as
2059 * long as LONGEST_HUMAN_READABLE. We use an assertion here to
2060 * ensure that no nasty unsigned overflow happend in our calculation
2061 * of the size of buf. Do the assertion here rather than in the
2062 * code for %@ so that we find the problem quickly if it exists. If
2063 * you want to submit a patch to move this into the if statement, go
2064 * ahead, I'll apply it. But include performance timings
2065 * demonstrating that the performance difference is actually
2068 verify (sizeof(buf
) >= LONGEST_HUMAN_READABLE
);
2073 /* Format the main part of the time. */
2076 strcpy (fmt
, "%F+%T");
2085 /* %a, %c, and %t are handled in ctime_format() */
2102 /* Format the nanoseconds part. Leave a trailing zero to
2103 * discourage people from writing scripts which extract the
2104 * fractional part of the timestamp by using column offsets.
2105 * The reason for discouraging this is that in the future, the
2106 * granularity may not be nanoseconds.
2109 charsprinted
= snprintf(ns_buf
, NS_BUF_LEN
, ".%09ld0", (long int)ts
.tv_nsec
);
2110 assert (charsprinted
< NS_BUF_LEN
);
2114 && (tm
= localtime (&ts
.tv_sec
))
2115 && strftime (buf
, sizeof buf
, fmt
, tm
))
2117 /* For %AS, %CS, %TS, add the fractional part of the seconds
2122 assert ((sizeof buf
- strlen(buf
)) > strlen(ns_buf
));
2123 strcat(buf
, ns_buf
);
2129 uintmax_t w
= ts
.tv_sec
;
2130 size_t used
, len
, remaining
;
2132 /* XXX: note that we are negating an unsigned type which is the
2133 * widest possible unsigned type.
2135 char *p
= human_readable (ts
.tv_sec
< 0 ? -w
: w
, buf
+ 1,
2136 human_ceiling
, 1, 1);
2138 assert (p
< (buf
+ (sizeof buf
)));
2140 *--p
= '-'; /* XXX: Ugh, relying on internal details of human_readable(). */
2142 /* Add the nanoseconds part. Because we cannot enforce a
2143 * particlar implementation of human_readable, we cannot assume
2144 * any particular value for (p-buf). So we need to be careful
2145 * that there is enough space remaining in the buffer.
2150 used
= (p
-buf
) + len
; /* Offset into buf of current end */
2151 assert (sizeof buf
> used
); /* Ensure we can perform subtraction safely. */
2152 remaining
= sizeof buf
- used
- 1u; /* allow space for NUL */
2154 if (strlen(ns_buf
) >= remaining
)
2157 "charsprinted=%ld but remaining=%lu: ns_buf=%s",
2158 (long)charsprinted
, (unsigned long)remaining
, ns_buf
);
2160 assert (strlen(ns_buf
) < remaining
);
2167 static const char *weekdays
[] =
2169 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
2171 static char * months
[] =
2173 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2174 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2179 ctime_format (struct timespec ts
)
2181 const struct tm
* ptm
;
2182 #define TIME_BUF_LEN 1024u
2183 static char resultbuf
[TIME_BUF_LEN
];
2186 ptm
= localtime(&ts
.tv_sec
);
2189 assert (ptm
->tm_wday
>= 0);
2190 assert (ptm
->tm_wday
< 7);
2191 assert (ptm
->tm_mon
>= 0);
2192 assert (ptm
->tm_mon
< 12);
2193 assert (ptm
->tm_hour
>= 0);
2194 assert (ptm
->tm_hour
< 24);
2195 assert (ptm
->tm_min
< 60);
2196 assert (ptm
->tm_sec
<= 61); /* allows 2 leap seconds. */
2198 /* wkday mon mday hh:mm:ss.nnnnnnnnn yyyy */
2199 nout
= snprintf(resultbuf
, TIME_BUF_LEN
,
2200 "%3s %3s %2d %02d:%02d:%02d.%010ld %04d",
2201 weekdays
[ptm
->tm_wday
],
2202 months
[ptm
->tm_mon
],
2207 (long int)ts
.tv_nsec
,
2208 1900 + ptm
->tm_year
);
2210 assert (nout
< TIME_BUF_LEN
);
2215 /* The time cannot be represented as a struct tm.
2216 Output it as an integer. */
2217 return format_date (ts
, '@');
2221 /* Copy STR into BUF and trim blanks from the end of BUF.
2225 blank_rtrim (str
, buf
)
2234 i
= strlen (buf
) - 1;
2235 while ((i
>= 0) && ((buf
[i
] == ' ') || buf
[i
] == '\t'))
2241 /* Print out the predicate list starting at NODE. */
2243 print_list (FILE *fp
, struct predicate
*node
)
2245 struct predicate
*cur
;
2251 fprintf (fp
, "[%s] ", blank_rtrim (cur
->p_name
, name
));
2252 cur
= cur
->pred_next
;
2257 /* Print out the predicate list starting at NODE. */
2259 print_parenthesised(FILE *fp
, struct predicate
*node
)
2265 if ((pred_is(node
, pred_or
) || pred_is(node
, pred_and
))
2266 && node
->pred_left
== NULL
)
2268 /* We print "<nothing> or X" as just "X"
2269 * We print "<nothing> and X" as just "X"
2271 print_parenthesised(fp
, node
->pred_right
);
2275 if (node
->pred_left
|| node
->pred_right
)
2279 fprintf(fp
, "%s", " ( ");
2280 print_optlist(fp
, node
);
2282 fprintf(fp
, "%s", " ) ");
2288 print_optlist (FILE *fp
, const struct predicate
*p
)
2292 print_parenthesised(fp
, p
->pred_left
);
2295 p
->need_stat
? "[call stat] " : "",
2296 p
->need_type
? "[need type] " : "");
2297 print_predicate(fp
, p
);
2298 fprintf(fp
, " [%g] ", p
->est_success_rate
);
2299 if (options
.debug_options
& DebugSuccessRates
)
2301 fprintf(fp
, "[%ld/%ld", p
->perf
.successes
, p
->perf
.visits
);
2304 double real_rate
= (double)p
->perf
.successes
/ (double)p
->perf
.visits
;
2305 fprintf(fp
, "=%g] ", real_rate
);
2309 fprintf(fp
, "=_] ");
2312 print_parenthesised(fp
, p
->pred_right
);
2316 void show_success_rates(const struct predicate
*p
)
2318 if (options
.debug_options
& DebugSuccessRates
)
2320 fprintf(stderr
, "Predicate success rates after completion:\n");
2321 print_optlist(stderr
, p
);
2322 fprintf(stderr
, "\n");
2330 /* If _NDEBUG is defined, the assertions will do nothing. Hence
2331 * there is no point in having a function body for pred_sanity_check()
2332 * if that preprocessor macro is defined.
2335 pred_sanity_check(const struct predicate
*predicates
)
2337 /* Do nothing, since assert is a no-op with _NDEBUG set */
2342 pred_sanity_check(const struct predicate
*predicates
)
2344 const struct predicate
*p
;
2346 for (p
=predicates
; p
!= NULL
; p
=p
->pred_next
)
2348 /* All predicates must do something. */
2349 assert (p
->pred_func
!= NULL
);
2351 /* All predicates must have a parser table entry. */
2352 assert (p
->parser_entry
!= NULL
);
2354 /* If the parser table tells us that just one predicate function is
2355 * possible, verify that that is still the one that is in effect.
2356 * If the parser has NULL for the predicate function, that means that
2357 * the parse_xxx function fills it in, so we can't check it.
2359 if (p
->parser_entry
->pred_func
)
2361 assert (p
->parser_entry
->pred_func
== p
->pred_func
);
2364 switch (p
->parser_entry
->type
)
2366 /* Options all take effect during parsing, so there should
2367 * be no predicate entries corresponding to them. Hence we
2368 * should not see any ARG_OPTION or ARG_POSITIONAL_OPTION
2371 * This is a silly way of coding this test, but it prevents
2372 * a compiler warning (i.e. otherwise it would think that
2373 * there would be case statements missing).
2376 case ARG_POSITIONAL_OPTION
:
2377 assert (p
->parser_entry
->type
!= ARG_OPTION
);
2378 assert (p
->parser_entry
->type
!= ARG_POSITIONAL_OPTION
);
2382 assert(p
->side_effects
); /* actions have side effects. */
2383 if (!pred_is(p
, pred_prune
) && !pred_is(p
, pred_quit
))
2385 /* actions other than -prune and -quit should
2386 * inhibit the default -print
2388 assert (p
->no_default_print
);
2392 /* We happen to know that the only user of ARG_SPECIAL_PARSE
2393 * is a test, so handle it like ARG_TEST.
2395 case ARG_SPECIAL_PARSE
:
2397 case ARG_PUNCTUATION
:
2399 /* Punctuation and tests should have no side
2400 * effects and not inhibit default print.
2402 assert (!p
->no_default_print
);
2403 assert (!p
->side_effects
);