2 Unix SMB/CIFS implementation.
3 randomised byte range lock tester
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.
23 static fstring password
[2];
24 static fstring username
[2];
27 static BOOL use_kerberos
;
28 static int numops
= 1000;
31 static BOOL hide_unlock_fails
;
32 static BOOL use_oplocks
;
33 static unsigned lock_range
= 100;
34 static unsigned lock_base
= 0;
35 static unsigned min_length
= 0;
36 static BOOL exact_error_codes
;
37 static BOOL zero_zero
;
39 #define FILENAME "\\locktest.dat"
44 #define RANGE_MULTIPLE 1
46 #define NCONNECTIONS 2
48 #define LOCK_TIMEOUT 0
50 #define NASTY_POSIX_LOCK_HACK 0
52 enum lock_op
{OP_LOCK
, OP_UNLOCK
, OP_REOPEN
};
54 const char *lock_op_type(int op
)
56 if (op
== WRITE_LOCK
) return "write";
57 else if (op
== READ_LOCK
) return "read";
61 const char *lock_op_name(enum lock_op op
)
63 if (op
== OP_LOCK
) return "lock";
64 else if (op
== OP_UNLOCK
) return "unlock";
70 enum brl_type lock_type
;
72 SMB_BIG_UINT start
, len
;
79 static struct record preset
[] = {
80 {OP_LOCK
, WRITE_LOCK
, 0, 0, 2, 0, 1},
81 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
82 {OP_LOCK
, WRITE_LOCK
, 0, 0, 3, 0, 1},
83 {OP_UNLOCK
, 0 , 0, 0, 2, 0, 1},
84 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
86 {OP_LOCK
, READ_LOCK
, 0, 0, 2, 0, 1},
87 {OP_LOCK
, READ_LOCK
, 0, 0, 1, 1, 1},
88 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
89 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
91 {OP_LOCK
, READ_LOCK
, 0, 0, 2, 0, 1},
92 {OP_LOCK
, WRITE_LOCK
, 0, 0, 3, 1, 1},
93 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
94 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
96 {OP_LOCK
, READ_LOCK
, 0, 0, 2, 0, 1},
97 {OP_LOCK
, WRITE_LOCK
, 0, 0, 1, 1, 1},
98 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
99 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
101 {OP_LOCK
, WRITE_LOCK
, 0, 0, 2, 0, 1},
102 {OP_LOCK
, READ_LOCK
, 0, 0, 1, 1, 1},
103 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
104 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
106 {OP_LOCK
, WRITE_LOCK
, 0, 0, 2, 0, 1},
107 {OP_LOCK
, READ_LOCK
, 0, 0, 3, 1, 1},
108 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
109 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
114 static struct record
*recorded
;
116 static void print_brl(SMB_DEV_T dev
,
118 struct process_id pid
,
119 enum brl_type lock_type
,
120 enum brl_flavour lock_flav
,
124 #if NASTY_POSIX_LOCK_HACK
127 static SMB_INO_T lastino
;
129 if (lastino
!= ino
) {
130 slprintf(cmd
, sizeof(cmd
),
131 "egrep POSIX.*%u /proc/locks", (int)ino
);
138 printf("%s %05x:%05x %s %.0f:%.0f(%.0f)\n",
139 procid_str_static(&pid
), (int)dev
, (int)ino
,
140 lock_type
==READ_LOCK
?"R":"W",
141 (double)start
, (double)start
+size
-1,(double)size
);
146 static void show_locks(void)
148 brl_forall(print_brl
);
149 /* system("cat /proc/locks"); */
153 /*****************************************************
154 return a connection to a server
155 *******************************************************/
156 static struct cli_state
*connect_one(char *share
, int snum
)
159 struct nmb_name called
, calling
;
166 fstrcpy(server
,share
+2);
167 share
= strchr_m(server
,'\\');
168 if (!share
) return NULL
;
176 slprintf(myname
,sizeof(myname
), "lock-%lu-%u", (unsigned long)getpid(), count
++);
178 make_nmb_name(&calling
, myname
, 0x0);
179 make_nmb_name(&called
, server
, 0x20);
184 /* have to open a new connection */
185 if (!(c
=cli_initialise()) || !cli_connect(c
, server_n
, &ip
)) {
186 DEBUG(0,("Connection to %s failed\n", server_n
));
190 c
->use_kerberos
= use_kerberos
;
192 if (!cli_session_request(c
, &calling
, &called
)) {
193 DEBUG(0,("session request to %s failed\n", called
.name
));
195 if (strcmp(called
.name
, "*SMBSERVER")) {
196 make_nmb_name(&called
, "*SMBSERVER", 0x20);
202 DEBUG(4,(" session request ok\n"));
204 if (!cli_negprot(c
)) {
205 DEBUG(0,("protocol negotiation failed\n"));
211 char *pass
= getpass("Password: ");
213 fstrcpy(password
[0], pass
);
214 fstrcpy(password
[1], pass
);
219 fstrcpy(password
[1], password
[0]);
220 fstrcpy(username
[1], username
[0]);
223 if (!NT_STATUS_IS_OK(cli_session_setup(c
, username
[snum
],
225 strlen(password
[snum
]),
227 strlen(password
[snum
]),
229 DEBUG(0,("session setup failed: %s\n", cli_errstr(c
)));
234 * These next two lines are needed to emulate
235 * old client behaviour for people who have
236 * scripts based on client output.
237 * QUESTION ? Do we want to have a 'client compatibility
238 * mode to turn these on/off ? JRA.
241 if (*c
->server_domain
|| *c
->server_os
|| *c
->server_type
)
242 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
243 c
->server_domain
,c
->server_os
,c
->server_type
));
245 DEBUG(4,(" session setup ok\n"));
247 if (!cli_send_tconX(c
, share
, "?????",
248 password
[snum
], strlen(password
[snum
])+1)) {
249 DEBUG(0,("tree connect failed: %s\n", cli_errstr(c
)));
254 DEBUG(4,(" tconx ok\n"));
256 c
->use_oplocks
= use_oplocks
;
262 static void reconnect(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
], int fnum
[NSERVERS
][NCONNECTIONS
][NFILES
],
263 char *share
[NSERVERS
])
267 for (server
=0;server
<NSERVERS
;server
++)
268 for (conn
=0;conn
<NCONNECTIONS
;conn
++) {
269 if (cli
[server
][conn
]) {
270 for (f
=0;f
<NFILES
;f
++) {
271 if (fnum
[server
][conn
][f
] != -1) {
272 cli_close(cli
[server
][conn
], fnum
[server
][conn
][f
]);
273 fnum
[server
][conn
][f
] = -1;
276 cli_ulogoff(cli
[server
][conn
]);
277 cli_shutdown(cli
[server
][conn
]);
279 cli
[server
][conn
] = connect_one(share
[server
], server
);
280 if (!cli
[server
][conn
]) {
281 DEBUG(0,("Failed to connect to %s\n", share
[server
]));
289 static BOOL
test_one(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
290 int fnum
[NSERVERS
][NCONNECTIONS
][NFILES
],
293 unsigned conn
= rec
->conn
;
295 SMB_BIG_UINT start
= rec
->start
;
296 SMB_BIG_UINT len
= rec
->len
;
297 enum brl_type op
= rec
->lock_type
;
300 NTSTATUS status
[NSERVERS
];
302 switch (rec
->lock_op
) {
305 for (server
=0;server
<NSERVERS
;server
++) {
306 ret
[server
] = cli_lock64(cli
[server
][conn
],
307 fnum
[server
][conn
][f
],
308 start
, len
, LOCK_TIMEOUT
, op
);
309 status
[server
] = cli_nt_error(cli
[server
][conn
]);
310 if (!exact_error_codes
&&
311 NT_STATUS_EQUAL(status
[server
],
312 NT_STATUS_FILE_LOCK_CONFLICT
)) {
313 status
[server
] = NT_STATUS_LOCK_NOT_GRANTED
;
316 if (showall
|| !NT_STATUS_EQUAL(status
[0],status
[1])) {
317 printf("lock conn=%u f=%u range=%.0f(%.0f) op=%s -> %s:%s\n",
319 (double)start
, (double)len
,
320 op
==READ_LOCK
?"READ_LOCK":"WRITE_LOCK",
321 nt_errstr(status
[0]), nt_errstr(status
[1]));
323 if (showall
|| !NT_STATUS_EQUAL(status
[0],status
[1])) show_locks();
324 if (!NT_STATUS_EQUAL(status
[0],status
[1])) return False
;
329 for (server
=0;server
<NSERVERS
;server
++) {
330 ret
[server
] = cli_unlock64(cli
[server
][conn
],
331 fnum
[server
][conn
][f
],
333 status
[server
] = cli_nt_error(cli
[server
][conn
]);
336 (!hide_unlock_fails
&& !NT_STATUS_EQUAL(status
[0],status
[1]))) {
337 printf("unlock conn=%u f=%u range=%.0f(%.0f) -> %s:%s\n",
339 (double)start
, (double)len
,
340 nt_errstr(status
[0]), nt_errstr(status
[1]));
342 if (showall
|| !NT_STATUS_EQUAL(status
[0],status
[1])) show_locks();
343 if (!hide_unlock_fails
&& !NT_STATUS_EQUAL(status
[0],status
[1]))
348 /* reopen the file */
349 for (server
=0;server
<NSERVERS
;server
++) {
350 cli_close(cli
[server
][conn
], fnum
[server
][conn
][f
]);
351 fnum
[server
][conn
][f
] = -1;
353 for (server
=0;server
<NSERVERS
;server
++) {
354 fnum
[server
][conn
][f
] = cli_open(cli
[server
][conn
], FILENAME
,
357 if (fnum
[server
][conn
][f
] == -1) {
358 printf("failed to reopen on share%d\n", server
);
363 printf("reopen conn=%u f=%u\n",
373 static void close_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
374 int fnum
[NSERVERS
][NCONNECTIONS
][NFILES
])
378 for (server
=0;server
<NSERVERS
;server
++)
379 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
380 for (f
=0;f
<NFILES
;f
++) {
381 if (fnum
[server
][conn
][f
] != -1) {
382 cli_close(cli
[server
][conn
], fnum
[server
][conn
][f
]);
383 fnum
[server
][conn
][f
] = -1;
386 for (server
=0;server
<NSERVERS
;server
++) {
387 cli_unlink(cli
[server
][0], FILENAME
);
391 static void open_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
392 int fnum
[NSERVERS
][NCONNECTIONS
][NFILES
])
396 for (server
=0;server
<NSERVERS
;server
++)
397 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
398 for (f
=0;f
<NFILES
;f
++) {
399 fnum
[server
][conn
][f
] = cli_open(cli
[server
][conn
], FILENAME
,
402 if (fnum
[server
][conn
][f
] == -1) {
403 fprintf(stderr
,"Failed to open fnum[%u][%u][%u]\n",
411 static int retest(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
412 int fnum
[NSERVERS
][NCONNECTIONS
][NFILES
],
416 printf("testing %u ...\n", n
);
417 for (i
=0; i
<n
; i
++) {
418 if (i
&& i
% 100 == 0) {
422 if (recorded
[i
].needed
&&
423 !test_one(cli
, fnum
, &recorded
[i
])) return i
;
429 /* each server has two connections open to it. Each connection has two file
430 descriptors open on the file - 8 file descriptors in total
432 we then do random locking ops in tamdem on the 4 fnums from each
433 server and ensure that the results match
435 static void test_locks(char *share
[NSERVERS
])
437 struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
];
438 int fnum
[NSERVERS
][NCONNECTIONS
][NFILES
];
439 int n
, i
, n1
, skip
, r1
, r2
;
444 recorded
= SMB_MALLOC_ARRAY(struct record
, numops
);
446 for (n
=0; n
<numops
; n
++) {
448 if (n
< sizeof(preset
) / sizeof(preset
[0])) {
449 recorded
[n
] = preset
[n
];
452 recorded
[n
].conn
= random() % NCONNECTIONS
;
453 recorded
[n
].f
= random() % NFILES
;
454 recorded
[n
].start
= lock_base
+ ((unsigned)random() % (lock_range
-1));
455 recorded
[n
].len
= min_length
+
456 random() % (lock_range
-(recorded
[n
].start
-lock_base
));
457 recorded
[n
].start
*= RANGE_MULTIPLE
;
458 recorded
[n
].len
*= RANGE_MULTIPLE
;
462 recorded
[n
].lock_type
= READ_LOCK
;
464 recorded
[n
].lock_type
= WRITE_LOCK
;
467 recorded
[n
].lock_op
= OP_LOCK
;
468 } else if (r2
< UNLOCK_PCT
) {
469 recorded
[n
].lock_op
= OP_UNLOCK
;
471 recorded
[n
].lock_op
= OP_REOPEN
;
473 recorded
[n
].needed
= True
;
474 if (!zero_zero
&& recorded
[n
].start
==0 && recorded
[n
].len
==0) {
482 reconnect(cli
, fnum
, share
);
483 open_files(cli
, fnum
);
484 n
= retest(cli
, fnum
, numops
);
486 if (n
== numops
|| !analyze
) return;
494 close_files(cli
, fnum
);
495 reconnect(cli
, fnum
, share
);
496 open_files(cli
, fnum
);
498 for (i
=0;i
<n
-skip
;i
+=skip
) {
500 printf("excluding %d-%d\n", i
, i
+skip
-1);
501 for (j
=i
;j
<i
+skip
;j
++) {
502 recorded
[j
].needed
= False
;
505 close_files(cli
, fnum
);
506 open_files(cli
, fnum
);
508 m
= retest(cli
, fnum
, n
);
510 for (j
=i
;j
<i
+skip
;j
++) {
511 recorded
[j
].needed
= True
;
514 if (i
+(skip
-1) < m
) {
515 memmove(&recorded
[i
], &recorded
[i
+skip
],
516 (m
-(i
+skip
-1))*sizeof(recorded
[0]));
525 printf("skip=%d\n", skip
);
532 close_files(cli
, fnum
);
533 reconnect(cli
, fnum
, share
);
534 open_files(cli
, fnum
);
536 n1
= retest(cli
, fnum
, n
);
538 printf("ERROR - inconsistent result (%u %u)\n", n1
, n
);
540 close_files(cli
, fnum
);
543 printf("{%s, %s, conn = %u, file = %u, start = %.0f, len = %.0f, %u},\n",
544 lock_op_name(recorded
[i
].lock_op
),
545 lock_op_type(recorded
[i
].lock_type
),
548 (double)recorded
[i
].start
,
549 (double)recorded
[i
].len
,
556 static void usage(void)
560 locktest //server1/share1 //server2/share2 [options..]\n\
562 -U user%%pass (may be specified twice)\n\
566 -u hide unlock fails\n\
568 -A analyse for minimal ops\n\
570 -E enable exact error code checking\n\
571 -Z enable the zero/zero lock\n\
572 -R range set lock range\n\
573 -B base set lock base\n\
574 -M min set min lock length\n\
578 /****************************************************************************
580 ****************************************************************************/
581 int main(int argc
,char *argv
[])
583 char *share
[NSERVERS
];
596 if (argc
< 3 || argv
[1][0] == '-') {
601 setup_logging(argv
[0],True
);
603 for (server
=0;server
<NSERVERS
;server
++) {
604 share
[server
] = argv
[1+server
];
605 all_string_sub(share
[server
],"/","\\",0);
611 lp_load(dyn_CONFIGFILE
,True
,False
,False
,True
);
614 if (getenv("USER")) {
615 fstrcpy(username
[0],getenv("USER"));
616 fstrcpy(username
[1],getenv("USER"));
621 while ((opt
= getopt(argc
, argv
, "U:s:ho:aAW:OkR:B:M:EZ")) != EOF
) {
627 d_printf("No kerberos support compiled in\n");
634 d_printf("Max of 2 usernames\n");
637 fstrcpy(username
[got_pass
],optarg
);
638 p
= strchr_m(username
[got_pass
],'%');
641 fstrcpy(password
[got_pass
], p
+1);
646 lock_range
= strtol(optarg
, NULL
, 0);
649 lock_base
= strtol(optarg
, NULL
, 0);
652 min_length
= strtol(optarg
, NULL
, 0);
658 hide_unlock_fails
= True
;
661 numops
= atoi(optarg
);
676 exact_error_codes
= True
;
682 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
687 if(use_kerberos
&& !got_user
) got_pass
= True
;
692 DEBUG(0,("seed=%u\n", seed
));