main.c revision 41399
11590Srgrimes/*-
21590Srgrimes * Copyright (c) 1990, 1993, 1994
31590Srgrimes *	The Regents of the University of California.  All rights reserved.
41590Srgrimes *
51590Srgrimes * This code is derived from software contributed to Berkeley by
61590Srgrimes * Cimarron D. Taylor of the University of California, Berkeley.
71590Srgrimes *
81590Srgrimes * Redistribution and use in source and binary forms, with or without
91590Srgrimes * modification, are permitted provided that the following conditions
101590Srgrimes * are met:
111590Srgrimes * 1. Redistributions of source code must retain the above copyright
121590Srgrimes *    notice, this list of conditions and the following disclaimer.
131590Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
141590Srgrimes *    notice, this list of conditions and the following disclaimer in the
151590Srgrimes *    documentation and/or other materials provided with the distribution.
161590Srgrimes * 3. All advertising materials mentioning features or use of this software
171590Srgrimes *    must display the following acknowledgement:
181590Srgrimes *	This product includes software developed by the University of
191590Srgrimes *	California, Berkeley and its contributors.
201590Srgrimes * 4. Neither the name of the University nor the names of its contributors
211590Srgrimes *    may be used to endorse or promote products derived from this software
221590Srgrimes *    without specific prior written permission.
231590Srgrimes *
241590Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
251590Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
261590Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
271590Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
281590Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
291590Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
301590Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
311590Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
321590Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
331590Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
341590Srgrimes * SUCH DAMAGE.
351590Srgrimes */
361590Srgrimes
371590Srgrimes#ifndef lint
381590Srgrimeschar copyright[] =
391590Srgrimes"@(#) Copyright (c) 1990, 1993, 1994\n\
401590Srgrimes	The Regents of the University of California.  All rights reserved.\n";
411590Srgrimes#endif /* not lint */
421590Srgrimes
431590Srgrimes#ifndef lint
4423695Speterstatic char sccsid[] = "@(#)main.c	8.4 (Berkeley) 5/4/95";
451590Srgrimes#endif /* not lint */
461590Srgrimes
471590Srgrimes#include <sys/types.h>
481590Srgrimes#include <sys/stat.h>
491590Srgrimes
501590Srgrimes#include <err.h>
511590Srgrimes#include <errno.h>
521590Srgrimes#include <fcntl.h>
531590Srgrimes#include <fts.h>
5417534Sache#include <locale.h>
551590Srgrimes#include <stdio.h>
561590Srgrimes#include <stdlib.h>
571590Srgrimes#include <time.h>
5823695Speter#include <unistd.h>
591590Srgrimes
601590Srgrimes#include "find.h"
611590Srgrimes
621590Srgrimestime_t now;			/* time find was run */
631590Srgrimesint dotfd;			/* starting directory */
641590Srgrimesint ftsoptions;			/* options for the ftsopen(3) call */
651590Srgrimesint isdeprecated;		/* using deprecated syntax */
661590Srgrimesint isdepth;			/* do directories on post-order visit */
671590Srgrimesint isoutput;			/* user specified output operator */
6841399Sbdeint issort;         		/* do hierarchies in lexicographical order */
691590Srgrimesint isxargs;			/* don't permit xargs delimiting chars */
701590Srgrimes
711590Srgrimesstatic void usage __P((void));
721590Srgrimes
731590Srgrimesint
741590Srgrimesmain(argc, argv)
751590Srgrimes	int argc;
761590Srgrimes	char *argv[];
771590Srgrimes{
781590Srgrimes	register char **p, **start;
7925942Sjdp	int Hflag, Lflag, ch;
801590Srgrimes
8117534Sache	(void)setlocale(LC_ALL, "");
8217534Sache
831590Srgrimes	(void)time(&now);	/* initialize the time-of-day */
841590Srgrimes
851590Srgrimes	p = start = argv;
8625942Sjdp	Hflag = Lflag = 0;
871590Srgrimes	ftsoptions = FTS_NOSTAT | FTS_PHYSICAL;
8841391Swosch	while ((ch = getopt(argc, argv, "HLPXdf:sx")) != -1)
891590Srgrimes		switch (ch) {
901590Srgrimes		case 'H':
911590Srgrimes			Hflag = 1;
9225942Sjdp			Lflag = 0;
931590Srgrimes			break;
941590Srgrimes		case 'L':
951590Srgrimes			Lflag = 1;
9625942Sjdp			Hflag = 0;
971590Srgrimes			break;
981590Srgrimes		case 'P':
991590Srgrimes			Hflag = Lflag = 0;
1001590Srgrimes			break;
1011590Srgrimes		case 'X':
1021590Srgrimes			isxargs = 1;
1031590Srgrimes			break;
1041590Srgrimes		case 'd':
1051590Srgrimes			isdepth = 1;
1061590Srgrimes			break;
1071590Srgrimes		case 'f':
1081590Srgrimes			*p++ = optarg;
1091590Srgrimes			break;
11041391Swosch		case 's':
11141391Swosch			issort = 1;
11241391Swosch			break;
1131590Srgrimes		case 'x':
1141590Srgrimes			ftsoptions |= FTS_XDEV;
1151590Srgrimes			break;
1161590Srgrimes		case '?':
1171590Srgrimes		default:
1181590Srgrimes			break;
1191590Srgrimes		}
1201590Srgrimes
1218874Srgrimes	argc -= optind;
1221590Srgrimes	argv += optind;
1231590Srgrimes
1241590Srgrimes	if (Hflag)
1251590Srgrimes		ftsoptions |= FTS_COMFOLLOW;
1261590Srgrimes	if (Lflag) {
1271590Srgrimes		ftsoptions &= ~FTS_PHYSICAL;
1281590Srgrimes		ftsoptions |= FTS_LOGICAL;
1291590Srgrimes	}
1301590Srgrimes
1311590Srgrimes	/*
1321590Srgrimes	 * Find first option to delimit the file list.  The first argument
1331590Srgrimes	 * that starts with a -, or is a ! or a ( must be interpreted as a
1341590Srgrimes	 * part of the find expression, according to POSIX .2.
1351590Srgrimes	 */
1361590Srgrimes	for (; *argv != NULL; *p++ = *argv++) {
1371590Srgrimes		if (argv[0][0] == '-')
1381590Srgrimes			break;
1391590Srgrimes		if ((argv[0][0] == '!' || argv[0][0] == '(') &&
1401590Srgrimes		    argv[0][1] == '\0')
1411590Srgrimes			break;
1421590Srgrimes	}
1431590Srgrimes
1441590Srgrimes	if (p == start)
1451590Srgrimes		usage();
1461590Srgrimes	*p = NULL;
1471590Srgrimes
1481590Srgrimes	if ((dotfd = open(".", O_RDONLY, 0)) < 0)
1491590Srgrimes		err(1, ".");
1501590Srgrimes
1511590Srgrimes	exit(find_execute(find_formplan(argv), start));
1521590Srgrimes}
1531590Srgrimes
1541590Srgrimesstatic void
1551590Srgrimesusage()
1561590Srgrimes{
1571590Srgrimes	(void)fprintf(stderr,
15841397Sbde"usage: find [-H | -L | -P] [-Xdsx] [-f file] [file ...] [expression]\n");
1591590Srgrimes	exit(1);
1601590Srgrimes}
161