]>
git.saurik.com Git - apple/shell_cmds.git/blob - find/function.c
01e45eaac107abbf91b47091c24a9d966eba2dc6
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Cimarron D. Taylor of the University of California, Berkeley.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 static const char sccsid
[] = "@(#)function.c 8.10 (Berkeley) 5/4/95";
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD: src/usr.bin/find/function.c,v 1.63 2009/09/04 20:01:16 trasz Exp $");
46 #include <sys/param.h>
47 #include <sys/ucred.h>
49 #include <sys/types.h>
52 #include <sys/mount.h>
53 #include <sys/timeb.h>
55 #include <sys/xattr.h>
56 #endif /* __APPLE__ */
76 #include <sys/sysctl.h>
78 #include <get_compat.h>
80 #define COMPAT_MODE(func, mode) 1
83 static PLAN
*palloc(OPTION
*);
84 static long long find_parsenum(PLAN
*, const char *, char *, char *);
85 static long long find_parsetime(PLAN
*, const char *, char *);
86 static char *nextarg(OPTION
*, char ***);
88 extern char **environ
;
90 static PLAN
*lastexecplus
= NULL
;
92 #define COMPARE(a, b) do { \
93 switch (plan->flags & F_ELG_MASK) { \
106 palloc(OPTION
*option
)
110 if ((new = malloc(sizeof(PLAN
))) == NULL
)
112 new->execute
= option
->execute
;
113 new->flags
= option
->flags
;
120 * Parse a string of the form [+-]# and return the value.
123 find_parsenum(PLAN
*plan
, const char *option
, char *vp
, char *endch
)
126 char *endchar
, *str
; /* Pointer to character ending conversion. */
128 /* Determine comparison from leading + or -. */
133 plan
->flags
|= F_GREATER
;
137 plan
->flags
|= F_LESSTHAN
;
140 plan
->flags
|= F_EQUAL
;
145 * Convert the string with strtoq(). Note, if strtoq() returns zero
146 * and endchar points to the beginning of the string we know we have
149 value
= strtoq(str
, &endchar
, 10);
150 if (value
== 0 && endchar
== str
)
151 errx(1, "%s: %s: illegal numeric value", option
, vp
);
152 if (endchar
[0] && endch
== NULL
)
153 errx(1, "%s: %s: illegal trailing character", option
, vp
);
161 * Parse a string of the form [+-]([0-9]+[smhdw]?)+ and return the value.
164 find_parsetime(PLAN
*plan
, const char *option
, char *vp
)
166 long long secs
, value
;
167 char *str
, *unit
; /* Pointer to character ending conversion. */
169 /* Determine comparison from leading + or -. */
174 plan
->flags
|= F_GREATER
;
178 plan
->flags
|= F_LESSTHAN
;
181 plan
->flags
|= F_EQUAL
;
185 value
= strtoq(str
, &unit
, 10);
186 if (value
== 0 && unit
== str
) {
187 errx(1, "%s: %s: illegal time value", option
, vp
);
197 case 's': /* seconds */
200 case 'm': /* minutes */
203 case 'h': /* hours */
204 secs
+= value
* 3600;
207 secs
+= value
* 86400;
209 case 'w': /* weeks */
210 secs
+= value
* 604800;
213 errx(1, "%s: %s: bad unit '%c'", option
, vp
, *unit
);
217 if (*str
== '\0') /* EOS */
219 value
= strtoq(str
, &unit
, 10);
220 if (value
== 0 && unit
== str
) {
221 errx(1, "%s: %s: illegal time value", option
, vp
);
225 errx(1, "%s: %s: missing trailing unit", option
, vp
);
229 plan
->flags
|= F_EXACTTIME
;
235 * Check that another argument still exists, return a pointer to it,
236 * and increment the argument vector pointer.
239 nextarg(OPTION
*option
, char ***argvp
)
243 if ((arg
= **argvp
) == 0)
244 errx(1, "%s: requires additional arguments", option
->name
);
250 * The value of n for the inode times (atime, birthtime, ctime, mtime) is a
251 * range, i.e. n matches from (n - 1) to n 24 hour periods. This interacts
252 * with -n, such that "-mtime -1" would be less than 0 days, which isn't what
253 * the user wanted. Correct so that -1 is "less than 1".
255 #define TIME_CORRECT(p) \
256 if (((p)->flags & F_ELG_MASK) == F_LESSTHAN) \
260 * -[acm]min n functions --
262 * True if the difference between the
263 * file access time (-amin)
264 * file birth time (-Bmin)
265 * last change of file status information (-cmin)
266 * file modification time (-mmin)
267 * and the current time is n min periods.
270 f_Xmin(PLAN
*plan
, FTSENT
*entry
)
272 if (plan
->flags
& F_TIME_C
) {
273 COMPARE((now
- entry
->fts_statp
->st_ctime
+
274 60 - 1) / 60, plan
->t_data
);
275 } else if (plan
->flags
& F_TIME_A
) {
276 COMPARE((now
- entry
->fts_statp
->st_atime
+
277 60 - 1) / 60, plan
->t_data
);
278 } else if (plan
->flags
& F_TIME_B
) {
279 COMPARE((now
- entry
->fts_statp
->st_birthtime
+
280 60 - 1) / 60, plan
->t_data
);
282 COMPARE((now
- entry
->fts_statp
->st_mtime
+
283 60 - 1) / 60, plan
->t_data
);
288 c_Xmin(OPTION
*option
, char ***argvp
)
293 nmins
= nextarg(option
, argvp
);
294 ftsoptions
&= ~FTS_NOSTAT
;
296 new = palloc(option
);
297 new->t_data
= find_parsenum(new, option
->name
, nmins
, NULL
);
303 * -[acm]time n functions --
305 * True if the difference between the
306 * file access time (-atime)
307 * file birth time (-Btime)
308 * last change of file status information (-ctime)
309 * file modification time (-mtime)
310 * and the current time is n 24 hour periods.
314 f_Xtime(PLAN
*plan
, FTSENT
*entry
)
318 if (plan
->flags
& F_TIME_A
)
319 xtime
= entry
->fts_statp
->st_atime
;
320 else if (plan
->flags
& F_TIME_B
)
321 xtime
= entry
->fts_statp
->st_birthtime
;
322 else if (plan
->flags
& F_TIME_C
)
323 xtime
= entry
->fts_statp
->st_ctime
;
325 xtime
= entry
->fts_statp
->st_mtime
;
327 if (plan
->flags
& F_EXACTTIME
)
328 COMPARE(now
- xtime
, plan
->t_data
);
330 COMPARE((now
- xtime
+ (COMPAT_MODE("bin/find", "unix2003") ? 0 : 86400 - 1)) / 86400, plan
->t_data
);
334 c_Xtime(OPTION
*option
, char ***argvp
)
339 value
= nextarg(option
, argvp
);
340 ftsoptions
&= ~FTS_NOSTAT
;
342 new = palloc(option
);
343 new->t_data
= find_parsetime(new, option
->name
, value
);
344 if (!(new->flags
& F_EXACTTIME
) && !COMPAT_MODE("bin/find", "unix2003"))
350 * -maxdepth/-mindepth n functions --
352 * Does the same as -prune if the level of the current file is
353 * greater/less than the specified maximum/minimum depth.
355 * Note that -maxdepth and -mindepth are handled specially in
356 * find_execute() so their f_* functions are set to f_always_true().
359 c_mXXdepth(OPTION
*option
, char ***argvp
)
364 dstr
= nextarg(option
, argvp
);
366 /* all other errors handled by find_parsenum() */
367 errx(1, "%s: %s: value must be positive", option
->name
, dstr
);
369 new = palloc(option
);
370 if (option
->flags
& F_MAXDEPTH
)
371 maxdepth
= find_parsenum(new, option
->name
, dstr
, NULL
);
373 mindepth
= find_parsenum(new, option
->name
, dstr
, NULL
);
380 * Show files with EXTENDED ACL attributes.
384 f_acl(PLAN
*plan __unused
, FTSENT
*entry
)
391 if ((facl
= acl_get_link_np(entry
->fts_accpath
, ACL_TYPE_EXTENDED
)) != NULL
) {
392 if (acl_get_entry(facl
, ACL_FIRST_ENTRY
, &ae
) == 0) {
399 #else /* !__APPLE__ */
401 f_acl(PLAN
*plan __unused
, FTSENT
*entry
)
405 int acl_supported
= 0, ret
, trivial
;
407 if (S_ISLNK(entry
->fts_statp
->st_mode
))
409 ret
= pathconf(entry
->fts_accpath
, _PC_ACL_NFS4
);
412 acl_type
= ACL_TYPE_NFS4
;
413 } else if (ret
< 0 && errno
!= EINVAL
) {
414 warn("%s", entry
->fts_accpath
);
417 if (acl_supported
== 0) {
418 ret
= pathconf(entry
->fts_accpath
, _PC_ACL_EXTENDED
);
421 acl_type
= ACL_TYPE_ACCESS
;
422 } else if (ret
< 0 && errno
!= EINVAL
) {
423 warn("%s", entry
->fts_accpath
);
427 if (acl_supported
== 0)
430 facl
= acl_get_file(entry
->fts_accpath
, acl_type
);
432 warn("%s", entry
->fts_accpath
);
435 ret
= acl_is_trivial_np(facl
, &trivial
);
438 warn("%s", entry
->fts_accpath
);
446 #endif /* __APPLE__ */
449 c_acl(OPTION
*option
, char ***argvp __unused
)
452 ftsoptions
&= ~FTS_NOSTAT
;
453 #endif /* !__APPLE__ */
454 return (palloc(option
));
459 f_xattr(PLAN
*plan __unused
, FTSENT
*entry
)
465 xattr
= listxattr(entry
->fts_accpath
, NULL
, 0, XATTR_NOFOLLOW
);
473 f_xattrname(PLAN
*plan
, FTSENT
*entry
)
479 xattr
= getxattr(entry
->fts_accpath
, plan
->c_data
, NULL
, 0, 0, XATTR_NOFOLLOW
);
485 #endif /* __APPLE__ */
488 * -delete functions --
490 * True always. Makes its best shot and continues on regardless.
493 f_delete(PLAN
*plan __unused
, FTSENT
*entry
)
495 /* ignore these from fts */
496 if (strcmp(entry
->fts_accpath
, ".") == 0 ||
497 strcmp(entry
->fts_accpath
, "..") == 0)
501 if (isdepth
== 0 || /* depth off */
502 (ftsoptions
& FTS_NOSTAT
)) /* not stat()ing */
503 errx(1, "-delete: insecure options got turned on");
505 if (!(ftsoptions
& FTS_PHYSICAL
) || /* physical off */
506 (ftsoptions
& FTS_LOGICAL
)) /* or finally, logical on */
507 errx(1, "-delete: forbidden when symlinks are followed");
509 /* Potentially unsafe - do not accept relative paths whatsoever */
510 if (strchr(entry
->fts_accpath
, '/') != NULL
)
511 errx(1, "-delete: %s: relative path potentially not safe",
514 /* Turn off user immutable bits if running as root */
515 if ((entry
->fts_statp
->st_flags
& (UF_APPEND
|UF_IMMUTABLE
)) &&
516 !(entry
->fts_statp
->st_flags
& (SF_APPEND
|SF_IMMUTABLE
)) &&
518 lchflags(entry
->fts_accpath
,
519 entry
->fts_statp
->st_flags
&= ~(UF_APPEND
|UF_IMMUTABLE
));
521 /* rmdir directories, unlink everything else */
522 if (S_ISDIR(entry
->fts_statp
->st_mode
)) {
523 if (rmdir(entry
->fts_accpath
) < 0 && errno
!= ENOTEMPTY
)
524 warn("-delete: rmdir(%s)", entry
->fts_path
);
526 if (unlink(entry
->fts_accpath
) < 0)
527 warn("-delete: unlink(%s)", entry
->fts_path
);
535 c_delete(OPTION
*option
, char ***argvp __unused
)
538 ftsoptions
&= ~FTS_NOSTAT
; /* no optimise */
539 isoutput
= 1; /* possible output */
540 isdepth
= 1; /* -depth implied */
542 return palloc(option
);
549 * Always true, used for -maxdepth, -mindepth, -xdev, -follow, and -true
552 f_always_true(PLAN
*plan __unused
, FTSENT
*entry __unused
)
558 * -depth functions --
560 * With argument: True if the file is at level n.
561 * Without argument: Always true, causes descent of the directory hierarchy
562 * to be done so that all entries in a directory are acted on before the
566 f_depth(PLAN
*plan
, FTSENT
*entry
)
568 if (plan
->flags
& F_DEPTH
)
569 COMPARE(entry
->fts_level
, plan
->d_data
);
575 c_depth(OPTION
*option
, char ***argvp
)
580 new = palloc(option
);
583 if (str
&& !(new->flags
& F_DEPTH
)) {
584 /* skip leading + or - */
585 if (*str
== '+' || *str
== '-')
588 if (*str
== '+' || *str
== '-')
591 new->flags
|= F_DEPTH
;
594 if (new->flags
& F_DEPTH
) { /* -depth n */
597 ndepth
= nextarg(option
, argvp
);
598 new->d_data
= find_parsenum(new, option
->name
, ndepth
, NULL
);
607 * -empty functions --
609 * True if the file or directory is empty
612 f_empty(PLAN
*plan __unused
, FTSENT
*entry
)
614 if (S_ISREG(entry
->fts_statp
->st_mode
) &&
615 entry
->fts_statp
->st_size
== 0)
617 if (S_ISDIR(entry
->fts_statp
->st_mode
)) {
623 dir
= opendir(entry
->fts_accpath
);
625 err(1, "%s", entry
->fts_accpath
);
626 for (dp
= readdir(dir
); dp
; dp
= readdir(dir
))
627 if (dp
->d_name
[0] != '.' ||
628 (dp
->d_name
[1] != '\0' &&
629 (dp
->d_name
[1] != '.' || dp
->d_name
[2] != '\0'))) {
640 c_empty(OPTION
*option
, char ***argvp __unused
)
642 ftsoptions
&= ~FTS_NOSTAT
;
644 return palloc(option
);
648 * [-exec | -execdir | -ok] utility [arg ... ] ; functions --
650 * True if the executed utility returns a zero value as exit status.
651 * The end of the primary expression is delimited by a semicolon. If
652 * "{}" occurs anywhere, it gets replaced by the current pathname,
653 * or, in the case of -execdir, the current basename (filename
654 * without leading directory prefix). For -exec and -ok,
655 * the current directory for the execution of utility is the same as
656 * the current directory when the find utility was started, whereas
657 * for -execdir, it is the directory the file resides in.
659 * The primary -ok differs from -exec in that it requests affirmation
660 * of the user before executing the utility.
663 f_exec(PLAN
*plan
, FTSENT
*entry
)
670 if (entry
== NULL
&& plan
->flags
& F_EXECPLUS
) {
671 if (plan
->e_ppos
== plan
->e_pbnum
)
673 plan
->e_argv
[plan
->e_ppos
] = NULL
;
677 /* XXX - if file/dir ends in '/' this will not work -- can it? */
678 if ((plan
->flags
& F_EXECDIR
) && \
679 (file
= strrchr(entry
->fts_path
, '/')))
682 file
= entry
->fts_path
;
684 if (plan
->flags
& F_EXECPLUS
) {
685 if ((plan
->e_argv
[plan
->e_ppos
] = strdup(file
)) == NULL
)
687 plan
->e_len
[plan
->e_ppos
] = strlen(file
);
688 plan
->e_psize
+= plan
->e_len
[plan
->e_ppos
];
689 if (++plan
->e_ppos
< plan
->e_pnummax
&&
690 plan
->e_psize
< plan
->e_psizemax
)
692 plan
->e_argv
[plan
->e_ppos
] = NULL
;
694 for (cnt
= 0; plan
->e_argv
[cnt
]; ++cnt
)
695 if (plan
->e_len
[cnt
])
696 brace_subst(plan
->e_orig
[cnt
],
697 &plan
->e_argv
[cnt
], file
,
701 doexec
: if ((plan
->flags
& F_NEEDOK
) && !queryuser(plan
->e_argv
))
704 /* make sure find output is interspersed correctly with subprocesses */
708 switch (pid
= fork()) {
713 /* change dir back from where we started */
714 if (!(plan
->flags
& F_EXECDIR
) && fchdir(dotfd
)) {
718 execvp(plan
->e_argv
[0], plan
->e_argv
);
719 warn("%s", plan
->e_argv
[0]);
722 if (plan
->flags
& F_EXECPLUS
) {
723 while (--plan
->e_ppos
>= plan
->e_pbnum
)
724 free(plan
->e_argv
[plan
->e_ppos
]);
725 plan
->e_ppos
= plan
->e_pbnum
;
726 plan
->e_psize
= plan
->e_pbsize
;
728 pid
= waitpid(pid
, &status
, 0);
729 if (plan
->flags
& F_EXECPLUS
&& WIFEXITED(status
) && WEXITSTATUS(status
))
730 _exit(WEXITSTATUS(status
));
731 return (pid
!= -1 && WIFEXITED(status
) && !WEXITSTATUS(status
));
735 * c_exec, c_execdir, c_ok --
736 * build three parallel arrays, one with pointers to the strings passed
737 * on the command line, one with (possibly duplicated) pointers to the
738 * argv array, and one with integer values that are lengths of the
739 * strings, but also flags meaning that the string has to be massaged.
742 c_exec(OPTION
*option
, char ***argvp
)
744 PLAN
*new; /* node returned */
747 char **argv
, **ap
, **ep
, *p
;
749 /* XXX - was in c_execdir, but seems unnecessary!?
750 ftsoptions &= ~FTS_NOSTAT;
754 /* XXX - this is a change from the previous coding */
755 new = palloc(option
);
757 for (ap
= argv
= *argvp
;; ++ap
) {
760 "%s: no terminating \";\" or \"+\"", option
->name
);
763 if (**ap
== '+' && ap
!= argv
&& strcmp(*(ap
- 1), "{}") == 0) {
764 new->flags
|= F_EXECPLUS
;
770 errx(1, "%s: no command specified", option
->name
);
772 cnt
= ap
- *argvp
+ 1;
773 if (new->flags
& F_EXECPLUS
) {
774 new->e_ppos
= new->e_pbnum
= cnt
- 2;
775 if ((argmax
= sysconf(_SC_ARG_MAX
)) == -1) {
776 warn("sysconf(_SC_ARG_MAX)");
777 argmax
= _POSIX_ARG_MAX
;
780 for (ep
= environ
; *ep
!= NULL
; ep
++)
781 argmax
-= strlen(*ep
) + 1 + sizeof(*ep
);
782 argmax
-= 1 + sizeof(*ep
);
783 new->e_pnummax
= argmax
/ 16;
784 argmax
-= sizeof(char *) * new->e_pnummax
;
786 errx(1, "no space for arguments");
787 new->e_psizemax
= argmax
;
789 cnt
+= new->e_pnummax
+ 1;
790 new->e_next
= lastexecplus
;
793 if ((new->e_argv
= malloc(cnt
* sizeof(char *))) == NULL
)
795 if ((new->e_orig
= malloc(cnt
* sizeof(char *))) == NULL
)
797 if ((new->e_len
= malloc(cnt
* sizeof(int))) == NULL
)
800 for (argv
= *argvp
, cnt
= 0; argv
< ap
; ++argv
, ++cnt
) {
801 new->e_orig
[cnt
] = *argv
;
802 if (new->flags
& F_EXECPLUS
)
803 new->e_pbsize
+= strlen(*argv
) + 1;
804 for (p
= *argv
; *p
; ++p
)
805 if (!(new->flags
& F_EXECPLUS
) && p
[0] == '{' &&
807 if ((new->e_argv
[cnt
] =
808 malloc(MAXPATHLEN
)) == NULL
)
810 new->e_len
[cnt
] = MAXPATHLEN
;
814 new->e_argv
[cnt
] = *argv
;
818 if (new->flags
& F_EXECPLUS
) {
819 new->e_psize
= new->e_pbsize
;
821 for (i
= 0; i
< new->e_pnummax
; i
++) {
822 new->e_argv
[cnt
] = NULL
;
829 new->e_argv
[cnt
] = new->e_orig
[cnt
] = NULL
;
831 done
: *argvp
= argv
+ 1;
835 /* Finish any pending -exec ... {} + functions. */
843 (p
->execute
)(p
, NULL
);
849 f_flags(PLAN
*plan
, FTSENT
*entry
)
853 flags
= entry
->fts_statp
->st_flags
;
854 if (plan
->flags
& F_ATLEAST
)
855 return (flags
| plan
->fl_flags
) == flags
&&
856 !(flags
& plan
->fl_notflags
);
857 else if (plan
->flags
& F_ANY
)
858 return (flags
& plan
->fl_flags
) ||
859 (flags
| plan
->fl_notflags
) != flags
;
861 return flags
== plan
->fl_flags
&&
862 !(plan
->fl_flags
& plan
->fl_notflags
);
866 c_flags(OPTION
*option
, char ***argvp
)
870 u_long flags
, notflags
;
872 flags_str
= nextarg(option
, argvp
);
873 ftsoptions
&= ~FTS_NOSTAT
;
875 new = palloc(option
);
877 if (*flags_str
== '-') {
878 new->flags
|= F_ATLEAST
;
880 } else if (*flags_str
== '+') {
884 if (strtofflags(&flags_str
, &flags
, ¬flags
) == 1)
885 errx(1, "%s: %s: illegal flags string", option
->name
, flags_str
);
887 new->fl_flags
= flags
;
888 new->fl_notflags
= notflags
;
893 * -follow functions --
895 * Always true, causes symbolic links to be followed on a global
899 c_follow(OPTION
*option
, char ***argvp __unused
)
901 ftsoptions
&= ~FTS_PHYSICAL
;
902 ftsoptions
|= FTS_LOGICAL
;
904 return palloc(option
);
908 * -fstype functions --
910 * True if the file is of a certain type.
913 f_fstype(PLAN
*plan
, FTSENT
*entry
)
915 static dev_t curdev
; /* need a guaranteed illegal dev value */
916 static int first
= 1;
918 static int val_type
, val_flags
;
919 char *p
, save
[2] = {0,0};
921 if ((plan
->flags
& F_MTMASK
) == F_MTUNKNOWN
)
924 /* Only check when we cross mount point. */
925 if (first
|| curdev
!= entry
->fts_statp
->st_dev
) {
926 curdev
= entry
->fts_statp
->st_dev
;
929 * Statfs follows symlinks; find wants the link's filesystem,
930 * not where it points.
932 if (entry
->fts_info
== FTS_SL
||
933 entry
->fts_info
== FTS_SLNONE
) {
934 if ((p
= strrchr(entry
->fts_accpath
, '/')) != NULL
)
937 p
= entry
->fts_accpath
;
945 if (statfs(entry
->fts_accpath
, &sb
))
946 err(1, "%s", entry
->fts_accpath
);
956 * Further tests may need both of these values, so
957 * always copy both of them.
959 val_flags
= sb
.f_flags
;
960 val_type
= sb
.f_type
;
962 switch (plan
->flags
& F_MTMASK
) {
964 return val_flags
& plan
->mt_data
;
966 return val_type
== plan
->mt_data
;
973 c_fstype(OPTION
*option
, char ***argvp
)
979 fsname
= nextarg(option
, argvp
);
980 ftsoptions
&= ~FTS_NOSTAT
;
982 new = palloc(option
);
985 * Check first for a filesystem name.
987 if (getvfsbyname(fsname
, &vfc
) == 0) {
988 new->flags
|= F_MTTYPE
;
989 new->mt_data
= vfc
.vfc_typenum
;
995 if (!strcmp(fsname
, "local")) {
996 new->flags
|= F_MTFLAG
;
997 new->mt_data
= MNT_LOCAL
;
1002 if (!strcmp(fsname
, "rdonly")) {
1003 new->flags
|= F_MTFLAG
;
1004 new->mt_data
= MNT_RDONLY
;
1011 * We need to make filesystem checks for filesystems
1012 * that exists but aren't in the kernel work.
1014 fprintf(stderr
, "Warning: Unknown filesystem type %s\n", fsname
);
1015 new->flags
|= F_MTUNKNOWN
;
1020 * -group gname functions --
1022 * True if the file belongs to the group gname. If gname is numeric and
1023 * an equivalent of the getgrnam() function does not return a valid group
1024 * name, gname is taken as a group ID.
1027 f_group(PLAN
*plan
, FTSENT
*entry
)
1029 COMPARE(entry
->fts_statp
->st_gid
, plan
->g_data
);
1033 c_group(OPTION
*option
, char ***argvp
)
1040 gname
= nextarg(option
, argvp
);
1041 ftsoptions
&= ~FTS_NOSTAT
;
1043 new = palloc(option
);
1044 g
= getgrnam(gname
);
1047 if (gname
[0] == '-' || gname
[0] == '+')
1050 if (gid
== 0 && gname
[0] != '0')
1051 errx(1, "%s: %s: no such group", option
->name
, gname
);
1052 gid
= find_parsenum(new, option
->name
, cp
, NULL
);
1061 * -inum n functions --
1063 * True if the file has inode # n.
1066 f_inum(PLAN
*plan
, FTSENT
*entry
)
1068 COMPARE(entry
->fts_statp
->st_ino
, plan
->i_data
);
1072 c_inum(OPTION
*option
, char ***argvp
)
1077 inum_str
= nextarg(option
, argvp
);
1078 ftsoptions
&= ~FTS_NOSTAT
;
1080 new = palloc(option
);
1081 new->i_data
= find_parsenum(new, option
->name
, inum_str
, NULL
);
1088 * True if the file has the same inode (eg hard link) FN
1091 /* f_samefile is just f_inum */
1093 c_samefile(OPTION
*option
, char ***argvp
)
1099 fn
= nextarg(option
, argvp
);
1100 ftsoptions
&= ~FTS_NOSTAT
;
1102 new = palloc(option
);
1105 new->i_data
= sb
.st_ino
;
1110 * -links n functions --
1112 * True if the file has n links.
1115 f_links(PLAN
*plan
, FTSENT
*entry
)
1117 COMPARE(entry
->fts_statp
->st_nlink
, plan
->l_data
);
1121 c_links(OPTION
*option
, char ***argvp
)
1126 nlinks
= nextarg(option
, argvp
);
1127 ftsoptions
&= ~FTS_NOSTAT
;
1129 new = palloc(option
);
1130 new->l_data
= (nlink_t
)find_parsenum(new, option
->name
, nlinks
, NULL
);
1137 * Always true - prints the current entry to stdout in "ls" format.
1140 f_ls(PLAN
*plan __unused
, FTSENT
*entry
)
1142 printlong(entry
->fts_path
, entry
->fts_accpath
, entry
->fts_statp
);
1147 c_ls(OPTION
*option
, char ***argvp __unused
)
1149 ftsoptions
&= ~FTS_NOSTAT
;
1152 return palloc(option
);
1156 * -name functions --
1158 * True if the basename of the filename being examined
1159 * matches pattern using Pattern Matching Notation S3.14
1162 f_name(PLAN
*plan
, FTSENT
*entry
)
1167 if (plan
->flags
& F_LINK
) {
1169 if (readlink(entry
->fts_accpath
, fn
, sizeof(fn
)) == -1)
1171 } else if (entry
->fts_namelen
== 0) {
1172 name
= basename(entry
->fts_path
);
1174 name
= entry
->fts_name
;
1175 return !fnmatch(plan
->c_data
, name
,
1176 plan
->flags
& F_IGNCASE
? FNM_CASEFOLD
: 0);
1180 c_name(OPTION
*option
, char ***argvp
)
1185 pattern
= nextarg(option
, argvp
);
1186 new = palloc(option
);
1187 new->c_data
= pattern
;
1192 * -newer file functions --
1194 * True if the current file has been modified more recently
1195 * then the modification time of the file named by the pathname
1199 f_newer(PLAN
*plan
, FTSENT
*entry
)
1201 if (plan
->flags
& F_TIME_C
)
1202 return entry
->fts_statp
->st_ctime
> plan
->t_data
;
1203 else if (plan
->flags
& F_TIME_A
)
1204 return entry
->fts_statp
->st_atime
> plan
->t_data
;
1205 else if (plan
->flags
& F_TIME_B
)
1206 return entry
->fts_statp
->st_birthtime
> plan
->t_data
;
1208 return entry
->fts_statp
->st_mtime
> plan
->t_data
;
1212 c_newer(OPTION
*option
, char ***argvp
)
1218 fn_or_tspec
= nextarg(option
, argvp
);
1219 ftsoptions
&= ~FTS_NOSTAT
;
1221 new = palloc(option
);
1222 /* compare against what */
1223 if (option
->flags
& F_TIME2_T
) {
1224 new->t_data
= get_date(fn_or_tspec
, (struct timeb
*) 0);
1225 if (new->t_data
== (time_t) -1)
1226 errx(1, "Can't parse date/time: %s", fn_or_tspec
);
1228 if (stat(fn_or_tspec
, &sb
))
1229 err(1, "%s", fn_or_tspec
);
1230 if (option
->flags
& F_TIME2_C
)
1231 new->t_data
= sb
.st_ctime
;
1232 else if (option
->flags
& F_TIME2_A
)
1233 new->t_data
= sb
.st_atime
;
1235 new->t_data
= sb
.st_mtime
;
1241 * -nogroup functions --
1243 * True if file belongs to a user ID for which the equivalent
1244 * of the getgrnam() 9.2.1 [POSIX.1] function returns NULL.
1247 f_nogroup(PLAN
*plan __unused
, FTSENT
*entry
)
1249 return group_from_gid(entry
->fts_statp
->st_gid
, 1) == NULL
;
1253 c_nogroup(OPTION
*option
, char ***argvp __unused
)
1255 ftsoptions
&= ~FTS_NOSTAT
;
1257 return palloc(option
);
1261 * -nouser functions --
1263 * True if file belongs to a user ID for which the equivalent
1264 * of the getpwuid() 9.2.2 [POSIX.1] function returns NULL.
1267 f_nouser(PLAN
*plan __unused
, FTSENT
*entry
)
1269 return user_from_uid(entry
->fts_statp
->st_uid
, 1) == NULL
;
1273 c_nouser(OPTION
*option
, char ***argvp __unused
)
1275 ftsoptions
&= ~FTS_NOSTAT
;
1277 return palloc(option
);
1281 * -path functions --
1283 * True if the path of the filename being examined
1284 * matches pattern using Pattern Matching Notation S3.14
1287 f_path(PLAN
*plan
, FTSENT
*entry
)
1289 return !fnmatch(plan
->c_data
, entry
->fts_path
,
1290 plan
->flags
& F_IGNCASE
? FNM_CASEFOLD
: 0);
1293 /* c_path is the same as c_name */
1296 * -perm functions --
1298 * The mode argument is used to represent file mode bits. If it starts
1299 * with a leading digit, it's treated as an octal mode, otherwise as a
1303 f_perm(PLAN
*plan
, FTSENT
*entry
)
1307 mode
= entry
->fts_statp
->st_mode
&
1308 (S_ISUID
|S_ISGID
|S_ISTXT
|S_IRWXU
|S_IRWXG
|S_IRWXO
);
1309 if (plan
->flags
& F_ATLEAST
)
1310 return (plan
->m_data
| mode
) == mode
;
1311 else if (plan
->flags
& F_ANY
)
1312 return (mode
& plan
->m_data
);
1314 return mode
== plan
->m_data
;
1319 c_perm(OPTION
*option
, char ***argvp
)
1325 perm
= nextarg(option
, argvp
);
1326 ftsoptions
&= ~FTS_NOSTAT
;
1328 new = palloc(option
);
1331 new->flags
|= F_ATLEAST
;
1333 } else if (*perm
== '+') {
1334 if ((set
= setmode(perm
+ 1)) != NULL
) {
1335 new->flags
|= F_ANY
;
1341 if ((set
= setmode(perm
)) == NULL
)
1342 errx(1, "%s: %s: illegal mode string", option
->name
, perm
);
1344 new->m_data
= getmode(set
, 0);
1350 * -print functions --
1352 * Always true, causes the current pathname to be written to
1356 f_print(PLAN
*plan __unused
, FTSENT
*entry
)
1358 (void)puts(entry
->fts_path
);
1363 c_print(OPTION
*option
, char ***argvp __unused
)
1367 return palloc(option
);
1371 * -print0 functions --
1373 * Always true, causes the current pathname to be written to
1374 * standard output followed by a NUL character
1377 f_print0(PLAN
*plan __unused
, FTSENT
*entry
)
1379 fputs(entry
->fts_path
, stdout
);
1380 fputc('\0', stdout
);
1384 /* c_print0 is the same as c_print */
1387 * -prune functions --
1389 * Prune a portion of the hierarchy.
1392 f_prune(PLAN
*plan __unused
, FTSENT
*entry
)
1394 if (fts_set(tree
, entry
, FTS_SKIP
))
1395 err(1, "%s", entry
->fts_path
);
1399 /* c_prune == c_simple */
1402 * -regex functions --
1404 * True if the whole path of the file matches pattern using
1405 * regular expression.
1408 f_regex(PLAN
*plan
, FTSENT
*entry
)
1415 char errbuf
[LINE_MAX
];
1418 pre
= plan
->re_data
;
1419 str
= entry
->fts_path
;
1426 errcode
= regexec(pre
, str
, 1, &pmatch
, REG_STARTEND
);
1428 if (errcode
!= 0 && errcode
!= REG_NOMATCH
) {
1429 regerror(errcode
, pre
, errbuf
, sizeof errbuf
);
1431 plan
->flags
& F_IGNCASE
? "-iregex" : "-regex", errbuf
);
1434 if (errcode
== 0 && pmatch
.rm_so
== 0 && pmatch
.rm_eo
== len
)
1441 c_regex(OPTION
*option
, char ***argvp
)
1447 char errbuf
[LINE_MAX
];
1449 if ((pre
= malloc(sizeof(regex_t
))) == NULL
)
1452 pattern
= nextarg(option
, argvp
);
1454 if ((errcode
= regcomp(pre
, pattern
,
1455 regexp_flags
| (option
->flags
& F_IGNCASE
? REG_ICASE
: 0))) != 0) {
1456 regerror(errcode
, pre
, errbuf
, sizeof errbuf
);
1457 errx(1, "%s: %s: %s",
1458 option
->flags
& F_IGNCASE
? "-iregex" : "-regex",
1462 new = palloc(option
);
1468 /* c_simple covers c_prune, c_openparen, c_closeparen, c_not, c_or, c_true, c_false */
1471 c_simple(OPTION
*option
, char ***argvp __unused
)
1473 return palloc(option
);
1477 * -size n[c] functions --
1479 * True if the file size in bytes, divided by an implementation defined
1480 * value and rounded up to the next integer, is n. If n is followed by
1481 * one of c k M G T P, the size is in bytes, kilobytes,
1482 * megabytes, gigabytes, terabytes or petabytes respectively.
1484 #define FIND_SIZE 512
1485 static int divsize
= 1;
1488 f_size(PLAN
*plan
, FTSENT
*entry
)
1492 size
= divsize
? (entry
->fts_statp
->st_size
+ FIND_SIZE
- 1) /
1493 FIND_SIZE
: entry
->fts_statp
->st_size
;
1494 COMPARE(size
, plan
->o_data
);
1498 c_size(OPTION
*option
, char ***argvp
)
1505 size_str
= nextarg(option
, argvp
);
1506 ftsoptions
&= ~FTS_NOSTAT
;
1508 new = palloc(option
);
1510 new->o_data
= find_parsenum(new, option
->name
, size_str
, &endch
);
1511 if (endch
!= '\0') {
1515 case 'c': /* characters */
1518 case 'k': /* kilobytes 1<<10 */
1521 case 'M': /* megabytes 1<<20 */
1524 case 'G': /* gigabytes 1<<30 */
1525 scale
= 0x40000000LL
;
1527 case 'T': /* terabytes 1<<40 */
1528 scale
= 0x1000000000LL
;
1530 case 'P': /* petabytes 1<<50 */
1531 scale
= 0x4000000000000LL
;
1534 errx(1, "%s: %s: illegal trailing character",
1535 option
->name
, size_str
);
1538 if (new->o_data
> QUAD_MAX
/ scale
)
1539 errx(1, "%s: %s: value too large",
1540 option
->name
, size_str
);
1541 new->o_data
*= scale
;
1547 * -type c functions --
1549 * True if the type of the file is c, where c is b, c, d, p, f or w
1550 * for block special file, character special file, directory, FIFO,
1551 * regular file or whiteout respectively.
1554 f_type(PLAN
*plan
, FTSENT
*entry
)
1556 return (entry
->fts_statp
->st_mode
& S_IFMT
) == plan
->m_data
;
1560 c_type(OPTION
*option
, char ***argvp
)
1566 typestring
= nextarg(option
, argvp
);
1567 ftsoptions
&= ~FTS_NOSTAT
;
1569 switch (typestring
[0]) {
1594 ftsoptions
|= FTS_WHITEOUT
;
1596 #endif /* FTS_WHITEOUT */
1598 errx(1, "%s: %s: unknown type", option
->name
, typestring
);
1601 new = palloc(option
);
1607 * -user uname functions --
1609 * True if the file belongs to the user uname. If uname is numeric and
1610 * an equivalent of the getpwnam() S9.2.2 [POSIX.1] function does not
1611 * return a valid user name, uname is taken as a user ID.
1614 f_user(PLAN
*plan
, FTSENT
*entry
)
1616 COMPARE(entry
->fts_statp
->st_uid
, plan
->u_data
);
1620 c_user(OPTION
*option
, char ***argvp
)
1627 username
= nextarg(option
, argvp
);
1628 ftsoptions
&= ~FTS_NOSTAT
;
1630 new = palloc(option
);
1631 p
= getpwnam(username
);
1633 char* cp
= username
;
1634 if( username
[0] == '-' || username
[0] == '+' )
1636 uid
= atoi(username
);
1637 if (uid
== 0 && username
[0] != '0')
1638 errx(1, "%s: %s: no such user", option
->name
, username
);
1639 uid
= find_parsenum(new, option
->name
, cp
, NULL
);
1648 * -xdev functions --
1650 * Always true, causes find not to descend past directories that have a
1651 * different device ID (st_dev, see stat() S5.6.2 [POSIX.1])
1654 c_xdev(OPTION
*option
, char ***argvp __unused
)
1656 ftsoptions
|= FTS_XDEV
;
1658 return palloc(option
);
1662 * ( expression ) functions --
1664 * True if expression is true.
1667 f_expr(PLAN
*plan
, FTSENT
*entry
)
1672 for (p
= plan
->p_data
[0];
1673 p
&& (state
= (p
->execute
)(p
, entry
)); p
= p
->next
);
1678 * f_openparen and f_closeparen nodes are temporary place markers. They are
1679 * eliminated during phase 2 of find_formplan() --- the '(' node is converted
1680 * to a f_expr node containing the expression and the ')' node is discarded.
1681 * The functions themselves are only used as constants.
1685 f_openparen(PLAN
*plan __unused
, FTSENT
*entry __unused
)
1691 f_closeparen(PLAN
*plan __unused
, FTSENT
*entry __unused
)
1696 /* c_openparen == c_simple */
1697 /* c_closeparen == c_simple */
1700 * AND operator. Since AND is implicit, no node is allocated.
1703 c_and(OPTION
*option __unused
, char ***argvp __unused
)
1709 * ! expression functions --
1711 * Negation of a primary; the unary NOT operator.
1714 f_not(PLAN
*plan
, FTSENT
*entry
)
1719 for (p
= plan
->p_data
[0];
1720 p
&& (state
= (p
->execute
)(p
, entry
)); p
= p
->next
);
1724 /* c_not == c_simple */
1727 * expression -o expression functions --
1729 * Alternation of primaries; the OR operator. The second expression is
1730 * not evaluated if the first expression is true.
1733 f_or(PLAN
*plan
, FTSENT
*entry
)
1738 for (p
= plan
->p_data
[0];
1739 p
&& (state
= (p
->execute
)(p
, entry
)); p
= p
->next
);
1744 for (p
= plan
->p_data
[1];
1745 p
&& (state
= (p
->execute
)(p
, entry
)); p
= p
->next
);
1749 /* c_or == c_simple */
1757 f_false(PLAN
*plan __unused
, FTSENT
*entry __unused
)
1762 /* c_false == c_simple */
1770 f_quit(PLAN
*plan __unused
, FTSENT
*entry __unused
)
1775 /* c_quit == c_simple */