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;
38 /* a test fn for LANMAN mask support */
39 static int ms_fnmatch_lanman_core(const char *pattern
, const char *string
)
41 const char *p
= pattern
, *n
= string
;
44 if (strcmp(p
,"?")==0 && strcmp(n
,".")==0) goto match
;
49 /* if (! *n && ! *p) goto match; */
50 if (*n
!= '.') goto nomatch
;
55 if ((*n
== '.' && n
[1] != '.') || ! *n
) goto next
;
61 if (! n
[1] && ms_fnmatch_lanman_core(p
, n
+1) == 0) goto match
;
62 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
72 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
78 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
79 if (*n
== '.' && !strchr_m(n
+1,'.')) {
87 if (*n
== 0 && ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
88 if (*n
!= '.') goto nomatch
;
93 if (c
!= *n
) goto nomatch
;
101 if (verbose
) printf("NOMATCH pattern=[%s] string=[%s]\n", pattern
, string
);
105 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
109 if (verbose
) printf("MATCH pattern=[%s] string=[%s]\n", pattern
, string
);
113 static int ms_fnmatch_lanman(const char *pattern
, const char *string
)
115 if (!strpbrk(pattern
, "?*<>\"")) {
116 if (strcmp(string
,"..") == 0)
119 return strcmp(pattern
, string
);
122 if (strcmp(string
,"..") == 0 || strcmp(string
,".") == 0) {
123 return ms_fnmatch_lanman_core(pattern
, "..") &&
124 ms_fnmatch_lanman_core(pattern
, ".");
127 return ms_fnmatch_lanman_core(pattern
, string
);
130 static bool reg_match_one(struct cli_state
*cli
, const char *pattern
, const char *file
)
132 /* oh what a weird world this is */
133 if (old_list
&& strcmp(pattern
, "*.*") == 0) return True
;
135 if (strcmp(pattern
,".") == 0) return False
;
137 if (max_protocol
<= PROTOCOL_LANMAN2
) {
138 return ms_fnmatch_lanman(pattern
, file
)==0;
141 if (strcmp(file
,"..") == 0) file
= ".";
143 return ms_fnmatch(pattern
, file
, cli
->protocol
, False
) == 0;
146 static char *reg_test(struct cli_state
*cli
, const char *pattern
, const char *long_name
, const char *short_name
)
149 const char *new_pattern
= 1+strrchr_m(pattern
,'\\');
152 if (reg_match_one(cli
, new_pattern
, ".")) ret
[0] = '+';
153 if (reg_match_one(cli
, new_pattern
, "..")) ret
[1] = '+';
154 if (reg_match_one(cli
, new_pattern
, long_name
) ||
155 (*short_name
&& reg_match_one(cli
, new_pattern
, short_name
))) ret
[2] = '+';
160 /*****************************************************
161 return a connection to a server
162 *******************************************************/
163 static struct cli_state
*connect_one(char *share
)
166 struct nmb_name called
, calling
;
169 struct sockaddr_storage ss
;
173 share
= strchr_m(server
,'\\');
174 if (!share
) return NULL
;
182 make_nmb_name(&calling
, "masktest", 0x0);
183 make_nmb_name(&called
, server
, 0x20);
188 /* have to open a new connection */
189 if (!(c
=cli_initialise())) {
190 DEBUG(0,("Connection to %s failed\n", server_n
));
194 status
= cli_connect(c
, server_n
, &ss
);
195 if (!NT_STATUS_IS_OK(status
)) {
196 DEBUG(0,("Connection to %s failed. Error %s\n", server_n
, nt_errstr(status
) ));
200 c
->protocol
= max_protocol
;
202 if (!cli_session_request(c
, &calling
, &called
)) {
203 DEBUG(0,("session request to %s failed\n", called
.name
));
205 if (strcmp(called
.name
, "*SMBSERVER")) {
206 make_nmb_name(&called
, "*SMBSERVER", 0x20);
212 DEBUG(4,(" session request ok\n"));
214 status
= cli_negprot(c
);
215 if (!NT_STATUS_IS_OK(status
)) {
216 DEBUG(0, ("protocol negotiation failed: %s\n",
223 char *pass
= getpass("Password: ");
225 fstrcpy(password
, pass
);
229 if (!NT_STATUS_IS_OK(cli_session_setup(c
, username
,
230 password
, strlen(password
),
231 password
, strlen(password
),
233 DEBUG(0,("session setup failed: %s\n", cli_errstr(c
)));
238 * These next two lines are needed to emulate
239 * old client behaviour for people who have
240 * scripts based on client output.
241 * QUESTION ? Do we want to have a 'client compatibility
242 * mode to turn these on/off ? JRA.
245 if (*c
->server_domain
|| *c
->server_os
|| *c
->server_type
)
246 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
247 c
->server_domain
,c
->server_os
,c
->server_type
));
249 DEBUG(4,(" session setup ok\n"));
251 status
= cli_tcon_andx(c
, share
, "?????", password
,
253 if (!NT_STATUS_IS_OK(status
)) {
254 DEBUG(0,("tree connect failed: %s\n", nt_errstr(status
)));
259 DEBUG(4,(" tconx ok\n"));
264 static char *resultp
;
271 static NTSTATUS
listfn(const char *mnt
, struct file_info
*f
, const char *s
,
274 struct rn_state
*state
= (struct rn_state
*)private_data
;
275 if (strcmp(f
->name
,".") == 0) {
277 } else if (strcmp(f
->name
,"..") == 0) {
284 return NT_STATUS_INTERNAL_ERROR
;
287 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
291 fstrcpy(state
->short_name
, f
->short_name
);
292 strlower_m(state
->short_name
);
293 *state
->pp_long_name
= SMB_STRDUP(f
->name
);
294 if (!*state
->pp_long_name
) {
295 return NT_STATUS_NO_MEMORY
;
297 strlower_m(*state
->pp_long_name
);
301 static void get_real_name(struct cli_state
*cli
,
302 char **pp_long_name
, fstring short_name
)
304 struct rn_state state
;
306 state
.pp_long_name
= pp_long_name
;
307 state
.short_name
= short_name
;
309 *pp_long_name
= NULL
;
310 /* nasty hack to force level 260 listings - tridge */
311 if (max_protocol
<= PROTOCOL_LANMAN1
) {
312 cli_list_trans(cli
, "\\masktest\\*.*", aHIDDEN
| aDIR
,
313 SMB_FIND_FILE_BOTH_DIRECTORY_INFO
, listfn
,
316 cli_list_trans(cli
, "\\masktest\\*", aHIDDEN
| aDIR
,
317 SMB_FIND_FILE_BOTH_DIRECTORY_INFO
,
321 if (*short_name
== 0) {
322 fstrcpy(short_name
, *pp_long_name
);
326 if (!strchr_m(short_name
,'.')) {
327 fstrcat(short_name
,".");
332 static void testpair(struct cli_state
*cli
, const char *mask
, const char *file
)
339 char *long_name
= NULL
;
343 fstrcpy(res1
, "---");
345 if (!NT_STATUS_IS_OK(cli_open(cli
, file
, O_CREAT
|O_TRUNC
|O_RDWR
, 0, &fnum
))) {
346 DEBUG(0,("Can't create %s\n", file
));
349 cli_close(cli
, fnum
);
352 fstrcpy(short_name
, "");
353 get_real_name(cli
, &long_name
, short_name
);
357 fstrcpy(res1
, "---");
358 cli_list(cli
, mask
, aHIDDEN
| aDIR
, listfn
, NULL
);
360 res2
= reg_test(cli
, mask
, long_name
, short_name
);
363 ((strcmp(res1
, res2
) && !ignore_dot_errors
) ||
364 (strcmp(res1
+2, res2
+2) && ignore_dot_errors
))) {
365 DEBUG(0,("%s %s %d mask=[%s] file=[%s] rfile=[%s/%s]\n",
366 res1
, res2
, count
, mask
, file
, long_name
, short_name
));
367 if (die_on_error
) exit(1);
370 cli_unlink(cli
, file
, aSYSTEM
| aHIDDEN
);
372 if (count
% 100 == 0) DEBUG(0,("%d\n", count
));
373 SAFE_FREE(long_name
);
376 static void test_mask(int argc
, char *argv
[],
377 struct cli_state
*cli
)
381 int mc_len
= strlen(maskchars
);
382 int fc_len
= strlen(filechars
);
383 TALLOC_CTX
*ctx
= talloc_tos();
385 cli_mkdir(cli
, "\\masktest");
387 cli_unlink(cli
, "\\masktest\\*", aSYSTEM
| aHIDDEN
);
391 mask
= talloc_asprintf(ctx
,
394 file
= talloc_asprintf(ctx
,
397 if (!mask
|| !file
) {
400 testpair(cli
, mask
, file
);
408 l1
= 1 + random() % 20;
409 l2
= 1 + random() % 20;
410 mask
= TALLOC_ARRAY(ctx
, char, strlen("\\masktest\\")+1+22);
411 file
= TALLOC_ARRAY(ctx
, char, strlen("\\masktest\\")+1+22);
412 if (!mask
|| !file
) {
415 memcpy(mask
,"\\masktest\\",strlen("\\masktest\\")+1);
416 memcpy(file
,"\\masktest\\",strlen("\\masktest\\")+1);
419 mask
[i
+l
] = maskchars
[random() % mc_len
];
424 file
[i
+l
] = filechars
[random() % fc_len
];
428 if (strcmp(file
+l
,".") == 0 ||
429 strcmp(file
+l
,"..") == 0 ||
430 strcmp(mask
+l
,"..") == 0) continue;
432 if (strspn(file
+l
, ".") == strlen(file
+l
)) continue;
434 testpair(cli
, mask
, file
);
435 if (NumLoops
&& (--NumLoops
== 0))
442 cli_rmdir(cli
, "\\masktest");
446 static void usage(void)
450 masktest //server/share [options..]\n\
458 -f filechars (default %s)\n\
459 -m maskchars (default %s)\n\
463 -i ignore . and .. errors\n\
465 This program tests wildcard matching between two servers. It generates\n\
466 random pairs of filenames/masks and tests that they match in the same\n\
467 way on the servers and internally\n\
469 filechars
, maskchars
);
472 /****************************************************************************
474 ****************************************************************************/
475 int main(int argc
,char *argv
[])
478 struct cli_state
*cli
;
482 TALLOC_CTX
*frame
= talloc_stackframe();
486 lp_set_cmdline("log level", "0");
488 if (argc
< 2 || argv
[1][0] == '-') {
495 all_string_sub(share
,"/","\\",0);
497 setup_logging(argv
[0], DEBUG_STDERR
);
503 lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
);
506 if (getenv("USER")) {
507 fstrcpy(username
,getenv("USER"));
512 while ((opt
= getopt(argc
, argv
, "n:d:U:s:hm:f:aoW:M:vEi")) != EOF
) {
515 NumLoops
= atoi(optarg
);
518 lp_set_cmdline("log level", optarg
);
524 ignore_dot_errors
= 1;
530 max_protocol
= interpret_protocol(optarg
, max_protocol
);
533 fstrcpy(username
,optarg
);
534 p
= strchr_m(username
,'%');
537 fstrcpy(password
, p
+1);
560 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
569 cli
= connect_one(share
);
571 DEBUG(0,("Failed to connect to %s\n", share
));
575 /* need to init seed after connect as clientgen uses random numbers */
576 DEBUG(0,("seed=%d\n", seed
));
579 test_mask(argc
, argv
, cli
);