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/>.
21 #include "system/filesys.h"
23 #include "libsmb/libsmb.h"
24 #include "libsmb/nmblib.h"
26 static fstring password
;
27 static fstring username
;
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.";
35 static int die_on_error
;
36 static int NumLoops
= 0;
37 static int ignore_dot_errors
= 0;
42 /* a test fn for LANMAN mask support */
43 static int ms_fnmatch_lanman_core(const char *pattern
, const char *string
)
45 const char *p
= pattern
, *n
= string
;
48 if (strcmp(p
,"?")==0 && strcmp(n
,".")==0) goto match
;
53 /* if (! *n && ! *p) goto match; */
54 if (*n
!= '.') goto nomatch
;
59 if ((*n
== '.' && n
[1] != '.') || ! *n
) goto next
;
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
;
76 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
82 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
83 if (*n
== '.' && !strchr_m(n
+1,'.')) {
91 if (*n
== 0 && ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
92 if (*n
!= '.') goto nomatch
;
97 if (c
!= *n
) goto nomatch
;
102 if (! *n
) goto match
;
105 if (verbose
) printf("NOMATCH pattern=[%s] string=[%s]\n", pattern
, string
);
109 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
113 if (verbose
) printf("MATCH pattern=[%s] string=[%s]\n", pattern
, string
);
117 static int ms_fnmatch_lanman(const char *pattern
, const char *string
)
119 if (!strpbrk(pattern
, "?*<>\"")) {
120 if (strcmp(string
,"..") == 0)
123 return strcmp(pattern
, string
);
126 if (strcmp(string
,"..") == 0 || strcmp(string
,".") == 0) {
127 return ms_fnmatch_lanman_core(pattern
, "..") &&
128 ms_fnmatch_lanman_core(pattern
, ".");
131 return ms_fnmatch_lanman_core(pattern
, string
);
134 static bool reg_match_one(struct cli_state
*cli
, const char *pattern
, const char *file
)
136 /* oh what a weird world this is */
137 if (old_list
&& strcmp(pattern
, "*.*") == 0) return True
;
139 if (strcmp(pattern
,".") == 0) return False
;
141 if (max_protocol
<= PROTOCOL_LANMAN2
) {
142 return ms_fnmatch_lanman(pattern
, file
)==0;
145 if (strcmp(file
,"..") == 0) file
= ".";
147 return ms_fnmatch(pattern
, file
, cli
->protocol
, False
) == 0;
150 static char *reg_test(struct cli_state
*cli
, const char *pattern
, const char *long_name
, const char *short_name
)
153 const char *new_pattern
= 1+strrchr_m(pattern
,'\\');
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] = '+';
164 /*****************************************************
165 return a connection to a server
166 *******************************************************/
167 static struct cli_state
*connect_one(char *share
)
170 struct nmb_name called
, calling
;
173 struct sockaddr_storage ss
;
177 share
= strchr_m(server
,'\\');
178 if (!share
) return NULL
;
186 make_nmb_name(&calling
, "masktest", 0x0);
187 make_nmb_name(&called
, server
, 0x20);
192 /* have to open a new connection */
193 if (!(c
=cli_initialise())) {
194 DEBUG(0,("Connection to %s failed\n", server_n
));
198 status
= cli_connect(c
, server_n
, &ss
);
199 if (!NT_STATUS_IS_OK(status
)) {
200 DEBUG(0,("Connection to %s failed. Error %s\n", server_n
, nt_errstr(status
) ));
204 c
->protocol
= max_protocol
;
206 if (!cli_session_request(c
, &calling
, &called
)) {
207 DEBUG(0,("session request to %s failed\n", called
.name
));
209 if (strcmp(called
.name
, "*SMBSERVER")) {
210 make_nmb_name(&called
, "*SMBSERVER", 0x20);
216 DEBUG(4,(" session request ok\n"));
218 status
= cli_negprot(c
);
219 if (!NT_STATUS_IS_OK(status
)) {
220 DEBUG(0, ("protocol negotiation failed: %s\n",
227 char *pass
= getpass("Password: ");
229 fstrcpy(password
, pass
);
233 status
= cli_session_setup(c
, username
,
234 password
, strlen(password
),
235 password
, strlen(password
),
237 if (!NT_STATUS_IS_OK(status
)) {
238 DEBUG(0, ("session setup failed: %s\n", nt_errstr(status
)));
243 * These next two lines are needed to emulate
244 * old client behaviour for people who have
245 * scripts based on client output.
246 * QUESTION ? Do we want to have a 'client compatibility
247 * mode to turn these on/off ? JRA.
250 if (*c
->server_domain
|| *c
->server_os
|| *c
->server_type
)
251 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
252 c
->server_domain
,c
->server_os
,c
->server_type
));
254 DEBUG(4,(" session setup ok\n"));
256 status
= cli_tcon_andx(c
, share
, "?????", password
,
258 if (!NT_STATUS_IS_OK(status
)) {
259 DEBUG(0,("tree connect failed: %s\n", nt_errstr(status
)));
264 DEBUG(4,(" tconx ok\n"));
269 static char *resultp
;
276 static NTSTATUS
listfn(const char *mnt
, struct file_info
*f
, const char *s
,
279 struct rn_state
*state
= (struct rn_state
*)private_data
;
280 if (strcmp(f
->name
,".") == 0) {
282 } else if (strcmp(f
->name
,"..") == 0) {
289 return NT_STATUS_INTERNAL_ERROR
;
292 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
296 fstrcpy(state
->short_name
, f
->short_name
);
297 strlower_m(state
->short_name
);
298 *state
->pp_long_name
= SMB_STRDUP(f
->name
);
299 if (!*state
->pp_long_name
) {
300 return NT_STATUS_NO_MEMORY
;
302 strlower_m(*state
->pp_long_name
);
306 static void get_real_name(struct cli_state
*cli
,
307 char **pp_long_name
, fstring short_name
)
309 struct rn_state state
;
311 state
.pp_long_name
= pp_long_name
;
312 state
.short_name
= short_name
;
314 *pp_long_name
= NULL
;
315 /* nasty hack to force level 260 listings - tridge */
316 if (max_protocol
<= PROTOCOL_LANMAN1
) {
317 cli_list_trans(cli
, "\\masktest\\*.*", FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,
318 SMB_FIND_FILE_BOTH_DIRECTORY_INFO
, listfn
,
321 cli_list_trans(cli
, "\\masktest\\*", FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,
322 SMB_FIND_FILE_BOTH_DIRECTORY_INFO
,
326 if (*short_name
== 0) {
327 fstrcpy(short_name
, *pp_long_name
);
331 if (!strchr_m(short_name
,'.')) {
332 fstrcat(short_name
,".");
337 static void testpair(struct cli_state
*cli
, const char *mask
, const char *file
)
344 char *long_name
= NULL
;
348 fstrcpy(res1
, "---");
350 if (!NT_STATUS_IS_OK(cli_open(cli
, file
, O_CREAT
|O_TRUNC
|O_RDWR
, 0, &fnum
))) {
351 DEBUG(0,("Can't create %s\n", file
));
354 cli_close(cli
, fnum
);
357 fstrcpy(short_name
, "");
358 get_real_name(cli
, &long_name
, short_name
);
362 fstrcpy(res1
, "---");
363 cli_list(cli
, mask
, FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
, listfn
, NULL
);
365 res2
= reg_test(cli
, mask
, long_name
, short_name
);
368 ((strcmp(res1
, res2
) && !ignore_dot_errors
) ||
369 (strcmp(res1
+2, res2
+2) && ignore_dot_errors
))) {
370 DEBUG(0,("%s %s %d mask=[%s] file=[%s] rfile=[%s/%s]\n",
371 res1
, res2
, count
, mask
, file
, long_name
, short_name
));
372 if (die_on_error
) exit(1);
375 cli_unlink(cli
, file
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
377 if (count
% 100 == 0) DEBUG(0,("%d\n", count
));
378 SAFE_FREE(long_name
);
381 static void test_mask(int argc
, char *argv
[],
382 struct cli_state
*cli
)
386 int mc_len
= strlen(maskchars
);
387 int fc_len
= strlen(filechars
);
388 TALLOC_CTX
*ctx
= talloc_tos();
390 cli_mkdir(cli
, "\\masktest");
392 cli_unlink(cli
, "\\masktest\\*", FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
396 mask
= talloc_asprintf(ctx
,
399 file
= talloc_asprintf(ctx
,
402 if (!mask
|| !file
) {
405 testpair(cli
, mask
, file
);
413 l1
= 1 + random() % 20;
414 l2
= 1 + random() % 20;
415 mask
= TALLOC_ARRAY(ctx
, char, strlen("\\masktest\\")+1+22);
416 file
= TALLOC_ARRAY(ctx
, char, strlen("\\masktest\\")+1+22);
417 if (!mask
|| !file
) {
420 memcpy(mask
,"\\masktest\\",strlen("\\masktest\\")+1);
421 memcpy(file
,"\\masktest\\",strlen("\\masktest\\")+1);
424 mask
[i
+l
] = maskchars
[random() % mc_len
];
429 file
[i
+l
] = filechars
[random() % fc_len
];
433 if (strcmp(file
+l
,".") == 0 ||
434 strcmp(file
+l
,"..") == 0 ||
435 strcmp(mask
+l
,"..") == 0) continue;
437 if (strspn(file
+l
, ".") == strlen(file
+l
)) continue;
439 testpair(cli
, mask
, file
);
440 if (NumLoops
&& (--NumLoops
== 0))
447 cli_rmdir(cli
, "\\masktest");
451 static void usage(void)
455 masktest //server/share [options..]\n\
463 -f filechars (default %s)\n\
464 -m maskchars (default %s)\n\
468 -i ignore . and .. errors\n\
470 This program tests wildcard matching between two servers. It generates\n\
471 random pairs of filenames/masks and tests that they match in the same\n\
472 way on the servers and internally\n\
474 filechars
, maskchars
);
477 /****************************************************************************
479 ****************************************************************************/
480 int main(int argc
,char *argv
[])
483 struct cli_state
*cli
;
487 TALLOC_CTX
*frame
= talloc_stackframe();
491 lp_set_cmdline("log level", "0");
493 if (argc
< 2 || argv
[1][0] == '-') {
500 all_string_sub(share
,"/","\\",0);
502 setup_logging(argv
[0], DEBUG_STDERR
);
508 lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
);
511 if (getenv("USER")) {
512 fstrcpy(username
,getenv("USER"));
517 while ((opt
= getopt(argc
, argv
, "n:d:U:s:hm:f:aoW:M:vEi")) != EOF
) {
520 NumLoops
= atoi(optarg
);
523 lp_set_cmdline("log level", optarg
);
529 ignore_dot_errors
= 1;
535 max_protocol
= interpret_protocol(optarg
, max_protocol
);
538 fstrcpy(username
,optarg
);
539 p
= strchr_m(username
,'%');
542 fstrcpy(password
, p
+1);
565 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
574 cli
= connect_one(share
);
576 DEBUG(0,("Failed to connect to %s\n", share
));
580 /* need to init seed after connect as clientgen uses random numbers */
581 DEBUG(0,("seed=%d\n", seed
));
584 test_mask(argc
, argv
, cli
);