2 Unix SMB/CIFS implementation.
3 filename matching routine
4 Copyright (C) Andrew Tridgell 1992-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21 This module was originally based on fnmatch.c copyright by the Free
22 Software Foundation. It bears little resemblence to that code now
34 bugger. we need a separate wildcard routine for older versions
35 of the protocol. This is not yet perfect, but its a lot
36 better than what we had */
37 static int ms_fnmatch_lanman_core(const smb_ucs2_t
*pattern
,
38 const smb_ucs2_t
*string
)
40 const smb_ucs2_t
*p
= pattern
, *n
= string
;
43 if (strcmp_wa(p
, "?")==0 && strcmp_wa(n
, ".")) goto match
;
49 if (*n
!= UCS2_CHAR('.')) goto nomatch
;
55 if ((*n
== UCS2_CHAR('.') &&
56 n
[1] != UCS2_CHAR('.')) || ! *n
)
63 if (n
[0] == UCS2_CHAR('.')) {
64 if (! n
[1] && ms_fnmatch_lanman_core(p
, n
+1) == 0) goto match
;
65 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
75 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
81 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
82 if (*n
== UCS2_CHAR('.') &&
83 !strchr_w(n
+1,UCS2_CHAR('.'))) {
91 if (*n
== 0 && ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
92 if (*n
!= UCS2_CHAR('.')) goto nomatch
;
97 if (c
!= *n
) goto nomatch
;
102 if (! *n
) goto match
;
106 if (verbose) printf("NOMATCH pattern=[%s] string=[%s]\n", pattern, string);
111 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
116 if (verbose) printf("MATCH pattern=[%s] string=[%s]\n", pattern, string);
121 static int ms_fnmatch_lanman1(const smb_ucs2_t
*pattern
, const smb_ucs2_t
*string
)
123 if (!strpbrk_wa(pattern
, "?*<>\"")) {
124 smb_ucs2_t s
[] = {UCS2_CHAR('.'), 0};
125 if (strcmp_wa(string
,"..") == 0) string
= s
;
126 return strcasecmp_w(pattern
, string
);
129 if (strcmp_wa(string
,"..") == 0 || strcmp_wa(string
,".") == 0) {
130 smb_ucs2_t dot
[] = {UCS2_CHAR('.'), 0};
131 smb_ucs2_t dotdot
[] = {UCS2_CHAR('.'), UCS2_CHAR('.'), 0};
132 return ms_fnmatch_lanman_core(pattern
, dotdot
) &&
133 ms_fnmatch_lanman_core(pattern
, dot
);
136 return ms_fnmatch_lanman_core(pattern
, string
);
140 /* the following function was derived using the masktest utility -
141 after years of effort we finally have a perfect MS wildcard
144 NOTE: this matches only filenames with no directory component
146 Returns 0 on match, -1 on fail.
148 static int ms_fnmatch_w(const smb_ucs2_t
*pattern
, const smb_ucs2_t
*string
, int protocol
)
150 const smb_ucs2_t
*p
= pattern
, *n
= string
;
153 if (protocol
<= PROTOCOL_LANMAN2
) {
154 return ms_fnmatch_lanman1(pattern
, string
);
165 if (n
[0] == UCS2_CHAR('.')) {
166 if (! n
[1] && ms_fnmatch_w(p
, n
+1, protocol
) == 0) return 0;
167 if (ms_fnmatch_w(p
, n
, protocol
) == 0) return 0;
170 if (! *n
) return ms_fnmatch_w(p
, n
, protocol
);
176 if (ms_fnmatch_w(p
, n
, protocol
) == 0) return 0;
182 if (ms_fnmatch_w(p
, n
, protocol
) == 0) return 0;
183 if (*n
== UCS2_CHAR('.') && !strchr_wa(n
+1,'.')) {
191 if (*n
== 0 && ms_fnmatch_w(p
, n
, protocol
) == 0) return 0;
192 if (*n
!= UCS2_CHAR('.')) return -1;
197 if (c
!= *n
) return -1;
208 int ms_fnmatch(const char *pattern
, const char *string
, int protocol
)
213 pstrcpy_wa(p
, pattern
);
214 pstrcpy_wa(s
, string
);
216 ret
= ms_fnmatch_w(p
, s
, protocol
);
217 /* DEBUG(0,("ms_fnmatch(%s,%s) -> %d\n", pattern, string, ret)); */
221 /* a generic fnmatch function - uses for non-CIFS pattern matching */
222 int gen_fnmatch(const char *pattern
, const char *string
)
224 return ms_fnmatch(pattern
, string
, PROTOCOL_NT1
);