1 /* $OpenBSD: sel_subs.c,v 1.26 2016/08/26 04:20:38 guenther Exp $ */
2 /* $NetBSD: sel_subs.c,v 1.5 1995/03/21 09:07:42 cgd Exp $ */
5 * Copyright (c) 1992 Keith Muller.
6 * Copyright (c) 1992, 1993
7 * The Regents of the University of California. All rights reserved.
9 * This code is derived from software contributed to Berkeley by
10 * Keith Muller of the University of California, San Diego.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #include <sys/types.h>
51 * data structure for storing uid/grp selects (-U, -G non standard options)
54 #define USR_TB_SZ 317 /* user selection table size */
55 #define GRP_TB_SZ 317 /* user selection table size */
59 struct usrt
*fow
; /* next uid */
64 struct grpt
*fow
; /* next gid */
68 * data structure for storing user supplied time ranges (-T option)
71 #define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2;
73 typedef struct time_rng
{
74 time_t low_time
; /* lower inclusive time limit */
75 time_t high_time
; /* higher inclusive time limit */
76 int flgs
; /* option flags */
77 #define HASLOW 0x01 /* has lower time limit */
78 #define HASHIGH 0x02 /* has higher time limit */
79 #define CMPMTME 0x04 /* compare file modification time */
80 #define CMPCTME 0x08 /* compare inode change time */
81 #define CMPBOTH (CMPMTME|CMPCTME) /* compare inode and mod time */
82 struct time_rng
*fow
; /* next pattern */
85 static int str_sec(const char *, time_t *);
86 static int usr_match(ARCHD
*);
87 static int grp_match(ARCHD
*);
88 static int trng_match(ARCHD
*);
90 static TIME_RNG
*trhead
= NULL
; /* time range list head */
91 static TIME_RNG
*trtail
= NULL
; /* time range list tail */
92 static USRT
**usrtb
= NULL
; /* user selection table */
93 static GRPT
**grptb
= NULL
; /* group selection table */
96 * Routines for selection of archive members
101 * check if this file matches a specified uid, gid or time range
103 * 0 if this archive member should be processed, 1 if it should be skipped
109 if (((usrtb
!= NULL
) && usr_match(arcn
)) ||
110 ((grptb
!= NULL
) && grp_match(arcn
)) ||
111 ((trhead
!= NULL
) && trng_match(arcn
)))
117 * User/group selection routines
119 * Routines to handle user selection of files based on the file uid/gid. To
120 * add an entry, the user supplies either the name or the uid/gid starting with
121 * a # on the command line. A \# will escape the #.
126 * add a user match to the user match hash table
128 * 0 if added ok, -1 otherwise;
140 * create the table if it doesn't exist
142 if ((str
== NULL
) || (*str
== '\0'))
144 if ((usrtb
== NULL
) &&
145 ((usrtb
= calloc(USR_TB_SZ
, sizeof(USRT
*))) == NULL
)) {
146 paxwarn(1, "Unable to allocate memory for user selection table");
151 * figure out user spec
155 * it is a user name, \# escapes # as first char in user name
157 if ((str
[0] == '\\') && (str
[1] == '#'))
159 if ((pw
= getpwnam(str
)) == NULL
) {
160 paxwarn(1, "Unable to find uid for user: %s", str
);
163 uid
= (uid_t
)pw
->pw_uid
;
165 uid
= (uid_t
)strtoul(str
+1, NULL
, 10);
169 * hash it and go down the hash chain (if any) looking for it
171 indx
= ((unsigned)uid
) % USR_TB_SZ
;
172 if ((pt
= usrtb
[indx
]) != NULL
) {
181 * uid is not yet in the table, add it to the front of the chain
183 if ((pt
= malloc(sizeof(USRT
))) != NULL
) {
185 pt
->fow
= usrtb
[indx
];
189 paxwarn(1, "User selection table out of memory");
195 * check if this files uid matches a selected uid.
197 * 0 if this archive member should be processed, 1 if it should be skipped
201 usr_match(ARCHD
*arcn
)
206 * hash and look for it in the table
208 pt
= usrtb
[((unsigned)arcn
->sb
.st_uid
) % USR_TB_SZ
];
210 if (pt
->uid
== arcn
->sb
.st_uid
)
223 * add a group match to the group match hash table
225 * 0 if added ok, -1 otherwise;
237 * create the table if it doesn't exist
239 if ((str
== NULL
) || (*str
== '\0'))
241 if ((grptb
== NULL
) &&
242 ((grptb
= calloc(GRP_TB_SZ
, sizeof(GRPT
*))) == NULL
)) {
243 paxwarn(1, "Unable to allocate memory fo group selection table");
248 * figure out user spec
252 * it is a group name, \# escapes # as first char in group name
254 if ((str
[0] == '\\') && (str
[1] == '#'))
256 if ((gr
= getgrnam(str
)) == NULL
) {
257 paxwarn(1,"Cannot determine gid for group name: %s", str
);
260 gid
= (gid_t
)gr
->gr_gid
;
262 gid
= (gid_t
)strtoul(str
+1, NULL
, 10);
266 * hash it and go down the hash chain (if any) looking for it
268 indx
= ((unsigned)gid
) % GRP_TB_SZ
;
269 if ((pt
= grptb
[indx
]) != NULL
) {
278 * gid not in the table, add it to the front of the chain
280 if ((pt
= malloc(sizeof(GRPT
))) != NULL
) {
282 pt
->fow
= grptb
[indx
];
286 paxwarn(1, "Group selection table out of memory");
292 * check if this files gid matches a selected gid.
294 * 0 if this archive member should be processed, 1 if it should be skipped
298 grp_match(ARCHD
*arcn
)
303 * hash and look for it in the table
305 pt
= grptb
[((unsigned)arcn
->sb
.st_gid
) % GRP_TB_SZ
];
307 if (pt
->gid
== arcn
->sb
.st_gid
)
319 * Time range selection routines
321 * Routines to handle user selection of files based on the modification and/or
322 * inode change time falling within a specified time range (the non-standard
323 * -T flag). The user may specify any number of different file time ranges.
324 * Time ranges are checked one at a time until a match is found (if at all).
325 * If the file has a mtime (and/or ctime) which lies within one of the time
326 * ranges, the file is selected. Time ranges may have a lower and/or a upper
327 * value. These ranges are inclusive. When no time ranges are supplied to pax
328 * with the -T option, all members in the archive will be selected by the time
329 * range routines. When only a lower range is supplied, only files with a
330 * mtime (and/or ctime) equal to or younger are selected. When only a upper
331 * range is supplied, only files with a mtime (and/or ctime) equal to or older
332 * are selected. When the lower time range is equal to the upper time range,
333 * only files with a mtime (or ctime) of exactly that time are selected.
338 * add a time range match to the time range list.
339 * This is a non-standard pax option. Lower and upper ranges are in the
340 * format: [[[[[cc]yy]mm]dd]HH]MM[.SS] and are comma separated.
341 * Time ranges are based on current time, so 1234 would specify a time of
344 * 0 if the time range was added to the list, -1 otherwise
357 * throw out the badly formed time ranges
359 if ((str
== NULL
) || (*str
== '\0')) {
360 paxwarn(1, "Empty time range string");
365 * locate optional flags suffix /{cm}.
367 if ((flgpt
= strrchr(str
, '/')) != NULL
)
370 for (stpt
= str
; *stpt
!= '\0'; ++stpt
) {
371 if ((*stpt
>= '0') && (*stpt
<= '9'))
373 if ((*stpt
== ',') && (up_pt
== NULL
)) {
381 * allow only one dot per range (secs)
383 if ((*stpt
== '.') && (!dot
)) {
387 paxwarn(1, "Improperly specified time range: %s", str
);
392 * allocate space for the time range and store the limits
394 if ((pt
= malloc(sizeof(TIME_RNG
))) == NULL
) {
395 paxwarn(1, "Unable to allocate memory for time range");
400 * by default we only will check file mtime, but user can specify
401 * mtime, ctime (inode change time) or both.
403 if ((flgpt
== NULL
) || (*flgpt
== '\0'))
407 while (*flgpt
!= '\0') {
418 paxwarn(1, "Bad option %c with time range %s",
428 * start off with the current time
430 pt
->low_time
= pt
->high_time
= time(NULL
);
435 if (str_sec(str
, &(pt
->low_time
)) < 0) {
436 paxwarn(1, "Illegal lower time range %s", str
);
443 if ((up_pt
!= NULL
) && (*up_pt
!= '\0')) {
447 if (str_sec(up_pt
, &(pt
->high_time
)) < 0) {
448 paxwarn(1, "Illegal upper time range %s", up_pt
);
455 * check that the upper and lower do not overlap
457 if (pt
->flgs
& HASLOW
) {
458 if (pt
->low_time
> pt
->high_time
) {
459 paxwarn(1, "Upper %s and lower %s time overlap",
468 if (trhead
== NULL
) {
469 trtail
= trhead
= pt
;
477 paxwarn(1, "Time range format is: [[[[[cc]yy]mm]dd]HH]MM[.SS][/[c][m]]");
483 * check if this files mtime/ctime falls within any supplied time range.
485 * 0 if this archive member should be processed, 1 if it should be skipped
489 trng_match(ARCHD
*arcn
)
494 * have to search down the list one at a time looking for a match.
495 * remember time range limits are inclusive.
499 switch (pt
->flgs
& CMPBOTH
) {
502 * user wants both mtime and ctime checked for this
505 if (((pt
->flgs
& HASLOW
) &&
506 (arcn
->sb
.st_mtime
< pt
->low_time
) &&
507 (arcn
->sb
.st_ctime
< pt
->low_time
)) ||
508 ((pt
->flgs
& HASHIGH
) &&
509 (arcn
->sb
.st_mtime
> pt
->high_time
) &&
510 (arcn
->sb
.st_ctime
> pt
->high_time
))) {
517 * user wants only ctime checked for this time range
519 if (((pt
->flgs
& HASLOW
) &&
520 (arcn
->sb
.st_ctime
< pt
->low_time
)) ||
521 ((pt
->flgs
& HASHIGH
) &&
522 (arcn
->sb
.st_ctime
> pt
->high_time
))) {
530 * user wants only mtime checked for this time range
532 if (((pt
->flgs
& HASLOW
) &&
533 (arcn
->sb
.st_mtime
< pt
->low_time
)) ||
534 ((pt
->flgs
& HASHIGH
) &&
535 (arcn
->sb
.st_mtime
> pt
->high_time
))) {
551 * Convert a time string in the format of [[[[[cc]yy]mm]dd]HH]MM[.SS] to
552 * seconds UTC. Tval already has current time loaded into it at entry.
554 * 0 if converted ok, -1 otherwise
558 str_sec(const char *p
, time_t *tval
)
569 for (t
= p
, dot
= NULL
; *t
; ++t
) {
570 if (isdigit((unsigned char)*t
))
572 if (*t
== '.' && dot
== NULL
) {
579 lt
= localtime(tval
);
581 if (dot
!= NULL
) { /* .SS */
582 if (strlen(++dot
) != 2)
584 lt
->tm_sec
= ATOI2(dot
);
594 lt
->tm_year
= (bigyear
* 100) - 1900;
599 lt
->tm_year
+= ATOI2(p
);
601 lt
->tm_year
= ATOI2(p
);
602 if (lt
->tm_year
< 69) /* hack for 2000 ;-} */
603 lt
->tm_year
+= (2000 - 1900);
607 lt
->tm_mon
= ATOI2(p
);
608 if ((lt
->tm_mon
> 12) || !lt
->tm_mon
)
610 --lt
->tm_mon
; /* time struct is 0 - 11 */
613 lt
->tm_mday
= ATOI2(p
);
614 if ((lt
->tm_mday
> 31) || !lt
->tm_mday
)
618 lt
->tm_hour
= ATOI2(p
);
619 if (lt
->tm_hour
> 23)
623 lt
->tm_min
= ATOI2(p
);
631 /* convert broken-down time to UTC clock time seconds */
632 if ((*tval
= mktime(lt
)) == -1)