pat_rep.c revision 1.29 1 1.29 perry /* $NetBSD: pat_rep.c,v 1.29 2009/04/07 19:52:35 perry Exp $ */
2 1.4 cgd
3 1.1 jtc /*-
4 1.20 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.19 agc * 3. Neither the name of the University nor the names of its contributors
20 1.19 agc * may be used to endorse or promote products derived from this software
21 1.19 agc * without specific prior written permission.
22 1.19 agc *
23 1.19 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.19 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.19 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.19 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.19 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.19 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.19 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.19 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.19 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.19 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.19 agc * SUCH DAMAGE.
34 1.19 agc */
35 1.19 agc
36 1.21 lukem #if HAVE_NBTOOL_CONFIG_H
37 1.21 lukem #include "nbtool_config.h"
38 1.21 lukem #endif
39 1.21 lukem
40 1.7 christos #include <sys/cdefs.h>
41 1.21 lukem #if !defined(lint)
42 1.4 cgd #if 0
43 1.4 cgd static char sccsid[] = "@(#)pat_rep.c 8.2 (Berkeley) 4/18/94";
44 1.4 cgd #else
45 1.29 perry __RCSID("$NetBSD: pat_rep.c,v 1.29 2009/04/07 19:52:35 perry Exp $");
46 1.4 cgd #endif
47 1.1 jtc #endif /* not lint */
48 1.1 jtc
49 1.1 jtc #include <sys/types.h>
50 1.1 jtc #include <sys/time.h>
51 1.1 jtc #include <sys/stat.h>
52 1.1 jtc #include <sys/param.h>
53 1.1 jtc #include <stdio.h>
54 1.1 jtc #include <ctype.h>
55 1.1 jtc #include <string.h>
56 1.1 jtc #include <unistd.h>
57 1.1 jtc #include <stdlib.h>
58 1.1 jtc #include "pax.h"
59 1.1 jtc #include "pat_rep.h"
60 1.1 jtc #include "extern.h"
61 1.1 jtc
62 1.1 jtc /*
63 1.1 jtc * routines to handle pattern matching, name modification (regular expression
64 1.1 jtc * substitution and interactive renames), and destination name modification for
65 1.1 jtc * copy (-rw). Both file name and link names are adjusted as required in these
66 1.1 jtc * routines.
67 1.1 jtc */
68 1.1 jtc
69 1.1 jtc #define MAXSUBEXP 10 /* max subexpressions, DO NOT CHANGE */
70 1.1 jtc static PATTERN *pathead = NULL; /* file pattern match list head */
71 1.1 jtc static PATTERN *pattail = NULL; /* file pattern match list tail */
72 1.1 jtc static REPLACE *rephead = NULL; /* replacement string list head */
73 1.1 jtc static REPLACE *reptail = NULL; /* replacement string list tail */
74 1.1 jtc
75 1.14 christos static int rep_name(char *, size_t, int *, int);
76 1.12 lukem static int tty_rename(ARCHD *);
77 1.12 lukem static int fix_path(char *, int *, char *, int);
78 1.29 perry static int fn_match(char *, char *, char **, int);
79 1.12 lukem static char * range_match(char *, int);
80 1.15 christos static int checkdotdot(const char *);
81 1.12 lukem static int resub(regex_t *, regmatch_t *, char *, char *, char *, char *);
82 1.1 jtc
83 1.1 jtc /*
84 1.1 jtc * rep_add()
85 1.1 jtc * parses the -s replacement string; compiles the regular expression
86 1.25 snj * and stores the compiled value and its replacement string together in
87 1.1 jtc * replacement string list. Input to this function is of the form:
88 1.11 itohy * /old/new/pg
89 1.1 jtc * The first char in the string specifies the delimiter used by this
90 1.1 jtc * replacement string. "Old" is a regular expression in "ed" format which
91 1.1 jtc * is compiled by regcomp() and is applied to filenames. "new" is the
92 1.1 jtc * substitution string; p and g are options flags for printing and global
93 1.1 jtc * replacement (over the single filename)
94 1.1 jtc * Return:
95 1.1 jtc * 0 if a proper replacement string and regular expression was added to
96 1.1 jtc * the list of replacement patterns; -1 otherwise.
97 1.1 jtc */
98 1.1 jtc
99 1.1 jtc int
100 1.5 tls rep_add(char *str)
101 1.1 jtc {
102 1.5 tls char *pt1;
103 1.5 tls char *pt2;
104 1.5 tls REPLACE *rep;
105 1.5 tls int res;
106 1.1 jtc char rebuf[BUFSIZ];
107 1.1 jtc
108 1.1 jtc /*
109 1.1 jtc * throw out the bad parameters
110 1.1 jtc */
111 1.1 jtc if ((str == NULL) || (*str == '\0')) {
112 1.7 christos tty_warn(1, "Empty replacement string");
113 1.24 dsl return -1;
114 1.1 jtc }
115 1.1 jtc
116 1.1 jtc /*
117 1.1 jtc * first character in the string specifies what the delimiter is for
118 1.14 christos * this expression.
119 1.1 jtc */
120 1.14 christos for (pt1 = str+1; *pt1; pt1++) {
121 1.14 christos if (*pt1 == '\\') {
122 1.14 christos pt1++;
123 1.14 christos continue;
124 1.14 christos }
125 1.14 christos if (*pt1 == *str)
126 1.14 christos break;
127 1.14 christos }
128 1.22 dsl if (*pt1 == 0) {
129 1.7 christos tty_warn(1, "Invalid replacement string %s", str);
130 1.24 dsl return -1;
131 1.1 jtc }
132 1.1 jtc
133 1.1 jtc /*
134 1.1 jtc * allocate space for the node that handles this replacement pattern
135 1.1 jtc * and split out the regular expression and try to compile it
136 1.1 jtc */
137 1.1 jtc if ((rep = (REPLACE *)malloc(sizeof(REPLACE))) == NULL) {
138 1.7 christos tty_warn(1, "Unable to allocate memory for replacement string");
139 1.24 dsl return -1;
140 1.1 jtc }
141 1.1 jtc
142 1.1 jtc *pt1 = '\0';
143 1.1 jtc if ((res = regcomp(&(rep->rcmp), str+1, 0)) != 0) {
144 1.1 jtc regerror(res, &(rep->rcmp), rebuf, sizeof(rebuf));
145 1.7 christos tty_warn(1, "%s while compiling regular expression %s", rebuf,
146 1.7 christos str);
147 1.1 jtc (void)free((char *)rep);
148 1.24 dsl return -1;
149 1.1 jtc }
150 1.1 jtc
151 1.1 jtc /*
152 1.1 jtc * put the delimiter back in case we need an error message and
153 1.1 jtc * locate the delimiter at the end of the replacement string
154 1.1 jtc * we then point the node at the new substitution string
155 1.1 jtc */
156 1.1 jtc *pt1++ = *str;
157 1.14 christos for (pt2 = pt1; *pt2; pt2++) {
158 1.14 christos if (*pt2 == '\\') {
159 1.14 christos pt2++;
160 1.14 christos continue;
161 1.14 christos }
162 1.14 christos if (*pt2 == *str)
163 1.14 christos break;
164 1.14 christos }
165 1.22 dsl if (*pt2 == 0) {
166 1.14 christos regfree(&(rep->rcmp));
167 1.14 christos (void)free((char *)rep);
168 1.14 christos tty_warn(1, "Invalid replacement string %s", str);
169 1.24 dsl return -1;
170 1.14 christos }
171 1.14 christos
172 1.14 christos *pt2 = '\0';
173 1.17 rafal
174 1.18 wiz /* Make sure to dup replacement, who knows where it came from! */
175 1.17 rafal if ((rep->nstr = strdup(pt1)) == NULL) {
176 1.17 rafal regfree(&(rep->rcmp));
177 1.17 rafal (void)free((char *)rep);
178 1.17 rafal tty_warn(1, "Unable to allocate memory for replacement string");
179 1.24 dsl return -1;
180 1.17 rafal }
181 1.17 rafal
182 1.1 jtc pt1 = pt2++;
183 1.1 jtc rep->flgs = 0;
184 1.1 jtc
185 1.1 jtc /*
186 1.1 jtc * set the options if any
187 1.1 jtc */
188 1.1 jtc while (*pt2 != '\0') {
189 1.1 jtc switch(*pt2) {
190 1.1 jtc case 'g':
191 1.1 jtc case 'G':
192 1.1 jtc rep->flgs |= GLOB;
193 1.1 jtc break;
194 1.1 jtc case 'p':
195 1.1 jtc case 'P':
196 1.1 jtc rep->flgs |= PRNT;
197 1.1 jtc break;
198 1.27 christos case 's':
199 1.27 christos case 'S':
200 1.27 christos rep->flgs |= SYML;
201 1.27 christos break;
202 1.1 jtc default:
203 1.1 jtc regfree(&(rep->rcmp));
204 1.1 jtc (void)free((char *)rep);
205 1.1 jtc *pt1 = *str;
206 1.7 christos tty_warn(1, "Invalid replacement string option %s",
207 1.7 christos str);
208 1.24 dsl return -1;
209 1.1 jtc }
210 1.1 jtc ++pt2;
211 1.1 jtc }
212 1.1 jtc
213 1.1 jtc /*
214 1.1 jtc * all done, link it in at the end
215 1.1 jtc */
216 1.1 jtc rep->fow = NULL;
217 1.1 jtc if (rephead == NULL) {
218 1.1 jtc reptail = rephead = rep;
219 1.24 dsl return 0;
220 1.1 jtc }
221 1.1 jtc reptail->fow = rep;
222 1.1 jtc reptail = rep;
223 1.24 dsl return 0;
224 1.1 jtc }
225 1.1 jtc
226 1.1 jtc /*
227 1.1 jtc * pat_add()
228 1.1 jtc * add a pattern match to the pattern match list. Pattern matches are used
229 1.1 jtc * to select which archive members are extracted. (They appear as
230 1.1 jtc * arguments to pax in the list and read modes). If no patterns are
231 1.1 jtc * supplied to pax, all members in the archive will be selected (and the
232 1.1 jtc * pattern match list is empty).
233 1.10 is *
234 1.1 jtc * Return:
235 1.1 jtc * 0 if the pattern was added to the list, -1 otherwise
236 1.1 jtc */
237 1.1 jtc
238 1.1 jtc int
239 1.29 perry pat_add(char *str, char *chdn, int flags)
240 1.1 jtc {
241 1.5 tls PATTERN *pt;
242 1.1 jtc
243 1.1 jtc /*
244 1.1 jtc * throw out the junk
245 1.1 jtc */
246 1.1 jtc if ((str == NULL) || (*str == '\0')) {
247 1.7 christos tty_warn(1, "Empty pattern string");
248 1.24 dsl return -1;
249 1.1 jtc }
250 1.1 jtc
251 1.1 jtc /*
252 1.1 jtc * allocate space for the pattern and store the pattern. the pattern is
253 1.1 jtc * part of argv so do not bother to copy it, just point at it. Add the
254 1.1 jtc * node to the end of the pattern list
255 1.1 jtc */
256 1.1 jtc if ((pt = (PATTERN *)malloc(sizeof(PATTERN))) == NULL) {
257 1.7 christos tty_warn(1, "Unable to allocate memory for pattern string");
258 1.24 dsl return -1;
259 1.1 jtc }
260 1.1 jtc
261 1.1 jtc pt->pstr = str;
262 1.1 jtc pt->pend = NULL;
263 1.1 jtc pt->plen = strlen(str);
264 1.1 jtc pt->fow = NULL;
265 1.29 perry pt->flgs = flags;
266 1.14 christos pt->chdname = chdn;
267 1.1 jtc if (pathead == NULL) {
268 1.1 jtc pattail = pathead = pt;
269 1.24 dsl return 0;
270 1.1 jtc }
271 1.1 jtc pattail->fow = pt;
272 1.1 jtc pattail = pt;
273 1.24 dsl return 0;
274 1.1 jtc }
275 1.1 jtc
276 1.1 jtc /*
277 1.1 jtc * pat_chk()
278 1.1 jtc * complain if any the user supplied pattern did not result in a match to
279 1.1 jtc * a selected archive member.
280 1.1 jtc */
281 1.1 jtc
282 1.1 jtc void
283 1.1 jtc pat_chk(void)
284 1.1 jtc {
285 1.5 tls PATTERN *pt;
286 1.5 tls int wban = 0;
287 1.1 jtc
288 1.1 jtc /*
289 1.1 jtc * walk down the list checking the flags to make sure MTCH was set,
290 1.1 jtc * if not complain
291 1.1 jtc */
292 1.1 jtc for (pt = pathead; pt != NULL; pt = pt->fow) {
293 1.14 christos if (pt->flgs & MTCH)
294 1.1 jtc continue;
295 1.1 jtc if (!wban) {
296 1.7 christos tty_warn(1, "WARNING! These patterns were not matched:");
297 1.1 jtc ++wban;
298 1.1 jtc }
299 1.1 jtc (void)fprintf(stderr, "%s\n", pt->pstr);
300 1.1 jtc }
301 1.1 jtc }
302 1.1 jtc
303 1.1 jtc /*
304 1.1 jtc * pat_sel()
305 1.1 jtc * the archive member which matches a pattern was selected. Mark the
306 1.1 jtc * pattern as having selected an archive member. arcn->pat points at the
307 1.1 jtc * pattern that was matched. arcn->pat is set in pat_match()
308 1.1 jtc *
309 1.1 jtc * NOTE: When the -c option is used, we are called when there was no match
310 1.1 jtc * by pat_match() (that means we did match before the inverted sense of
311 1.18 wiz * the logic). Now this seems really strange at first, but with -c we
312 1.26 msaitoh * need to keep track of those patterns that cause an archive member to
313 1.26 msaitoh * NOT be selected (it found an archive member with a specified pattern)
314 1.1 jtc * Return:
315 1.1 jtc * 0 if the pattern pointed at by arcn->pat was tagged as creating a
316 1.1 jtc * match, -1 otherwise.
317 1.1 jtc */
318 1.1 jtc
319 1.1 jtc int
320 1.5 tls pat_sel(ARCHD *arcn)
321 1.1 jtc {
322 1.5 tls PATTERN *pt;
323 1.5 tls PATTERN **ppt;
324 1.5 tls int len;
325 1.1 jtc
326 1.1 jtc /*
327 1.1 jtc * if no patterns just return
328 1.1 jtc */
329 1.1 jtc if ((pathead == NULL) || ((pt = arcn->pat) == NULL))
330 1.24 dsl return 0;
331 1.1 jtc
332 1.1 jtc /*
333 1.1 jtc * when we are NOT limited to a single match per pattern mark the
334 1.1 jtc * pattern and return
335 1.1 jtc */
336 1.1 jtc if (!nflag) {
337 1.1 jtc pt->flgs |= MTCH;
338 1.24 dsl return 0;
339 1.1 jtc }
340 1.1 jtc
341 1.1 jtc /*
342 1.1 jtc * we reach this point only when we allow a single selected match per
343 1.11 itohy * pattern, if the pattern matches a directory and we do not have -d
344 1.1 jtc * (dflag) we are done with this pattern. We may also be handed a file
345 1.1 jtc * in the subtree of a directory. in that case when we are operating
346 1.1 jtc * with -d, this pattern was already selected and we are done
347 1.1 jtc */
348 1.1 jtc if (pt->flgs & DIR_MTCH)
349 1.24 dsl return 0;
350 1.1 jtc
351 1.1 jtc if (!dflag && ((pt->pend != NULL) || (arcn->type == PAX_DIR))) {
352 1.1 jtc /*
353 1.1 jtc * ok we matched a directory and we are allowing
354 1.1 jtc * subtree matches but because of the -n only its children will
355 1.1 jtc * match. This is tagged as a DIR_MTCH type.
356 1.1 jtc * WATCH IT, the code assumes that pt->pend points
357 1.1 jtc * into arcn->name and arcn->name has not been modified.
358 1.1 jtc * If not we will have a big mess. Yup this is another kludge
359 1.1 jtc */
360 1.1 jtc
361 1.1 jtc /*
362 1.1 jtc * if this was a prefix match, remove trailing part of path
363 1.1 jtc * so we can copy it. Future matches will be exact prefix match
364 1.1 jtc */
365 1.1 jtc if (pt->pend != NULL)
366 1.1 jtc *pt->pend = '\0';
367 1.11 itohy
368 1.1 jtc if ((pt->pstr = strdup(arcn->name)) == NULL) {
369 1.7 christos tty_warn(1, "Pattern select out of memory");
370 1.1 jtc if (pt->pend != NULL)
371 1.1 jtc *pt->pend = '/';
372 1.1 jtc pt->pend = NULL;
373 1.24 dsl return -1;
374 1.1 jtc }
375 1.1 jtc
376 1.1 jtc /*
377 1.1 jtc * put the trailing / back in the source string
378 1.1 jtc */
379 1.1 jtc if (pt->pend != NULL) {
380 1.1 jtc *pt->pend = '/';
381 1.1 jtc pt->pend = NULL;
382 1.1 jtc }
383 1.1 jtc pt->plen = strlen(pt->pstr);
384 1.1 jtc
385 1.1 jtc /*
386 1.1 jtc * strip off any trailing /, this should really never happen
387 1.1 jtc */
388 1.1 jtc len = pt->plen - 1;
389 1.1 jtc if (*(pt->pstr + len) == '/') {
390 1.1 jtc *(pt->pstr + len) = '\0';
391 1.1 jtc pt->plen = len;
392 1.11 itohy }
393 1.1 jtc pt->flgs = DIR_MTCH | MTCH;
394 1.1 jtc arcn->pat = pt;
395 1.24 dsl return 0;
396 1.1 jtc }
397 1.1 jtc
398 1.1 jtc /*
399 1.1 jtc * we are then done with this pattern, so we delete it from the list
400 1.1 jtc * because it can never be used for another match.
401 1.1 jtc * Seems kind of strange to do for a -c, but the pax spec is really
402 1.18 wiz * vague on the interaction of -c, -n, and -d. We assume that when -c
403 1.1 jtc * and the pattern rejects a member (i.e. it matched it) it is done.
404 1.1 jtc * In effect we place the order of the flags as having -c last.
405 1.1 jtc */
406 1.1 jtc pt = pathead;
407 1.1 jtc ppt = &pathead;
408 1.1 jtc while ((pt != NULL) && (pt != arcn->pat)) {
409 1.1 jtc ppt = &(pt->fow);
410 1.1 jtc pt = pt->fow;
411 1.1 jtc }
412 1.1 jtc
413 1.1 jtc if (pt == NULL) {
414 1.1 jtc /*
415 1.1 jtc * should never happen....
416 1.1 jtc */
417 1.26 msaitoh tty_warn(1, "Pattern list inconsistent");
418 1.24 dsl return -1;
419 1.1 jtc }
420 1.1 jtc *ppt = pt->fow;
421 1.1 jtc (void)free((char *)pt);
422 1.1 jtc arcn->pat = NULL;
423 1.24 dsl return 0;
424 1.1 jtc }
425 1.1 jtc
426 1.1 jtc /*
427 1.1 jtc * pat_match()
428 1.1 jtc * see if this archive member matches any supplied pattern, if a match
429 1.1 jtc * is found, arcn->pat is set to point at the potential pattern. Later if
430 1.1 jtc * this archive member is "selected" we process and mark the pattern as
431 1.1 jtc * one which matched a selected archive member (see pat_sel())
432 1.1 jtc * Return:
433 1.11 itohy * 0 if this archive member should be processed, 1 if it should be
434 1.1 jtc * skipped and -1 if we are done with all patterns (and pax should quit
435 1.1 jtc * looking for more members)
436 1.1 jtc */
437 1.1 jtc
438 1.1 jtc int
439 1.5 tls pat_match(ARCHD *arcn)
440 1.1 jtc {
441 1.5 tls PATTERN *pt;
442 1.1 jtc
443 1.1 jtc arcn->pat = NULL;
444 1.1 jtc
445 1.1 jtc /*
446 1.1 jtc * if there are no more patterns and we have -n (and not -c) we are
447 1.1 jtc * done. otherwise with no patterns to match, matches all
448 1.1 jtc */
449 1.1 jtc if (pathead == NULL) {
450 1.1 jtc if (nflag && !cflag)
451 1.24 dsl return -1;
452 1.24 dsl return 0;
453 1.1 jtc }
454 1.1 jtc
455 1.1 jtc /*
456 1.1 jtc * have to search down the list one at a time looking for a match.
457 1.1 jtc */
458 1.1 jtc pt = pathead;
459 1.1 jtc while (pt != NULL) {
460 1.1 jtc /*
461 1.1 jtc * check for a file name match unless we have DIR_MTCH set in
462 1.1 jtc * this pattern then we want a prefix match
463 1.1 jtc */
464 1.1 jtc if (pt->flgs & DIR_MTCH) {
465 1.1 jtc /*
466 1.1 jtc * this pattern was matched before to a directory
467 1.1 jtc * as we must have -n set for this (but not -d). We can
468 1.1 jtc * only match CHILDREN of that directory so we must use
469 1.1 jtc * an exact prefix match (no wildcards).
470 1.1 jtc */
471 1.1 jtc if ((arcn->name[pt->plen] == '/') &&
472 1.1 jtc (strncmp(pt->pstr, arcn->name, pt->plen) == 0))
473 1.1 jtc break;
474 1.29 perry } else if (fn_match(pt->pstr, arcn->name, &pt->pend,
475 1.29 perry pt->flgs & NOGLOB_MTCH) == 0)
476 1.1 jtc break;
477 1.1 jtc pt = pt->fow;
478 1.1 jtc }
479 1.1 jtc
480 1.1 jtc /*
481 1.1 jtc * return the result, remember that cflag (-c) inverts the sense of a
482 1.1 jtc * match
483 1.1 jtc */
484 1.1 jtc if (pt == NULL)
485 1.24 dsl return cflag ? 0 : 1;
486 1.1 jtc
487 1.1 jtc /*
488 1.1 jtc * we had a match, now when we invert the sense (-c) we reject this
489 1.1 jtc * member. However we have to tag the pattern a being successful, (in a
490 1.26 msaitoh * match, not in selecting an archive member) so we call pat_sel()
491 1.26 msaitoh * here.
492 1.1 jtc */
493 1.1 jtc arcn->pat = pt;
494 1.1 jtc if (!cflag)
495 1.24 dsl return 0;
496 1.1 jtc
497 1.1 jtc if (pat_sel(arcn) < 0)
498 1.24 dsl return -1;
499 1.1 jtc arcn->pat = NULL;
500 1.24 dsl return 1;
501 1.1 jtc }
502 1.1 jtc
503 1.1 jtc /*
504 1.1 jtc * fn_match()
505 1.1 jtc * Return:
506 1.11 itohy * 0 if this archive member should be processed, 1 if it should be
507 1.1 jtc * skipped and -1 if we are done with all patterns (and pax should quit
508 1.1 jtc * looking for more members)
509 1.1 jtc * Note: *pend may be changed to show where the prefix ends.
510 1.1 jtc */
511 1.1 jtc
512 1.1 jtc static int
513 1.29 perry fn_match(char *pattern, char *string, char **pend, int noglob)
514 1.1 jtc {
515 1.5 tls char c;
516 1.1 jtc char test;
517 1.1 jtc
518 1.1 jtc *pend = NULL;
519 1.1 jtc for (;;) {
520 1.1 jtc switch (c = *pattern++) {
521 1.1 jtc case '\0':
522 1.1 jtc /*
523 1.1 jtc * Ok we found an exact match
524 1.1 jtc */
525 1.1 jtc if (*string == '\0')
526 1.24 dsl return 0;
527 1.1 jtc
528 1.1 jtc /*
529 1.1 jtc * Check if it is a prefix match
530 1.1 jtc */
531 1.1 jtc if ((dflag == 1) || (*string != '/'))
532 1.24 dsl return -1;
533 1.1 jtc
534 1.1 jtc /*
535 1.1 jtc * It is a prefix match, remember where the trailing
536 1.1 jtc * / is located
537 1.1 jtc */
538 1.1 jtc *pend = string;
539 1.24 dsl return 0;
540 1.1 jtc case '?':
541 1.29 perry if (noglob)
542 1.29 perry goto regular;
543 1.1 jtc if ((test = *string++) == '\0')
544 1.1 jtc return (-1);
545 1.1 jtc break;
546 1.1 jtc case '*':
547 1.29 perry if (noglob)
548 1.29 perry goto regular;
549 1.1 jtc c = *pattern;
550 1.1 jtc /*
551 1.11 itohy * Collapse multiple *'s.
552 1.1 jtc */
553 1.1 jtc while (c == '*')
554 1.1 jtc c = *++pattern;
555 1.1 jtc
556 1.1 jtc /*
557 1.1 jtc * Optimized hack for pattern with a * at the end
558 1.1 jtc */
559 1.1 jtc if (c == '\0')
560 1.1 jtc return (0);
561 1.1 jtc
562 1.1 jtc /*
563 1.1 jtc * General case, use recursion.
564 1.1 jtc */
565 1.1 jtc while ((test = *string) != '\0') {
566 1.29 perry if (!fn_match(pattern, string, pend, noglob))
567 1.1 jtc return (0);
568 1.1 jtc ++string;
569 1.1 jtc }
570 1.1 jtc return (-1);
571 1.1 jtc case '[':
572 1.29 perry if (noglob)
573 1.29 perry goto regular;
574 1.1 jtc /*
575 1.1 jtc * range match
576 1.1 jtc */
577 1.1 jtc if (((test = *string++) == '\0') ||
578 1.1 jtc ((pattern = range_match(pattern, test)) == NULL))
579 1.1 jtc return (-1);
580 1.1 jtc break;
581 1.1 jtc case '\\':
582 1.1 jtc default:
583 1.29 perry regular:
584 1.1 jtc if (c != *string++)
585 1.1 jtc return (-1);
586 1.1 jtc break;
587 1.1 jtc }
588 1.1 jtc }
589 1.1 jtc /* NOTREACHED */
590 1.1 jtc }
591 1.1 jtc
592 1.1 jtc static char *
593 1.5 tls range_match(char *pattern, int test)
594 1.1 jtc {
595 1.5 tls char c;
596 1.5 tls char c2;
597 1.1 jtc int negate;
598 1.1 jtc int ok = 0;
599 1.1 jtc
600 1.7 christos if ((negate = (*pattern == '!')) != 0)
601 1.1 jtc ++pattern;
602 1.1 jtc
603 1.1 jtc while ((c = *pattern++) != ']') {
604 1.1 jtc /*
605 1.1 jtc * Illegal pattern
606 1.1 jtc */
607 1.1 jtc if (c == '\0')
608 1.1 jtc return (NULL);
609 1.1 jtc
610 1.1 jtc if ((*pattern == '-') && ((c2 = pattern[1]) != '\0') &&
611 1.1 jtc (c2 != ']')) {
612 1.1 jtc if ((c <= test) && (test <= c2))
613 1.1 jtc ok = 1;
614 1.1 jtc pattern += 2;
615 1.1 jtc } else if (c == test)
616 1.1 jtc ok = 1;
617 1.1 jtc }
618 1.1 jtc return (ok == negate ? NULL : pattern);
619 1.1 jtc }
620 1.1 jtc
621 1.1 jtc /*
622 1.1 jtc * mod_name()
623 1.1 jtc * modify a selected file name. first attempt to apply replacement string
624 1.1 jtc * expressions, then apply interactive file rename. We apply replacement
625 1.1 jtc * string expressions to both filenames and file links (if we didn't the
626 1.1 jtc * links would point to the wrong place, and we could never be able to
627 1.1 jtc * move an archive that has a file link in it). When we rename files
628 1.1 jtc * interactively, we store that mapping (old name to user input name) so
629 1.1 jtc * if we spot any file links to the old file name in the future, we will
630 1.1 jtc * know exactly how to fix the file link.
631 1.1 jtc * Return:
632 1.11 itohy * 0 continue to process file, 1 skip this file, -1 pax is finished
633 1.1 jtc */
634 1.1 jtc
635 1.1 jtc int
636 1.27 christos mod_name(ARCHD *arcn, int flags)
637 1.1 jtc {
638 1.5 tls int res = 0;
639 1.1 jtc
640 1.15 christos if (secure) {
641 1.15 christos if (checkdotdot(arcn->name)) {
642 1.15 christos tty_warn(0, "Ignoring file containing `..' (%s)",
643 1.15 christos arcn->name);
644 1.15 christos return 1;
645 1.15 christos }
646 1.16 christos #ifdef notdef
647 1.15 christos if (checkdotdot(arcn->ln_name)) {
648 1.15 christos tty_warn(0, "Ignoring link containing `..' (%s)",
649 1.15 christos arcn->ln_name);
650 1.15 christos return 1;
651 1.15 christos }
652 1.16 christos #endif
653 1.15 christos }
654 1.15 christos
655 1.14 christos /*
656 1.1 jtc * IMPORTANT: We have a problem. what do we do with symlinks?
657 1.1 jtc * Modifying a hard link name makes sense, as we know the file it
658 1.1 jtc * points at should have been seen already in the archive (and if it
659 1.1 jtc * wasn't seen because of a read error or a bad archive, we lose
660 1.1 jtc * anyway). But there are no such requirements for symlinks. On one
661 1.1 jtc * hand the symlink that refers to a file in the archive will have to
662 1.1 jtc * be modified to so it will still work at its new location in the
663 1.1 jtc * file system. On the other hand a symlink that points elsewhere (and
664 1.1 jtc * should continue to do so) should not be modified. There is clearly
665 1.1 jtc * no perfect solution here. So we handle them like hardlinks. Clearly
666 1.1 jtc * a replacement made by the interactive rename mapping is very likely
667 1.1 jtc * to be correct since it applies to a single file and is an exact
668 1.1 jtc * match. The regular expression replacements are a little harder to
669 1.1 jtc * justify though. We claim that the symlink name is only likely
670 1.1 jtc * to be replaced when it points within the file tree being moved and
671 1.1 jtc * in that case it should be modified. what we really need to do is to
672 1.1 jtc * call an oracle here. :)
673 1.1 jtc */
674 1.1 jtc if (rephead != NULL) {
675 1.27 christos flags |= (flags & RENM) ? PRNT : 0;
676 1.1 jtc /*
677 1.1 jtc * we have replacement strings, modify the name and the link
678 1.1 jtc * name if any.
679 1.1 jtc */
680 1.14 christos if ((res = rep_name(arcn->name, sizeof(arcn->name),
681 1.27 christos &(arcn->nlen), flags)) != 0)
682 1.24 dsl return res;
683 1.1 jtc
684 1.1 jtc if (((arcn->type == PAX_SLK) || (arcn->type == PAX_HLK) ||
685 1.1 jtc (arcn->type == PAX_HRG)) &&
686 1.27 christos ((res = rep_name(arcn->ln_name,
687 1.27 christos sizeof(arcn->ln_name), &(arcn->ln_nlen),
688 1.27 christos flags | (arcn->type == PAX_SLK ? SYML : 0))) != 0))
689 1.24 dsl return res;
690 1.1 jtc }
691 1.1 jtc
692 1.1 jtc if (iflag) {
693 1.1 jtc /*
694 1.1 jtc * perform interactive file rename, then map the link if any
695 1.1 jtc */
696 1.1 jtc if ((res = tty_rename(arcn)) != 0)
697 1.24 dsl return res;
698 1.1 jtc if ((arcn->type == PAX_SLK) || (arcn->type == PAX_HLK) ||
699 1.1 jtc (arcn->type == PAX_HRG))
700 1.14 christos sub_name(arcn->ln_name, &(arcn->ln_nlen), sizeof(arcn->ln_name));
701 1.1 jtc }
702 1.23 jmc
703 1.23 jmc /*
704 1.23 jmc * Strip off leading '/' if appropriate.
705 1.23 jmc * Currently, this option is only set for the tar format.
706 1.23 jmc */
707 1.23 jmc if (rmleadslash && arcn->name[0] == '/') {
708 1.23 jmc if (arcn->name[1] == '\0') {
709 1.23 jmc arcn->name[0] = '.';
710 1.23 jmc } else {
711 1.23 jmc (void)memmove(arcn->name, &arcn->name[1],
712 1.23 jmc strlen(arcn->name));
713 1.23 jmc arcn->nlen--;
714 1.23 jmc }
715 1.23 jmc if (rmleadslash < 2) {
716 1.23 jmc rmleadslash = 2;
717 1.23 jmc tty_warn(0, "Removing leading / from absolute path names in the archive");
718 1.23 jmc }
719 1.23 jmc }
720 1.23 jmc if (rmleadslash && arcn->ln_name[0] == '/' &&
721 1.23 jmc (arcn->type == PAX_HLK || arcn->type == PAX_HRG)) {
722 1.23 jmc if (arcn->ln_name[1] == '\0') {
723 1.23 jmc arcn->ln_name[0] = '.';
724 1.23 jmc } else {
725 1.23 jmc (void)memmove(arcn->ln_name, &arcn->ln_name[1],
726 1.23 jmc strlen(arcn->ln_name));
727 1.23 jmc arcn->ln_nlen--;
728 1.23 jmc }
729 1.23 jmc if (rmleadslash < 2) {
730 1.23 jmc rmleadslash = 2;
731 1.23 jmc tty_warn(0, "Removing leading / from absolute path names in the archive");
732 1.23 jmc }
733 1.23 jmc }
734 1.23 jmc
735 1.24 dsl return res;
736 1.1 jtc }
737 1.1 jtc
738 1.1 jtc /*
739 1.1 jtc * tty_rename()
740 1.1 jtc * Prompt the user for a replacement file name. A "." keeps the old name,
741 1.1 jtc * a empty line skips the file, and an EOF on reading the tty, will cause
742 1.1 jtc * pax to stop processing and exit. Otherwise the file name input, replaces
743 1.1 jtc * the old one.
744 1.1 jtc * Return:
745 1.1 jtc * 0 process this file, 1 skip this file, -1 we need to exit pax
746 1.1 jtc */
747 1.1 jtc
748 1.1 jtc static int
749 1.5 tls tty_rename(ARCHD *arcn)
750 1.1 jtc {
751 1.1 jtc char tmpname[PAXPATHLEN+2];
752 1.1 jtc int res;
753 1.1 jtc
754 1.1 jtc /*
755 1.1 jtc * prompt user for the replacement name for a file, keep trying until
756 1.1 jtc * we get some reasonable input. Archives may have more than one file
757 1.1 jtc * on them with the same name (from updates etc). We print verbose info
758 1.1 jtc * on the file so the user knows what is up.
759 1.1 jtc */
760 1.1 jtc tty_prnt("\nATTENTION: %s interactive file rename operation.\n", argv0);
761 1.1 jtc
762 1.1 jtc for (;;) {
763 1.1 jtc ls_tty(arcn);
764 1.1 jtc tty_prnt("Input new name, or a \".\" to keep the old name, ");
765 1.1 jtc tty_prnt("or a \"return\" to skip this file.\n");
766 1.1 jtc tty_prnt("Input > ");
767 1.1 jtc if (tty_read(tmpname, sizeof(tmpname)) < 0)
768 1.24 dsl return -1;
769 1.1 jtc if (strcmp(tmpname, "..") == 0) {
770 1.1 jtc tty_prnt("Try again, illegal file name: ..\n");
771 1.1 jtc continue;
772 1.1 jtc }
773 1.1 jtc if (strlen(tmpname) > PAXPATHLEN) {
774 1.1 jtc tty_prnt("Try again, file name too long\n");
775 1.1 jtc continue;
776 1.1 jtc }
777 1.1 jtc break;
778 1.1 jtc }
779 1.1 jtc
780 1.1 jtc /*
781 1.1 jtc * empty file name, skips this file. a "." leaves it alone
782 1.1 jtc */
783 1.1 jtc if (tmpname[0] == '\0') {
784 1.1 jtc tty_prnt("Skipping file.\n");
785 1.24 dsl return 1;
786 1.1 jtc }
787 1.1 jtc if ((tmpname[0] == '.') && (tmpname[1] == '\0')) {
788 1.1 jtc tty_prnt("Processing continues, name unchanged.\n");
789 1.24 dsl return 0;
790 1.1 jtc }
791 1.1 jtc
792 1.1 jtc /*
793 1.1 jtc * ok the name changed. We may run into links that point at this
794 1.1 jtc * file later. we have to remember where the user sent the file
795 1.1 jtc * in order to repair any links.
796 1.1 jtc */
797 1.1 jtc tty_prnt("Processing continues, name changed to: %s\n", tmpname);
798 1.1 jtc res = add_name(arcn->name, arcn->nlen, tmpname);
799 1.14 christos arcn->nlen = strlcpy(arcn->name, tmpname, sizeof(arcn->name));
800 1.1 jtc if (res < 0)
801 1.24 dsl return -1;
802 1.24 dsl return 0;
803 1.1 jtc }
804 1.1 jtc
805 1.1 jtc /*
806 1.1 jtc * set_dest()
807 1.1 jtc * fix up the file name and the link name (if any) so this file will land
808 1.1 jtc * in the destination directory (used during copy() -rw).
809 1.1 jtc * Return:
810 1.1 jtc * 0 if ok, -1 if failure (name too long)
811 1.1 jtc */
812 1.1 jtc
813 1.1 jtc int
814 1.5 tls set_dest(ARCHD *arcn, char *dest_dir, int dir_len)
815 1.1 jtc {
816 1.1 jtc if (fix_path(arcn->name, &(arcn->nlen), dest_dir, dir_len) < 0)
817 1.24 dsl return -1;
818 1.1 jtc
819 1.1 jtc /*
820 1.1 jtc * It is really hard to deal with symlinks here, we cannot be sure
821 1.1 jtc * if the name they point was moved (or will be moved). It is best to
822 1.1 jtc * leave them alone.
823 1.1 jtc */
824 1.1 jtc if ((arcn->type != PAX_HLK) && (arcn->type != PAX_HRG))
825 1.24 dsl return 0;
826 1.1 jtc
827 1.1 jtc if (fix_path(arcn->ln_name, &(arcn->ln_nlen), dest_dir, dir_len) < 0)
828 1.24 dsl return -1;
829 1.24 dsl return 0;
830 1.1 jtc }
831 1.1 jtc
832 1.1 jtc /*
833 1.1 jtc * fix_path
834 1.1 jtc * concatenate dir_name and or_name and store the result in or_name (if
835 1.1 jtc * it fits). This is one ugly function.
836 1.1 jtc * Return:
837 1.1 jtc * 0 if ok, -1 if the final name is too long
838 1.1 jtc */
839 1.1 jtc
840 1.1 jtc static int
841 1.1 jtc fix_path( char *or_name, int *or_len, char *dir_name, int dir_len)
842 1.1 jtc {
843 1.5 tls char *src;
844 1.5 tls char *dest;
845 1.5 tls char *start;
846 1.1 jtc int len;
847 1.1 jtc
848 1.1 jtc /*
849 1.1 jtc * we shift the or_name to the right enough to tack in the dir_name
850 1.1 jtc * at the front. We make sure we have enough space for it all before
851 1.1 jtc * we start. since dest always ends in a slash, we skip of or_name
852 1.1 jtc * if it also starts with one.
853 1.1 jtc */
854 1.1 jtc start = or_name;
855 1.1 jtc src = start + *or_len;
856 1.1 jtc dest = src + dir_len;
857 1.1 jtc if (*start == '/') {
858 1.1 jtc ++start;
859 1.1 jtc --dest;
860 1.1 jtc }
861 1.1 jtc if ((len = dest - or_name) > PAXPATHLEN) {
862 1.7 christos tty_warn(1, "File name %s/%s, too long", dir_name, start);
863 1.24 dsl return -1;
864 1.1 jtc }
865 1.1 jtc *or_len = len;
866 1.1 jtc
867 1.1 jtc /*
868 1.11 itohy * enough space, shift
869 1.1 jtc */
870 1.1 jtc while (src >= start)
871 1.1 jtc *dest-- = *src--;
872 1.1 jtc src = dir_name + dir_len - 1;
873 1.1 jtc
874 1.1 jtc /*
875 1.1 jtc * splice in the destination directory name
876 1.1 jtc */
877 1.1 jtc while (src >= dir_name)
878 1.1 jtc *dest-- = *src--;
879 1.1 jtc
880 1.1 jtc *(or_name + len) = '\0';
881 1.24 dsl return 0;
882 1.1 jtc }
883 1.1 jtc
884 1.1 jtc /*
885 1.1 jtc * rep_name()
886 1.1 jtc * walk down the list of replacement strings applying each one in order.
887 1.1 jtc * when we find one with a successful substitution, we modify the name
888 1.1 jtc * as specified. if required, we print the results. if the resulting name
889 1.1 jtc * is empty, we will skip this archive member. We use the regexp(3)
890 1.1 jtc * routines (regexp() ought to win a prize as having the most cryptic
891 1.1 jtc * library function manual page).
892 1.1 jtc * --Parameters--
893 1.1 jtc * name is the file name we are going to apply the regular expressions to
894 1.1 jtc * (and may be modified)
895 1.14 christos * namelen the size of the name buffer.
896 1.1 jtc * nlen is the length of this name (and is modified to hold the length of
897 1.1 jtc * the final string).
898 1.1 jtc * prnt is a flag that says whether to print the final result.
899 1.1 jtc * Return:
900 1.1 jtc * 0 if substitution was successful, 1 if we are to skip the file (the name
901 1.1 jtc * ended up empty)
902 1.1 jtc */
903 1.1 jtc
904 1.1 jtc static int
905 1.27 christos rep_name(char *name, size_t namelen, int *nlen, int flags)
906 1.1 jtc {
907 1.5 tls REPLACE *pt;
908 1.5 tls char *inpt;
909 1.5 tls char *outpt;
910 1.5 tls char *endpt;
911 1.5 tls char *rpt;
912 1.5 tls int found = 0;
913 1.5 tls int res;
914 1.1 jtc regmatch_t pm[MAXSUBEXP];
915 1.1 jtc char nname[PAXPATHLEN+1]; /* final result of all replacements */
916 1.1 jtc char buf1[PAXPATHLEN+1]; /* where we work on the name */
917 1.1 jtc
918 1.1 jtc /*
919 1.1 jtc * copy the name into buf1, where we will work on it. We need to keep
920 1.1 jtc * the orig string around so we can print out the result of the final
921 1.1 jtc * replacement. We build up the final result in nname. inpt points at
922 1.1 jtc * the string we apply the regular expression to. prnt is used to
923 1.1 jtc * suppress printing when we handle replacements on the link field
924 1.1 jtc * (the user already saw that substitution go by)
925 1.1 jtc */
926 1.1 jtc pt = rephead;
927 1.1 jtc (void)strcpy(buf1, name);
928 1.1 jtc inpt = buf1;
929 1.1 jtc outpt = nname;
930 1.1 jtc endpt = outpt + PAXPATHLEN;
931 1.1 jtc
932 1.1 jtc /*
933 1.1 jtc * try each replacement string in order
934 1.1 jtc */
935 1.1 jtc while (pt != NULL) {
936 1.1 jtc do {
937 1.27 christos if ((flags & SYML) && (pt->flgs & SYML))
938 1.27 christos continue;
939 1.1 jtc /*
940 1.1 jtc * check for a successful substitution, if not go to
941 1.1 jtc * the next pattern, or cleanup if we were global
942 1.1 jtc */
943 1.1 jtc if (regexec(&(pt->rcmp), inpt, MAXSUBEXP, pm, 0) != 0)
944 1.1 jtc break;
945 1.1 jtc
946 1.1 jtc /*
947 1.1 jtc * ok we found one. We have three parts, the prefix
948 1.1 jtc * which did not match, the section that did and the
949 1.1 jtc * tail (that also did not match). Copy the prefix to
950 1.1 jtc * the final output buffer (watching to make sure we
951 1.1 jtc * do not create a string too long).
952 1.1 jtc */
953 1.1 jtc found = 1;
954 1.1 jtc rpt = inpt + pm[0].rm_so;
955 1.1 jtc
956 1.1 jtc while ((inpt < rpt) && (outpt < endpt))
957 1.1 jtc *outpt++ = *inpt++;
958 1.1 jtc if (outpt == endpt)
959 1.1 jtc break;
960 1.1 jtc
961 1.1 jtc /*
962 1.1 jtc * for the second part (which matched the regular
963 1.1 jtc * expression) apply the substitution using the
964 1.1 jtc * replacement string and place it the prefix in the
965 1.1 jtc * final output. If we have problems, skip it.
966 1.1 jtc */
967 1.12 lukem if ((res =
968 1.12 lukem resub(&(pt->rcmp),pm,pt->nstr,inpt, outpt,endpt)
969 1.12 lukem ) < 0) {
970 1.27 christos if (flags & PRNT)
971 1.7 christos tty_warn(1, "Replacement name error %s",
972 1.1 jtc name);
973 1.24 dsl return 1;
974 1.1 jtc }
975 1.1 jtc outpt += res;
976 1.1 jtc
977 1.1 jtc /*
978 1.1 jtc * we set up to look again starting at the first
979 1.1 jtc * character in the tail (of the input string right
980 1.1 jtc * after the last character matched by the regular
981 1.1 jtc * expression (inpt always points at the first char in
982 1.1 jtc * the string to process). If we are not doing a global
983 1.1 jtc * substitution, we will use inpt to copy the tail to
984 1.1 jtc * the final result. Make sure we do not overrun the
985 1.1 jtc * output buffer
986 1.1 jtc */
987 1.6 mycroft inpt += pm[0].rm_eo - pm[0].rm_so;
988 1.1 jtc
989 1.1 jtc if ((outpt == endpt) || (*inpt == '\0'))
990 1.1 jtc break;
991 1.1 jtc
992 1.1 jtc /*
993 1.1 jtc * if the user wants global we keep trying to
994 1.1 jtc * substitute until it fails, then we are done.
995 1.1 jtc */
996 1.1 jtc } while (pt->flgs & GLOB);
997 1.1 jtc
998 1.11 itohy if (found)
999 1.1 jtc break;
1000 1.1 jtc
1001 1.1 jtc /*
1002 1.1 jtc * a successful substitution did NOT occur, try the next one
1003 1.1 jtc */
1004 1.1 jtc pt = pt->fow;
1005 1.1 jtc }
1006 1.1 jtc
1007 1.1 jtc if (found) {
1008 1.1 jtc /*
1009 1.1 jtc * we had a substitution, copy the last tail piece (if there is
1010 1.1 jtc * room) to the final result
1011 1.1 jtc */
1012 1.1 jtc while ((outpt < endpt) && (*inpt != '\0'))
1013 1.1 jtc *outpt++ = *inpt++;
1014 1.1 jtc
1015 1.1 jtc *outpt = '\0';
1016 1.1 jtc if ((outpt == endpt) && (*inpt != '\0')) {
1017 1.27 christos if (flags & PRNT)
1018 1.7 christos tty_warn(1,"Replacement name too long %s >> %s",
1019 1.1 jtc name, nname);
1020 1.24 dsl return 1;
1021 1.11 itohy }
1022 1.1 jtc
1023 1.1 jtc /*
1024 1.1 jtc * inform the user of the result if wanted
1025 1.1 jtc */
1026 1.27 christos if ((flags & PRNT) && (pt->flgs & PRNT)) {
1027 1.1 jtc if (*nname == '\0')
1028 1.1 jtc (void)fprintf(stderr,"%s >> <empty string>\n",
1029 1.1 jtc name);
1030 1.11 itohy else
1031 1.1 jtc (void)fprintf(stderr,"%s >> %s\n", name, nname);
1032 1.1 jtc }
1033 1.1 jtc
1034 1.1 jtc /*
1035 1.1 jtc * if empty inform the caller this file is to be skipped
1036 1.1 jtc * otherwise copy the new name over the orig name and return
1037 1.1 jtc */
1038 1.11 itohy if (*nname == '\0')
1039 1.24 dsl return 1;
1040 1.27 christos if (flags & RENM)
1041 1.27 christos *nlen = strlcpy(name, nname, namelen);
1042 1.1 jtc }
1043 1.24 dsl return 0;
1044 1.15 christos }
1045 1.15 christos
1046 1.15 christos
1047 1.15 christos /*
1048 1.15 christos * checkdotdot()
1049 1.15 christos * Return true if a component of the name contains a reference to ".."
1050 1.15 christos */
1051 1.15 christos static int
1052 1.15 christos checkdotdot(const char *name)
1053 1.15 christos {
1054 1.15 christos const char *p;
1055 1.15 christos /* 1. "..{[/],}" */
1056 1.15 christos if (name[0] == '.' && name[1] == '.' &&
1057 1.15 christos (name[2] == '/' || name[2] == '\0'))
1058 1.15 christos return 1;
1059 1.15 christos
1060 1.15 christos /* 2. "*[/]..[/]*" */
1061 1.15 christos if (strstr(name, "/../") != NULL)
1062 1.15 christos return 1;
1063 1.15 christos
1064 1.15 christos /* 3. "*[/].." */
1065 1.15 christos for (p = name; *p; p++)
1066 1.15 christos continue;
1067 1.15 christos if (p - name < 3)
1068 1.15 christos return 0;
1069 1.15 christos if (p[-1] == '.' && p[-2] == '.' && p[-3] == '/')
1070 1.15 christos return 1;
1071 1.15 christos
1072 1.15 christos return 0;
1073 1.1 jtc }
1074 1.1 jtc
1075 1.1 jtc
1076 1.1 jtc /*
1077 1.1 jtc * resub()
1078 1.1 jtc * apply the replacement to the matched expression. expand out the old
1079 1.11 itohy * style ed(1) subexpression expansion.
1080 1.1 jtc * Return:
1081 1.1 jtc * -1 if error, or the number of characters added to the destination.
1082 1.1 jtc */
1083 1.1 jtc
1084 1.1 jtc static int
1085 1.9 pk resub(regex_t *rp, regmatch_t *pm, char *src, char *txt, char *dest,
1086 1.5 tls char *destend)
1087 1.1 jtc {
1088 1.5 tls char *spt;
1089 1.5 tls char *dpt;
1090 1.5 tls char c;
1091 1.5 tls regmatch_t *pmpt;
1092 1.5 tls int len;
1093 1.1 jtc int subexcnt;
1094 1.1 jtc
1095 1.1 jtc spt = src;
1096 1.1 jtc dpt = dest;
1097 1.1 jtc subexcnt = rp->re_nsub;
1098 1.1 jtc while ((dpt < destend) && ((c = *spt++) != '\0')) {
1099 1.1 jtc /*
1100 1.1 jtc * see if we just have an ordinary replacement character
1101 1.1 jtc * or we refer to a subexpression.
1102 1.1 jtc */
1103 1.1 jtc if (c == '&') {
1104 1.1 jtc pmpt = pm;
1105 1.9 pk } else if ((c == '\\') && (*spt >= '1') && (*spt <= '9')) {
1106 1.1 jtc /*
1107 1.1 jtc * make sure there is a subexpression as specified
1108 1.1 jtc */
1109 1.1 jtc if ((len = *spt++ - '0') > subexcnt)
1110 1.24 dsl return -1;
1111 1.1 jtc pmpt = pm + len;
1112 1.1 jtc } else {
1113 1.11 itohy /*
1114 1.1 jtc * Ordinary character, just copy it
1115 1.1 jtc */
1116 1.11 itohy if ((c == '\\') && ((*spt == '\\') || (*spt == '&')))
1117 1.11 itohy c = *spt++;
1118 1.11 itohy *dpt++ = c;
1119 1.1 jtc continue;
1120 1.1 jtc }
1121 1.1 jtc
1122 1.1 jtc /*
1123 1.1 jtc * continue if the subexpression is bogus
1124 1.1 jtc */
1125 1.1 jtc if ((pmpt->rm_so < 0) || (pmpt->rm_eo < 0) ||
1126 1.1 jtc ((len = pmpt->rm_eo - pmpt->rm_so) <= 0))
1127 1.1 jtc continue;
1128 1.1 jtc
1129 1.1 jtc /*
1130 1.1 jtc * copy the subexpression to the destination.
1131 1.1 jtc * fail if we run out of space or the match string is damaged
1132 1.1 jtc */
1133 1.1 jtc if (len > (destend - dpt))
1134 1.14 christos return -1;
1135 1.14 christos strncpy(dpt, txt + pmpt->rm_so, len);
1136 1.1 jtc dpt += len;
1137 1.1 jtc }
1138 1.24 dsl return dpt - dest;
1139 1.1 jtc }
1140