Merge branch 'master' of /home/tridge/samba/git/combined
[Samba/aatanasov.git] / source3 / torture / utable.c
blob1f75164848ff57c753f415eec92465a34f2717b6
1 /*
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 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/>.
20 #include "includes.h"
22 bool torture_utable(int dummy)
24 struct cli_state *cli;
25 fstring fname, alt_name;
26 uint16_t fnum;
27 smb_ucs2_t c2;
28 int c, len, fd;
29 int chars_allowed=0, alt_allowed=0;
30 uint8 valid[0x10000];
32 printf("starting utable\n");
34 if (!torture_open_connection(&cli, 0)) {
35 return False;
38 memset(valid, 0, sizeof(valid));
40 cli_mkdir(cli, "\\utable");
41 cli_unlink(cli, "\\utable\\*", aSYSTEM | aHIDDEN);
43 for (c=1; c < 0x10000; c++) {
44 char *p;
46 SSVAL(&c2, 0, c);
47 fstrcpy(fname, "\\utable\\x");
48 p = fname+strlen(fname);
49 len = convert_string(CH_UTF16LE, CH_UNIX,
50 &c2, 2,
51 p, sizeof(fname)-strlen(fname), True);
52 p[len] = 0;
53 fstrcat(fname,"_a_long_extension");
55 if (!NT_STATUS_IS_OK(cli_open(cli, fname, O_RDWR | O_CREAT | O_TRUNC,
56 DENY_NONE, &fnum))) {
57 continue;
60 chars_allowed++;
62 cli_qpathinfo_alt_name(cli, fname, alt_name);
64 if (strncmp(alt_name, "X_A_L", 5) != 0) {
65 alt_allowed++;
66 valid[c] = 1;
67 d_printf("fname=[%s] alt_name=[%s]\n", fname, alt_name);
70 cli_close(cli, fnum);
71 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
73 if (c % 100 == 0) {
74 printf("%d (%d/%d)\r", c, chars_allowed, alt_allowed);
77 printf("%d (%d/%d)\n", c, chars_allowed, alt_allowed);
79 cli_rmdir(cli, "\\utable");
81 d_printf("%d chars allowed %d alt chars allowed\n", chars_allowed, alt_allowed);
83 fd = open("valid.dat", O_WRONLY|O_CREAT|O_TRUNC, 0644);
84 if (fd == -1) {
85 d_printf("Failed to create valid.dat - %s", strerror(errno));
86 return False;
88 if (write(fd, valid, 0x10000) != 0x10000) {
89 d_printf("Failed to create valid.dat - %s", strerror(errno));
90 close(fd);
91 return false;
93 close(fd);
94 d_printf("wrote valid.dat\n");
96 return True;
100 static char *form_name(int c)
102 static fstring fname;
103 smb_ucs2_t c2;
104 char *p;
105 int len;
107 fstrcpy(fname, "\\utable\\");
108 p = fname+strlen(fname);
109 SSVAL(&c2, 0, c);
111 len = convert_string(CH_UTF16LE, CH_UNIX,
112 &c2, 2,
113 p, sizeof(fname)-strlen(fname), True);
114 p[len] = 0;
115 return fname;
118 bool torture_casetable(int dummy)
120 static struct cli_state *cli;
121 char *fname;
122 uint16_t fnum;
123 int c, i;
124 #define MAX_EQUIVALENCE 8
125 smb_ucs2_t equiv[0x10000][MAX_EQUIVALENCE];
126 printf("starting casetable\n");
128 if (!torture_open_connection(&cli, 0)) {
129 return False;
132 memset(equiv, 0, sizeof(equiv));
134 cli_unlink(cli, "\\utable\\*", aSYSTEM | aHIDDEN);
135 cli_rmdir(cli, "\\utable");
136 if (!NT_STATUS_IS_OK(cli_mkdir(cli, "\\utable"))) {
137 printf("Failed to create utable directory!\n");
138 return False;
141 for (c=1; c < 0x10000; c++) {
142 SMB_OFF_T size;
144 if (c == '.' || c == '\\') continue;
146 printf("%04x (%c)\n", c, isprint(c)?c:'.');
148 fname = form_name(c);
149 if (!NT_STATUS_IS_OK(cli_ntcreate(cli, fname, 0,
150 GENERIC_ALL_ACCESS,
151 FILE_ATTRIBUTE_NORMAL,
152 FILE_SHARE_NONE,
153 FILE_OPEN_IF, 0, 0, &fnum))) {
154 printf("Failed to create file with char %04x\n", c);
155 continue;
158 size = 0;
160 if (!cli_qfileinfo(cli, fnum, NULL, &size,
161 NULL, NULL, NULL, NULL, NULL)) continue;
163 if (size > 0) {
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);
171 return False;
174 cli_read(cli, fnum, (char *)c2, 0, size);
175 printf("%04x: ", c);
176 equiv[c][0] = c;
177 for (i=0; i<size/sizeof(int); i++) {
178 printf("%04x ", c2[i]);
179 equiv[c][i+1] = c2[i];
181 printf("\n");
182 fflush(stdout);
185 cli_write(cli, fnum, 0, (char *)&c, size, sizeof(c));
186 cli_close(cli, fnum);
189 cli_unlink(cli, "\\utable\\*", aSYSTEM | aHIDDEN);
190 cli_rmdir(cli, "\\utable");
192 return True;