2012-10-22 16:10:38 +02:00
|
|
|
/* $NetBSD: sel_subs.c,v 1.24 2011/08/31 16:24:54 plunky Exp $ */
|
|
|
|
|
2006-01-20 15:45:27 +01:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1992 Keith Muller.
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Keith Muller of the University of California, San Diego.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2012-10-22 16:10:38 +02:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
2006-01-20 15:45:27 +01:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2012-10-22 16:10:38 +02:00
|
|
|
#if HAVE_NBTOOL_CONFIG_H
|
|
|
|
#include "nbtool_config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#if !defined(lint)
|
2006-01-20 15:45:27 +01:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)sel_subs.c 8.1 (Berkeley) 5/31/93";
|
2012-10-22 16:10:38 +02:00
|
|
|
#else
|
|
|
|
__RCSID("$NetBSD: sel_subs.c,v 1.24 2011/08/31 16:24:54 plunky Exp $");
|
2006-01-20 15:45:27 +01:00
|
|
|
#endif
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/stat.h>
|
2012-10-22 16:10:38 +02:00
|
|
|
#include <sys/param.h>
|
|
|
|
|
2006-01-20 15:45:27 +01:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <stdio.h>
|
2012-10-22 16:10:38 +02:00
|
|
|
#include <ctype.h>
|
2006-01-20 15:45:27 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
2012-10-22 16:10:38 +02:00
|
|
|
#include <time.h>
|
2006-01-20 15:45:27 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2012-10-22 16:10:38 +02:00
|
|
|
#include <tzfile.h>
|
|
|
|
|
2006-01-20 15:45:27 +01:00
|
|
|
#include "pax.h"
|
|
|
|
#include "sel_subs.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
2012-10-22 16:10:38 +02:00
|
|
|
static int str_sec(const char *, time_t *);
|
2006-01-20 15:45:27 +01:00
|
|
|
static int usr_match(ARCHD *);
|
|
|
|
static int grp_match(ARCHD *);
|
|
|
|
static int trng_match(ARCHD *);
|
|
|
|
|
|
|
|
static TIME_RNG *trhead = NULL; /* time range list head */
|
|
|
|
static TIME_RNG *trtail = NULL; /* time range list tail */
|
|
|
|
static USRT **usrtb = NULL; /* user selection table */
|
|
|
|
static GRPT **grptb = NULL; /* group selection table */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Routines for selection of archive members
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sel_chk()
|
|
|
|
* check if this file matches a specified uid, gid or time range
|
|
|
|
* Return:
|
|
|
|
* 0 if this archive member should be processed, 1 if it should be skipped
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
sel_chk(ARCHD *arcn)
|
|
|
|
{
|
|
|
|
if (((usrtb != NULL) && usr_match(arcn)) ||
|
|
|
|
((grptb != NULL) && grp_match(arcn)) ||
|
|
|
|
((trhead != NULL) && trng_match(arcn)))
|
2012-10-22 16:10:38 +02:00
|
|
|
return 1;
|
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* User/group selection routines
|
|
|
|
*
|
|
|
|
* Routines to handle user selection of files based on the file uid/gid. To
|
2012-10-22 16:10:38 +02:00
|
|
|
* add an entry, the user supplies either the name or the uid/gid starting with
|
2006-01-20 15:45:27 +01:00
|
|
|
* a # on the command line. A \# will escape the #.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* usr_add()
|
|
|
|
* add a user match to the user match hash table
|
|
|
|
* Return:
|
|
|
|
* 0 if added ok, -1 otherwise;
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
usr_add(char *str)
|
|
|
|
{
|
|
|
|
u_int indx;
|
|
|
|
USRT *pt;
|
|
|
|
struct passwd *pw;
|
|
|
|
uid_t uid;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* create the table if it doesn't exist
|
|
|
|
*/
|
|
|
|
if ((str == NULL) || (*str == '\0'))
|
2012-10-22 16:10:38 +02:00
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
if ((usrtb == NULL) &&
|
2012-10-22 16:10:38 +02:00
|
|
|
((usrtb = (USRT **)calloc(USR_TB_SZ, sizeof(USRT *))) == NULL)) {
|
|
|
|
tty_warn(1,
|
|
|
|
"Unable to allocate memory for user selection table");
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* figure out user spec
|
|
|
|
*/
|
|
|
|
if (str[0] != '#') {
|
|
|
|
/*
|
|
|
|
* it is a user name, \# escapes # as first char in user name
|
|
|
|
*/
|
|
|
|
if ((str[0] == '\\') && (str[1] == '#'))
|
|
|
|
++str;
|
|
|
|
if ((pw = getpwnam(str)) == NULL) {
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1, "Unable to find uid for user: %s", str);
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
uid = (uid_t)pw->pw_uid;
|
|
|
|
} else
|
|
|
|
uid = (uid_t)strtoul(str+1, NULL, 10);
|
|
|
|
endpwent();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hash it and go down the hash chain (if any) looking for it
|
|
|
|
*/
|
|
|
|
indx = ((unsigned)uid) % USR_TB_SZ;
|
|
|
|
if ((pt = usrtb[indx]) != NULL) {
|
|
|
|
while (pt != NULL) {
|
|
|
|
if (pt->uid == uid)
|
2012-10-22 16:10:38 +02:00
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
pt = pt->fow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uid is not yet in the table, add it to the front of the chain
|
|
|
|
*/
|
|
|
|
if ((pt = (USRT *)malloc(sizeof(USRT))) != NULL) {
|
|
|
|
pt->uid = uid;
|
|
|
|
pt->fow = usrtb[indx];
|
|
|
|
usrtb[indx] = pt;
|
2012-10-22 16:10:38 +02:00
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1, "User selection table out of memory");
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* usr_match()
|
|
|
|
* check if this files uid matches a selected uid.
|
|
|
|
* Return:
|
|
|
|
* 0 if this archive member should be processed, 1 if it should be skipped
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
usr_match(ARCHD *arcn)
|
|
|
|
{
|
|
|
|
USRT *pt;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hash and look for it in the table
|
|
|
|
*/
|
|
|
|
pt = usrtb[((unsigned)arcn->sb.st_uid) % USR_TB_SZ];
|
|
|
|
while (pt != NULL) {
|
|
|
|
if (pt->uid == arcn->sb.st_uid)
|
2012-10-22 16:10:38 +02:00
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
pt = pt->fow;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* not found
|
|
|
|
*/
|
2012-10-22 16:10:38 +02:00
|
|
|
return 1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* grp_add()
|
|
|
|
* add a group match to the group match hash table
|
|
|
|
* Return:
|
|
|
|
* 0 if added ok, -1 otherwise;
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
grp_add(char *str)
|
|
|
|
{
|
|
|
|
u_int indx;
|
|
|
|
GRPT *pt;
|
|
|
|
struct group *gr;
|
|
|
|
gid_t gid;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* create the table if it doesn't exist
|
|
|
|
*/
|
|
|
|
if ((str == NULL) || (*str == '\0'))
|
2012-10-22 16:10:38 +02:00
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
if ((grptb == NULL) &&
|
2012-10-22 16:10:38 +02:00
|
|
|
((grptb = (GRPT **)calloc(GRP_TB_SZ, sizeof(GRPT *))) == NULL)) {
|
|
|
|
tty_warn(1,
|
|
|
|
"Unable to allocate memory fo group selection table");
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* figure out user spec
|
|
|
|
*/
|
|
|
|
if (str[0] != '#') {
|
|
|
|
/*
|
|
|
|
* it is a group name, \# escapes # as first char in group name
|
|
|
|
*/
|
|
|
|
if ((str[0] == '\\') && (str[1] == '#'))
|
|
|
|
++str;
|
|
|
|
if ((gr = getgrnam(str)) == NULL) {
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1,
|
|
|
|
"Cannot determine gid for group name: %s", str);
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
2012-10-22 16:10:38 +02:00
|
|
|
gid = (gid_t)gr->gr_gid;
|
2006-01-20 15:45:27 +01:00
|
|
|
} else
|
|
|
|
gid = (gid_t)strtoul(str+1, NULL, 10);
|
|
|
|
endgrent();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hash it and go down the hash chain (if any) looking for it
|
|
|
|
*/
|
|
|
|
indx = ((unsigned)gid) % GRP_TB_SZ;
|
|
|
|
if ((pt = grptb[indx]) != NULL) {
|
|
|
|
while (pt != NULL) {
|
|
|
|
if (pt->gid == gid)
|
2012-10-22 16:10:38 +02:00
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
pt = pt->fow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* gid not in the table, add it to the front of the chain
|
|
|
|
*/
|
|
|
|
if ((pt = (GRPT *)malloc(sizeof(GRPT))) != NULL) {
|
|
|
|
pt->gid = gid;
|
|
|
|
pt->fow = grptb[indx];
|
|
|
|
grptb[indx] = pt;
|
2012-10-22 16:10:38 +02:00
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1, "Group selection table out of memory");
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* grp_match()
|
|
|
|
* check if this files gid matches a selected gid.
|
|
|
|
* Return:
|
|
|
|
* 0 if this archive member should be processed, 1 if it should be skipped
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
grp_match(ARCHD *arcn)
|
|
|
|
{
|
|
|
|
GRPT *pt;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hash and look for it in the table
|
|
|
|
*/
|
|
|
|
pt = grptb[((unsigned)arcn->sb.st_gid) % GRP_TB_SZ];
|
|
|
|
while (pt != NULL) {
|
|
|
|
if (pt->gid == arcn->sb.st_gid)
|
2012-10-22 16:10:38 +02:00
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
pt = pt->fow;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* not found
|
|
|
|
*/
|
2012-10-22 16:10:38 +02:00
|
|
|
return 1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Time range selection routines
|
|
|
|
*
|
|
|
|
* Routines to handle user selection of files based on the modification and/or
|
|
|
|
* inode change time falling within a specified time range (the non-standard
|
|
|
|
* -T flag). The user may specify any number of different file time ranges.
|
|
|
|
* Time ranges are checked one at a time until a match is found (if at all).
|
|
|
|
* If the file has a mtime (and/or ctime) which lies within one of the time
|
2012-10-22 16:10:38 +02:00
|
|
|
* ranges, the file is selected. Time ranges may have a lower and/or a upper
|
2006-01-20 15:45:27 +01:00
|
|
|
* value. These ranges are inclusive. When no time ranges are supplied to pax
|
|
|
|
* with the -T option, all members in the archive will be selected by the time
|
|
|
|
* range routines. When only a lower range is supplied, only files with a
|
2012-10-22 16:10:38 +02:00
|
|
|
* mtime (and/or ctime) equal to or younger are selected. When only a upper
|
2006-01-20 15:45:27 +01:00
|
|
|
* range is supplied, only files with a mtime (and/or ctime) equal to or older
|
|
|
|
* are selected. When the lower time range is equal to the upper time range,
|
|
|
|
* only files with a mtime (or ctime) of exactly that time are selected.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* trng_add()
|
|
|
|
* add a time range match to the time range list.
|
|
|
|
* This is a non-standard pax option. Lower and upper ranges are in the
|
|
|
|
* format: [yy[mm[dd[hh]]]]mm[.ss] and are comma separated.
|
|
|
|
* Time ranges are based on current time, so 1234 would specify a time of
|
|
|
|
* 12:34 today.
|
|
|
|
* Return:
|
|
|
|
* 0 if the time range was added to the list, -1 otherwise
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
trng_add(char *str)
|
|
|
|
{
|
|
|
|
TIME_RNG *pt;
|
|
|
|
char *up_pt = NULL;
|
|
|
|
char *stpt;
|
|
|
|
char *flgpt;
|
|
|
|
int dot = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* throw out the badly formed time ranges
|
|
|
|
*/
|
|
|
|
if ((str == NULL) || (*str == '\0')) {
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1, "Empty time range string");
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* locate optional flags suffix /{cm}.
|
|
|
|
*/
|
|
|
|
if ((flgpt = strrchr(str, '/')) != NULL)
|
|
|
|
*flgpt++ = '\0';
|
|
|
|
|
|
|
|
for (stpt = str; *stpt != '\0'; ++stpt) {
|
|
|
|
if ((*stpt >= '0') && (*stpt <= '9'))
|
|
|
|
continue;
|
|
|
|
if ((*stpt == ',') && (up_pt == NULL)) {
|
|
|
|
*stpt = '\0';
|
|
|
|
up_pt = stpt + 1;
|
|
|
|
dot = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* allow only one dot per range (secs)
|
|
|
|
*/
|
|
|
|
if ((*stpt == '.') && (!dot)) {
|
|
|
|
++dot;
|
|
|
|
continue;
|
|
|
|
}
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1, "Improperly specified time range: %s", str);
|
2006-01-20 15:45:27 +01:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* allocate space for the time range and store the limits
|
|
|
|
*/
|
2012-10-22 16:10:38 +02:00
|
|
|
if ((pt = malloc(sizeof(TIME_RNG))) == NULL) {
|
|
|
|
tty_warn(1, "Unable to allocate memory for time range");
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-10-22 16:10:38 +02:00
|
|
|
* by default we only will check file mtime, but user can specify
|
2006-01-20 15:45:27 +01:00
|
|
|
* mtime, ctime (inode change time) or both.
|
|
|
|
*/
|
|
|
|
if ((flgpt == NULL) || (*flgpt == '\0'))
|
|
|
|
pt->flgs = CMPMTME;
|
|
|
|
else {
|
|
|
|
pt->flgs = 0;
|
|
|
|
while (*flgpt != '\0') {
|
|
|
|
switch(*flgpt) {
|
|
|
|
case 'M':
|
|
|
|
case 'm':
|
|
|
|
pt->flgs |= CMPMTME;
|
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
case 'c':
|
|
|
|
pt->flgs |= CMPCTME;
|
|
|
|
break;
|
|
|
|
default:
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1, "Bad option %c with time range %s",
|
2006-01-20 15:45:27 +01:00
|
|
|
*flgpt, str);
|
2012-10-22 16:10:38 +02:00
|
|
|
free(pt);
|
2006-01-20 15:45:27 +01:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
++flgpt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* start off with the current time
|
|
|
|
*/
|
|
|
|
pt->low_time = pt->high_time = time(NULL);
|
|
|
|
if (*str != '\0') {
|
|
|
|
/*
|
|
|
|
* add lower limit
|
|
|
|
*/
|
|
|
|
if (str_sec(str, &(pt->low_time)) < 0) {
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1, "Illegal lower time range %s", str);
|
|
|
|
free(pt);
|
2006-01-20 15:45:27 +01:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
pt->flgs |= HASLOW;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((up_pt != NULL) && (*up_pt != '\0')) {
|
|
|
|
/*
|
|
|
|
* add upper limit
|
|
|
|
*/
|
|
|
|
if (str_sec(up_pt, &(pt->high_time)) < 0) {
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1, "Illegal upper time range %s", up_pt);
|
|
|
|
free(pt);
|
2006-01-20 15:45:27 +01:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
pt->flgs |= HASHIGH;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check that the upper and lower do not overlap
|
|
|
|
*/
|
|
|
|
if (pt->flgs & HASLOW) {
|
|
|
|
if (pt->low_time > pt->high_time) {
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1,
|
|
|
|
"Upper %s and lower %s time overlap",
|
|
|
|
up_pt, str);
|
|
|
|
free(pt);
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pt->fow = NULL;
|
|
|
|
if (trhead == NULL) {
|
|
|
|
trtail = trhead = pt;
|
2012-10-22 16:10:38 +02:00
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
trtail->fow = pt;
|
|
|
|
trtail = pt;
|
2012-10-22 16:10:38 +02:00
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
|
|
|
|
out:
|
2012-10-22 16:10:38 +02:00
|
|
|
tty_warn(1, "Time range format is: [yy[mm[dd[hh]]]]mm[.ss][/[c][m]]");
|
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* trng_match()
|
|
|
|
* check if this files mtime/ctime falls within any supplied time range.
|
|
|
|
* Return:
|
|
|
|
* 0 if this archive member should be processed, 1 if it should be skipped
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
trng_match(ARCHD *arcn)
|
|
|
|
{
|
|
|
|
TIME_RNG *pt;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* have to search down the list one at a time looking for a match.
|
|
|
|
* remember time range limits are inclusive.
|
|
|
|
*/
|
|
|
|
pt = trhead;
|
|
|
|
while (pt != NULL) {
|
|
|
|
switch(pt->flgs & CMPBOTH) {
|
|
|
|
case CMPBOTH:
|
|
|
|
/*
|
|
|
|
* user wants both mtime and ctime checked for this
|
|
|
|
* time range
|
|
|
|
*/
|
|
|
|
if (((pt->flgs & HASLOW) &&
|
|
|
|
(arcn->sb.st_mtime < pt->low_time) &&
|
|
|
|
(arcn->sb.st_ctime < pt->low_time)) ||
|
|
|
|
((pt->flgs & HASHIGH) &&
|
|
|
|
(arcn->sb.st_mtime > pt->high_time) &&
|
|
|
|
(arcn->sb.st_ctime > pt->high_time))) {
|
|
|
|
pt = pt->fow;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CMPCTME:
|
|
|
|
/*
|
|
|
|
* user wants only ctime checked for this time range
|
|
|
|
*/
|
|
|
|
if (((pt->flgs & HASLOW) &&
|
|
|
|
(arcn->sb.st_ctime < pt->low_time)) ||
|
|
|
|
((pt->flgs & HASHIGH) &&
|
|
|
|
(arcn->sb.st_ctime > pt->high_time))) {
|
|
|
|
pt = pt->fow;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CMPMTME:
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* user wants only mtime checked for this time range
|
|
|
|
*/
|
|
|
|
if (((pt->flgs & HASLOW) &&
|
|
|
|
(arcn->sb.st_mtime < pt->low_time)) ||
|
|
|
|
((pt->flgs & HASHIGH) &&
|
|
|
|
(arcn->sb.st_mtime > pt->high_time))) {
|
|
|
|
pt = pt->fow;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pt == NULL)
|
2012-10-22 16:10:38 +02:00
|
|
|
return 1;
|
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* str_sec()
|
|
|
|
* Convert a time string in the format of [yy[mm[dd[hh]]]]mm[.ss] to gmt
|
|
|
|
* seconds. Tval already has current time loaded into it at entry.
|
|
|
|
* Return:
|
|
|
|
* 0 if converted ok, -1 otherwise
|
|
|
|
*/
|
|
|
|
|
2012-10-22 16:10:38 +02:00
|
|
|
#define ATOI2(s) ((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0'))
|
|
|
|
|
2006-01-20 15:45:27 +01:00
|
|
|
static int
|
2012-10-22 16:10:38 +02:00
|
|
|
str_sec(const char *p, time_t *tval)
|
2006-01-20 15:45:27 +01:00
|
|
|
{
|
|
|
|
struct tm *lt;
|
2012-10-22 16:10:38 +02:00
|
|
|
const char *dot, *t;
|
|
|
|
int yearset, len;
|
|
|
|
|
|
|
|
for (t = p, dot = NULL; *t; ++t) {
|
|
|
|
if (isdigit((unsigned char)*t))
|
|
|
|
continue;
|
|
|
|
if (*t == '.' && dot == NULL) {
|
|
|
|
dot = t;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2006-01-20 15:45:27 +01:00
|
|
|
|
|
|
|
lt = localtime(tval);
|
2012-10-22 16:10:38 +02:00
|
|
|
|
|
|
|
if (dot != NULL) {
|
|
|
|
len = strlen(dot);
|
|
|
|
if (len != 3)
|
|
|
|
return -1;
|
|
|
|
++dot;
|
|
|
|
lt->tm_sec = ATOI2(dot);
|
|
|
|
} else {
|
|
|
|
len = 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
lt->tm_sec = 0;
|
2012-10-22 16:10:38 +02:00
|
|
|
}
|
2006-01-20 15:45:27 +01:00
|
|
|
|
2012-10-22 16:10:38 +02:00
|
|
|
yearset = 0;
|
|
|
|
switch (strlen(p) - len) {
|
|
|
|
case 12:
|
|
|
|
lt->tm_year = ATOI2(p) * 100 - TM_YEAR_BASE;
|
|
|
|
yearset = 1;
|
|
|
|
/* FALLTHROUGH */
|
2006-01-20 15:45:27 +01:00
|
|
|
case 10:
|
2012-10-22 16:10:38 +02:00
|
|
|
if (yearset) {
|
|
|
|
lt->tm_year += ATOI2(p);
|
|
|
|
} else {
|
|
|
|
yearset = ATOI2(p);
|
|
|
|
if (yearset < 69)
|
|
|
|
lt->tm_year = yearset + 2000 - TM_YEAR_BASE;
|
|
|
|
else
|
|
|
|
lt->tm_year = yearset + 1900 - TM_YEAR_BASE;
|
|
|
|
}
|
2006-01-20 15:45:27 +01:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 8:
|
2012-10-22 16:10:38 +02:00
|
|
|
lt->tm_mon = ATOI2(p);
|
2006-01-20 15:45:27 +01:00
|
|
|
--lt->tm_mon;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 6:
|
2012-10-22 16:10:38 +02:00
|
|
|
lt->tm_mday = ATOI2(p);
|
2006-01-20 15:45:27 +01:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 4:
|
2012-10-22 16:10:38 +02:00
|
|
|
lt->tm_hour = ATOI2(p);
|
2006-01-20 15:45:27 +01:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 2:
|
2012-10-22 16:10:38 +02:00
|
|
|
lt->tm_min = ATOI2(p);
|
2006-01-20 15:45:27 +01:00
|
|
|
break;
|
|
|
|
default:
|
2012-10-22 16:10:38 +02:00
|
|
|
return -1;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|
2012-10-22 16:10:38 +02:00
|
|
|
|
2006-01-20 15:45:27 +01:00
|
|
|
/*
|
|
|
|
* convert broken-down time to GMT clock time seconds
|
|
|
|
*/
|
|
|
|
if ((*tval = mktime(lt)) == -1)
|
2012-10-22 16:10:38 +02:00
|
|
|
return -1;
|
|
|
|
return 0;
|
2006-01-20 15:45:27 +01:00
|
|
|
}
|