1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <sys/signal.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <pwd.h>
#include <grp.h>
#include "patchlevel.h"
#ifdef HAVEFNMATCH
#include <fnmatch.h>
#else
/* A limited fnmatch replacement. Only accepts patterns
in the form "ccccc" or "ccccc*". (These were the patterns accepted
by older afio versions.)
*/
int fnmatch(const char *p, const char *s, int flag)
{
if(p[strlen(p)-1]=='*')
return strncmp(p,s,strlen(p)-1);
else
return strcmp(p,s);
}
#endif
#ifdef linux
#include <utime.h>
#endif
#include "afio.h"
STATIC int ignoreslash=1;
/*
* Pathnames to (or not to) be processed.
*/
typedef struct pattern
{
struct pattern *p_forw; /* Forward chain */
char *p_str; /* String */
int p_len; /* Length of string */
int p_not; /* Reverse logic */
} Pattern;
STATIC Pattern *pattern; /* Pathname matching patterns */
/*
* nameadd()
*
* Add a name to the pattern list.
*/
STATIC void
nameadd (name, not)
reg char *name;
int not;
{
reg Pattern *px;
px = (Pattern *) memget (sizeof (Pattern));
px->p_forw = pattern;
px->p_str = strdup(name);
if(px->p_str==NULL) fatal(name,"out of memory.");
px->p_len = strlen (name);
px->p_not = not;
pattern = px;
/* fprintf(stderr,"--%s added\n",name); */
}
/*
* nameaddfile()
*
* Add a file of patterns to the pattern list.
* Returns 0 on failure, 1 on success.
*/
STATIC int
nameaddfile(fname,not)
char *fname;
int not;
{
FILE *infile;
char pat[PATHSIZE+1];
infile=fopen(fname,"r");
if(infile==0) return 0;
while(fgets(pat,PATHSIZE,infile)!=NULL)
{
/* remove \n */
pat[strlen(pat)-1]='\0';
if(pat[strlen(pat)-1]==' ')
warn(pat,"warning: trailing space in this pattern.");
nameadd(pat,not);
}
fclose(infile);
return 1;
}
/*
* namecmp()
*
* Compare a pathname with the pattern list. Returns 0 for
* a match, -1 otherwise.
*
* This new version uses the GCC library function fnmatch()
* to provide real pattern matching.
*
* Also, this implementation assures that if a file matches a pattern
* in the `not to process' list, it is never processed.
* In the old version, this depended on several implementation details
* and the names in the `to process' list.
*
* Control files always match.
*/
STATIC int
namecmp (name, asb)
reg char *name;
Stat *asb;
{
reg Pattern *px;
int existpospat; /* there are `to process' patterns in the list */
char *namedot,*p,*n;
char namec[PATHSIZE];
/* fprintf(stderr,"name:\"%s\" rdev:%d\n",name,
asb->sb_rdev);
*/
if(asb && ISCONTROL(asb)) return 0;
strcpy(namec,name);
namedot = strrchr (namec, '.');
if (Zflag && asb && (asb->sb_mode & S_IFMT) == S_IFREG
&& asb->sb_rdev == 0
&& namedot && namedot[1] == 'z' && !namedot[2]
)
*namedot = '\0';
else
namedot = 0;
n=namec;
if(ignoreslash && (n[0]=='/')) n++;
for(px=pattern; px; px=px->p_forw)
if(px->p_not)
{
p=px->p_str;
if(ignoreslash && (p[0]=='/')) p++;
if(fnmatch(p,n,0)==0) return -1;
}
existpospat=0;
for(px=pattern; px; px=px->p_forw)
if(!(px->p_not))
{
existpospat=1;
p=px->p_str;
if(ignoreslash && (p[0]=='/')) p++;
if(fnmatch(p,n,0)==0) return 0;
}
if(!existpospat) return 0; else return -1;
}
|