2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1999
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 3 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, see <http://www.gnu.org/licenses/>.
22 static fstring password
;
23 static fstring username
;
25 static int max_protocol
= PROTOCOL_NT1
;
26 static bool showall
= False
;
27 static bool old_list
= False
;
28 static const char *maskchars
= "<>\"?*abc.";
29 static const char *filechars
= "abcdefghijklm.";
31 static int die_on_error
;
32 static int NumLoops
= 0;
33 static int ignore_dot_errors
= 0;
37 extern bool AllowDebugChange
;
39 /* a test fn for LANMAN mask support */
40 static int ms_fnmatch_lanman_core(const char *pattern
, const char *string
)
42 const char *p
= pattern
, *n
= string
;
45 if (strcmp(p
,"?")==0 && strcmp(n
,".")==0) goto match
;
50 /* if (! *n && ! *p) goto match; */
51 if (*n
!= '.') goto nomatch
;
56 if ((*n
== '.' && n
[1] != '.') || ! *n
) goto next
;
62 if (! n
[1] && ms_fnmatch_lanman_core(p
, n
+1) == 0) goto match
;
63 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
73 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
79 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
80 if (*n
== '.' && !strchr_m(n
+1,'.')) {
88 if (*n
== 0 && ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
89 if (*n
!= '.') goto nomatch
;
94 if (c
!= *n
) goto nomatch
;
102 if (verbose
) printf("NOMATCH pattern=[%s] string=[%s]\n", pattern
, string
);
106 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
110 if (verbose
) printf("MATCH pattern=[%s] string=[%s]\n", pattern
, string
);
114 static int ms_fnmatch_lanman(const char *pattern
, const char *string
)
116 if (!strpbrk(pattern
, "?*<>\"")) {
117 if (strcmp(string
,"..") == 0)
120 return strcmp(pattern
, string
);
123 if (strcmp(string
,"..") == 0 || strcmp(string
,".") == 0) {
124 return ms_fnmatch_lanman_core(pattern
, "..") &&
125 ms_fnmatch_lanman_core(pattern
, ".");
128 return ms_fnmatch_lanman_core(pattern
, string
);
131 static bool reg_match_one(struct cli_state
*cli
, const char *pattern
, const char *file
)
133 /* oh what a weird world this is */
134 if (old_list
&& strcmp(pattern
, "*.*") == 0) return True
;
136 if (strcmp(pattern
,".") == 0) return False
;
138 if (max_protocol
<= PROTOCOL_LANMAN2
) {
139 return ms_fnmatch_lanman(pattern
, file
)==0;
142 if (strcmp(file
,"..") == 0) file
= ".";
144 return ms_fnmatch(pattern
, file
, cli
->protocol
, False
) == 0;
147 static char *reg_test(struct cli_state
*cli
, const char *pattern
, const char *long_name
, const char *short_name
)
150 const char *new_pattern
= 1+strrchr_m(pattern
,'\\');
153 if (reg_match_one(cli
, new_pattern
, ".")) ret
[0] = '+';
154 if (reg_match_one(cli
, new_pattern
, "..")) ret
[1] = '+';
155 if (reg_match_one(cli
, new_pattern
, long_name
) ||
156 (*short_name
&& reg_match_one(cli
, new_pattern
, short_name
))) ret
[2] = '+';
161 /*****************************************************
162 return a connection to a server
163 *******************************************************/
164 static struct cli_state
*connect_one(char *share
)
167 struct nmb_name called
, calling
;
170 struct sockaddr_storage ss
;
174 share
= strchr_m(server
,'\\');
175 if (!share
) return NULL
;
183 make_nmb_name(&calling
, "masktest", 0x0);
184 make_nmb_name(&called
, server
, 0x20);
189 /* have to open a new connection */
190 if (!(c
=cli_initialise())) {
191 DEBUG(0,("Connection to %s failed\n", server_n
));
195 status
= cli_connect(c
, server_n
, &ss
);
196 if (!NT_STATUS_IS_OK(status
)) {
197 DEBUG(0,("Connection to %s failed. Error %s\n", server_n
, nt_errstr(status
) ));
201 c
->protocol
= max_protocol
;
203 if (!cli_session_request(c
, &calling
, &called
)) {
204 DEBUG(0,("session request to %s failed\n", called
.name
));
206 if (strcmp(called
.name
, "*SMBSERVER")) {
207 make_nmb_name(&called
, "*SMBSERVER", 0x20);
213 DEBUG(4,(" session request ok\n"));
215 status
= cli_negprot(c
);
216 if (!NT_STATUS_IS_OK(status
)) {
217 DEBUG(0, ("protocol negotiation failed: %s\n",
224 char *pass
= getpass("Password: ");
226 fstrcpy(password
, pass
);
230 if (!NT_STATUS_IS_OK(cli_session_setup(c
, username
,
231 password
, strlen(password
),
232 password
, strlen(password
),
234 DEBUG(0,("session setup failed: %s\n", cli_errstr(c
)));
239 * These next two lines are needed to emulate
240 * old client behaviour for people who have
241 * scripts based on client output.
242 * QUESTION ? Do we want to have a 'client compatibility
243 * mode to turn these on/off ? JRA.
246 if (*c
->server_domain
|| *c
->server_os
|| *c
->server_type
)
247 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
248 c
->server_domain
,c
->server_os
,c
->server_type
));
250 DEBUG(4,(" session setup ok\n"));
252 status
= cli_tcon_andx(c
, share
, "?????", password
,
254 if (!NT_STATUS_IS_OK(status
)) {
255 DEBUG(0,("tree connect failed: %s\n", nt_errstr(status
)));
260 DEBUG(4,(" tconx ok\n"));
265 static char *resultp
;
266 static file_info
*f_info
;
268 static void listfn(const char *mnt
, file_info
*f
, const char *s
, void *state
)
270 if (strcmp(f
->name
,".") == 0) {
272 } else if (strcmp(f
->name
,"..") == 0) {
280 static void get_real_name(struct cli_state
*cli
,
281 char **pp_long_name
, fstring short_name
)
283 *pp_long_name
= NULL
;
284 /* nasty hack to force level 260 listings - tridge */
285 cli
->capabilities
|= CAP_NT_SMBS
;
286 if (max_protocol
<= PROTOCOL_LANMAN1
) {
287 cli_list_new(cli
, "\\masktest\\*.*", aHIDDEN
| aDIR
, listfn
, NULL
);
289 cli_list_new(cli
, "\\masktest\\*", aHIDDEN
| aDIR
, listfn
, NULL
);
292 fstrcpy(short_name
, f_info
->short_name
);
293 strlower_m(short_name
);
294 *pp_long_name
= SMB_STRDUP(f_info
->name
);
295 if (!*pp_long_name
) {
298 strlower_m(*pp_long_name
);
301 if (*short_name
== 0) {
302 fstrcpy(short_name
, *pp_long_name
);
306 if (!strchr_m(short_name
,'.')) {
307 fstrcat(short_name
,".");
312 static void testpair(struct cli_state
*cli
, const char *mask
, const char *file
)
319 char *long_name
= NULL
;
323 fstrcpy(res1
, "---");
325 fnum
= cli_open(cli
, file
, O_CREAT
|O_TRUNC
|O_RDWR
, 0);
327 DEBUG(0,("Can't create %s\n", file
));
330 cli_close(cli
, fnum
);
333 fstrcpy(short_name
, "");
335 get_real_name(cli
, &long_name
, short_name
);
340 fstrcpy(res1
, "---");
341 cli_list(cli
, mask
, aHIDDEN
| aDIR
, listfn
, NULL
);
343 res2
= reg_test(cli
, mask
, long_name
, short_name
);
346 ((strcmp(res1
, res2
) && !ignore_dot_errors
) ||
347 (strcmp(res1
+2, res2
+2) && ignore_dot_errors
))) {
348 DEBUG(0,("%s %s %d mask=[%s] file=[%s] rfile=[%s/%s]\n",
349 res1
, res2
, count
, mask
, file
, long_name
, short_name
));
350 if (die_on_error
) exit(1);
353 cli_unlink(cli
, file
);
355 if (count
% 100 == 0) DEBUG(0,("%d\n", count
));
356 SAFE_FREE(long_name
);
359 static void test_mask(int argc
, char *argv
[],
360 struct cli_state
*cli
)
364 int mc_len
= strlen(maskchars
);
365 int fc_len
= strlen(filechars
);
366 TALLOC_CTX
*ctx
= talloc_tos();
368 cli_mkdir(cli
, "\\masktest");
370 cli_unlink(cli
, "\\masktest\\*");
374 mask
= talloc_asprintf(ctx
,
377 file
= talloc_asprintf(ctx
,
380 if (!mask
|| !file
) {
383 testpair(cli
, mask
, file
);
391 l1
= 1 + random() % 20;
392 l2
= 1 + random() % 20;
393 mask
= TALLOC_ARRAY(ctx
, char, strlen("\\masktest\\")+1+22);
394 file
= TALLOC_ARRAY(ctx
, char, strlen("\\masktest\\")+1+22);
395 if (!mask
|| !file
) {
398 memcpy(mask
,"\\masktest\\",strlen("\\masktest\\")+1);
399 memcpy(file
,"\\masktest\\",strlen("\\masktest\\")+1);
402 mask
[i
+l
] = maskchars
[random() % mc_len
];
407 file
[i
+l
] = filechars
[random() % fc_len
];
411 if (strcmp(file
+l
,".") == 0 ||
412 strcmp(file
+l
,"..") == 0 ||
413 strcmp(mask
+l
,"..") == 0) continue;
415 if (strspn(file
+l
, ".") == strlen(file
+l
)) continue;
417 testpair(cli
, mask
, file
);
418 if (NumLoops
&& (--NumLoops
== 0))
425 cli_rmdir(cli
, "\\masktest");
429 static void usage(void)
433 masktest //server/share [options..]\n\
441 -f filechars (default %s)\n\
442 -m maskchars (default %s)\n\
446 -i ignore . and .. errors\n\
448 This program tests wildcard matching between two servers. It generates\n\
449 random pairs of filenames/masks and tests that they match in the same\n\
450 way on the servers and internally\n\
452 filechars
, maskchars
);
455 /****************************************************************************
457 ****************************************************************************/
458 int main(int argc
,char *argv
[])
461 struct cli_state
*cli
;
465 TALLOC_CTX
*frame
= talloc_stackframe();
472 AllowDebugChange
= False
;
474 if (argc
< 2 || argv
[1][0] == '-') {
481 all_string_sub(share
,"/","\\",0);
483 setup_logging(argv
[0],True
);
488 lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
);
491 if (getenv("USER")) {
492 fstrcpy(username
,getenv("USER"));
497 while ((opt
= getopt(argc
, argv
, "n:d:U:s:hm:f:aoW:M:vEi")) != EOF
) {
500 NumLoops
= atoi(optarg
);
503 DEBUGLEVEL
= atoi(optarg
);
509 ignore_dot_errors
= 1;
515 max_protocol
= interpret_protocol(optarg
, max_protocol
);
518 fstrcpy(username
,optarg
);
519 p
= strchr_m(username
,'%');
522 fstrcpy(password
, p
+1);
545 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
554 cli
= connect_one(share
);
556 DEBUG(0,("Failed to connect to %s\n", share
));
560 /* need to init seed after connect as clientgen uses random numbers */
561 DEBUG(0,("seed=%d\n", seed
));
564 test_mask(argc
, argv
, cli
);