s3-talloc Change TALLOC_ARRAY() to talloc_array()
[samba.git] / source3 / torture / masktest.c
1 /* 
2    Unix SMB/CIFS implementation.
3    mask_match tester
4    Copyright (C) Andrew Tridgell 1999
5
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.
10
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.
15
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/>.
18 */
19
20 #include "includes.h"
21 #include "system/filesys.h"
22 #include "trans2.h"
23 #include "libsmb/libsmb.h"
24 #include "libsmb/nmblib.h"
25
26 static fstring password;
27 static fstring username;
28 static int got_pass;
29 static int max_protocol = PROTOCOL_NT1;
30 static bool showall = False;
31 static bool old_list = False;
32 static const char *maskchars = "<>\"?*abc.";
33 static const char *filechars = "abcdefghijklm.";
34 static int verbose;
35 static int die_on_error;
36 static int NumLoops = 0;
37 static int ignore_dot_errors = 0;
38
39 extern char *optarg;
40 extern int optind;
41
42 /* a test fn for LANMAN mask support */
43 static int ms_fnmatch_lanman_core(const char *pattern, const char *string)
44 {
45         const char *p = pattern, *n = string;
46         char c;
47
48         if (strcmp(p,"?")==0 && strcmp(n,".")==0) goto match;
49
50         while ((c = *p++)) {
51                 switch (c) {
52                 case '.':
53                         /* if (! *n && ! *p) goto match; */
54                         if (*n != '.') goto nomatch;
55                         n++;
56                         break;
57
58                 case '?':
59                         if ((*n == '.' && n[1] != '.') || ! *n) goto next;
60                         n++;
61                         break;
62
63                 case '>':
64                         if (n[0] == '.') {
65                                 if (! n[1] && ms_fnmatch_lanman_core(p, n+1) == 0) goto match;
66                                 if (ms_fnmatch_lanman_core(p, n) == 0) goto match;
67                                 goto nomatch;
68                         }
69                         if (! *n) goto next;
70                         n++;
71                         break;
72
73                 case '*':
74                         if (! *p) goto match;
75                         for (; *n; n++) {
76                                 if (ms_fnmatch_lanman_core(p, n) == 0) goto match;
77                         }
78                         break;
79
80                 case '<':
81                         for (; *n; n++) {
82                                 if (ms_fnmatch_lanman_core(p, n) == 0) goto match;
83                                 if (*n == '.' && !strchr_m(n+1,'.')) {
84                                         n++;
85                                         break;
86                                 }
87                         }
88                         break;
89
90                 case '"':
91                         if (*n == 0 && ms_fnmatch_lanman_core(p, n) == 0) goto match;
92                         if (*n != '.') goto nomatch;
93                         n++;
94                         break;
95
96                 default:
97                         if (c != *n) goto nomatch;
98                         n++;
99                 }
100         }
101
102         if (! *n) goto match;
103
104  nomatch:
105         if (verbose) printf("NOMATCH pattern=[%s] string=[%s]\n", pattern, string);
106         return -1;
107
108 next:
109         if (ms_fnmatch_lanman_core(p, n) == 0) goto match;
110         goto nomatch;
111
112  match:
113         if (verbose) printf("MATCH   pattern=[%s] string=[%s]\n", pattern, string);
114         return 0;
115 }
116
117 static int ms_fnmatch_lanman(const char *pattern, const char *string)
118 {
119         if (!strpbrk(pattern, "?*<>\"")) {
120                 if (strcmp(string,"..") == 0) 
121                         string = ".";
122
123                 return strcmp(pattern, string);
124         }
125
126         if (strcmp(string,"..") == 0 || strcmp(string,".") == 0) {
127                 return ms_fnmatch_lanman_core(pattern, "..") &&
128                         ms_fnmatch_lanman_core(pattern, ".");
129         }
130
131         return ms_fnmatch_lanman_core(pattern, string);
132 }
133
134 static bool reg_match_one(struct cli_state *cli, const char *pattern, const char *file)
135 {
136         /* oh what a weird world this is */
137         if (old_list && strcmp(pattern, "*.*") == 0) return True;
138
139         if (strcmp(pattern,".") == 0) return False;
140
141         if (max_protocol <= PROTOCOL_LANMAN2) {
142                 return ms_fnmatch_lanman(pattern, file)==0;
143         }
144
145         if (strcmp(file,"..") == 0) file = ".";
146
147         return ms_fnmatch(pattern, file, cli->protocol, False) == 0;
148 }
149
150 static char *reg_test(struct cli_state *cli, const char *pattern, const char *long_name, const char *short_name)
151 {
152         static fstring ret;
153         const char *new_pattern = 1+strrchr_m(pattern,'\\');
154
155         fstrcpy(ret, "---");
156         if (reg_match_one(cli, new_pattern, ".")) ret[0] = '+';
157         if (reg_match_one(cli, new_pattern, "..")) ret[1] = '+';
158         if (reg_match_one(cli, new_pattern, long_name) ||
159             (*short_name && reg_match_one(cli, new_pattern, short_name))) ret[2] = '+';
160         return ret;
161 }
162
163
164 /***************************************************** 
165 return a connection to a server
166 *******************************************************/
167 static struct cli_state *connect_one(char *share)
168 {
169         struct cli_state *c;
170         char *server_n;
171         char *server;
172         NTSTATUS status;
173
174         server = share+2;
175         share = strchr_m(server,'\\');
176         if (!share) return NULL;
177         *share = 0;
178         share++;
179
180         server_n = server;
181
182         status = cli_connect_nb(server, NULL, 0, 0x20, "masktest", Undefined,
183                                 &c);
184         if (!NT_STATUS_IS_OK(status)) {
185                 DEBUG(0,("Connection to %s failed. Error %s\n", server_n,
186                          nt_errstr(status)));
187                 return NULL;
188         }
189
190         c->protocol = max_protocol;
191
192         status = cli_negprot(c);
193         if (!NT_STATUS_IS_OK(status)) {
194                 DEBUG(0, ("protocol negotiation failed: %s\n",
195                           nt_errstr(status)));
196                 cli_shutdown(c);
197                 return NULL;
198         }
199
200         if (!got_pass) {
201                 char *pass = getpass("Password: ");
202                 if (pass) {
203                         fstrcpy(password, pass);
204                 }
205         }
206
207         status = cli_session_setup(c, username,
208                                    password, strlen(password),
209                                    password, strlen(password),
210                                    lp_workgroup());
211         if (!NT_STATUS_IS_OK(status)) {
212                 DEBUG(0, ("session setup failed: %s\n", nt_errstr(status)));
213                 return NULL;
214         }
215
216         /*
217          * These next two lines are needed to emulate
218          * old client behaviour for people who have
219          * scripts based on client output.
220          * QUESTION ? Do we want to have a 'client compatibility
221          * mode to turn these on/off ? JRA.
222          */
223
224         if (*c->server_domain || *c->server_os || *c->server_type)
225                 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
226                         c->server_domain,c->server_os,c->server_type));
227
228         DEBUG(4,(" session setup ok\n"));
229
230         status = cli_tcon_andx(c, share, "?????", password,
231                                strlen(password)+1);
232         if (!NT_STATUS_IS_OK(status)) {
233                 DEBUG(0,("tree connect failed: %s\n", nt_errstr(status)));
234                 cli_shutdown(c);
235                 return NULL;
236         }
237
238         DEBUG(4,(" tconx ok\n"));
239
240         return c;
241 }
242
243 static char *resultp;
244
245 struct rn_state {
246         char **pp_long_name;
247         char *short_name;
248 };
249
250 static NTSTATUS listfn(const char *mnt, struct file_info *f, const char *s,
251                    void *private_data)
252 {
253         struct rn_state *state = (struct rn_state *)private_data;
254         if (strcmp(f->name,".") == 0) {
255                 resultp[0] = '+';
256         } else if (strcmp(f->name,"..") == 0) {
257                 resultp[1] = '+';
258         } else {
259                 resultp[2] = '+';
260         }
261
262         if (state == NULL) {
263                 return NT_STATUS_INTERNAL_ERROR;
264         }
265
266         if (ISDOT(f->name) || ISDOTDOT(f->name))  {
267                 return NT_STATUS_OK;
268         }
269
270         fstrcpy(state->short_name, f->short_name);
271         strlower_m(state->short_name);
272         *state->pp_long_name = SMB_STRDUP(f->name);
273         if (!*state->pp_long_name) {
274                 return NT_STATUS_NO_MEMORY;
275         }
276         strlower_m(*state->pp_long_name);
277         return NT_STATUS_OK;
278 }
279
280 static void get_real_name(struct cli_state *cli,
281                           char **pp_long_name, fstring short_name)
282 {
283         struct rn_state state;
284
285         state.pp_long_name = pp_long_name;
286         state.short_name = short_name;
287
288         *pp_long_name = NULL;
289         /* nasty hack to force level 260 listings - tridge */
290         if (max_protocol <= PROTOCOL_LANMAN1) {
291                 cli_list_trans(cli, "\\masktest\\*.*", FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,
292                                SMB_FIND_FILE_BOTH_DIRECTORY_INFO, listfn,
293                                &state);
294         } else {
295                 cli_list_trans(cli, "\\masktest\\*", FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,
296                                SMB_FIND_FILE_BOTH_DIRECTORY_INFO,
297                                listfn, &state);
298         }
299
300         if (*short_name == 0) {
301                 fstrcpy(short_name, *pp_long_name);
302         }
303
304 #if 0
305         if (!strchr_m(short_name,'.')) {
306                 fstrcat(short_name,".");
307         }
308 #endif
309 }
310
311 static void testpair(struct cli_state *cli, const char *mask, const char *file)
312 {
313         uint16_t fnum;
314         fstring res1;
315         char *res2;
316         static int count;
317         fstring short_name;
318         char *long_name = NULL;
319
320         count++;
321
322         fstrcpy(res1, "---");
323
324         if (!NT_STATUS_IS_OK(cli_open(cli, file, O_CREAT|O_TRUNC|O_RDWR, 0, &fnum))) {
325                 DEBUG(0,("Can't create %s\n", file));
326                 return;
327         }
328         cli_close(cli, fnum);
329
330         resultp = res1;
331         fstrcpy(short_name, "");
332         get_real_name(cli, &long_name, short_name);
333         if (!long_name) {
334                 return;
335         }
336         fstrcpy(res1, "---");
337         cli_list(cli, mask, FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY, listfn, NULL);
338
339         res2 = reg_test(cli, mask, long_name, short_name);
340
341         if (showall ||
342             ((strcmp(res1, res2) && !ignore_dot_errors) ||
343              (strcmp(res1+2, res2+2) && ignore_dot_errors))) {
344                 DEBUG(0,("%s %s %d mask=[%s] file=[%s] rfile=[%s/%s]\n",
345                          res1, res2, count, mask, file, long_name, short_name));
346                 if (die_on_error) exit(1);
347         }
348
349         cli_unlink(cli, file, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
350
351         if (count % 100 == 0) DEBUG(0,("%d\n", count));
352         SAFE_FREE(long_name);
353 }
354
355 static void test_mask(int argc, char *argv[],
356                       struct cli_state *cli)
357 {
358         char *mask, *file;
359         int l1, l2, i, l;
360         int mc_len = strlen(maskchars);
361         int fc_len = strlen(filechars);
362         TALLOC_CTX *ctx = talloc_tos();
363
364         cli_mkdir(cli, "\\masktest");
365
366         cli_unlink(cli, "\\masktest\\*", FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
367
368         if (argc >= 2) {
369                 while (argc >= 2) {
370                         mask = talloc_asprintf(ctx,
371                                         "\\masktest\\%s",
372                                         argv[0]);
373                         file = talloc_asprintf(ctx,
374                                         "\\masktest\\%s",
375                                         argv[1]);
376                         if (!mask || !file) {
377                                 goto finished;
378                         }
379                         testpair(cli, mask, file);
380                         argv += 2;
381                         argc -= 2;
382                 }
383                 goto finished;
384         }
385
386         while (1) {
387                 l1 = 1 + random() % 20;
388                 l2 = 1 + random() % 20;
389                 mask = talloc_array(ctx, char, strlen("\\masktest\\")+1+22);
390                 file = talloc_array(ctx, char, strlen("\\masktest\\")+1+22);
391                 if (!mask || !file) {
392                         goto finished;
393                 }
394                 memcpy(mask,"\\masktest\\",strlen("\\masktest\\")+1);
395                 memcpy(file,"\\masktest\\",strlen("\\masktest\\")+1);
396                 l = strlen(mask);
397                 for (i=0;i<l1;i++) {
398                         mask[i+l] = maskchars[random() % mc_len];
399                 }
400                 mask[l+l1] = 0;
401
402                 for (i=0;i<l2;i++) {
403                         file[i+l] = filechars[random() % fc_len];
404                 }
405                 file[l+l2] = 0;
406
407                 if (strcmp(file+l,".") == 0 || 
408                     strcmp(file+l,"..") == 0 ||
409                     strcmp(mask+l,"..") == 0) continue;
410
411                 if (strspn(file+l, ".") == strlen(file+l)) continue;
412
413                 testpair(cli, mask, file);
414                 if (NumLoops && (--NumLoops == 0))
415                         break;
416                 TALLOC_FREE(mask);
417                 TALLOC_FREE(file);
418         }
419
420  finished:
421         cli_rmdir(cli, "\\masktest");
422 }
423
424
425 static void usage(void)
426 {
427         printf(
428 "Usage:\n\
429   masktest //server/share [options..]\n\
430   options:\n\
431         -d debuglevel\n\
432         -n numloops\n\
433         -W workgroup\n\
434         -U user%%pass\n\
435         -s seed\n\
436         -M max protocol\n\
437         -f filechars (default %s)\n\
438         -m maskchars (default %s)\n\
439         -v                             verbose mode\n\
440         -E                             die on error\n\
441         -a                             show all tests\n\
442         -i                             ignore . and .. errors\n\
443 \n\
444   This program tests wildcard matching between two servers. It generates\n\
445   random pairs of filenames/masks and tests that they match in the same\n\
446   way on the servers and internally\n\
447 ", 
448   filechars, maskchars);
449 }
450
451 /****************************************************************************
452   main program
453 ****************************************************************************/
454  int main(int argc,char *argv[])
455 {
456         char *share;
457         struct cli_state *cli;
458         int opt;
459         char *p;
460         int seed;
461         TALLOC_CTX *frame = talloc_stackframe();
462
463         setlinebuf(stdout);
464
465         lp_set_cmdline("log level", "0");
466
467         if (argc < 2 || argv[1][0] == '-') {
468                 usage();
469                 exit(1);
470         }
471
472         share = argv[1];
473
474         all_string_sub(share,"/","\\",0);
475
476         setup_logging(argv[0], DEBUG_STDERR);
477
478         argc -= 1;
479         argv += 1;
480
481         load_case_tables();
482         lp_load(get_dyn_CONFIGFILE(),True,False,False,True);
483         load_interfaces();
484
485         if (getenv("USER")) {
486                 fstrcpy(username,getenv("USER"));
487         }
488
489         seed = time(NULL);
490
491         while ((opt = getopt(argc, argv, "n:d:U:s:hm:f:aoW:M:vEi")) != EOF) {
492                 switch (opt) {
493                 case 'n':
494                         NumLoops = atoi(optarg);
495                         break;
496                 case 'd':
497                         lp_set_cmdline("log level", optarg);
498                         break;
499                 case 'E':
500                         die_on_error = 1;
501                         break;
502                 case 'i':
503                         ignore_dot_errors = 1;
504                         break;
505                 case 'v':
506                         verbose++;
507                         break;
508                 case 'M':
509                         max_protocol = interpret_protocol(optarg, max_protocol);
510                         break;
511                 case 'U':
512                         fstrcpy(username,optarg);
513                         p = strchr_m(username,'%');
514                         if (p) {
515                                 *p = 0;
516                                 fstrcpy(password, p+1);
517                                 got_pass = 1;
518                         }
519                         break;
520                 case 's':
521                         seed = atoi(optarg);
522                         break;
523                 case 'h':
524                         usage();
525                         exit(1);
526                 case 'm':
527                         maskchars = optarg;
528                         break;
529                 case 'f':
530                         filechars = optarg;
531                         break;
532                 case 'a':
533                         showall = 1;
534                         break;
535                 case 'o':
536                         old_list = True;
537                         break;
538                 default:
539                         printf("Unknown option %c (%d)\n", (char)opt, opt);
540                         exit(1);
541                 }
542         }
543
544         argc -= optind;
545         argv += optind;
546
547
548         cli = connect_one(share);
549         if (!cli) {
550                 DEBUG(0,("Failed to connect to %s\n", share));
551                 exit(1);
552         }
553
554         /* need to init seed after connect as clientgen uses random numbers */
555         DEBUG(0,("seed=%d\n", seed));
556         srandom(seed);
557
558         test_mask(argc, argv, cli);
559
560         TALLOC_FREE(frame);
561         return(0);
562 }