better mangling test. We now test that we can create by long name and
[samba.git] / source3 / torture / mangle_test.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB torture tester - mangling test
4    Copyright (C) Andrew Tridgell 2002
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 2 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, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "includes.h"
22
23 static TDB_CONTEXT *tdb;
24
25 #define NAME_LENGTH 20
26
27 static unsigned total, collisions;
28
29 static BOOL test_one(struct cli_state *cli, const char *name)
30 {
31         int fnum;
32         fstring shortname;
33         fstring name2;
34         NTSTATUS status;
35         TDB_DATA data;
36
37         total++;
38
39         fnum = cli_open(cli, name, O_RDWR|O_CREAT|O_EXCL, DENY_NONE);
40         if (fnum == -1) {
41                 printf("open of %s failed (%s)\n", name, cli_errstr(cli));
42                 return False;
43         }
44
45         if (!cli_close(cli, fnum)) {
46                 printf("close of %s failed (%s)\n", name, cli_errstr(cli));
47                 return False;
48         }
49
50         /* get the short name */
51         status = cli_qpathinfo_alt_name(cli, name, shortname);
52         if (!NT_STATUS_IS_OK(status)) {
53                 printf("query altname of %s failed (%s)\n", name, cli_errstr(cli));
54                 return False;
55         }
56
57         snprintf(name2, sizeof(name2), "\\mangle_test\\%s", shortname);
58         if (!cli_unlink(cli, name2)) {
59                 printf("unlink of %s  (%s) failed (%s)\n", 
60                        name2, name, cli_errstr(cli));
61                 return False;
62         }
63
64         /* recreate by short name */
65         fnum = cli_open(cli, name2, O_RDWR|O_CREAT|O_EXCL, DENY_NONE);
66         if (fnum == -1) {
67                 printf("open2 of %s failed (%s)\n", name2, cli_errstr(cli));
68                 return False;
69         }
70         if (!cli_close(cli, fnum)) {
71                 printf("close of %s failed (%s)\n", name, cli_errstr(cli));
72                 return False;
73         }
74
75         /* and unlink by long name */
76         if (!cli_unlink(cli, name)) {
77                 printf("unlink2 of %s  (%s) failed (%s)\n", 
78                        name, name2, cli_errstr(cli));
79                 return False;
80         }
81
82         /* see if the short name is already in the tdb */
83         data = tdb_fetch_by_string(tdb, shortname);
84         if (data.dptr) {
85                 /* maybe its a duplicate long name? */
86                 if (strcasecmp(name, data.dptr) != 0) {
87                         /* we have a collision */
88                         collisions++;
89                         printf("Collision between %s and %s   ->  %s\n", 
90                                name, data.dptr, shortname);
91                 }
92                 free(data.dptr);
93         } else {
94                 /* store it for later */
95                 tdb_store_by_string(tdb, shortname, name, strlen(name)+1);
96         }
97
98         return True;
99 }
100
101
102 static void gen_name(char *name)
103 {
104         const char *chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz._-$~...";
105         unsigned max_idx = strlen(chars);
106         unsigned len;
107         int i;
108         char *p;
109
110         fstrcpy(name, "\\mangle_test\\");
111         p = name + strlen(name);
112
113         len = 1 + random() % NAME_LENGTH;
114         
115         for (i=0;i<len;i++) {
116                 p[i] = chars[random() % max_idx];
117         }
118
119         p[i] = 0;
120
121         if (strcmp(p, ".") == 0 || strcmp(p, "..") == 0) {
122                 p[0] = '_';
123         }
124
125         /* have a high probability of a common lead char */
126         if (random() % 2 == 0) {
127                 p[0] = 'A';
128         }
129
130         /* and a high probability of a good extension length */
131         if (random() % 2 == 0) {
132                 char *s = strrchr(p, '.');
133                 if (s) {
134                         s[4] = 0;
135                 }
136         }
137 }
138
139
140 BOOL torture_mangle(int dummy)
141 {
142         extern int torture_numops;
143         static struct cli_state cli;
144         int i;
145
146         printf("starting mangle test\n");
147
148         if (!torture_open_connection(&cli)) {
149                 return False;
150         }
151
152         /* we will use an internal tdb to store the names we have used */
153         tdb = tdb_open(NULL, 100000, TDB_INTERNAL, 0, 0);
154         if (!tdb) {
155                 printf("ERROR: Failed to open tdb\n");
156                 return False;
157         }
158
159         cli_unlink(&cli, "\\mangle_test\\*");
160         cli_rmdir(&cli, "\\mangle_test");
161
162         if (!cli_mkdir(&cli, "\\mangle_test")) {
163                 printf("ERROR: Failed to make directory\n");
164                 return False;
165         }
166
167         for (i=0;i<torture_numops;i++) {
168                 fstring name;
169
170                 gen_name(name);
171
172                 if (!test_one(&cli, name)) {
173                         break;
174                 }
175                 if (total && total % 100 == 0) {
176                         printf("collisions %u/%u  - %.2f%%\r",
177                                collisions, total, (100.0*collisions) / total);
178                 }
179         }
180
181         if (!cli_rmdir(&cli, "\\mangle_test")) {
182                 printf("ERROR: Failed to remove directory\n");
183                 return False;
184         }
185
186         printf("\nTotal collisions %u/%u  - %.2f%%\n",
187                collisions, total, (100.0*collisions) / total);
188
189         torture_close_connection(&cli);
190
191         printf("mangle test finished\n");
192         return True;
193 }