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"
25 #include "../libcli/smb/smbXcli_base.h"
27 static fstring password
;
28 static fstring username
;
30 static int max_protocol
= PROTOCOL_NT1
;
31 static bool showall
= False
;
32 static bool old_list
= False
;
33 static const char *maskchars
= "<>\"?*abc.";
34 static const char *filechars
= "abcdefghijklm.";
36 static int die_on_error
;
37 static int NumLoops
= 0;
38 static int ignore_dot_errors
= 0;
43 /* a test fn for LANMAN mask support */
44 static int ms_fnmatch_lanman_core(const char *pattern
, const char *string
)
46 const char *p
= pattern
, *n
= string
;
49 if (strcmp(p
,"?")==0 && strcmp(n
,".")==0) goto match
;
54 /* if (! *n && ! *p) goto match; */
55 if (*n
!= '.') goto nomatch
;
60 if ((*n
== '.' && n
[1] != '.') || ! *n
) goto next
;
66 if (! n
[1] && ms_fnmatch_lanman_core(p
, n
+1) == 0) goto match
;
67 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
77 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
83 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
84 if (*n
== '.' && !strchr_m(n
+1,'.')) {
92 if (*n
== 0 && ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
93 if (*n
!= '.') goto nomatch
;
98 if (c
!= *n
) goto nomatch
;
103 if (! *n
) goto match
;
106 if (verbose
) printf("NOMATCH pattern=[%s] string=[%s]\n", pattern
, string
);
110 if (ms_fnmatch_lanman_core(p
, n
) == 0) goto match
;
114 if (verbose
) printf("MATCH pattern=[%s] string=[%s]\n", pattern
, string
);
118 static int ms_fnmatch_lanman(const char *pattern
, const char *string
)
120 if (!strpbrk(pattern
, "?*<>\"")) {
121 if (strcmp(string
,"..") == 0)
124 return strcmp(pattern
, string
);
127 if (strcmp(string
,"..") == 0 || strcmp(string
,".") == 0) {
128 return ms_fnmatch_lanman_core(pattern
, "..") &&
129 ms_fnmatch_lanman_core(pattern
, ".");
132 return ms_fnmatch_lanman_core(pattern
, string
);
135 static bool reg_match_one(struct cli_state
*cli
, const char *pattern
, const char *file
)
137 /* oh what a weird world this is */
138 if (old_list
&& strcmp(pattern
, "*.*") == 0) return True
;
140 if (strcmp(pattern
,".") == 0) return False
;
142 if (max_protocol
<= PROTOCOL_LANMAN2
) {
143 return ms_fnmatch_lanman(pattern
, file
)==0;
146 if (strcmp(file
,"..") == 0) file
= ".";
148 return ms_fnmatch(pattern
, file
, smbXcli_conn_protocol(cli
->conn
), False
) == 0;
151 static char *reg_test(struct cli_state
*cli
, const char *pattern
, const char *long_name
, const char *short_name
)
154 const char *new_pattern
= 1+strrchr_m(pattern
,'\\');
157 if (reg_match_one(cli
, new_pattern
, ".")) ret
[0] = '+';
158 if (reg_match_one(cli
, new_pattern
, "..")) ret
[1] = '+';
159 if (reg_match_one(cli
, new_pattern
, long_name
) ||
160 (*short_name
&& reg_match_one(cli
, new_pattern
, short_name
))) ret
[2] = '+';
165 /*****************************************************
166 return a connection to a server
167 *******************************************************/
168 static struct cli_state
*connect_one(char *share
)
176 share
= strchr_m(server
,'\\');
177 if (!share
) return NULL
;
183 status
= cli_connect_nb(server
, NULL
, 0, 0x20, "masktest",
184 SMB_SIGNING_DEFAULT
, 0, &c
);
185 if (!NT_STATUS_IS_OK(status
)) {
186 DEBUG(0,("Connection to %s failed. Error %s\n", server_n
,
191 status
= smbXcli_negprot(c
->conn
, c
->timeout
, PROTOCOL_CORE
,
193 if (!NT_STATUS_IS_OK(status
)) {
194 DEBUG(0, ("protocol negotiation failed: %s\n",
204 rc
= samba_getpass("Password: ", pwd
, sizeof(pwd
), false, false);
206 fstrcpy(password
, pass
);
210 status
= cli_session_setup(c
, username
,
211 password
, strlen(password
),
212 password
, strlen(password
),
214 if (!NT_STATUS_IS_OK(status
)) {
215 DEBUG(0, ("session setup failed: %s\n", nt_errstr(status
)));
220 * These next two lines are needed to emulate
221 * old client behaviour for people who have
222 * scripts based on client output.
223 * QUESTION ? Do we want to have a 'client compatibility
224 * mode to turn these on/off ? JRA.
227 if (*c
->server_domain
|| *c
->server_os
|| *c
->server_type
)
228 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
229 c
->server_domain
,c
->server_os
,c
->server_type
));
231 DEBUG(4,(" session setup ok\n"));
233 status
= cli_tree_connect(c
, share
, "?????", password
,
235 if (!NT_STATUS_IS_OK(status
)) {
236 DEBUG(0,("tree connect failed: %s\n", nt_errstr(status
)));
241 DEBUG(4,(" tconx ok\n"));
246 static char *resultp
;
253 static NTSTATUS
listfn(const char *mnt
, struct file_info
*f
, const char *s
,
256 struct rn_state
*state
= (struct rn_state
*)private_data
;
257 if (strcmp(f
->name
,".") == 0) {
259 } else if (strcmp(f
->name
,"..") == 0) {
266 return NT_STATUS_INTERNAL_ERROR
;
269 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
274 fstrcpy(state
->short_name
, f
->short_name
? f
->short_name
: "");
275 (void)strlower_m(state
->short_name
);
276 *state
->pp_long_name
= SMB_STRDUP(f
->name
);
277 if (!*state
->pp_long_name
) {
278 return NT_STATUS_NO_MEMORY
;
280 (void)strlower_m(*state
->pp_long_name
);
284 static void get_real_name(struct cli_state
*cli
,
285 char **pp_long_name
, fstring short_name
)
287 struct rn_state state
;
289 state
.pp_long_name
= pp_long_name
;
290 state
.short_name
= short_name
;
292 *pp_long_name
= NULL
;
293 /* nasty hack to force level 260 listings - tridge */
294 if (max_protocol
<= PROTOCOL_LANMAN1
) {
295 cli_list_trans(cli
, "\\masktest\\*.*", FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,
296 SMB_FIND_FILE_BOTH_DIRECTORY_INFO
, listfn
,
299 cli_list_trans(cli
, "\\masktest\\*", FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,
300 SMB_FIND_FILE_BOTH_DIRECTORY_INFO
,
304 if (*short_name
== 0) {
305 fstrcpy(short_name
, *pp_long_name
);
309 if (!strchr_m(short_name
,'.')) {
310 fstrcat(short_name
,".");
315 static void testpair(struct cli_state
*cli
, const char *mask
, const char *file
)
322 char *long_name
= NULL
;
326 fstrcpy(res1
, "---");
328 if (!NT_STATUS_IS_OK(cli_openx(cli
, file
, O_CREAT
|O_TRUNC
|O_RDWR
, 0, &fnum
))) {
329 DEBUG(0,("Can't create %s\n", file
));
332 cli_close(cli
, fnum
);
335 fstrcpy(short_name
, "");
336 get_real_name(cli
, &long_name
, short_name
);
340 fstrcpy(res1
, "---");
341 cli_list(cli
, mask
, FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
, listfn
, NULL
);
343 res2
= reg_test(cli
, mask
, long_name
, short_name
);
346 ((strcmp(res1
, res2
) && !ignore_dot_errors
) ||
347 (strcmp(res1
+2, res2
+2) && ignore_dot_errors
))) {
348 DEBUG(0,("%s %s %d mask=[%s] file=[%s] rfile=[%s/%s]\n",
349 res1
, res2
, count
, mask
, file
, long_name
, short_name
));
350 if (die_on_error
) exit(1);
353 cli_unlink(cli
, file
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
355 if (count
% 100 == 0) DEBUG(0,("%d\n", count
));
356 SAFE_FREE(long_name
);
359 static void test_mask(int argc
, char *argv
[],
360 struct cli_state
*cli
)
364 int mc_len
= strlen(maskchars
);
365 int fc_len
= strlen(filechars
);
366 TALLOC_CTX
*ctx
= talloc_tos();
368 cli_mkdir(cli
, "\\masktest");
370 cli_unlink(cli
, "\\masktest\\*", FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
374 mask
= talloc_asprintf(ctx
,
377 file
= talloc_asprintf(ctx
,
380 if (!mask
|| !file
) {
383 testpair(cli
, mask
, file
);
391 l1
= 1 + random() % 20;
392 l2
= 1 + random() % 20;
393 mask
= talloc_array(ctx
, char, strlen("\\masktest\\")+1+22);
394 file
= talloc_array(ctx
, char, strlen("\\masktest\\")+1+22);
395 if (!mask
|| !file
) {
398 memcpy(mask
,"\\masktest\\",strlen("\\masktest\\")+1);
399 memcpy(file
,"\\masktest\\",strlen("\\masktest\\")+1);
402 mask
[i
+l
] = maskchars
[random() % mc_len
];
407 file
[i
+l
] = filechars
[random() % fc_len
];
411 if (strcmp(file
+l
,".") == 0 ||
412 strcmp(file
+l
,"..") == 0 ||
413 strcmp(mask
+l
,"..") == 0) continue;
415 if (strspn(file
+l
, ".") == strlen(file
+l
)) continue;
417 testpair(cli
, mask
, file
);
418 if (NumLoops
&& (--NumLoops
== 0))
425 cli_rmdir(cli
, "\\masktest");
429 static void usage(void)
433 masktest //server/share [options..]\n\
441 -f filechars (default %s)\n\
442 -m maskchars (default %s)\n\
446 -i ignore . and .. errors\n\
448 This program tests wildcard matching between two servers. It generates\n\
449 random pairs of filenames/masks and tests that they match in the same\n\
450 way on the servers and internally\n\
452 filechars
, maskchars
);
455 /****************************************************************************
457 ****************************************************************************/
458 int main(int argc
,char *argv
[])
461 struct cli_state
*cli
;
465 TALLOC_CTX
*frame
= talloc_stackframe();
469 lp_set_cmdline("log level", "0");
471 if (argc
< 2 || argv
[1][0] == '-') {
478 all_string_sub(share
,"/","\\",0);
480 setup_logging(argv
[0], DEBUG_STDERR
);
486 lp_load_global(get_dyn_CONFIGFILE());
489 if (getenv("USER")) {
490 fstrcpy(username
,getenv("USER"));
495 while ((opt
= getopt(argc
, argv
, "n:d:U:s:hm:f:aoW:M:vEi")) != EOF
) {
498 NumLoops
= atoi(optarg
);
501 lp_set_cmdline("log level", optarg
);
507 ignore_dot_errors
= 1;
513 max_protocol
= interpret_protocol(optarg
, max_protocol
);
516 fstrcpy(username
,optarg
);
517 p
= strchr_m(username
,'%');
520 fstrcpy(password
, p
+1);
543 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
552 cli
= connect_one(share
);
554 DEBUG(0,("Failed to connect to %s\n", share
));
558 /* need to init seed after connect as clientgen uses random numbers */
559 DEBUG(0,("seed=%d\n", seed
));
562 test_mask(argc
, argv
, cli
);