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 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/>.
21 #include "libsmb/libsmb.h"
22 #include "system/filesys.h"
23 #include "locking/proto.h"
24 #include "libsmb/nmblib.h"
26 static fstring password
[2];
27 static fstring username
[2];
30 static bool use_kerberos
;
31 static int numops
= 1000;
34 static bool hide_unlock_fails
;
35 static bool use_oplocks
;
36 static unsigned lock_range
= 100;
37 static unsigned lock_base
= 0;
38 static unsigned min_length
= 0;
39 static bool exact_error_codes
;
40 static bool zero_zero
;
45 #define FILENAME "\\locktest.dat"
50 #define RANGE_MULTIPLE 1
52 #define NCONNECTIONS 2
54 #define LOCK_TIMEOUT 0
56 #define NASTY_POSIX_LOCK_HACK 0
58 enum lock_op
{OP_LOCK
, OP_UNLOCK
, OP_REOPEN
};
60 static const char *lock_op_type(int op
)
62 if (op
== WRITE_LOCK
) return "write";
63 else if (op
== READ_LOCK
) return "read";
67 static const char *lock_op_name(enum lock_op op
)
69 if (op
== OP_LOCK
) return "lock";
70 else if (op
== OP_UNLOCK
) return "unlock";
76 enum brl_type lock_type
;
85 static struct record preset
[] = {
86 {OP_LOCK
, WRITE_LOCK
, 0, 0, 2, 0, 1},
87 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
88 {OP_LOCK
, WRITE_LOCK
, 0, 0, 3, 0, 1},
89 {OP_UNLOCK
, 0 , 0, 0, 2, 0, 1},
90 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
92 {OP_LOCK
, READ_LOCK
, 0, 0, 2, 0, 1},
93 {OP_LOCK
, READ_LOCK
, 0, 0, 1, 1, 1},
94 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
95 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
97 {OP_LOCK
, READ_LOCK
, 0, 0, 2, 0, 1},
98 {OP_LOCK
, WRITE_LOCK
, 0, 0, 3, 1, 1},
99 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
100 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
102 {OP_LOCK
, READ_LOCK
, 0, 0, 2, 0, 1},
103 {OP_LOCK
, WRITE_LOCK
, 0, 0, 1, 1, 1},
104 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
105 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
107 {OP_LOCK
, WRITE_LOCK
, 0, 0, 2, 0, 1},
108 {OP_LOCK
, READ_LOCK
, 0, 0, 1, 1, 1},
109 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
110 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
112 {OP_LOCK
, WRITE_LOCK
, 0, 0, 2, 0, 1},
113 {OP_LOCK
, READ_LOCK
, 0, 0, 3, 1, 1},
114 {OP_LOCK
, WRITE_LOCK
, 0, 0, 0, 0, 1},
115 {OP_REOPEN
, 0, 0, 0, 0, 0, 1},
120 static struct record
*recorded
;
122 static void print_brl(struct file_id id
,
123 struct server_id pid
,
124 enum brl_type lock_type
,
125 enum brl_flavour lock_flav
,
130 #if NASTY_POSIX_LOCK_HACK
132 static SMB_INO_T lastino
;
134 if (lastino
!= ino
) {
137 "egrep POSIX.*%u /proc/locks", (int)ino
) > 0) {
146 printf("%s %s %s %.0f:%.0f(%.0f)\n",
147 procid_str_static(&pid
), file_id_string_tos(&id
),
148 lock_type
==READ_LOCK
?"R":"W",
149 (double)start
, (double)start
+size
-1,(double)size
);
154 static void show_locks(void)
156 brl_forall(print_brl
, NULL
);
157 /* system("cat /proc/locks"); */
161 /*****************************************************
162 return a connection to a server
163 *******************************************************/
164 static struct cli_state
*connect_one(char *share
, int snum
)
174 fstrcpy(server
,share
+2);
175 share
= strchr_m(server
,'\\');
176 if (!share
) return NULL
;
182 slprintf(myname
,sizeof(myname
), "lock-%lu-%u", (unsigned long)getpid(), count
++);
184 /* have to open a new connection */
187 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
190 flags
|= CLI_FULL_CONNECTION_OPLOCKS
;
193 status
= cli_connect_nb(server_n
, NULL
, 0, 0x20, myname
,
194 Undefined
, flags
, &c
);
195 if (!NT_STATUS_IS_OK(status
)) {
196 DEBUG(0, ("Connection to %s failed. Error %s\n", server_n
,
201 status
= cli_negprot(c
, PROTOCOL_NT1
);
202 if (!NT_STATUS_IS_OK(status
)) {
203 DEBUG(0, ("protocol negotiation failed: %s\n",
210 char *pass
= getpass("Password: ");
212 fstrcpy(password
[0], pass
);
213 fstrcpy(password
[1], pass
);
218 strlcpy(password
[1], password
[0],sizeof(password
[1]));
219 strlcpy(username
[1], username
[0],sizeof(username
[1]));
222 status
= cli_session_setup(c
, username
[snum
],
223 password
[snum
], strlen(password
[snum
]),
224 password
[snum
], strlen(password
[snum
]),
226 if (!NT_STATUS_IS_OK(status
)) {
227 DEBUG(0,("session setup failed: %s\n", nt_errstr(status
)));
232 * These next two lines are needed to emulate
233 * old client behaviour for people who have
234 * scripts based on client output.
235 * QUESTION ? Do we want to have a 'client compatibility
236 * mode to turn these on/off ? JRA.
239 if (*c
->server_domain
|| *c
->server_os
|| *c
->server_type
)
240 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
241 c
->server_domain
,c
->server_os
,c
->server_type
));
243 DEBUG(4,(" session setup ok\n"));
245 status
= cli_tcon_andx(c
, share
, "?????", password
[snum
],
246 strlen(password
[snum
])+1);
247 if (!NT_STATUS_IS_OK(status
)) {
248 DEBUG(0,("tree connect failed: %s\n", nt_errstr(status
)));
253 DEBUG(4,(" tconx ok\n"));
259 static void reconnect(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
], uint16_t fnum
[NSERVERS
][NCONNECTIONS
][NFILES
],
260 char *share
[NSERVERS
])
264 for (server
=0;server
<NSERVERS
;server
++)
265 for (conn
=0;conn
<NCONNECTIONS
;conn
++) {
266 if (cli
[server
][conn
]) {
267 for (f
=0;f
<NFILES
;f
++) {
268 if (fnum
[server
][conn
][f
] != (uint16_t)-1) {
269 cli_close(cli
[server
][conn
], fnum
[server
][conn
][f
]);
270 fnum
[server
][conn
][f
] = (uint16_t)-1;
273 cli_ulogoff(cli
[server
][conn
]);
274 cli_shutdown(cli
[server
][conn
]);
276 cli
[server
][conn
] = connect_one(share
[server
], server
);
277 if (!cli
[server
][conn
]) {
278 DEBUG(0,("Failed to connect to %s\n", share
[server
]));
286 static bool test_one(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
287 uint16_t fnum
[NSERVERS
][NCONNECTIONS
][NFILES
],
290 unsigned conn
= rec
->conn
;
292 uint64_t start
= rec
->start
;
293 uint64_t len
= rec
->len
;
294 enum brl_type op
= rec
->lock_type
;
296 NTSTATUS status
[NSERVERS
];
298 switch (rec
->lock_op
) {
301 for (server
=0;server
<NSERVERS
;server
++) {
302 status
[server
] = cli_lock64(cli
[server
][conn
],
303 fnum
[server
][conn
][f
],
304 start
, len
, LOCK_TIMEOUT
,
306 if (!exact_error_codes
&&
307 NT_STATUS_EQUAL(status
[server
],
308 NT_STATUS_FILE_LOCK_CONFLICT
)) {
309 status
[server
] = NT_STATUS_LOCK_NOT_GRANTED
;
312 if (showall
|| !NT_STATUS_EQUAL(status
[0],status
[1])) {
313 printf("lock conn=%u f=%u range=%.0f(%.0f) op=%s -> %s:%s\n",
315 (double)start
, (double)len
,
316 op
==READ_LOCK
?"READ_LOCK":"WRITE_LOCK",
317 nt_errstr(status
[0]), nt_errstr(status
[1]));
319 if (showall
|| !NT_STATUS_EQUAL(status
[0],status
[1])) show_locks();
320 if (!NT_STATUS_EQUAL(status
[0],status
[1])) return False
;
325 for (server
=0;server
<NSERVERS
;server
++) {
326 status
[server
] = cli_unlock64(cli
[server
][conn
],
327 fnum
[server
][conn
][f
],
331 (!hide_unlock_fails
&& !NT_STATUS_EQUAL(status
[0],status
[1]))) {
332 printf("unlock conn=%u f=%u range=%.0f(%.0f) -> %s:%s\n",
334 (double)start
, (double)len
,
335 nt_errstr(status
[0]), nt_errstr(status
[1]));
337 if (showall
|| !NT_STATUS_EQUAL(status
[0],status
[1])) show_locks();
338 if (!hide_unlock_fails
&& !NT_STATUS_EQUAL(status
[0],status
[1]))
343 /* reopen the file */
344 for (server
=0;server
<NSERVERS
;server
++) {
345 cli_close(cli
[server
][conn
], fnum
[server
][conn
][f
]);
346 fnum
[server
][conn
][f
] = (uint16_t)-1;
348 for (server
=0;server
<NSERVERS
;server
++) {
349 fnum
[server
][conn
][f
] = (uint16_t)-1;
350 if (!NT_STATUS_IS_OK(cli_open(cli
[server
][conn
], FILENAME
,
352 DENY_NONE
, &fnum
[server
][conn
][f
]))) {
353 printf("failed to reopen on share%d\n", server
);
358 printf("reopen conn=%u f=%u\n",
368 static void close_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
369 uint16_t fnum
[NSERVERS
][NCONNECTIONS
][NFILES
])
373 for (server
=0;server
<NSERVERS
;server
++)
374 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
375 for (f
=0;f
<NFILES
;f
++) {
376 if (fnum
[server
][conn
][f
] != (uint16_t)-1) {
377 cli_close(cli
[server
][conn
], fnum
[server
][conn
][f
]);
378 fnum
[server
][conn
][f
] = (uint16_t)-1;
381 for (server
=0;server
<NSERVERS
;server
++) {
382 cli_unlink(cli
[server
][0], FILENAME
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
386 static void open_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
387 uint16_t fnum
[NSERVERS
][NCONNECTIONS
][NFILES
])
391 for (server
=0;server
<NSERVERS
;server
++)
392 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
393 for (f
=0;f
<NFILES
;f
++) {
394 fnum
[server
][conn
][f
] = (uint16_t)-1;
395 if (!NT_STATUS_IS_OK(cli_open(cli
[server
][conn
], FILENAME
,
398 &fnum
[server
][conn
][f
]))) {
399 fprintf(stderr
,"Failed to open fnum[%u][%u][%u]\n",
407 static int retest(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
408 uint16_t fnum
[NSERVERS
][NCONNECTIONS
][NFILES
],
412 printf("testing %u ...\n", n
);
413 for (i
=0; i
<n
; i
++) {
414 if (i
&& i
% 100 == 0) {
418 if (recorded
[i
].needed
&&
419 !test_one(cli
, fnum
, &recorded
[i
])) return i
;
425 /* each server has two connections open to it. Each connection has two file
426 descriptors open on the file - 8 file descriptors in total
428 we then do random locking ops in tamdem on the 4 fnums from each
429 server and ensure that the results match
431 static void test_locks(char *share
[NSERVERS
])
433 struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
];
434 uint16_t fnum
[NSERVERS
][NCONNECTIONS
][NFILES
];
435 int n
, i
, n1
, skip
, r1
, r2
;
440 recorded
= SMB_MALLOC_ARRAY(struct record
, numops
);
442 for (n
=0; n
<numops
; n
++) {
444 if (n
< sizeof(preset
) / sizeof(preset
[0])) {
445 recorded
[n
] = preset
[n
];
448 recorded
[n
].conn
= random() % NCONNECTIONS
;
449 recorded
[n
].f
= random() % NFILES
;
450 recorded
[n
].start
= lock_base
+ ((unsigned)random() % (lock_range
-1));
451 recorded
[n
].len
= min_length
+
452 random() % (lock_range
-(recorded
[n
].start
-lock_base
));
453 recorded
[n
].start
*= RANGE_MULTIPLE
;
454 recorded
[n
].len
*= RANGE_MULTIPLE
;
458 recorded
[n
].lock_type
= READ_LOCK
;
460 recorded
[n
].lock_type
= WRITE_LOCK
;
463 recorded
[n
].lock_op
= OP_LOCK
;
464 } else if (r2
< UNLOCK_PCT
) {
465 recorded
[n
].lock_op
= OP_UNLOCK
;
467 recorded
[n
].lock_op
= OP_REOPEN
;
469 recorded
[n
].needed
= True
;
470 if (!zero_zero
&& recorded
[n
].start
==0 && recorded
[n
].len
==0) {
478 reconnect(cli
, fnum
, share
);
479 open_files(cli
, fnum
);
480 n
= retest(cli
, fnum
, numops
);
482 if (n
== numops
|| !analyze
) return;
490 close_files(cli
, fnum
);
491 reconnect(cli
, fnum
, share
);
492 open_files(cli
, fnum
);
494 for (i
=0;i
<n
-skip
;i
+=skip
) {
496 printf("excluding %d-%d\n", i
, i
+skip
-1);
497 for (j
=i
;j
<i
+skip
;j
++) {
498 recorded
[j
].needed
= False
;
501 close_files(cli
, fnum
);
502 open_files(cli
, fnum
);
504 m
= retest(cli
, fnum
, n
);
506 for (j
=i
;j
<i
+skip
;j
++) {
507 recorded
[j
].needed
= True
;
510 if (i
+(skip
-1) < m
) {
511 memmove(&recorded
[i
], &recorded
[i
+skip
],
512 (m
-(i
+skip
-1))*sizeof(recorded
[0]));
521 printf("skip=%d\n", skip
);
528 close_files(cli
, fnum
);
529 reconnect(cli
, fnum
, share
);
530 open_files(cli
, fnum
);
532 n1
= retest(cli
, fnum
, n
);
534 printf("ERROR - inconsistent result (%u %u)\n", n1
, n
);
536 close_files(cli
, fnum
);
539 printf("{%s, %s, conn = %u, file = %u, start = %.0f, len = %.0f, %u},\n",
540 lock_op_name(recorded
[i
].lock_op
),
541 lock_op_type(recorded
[i
].lock_type
),
544 (double)recorded
[i
].start
,
545 (double)recorded
[i
].len
,
552 static void usage(void)
556 locktest //server1/share1 //server2/share2 [options..]\n\
558 -U user%%pass (may be specified twice)\n\
562 -u hide unlock fails\n\
564 -A analyse for minimal ops\n\
566 -E enable exact error code checking\n\
567 -Z enable the zero/zero lock\n\
568 -R range set lock range\n\
569 -B base set lock base\n\
570 -M min set min lock length\n\
574 /****************************************************************************
576 ****************************************************************************/
577 int main(int argc
,char *argv
[])
579 char *share
[NSERVERS
];
588 if (argc
< 3 || argv
[1][0] == '-') {
593 setup_logging(argv
[0], DEBUG_STDOUT
);
595 for (server
=0;server
<NSERVERS
;server
++) {
596 share
[server
] = argv
[1+server
];
597 all_string_sub(share
[server
],"/","\\",0);
603 lp_load_global(get_dyn_CONFIGFILE());
606 if (getenv("USER")) {
607 fstrcpy(username
[0],getenv("USER"));
608 fstrcpy(username
[1],getenv("USER"));
613 while ((opt
= getopt(argc
, argv
, "U:s:ho:aAW:OkR:B:M:EZ")) != EOF
) {
619 d_printf("No kerberos support compiled in\n");
626 d_printf("Max of 2 usernames\n");
629 fstrcpy(username
[got_pass
],optarg
);
630 p
= strchr_m(username
[got_pass
],'%');
633 fstrcpy(password
[got_pass
], p
+1);
638 lock_range
= strtol(optarg
, NULL
, 0);
641 lock_base
= strtol(optarg
, NULL
, 0);
644 min_length
= strtol(optarg
, NULL
, 0);
650 hide_unlock_fails
= True
;
653 numops
= atoi(optarg
);
668 exact_error_codes
= True
;
674 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
679 if(use_kerberos
&& !got_user
) got_pass
= True
;
684 DEBUG(0,("seed=%u\n", seed
));