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 2 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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "system/filesys.h"
23 #include "libcli/libcli.h"
24 #include "libcli/raw/libcliraw.h"
25 #include "system/time.h"
27 #include "auth/gensec/gensec.h"
29 static struct cli_credentials
*credentials
;
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 max_length
= 20;
39 static BOOL
reg_match_one(struct smbcli_state
*cli
, const char *pattern
, const char *file
)
41 /* oh what a weird world this is */
42 if (old_list
&& strcmp(pattern
, "*.*") == 0) return True
;
44 if (strcmp(pattern
,".") == 0) return False
;
46 if (strcmp(file
,"..") == 0) file
= ".";
48 return ms_fnmatch(pattern
, file
, cli
->transport
->negotiate
.protocol
)==0;
51 static char *reg_test(struct smbcli_state
*cli
, char *pattern
, char *long_name
, char *short_name
)
56 pattern
= 1+strrchr_m(pattern
,'\\');
58 if (reg_match_one(cli
, pattern
, ".")) ret
[0] = '+';
59 if (reg_match_one(cli
, pattern
, "..")) ret
[1] = '+';
60 if (reg_match_one(cli
, pattern
, long_name
) ||
61 (*short_name
&& reg_match_one(cli
, pattern
, short_name
))) ret
[2] = '+';
66 /*****************************************************
67 return a connection to a server
68 *******************************************************/
69 static struct smbcli_state
*connect_one(char *share
)
71 struct smbcli_state
*c
;
75 fstrcpy(server
,share
+2);
76 share
= strchr_m(server
,'\\');
77 if (!share
) return NULL
;
81 cli_credentials_set_workstation(credentials
, "masktest", CRED_SPECIFIED
);
83 status
= smbcli_full_connection(NULL
, &c
,
88 if (!NT_STATUS_IS_OK(status
)) {
100 static BOOL f_info_hit
;
102 static void listfn(struct clilist_file_info
*f
, const char *s
, void *state
)
104 if (strcmp(f
->name
,".") == 0) {
106 } else if (strcmp(f
->name
,"..") == 0) {
111 pstrcpy(last_hit
.long_name
, f
->name
);
112 pstrcpy(last_hit
.short_name
, f
->short_name
);
116 static void get_real_name(struct smbcli_state
*cli
,
117 pstring long_name
, fstring short_name
)
120 if (cli
->transport
->negotiate
.protocol
<= PROTOCOL_LANMAN1
) {
121 mask
= "\\masktest\\*.*";
123 mask
= "\\masktest\\*";
128 smbcli_list_new(cli
->tree
, mask
,
129 FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,
130 RAW_SEARCH_BOTH_DIRECTORY_INFO
,
134 fstrcpy(short_name
, last_hit
.short_name
);
135 strlower(short_name
);
136 pstrcpy(long_name
, last_hit
.long_name
);
140 if (*short_name
== 0) {
141 fstrcpy(short_name
, long_name
);
145 static void testpair(struct smbcli_state
*cli
, char *mask
, char *file
)
156 fstrcpy(res1
, "---");
158 fnum
= smbcli_open(cli
->tree
, file
, O_CREAT
|O_TRUNC
|O_RDWR
, 0);
160 DEBUG(0,("Can't create %s\n", file
));
163 smbcli_close(cli
->tree
, fnum
);
166 fstrcpy(short_name
, "");
167 get_real_name(cli
, long_name
, short_name
);
168 fstrcpy(res1
, "---");
169 smbcli_list_new(cli
->tree
, mask
,
170 FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,
171 RAW_SEARCH_BOTH_DIRECTORY_INFO
,
174 res2
= reg_test(cli
, mask
, long_name
, short_name
);
176 if (showall
|| strcmp(res1
, res2
)) {
177 d_printf("%s %s %d mask=[%s] file=[%s] rfile=[%s/%s]\n",
178 res1
, res2
, count
, mask
, file
, long_name
, short_name
);
179 if (die_on_error
) exit(1);
182 smbcli_unlink(cli
->tree
, file
);
184 if (count
% 100 == 0) DEBUG(0,("%d\n", count
));
187 static void test_mask(int argc
, char *argv
[],
188 struct smbcli_state
*cli
)
192 int mc_len
= strlen(maskchars
);
193 int fc_len
= strlen(filechars
);
195 smbcli_mkdir(cli
->tree
, "\\masktest");
197 smbcli_unlink(cli
->tree
, "\\masktest\\*");
201 pstrcpy(mask
,"\\masktest\\");
202 pstrcpy(file
,"\\masktest\\");
203 pstrcat(mask
, argv
[0]);
204 pstrcat(file
, argv
[1]);
205 testpair(cli
, mask
, file
);
213 l1
= 1 + random() % max_length
;
214 l2
= 1 + random() % max_length
;
215 pstrcpy(mask
,"\\masktest\\");
216 pstrcpy(file
,"\\masktest\\");
219 mask
[i
+l
] = maskchars
[random() % mc_len
];
224 file
[i
+l
] = filechars
[random() % fc_len
];
228 if (strcmp(file
+l
,".") == 0 ||
229 strcmp(file
+l
,"..") == 0 ||
230 strcmp(mask
+l
,"..") == 0) continue;
232 if (strspn(file
+l
, ".") == strlen(file
+l
)) continue;
234 testpair(cli
, mask
, file
);
235 if (NumLoops
&& (--NumLoops
== 0))
240 smbcli_rmdir(cli
->tree
, "\\masktest");
244 static void usage(void)
248 masktest //server/share [options..]\n\
255 -l max test length\n\
257 -f filechars (default %s)\n\
258 -m maskchars (default %s)\n\
263 This program tests wildcard matching between two servers. It generates\n\
264 random pairs of filenames/masks and tests that they match in the same\n\
265 way on the servers and internally\n\
267 filechars
, maskchars
);
270 /****************************************************************************
272 ****************************************************************************/
273 int main(int argc
,char *argv
[])
276 struct smbcli_state
*cli
;
282 setup_logging("masktest", DEBUG_STDOUT
);
284 lp_set_cmdline("log level", "0");
286 if (argc
< 2 || argv
[1][0] == '-') {
293 all_string_sub(share
,"/","\\",0);
295 setup_logging(argv
[0], DEBUG_STDOUT
);
302 credentials
= cli_credentials_init(talloc_autofree_context());
303 cli_credentials_guess(credentials
);
309 while ((opt
= getopt(argc
, argv
, "n:d:U:s:hm:f:aoW:M:vEl:")) != EOF
) {
312 NumLoops
= atoi(optarg
);
315 DEBUGLEVEL
= atoi(optarg
);
324 lp_set_cmdline("max protocol", optarg
);
327 cli_credentials_parse_string(credentials
, optarg
, CRED_SPECIFIED
);
339 max_length
= atoi(optarg
);
351 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
361 cli
= connect_one(share
);
363 DEBUG(0,("Failed to connect to %s\n", share
));
367 /* need to init seed after connect as clientgen uses random numbers */
368 DEBUG(0,("seed=%d format --- --- (server, correct)\n", seed
));
371 test_mask(argc
, argv
, cli
);