s3:torture: move the torture-specific headers to new torture/torture.h
[ira/wip.git] / source3 / torture / utable.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB torture tester - unicode table dumper
4    Copyright (C) Andrew Tridgell 2001
5    
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.
10    
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.
15    
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/>.
18 */
19
20 #include "includes.h"
21 #include "torture.h"
22
23 bool torture_utable(int dummy)
24 {
25         struct cli_state *cli;
26         fstring fname, alt_name;
27         uint16_t fnum;
28         smb_ucs2_t c2;
29         int c, len, fd;
30         int chars_allowed=0, alt_allowed=0;
31         uint8 valid[0x10000];
32
33         printf("starting utable\n");
34
35         if (!torture_open_connection(&cli, 0)) {
36                 return False;
37         }
38
39         memset(valid, 0, sizeof(valid));
40
41         cli_mkdir(cli, "\\utable");
42         cli_unlink(cli, "\\utable\\*", aSYSTEM | aHIDDEN);
43
44         for (c=1; c < 0x10000; c++) {
45                 char *p;
46
47                 SSVAL(&c2, 0, c);
48                 fstrcpy(fname, "\\utable\\x");
49                 p = fname+strlen(fname);
50                 len = convert_string(CH_UTF16LE, CH_UNIX, 
51                                      &c2, 2, 
52                                      p, sizeof(fname)-strlen(fname), True);
53                 p[len] = 0;
54                 fstrcat(fname,"_a_long_extension");
55
56                 if (!NT_STATUS_IS_OK(cli_open(cli, fname, O_RDWR | O_CREAT | O_TRUNC, 
57                                 DENY_NONE, &fnum))) {
58                         continue;
59                 }
60
61                 chars_allowed++;
62
63                 cli_qpathinfo_alt_name(cli, fname, alt_name);
64
65                 if (strncmp(alt_name, "X_A_L", 5) != 0) {
66                         alt_allowed++;
67                         valid[c] = 1;
68                         d_printf("fname=[%s] alt_name=[%s]\n", fname, alt_name);
69                 }
70
71                 cli_close(cli, fnum);
72                 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
73
74                 if (c % 100 == 0) {
75                         printf("%d (%d/%d)\r", c, chars_allowed, alt_allowed);
76                 }
77         }
78         printf("%d (%d/%d)\n", c, chars_allowed, alt_allowed);
79
80         cli_rmdir(cli, "\\utable");
81
82         d_printf("%d chars allowed   %d alt chars allowed\n", chars_allowed, alt_allowed);
83
84         fd = open("valid.dat", O_WRONLY|O_CREAT|O_TRUNC, 0644);
85         if (fd == -1) {
86                 d_printf("Failed to create valid.dat - %s", strerror(errno));
87                 return False;
88         }
89         if (write(fd, valid, 0x10000) != 0x10000) {
90                 d_printf("Failed to create valid.dat - %s", strerror(errno));
91                 close(fd);
92                 return false;
93         }
94         close(fd);
95         d_printf("wrote valid.dat\n");
96
97         return True;
98 }
99
100
101 static char *form_name(int c)
102 {
103         static fstring fname;
104         smb_ucs2_t c2;
105         char *p;
106         int len;
107
108         fstrcpy(fname, "\\utable\\");
109         p = fname+strlen(fname);
110         SSVAL(&c2, 0, c);
111
112         len = convert_string(CH_UTF16LE, CH_UNIX, 
113                              &c2, 2, 
114                              p, sizeof(fname)-strlen(fname), True);
115         p[len] = 0;
116         return fname;
117 }
118
119 bool torture_casetable(int dummy)
120 {
121         static struct cli_state *cli;
122         char *fname;
123         uint16_t fnum;
124         int c, i;
125 #define MAX_EQUIVALENCE 8
126         smb_ucs2_t equiv[0x10000][MAX_EQUIVALENCE];
127         printf("starting casetable\n");
128
129         if (!torture_open_connection(&cli, 0)) {
130                 return False;
131         }
132
133         memset(equiv, 0, sizeof(equiv));
134
135         cli_unlink(cli, "\\utable\\*", aSYSTEM | aHIDDEN);
136         cli_rmdir(cli, "\\utable");
137         if (!NT_STATUS_IS_OK(cli_mkdir(cli, "\\utable"))) {
138                 printf("Failed to create utable directory!\n");
139                 return False;
140         }
141
142         for (c=1; c < 0x10000; c++) {
143                 SMB_OFF_T size;
144
145                 if (c == '.' || c == '\\') continue;
146
147                 printf("%04x (%c)\n", c, isprint(c)?c:'.');
148
149                 fname = form_name(c);
150                 if (!NT_STATUS_IS_OK(cli_ntcreate(cli, fname, 0,
151                                           GENERIC_ALL_ACCESS, 
152                                           FILE_ATTRIBUTE_NORMAL,
153                                           FILE_SHARE_NONE,
154                                           FILE_OPEN_IF, 0, 0, &fnum))) {
155                         printf("Failed to create file with char %04x\n", c);
156                         continue;
157                 }
158
159                 size = 0;
160
161                 if (!cli_qfileinfo(cli, fnum, NULL, &size, 
162                                    NULL, NULL, NULL, NULL, NULL)) continue;
163
164                 if (size > 0) {
165                         /* found a character equivalence! */
166                         int c2[MAX_EQUIVALENCE];
167
168                         if (size/sizeof(int) >= MAX_EQUIVALENCE) {
169                                 printf("too many chars match?? size=%ld c=0x%04x\n",
170                                        (unsigned long)size, c);
171                                 cli_close(cli, fnum);
172                                 return False;
173                         }
174
175                         cli_read(cli, fnum, (char *)c2, 0, size);
176                         printf("%04x: ", c);
177                         equiv[c][0] = c;
178                         for (i=0; i<size/sizeof(int); i++) {
179                                 printf("%04x ", c2[i]);
180                                 equiv[c][i+1] = c2[i];
181                         }
182                         printf("\n");
183                         fflush(stdout);
184                 }
185
186                 cli_write(cli, fnum, 0, (char *)&c, size, sizeof(c));
187                 cli_close(cli, fnum);
188         }
189
190         cli_unlink(cli, "\\utable\\*", aSYSTEM | aHIDDEN);
191         cli_rmdir(cli, "\\utable");
192
193         return True;
194 }