sel_subs.h revision 50471
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 * 3. All advertising materials mentioning features or use of this software
181556Srgrimes *    must display the following acknowledgement:
191556Srgrimes *	This product includes software developed by the University of
201556Srgrimes *	California, Berkeley and its contributors.
211556Srgrimes * 4. Neither the name of the University nor the names of its contributors
221556Srgrimes *    may be used to endorse or promote products derived from this software
231556Srgrimes *    without specific prior written permission.
241556Srgrimes *
251556Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
261556Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
271556Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
281556Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
291556Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
301556Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
311556Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
321556Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
331556Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
341556Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
351556Srgrimes * SUCH DAMAGE.
361556Srgrimes *
371556Srgrimes *	@(#)sel_subs.h	8.1 (Berkeley) 5/31/93
3850471Speter * $FreeBSD: head/bin/pax/sel_subs.h 50471 1999-08-27 23:15:48Z peter $
391556Srgrimes */
401556Srgrimes
411556Srgrimes/*
421556Srgrimes * data structure for storing uid/grp selects (-U, -G non standard options)
431556Srgrimes */
441556Srgrimes
451556Srgrimes#define USR_TB_SZ	317		/* user selection table size */
461556Srgrimes#define GRP_TB_SZ	317		/* user selection table size */
471556Srgrimes
481556Srgrimestypedef struct usrt {
491556Srgrimes	uid_t uid;
501556Srgrimes	struct usrt *fow;		/* next uid */
511556Srgrimes} USRT;
521556Srgrimes
531556Srgrimestypedef struct grpt {
541556Srgrimes	gid_t gid;
551556Srgrimes	struct grpt *fow;		/* next gid */
561556Srgrimes} GRPT;
571556Srgrimes
581556Srgrimes/*
591556Srgrimes * data structure for storing user supplied time ranges (-T option)
601556Srgrimes */
611556Srgrimes
621556Srgrimes#define ATOI2(s)	((((s)[0] - '0') * 10) + ((s)[1] - '0'))
631556Srgrimes
641556Srgrimestypedef struct time_rng {
651556Srgrimes	time_t		low_time;	/* lower inclusive time limit */
661556Srgrimes	time_t		high_time;	/* higher inclusive time limit */
671556Srgrimes	int		flgs;		/* option flags */
681556Srgrimes#define	HASLOW		0x01		/* has lower time limit */
691556Srgrimes#define HASHIGH		0x02		/* has higher time limit */
701556Srgrimes#define CMPMTME		0x04		/* compare file modification time */
711556Srgrimes#define CMPCTME		0x08		/* compare inode change time */
721556Srgrimes#define CMPBOTH	(CMPMTME|CMPCTME)	/* compare inode and mod time */
731556Srgrimes	struct time_rng	*fow;		/* next pattern */
741556Srgrimes} TIME_RNG;
75