Remove more event_context_init() uses from function calls within deep down the code.
[kai/samba-autobuild/.git] / source4 / 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 "lib/cmdline/popt_common.h"
22 #include "system/filesys.h"
23 #include "system/dir.h"
24 #include "libcli/libcli.h"
25 #include "libcli/raw/libcliraw.h"
26 #include "system/time.h"
27 #include "pstring.h"
28 #include "auth/credentials/credentials.h"
29 #include "auth/gensec/gensec.h"
30 #include "param/param.h"
31 #include "dynconfig.h"
32 #include "libcli/resolve/resolve.h"
33 #include "lib/events/events.h"
34
35 static bool showall = false;
36 static bool old_list = false;
37 static const char *maskchars = "<>\"?*abc.";
38 static const char *filechars = "abcdefghijklm.";
39 static int die_on_error;
40 static int NumLoops = 0;
41 static int max_length = 20;
42 struct masktest_state {
43         TALLOC_CTX *mem_ctx;
44 };
45
46 static bool reg_match_one(struct smbcli_state *cli, const char *pattern, const char *file)
47 {
48         /* oh what a weird world this is */
49         if (old_list && strcmp(pattern, "*.*") == 0) return true;
50
51         if (ISDOT(pattern)) return false;
52
53         if (ISDOTDOT(file)) file = ".";
54
55         return ms_fnmatch(pattern, file, cli->transport->negotiate.protocol)==0;
56 }
57
58 static char *reg_test(struct smbcli_state *cli, char *pattern, char *long_name, char *short_name)
59 {
60         static fstring ret;
61         fstrcpy(ret, "---");
62
63         pattern = 1+strrchr_m(pattern,'\\');
64
65         if (reg_match_one(cli, pattern, ".")) ret[0] = '+';
66         if (reg_match_one(cli, pattern, "..")) ret[1] = '+';
67         if (reg_match_one(cli, pattern, long_name) || 
68             (*short_name && reg_match_one(cli, pattern, short_name))) ret[2] = '+';
69         return ret;
70 }
71
72
73 /***************************************************** 
74 return a connection to a server
75 *******************************************************/
76 static struct smbcli_state *connect_one(struct resolve_context *resolve_ctx, 
77                                         struct event_context *ev,
78                                         char *share, const char **ports,
79                                         struct smbcli_options *options)
80 {
81         struct smbcli_state *c;
82         fstring server;
83         NTSTATUS status;
84
85         fstrcpy(server,share+2);
86         share = strchr_m(server,'\\');
87         if (!share) return NULL;
88         *share = 0;
89         share++;
90
91         cli_credentials_set_workstation(cmdline_credentials, "masktest", CRED_SPECIFIED);
92
93         status = smbcli_full_connection(NULL, &c,
94                                         server, 
95                                         ports,
96                                         share, NULL,
97                                         cmdline_credentials, resolve_ctx, ev,
98                                         options);
99
100         if (!NT_STATUS_IS_OK(status)) {
101                 return NULL;
102         }
103
104         return c;
105 }
106
107 static char *resultp;
108 static struct {
109         char *long_name;
110         char *short_name;
111 } last_hit;
112 static bool f_info_hit;
113
114 static void listfn(struct clilist_file_info *f, const char *s, void *state)
115 {
116         struct masktest_state *m = (struct masktest_state *)state;
117
118         if (ISDOT(f->name)) {
119                 resultp[0] = '+';
120         } else if (ISDOTDOT(f->name)) {
121                 resultp[1] = '+';
122         } else {
123                 resultp[2] = '+';
124         }
125
126         last_hit.long_name = talloc_strdup(m->mem_ctx, f->name);
127         last_hit.short_name = talloc_strdup(m->mem_ctx, f->short_name);
128         f_info_hit = true;
129 }
130
131 static void get_real_name(TALLOC_CTX *mem_ctx, struct smbcli_state *cli,
132                           char **long_name, fstring short_name)
133 {
134         const char *mask;
135         struct masktest_state state;
136
137         if (cli->transport->negotiate.protocol <= PROTOCOL_LANMAN1) {
138                 mask = "\\masktest\\*.*";
139         } else {
140                 mask = "\\masktest\\*";
141         }
142
143         f_info_hit = false;
144
145         state.mem_ctx = mem_ctx;
146
147         smbcli_list_new(cli->tree, mask,
148                         FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,
149                         RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO,
150                         listfn, &state);
151
152         if (f_info_hit) {
153                 fstrcpy(short_name, last_hit.short_name);
154                 strlower(short_name);
155                 *long_name = talloc_strdup(mem_ctx, last_hit.long_name);
156                 strlower(*long_name);
157         }
158
159         if (*short_name == '\0') {
160                 fstrcpy(short_name, *long_name);
161         }
162 }
163
164 static void testpair(TALLOC_CTX *mem_ctx, struct smbcli_state *cli, char *mask,
165                 char *file)
166 {
167         int fnum;
168         fstring res1;
169         char *res2;
170         static int count;
171         fstring short_name;
172         char *long_name = NULL;
173         struct masktest_state state;
174
175         count++;
176
177         fstrcpy(res1, "---");
178
179         state.mem_ctx = mem_ctx;
180
181         fnum = smbcli_open(cli->tree, file, O_CREAT|O_TRUNC|O_RDWR, 0);
182         if (fnum == -1) {
183                 DEBUG(0,("Can't create %s\n", file));
184                 return;
185         }
186         smbcli_close(cli->tree, fnum);
187
188         resultp = res1;
189         fstrcpy(short_name, "");
190         get_real_name(mem_ctx, cli, &long_name, short_name);
191         fstrcpy(res1, "---");
192         smbcli_list_new(cli->tree, mask,
193                         FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,
194                         RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO,
195                         listfn, &state);
196
197         res2 = reg_test(cli, mask, long_name, short_name);
198
199         if (showall || strcmp(res1, res2)) {
200                 d_printf("%s %s %d mask=[%s] file=[%s] rfile=[%s/%s]\n",
201                          res1, res2, count, mask, file, long_name, short_name);
202                 if (die_on_error) exit(1);
203         }
204
205         smbcli_unlink(cli->tree, file);
206
207         if (count % 100 == 0) DEBUG(0,("%d\n", count));
208
209         resultp = NULL;
210 }
211
212 static void test_mask(int argc, char *argv[],
213                       struct smbcli_state *cli)
214 {
215         TALLOC_CTX *mem_ctx;
216         char *mask, *file;
217         int l1, l2, i, l;
218         int mc_len = strlen(maskchars);
219         int fc_len = strlen(filechars);
220
221         mem_ctx = talloc_init("test_mask");
222
223         smbcli_mkdir(cli->tree, "\\masktest");
224
225         smbcli_unlink(cli->tree, "\\masktest\\*");
226
227         if (argc >= 2) {
228                 while (argc >= 2) {
229                         mask = talloc_strdup(mem_ctx, "\\masktest\\");
230                         file = talloc_strdup(mem_ctx, "\\masktest\\");
231                         mask = talloc_strdup_append(mask, argv[0]);
232                         file = talloc_strdup_append(file, argv[1]);
233                         testpair(mem_ctx, cli, mask, file);
234                         argv += 2;
235                         argc -= 2;
236                 }
237                 goto finished;
238         }
239
240         while (1) {
241                 l1 = 1 + random() % max_length;
242                 l2 = 1 + random() % max_length;
243                 mask = talloc_strdup(mem_ctx, "\\masktest\\");
244                 file = talloc_strdup(mem_ctx, "\\masktest\\");
245                 mask = talloc_realloc_size(mem_ctx, mask, strlen(mask)+l1+1);
246                 file = talloc_realloc_size(mem_ctx, file, strlen(file)+l2+1);
247                 l = strlen(mask);
248                 for (i=0;i<l1;i++) {
249                         mask[i+l] = maskchars[random() % mc_len];
250                 }
251                 mask[l+l1] = 0;
252
253                 for (i=0;i<l2;i++) {
254                         file[i+l] = filechars[random() % fc_len];
255                 }
256                 file[l+l2] = 0;
257
258                 if (ISDOT(file+l) || ISDOTDOT(file+l) || ISDOTDOT(mask+l)) {
259                         continue;
260                 }
261
262                 if (strspn(file+l, ".") == strlen(file+l)) continue;
263
264                 testpair(mem_ctx, cli, mask, file);
265                 if (NumLoops && (--NumLoops == 0))
266                         break;
267         }
268
269  finished:
270         smbcli_rmdir(cli->tree, "\\masktest");
271         talloc_free(mem_ctx);
272 }
273
274
275 static void usage(poptContext pc)
276 {
277         printf(
278 "Usage:\n\
279   masktest //server/share [options..]\n\
280 \n\
281   This program tests wildcard matching between two servers. It generates\n\
282   random pairs of filenames/masks and tests that they match in the same\n\
283   way on the servers and internally\n");
284         poptPrintUsage(pc, stdout, 0);
285 }
286
287 /****************************************************************************
288   main program
289 ****************************************************************************/
290  int main(int argc,char *argv[])
291 {
292         char *share;
293         struct smbcli_state *cli;       
294         int opt;
295         int seed;
296         struct event_context *ev;
297         struct loadparm_context *lp_ctx;
298         struct smbcli_options options;
299         poptContext pc;
300         int argc_new, i;
301         char **argv_new;
302         enum {OPT_UNCLIST=1000};
303         struct poptOption long_options[] = {
304                 POPT_AUTOHELP
305                 {"seed",          0, POPT_ARG_INT,  &seed,      0,      "Seed to use for randomizer",   NULL},
306                 {"num-ops",       0, POPT_ARG_INT,  &NumLoops,  0,      "num ops",      NULL},
307                 {"maxlength",     0, POPT_ARG_INT,  &max_length,0,      "maximum length",       NULL},
308                 {"dieonerror",    0, POPT_ARG_NONE, &die_on_error, 0,   "die on errors", NULL},
309                 {"showall",       0, POPT_ARG_NONE, &showall,    0,      "display all operations", NULL},
310                 {"oldlist",       0, POPT_ARG_NONE, &old_list,    0,     "use old list call", NULL},
311                 {"maskchars",     0, POPT_ARG_STRING,   &maskchars,    0,"mask characters",     NULL},
312                 {"filechars",     0, POPT_ARG_STRING,   &filechars,    0,"file characters",     NULL},
313                 POPT_COMMON_SAMBA
314                 POPT_COMMON_CONNECTION
315                 POPT_COMMON_CREDENTIALS
316                 POPT_COMMON_VERSION
317                 { NULL }
318         };
319
320         setlinebuf(stdout);
321         seed = time(NULL);
322
323         pc = poptGetContext("locktest", argc, (const char **) argv, long_options, 
324                             POPT_CONTEXT_KEEP_FIRST);
325
326         poptSetOtherOptionHelp(pc, "<unc>");
327
328         while((opt = poptGetNextOpt(pc)) != -1) {
329                 switch (opt) {
330                 case OPT_UNCLIST:
331                         lp_set_cmdline(cmdline_lp_ctx, "torture:unclist", poptGetOptArg(pc));
332                         break;
333                 }
334         }
335
336         argv_new = discard_const_p(char *, poptGetArgs(pc));
337         argc_new = argc;
338         for (i=0; i<argc; i++) {
339                 if (argv_new[i] == NULL) {
340                         argc_new = i;
341                         break;
342                 }
343         }
344
345         if (!(argc_new >= 2)) {
346                 usage(pc);
347                 exit(1);
348         }
349
350         setup_logging("masktest", DEBUG_STDOUT);
351
352         share = argv_new[1];
353
354         all_string_sub(share,"/","\\",0);
355
356         lp_ctx = cmdline_lp_ctx;
357
358         ev = event_context_init(talloc_autofree_context());
359
360         gensec_init(lp_ctx);
361
362         lp_smbcli_options(lp_ctx, &options);
363
364         cli = connect_one(lp_resolve_context(lp_ctx), ev, share, 
365                           lp_smb_ports(lp_ctx), &options);
366         if (!cli) {
367                 DEBUG(0,("Failed to connect to %s\n", share));
368                 exit(1);
369         }
370
371         /* need to init seed after connect as clientgen uses random numbers */
372         DEBUG(0,("seed=%d     format --- --- (server, correct)\n", seed));
373         srandom(seed);
374
375         test_mask(argc_new-1, argv_new+1, cli);
376
377         return(0);
378 }