r13121: Tag 4.0.0TP1
[Samba.git] / source / torture / locktest2.c
blob9b1a44e72715dea8bb1ccdfdc3c49921232bcc28
1 /*
2 Unix SMB/CIFS implementation.
3 byte range lock tester - with local filesystem support
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.
21 #include "includes.h"
22 #include "system/passwd.h"
24 static fstring password;
25 static fstring username;
26 static int got_pass;
27 static int numops = 1000;
28 static BOOL showall;
29 static BOOL analyze;
30 static BOOL hide_unlock_fails;
31 static BOOL use_oplocks;
33 #define FILENAME "\\locktest.dat"
34 #define LOCKRANGE 100
35 #define LOCKBASE 0
38 #define LOCKBASE (0x40000000 - 50)
41 #define READ_PCT 50
42 #define LOCK_PCT 25
43 #define UNLOCK_PCT 65
44 #define RANGE_MULTIPLE 1
46 #define NSERVERS 2
47 #define NCONNECTIONS 2
48 #define NUMFSTYPES 2
49 #define NFILES 2
50 #define LOCK_TIMEOUT 0
52 #define FSTYPE_SMB 0
53 #define FSTYPE_NFS 1
55 struct record {
56 char r1, r2;
57 char conn, f, fstype;
58 uint_t start, len;
59 char needed;
62 static struct record *recorded;
64 static int try_open(struct smbcli_state *c, char *nfs, int fstype, const char *fname, int flags)
66 pstring path;
68 switch (fstype) {
69 case FSTYPE_SMB:
70 return smbcli_open(c, fname, flags, DENY_NONE);
72 case FSTYPE_NFS:
73 slprintf(path, sizeof(path), "%s%s", nfs, fname);
74 pstring_sub(path,"\\", "/");
75 return open(path, flags, 0666);
78 return -1;
81 static BOOL try_close(struct smbcli_state *c, int fstype, int fd)
83 switch (fstype) {
84 case FSTYPE_SMB:
85 return smbcli_close(c, fd);
87 case FSTYPE_NFS:
88 return close(fd) == 0;
91 return False;
94 static BOOL try_lock(struct smbcli_state *c, int fstype,
95 int fd, uint_t start, uint_t len,
96 enum brl_type op)
98 struct flock lock;
100 switch (fstype) {
101 case FSTYPE_SMB:
102 return smbcli_lock(c, fd, start, len, LOCK_TIMEOUT, op);
104 case FSTYPE_NFS:
105 lock.l_type = (op==READ_LOCK) ? F_RDLCK:F_WRLCK;
106 lock.l_whence = SEEK_SET;
107 lock.l_start = start;
108 lock.l_len = len;
109 lock.l_pid = getpid();
110 return fcntl(fd,F_SETLK,&lock) == 0;
113 return False;
116 static BOOL try_unlock(struct smbcli_state *c, int fstype,
117 int fd, uint_t start, uint_t len)
119 struct flock lock;
121 switch (fstype) {
122 case FSTYPE_SMB:
123 return smbcli_unlock(c, fd, start, len);
125 case FSTYPE_NFS:
126 lock.l_type = F_UNLCK;
127 lock.l_whence = SEEK_SET;
128 lock.l_start = start;
129 lock.l_len = len;
130 lock.l_pid = getpid();
131 return fcntl(fd,F_SETLK,&lock) == 0;
134 return False;
137 /*****************************************************
138 return a connection to a server
139 *******************************************************/
140 static struct smbcli_state *connect_one(char *share)
142 struct smbcli_state *c;
143 char *server_n;
144 fstring server;
145 fstring myname;
146 static int count;
147 NTSTATUS nt_status;
149 fstrcpy(server,share+2);
150 share = strchr_m(server,'\\');
151 if (!share) return NULL;
152 *share = 0;
153 share++;
155 server_n = server;
157 if (!got_pass) {
158 char *pass = getpass("Password: ");
159 if (pass) {
160 fstrcpy(password, pass);
164 slprintf(myname,sizeof(myname), "lock-%u-%u", getpid(), count++);
166 nt_status = smbcli_full_connection(NULL,
167 &c, myname, server_n, 0, share, NULL,
168 username, lp_workgroup(), password, NULL);
169 if (!NT_STATUS_IS_OK(nt_status)) {
170 DEBUG(0, ("smbcli_full_connection failed with error %s\n", nt_errstr(nt_status)));
171 return NULL;
174 c->use_oplocks = use_oplocks;
176 return c;
180 static void reconnect(struct smbcli_state *cli[NSERVERS][NCONNECTIONS],
181 char *nfs[NSERVERS],
182 int fnum[NSERVERS][NUMFSTYPES][NCONNECTIONS][NFILES],
183 char *share1, char *share2)
185 int server, conn, f, fstype;
186 char *share[2];
187 share[0] = share1;
188 share[1] = share2;
190 fstype = FSTYPE_SMB;
192 for (server=0;server<NSERVERS;server++)
193 for (conn=0;conn<NCONNECTIONS;conn++) {
194 if (cli[server][conn]) {
195 for (f=0;f<NFILES;f++) {
196 smbcli_close(cli[server][conn], fnum[server][fstype][conn][f]);
198 smbcli_ulogoff(cli[server][conn]);
199 talloc_free(cli[server][conn]);
201 cli[server][conn] = connect_one(share[server]);
202 if (!cli[server][conn]) {
203 DEBUG(0,("Failed to connect to %s\n", share[server]));
204 exit(1);
211 static BOOL test_one(struct smbcli_state *cli[NSERVERS][NCONNECTIONS],
212 char *nfs[NSERVERS],
213 int fnum[NSERVERS][NUMFSTYPES][NCONNECTIONS][NFILES],
214 struct record *rec)
216 uint_t conn = rec->conn;
217 uint_t f = rec->f;
218 uint_t fstype = rec->fstype;
219 uint_t start = rec->start;
220 uint_t len = rec->len;
221 uint_t r1 = rec->r1;
222 uint_t r2 = rec->r2;
223 enum brl_type op;
224 int server;
225 BOOL ret[NSERVERS];
227 if (r1 < READ_PCT) {
228 op = READ_LOCK;
229 } else {
230 op = WRITE_LOCK;
233 if (r2 < LOCK_PCT) {
234 /* set a lock */
235 for (server=0;server<NSERVERS;server++) {
236 ret[server] = try_lock(cli[server][conn], fstype,
237 fnum[server][fstype][conn][f],
238 start, len, op);
240 if (showall || ret[0] != ret[1]) {
241 printf("lock conn=%u fstype=%u f=%u range=%u:%u(%u) op=%s -> %u:%u\n",
242 conn, fstype, f,
243 start, start+len-1, len,
244 op==READ_LOCK?"READ_LOCK":"WRITE_LOCK",
245 ret[0], ret[1]);
247 if (ret[0] != ret[1]) return False;
248 } else if (r2 < LOCK_PCT+UNLOCK_PCT) {
249 /* unset a lock */
250 for (server=0;server<NSERVERS;server++) {
251 ret[server] = try_unlock(cli[server][conn], fstype,
252 fnum[server][fstype][conn][f],
253 start, len);
255 if (showall || (!hide_unlock_fails && (ret[0] != ret[1]))) {
256 printf("unlock conn=%u fstype=%u f=%u range=%u:%u(%u) -> %u:%u\n",
257 conn, fstype, f,
258 start, start+len-1, len,
259 ret[0], ret[1]);
261 if (!hide_unlock_fails && ret[0] != ret[1]) return False;
262 } else {
263 /* reopen the file */
264 for (server=0;server<NSERVERS;server++) {
265 try_close(cli[server][conn], fstype, fnum[server][fstype][conn][f]);
266 fnum[server][fstype][conn][f] = try_open(cli[server][conn], nfs[server], fstype, FILENAME,
267 O_RDWR|O_CREAT);
268 if (fnum[server][fstype][conn][f] == -1) {
269 printf("failed to reopen on share1\n");
270 return False;
273 if (showall) {
274 printf("reopen conn=%u fstype=%u f=%u\n",
275 conn, fstype, f);
278 return True;
281 static void close_files(struct smbcli_state *cli[NSERVERS][NCONNECTIONS],
282 char *nfs[NSERVERS],
283 int fnum[NSERVERS][NUMFSTYPES][NCONNECTIONS][NFILES])
285 int server, conn, f, fstype;
287 for (server=0;server<NSERVERS;server++)
288 for (fstype=0;fstype<NUMFSTYPES;fstype++)
289 for (conn=0;conn<NCONNECTIONS;conn++)
290 for (f=0;f<NFILES;f++) {
291 if (fnum[server][fstype][conn][f] != -1) {
292 try_close(cli[server][conn], fstype, fnum[server][fstype][conn][f]);
293 fnum[server][fstype][conn][f] = -1;
296 for (server=0;server<NSERVERS;server++) {
297 smbcli_unlink(cli[server][0], FILENAME);
301 static void open_files(struct smbcli_state *cli[NSERVERS][NCONNECTIONS],
302 char *nfs[NSERVERS],
303 int fnum[NSERVERS][NUMFSTYPES][NCONNECTIONS][NFILES])
305 int server, fstype, conn, f;
307 for (server=0;server<NSERVERS;server++)
308 for (fstype=0;fstype<NUMFSTYPES;fstype++)
309 for (conn=0;conn<NCONNECTIONS;conn++)
310 for (f=0;f<NFILES;f++) {
311 fnum[server][fstype][conn][f] = try_open(cli[server][conn], nfs[server], fstype, FILENAME,
312 O_RDWR|O_CREAT);
313 if (fnum[server][fstype][conn][f] == -1) {
314 fprintf(stderr,"Failed to open fnum[%u][%u][%u][%u]\n",
315 server, fstype, conn, f);
316 exit(1);
322 static int retest(struct smbcli_state *cli[NSERVERS][NCONNECTIONS],
323 char *nfs[NSERVERS],
324 int fnum[NSERVERS][NUMFSTYPES][NCONNECTIONS][NFILES],
325 int n)
327 int i;
328 printf("testing %u ...\n", n);
329 for (i=0; i<n; i++) {
330 if (i && i % 100 == 0) {
331 printf("%u\n", i);
334 if (recorded[i].needed &&
335 !test_one(cli, nfs, fnum, &recorded[i])) return i;
337 return n;
341 /* each server has two connections open to it. Each connection has two file
342 descriptors open on the file - 8 file descriptors in total
344 we then do random locking ops in tamdem on the 4 fnums from each
345 server and ensure that the results match
347 static void test_locks(char *share1, char *share2, char *nfspath1, char *nfspath2)
349 struct smbcli_state *cli[NSERVERS][NCONNECTIONS];
350 char *nfs[NSERVERS];
351 int fnum[NSERVERS][NUMFSTYPES][NCONNECTIONS][NFILES];
352 int n, i, n1;
354 nfs[0] = nfspath1;
355 nfs[1] = nfspath2;
357 ZERO_STRUCT(fnum);
358 ZERO_STRUCT(cli);
360 recorded = malloc_array_p(struct record, numops);
362 for (n=0; n<numops; n++) {
363 recorded[n].conn = random() % NCONNECTIONS;
364 recorded[n].fstype = random() % NUMFSTYPES;
365 recorded[n].f = random() % NFILES;
366 recorded[n].start = LOCKBASE + ((uint_t)random() % (LOCKRANGE-1));
367 recorded[n].len = 1 +
368 random() % (LOCKRANGE-(recorded[n].start-LOCKBASE));
369 recorded[n].start *= RANGE_MULTIPLE;
370 recorded[n].len *= RANGE_MULTIPLE;
371 recorded[n].r1 = random() % 100;
372 recorded[n].r2 = random() % 100;
373 recorded[n].needed = True;
376 reconnect(cli, nfs, fnum, share1, share2);
377 open_files(cli, nfs, fnum);
378 n = retest(cli, nfs, fnum, numops);
380 if (n == numops || !analyze) return;
381 n++;
383 while (1) {
384 n1 = n;
386 close_files(cli, nfs, fnum);
387 reconnect(cli, nfs, fnum, share1, share2);
388 open_files(cli, nfs, fnum);
390 for (i=0;i<n-1;i++) {
391 int m;
392 recorded[i].needed = False;
394 close_files(cli, nfs, fnum);
395 open_files(cli, nfs, fnum);
397 m = retest(cli, nfs, fnum, n);
398 if (m == n) {
399 recorded[i].needed = True;
400 } else {
401 if (i < m) {
402 memmove(&recorded[i], &recorded[i+1],
403 (m-i)*sizeof(recorded[0]));
405 n = m;
406 i--;
410 if (n1 == n) break;
413 close_files(cli, nfs, fnum);
414 reconnect(cli, nfs, fnum, share1, share2);
415 open_files(cli, nfs, fnum);
416 showall = True;
417 n1 = retest(cli, nfs, fnum, n);
418 if (n1 != n-1) {
419 printf("ERROR - inconsistent result (%u %u)\n", n1, n);
421 close_files(cli, nfs, fnum);
423 for (i=0;i<n;i++) {
424 printf("{%u, %u, %u, %u, %u, %u, %u, %u},\n",
425 recorded[i].r1,
426 recorded[i].r2,
427 recorded[i].conn,
428 recorded[i].fstype,
429 recorded[i].f,
430 recorded[i].start,
431 recorded[i].len,
432 recorded[i].needed);
438 static void usage(void)
440 printf(
441 "Usage:\n\
442 locktest //server1/share1 //server2/share2 /path1 /path2 [options..]\n\
443 options:\n\
444 -U user%%pass\n\
445 -s seed\n\
446 -o numops\n\
447 -u hide unlock fails\n\
448 -a (show all ops)\n\
449 -O use oplocks\n\
453 /****************************************************************************
454 main program
455 ****************************************************************************/
456 int main(int argc,char *argv[])
458 char *share1, *share2, *nfspath1, *nfspath2;
459 extern char *optarg;
460 extern int optind;
461 int opt;
462 char *p;
463 int seed;
465 setlinebuf(stdout);
467 dbf = x_stderr;
469 if (argc < 5 || argv[1][0] == '-') {
470 usage();
471 exit(1);
474 share1 = argv[1];
475 share2 = argv[2];
476 nfspath1 = argv[3];
477 nfspath2 = argv[4];
479 all_string_sub(share1,"/","\\",0);
480 all_string_sub(share2,"/","\\",0);
482 setup_logging(argv[0], DEBUG_STDOUT);
484 argc -= 4;
485 argv += 4;
487 lp_load();
489 if (getenv("USER")) {
490 fstrcpy(username,getenv("USER"));
493 seed = time(NULL);
495 while ((opt = getopt(argc, argv, "U:s:ho:aAW:O")) != EOF) {
496 switch (opt) {
497 case 'U':
498 fstrcpy(username,optarg);
499 p = strchr_m(username,'%');
500 if (p) {
501 *p = 0;
502 fstrcpy(password, p+1);
503 got_pass = 1;
505 break;
506 case 's':
507 seed = atoi(optarg);
508 break;
509 case 'u':
510 hide_unlock_fails = True;
511 break;
512 case 'o':
513 numops = atoi(optarg);
514 break;
515 case 'O':
516 use_oplocks = True;
517 break;
518 case 'a':
519 showall = True;
520 break;
521 case 'A':
522 analyze = True;
523 break;
524 case 'h':
525 usage();
526 exit(1);
527 default:
528 printf("Unknown option %c (%d)\n", (char)opt, opt);
529 exit(1);
533 argc -= optind;
534 argv += optind;
536 DEBUG(0,("seed=%u\n", seed));
537 srandom(seed);
539 locking_init(1);
540 test_locks(share1, share2, nfspath1, nfspath2);
542 return(0);