[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / torture / masktest.c
blobe98cf81f33329c0851eb1322516ce11d4ead416b
1 /*
2 Unix SMB/CIFS implementation.
3 mask_match tester
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 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 #include "includes.h"
23 static fstring password;
24 static fstring username;
25 static int got_pass;
26 static int max_protocol = PROTOCOL_NT1;
27 static BOOL showall = False;
28 static BOOL old_list = False;
29 static const char *maskchars = "<>\"?*abc.";
30 static const char *filechars = "abcdefghijklm.";
31 static int verbose;
32 static int die_on_error;
33 static int NumLoops = 0;
34 static int ignore_dot_errors = 0;
36 extern char *optarg;
37 extern int optind;
38 extern BOOL AllowDebugChange;
40 /* a test fn for LANMAN mask support */
41 static int ms_fnmatch_lanman_core(const char *pattern, const char *string)
43 const char *p = pattern, *n = string;
44 char c;
46 if (strcmp(p,"?")==0 && strcmp(n,".")==0) goto match;
48 while ((c = *p++)) {
49 switch (c) {
50 case '.':
51 /* if (! *n && ! *p) goto match; */
52 if (*n != '.') goto nomatch;
53 n++;
54 break;
56 case '?':
57 if ((*n == '.' && n[1] != '.') || ! *n) goto next;
58 n++;
59 break;
61 case '>':
62 if (n[0] == '.') {
63 if (! n[1] && ms_fnmatch_lanman_core(p, n+1) == 0) goto match;
64 if (ms_fnmatch_lanman_core(p, n) == 0) goto match;
65 goto nomatch;
67 if (! *n) goto next;
68 n++;
69 break;
71 case '*':
72 if (! *p) goto match;
73 for (; *n; n++) {
74 if (ms_fnmatch_lanman_core(p, n) == 0) goto match;
76 break;
78 case '<':
79 for (; *n; n++) {
80 if (ms_fnmatch_lanman_core(p, n) == 0) goto match;
81 if (*n == '.' && !strchr_m(n+1,'.')) {
82 n++;
83 break;
86 break;
88 case '"':
89 if (*n == 0 && ms_fnmatch_lanman_core(p, n) == 0) goto match;
90 if (*n != '.') goto nomatch;
91 n++;
92 break;
94 default:
95 if (c != *n) goto nomatch;
96 n++;
100 if (! *n) goto match;
102 nomatch:
103 if (verbose) printf("NOMATCH pattern=[%s] string=[%s]\n", pattern, string);
104 return -1;
106 next:
107 if (ms_fnmatch_lanman_core(p, n) == 0) goto match;
108 goto nomatch;
110 match:
111 if (verbose) printf("MATCH pattern=[%s] string=[%s]\n", pattern, string);
112 return 0;
115 static int ms_fnmatch_lanman(const char *pattern, const char *string)
117 if (!strpbrk(pattern, "?*<>\"")) {
118 if (strcmp(string,"..") == 0)
119 string = ".";
121 return strcmp(pattern, string);
124 if (strcmp(string,"..") == 0 || strcmp(string,".") == 0) {
125 return ms_fnmatch_lanman_core(pattern, "..") &&
126 ms_fnmatch_lanman_core(pattern, ".");
129 return ms_fnmatch_lanman_core(pattern, string);
132 static BOOL reg_match_one(struct cli_state *cli, const char *pattern, const char *file)
134 /* oh what a weird world this is */
135 if (old_list && strcmp(pattern, "*.*") == 0) return True;
137 if (strcmp(pattern,".") == 0) return False;
139 if (max_protocol <= PROTOCOL_LANMAN2) {
140 return ms_fnmatch_lanman(pattern, file)==0;
143 if (strcmp(file,"..") == 0) file = ".";
145 return ms_fnmatch(pattern, file, cli->protocol, False) == 0;
148 static char *reg_test(struct cli_state *cli, char *pattern, char *long_name, char *short_name)
150 static fstring ret;
151 fstrcpy(ret, "---");
153 pattern = 1+strrchr_m(pattern,'\\');
155 if (reg_match_one(cli, pattern, ".")) ret[0] = '+';
156 if (reg_match_one(cli, pattern, "..")) ret[1] = '+';
157 if (reg_match_one(cli, pattern, long_name) ||
158 (*short_name && reg_match_one(cli, pattern, short_name))) ret[2] = '+';
159 return ret;
163 /*****************************************************
164 return a connection to a server
165 *******************************************************/
166 static struct cli_state *connect_one(char *share)
168 struct cli_state *c;
169 struct nmb_name called, calling;
170 char *server_n;
171 char *server;
172 struct in_addr ip;
173 NTSTATUS status;
175 server = share+2;
176 share = strchr_m(server,'\\');
177 if (!share) return NULL;
178 *share = 0;
179 share++;
181 server_n = server;
183 zero_ip(&ip);
185 make_nmb_name(&calling, "masktest", 0x0);
186 make_nmb_name(&called , server, 0x20);
188 again:
189 zero_ip(&ip);
191 /* have to open a new connection */
192 if (!(c=cli_initialise())) {
193 DEBUG(0,("Connection to %s failed\n", server_n));
194 return NULL;
197 status = cli_connect(c, server_n, &ip);
198 if (!NT_STATUS_IS_OK(status)) {
199 DEBUG(0,("Connection to %s failed. Error %s\n", server_n, nt_errstr(status) ));
200 return NULL;
203 c->protocol = max_protocol;
205 if (!cli_session_request(c, &calling, &called)) {
206 DEBUG(0,("session request to %s failed\n", called.name));
207 cli_shutdown(c);
208 if (strcmp(called.name, "*SMBSERVER")) {
209 make_nmb_name(&called , "*SMBSERVER", 0x20);
210 goto again;
212 return NULL;
215 DEBUG(4,(" session request ok\n"));
217 if (!cli_negprot(c)) {
218 DEBUG(0,("protocol negotiation failed\n"));
219 cli_shutdown(c);
220 return NULL;
223 if (!got_pass) {
224 char *pass = getpass("Password: ");
225 if (pass) {
226 fstrcpy(password, pass);
230 if (!NT_STATUS_IS_OK(cli_session_setup(c, username,
231 password, strlen(password),
232 password, strlen(password),
233 lp_workgroup()))) {
234 DEBUG(0,("session setup failed: %s\n", cli_errstr(c)));
235 return NULL;
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 if (!cli_send_tconX(c, share, "?????",
253 password, strlen(password)+1)) {
254 DEBUG(0,("tree connect failed: %s\n", cli_errstr(c)));
255 cli_shutdown(c);
256 return NULL;
259 DEBUG(4,(" tconx ok\n"));
261 return c;
264 static char *resultp;
265 static file_info *f_info;
267 static void listfn(const char *mnt, file_info *f, const char *s, void *state)
269 if (strcmp(f->name,".") == 0) {
270 resultp[0] = '+';
271 } else if (strcmp(f->name,"..") == 0) {
272 resultp[1] = '+';
273 } else {
274 resultp[2] = '+';
276 f_info = f;
279 static void get_real_name(struct cli_state *cli,
280 pstring long_name, fstring short_name)
282 /* nasty hack to force level 260 listings - tridge */
283 cli->capabilities |= CAP_NT_SMBS;
284 if (max_protocol <= PROTOCOL_LANMAN1) {
285 cli_list_new(cli, "\\masktest\\*.*", aHIDDEN | aDIR, listfn, NULL);
286 } else {
287 cli_list_new(cli, "\\masktest\\*", aHIDDEN | aDIR, listfn, NULL);
289 if (f_info) {
290 fstrcpy(short_name, f_info->short_name);
291 strlower_m(short_name);
292 pstrcpy(long_name, f_info->name);
293 strlower_m(long_name);
296 if (*short_name == 0) {
297 fstrcpy(short_name, long_name);
300 #if 0
301 if (!strchr_m(short_name,'.')) {
302 fstrcat(short_name,".");
304 #endif
307 static void testpair(struct cli_state *cli, char *mask, char *file)
309 int fnum;
310 fstring res1;
311 char *res2;
312 static int count;
313 fstring short_name;
314 pstring long_name;
316 count++;
318 fstrcpy(res1, "---");
320 fnum = cli_open(cli, file, O_CREAT|O_TRUNC|O_RDWR, 0);
321 if (fnum == -1) {
322 DEBUG(0,("Can't create %s\n", file));
323 return;
325 cli_close(cli, fnum);
327 resultp = res1;
328 fstrcpy(short_name, "");
329 f_info = NULL;
330 get_real_name(cli, long_name, short_name);
331 f_info = NULL;
332 fstrcpy(res1, "---");
333 cli_list(cli, mask, aHIDDEN | aDIR, listfn, NULL);
335 res2 = reg_test(cli, mask, long_name, short_name);
337 if (showall ||
338 ((strcmp(res1, res2) && !ignore_dot_errors) ||
339 (strcmp(res1+2, res2+2) && ignore_dot_errors))) {
340 DEBUG(0,("%s %s %d mask=[%s] file=[%s] rfile=[%s/%s]\n",
341 res1, res2, count, mask, file, long_name, short_name));
342 if (die_on_error) exit(1);
345 cli_unlink(cli, file);
347 if (count % 100 == 0) DEBUG(0,("%d\n", count));
350 static void test_mask(int argc, char *argv[],
351 struct cli_state *cli)
353 pstring mask, file;
354 int l1, l2, i, l;
355 int mc_len = strlen(maskchars);
356 int fc_len = strlen(filechars);
358 cli_mkdir(cli, "\\masktest");
360 cli_unlink(cli, "\\masktest\\*");
362 if (argc >= 2) {
363 while (argc >= 2) {
364 pstrcpy(mask,"\\masktest\\");
365 pstrcpy(file,"\\masktest\\");
366 pstrcat(mask, argv[0]);
367 pstrcat(file, argv[1]);
368 testpair(cli, mask, file);
369 argv += 2;
370 argc -= 2;
372 goto finished;
375 while (1) {
376 l1 = 1 + random() % 20;
377 l2 = 1 + random() % 20;
378 pstrcpy(mask,"\\masktest\\");
379 pstrcpy(file,"\\masktest\\");
380 l = strlen(mask);
381 for (i=0;i<l1;i++) {
382 mask[i+l] = maskchars[random() % mc_len];
384 mask[l+l1] = 0;
386 for (i=0;i<l2;i++) {
387 file[i+l] = filechars[random() % fc_len];
389 file[l+l2] = 0;
391 if (strcmp(file+l,".") == 0 ||
392 strcmp(file+l,"..") == 0 ||
393 strcmp(mask+l,"..") == 0) continue;
395 if (strspn(file+l, ".") == strlen(file+l)) continue;
397 testpair(cli, mask, file);
398 if (NumLoops && (--NumLoops == 0))
399 break;
402 finished:
403 cli_rmdir(cli, "\\masktest");
407 static void usage(void)
409 printf(
410 "Usage:\n\
411 masktest //server/share [options..]\n\
412 options:\n\
413 -d debuglevel\n\
414 -n numloops\n\
415 -W workgroup\n\
416 -U user%%pass\n\
417 -s seed\n\
418 -M max protocol\n\
419 -f filechars (default %s)\n\
420 -m maskchars (default %s)\n\
421 -v verbose mode\n\
422 -E die on error\n\
423 -a show all tests\n\
424 -i ignore . and .. errors\n\
426 This program tests wildcard matching between two servers. It generates\n\
427 random pairs of filenames/masks and tests that they match in the same\n\
428 way on the servers and internally\n\
430 filechars, maskchars);
433 /****************************************************************************
434 main program
435 ****************************************************************************/
436 int main(int argc,char *argv[])
438 char *share;
439 struct cli_state *cli;
440 int opt;
441 char *p;
442 int seed;
444 setlinebuf(stdout);
446 dbf = x_stderr;
448 DEBUGLEVEL = 0;
449 AllowDebugChange = False;
451 if (argc < 2 || argv[1][0] == '-') {
452 usage();
453 exit(1);
456 share = argv[1];
458 all_string_sub(share,"/","\\",0);
460 setup_logging(argv[0],True);
462 argc -= 1;
463 argv += 1;
465 lp_load(dyn_CONFIGFILE,True,False,False,True);
466 load_interfaces();
468 if (getenv("USER")) {
469 fstrcpy(username,getenv("USER"));
472 seed = time(NULL);
474 while ((opt = getopt(argc, argv, "n:d:U:s:hm:f:aoW:M:vEi")) != EOF) {
475 switch (opt) {
476 case 'n':
477 NumLoops = atoi(optarg);
478 break;
479 case 'd':
480 DEBUGLEVEL = atoi(optarg);
481 break;
482 case 'E':
483 die_on_error = 1;
484 break;
485 case 'i':
486 ignore_dot_errors = 1;
487 break;
488 case 'v':
489 verbose++;
490 break;
491 case 'M':
492 max_protocol = interpret_protocol(optarg, max_protocol);
493 break;
494 case 'U':
495 fstrcpy(username,optarg);
496 p = strchr_m(username,'%');
497 if (p) {
498 *p = 0;
499 fstrcpy(password, p+1);
500 got_pass = 1;
502 break;
503 case 's':
504 seed = atoi(optarg);
505 break;
506 case 'h':
507 usage();
508 exit(1);
509 case 'm':
510 maskchars = optarg;
511 break;
512 case 'f':
513 filechars = optarg;
514 break;
515 case 'a':
516 showall = 1;
517 break;
518 case 'o':
519 old_list = True;
520 break;
521 default:
522 printf("Unknown option %c (%d)\n", (char)opt, opt);
523 exit(1);
527 argc -= optind;
528 argv += optind;
531 cli = connect_one(share);
532 if (!cli) {
533 DEBUG(0,("Failed to connect to %s\n", share));
534 exit(1);
537 /* need to init seed after connect as clientgen uses random numbers */
538 DEBUG(0,("seed=%d\n", seed));
539 srandom(seed);
541 test_mask(argc, argv, cli);
543 return(0);