11556Srgrimes/*-
21556Srgrimes * Copyright (c) 1992 Keith Muller.
31556Srgrimes * Copyright (c) 1992, 1993
41556Srgrimes *	The Regents of the University of California.  All rights reserved.
51556Srgrimes *
61556Srgrimes * This code is derived from software contributed to Berkeley by
71556Srgrimes * Keith Muller of the University of California, San Diego.
81556Srgrimes *
91556Srgrimes * Redistribution and use in source and binary forms, with or without
101556Srgrimes * modification, are permitted provided that the following conditions
111556Srgrimes * are met:
121556Srgrimes * 1. Redistributions of source code must retain the above copyright
131556Srgrimes *    notice, this list of conditions and the following disclaimer.
141556Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
151556Srgrimes *    notice, this list of conditions and the following disclaimer in the
161556Srgrimes *    documentation and/or other materials provided with the distribution.
171556Srgrimes * 4. Neither the name of the University nor the names of its contributors
181556Srgrimes *    may be used to endorse or promote products derived from this software
191556Srgrimes *    without specific prior written permission.
201556Srgrimes *
211556Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221556Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231556Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241556Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251556Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261556Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271556Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281556Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291556Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301556Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311556Srgrimes * SUCH DAMAGE.
321556Srgrimes *
331556Srgrimes *	@(#)sel_subs.h	8.1 (Berkeley) 5/31/93
3450471Speter * $FreeBSD$
351556Srgrimes */
361556Srgrimes
371556Srgrimes/*
381556Srgrimes * data structure for storing uid/grp selects (-U, -G non standard options)
391556Srgrimes */
401556Srgrimes
411556Srgrimes#define USR_TB_SZ	317		/* user selection table size */
421556Srgrimes#define GRP_TB_SZ	317		/* user selection table size */
431556Srgrimes
441556Srgrimestypedef struct usrt {
451556Srgrimes	uid_t uid;
461556Srgrimes	struct usrt *fow;		/* next uid */
471556Srgrimes} USRT;
481556Srgrimes
491556Srgrimestypedef struct grpt {
501556Srgrimes	gid_t gid;
511556Srgrimes	struct grpt *fow;		/* next gid */
521556Srgrimes} GRPT;
531556Srgrimes
541556Srgrimes/*
551556Srgrimes * data structure for storing user supplied time ranges (-T option)
561556Srgrimes */
571556Srgrimes
581556Srgrimes#define ATOI2(s)	((((s)[0] - '0') * 10) + ((s)[1] - '0'))
591556Srgrimes
601556Srgrimestypedef struct time_rng {
611556Srgrimes	time_t		low_time;	/* lower inclusive time limit */
621556Srgrimes	time_t		high_time;	/* higher inclusive time limit */
631556Srgrimes	int		flgs;		/* option flags */
641556Srgrimes#define	HASLOW		0x01		/* has lower time limit */
651556Srgrimes#define HASHIGH		0x02		/* has higher time limit */
661556Srgrimes#define CMPMTME		0x04		/* compare file modification time */
671556Srgrimes#define CMPCTME		0x08		/* compare inode change time */
681556Srgrimes#define CMPBOTH	(CMPMTME|CMPCTME)	/* compare inode and mod time */
691556Srgrimes	struct time_rng	*fow;		/* next pattern */
701556Srgrimes} TIME_RNG;
71