sel_subs.h revision 1.5 1 1.5 agc /* $NetBSD: sel_subs.h,v 1.5 2003/08/07 09:05:22 agc Exp $ */
2 1.3 cgd
3 1.1 jtc /*-
4 1.1 jtc * Copyright (c) 1992, 1993
5 1.1 jtc * The Regents of the University of California. All rights reserved.
6 1.5 agc *
7 1.5 agc * This code is derived from software contributed to Berkeley by
8 1.5 agc * Keith Muller of the University of California, San Diego.
9 1.5 agc *
10 1.5 agc * Redistribution and use in source and binary forms, with or without
11 1.5 agc * modification, are permitted provided that the following conditions
12 1.5 agc * are met:
13 1.5 agc * 1. Redistributions of source code must retain the above copyright
14 1.5 agc * notice, this list of conditions and the following disclaimer.
15 1.5 agc * 2. Redistributions in binary form must reproduce the above copyright
16 1.5 agc * notice, this list of conditions and the following disclaimer in the
17 1.5 agc * documentation and/or other materials provided with the distribution.
18 1.5 agc * 3. Neither the name of the University nor the names of its contributors
19 1.5 agc * may be used to endorse or promote products derived from this software
20 1.5 agc * without specific prior written permission.
21 1.5 agc *
22 1.5 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.5 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.5 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.5 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.5 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.5 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.5 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.5 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.5 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.5 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.5 agc * SUCH DAMAGE.
33 1.5 agc *
34 1.5 agc * @(#)sel_subs.h 8.1 (Berkeley) 5/31/93
35 1.5 agc */
36 1.5 agc
37 1.5 agc /*-
38 1.5 agc * Copyright (c) 1992 Keith Muller.
39 1.1 jtc *
40 1.1 jtc * This code is derived from software contributed to Berkeley by
41 1.1 jtc * Keith Muller of the University of California, San Diego.
42 1.1 jtc *
43 1.1 jtc * Redistribution and use in source and binary forms, with or without
44 1.1 jtc * modification, are permitted provided that the following conditions
45 1.1 jtc * are met:
46 1.1 jtc * 1. Redistributions of source code must retain the above copyright
47 1.1 jtc * notice, this list of conditions and the following disclaimer.
48 1.1 jtc * 2. Redistributions in binary form must reproduce the above copyright
49 1.1 jtc * notice, this list of conditions and the following disclaimer in the
50 1.1 jtc * documentation and/or other materials provided with the distribution.
51 1.1 jtc * 3. All advertising materials mentioning features or use of this software
52 1.1 jtc * must display the following acknowledgement:
53 1.1 jtc * This product includes software developed by the University of
54 1.1 jtc * California, Berkeley and its contributors.
55 1.1 jtc * 4. Neither the name of the University nor the names of its contributors
56 1.1 jtc * may be used to endorse or promote products derived from this software
57 1.1 jtc * without specific prior written permission.
58 1.1 jtc *
59 1.1 jtc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 1.1 jtc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 1.1 jtc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 1.1 jtc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 1.1 jtc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 1.1 jtc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 1.1 jtc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 1.1 jtc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 1.1 jtc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 1.1 jtc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69 1.1 jtc * SUCH DAMAGE.
70 1.1 jtc *
71 1.3 cgd * @(#)sel_subs.h 8.1 (Berkeley) 5/31/93
72 1.1 jtc */
73 1.1 jtc
74 1.1 jtc /*
75 1.1 jtc * data structure for storing uid/grp selects (-U, -G non standard options)
76 1.1 jtc */
77 1.1 jtc
78 1.1 jtc #define USR_TB_SZ 317 /* user selection table size */
79 1.1 jtc #define GRP_TB_SZ 317 /* user selection table size */
80 1.1 jtc
81 1.1 jtc typedef struct usrt {
82 1.1 jtc uid_t uid;
83 1.1 jtc struct usrt *fow; /* next uid */
84 1.1 jtc } USRT;
85 1.1 jtc
86 1.1 jtc typedef struct grpt {
87 1.1 jtc gid_t gid;
88 1.1 jtc struct grpt *fow; /* next gid */
89 1.1 jtc } GRPT;
90 1.1 jtc
91 1.1 jtc /*
92 1.1 jtc * data structure for storing user supplied time ranges (-T option)
93 1.1 jtc */
94 1.1 jtc
95 1.1 jtc typedef struct time_rng {
96 1.1 jtc time_t low_time; /* lower inclusive time limit */
97 1.1 jtc time_t high_time; /* higher inclusive time limit */
98 1.1 jtc int flgs; /* option flags */
99 1.1 jtc #define HASLOW 0x01 /* has lower time limit */
100 1.1 jtc #define HASHIGH 0x02 /* has higher time limit */
101 1.1 jtc #define CMPMTME 0x04 /* compare file modification time */
102 1.1 jtc #define CMPCTME 0x08 /* compare inode change time */
103 1.1 jtc #define CMPBOTH (CMPMTME|CMPCTME) /* compare inode and mod time */
104 1.1 jtc struct time_rng *fow; /* next pattern */
105 1.1 jtc } TIME_RNG;
106