sel_subs.c revision 1.18 1 1.18 agc /* $NetBSD: sel_subs.c,v 1.18 2003/10/13 07:41:22 agc Exp $ */
2 1.5 cgd
3 1.1 jtc /*-
4 1.18 agc * Copyright (c) 1992 Keith Muller.
5 1.1 jtc * Copyright (c) 1992, 1993
6 1.1 jtc * The Regents of the University of California. All rights reserved.
7 1.1 jtc *
8 1.1 jtc * This code is derived from software contributed to Berkeley by
9 1.1 jtc * Keith Muller of the University of California, San Diego.
10 1.1 jtc *
11 1.1 jtc * Redistribution and use in source and binary forms, with or without
12 1.1 jtc * modification, are permitted provided that the following conditions
13 1.1 jtc * are met:
14 1.1 jtc * 1. Redistributions of source code must retain the above copyright
15 1.1 jtc * notice, this list of conditions and the following disclaimer.
16 1.1 jtc * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 jtc * notice, this list of conditions and the following disclaimer in the
18 1.1 jtc * documentation and/or other materials provided with the distribution.
19 1.17 agc * 3. Neither the name of the University nor the names of its contributors
20 1.17 agc * may be used to endorse or promote products derived from this software
21 1.17 agc * without specific prior written permission.
22 1.17 agc *
23 1.17 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.17 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.17 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.17 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.17 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.17 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.17 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.17 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.17 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.17 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.17 agc * SUCH DAMAGE.
34 1.17 agc */
35 1.17 agc
36 1.7 christos #include <sys/cdefs.h>
37 1.15 tv #if defined(__RCSID) && !defined(lint)
38 1.5 cgd #if 0
39 1.5 cgd static char sccsid[] = "@(#)sel_subs.c 8.1 (Berkeley) 5/31/93";
40 1.5 cgd #else
41 1.18 agc __RCSID("$NetBSD: sel_subs.c,v 1.18 2003/10/13 07:41:22 agc Exp $");
42 1.5 cgd #endif
43 1.1 jtc #endif /* not lint */
44 1.1 jtc
45 1.1 jtc #include <sys/types.h>
46 1.1 jtc #include <sys/time.h>
47 1.1 jtc #include <sys/stat.h>
48 1.1 jtc #include <sys/param.h>
49 1.8 mycroft
50 1.1 jtc #include <pwd.h>
51 1.1 jtc #include <grp.h>
52 1.1 jtc #include <stdio.h>
53 1.1 jtc #include <ctype.h>
54 1.1 jtc #include <string.h>
55 1.1 jtc #include <strings.h>
56 1.9 kleink #include <time.h>
57 1.1 jtc #include <unistd.h>
58 1.1 jtc #include <stdlib.h>
59 1.8 mycroft #include <tzfile.h>
60 1.8 mycroft
61 1.1 jtc #include "pax.h"
62 1.1 jtc #include "sel_subs.h"
63 1.1 jtc #include "extern.h"
64 1.1 jtc
65 1.13 lukem static int str_sec(const char *, time_t *);
66 1.13 lukem static int usr_match(ARCHD *);
67 1.13 lukem static int grp_match(ARCHD *);
68 1.13 lukem static int trng_match(ARCHD *);
69 1.1 jtc
70 1.1 jtc static TIME_RNG *trhead = NULL; /* time range list head */
71 1.1 jtc static TIME_RNG *trtail = NULL; /* time range list tail */
72 1.1 jtc static USRT **usrtb = NULL; /* user selection table */
73 1.1 jtc static GRPT **grptb = NULL; /* group selection table */
74 1.1 jtc
75 1.1 jtc /*
76 1.1 jtc * Routines for selection of archive members
77 1.1 jtc */
78 1.1 jtc
79 1.1 jtc /*
80 1.1 jtc * sel_chk()
81 1.1 jtc * check if this file matches a specfied uid, gid or time range
82 1.1 jtc * Return:
83 1.1 jtc * 0 if this archive member should be processed, 1 if it should be skipped
84 1.1 jtc */
85 1.1 jtc
86 1.1 jtc int
87 1.6 tls sel_chk(ARCHD *arcn)
88 1.1 jtc {
89 1.1 jtc if (((usrtb != NULL) && usr_match(arcn)) ||
90 1.1 jtc ((grptb != NULL) && grp_match(arcn)) ||
91 1.1 jtc ((trhead != NULL) && trng_match(arcn)))
92 1.1 jtc return(1);
93 1.1 jtc return(0);
94 1.1 jtc }
95 1.1 jtc
96 1.1 jtc /*
97 1.1 jtc * User/group selection routines
98 1.1 jtc *
99 1.1 jtc * Routines to handle user selection of files based on the file uid/gid. To
100 1.14 wiz * add an entry, the user supplies either the name or the uid/gid starting with
101 1.14 wiz * a # on the command line. A \# will escape the #.
102 1.1 jtc */
103 1.1 jtc
104 1.1 jtc /*
105 1.1 jtc * usr_add()
106 1.1 jtc * add a user match to the user match hash table
107 1.1 jtc * Return:
108 1.1 jtc * 0 if added ok, -1 otherwise;
109 1.1 jtc */
110 1.1 jtc
111 1.1 jtc int
112 1.6 tls usr_add(char *str)
113 1.1 jtc {
114 1.6 tls u_int indx;
115 1.6 tls USRT *pt;
116 1.6 tls struct passwd *pw;
117 1.6 tls uid_t uid;
118 1.1 jtc
119 1.1 jtc /*
120 1.1 jtc * create the table if it doesn't exist
121 1.1 jtc */
122 1.1 jtc if ((str == NULL) || (*str == '\0'))
123 1.1 jtc return(-1);
124 1.1 jtc if ((usrtb == NULL) &&
125 1.12 itohy ((usrtb = (USRT **)calloc(USR_TB_SZ, sizeof(USRT *))) == NULL)) {
126 1.12 itohy tty_warn(1,
127 1.7 christos "Unable to allocate memory for user selection table");
128 1.12 itohy return(-1);
129 1.1 jtc }
130 1.1 jtc
131 1.1 jtc /*
132 1.1 jtc * figure out user spec
133 1.1 jtc */
134 1.1 jtc if (str[0] != '#') {
135 1.1 jtc /*
136 1.1 jtc * it is a user name, \# escapes # as first char in user name
137 1.1 jtc */
138 1.1 jtc if ((str[0] == '\\') && (str[1] == '#'))
139 1.1 jtc ++str;
140 1.1 jtc if ((pw = getpwnam(str)) == NULL) {
141 1.12 itohy tty_warn(1, "Unable to find uid for user: %s", str);
142 1.12 itohy return(-1);
143 1.1 jtc }
144 1.1 jtc uid = (uid_t)pw->pw_uid;
145 1.12 itohy } else
146 1.1 jtc uid = (uid_t)strtoul(str+1, (char **)NULL, 10);
147 1.1 jtc endpwent();
148 1.1 jtc
149 1.1 jtc /*
150 1.1 jtc * hash it and go down the hash chain (if any) looking for it
151 1.1 jtc */
152 1.1 jtc indx = ((unsigned)uid) % USR_TB_SZ;
153 1.1 jtc if ((pt = usrtb[indx]) != NULL) {
154 1.12 itohy while (pt != NULL) {
155 1.12 itohy if (pt->uid == uid)
156 1.1 jtc return(0);
157 1.12 itohy pt = pt->fow;
158 1.12 itohy }
159 1.1 jtc }
160 1.1 jtc
161 1.1 jtc /*
162 1.1 jtc * uid is not yet in the table, add it to the front of the chain
163 1.1 jtc */
164 1.1 jtc if ((pt = (USRT *)malloc(sizeof(USRT))) != NULL) {
165 1.1 jtc pt->uid = uid;
166 1.1 jtc pt->fow = usrtb[indx];
167 1.1 jtc usrtb[indx] = pt;
168 1.1 jtc return(0);
169 1.1 jtc }
170 1.12 itohy tty_warn(1, "User selection table out of memory");
171 1.12 itohy return(-1);
172 1.1 jtc }
173 1.1 jtc
174 1.1 jtc /*
175 1.1 jtc * usr_match()
176 1.1 jtc * check if this files uid matches a selected uid.
177 1.1 jtc * Return:
178 1.1 jtc * 0 if this archive member should be processed, 1 if it should be skipped
179 1.1 jtc */
180 1.1 jtc
181 1.1 jtc static int
182 1.6 tls usr_match(ARCHD *arcn)
183 1.1 jtc {
184 1.6 tls USRT *pt;
185 1.1 jtc
186 1.1 jtc /*
187 1.1 jtc * hash and look for it in the table
188 1.1 jtc */
189 1.1 jtc pt = usrtb[((unsigned)arcn->sb.st_uid) % USR_TB_SZ];
190 1.1 jtc while (pt != NULL) {
191 1.1 jtc if (pt->uid == arcn->sb.st_uid)
192 1.1 jtc return(0);
193 1.1 jtc pt = pt->fow;
194 1.1 jtc }
195 1.1 jtc
196 1.1 jtc /*
197 1.1 jtc * not found
198 1.1 jtc */
199 1.1 jtc return(1);
200 1.1 jtc }
201 1.1 jtc
202 1.1 jtc /*
203 1.1 jtc * grp_add()
204 1.1 jtc * add a group match to the group match hash table
205 1.1 jtc * Return:
206 1.1 jtc * 0 if added ok, -1 otherwise;
207 1.1 jtc */
208 1.1 jtc
209 1.1 jtc int
210 1.6 tls grp_add(char *str)
211 1.1 jtc {
212 1.6 tls u_int indx;
213 1.6 tls GRPT *pt;
214 1.6 tls struct group *gr;
215 1.6 tls gid_t gid;
216 1.1 jtc
217 1.1 jtc /*
218 1.1 jtc * create the table if it doesn't exist
219 1.1 jtc */
220 1.1 jtc if ((str == NULL) || (*str == '\0'))
221 1.1 jtc return(-1);
222 1.1 jtc if ((grptb == NULL) &&
223 1.12 itohy ((grptb = (GRPT **)calloc(GRP_TB_SZ, sizeof(GRPT *))) == NULL)) {
224 1.12 itohy tty_warn(1,
225 1.7 christos "Unable to allocate memory fo group selection table");
226 1.12 itohy return(-1);
227 1.1 jtc }
228 1.1 jtc
229 1.1 jtc /*
230 1.1 jtc * figure out user spec
231 1.1 jtc */
232 1.1 jtc if (str[0] != '#') {
233 1.1 jtc /*
234 1.1 jtc * it is a group name, \# escapes # as first char in group name
235 1.1 jtc */
236 1.1 jtc if ((str[0] == '\\') && (str[1] == '#'))
237 1.1 jtc ++str;
238 1.1 jtc if ((gr = getgrnam(str)) == NULL) {
239 1.12 itohy tty_warn(1,
240 1.7 christos "Cannot determine gid for group name: %s", str);
241 1.12 itohy return(-1);
242 1.1 jtc }
243 1.1 jtc gid = (gid_t)gr->gr_gid;
244 1.12 itohy } else
245 1.1 jtc gid = (gid_t)strtoul(str+1, (char **)NULL, 10);
246 1.1 jtc endgrent();
247 1.1 jtc
248 1.1 jtc /*
249 1.1 jtc * hash it and go down the hash chain (if any) looking for it
250 1.1 jtc */
251 1.1 jtc indx = ((unsigned)gid) % GRP_TB_SZ;
252 1.1 jtc if ((pt = grptb[indx]) != NULL) {
253 1.12 itohy while (pt != NULL) {
254 1.12 itohy if (pt->gid == gid)
255 1.1 jtc return(0);
256 1.12 itohy pt = pt->fow;
257 1.12 itohy }
258 1.1 jtc }
259 1.1 jtc
260 1.1 jtc /*
261 1.1 jtc * gid not in the table, add it to the front of the chain
262 1.1 jtc */
263 1.1 jtc if ((pt = (GRPT *)malloc(sizeof(GRPT))) != NULL) {
264 1.1 jtc pt->gid = gid;
265 1.1 jtc pt->fow = grptb[indx];
266 1.1 jtc grptb[indx] = pt;
267 1.1 jtc return(0);
268 1.1 jtc }
269 1.12 itohy tty_warn(1, "Group selection table out of memory");
270 1.12 itohy return(-1);
271 1.1 jtc }
272 1.1 jtc
273 1.1 jtc /*
274 1.1 jtc * grp_match()
275 1.1 jtc * check if this files gid matches a selected gid.
276 1.1 jtc * Return:
277 1.1 jtc * 0 if this archive member should be processed, 1 if it should be skipped
278 1.1 jtc */
279 1.1 jtc
280 1.1 jtc static int
281 1.6 tls grp_match(ARCHD *arcn)
282 1.1 jtc {
283 1.6 tls GRPT *pt;
284 1.1 jtc
285 1.1 jtc /*
286 1.1 jtc * hash and look for it in the table
287 1.1 jtc */
288 1.1 jtc pt = grptb[((unsigned)arcn->sb.st_gid) % GRP_TB_SZ];
289 1.1 jtc while (pt != NULL) {
290 1.1 jtc if (pt->gid == arcn->sb.st_gid)
291 1.1 jtc return(0);
292 1.1 jtc pt = pt->fow;
293 1.1 jtc }
294 1.1 jtc
295 1.1 jtc /*
296 1.1 jtc * not found
297 1.1 jtc */
298 1.1 jtc return(1);
299 1.1 jtc }
300 1.1 jtc
301 1.1 jtc /*
302 1.1 jtc * Time range selection routines
303 1.1 jtc *
304 1.1 jtc * Routines to handle user selection of files based on the modification and/or
305 1.1 jtc * inode change time falling within a specified time range (the non-standard
306 1.1 jtc * -T flag). The user may specify any number of different file time ranges.
307 1.1 jtc * Time ranges are checked one at a time until a match is found (if at all).
308 1.1 jtc * If the file has a mtime (and/or ctime) which lies within one of the time
309 1.1 jtc * ranges, the file is selected. Time ranges may have a lower and/or a upper
310 1.1 jtc * value. These ranges are inclusive. When no time ranges are supplied to pax
311 1.1 jtc * with the -T option, all members in the archive will be selected by the time
312 1.1 jtc * range routines. When only a lower range is supplied, only files with a
313 1.1 jtc * mtime (and/or ctime) equal to or younger are selected. When only a upper
314 1.1 jtc * range is supplied, only files with a mtime (and/or ctime) equal to or older
315 1.1 jtc * are selected. When the lower time range is equal to the upper time range,
316 1.1 jtc * only files with a mtime (or ctime) of exactly that time are selected.
317 1.1 jtc */
318 1.1 jtc
319 1.1 jtc /*
320 1.1 jtc * trng_add()
321 1.1 jtc * add a time range match to the time range list.
322 1.1 jtc * This is a non-standard pax option. Lower and upper ranges are in the
323 1.1 jtc * format: [yy[mm[dd[hh]]]]mm[.ss] and are comma separated.
324 1.1 jtc * Time ranges are based on current time, so 1234 would specify a time of
325 1.1 jtc * 12:34 today.
326 1.1 jtc * Return:
327 1.1 jtc * 0 if the time range was added to the list, -1 otherwise
328 1.1 jtc */
329 1.1 jtc
330 1.1 jtc int
331 1.6 tls trng_add(char *str)
332 1.1 jtc {
333 1.6 tls TIME_RNG *pt;
334 1.6 tls char *up_pt = NULL;
335 1.6 tls char *stpt;
336 1.6 tls char *flgpt;
337 1.6 tls int dot = 0;
338 1.1 jtc
339 1.1 jtc /*
340 1.1 jtc * throw out the badly formed time ranges
341 1.1 jtc */
342 1.1 jtc if ((str == NULL) || (*str == '\0')) {
343 1.7 christos tty_warn(1, "Empty time range string");
344 1.1 jtc return(-1);
345 1.1 jtc }
346 1.1 jtc
347 1.1 jtc /*
348 1.1 jtc * locate optional flags suffix /{cm}.
349 1.1 jtc */
350 1.4 mycroft if ((flgpt = strrchr(str, '/')) != NULL)
351 1.1 jtc *flgpt++ = '\0';
352 1.1 jtc
353 1.1 jtc for (stpt = str; *stpt != '\0'; ++stpt) {
354 1.1 jtc if ((*stpt >= '0') && (*stpt <= '9'))
355 1.1 jtc continue;
356 1.1 jtc if ((*stpt == ',') && (up_pt == NULL)) {
357 1.1 jtc *stpt = '\0';
358 1.1 jtc up_pt = stpt + 1;
359 1.1 jtc dot = 0;
360 1.1 jtc continue;
361 1.1 jtc }
362 1.1 jtc
363 1.1 jtc /*
364 1.1 jtc * allow only one dot per range (secs)
365 1.1 jtc */
366 1.1 jtc if ((*stpt == '.') && (!dot)) {
367 1.1 jtc ++dot;
368 1.1 jtc continue;
369 1.1 jtc }
370 1.7 christos tty_warn(1, "Improperly specified time range: %s", str);
371 1.1 jtc goto out;
372 1.1 jtc }
373 1.1 jtc
374 1.1 jtc /*
375 1.1 jtc * allocate space for the time range and store the limits
376 1.1 jtc */
377 1.1 jtc if ((pt = (TIME_RNG *)malloc(sizeof(TIME_RNG))) == NULL) {
378 1.7 christos tty_warn(1, "Unable to allocate memory for time range");
379 1.1 jtc return(-1);
380 1.1 jtc }
381 1.1 jtc
382 1.1 jtc /*
383 1.16 wiz * by default we only will check file mtime, but user can specify
384 1.1 jtc * mtime, ctime (inode change time) or both.
385 1.1 jtc */
386 1.1 jtc if ((flgpt == NULL) || (*flgpt == '\0'))
387 1.1 jtc pt->flgs = CMPMTME;
388 1.1 jtc else {
389 1.1 jtc pt->flgs = 0;
390 1.1 jtc while (*flgpt != '\0') {
391 1.1 jtc switch(*flgpt) {
392 1.1 jtc case 'M':
393 1.1 jtc case 'm':
394 1.1 jtc pt->flgs |= CMPMTME;
395 1.1 jtc break;
396 1.1 jtc case 'C':
397 1.1 jtc case 'c':
398 1.1 jtc pt->flgs |= CMPCTME;
399 1.1 jtc break;
400 1.1 jtc default:
401 1.7 christos tty_warn(1, "Bad option %c with time range %s",
402 1.1 jtc *flgpt, str);
403 1.1 jtc goto out;
404 1.1 jtc }
405 1.1 jtc ++flgpt;
406 1.1 jtc }
407 1.1 jtc }
408 1.1 jtc
409 1.1 jtc /*
410 1.1 jtc * start off with the current time
411 1.1 jtc */
412 1.1 jtc pt->low_time = pt->high_time = time((time_t *)NULL);
413 1.1 jtc if (*str != '\0') {
414 1.1 jtc /*
415 1.1 jtc * add lower limit
416 1.1 jtc */
417 1.1 jtc if (str_sec(str, &(pt->low_time)) < 0) {
418 1.7 christos tty_warn(1, "Illegal lower time range %s", str);
419 1.1 jtc (void)free((char *)pt);
420 1.1 jtc goto out;
421 1.1 jtc }
422 1.1 jtc pt->flgs |= HASLOW;
423 1.1 jtc }
424 1.1 jtc
425 1.1 jtc if ((up_pt != NULL) && (*up_pt != '\0')) {
426 1.1 jtc /*
427 1.1 jtc * add upper limit
428 1.1 jtc */
429 1.1 jtc if (str_sec(up_pt, &(pt->high_time)) < 0) {
430 1.7 christos tty_warn(1, "Illegal upper time range %s", up_pt);
431 1.1 jtc (void)free((char *)pt);
432 1.1 jtc goto out;
433 1.1 jtc }
434 1.1 jtc pt->flgs |= HASHIGH;
435 1.1 jtc
436 1.1 jtc /*
437 1.1 jtc * check that the upper and lower do not overlap
438 1.1 jtc */
439 1.1 jtc if (pt->flgs & HASLOW) {
440 1.1 jtc if (pt->low_time > pt->high_time) {
441 1.7 christos tty_warn(1,
442 1.7 christos "Upper %s and lower %s time overlap",
443 1.7 christos up_pt, str);
444 1.1 jtc (void)free((char *)pt);
445 1.1 jtc return(-1);
446 1.1 jtc }
447 1.1 jtc }
448 1.1 jtc }
449 1.1 jtc
450 1.1 jtc pt->fow = NULL;
451 1.1 jtc if (trhead == NULL) {
452 1.1 jtc trtail = trhead = pt;
453 1.1 jtc return(0);
454 1.1 jtc }
455 1.1 jtc trtail->fow = pt;
456 1.1 jtc trtail = pt;
457 1.1 jtc return(0);
458 1.1 jtc
459 1.1 jtc out:
460 1.7 christos tty_warn(1, "Time range format is: [yy[mm[dd[hh]]]]mm[.ss][/[c][m]]");
461 1.1 jtc return(-1);
462 1.1 jtc }
463 1.1 jtc
464 1.1 jtc /*
465 1.1 jtc * trng_match()
466 1.1 jtc * check if this files mtime/ctime falls within any supplied time range.
467 1.1 jtc * Return:
468 1.1 jtc * 0 if this archive member should be processed, 1 if it should be skipped
469 1.1 jtc */
470 1.1 jtc
471 1.1 jtc static int
472 1.6 tls trng_match(ARCHD *arcn)
473 1.1 jtc {
474 1.6 tls TIME_RNG *pt;
475 1.1 jtc
476 1.1 jtc /*
477 1.1 jtc * have to search down the list one at a time looking for a match.
478 1.1 jtc * remember time range limits are inclusive.
479 1.1 jtc */
480 1.1 jtc pt = trhead;
481 1.1 jtc while (pt != NULL) {
482 1.1 jtc switch(pt->flgs & CMPBOTH) {
483 1.1 jtc case CMPBOTH:
484 1.1 jtc /*
485 1.1 jtc * user wants both mtime and ctime checked for this
486 1.1 jtc * time range
487 1.1 jtc */
488 1.1 jtc if (((pt->flgs & HASLOW) &&
489 1.1 jtc (arcn->sb.st_mtime < pt->low_time) &&
490 1.1 jtc (arcn->sb.st_ctime < pt->low_time)) ||
491 1.1 jtc ((pt->flgs & HASHIGH) &&
492 1.1 jtc (arcn->sb.st_mtime > pt->high_time) &&
493 1.1 jtc (arcn->sb.st_ctime > pt->high_time))) {
494 1.1 jtc pt = pt->fow;
495 1.1 jtc continue;
496 1.1 jtc }
497 1.1 jtc break;
498 1.1 jtc case CMPCTME:
499 1.1 jtc /*
500 1.1 jtc * user wants only ctime checked for this time range
501 1.1 jtc */
502 1.1 jtc if (((pt->flgs & HASLOW) &&
503 1.1 jtc (arcn->sb.st_ctime < pt->low_time)) ||
504 1.1 jtc ((pt->flgs & HASHIGH) &&
505 1.1 jtc (arcn->sb.st_ctime > pt->high_time))) {
506 1.1 jtc pt = pt->fow;
507 1.1 jtc continue;
508 1.1 jtc }
509 1.1 jtc break;
510 1.1 jtc case CMPMTME:
511 1.1 jtc default:
512 1.1 jtc /*
513 1.1 jtc * user wants only mtime checked for this time range
514 1.1 jtc */
515 1.1 jtc if (((pt->flgs & HASLOW) &&
516 1.1 jtc (arcn->sb.st_mtime < pt->low_time)) ||
517 1.1 jtc ((pt->flgs & HASHIGH) &&
518 1.1 jtc (arcn->sb.st_mtime > pt->high_time))) {
519 1.1 jtc pt = pt->fow;
520 1.1 jtc continue;
521 1.1 jtc }
522 1.1 jtc break;
523 1.1 jtc }
524 1.1 jtc break;
525 1.1 jtc }
526 1.1 jtc
527 1.1 jtc if (pt == NULL)
528 1.1 jtc return(1);
529 1.1 jtc return(0);
530 1.1 jtc }
531 1.1 jtc
532 1.1 jtc /*
533 1.1 jtc * str_sec()
534 1.1 jtc * Convert a time string in the format of [yy[mm[dd[hh]]]]mm[.ss] to gmt
535 1.1 jtc * seconds. Tval already has current time loaded into it at entry.
536 1.1 jtc * Return:
537 1.1 jtc * 0 if converted ok, -1 otherwise
538 1.1 jtc */
539 1.1 jtc
540 1.8 mycroft #define ATOI2(s) ((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0'))
541 1.8 mycroft
542 1.1 jtc static int
543 1.10 mycroft str_sec(const char *p, time_t *tval)
544 1.1 jtc {
545 1.6 tls struct tm *lt;
546 1.10 mycroft const char *dot, *t;
547 1.10 mycroft int yearset, len;
548 1.10 mycroft
549 1.10 mycroft for (t = p, dot = NULL; *t; ++t) {
550 1.11 christos if (isdigit((unsigned char)*t))
551 1.10 mycroft continue;
552 1.10 mycroft if (*t == '.' && dot == NULL) {
553 1.10 mycroft dot = t;
554 1.10 mycroft continue;
555 1.10 mycroft }
556 1.10 mycroft return(-1);
557 1.10 mycroft }
558 1.1 jtc
559 1.1 jtc lt = localtime(tval);
560 1.10 mycroft
561 1.10 mycroft if (dot != NULL) {
562 1.10 mycroft len = strlen(dot);
563 1.10 mycroft if (len != 3)
564 1.1 jtc return(-1);
565 1.10 mycroft ++dot;
566 1.8 mycroft lt->tm_sec = ATOI2(dot);
567 1.10 mycroft } else {
568 1.10 mycroft len = 0;
569 1.1 jtc lt->tm_sec = 0;
570 1.10 mycroft }
571 1.1 jtc
572 1.8 mycroft yearset = 0;
573 1.10 mycroft switch (strlen(p) - len) {
574 1.8 mycroft case 12:
575 1.10 mycroft lt->tm_year = ATOI2(p) * 100 - TM_YEAR_BASE;
576 1.8 mycroft yearset = 1;
577 1.8 mycroft /* FALLTHROUGH */
578 1.1 jtc case 10:
579 1.8 mycroft if (yearset) {
580 1.10 mycroft lt->tm_year += ATOI2(p);
581 1.8 mycroft } else {
582 1.10 mycroft yearset = ATOI2(p);
583 1.8 mycroft if (yearset < 69)
584 1.8 mycroft lt->tm_year = yearset + 2000 - TM_YEAR_BASE;
585 1.8 mycroft else
586 1.8 mycroft lt->tm_year = yearset + 1900 - TM_YEAR_BASE;
587 1.8 mycroft }
588 1.1 jtc /* FALLTHROUGH */
589 1.1 jtc case 8:
590 1.10 mycroft lt->tm_mon = ATOI2(p);
591 1.1 jtc --lt->tm_mon;
592 1.1 jtc /* FALLTHROUGH */
593 1.1 jtc case 6:
594 1.10 mycroft lt->tm_mday = ATOI2(p);
595 1.1 jtc /* FALLTHROUGH */
596 1.1 jtc case 4:
597 1.10 mycroft lt->tm_hour = ATOI2(p);
598 1.1 jtc /* FALLTHROUGH */
599 1.1 jtc case 2:
600 1.10 mycroft lt->tm_min = ATOI2(p);
601 1.1 jtc break;
602 1.1 jtc default:
603 1.1 jtc return(-1);
604 1.1 jtc }
605 1.8 mycroft
606 1.1 jtc /*
607 1.1 jtc * convert broken-down time to GMT clock time seconds
608 1.1 jtc */
609 1.1 jtc if ((*tval = mktime(lt)) == -1)
610 1.1 jtc return(-1);
611 1.1 jtc return(0);
612 1.1 jtc }
613