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_state_protocol(cli
), 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
)
175 share
= strchr_m(server
,'\\');
176 if (!share
) return NULL
;
182 status
= cli_connect_nb(server
, NULL
, 0, 0x20, "masktest",
183 SMB_SIGNING_DEFAULT
, 0, &c
);
184 if (!NT_STATUS_IS_OK(status
)) {
185 DEBUG(0,("Connection to %s failed. Error %s\n", server_n
,
190 status
= cli_negprot(c
, max_protocol
);
191 if (!NT_STATUS_IS_OK(status
)) {
192 DEBUG(0, ("protocol negotiation failed: %s\n",
199 char *pass
= getpass("Password: ");
201 fstrcpy(password
, pass
);
205 status
= cli_session_setup(c
, username
,
206 password
, strlen(password
),
207 password
, strlen(password
),
209 if (!NT_STATUS_IS_OK(status
)) {
210 DEBUG(0, ("session setup failed: %s\n", nt_errstr(status
)));
215 * These next two lines are needed to emulate
216 * old client behaviour for people who have
217 * scripts based on client output.
218 * QUESTION ? Do we want to have a 'client compatibility
219 * mode to turn these on/off ? JRA.
222 if (*c
->server_domain
|| *c
->server_os
|| *c
->server_type
)
223 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
224 c
->server_domain
,c
->server_os
,c
->server_type
));
226 DEBUG(4,(" session setup ok\n"));
228 status
= cli_tree_connect(c
, share
, "?????", password
,
230 if (!NT_STATUS_IS_OK(status
)) {
231 DEBUG(0,("tree connect failed: %s\n", nt_errstr(status
)));
236 DEBUG(4,(" tconx ok\n"));
241 static char *resultp
;
248 static NTSTATUS
listfn(const char *mnt
, struct file_info
*f
, const char *s
,
251 struct rn_state
*state
= (struct rn_state
*)private_data
;
252 if (strcmp(f
->name
,".") == 0) {
254 } else if (strcmp(f
->name
,"..") == 0) {
261 return NT_STATUS_INTERNAL_ERROR
;
264 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
269 fstrcpy(state
->short_name
, f
->short_name
? f
->short_name
: "");
270 strlower_m(state
->short_name
);
271 *state
->pp_long_name
= SMB_STRDUP(f
->name
);
272 if (!*state
->pp_long_name
) {
273 return NT_STATUS_NO_MEMORY
;
275 strlower_m(*state
->pp_long_name
);
279 static void get_real_name(struct cli_state
*cli
,
280 char **pp_long_name
, fstring short_name
)
282 struct rn_state state
;
284 state
.pp_long_name
= pp_long_name
;
285 state
.short_name
= short_name
;
287 *pp_long_name
= NULL
;
288 /* nasty hack to force level 260 listings - tridge */
289 if (max_protocol
<= PROTOCOL_LANMAN1
) {
290 cli_list_trans(cli
, "\\masktest\\*.*", FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,
291 SMB_FIND_FILE_BOTH_DIRECTORY_INFO
, listfn
,
294 cli_list_trans(cli
, "\\masktest\\*", FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,
295 SMB_FIND_FILE_BOTH_DIRECTORY_INFO
,
299 if (*short_name
== 0) {
300 fstrcpy(short_name
, *pp_long_name
);
304 if (!strchr_m(short_name
,'.')) {
305 fstrcat(short_name
,".");
310 static void testpair(struct cli_state
*cli
, const char *mask
, const char *file
)
317 char *long_name
= NULL
;
321 fstrcpy(res1
, "---");
323 if (!NT_STATUS_IS_OK(cli_openx(cli
, file
, O_CREAT
|O_TRUNC
|O_RDWR
, 0, &fnum
))) {
324 DEBUG(0,("Can't create %s\n", file
));
327 cli_close(cli
, fnum
);
330 fstrcpy(short_name
, "");
331 get_real_name(cli
, &long_name
, short_name
);
335 fstrcpy(res1
, "---");
336 cli_list(cli
, mask
, FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
, listfn
, NULL
);
338 res2
= reg_test(cli
, mask
, long_name
, short_name
);
341 ((strcmp(res1
, res2
) && !ignore_dot_errors
) ||
342 (strcmp(res1
+2, res2
+2) && ignore_dot_errors
))) {
343 DEBUG(0,("%s %s %d mask=[%s] file=[%s] rfile=[%s/%s]\n",
344 res1
, res2
, count
, mask
, file
, long_name
, short_name
));
345 if (die_on_error
) exit(1);
348 cli_unlink(cli
, file
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
350 if (count
% 100 == 0) DEBUG(0,("%d\n", count
));
351 SAFE_FREE(long_name
);
354 static void test_mask(int argc
, char *argv
[],
355 struct cli_state
*cli
)
359 int mc_len
= strlen(maskchars
);
360 int fc_len
= strlen(filechars
);
361 TALLOC_CTX
*ctx
= talloc_tos();
363 cli_mkdir(cli
, "\\masktest");
365 cli_unlink(cli
, "\\masktest\\*", FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
369 mask
= talloc_asprintf(ctx
,
372 file
= talloc_asprintf(ctx
,
375 if (!mask
|| !file
) {
378 testpair(cli
, mask
, file
);
386 l1
= 1 + random() % 20;
387 l2
= 1 + random() % 20;
388 mask
= talloc_array(ctx
, char, strlen("\\masktest\\")+1+22);
389 file
= talloc_array(ctx
, char, strlen("\\masktest\\")+1+22);
390 if (!mask
|| !file
) {
393 memcpy(mask
,"\\masktest\\",strlen("\\masktest\\")+1);
394 memcpy(file
,"\\masktest\\",strlen("\\masktest\\")+1);
397 mask
[i
+l
] = maskchars
[random() % mc_len
];
402 file
[i
+l
] = filechars
[random() % fc_len
];
406 if (strcmp(file
+l
,".") == 0 ||
407 strcmp(file
+l
,"..") == 0 ||
408 strcmp(mask
+l
,"..") == 0) continue;
410 if (strspn(file
+l
, ".") == strlen(file
+l
)) continue;
412 testpair(cli
, mask
, file
);
413 if (NumLoops
&& (--NumLoops
== 0))
420 cli_rmdir(cli
, "\\masktest");
424 static void usage(void)
428 masktest //server/share [options..]\n\
436 -f filechars (default %s)\n\
437 -m maskchars (default %s)\n\
441 -i ignore . and .. errors\n\
443 This program tests wildcard matching between two servers. It generates\n\
444 random pairs of filenames/masks and tests that they match in the same\n\
445 way on the servers and internally\n\
447 filechars
, maskchars
);
450 /****************************************************************************
452 ****************************************************************************/
453 int main(int argc
,char *argv
[])
456 struct cli_state
*cli
;
460 TALLOC_CTX
*frame
= talloc_stackframe();
464 lp_set_cmdline("log level", "0");
466 if (argc
< 2 || argv
[1][0] == '-') {
473 all_string_sub(share
,"/","\\",0);
475 setup_logging(argv
[0], DEBUG_STDERR
);
481 lp_load_global(get_dyn_CONFIGFILE());
484 if (getenv("USER")) {
485 fstrcpy(username
,getenv("USER"));
490 while ((opt
= getopt(argc
, argv
, "n:d:U:s:hm:f:aoW:M:vEi")) != EOF
) {
493 NumLoops
= atoi(optarg
);
496 lp_set_cmdline("log level", optarg
);
502 ignore_dot_errors
= 1;
508 max_protocol
= interpret_protocol(optarg
, max_protocol
);
511 fstrcpy(username
,optarg
);
512 p
= strchr_m(username
,'%');
515 fstrcpy(password
, p
+1);
538 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
547 cli
= connect_one(share
);
549 DEBUG(0,("Failed to connect to %s\n", share
));
553 /* need to init seed after connect as clientgen uses random numbers */
554 DEBUG(0,("seed=%d\n", seed
));
557 test_mask(argc
, argv
, cli
);