2 Unix SMB/CIFS implementation.
3 SMB torture tester - unicode table dumper
4 Copyright (C) Andrew Tridgell 2001
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.
25 BOOL
torture_utable(int dummy
)
27 struct cli_state
*cli
;
28 fstring fname
, alt_name
;
32 int chars_allowed
=0, alt_allowed
=0;
35 printf("starting utable\n");
37 if (!torture_open_connection(&cli
)) {
41 memset(valid
, 0, sizeof(valid
));
43 cli_mkdir(cli
, "\\utable");
44 cli_unlink(cli
, "\\utable\\*");
46 for (c
=1; c
< 0x10000; c
++) {
50 fstrcpy(fname
, "\\utable\\x");
51 p
= fname
+strlen(fname
);
52 len
= convert_string(CH_UCS2
, CH_UNIX
,
54 p
, sizeof(fname
)-strlen(fname
), True
);
56 fstrcat(fname
,"_a_long_extension");
58 fnum
= cli_open(cli
, fname
, O_RDWR
| O_CREAT
| O_TRUNC
,
60 if (fnum
== -1) continue;
64 cli_qpathinfo_alt_name(cli
, fname
, alt_name
);
66 if (strncmp(alt_name
, "X_A_L", 5) != 0) {
69 d_printf("fname=[%s] alt_name=[%s]\n", fname
, alt_name
);
73 cli_unlink(cli
, fname
);
76 printf("%d (%d/%d)\r", c
, chars_allowed
, alt_allowed
);
79 printf("%d (%d/%d)\n", c
, chars_allowed
, alt_allowed
);
81 cli_rmdir(cli
, "\\utable");
83 d_printf("%d chars allowed %d alt chars allowed\n", chars_allowed
, alt_allowed
);
85 fd
= open("valid.dat", O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
87 d_printf("Failed to create valid.dat - %s", strerror(errno
));
90 write(fd
, valid
, 0x10000);
92 d_printf("wrote valid.dat\n");
98 static char *form_name(int c
)
100 static fstring fname
;
105 fstrcpy(fname
, "\\utable\\");
106 p
= fname
+strlen(fname
);
109 len
= convert_string(CH_UCS2
, CH_UNIX
,
111 p
, sizeof(fname
)-strlen(fname
), True
);
116 BOOL
torture_casetable(int dummy
)
118 static struct cli_state
*cli
;
122 #define MAX_EQUIVALENCE 8
123 smb_ucs2_t equiv
[0x10000][MAX_EQUIVALENCE
];
124 printf("starting casetable\n");
126 if (!torture_open_connection(&cli
)) {
130 memset(equiv
, 0, sizeof(equiv
));
132 cli_unlink(cli
, "\\utable\\*");
133 cli_rmdir(cli
, "\\utable");
134 if (!cli_mkdir(cli
, "\\utable")) {
135 printf("Failed to create utable directory!\n");
139 for (c
=1; c
< 0x10000; c
++) {
142 if (c
== '.' || c
== '\\') continue;
144 printf("%04x (%c)\n", c
, isprint(c
)?c
:'.');
146 fname
= form_name(c
);
147 fnum
= cli_nt_create_full(cli
, fname
, 0,
149 FILE_ATTRIBUTE_NORMAL
,
154 printf("Failed to create file with char %04x\n", c
);
160 if (!cli_qfileinfo(cli
, fnum
, NULL
, &size
,
161 NULL
, NULL
, NULL
, NULL
, NULL
)) continue;
164 /* found a character equivalence! */
165 int c2
[MAX_EQUIVALENCE
];
167 if (size
/sizeof(int) >= MAX_EQUIVALENCE
) {
168 printf("too many chars match?? size=%ld c=0x%04x\n",
169 (unsigned long)size
, c
);
170 cli_close(cli
, fnum
);
174 cli_read(cli
, fnum
, (char *)c2
, 0, size
);
177 for (i
=0; i
<size
/sizeof(int); i
++) {
178 printf("%04x ", c2
[i
]);
179 equiv
[c
][i
+1] = c2
[i
];
185 cli_write(cli
, fnum
, 0, (char *)&c
, size
, sizeof(c
));
186 cli_close(cli
, fnum
);
189 cli_unlink(cli
, "\\utable\\*");
190 cli_rmdir(cli
, "\\utable");