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