xref: /openbsd-src/usr.bin/find/main.c (revision a28daedfc357b214be5c701aa8ba8adb29a7f1c2)
1 /*	$OpenBSD: main.c,v 1.23 2007/05/10 09:00:18 jmc Exp $	*/
2 
3 /*-
4  * Copyright (c) 1990, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #ifndef lint
33 /*static char sccsid[] = "@(#)main.c	8.1 (Berkeley) 6/6/93";*/
34 static char rcsid[] = "$OpenBSD: main.c,v 1.23 2007/05/10 09:00:18 jmc Exp $";
35 #endif /* not lint */
36 
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 
40 #include <err.h>
41 #include <errno.h>
42 #include <fcntl.h>
43 #include <fts.h>
44 #include <signal.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #include <time.h>
49 
50 #include "find.h"
51 
52 time_t now;			/* time find was run */
53 int dotfd;			/* starting directory */
54 int ftsoptions;			/* options for the fts_open(3) call */
55 int isdepth;			/* do directories on post-order visit */
56 int isoutput;			/* user specified output operator */
57 int isxargs;			/* don't permit xargs delimiting chars */
58 
59 __dead static void usage(void);
60 
61 int
62 main(int argc, char *argv[])
63 {
64 	struct sigaction sa;
65 	char **p, **paths, **paths2;
66 	int ch;
67 
68 	memset(&sa, 0, sizeof sa);
69 	sa.sa_handler = show_path;
70 	sa.sa_flags = SA_RESTART;
71 
72 	(void)time(&now);	/* initialize the time-of-day */
73 
74 	p = paths = (char **) emalloc(sizeof(char *) * argc);
75 
76 	sigaction(SIGINFO, &sa, NULL);
77 
78 	ftsoptions = FTS_NOSTAT|FTS_PHYSICAL;
79 	while ((ch = getopt(argc, argv, "Hdf:hLXx")) != -1)
80 		switch(ch) {
81 		case 'H':
82 			ftsoptions |= FTS_COMFOLLOW;
83 			break;
84 		case 'd':
85 			isdepth = 1;
86 			break;
87 		case 'f':
88 			*p++ = optarg;
89 			break;
90 		case 'h':
91 		case 'L':
92 			ftsoptions &= ~FTS_PHYSICAL;
93 			ftsoptions |= FTS_LOGICAL;
94 			break;
95 		case 'X':
96 			isxargs = 1;
97 			break;
98 		case 'x':
99 			ftsoptions &= ~FTS_NOSTAT;
100 			ftsoptions |= FTS_XDEV;
101 			break;
102 		case '?':
103 		default:
104 			break;
105 		}
106 
107 	argc -= optind;
108 	argv += optind;
109 
110 	/* The first argument that starts with a -, or is a ! or a (, and all
111 	 * subsequent arguments shall be interpreted as an expression ...
112 	 * (POSIX.2).
113 	 */
114 	while (*argv) {
115 		if (**argv == '-' ||
116 		    ((**argv == '!' || **argv == '(') && (*argv)[1] == '\0'))
117 			break;
118 		*p++ = *argv++;
119 	}
120 
121 	if (p == paths)
122 		usage();
123 	*p = NULL;
124 
125 	if (!(paths2 = realloc(paths, sizeof(char *) * (p - paths + 1))))
126 		err(1, NULL);
127 	paths = paths2;
128 
129 	if ((dotfd = open(".", O_RDONLY, 0)) < 0)
130 		err(1, ".:");
131 
132 	find_execute(find_formplan(argv), paths);
133 	exit(0);
134 }
135 
136 static void
137 usage(void)
138 {
139 	(void)fprintf(stderr,
140 	    "usage: find [-dHhLXx] [-f path] path ... [expression]\n");
141 	exit(1);
142 }
143