Line data Source code
1 : #include "burp.h"
2 : #include "pathcmp.h"
3 :
4 : // Return a number indicating the number of directories matched.
5 : // 0 if it is not a sub-directory.
6 : // Two paths the same counts as a subdirectory.
7 225 : int is_subdir(const char *dir, const char *sub)
8 : {
9 225 : int count=1;
10 225 : const char *d=NULL;
11 225 : const char *s=NULL;
12 225 : const char *dl=NULL;
13 225 : const char *sl=NULL;
14 225 : if(!sub || !dir) return 0;
15 7369 : for(s=sl=sub, dl=d=dir; *s && *d; s++, d++)
16 : {
17 7401 : if(*s!=*d) break;
18 7369 : sl=s;
19 7369 : dl=d;
20 7369 : if(*s=='/') count++;
21 : }
22 222 : if(!*d && !*s) return count; // Paths were exactly the same.
23 197 : if(!*d && *s=='/')
24 : return count; // 'dir' ended without a slash, for example:
25 : // dir=/bin sub=/bin/bash
26 69 : if(*dl=='/' && *sl=='/' && *(sl+1) && !*(dl+1)) return count;
27 : return 0;
28 : }
29 :
30 670631 : int pathcmp(const char *a, const char *b)
31 : {
32 670631 : const char *x=NULL;
33 670631 : const char *y=NULL;
34 670631 : if(!a && !b) return 0; // equal
35 592906 : if( a && !b) return 1; // a is longer
36 590819 : if(!a && b) return -1; // b is longer
37 10817889 : for(x=a, y=b; *x && *y ; x++, y++)
38 : {
39 11341811 : if(*x==*y) continue;
40 523922 : if(*x=='/' && *y!='/') return -1;
41 523894 : if(*x!='/' && *y=='/') return 1;
42 523893 : if(*x<*y) return -1;
43 268563 : if(*x>*y) return 1;
44 : }
45 66896 : if(!*x && !*y) return 0; // equal
46 129 : if( *x && !*y) return 1; // x is longer
47 6 : return -1; // y is longer
48 : }
|