]>
git.saurik.com Git - apple/shell_cmds.git/blob - find/function.c
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.58 2006/05/27 18:27:41 krion 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>
73 #include <sys/sysctl.h>
74 #include <get_compat.h>
76 #define COMPAT_MODE(func, mode) 1
79 static PLAN
*palloc(OPTION
*);
80 static long long find_parsenum(PLAN
*, const char *, char *, char *);
81 static long long find_parsetime(PLAN
*, const char *, char *);
82 static char *nextarg(OPTION
*, char ***);
84 extern char **environ
;
86 static PLAN
*lastexecplus
= NULL
;
88 #define COMPARE(a, b) do { \
89 switch (plan->flags & F_ELG_MASK) { \
102 palloc(OPTION
*option
)
106 if ((new = malloc(sizeof(PLAN
))) == NULL
)
108 new->execute
= option
->execute
;
109 new->flags
= option
->flags
;
116 * Parse a string of the form [+-]# and return the value.
119 find_parsenum(PLAN
*plan
, const char *option
, char *vp
, char *endch
)
122 char *endchar
, *str
; /* Pointer to character ending conversion. */
124 /* Determine comparison from leading + or -. */
129 plan
->flags
|= F_GREATER
;
133 plan
->flags
|= F_LESSTHAN
;
136 plan
->flags
|= F_EQUAL
;
141 * Convert the string with strtoq(). Note, if strtoq() returns zero
142 * and endchar points to the beginning of the string we know we have
145 value
= strtoq(str
, &endchar
, 10);
146 if (value
== 0 && endchar
== str
)
147 errx(1, "%s: %s: illegal numeric value", option
, vp
);
148 if (endchar
[0] && endch
== NULL
)
149 errx(1, "%s: %s: illegal trailing character", option
, vp
);
157 * Parse a string of the form [+-]([0-9]+[smhdw]?)+ and return the value.
160 find_parsetime(PLAN
*plan
, const char *option
, char *vp
)
162 long long secs
, value
;
163 char *str
, *unit
; /* Pointer to character ending conversion. */
165 /* Determine comparison from leading + or -. */
170 plan
->flags
|= F_GREATER
;
174 plan
->flags
|= F_LESSTHAN
;
177 plan
->flags
|= F_EQUAL
;
181 value
= strtoq(str
, &unit
, 10);
182 if (value
== 0 && unit
== str
) {
183 errx(1, "%s: %s: illegal time value", option
, vp
);
193 case 's': /* seconds */
196 case 'm': /* minutes */
199 case 'h': /* hours */
200 secs
+= value
* 3600;
203 secs
+= value
* 86400;
205 case 'w': /* weeks */
206 secs
+= value
* 604800;
209 errx(1, "%s: %s: bad unit '%c'", option
, vp
, *unit
);
213 if (*str
== '\0') /* EOS */
215 value
= strtoq(str
, &unit
, 10);
216 if (value
== 0 && unit
== str
) {
217 errx(1, "%s: %s: illegal time value", option
, vp
);
221 errx(1, "%s: %s: missing trailing unit", option
, vp
);
225 plan
->flags
|= F_EXACTTIME
;
231 * Check that another argument still exists, return a pointer to it,
232 * and increment the argument vector pointer.
235 nextarg(OPTION
*option
, char ***argvp
)
239 if ((arg
= **argvp
) == 0)
240 errx(1, "%s: requires additional arguments", option
->name
);
246 * The value of n for the inode times (atime, birthtime, ctime, mtime) is a
247 * range, i.e. n matches from (n - 1) to n 24 hour periods. This interacts
248 * with -n, such that "-mtime -1" would be less than 0 days, which isn't what
249 * the user wanted. Correct so that -1 is "less than 1".
251 #define TIME_CORRECT(p) \
252 if (((p)->flags & F_ELG_MASK) == F_LESSTHAN) \
256 * -[acm]min n functions --
258 * True if the difference between the
259 * file access time (-amin)
260 * file birth time (-Bmin)
261 * last change of file status information (-cmin)
262 * file modification time (-mmin)
263 * and the current time is n min periods.
266 f_Xmin(PLAN
*plan
, FTSENT
*entry
)
268 if (plan
->flags
& F_TIME_C
) {
269 COMPARE((now
- entry
->fts_statp
->st_ctime
+
270 60 - 1) / 60, plan
->t_data
);
271 } else if (plan
->flags
& F_TIME_A
) {
272 COMPARE((now
- entry
->fts_statp
->st_atime
+
273 60 - 1) / 60, plan
->t_data
);
274 } else if (plan
->flags
& F_TIME_B
) {
275 COMPARE((now
- entry
->fts_statp
->st_birthtime
+
276 60 - 1) / 60, plan
->t_data
);
278 COMPARE((now
- entry
->fts_statp
->st_mtime
+
279 60 - 1) / 60, plan
->t_data
);
284 c_Xmin(OPTION
*option
, char ***argvp
)
289 nmins
= nextarg(option
, argvp
);
290 ftsoptions
&= ~FTS_NOSTAT
;
292 new = palloc(option
);
293 new->t_data
= find_parsenum(new, option
->name
, nmins
, NULL
);
299 * -[acm]time n functions --
301 * True if the difference between the
302 * file access time (-atime)
303 * file birth time (-Btime)
304 * last change of file status information (-ctime)
305 * file modification time (-mtime)
306 * and the current time is n 24 hour periods.
310 f_Xtime(PLAN
*plan
, FTSENT
*entry
)
314 if (plan
->flags
& F_TIME_A
)
315 xtime
= entry
->fts_statp
->st_atime
;
316 else if (plan
->flags
& F_TIME_B
)
317 xtime
= entry
->fts_statp
->st_birthtime
;
318 else if (plan
->flags
& F_TIME_C
)
319 xtime
= entry
->fts_statp
->st_ctime
;
321 xtime
= entry
->fts_statp
->st_mtime
;
323 if (COMPAT_MODE("bin/find", "unix2003") || plan
->flags
& F_EXACTTIME
)
324 COMPARE((now
- xtime
) / 86400, plan
->t_data
);
326 COMPARE((now
- xtime
+ 86400 - 1) / 86400, plan
->t_data
);
330 c_Xtime(OPTION
*option
, char ***argvp
)
335 value
= nextarg(option
, argvp
);
336 ftsoptions
&= ~FTS_NOSTAT
;
338 new = palloc(option
);
339 new->t_data
= find_parsetime(new, option
->name
, value
);
340 if (!(new->flags
& F_EXACTTIME
))
346 * -maxdepth/-mindepth n functions --
348 * Does the same as -prune if the level of the current file is
349 * greater/less than the specified maximum/minimum depth.
351 * Note that -maxdepth and -mindepth are handled specially in
352 * find_execute() so their f_* functions are set to f_always_true().
355 c_mXXdepth(OPTION
*option
, char ***argvp
)
360 dstr
= nextarg(option
, argvp
);
362 /* all other errors handled by find_parsenum() */
363 errx(1, "%s: %s: value must be positive", option
->name
, dstr
);
365 new = palloc(option
);
366 if (option
->flags
& F_MAXDEPTH
)
367 maxdepth
= find_parsenum(new, option
->name
, dstr
, NULL
);
369 mindepth
= find_parsenum(new, option
->name
, dstr
, NULL
);
377 * Show files with EXTENDED ACL attributes.
380 f_acl(PLAN
*plan __unused
, FTSENT
*entry
)
386 if (S_ISLNK(entry
->fts_statp
->st_mode
))
388 if ((match
= pathconf(entry
->fts_accpath
, _PC_ACL_EXTENDED
)) <= 0) {
389 if (match
< 0 && errno
!= EINVAL
)
390 warn("%s", entry
->fts_accpath
);
395 if ((facl
= acl_get_file(entry
->fts_accpath
,ACL_TYPE_ACCESS
)) != NULL
) {
396 if (acl_get_entry(facl
, ACL_FIRST_ENTRY
, &ae
) == 1) {
398 * POSIX.1e requires that ACLs of type ACL_TYPE_ACCESS
399 * must have at least three entries (owner, group,
403 while (acl_get_entry(facl
, ACL_NEXT_ENTRY
, &ae
) == 1) {
412 warn("%s", entry
->fts_accpath
);
417 c_acl(OPTION
*option
, char ***argvp __unused
)
419 ftsoptions
&= ~FTS_NOSTAT
;
420 return (palloc(option
));
422 #endif /* !__APPLE__ */
425 * -delete functions --
427 * True always. Makes its best shot and continues on regardless.
430 f_delete(PLAN
*plan __unused
, FTSENT
*entry
)
432 /* ignore these from fts */
433 if (strcmp(entry
->fts_accpath
, ".") == 0 ||
434 strcmp(entry
->fts_accpath
, "..") == 0)
438 if (isdepth
== 0 || /* depth off */
439 (ftsoptions
& FTS_NOSTAT
) || /* not stat()ing */
440 !(ftsoptions
& FTS_PHYSICAL
) || /* physical off */
441 (ftsoptions
& FTS_LOGICAL
)) /* or finally, logical on */
442 errx(1, "-delete: insecure options got turned on");
444 /* Potentially unsafe - do not accept relative paths whatsoever */
445 if (strchr(entry
->fts_accpath
, '/') != NULL
)
446 errx(1, "-delete: %s: relative path potentially not safe",
449 /* Turn off user immutable bits if running as root */
450 if ((entry
->fts_statp
->st_flags
& (UF_APPEND
|UF_IMMUTABLE
)) &&
451 !(entry
->fts_statp
->st_flags
& (SF_APPEND
|SF_IMMUTABLE
)) &&
453 chflags(entry
->fts_accpath
,
454 entry
->fts_statp
->st_flags
&= ~(UF_APPEND
|UF_IMMUTABLE
));
456 /* rmdir directories, unlink everything else */
457 if (S_ISDIR(entry
->fts_statp
->st_mode
)) {
458 if (rmdir(entry
->fts_accpath
) < 0 && errno
!= ENOTEMPTY
)
459 warn("-delete: rmdir(%s)", entry
->fts_path
);
461 if (unlink(entry
->fts_accpath
) < 0)
462 warn("-delete: unlink(%s)", entry
->fts_path
);
470 c_delete(OPTION
*option
, char ***argvp __unused
)
473 ftsoptions
&= ~FTS_NOSTAT
; /* no optimise */
474 ftsoptions
|= FTS_PHYSICAL
; /* disable -follow */
475 ftsoptions
&= ~FTS_LOGICAL
; /* disable -follow */
476 isoutput
= 1; /* possible output */
477 isdepth
= 1; /* -depth implied */
479 return palloc(option
);
486 * Always true, used for -maxdepth, -mindepth, -xdev and -follow
489 f_always_true(PLAN
*plan __unused
, FTSENT
*entry __unused
)
495 * -depth functions --
497 * With argument: True if the file is at level n.
498 * Without argument: Always true, causes descent of the directory hierarchy
499 * to be done so that all entries in a directory are acted on before the
503 f_depth(PLAN
*plan
, FTSENT
*entry
)
505 if (plan
->flags
& F_DEPTH
)
506 COMPARE(entry
->fts_level
, plan
->d_data
);
512 c_depth(OPTION
*option
, char ***argvp
)
517 new = palloc(option
);
520 if (str
&& !(new->flags
& F_DEPTH
)) {
521 /* skip leading + or - */
522 if (*str
== '+' || *str
== '-')
525 if (*str
== '+' || *str
== '-')
528 new->flags
|= F_DEPTH
;
531 if (new->flags
& F_DEPTH
) { /* -depth n */
534 ndepth
= nextarg(option
, argvp
);
535 new->d_data
= find_parsenum(new, option
->name
, ndepth
, NULL
);
544 * -empty functions --
546 * True if the file or directory is empty
549 f_empty(PLAN
*plan __unused
, FTSENT
*entry
)
551 if (S_ISREG(entry
->fts_statp
->st_mode
) &&
552 entry
->fts_statp
->st_size
== 0)
554 if (S_ISDIR(entry
->fts_statp
->st_mode
)) {
560 dir
= opendir(entry
->fts_accpath
);
562 err(1, "%s", entry
->fts_accpath
);
563 for (dp
= readdir(dir
); dp
; dp
= readdir(dir
))
564 if (dp
->d_name
[0] != '.' ||
565 (dp
->d_name
[1] != '\0' &&
566 (dp
->d_name
[1] != '.' || dp
->d_name
[2] != '\0'))) {
577 c_empty(OPTION
*option
, char ***argvp __unused
)
579 ftsoptions
&= ~FTS_NOSTAT
;
581 return palloc(option
);
585 * [-exec | -execdir | -ok] utility [arg ... ] ; functions --
587 * True if the executed utility returns a zero value as exit status.
588 * The end of the primary expression is delimited by a semicolon. If
589 * "{}" occurs anywhere, it gets replaced by the current pathname,
590 * or, in the case of -execdir, the current basename (filename
591 * without leading directory prefix). For -exec and -ok,
592 * the current directory for the execution of utility is the same as
593 * the current directory when the find utility was started, whereas
594 * for -execdir, it is the directory the file resides in.
596 * The primary -ok differs from -exec in that it requests affirmation
597 * of the user before executing the utility.
600 f_exec(PLAN
*plan
, FTSENT
*entry
)
607 if (entry
== NULL
&& plan
->flags
& F_EXECPLUS
) {
608 if (plan
->e_ppos
== plan
->e_pbnum
)
610 plan
->e_argv
[plan
->e_ppos
] = NULL
;
614 /* XXX - if file/dir ends in '/' this will not work -- can it? */
615 if ((plan
->flags
& F_EXECDIR
) && \
616 (file
= strrchr(entry
->fts_path
, '/')))
619 file
= entry
->fts_path
;
621 if (plan
->flags
& F_EXECPLUS
) {
622 if ((plan
->e_argv
[plan
->e_ppos
] = strdup(file
)) == NULL
)
624 plan
->e_len
[plan
->e_ppos
] = strlen(file
);
625 plan
->e_psize
+= plan
->e_len
[plan
->e_ppos
];
626 if (++plan
->e_ppos
< plan
->e_pnummax
&&
627 plan
->e_psize
< plan
->e_psizemax
)
629 plan
->e_argv
[plan
->e_ppos
] = NULL
;
631 for (cnt
= 0; plan
->e_argv
[cnt
]; ++cnt
)
632 if (plan
->e_len
[cnt
])
633 brace_subst(plan
->e_orig
[cnt
],
634 &plan
->e_argv
[cnt
], file
,
638 doexec
: if ((plan
->flags
& F_NEEDOK
) && !queryuser(plan
->e_argv
))
641 /* make sure find output is interspersed correctly with subprocesses */
645 switch (pid
= fork()) {
650 /* change dir back from where we started */
651 if (!(plan
->flags
& F_EXECDIR
) && fchdir(dotfd
)) {
655 execvp(plan
->e_argv
[0], plan
->e_argv
);
656 warn("%s", plan
->e_argv
[0]);
659 if (plan
->flags
& F_EXECPLUS
) {
660 while (--plan
->e_ppos
>= plan
->e_pbnum
)
661 free(plan
->e_argv
[plan
->e_ppos
]);
662 plan
->e_ppos
= plan
->e_pbnum
;
663 plan
->e_psize
= plan
->e_pbsize
;
665 pid
= waitpid(pid
, &status
, 0);
666 if (plan
->flags
& F_EXECPLUS
&& WIFEXITED(status
) && WEXITSTATUS(status
))
667 _exit(WEXITSTATUS(status
));
668 return (pid
!= -1 && WIFEXITED(status
) && !WEXITSTATUS(status
));
672 * c_exec, c_execdir, c_ok --
673 * build three parallel arrays, one with pointers to the strings passed
674 * on the command line, one with (possibly duplicated) pointers to the
675 * argv array, and one with integer values that are lengths of the
676 * strings, but also flags meaning that the string has to be massaged.
679 c_exec(OPTION
*option
, char ***argvp
)
681 PLAN
*new; /* node returned */
684 char **argv
, **ap
, **ep
, *p
;
686 /* XXX - was in c_execdir, but seems unnecessary!?
687 ftsoptions &= ~FTS_NOSTAT;
691 /* XXX - this is a change from the previous coding */
692 new = palloc(option
);
694 for (ap
= argv
= *argvp
;; ++ap
) {
697 "%s: no terminating \";\" or \"+\"", option
->name
);
700 if (**ap
== '+' && ap
!= argv
&& strcmp(*(ap
- 1), "{}") == 0) {
701 new->flags
|= F_EXECPLUS
;
707 errx(1, "%s: no command specified", option
->name
);
709 cnt
= ap
- *argvp
+ 1;
710 if (new->flags
& F_EXECPLUS
) {
711 new->e_ppos
= new->e_pbnum
= cnt
- 2;
712 if ((argmax
= sysconf(_SC_ARG_MAX
)) == -1) {
713 warn("sysconf(_SC_ARG_MAX)");
714 argmax
= _POSIX_ARG_MAX
;
717 for (ep
= environ
; *ep
!= NULL
; ep
++)
718 argmax
-= strlen(*ep
) + 1 + sizeof(*ep
);
719 argmax
-= 1 + sizeof(*ep
);
720 new->e_pnummax
= argmax
/ 16;
721 argmax
-= sizeof(char *) * new->e_pnummax
;
723 errx(1, "no space for arguments");
724 new->e_psizemax
= argmax
;
726 cnt
+= new->e_pnummax
+ 1;
727 new->e_next
= lastexecplus
;
730 if ((new->e_argv
= malloc(cnt
* sizeof(char *))) == NULL
)
732 if ((new->e_orig
= malloc(cnt
* sizeof(char *))) == NULL
)
734 if ((new->e_len
= malloc(cnt
* sizeof(int))) == NULL
)
737 for (argv
= *argvp
, cnt
= 0; argv
< ap
; ++argv
, ++cnt
) {
738 new->e_orig
[cnt
] = *argv
;
739 if (new->flags
& F_EXECPLUS
)
740 new->e_pbsize
+= strlen(*argv
) + 1;
741 for (p
= *argv
; *p
; ++p
)
742 if (!(new->flags
& F_EXECPLUS
) && p
[0] == '{' &&
744 if ((new->e_argv
[cnt
] =
745 malloc(MAXPATHLEN
)) == NULL
)
747 new->e_len
[cnt
] = MAXPATHLEN
;
751 new->e_argv
[cnt
] = *argv
;
755 if (new->flags
& F_EXECPLUS
) {
756 new->e_psize
= new->e_pbsize
;
758 for (i
= 0; i
< new->e_pnummax
; i
++) {
759 new->e_argv
[cnt
] = NULL
;
766 new->e_argv
[cnt
] = new->e_orig
[cnt
] = NULL
;
768 done
: *argvp
= argv
+ 1;
772 /* Finish any pending -exec ... {} + functions. */
780 (p
->execute
)(p
, NULL
);
786 f_flags(PLAN
*plan
, FTSENT
*entry
)
790 flags
= entry
->fts_statp
->st_flags
;
791 if (plan
->flags
& F_ATLEAST
)
792 return (flags
| plan
->fl_flags
) == flags
&&
793 !(flags
& plan
->fl_notflags
);
794 else if (plan
->flags
& F_ANY
)
795 return (flags
& plan
->fl_flags
) ||
796 (flags
| plan
->fl_notflags
) != flags
;
798 return flags
== plan
->fl_flags
&&
799 !(plan
->fl_flags
& plan
->fl_notflags
);
803 c_flags(OPTION
*option
, char ***argvp
)
807 u_long flags
, notflags
;
809 flags_str
= nextarg(option
, argvp
);
810 ftsoptions
&= ~FTS_NOSTAT
;
812 new = palloc(option
);
814 if (*flags_str
== '-') {
815 new->flags
|= F_ATLEAST
;
817 } else if (*flags_str
== '+') {
821 if (strtofflags(&flags_str
, &flags
, ¬flags
) == 1)
822 errx(1, "%s: %s: illegal flags string", option
->name
, flags_str
);
824 new->fl_flags
= flags
;
825 new->fl_notflags
= notflags
;
830 * -follow functions --
832 * Always true, causes symbolic links to be followed on a global
836 c_follow(OPTION
*option
, char ***argvp __unused
)
838 ftsoptions
&= ~FTS_PHYSICAL
;
839 ftsoptions
|= FTS_LOGICAL
;
841 return palloc(option
);
845 * -fstype functions --
847 * True if the file is of a certain type.
850 f_fstype(PLAN
*plan
, FTSENT
*entry
)
852 static dev_t curdev
; /* need a guaranteed illegal dev value */
853 static int first
= 1;
855 static int val_type
, val_flags
;
856 char *p
, save
[2] = {0,0};
858 if ((plan
->flags
& F_MTMASK
) == F_MTUNKNOWN
)
861 /* Only check when we cross mount point. */
862 if (first
|| curdev
!= entry
->fts_statp
->st_dev
) {
863 curdev
= entry
->fts_statp
->st_dev
;
866 * Statfs follows symlinks; find wants the link's filesystem,
867 * not where it points.
869 if (entry
->fts_info
== FTS_SL
||
870 entry
->fts_info
== FTS_SLNONE
) {
871 if ((p
= strrchr(entry
->fts_accpath
, '/')) != NULL
)
874 p
= entry
->fts_accpath
;
882 if (statfs(entry
->fts_accpath
, &sb
))
883 err(1, "%s", entry
->fts_accpath
);
893 * Further tests may need both of these values, so
894 * always copy both of them.
896 val_flags
= sb
.f_flags
;
897 val_type
= sb
.f_type
;
899 switch (plan
->flags
& F_MTMASK
) {
901 return val_flags
& plan
->mt_data
;
903 return val_type
== plan
->mt_data
;
910 c_fstype(OPTION
*option
, char ***argvp
)
916 fsname
= nextarg(option
, argvp
);
917 ftsoptions
&= ~FTS_NOSTAT
;
919 new = palloc(option
);
922 * Check first for a filesystem name.
924 if (getvfsbyname(fsname
, &vfc
) == 0) {
925 new->flags
|= F_MTTYPE
;
926 new->mt_data
= vfc
.vfc_typenum
;
932 if (!strcmp(fsname
, "local")) {
933 new->flags
|= F_MTFLAG
;
934 new->mt_data
= MNT_LOCAL
;
939 if (!strcmp(fsname
, "rdonly")) {
940 new->flags
|= F_MTFLAG
;
941 new->mt_data
= MNT_RDONLY
;
948 * We need to make filesystem checks for filesystems
949 * that exists but aren't in the kernel work.
951 fprintf(stderr
, "Warning: Unknown filesystem type %s\n", fsname
);
952 new->flags
|= F_MTUNKNOWN
;
957 * -group gname functions --
959 * True if the file belongs to the group gname. If gname is numeric and
960 * an equivalent of the getgrnam() function does not return a valid group
961 * name, gname is taken as a group ID.
964 f_group(PLAN
*plan
, FTSENT
*entry
)
966 COMPARE(entry
->fts_statp
->st_gid
, plan
->g_data
);
970 c_group(OPTION
*option
, char ***argvp
)
977 gname
= nextarg(option
, argvp
);
978 ftsoptions
&= ~FTS_NOSTAT
;
980 new = palloc(option
);
984 if( gname
[0] == '-' || gname
[0] == '+' )
987 if (gid
== 0 && gname
[0] != '0')
988 errx(1, "%s: %s: no such group", option
->name
, gname
);
989 gid
= find_parsenum(new, option
->name
, cp
, NULL
);
998 * -inum n functions --
1000 * True if the file has inode # n.
1003 f_inum(PLAN
*plan
, FTSENT
*entry
)
1005 COMPARE(entry
->fts_statp
->st_ino
, plan
->i_data
);
1009 c_inum(OPTION
*option
, char ***argvp
)
1014 inum_str
= nextarg(option
, argvp
);
1015 ftsoptions
&= ~FTS_NOSTAT
;
1017 new = palloc(option
);
1018 new->i_data
= find_parsenum(new, option
->name
, inum_str
, NULL
);
1023 * -links n functions --
1025 * True if the file has n links.
1028 f_links(PLAN
*plan
, FTSENT
*entry
)
1030 COMPARE(entry
->fts_statp
->st_nlink
, plan
->l_data
);
1034 c_links(OPTION
*option
, char ***argvp
)
1039 nlinks
= nextarg(option
, argvp
);
1040 ftsoptions
&= ~FTS_NOSTAT
;
1042 new = palloc(option
);
1043 new->l_data
= (nlink_t
)find_parsenum(new, option
->name
, nlinks
, NULL
);
1050 * Always true - prints the current entry to stdout in "ls" format.
1053 f_ls(PLAN
*plan __unused
, FTSENT
*entry
)
1055 printlong(entry
->fts_path
, entry
->fts_accpath
, entry
->fts_statp
);
1060 c_ls(OPTION
*option
, char ***argvp __unused
)
1062 ftsoptions
&= ~FTS_NOSTAT
;
1065 return palloc(option
);
1069 * -name functions --
1071 * True if the basename of the filename being examined
1072 * matches pattern using Pattern Matching Notation S3.14
1075 f_name(PLAN
*plan
, FTSENT
*entry
)
1077 return !fnmatch(plan
->c_data
, entry
->fts_name
,
1078 plan
->flags
& F_IGNCASE
? FNM_CASEFOLD
: 0);
1082 c_name(OPTION
*option
, char ***argvp
)
1087 pattern
= nextarg(option
, argvp
);
1088 new = palloc(option
);
1089 new->c_data
= pattern
;
1094 * -newer file functions --
1096 * True if the current file has been modified more recently
1097 * then the modification time of the file named by the pathname
1101 f_newer(PLAN
*plan
, FTSENT
*entry
)
1103 if (plan
->flags
& F_TIME_C
)
1104 return entry
->fts_statp
->st_ctime
> plan
->t_data
;
1105 else if (plan
->flags
& F_TIME_A
)
1106 return entry
->fts_statp
->st_atime
> plan
->t_data
;
1107 else if (plan
->flags
& F_TIME_B
)
1108 return entry
->fts_statp
->st_birthtime
> plan
->t_data
;
1110 return entry
->fts_statp
->st_mtime
> plan
->t_data
;
1114 c_newer(OPTION
*option
, char ***argvp
)
1120 fn_or_tspec
= nextarg(option
, argvp
);
1121 ftsoptions
&= ~FTS_NOSTAT
;
1123 new = palloc(option
);
1124 /* compare against what */
1125 if (option
->flags
& F_TIME2_T
) {
1126 new->t_data
= get_date(fn_or_tspec
, (struct timeb
*) 0);
1127 if (new->t_data
== (time_t) -1)
1128 errx(1, "Can't parse date/time: %s", fn_or_tspec
);
1130 if (stat(fn_or_tspec
, &sb
))
1131 err(1, "%s", fn_or_tspec
);
1132 if (option
->flags
& F_TIME2_C
)
1133 new->t_data
= sb
.st_ctime
;
1134 else if (option
->flags
& F_TIME2_A
)
1135 new->t_data
= sb
.st_atime
;
1137 new->t_data
= sb
.st_mtime
;
1143 * -nogroup functions --
1145 * True if file belongs to a user ID for which the equivalent
1146 * of the getgrnam() 9.2.1 [POSIX.1] function returns NULL.
1149 f_nogroup(PLAN
*plan __unused
, FTSENT
*entry
)
1151 return group_from_gid(entry
->fts_statp
->st_gid
, 1) == NULL
;
1155 c_nogroup(OPTION
*option
, char ***argvp __unused
)
1157 ftsoptions
&= ~FTS_NOSTAT
;
1159 return palloc(option
);
1163 * -nouser functions --
1165 * True if file belongs to a user ID for which the equivalent
1166 * of the getpwuid() 9.2.2 [POSIX.1] function returns NULL.
1169 f_nouser(PLAN
*plan __unused
, FTSENT
*entry
)
1171 return user_from_uid(entry
->fts_statp
->st_uid
, 1) == NULL
;
1175 c_nouser(OPTION
*option
, char ***argvp __unused
)
1177 ftsoptions
&= ~FTS_NOSTAT
;
1179 return palloc(option
);
1183 * -path functions --
1185 * True if the path of the filename being examined
1186 * matches pattern using Pattern Matching Notation S3.14
1189 f_path(PLAN
*plan
, FTSENT
*entry
)
1191 return !fnmatch(plan
->c_data
, entry
->fts_path
,
1192 plan
->flags
& F_IGNCASE
? FNM_CASEFOLD
: 0);
1195 /* c_path is the same as c_name */
1198 * -perm functions --
1200 * The mode argument is used to represent file mode bits. If it starts
1201 * with a leading digit, it's treated as an octal mode, otherwise as a
1205 f_perm(PLAN
*plan
, FTSENT
*entry
)
1209 mode
= entry
->fts_statp
->st_mode
&
1210 (S_ISUID
|S_ISGID
|S_ISTXT
|S_IRWXU
|S_IRWXG
|S_IRWXO
);
1211 if (plan
->flags
& F_ATLEAST
)
1212 return (plan
->m_data
| mode
) == mode
;
1213 else if (plan
->flags
& F_ANY
)
1214 return (mode
& plan
->m_data
);
1216 return mode
== plan
->m_data
;
1221 c_perm(OPTION
*option
, char ***argvp
)
1227 perm
= nextarg(option
, argvp
);
1228 ftsoptions
&= ~FTS_NOSTAT
;
1230 new = palloc(option
);
1233 new->flags
|= F_ATLEAST
;
1235 } else if (*perm
== '+') {
1236 if ((set
= setmode(perm
+ 1)) != NULL
) {
1237 new->flags
|= F_ANY
;
1243 if ((set
= setmode(perm
)) == NULL
)
1244 errx(1, "%s: %s: illegal mode string", option
->name
, perm
);
1246 new->m_data
= getmode(set
, 0);
1252 * -print functions --
1254 * Always true, causes the current pathname to be written to
1258 f_print(PLAN
*plan __unused
, FTSENT
*entry
)
1260 (void)puts(entry
->fts_path
);
1265 c_print(OPTION
*option
, char ***argvp __unused
)
1269 return palloc(option
);
1273 * -print0 functions --
1275 * Always true, causes the current pathname to be written to
1276 * standard output followed by a NUL character
1279 f_print0(PLAN
*plan __unused
, FTSENT
*entry
)
1281 fputs(entry
->fts_path
, stdout
);
1282 fputc('\0', stdout
);
1286 /* c_print0 is the same as c_print */
1289 * -prune functions --
1291 * Prune a portion of the hierarchy.
1294 f_prune(PLAN
*plan __unused
, FTSENT
*entry
)
1296 if (fts_set(tree
, entry
, FTS_SKIP
))
1297 err(1, "%s", entry
->fts_path
);
1301 /* c_prune == c_simple */
1304 * -regex functions --
1306 * True if the whole path of the file matches pattern using
1307 * regular expression.
1310 f_regex(PLAN
*plan
, FTSENT
*entry
)
1317 char errbuf
[LINE_MAX
];
1320 pre
= plan
->re_data
;
1321 str
= entry
->fts_path
;
1328 errcode
= regexec(pre
, str
, 1, &pmatch
, REG_STARTEND
);
1330 if (errcode
!= 0 && errcode
!= REG_NOMATCH
) {
1331 regerror(errcode
, pre
, errbuf
, sizeof errbuf
);
1333 plan
->flags
& F_IGNCASE
? "-iregex" : "-regex", errbuf
);
1336 if (errcode
== 0 && pmatch
.rm_so
== 0 && pmatch
.rm_eo
== len
)
1343 c_regex(OPTION
*option
, char ***argvp
)
1349 char errbuf
[LINE_MAX
];
1351 if ((pre
= malloc(sizeof(regex_t
))) == NULL
)
1354 pattern
= nextarg(option
, argvp
);
1356 if ((errcode
= regcomp(pre
, pattern
,
1357 regexp_flags
| (option
->flags
& F_IGNCASE
? REG_ICASE
: 0))) != 0) {
1358 regerror(errcode
, pre
, errbuf
, sizeof errbuf
);
1359 errx(1, "%s: %s: %s",
1360 option
->flags
& F_IGNCASE
? "-iregex" : "-regex",
1364 new = palloc(option
);
1370 /* c_simple covers c_prune, c_openparen, c_closeparen, c_not, c_or */
1373 c_simple(OPTION
*option
, char ***argvp __unused
)
1375 return palloc(option
);
1379 * -size n[c] functions --
1381 * True if the file size in bytes, divided by an implementation defined
1382 * value and rounded up to the next integer, is n. If n is followed by
1383 * one of c k M G T P, the size is in bytes, kilobytes,
1384 * megabytes, gigabytes, terabytes or petabytes respectively.
1386 #define FIND_SIZE 512
1387 static int divsize
= 1;
1390 f_size(PLAN
*plan
, FTSENT
*entry
)
1394 size
= divsize
? (entry
->fts_statp
->st_size
+ FIND_SIZE
- 1) /
1395 FIND_SIZE
: entry
->fts_statp
->st_size
;
1396 COMPARE(size
, plan
->o_data
);
1400 c_size(OPTION
*option
, char ***argvp
)
1407 size_str
= nextarg(option
, argvp
);
1408 ftsoptions
&= ~FTS_NOSTAT
;
1410 new = palloc(option
);
1412 new->o_data
= find_parsenum(new, option
->name
, size_str
, &endch
);
1413 if (endch
!= '\0') {
1417 case 'c': /* characters */
1420 case 'k': /* kilobytes 1<<10 */
1423 case 'M': /* megabytes 1<<20 */
1426 case 'G': /* gigabytes 1<<30 */
1427 scale
= 0x40000000LL
;
1429 case 'T': /* terabytes 1<<40 */
1430 scale
= 0x1000000000LL
;
1432 case 'P': /* petabytes 1<<50 */
1433 scale
= 0x4000000000000LL
;
1436 errx(1, "%s: %s: illegal trailing character",
1437 option
->name
, size_str
);
1440 if (new->o_data
> QUAD_MAX
/ scale
)
1441 errx(1, "%s: %s: value too large",
1442 option
->name
, size_str
);
1443 new->o_data
*= scale
;
1449 * -type c functions --
1451 * True if the type of the file is c, where c is b, c, d, p, f or w
1452 * for block special file, character special file, directory, FIFO,
1453 * regular file or whiteout respectively.
1456 f_type(PLAN
*plan
, FTSENT
*entry
)
1458 return (entry
->fts_statp
->st_mode
& S_IFMT
) == plan
->m_data
;
1462 c_type(OPTION
*option
, char ***argvp
)
1468 typestring
= nextarg(option
, argvp
);
1469 ftsoptions
&= ~FTS_NOSTAT
;
1471 switch (typestring
[0]) {
1496 ftsoptions
|= FTS_WHITEOUT
;
1498 #endif /* FTS_WHITEOUT */
1500 errx(1, "%s: %s: unknown type", option
->name
, typestring
);
1503 new = palloc(option
);
1509 * -user uname functions --
1511 * True if the file belongs to the user uname. If uname is numeric and
1512 * an equivalent of the getpwnam() S9.2.2 [POSIX.1] function does not
1513 * return a valid user name, uname is taken as a user ID.
1516 f_user(PLAN
*plan
, FTSENT
*entry
)
1518 COMPARE(entry
->fts_statp
->st_uid
, plan
->u_data
);
1522 c_user(OPTION
*option
, char ***argvp
)
1529 username
= nextarg(option
, argvp
);
1530 ftsoptions
&= ~FTS_NOSTAT
;
1532 new = palloc(option
);
1533 p
= getpwnam(username
);
1535 char* cp
= username
;
1536 if( username
[0] == '-' || username
[0] == '+' )
1538 uid
= atoi(username
);
1539 if (uid
== 0 && username
[0] != '0')
1540 errx(1, "%s: %s: no such user", option
->name
, username
);
1541 uid
= find_parsenum(new, option
->name
, cp
, NULL
);
1550 * -xdev functions --
1552 * Always true, causes find not to descend past directories that have a
1553 * different device ID (st_dev, see stat() S5.6.2 [POSIX.1])
1556 c_xdev(OPTION
*option
, char ***argvp __unused
)
1558 ftsoptions
|= FTS_XDEV
;
1560 return palloc(option
);
1564 * ( expression ) functions --
1566 * True if expression is true.
1569 f_expr(PLAN
*plan
, FTSENT
*entry
)
1574 for (p
= plan
->p_data
[0];
1575 p
&& (state
= (p
->execute
)(p
, entry
)); p
= p
->next
);
1580 * f_openparen and f_closeparen nodes are temporary place markers. They are
1581 * eliminated during phase 2 of find_formplan() --- the '(' node is converted
1582 * to a f_expr node containing the expression and the ')' node is discarded.
1583 * The functions themselves are only used as constants.
1587 f_openparen(PLAN
*plan __unused
, FTSENT
*entry __unused
)
1593 f_closeparen(PLAN
*plan __unused
, FTSENT
*entry __unused
)
1598 /* c_openparen == c_simple */
1599 /* c_closeparen == c_simple */
1602 * AND operator. Since AND is implicit, no node is allocated.
1605 c_and(OPTION
*option __unused
, char ***argvp __unused
)
1611 * ! expression functions --
1613 * Negation of a primary; the unary NOT operator.
1616 f_not(PLAN
*plan
, FTSENT
*entry
)
1621 for (p
= plan
->p_data
[0];
1622 p
&& (state
= (p
->execute
)(p
, entry
)); p
= p
->next
);
1626 /* c_not == c_simple */
1629 * expression -o expression functions --
1631 * Alternation of primaries; the OR operator. The second expression is
1632 * not evaluated if the first expression is true.
1635 f_or(PLAN
*plan
, FTSENT
*entry
)
1640 for (p
= plan
->p_data
[0];
1641 p
&& (state
= (p
->execute
)(p
, entry
)); p
= p
->next
);
1646 for (p
= plan
->p_data
[1];
1647 p
&& (state
= (p
->execute
)(p
, entry
)); p
= p
->next
);
1651 /* c_or == c_simple */