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 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"
25 static fstring password
;
26 static fstring username
;
28 static int numops
= 1000;
31 static bool hide_unlock_fails
;
32 static bool use_oplocks
;
37 #define FILENAME "\\locktest.dat"
42 #define LOCKBASE (0x40000000 - 50)
48 #define RANGE_MULTIPLE 1
51 #define NCONNECTIONS 2
54 #define LOCK_TIMEOUT 0
66 static struct record
*recorded
;
68 static int try_open(struct cli_state
*c
, char *nfs
, int fstype
, const char *fname
, int flags
)
76 if (!NT_STATUS_IS_OK(cli_openx(c
, fname
, flags
, DENY_NONE
, &fd
))) {
83 if (asprintf(&path
, "%s%s", nfs
, fname
) > 0) {
85 string_replace(path
,'\\', '/');
86 ret
= open(path
, flags
, 0666);
96 static bool try_close(struct cli_state
*c
, int fstype
, int fd
)
100 return NT_STATUS_IS_OK(cli_close(c
, fd
));
103 return close(fd
) == 0;
109 static bool try_lock(struct cli_state
*c
, int fstype
,
110 int fd
, unsigned start
, unsigned len
,
117 return NT_STATUS_IS_OK(cli_lock32(c
, fd
, start
, len
,
121 lock
.l_type
= (op
==READ_LOCK
) ? F_RDLCK
:F_WRLCK
;
122 lock
.l_whence
= SEEK_SET
;
123 lock
.l_start
= start
;
125 lock
.l_pid
= getpid();
126 return fcntl(fd
,F_SETLK
,&lock
) == 0;
132 static bool try_unlock(struct cli_state
*c
, int fstype
,
133 int fd
, unsigned start
, unsigned len
)
139 return NT_STATUS_IS_OK(cli_unlock(c
, fd
, start
, len
));
142 lock
.l_type
= F_UNLCK
;
143 lock
.l_whence
= SEEK_SET
;
144 lock
.l_start
= start
;
146 lock
.l_pid
= getpid();
147 return fcntl(fd
,F_SETLK
,&lock
) == 0;
153 static void print_brl(struct file_id id
, struct server_id pid
,
154 enum brl_type lock_type
,
155 enum brl_flavour lock_flav
,
156 br_off start
, br_off size
,
159 printf("%6d %s %s %.0f:%.0f(%.0f)\n",
160 (int)procid_to_pid(&pid
), file_id_string_tos(&id
),
161 lock_type
==READ_LOCK
?"R":"W",
162 (double)start
, (double)start
+size
-1,(double)size
);
166 /*****************************************************
167 return a connection to a server
168 *******************************************************/
169 static struct cli_state
*connect_one(char *share
)
178 fstrcpy(server
,share
+2);
179 share
= strchr_m(server
,'\\');
180 if (!share
) return NULL
;
187 char *pass
= getpass("Password: ");
189 fstrcpy(password
, pass
);
193 slprintf(myname
,sizeof(myname
), "lock-%lu-%u", (unsigned long)getpid(), count
++);
195 nt_status
= cli_full_connection(&c
, myname
, server_n
, NULL
, 0, share
, "?????",
196 username
, lp_workgroup(), password
, 0,
197 SMB_SIGNING_DEFAULT
);
199 if (!NT_STATUS_IS_OK(nt_status
)) {
200 DEBUG(0, ("cli_full_connection failed with error %s\n", nt_errstr(nt_status
)));
204 c
->use_oplocks
= use_oplocks
;
210 static void reconnect(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
212 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
213 char *share1
, char *share2
)
215 int server
, conn
, f
, fstype
;
222 for (server
=0;server
<NSERVERS
;server
++)
223 for (conn
=0;conn
<NCONNECTIONS
;conn
++) {
224 if (cli
[server
][conn
]) {
225 for (f
=0;f
<NFILES
;f
++) {
226 cli_close(cli
[server
][conn
], fnum
[server
][fstype
][conn
][f
]);
228 cli_ulogoff(cli
[server
][conn
]);
229 cli_shutdown(cli
[server
][conn
]);
231 cli
[server
][conn
] = connect_one(share
[server
]);
232 if (!cli
[server
][conn
]) {
233 DEBUG(0,("Failed to connect to %s\n", share
[server
]));
241 static bool test_one(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
243 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
246 unsigned conn
= rec
->conn
;
248 unsigned fstype
= rec
->fstype
;
249 unsigned start
= rec
->start
;
250 unsigned len
= rec
->len
;
251 unsigned r1
= rec
->r1
;
252 unsigned r2
= rec
->r2
;
265 for (server
=0;server
<NSERVERS
;server
++) {
266 ret
[server
] = try_lock(cli
[server
][conn
], fstype
,
267 fnum
[server
][fstype
][conn
][f
],
270 if (showall
|| ret
[0] != ret
[1]) {
271 printf("lock conn=%u fstype=%u f=%u range=%u:%u(%u) op=%s -> %u:%u\n",
273 start
, start
+len
-1, len
,
274 op
==READ_LOCK
?"READ_LOCK":"WRITE_LOCK",
277 if (showall
) brl_forall(print_brl
, NULL
);
278 if (ret
[0] != ret
[1]) return False
;
279 } else if (r2
< LOCK_PCT
+UNLOCK_PCT
) {
281 for (server
=0;server
<NSERVERS
;server
++) {
282 ret
[server
] = try_unlock(cli
[server
][conn
], fstype
,
283 fnum
[server
][fstype
][conn
][f
],
286 if (showall
|| (!hide_unlock_fails
&& (ret
[0] != ret
[1]))) {
287 printf("unlock conn=%u fstype=%u f=%u range=%u:%u(%u) -> %u:%u\n",
289 start
, start
+len
-1, len
,
292 if (showall
) brl_forall(print_brl
, NULL
);
293 if (!hide_unlock_fails
&& ret
[0] != ret
[1]) return False
;
295 /* reopen the file */
296 for (server
=0;server
<NSERVERS
;server
++) {
297 try_close(cli
[server
][conn
], fstype
, fnum
[server
][fstype
][conn
][f
]);
298 fnum
[server
][fstype
][conn
][f
] = try_open(cli
[server
][conn
], nfs
[server
], fstype
, FILENAME
,
300 if (fnum
[server
][fstype
][conn
][f
] == -1) {
301 printf("failed to reopen on share1\n");
306 printf("reopen conn=%u fstype=%u f=%u\n",
308 brl_forall(print_brl
, NULL
);
314 static void close_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
316 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
])
318 int server
, conn
, f
, fstype
;
320 for (server
=0;server
<NSERVERS
;server
++)
321 for (fstype
=0;fstype
<NUMFSTYPES
;fstype
++)
322 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
323 for (f
=0;f
<NFILES
;f
++) {
324 if (fnum
[server
][fstype
][conn
][f
] != -1) {
325 try_close(cli
[server
][conn
], fstype
, fnum
[server
][fstype
][conn
][f
]);
326 fnum
[server
][fstype
][conn
][f
] = -1;
329 for (server
=0;server
<NSERVERS
;server
++) {
330 cli_unlink(cli
[server
][0], FILENAME
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
334 static void open_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
336 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
])
338 int server
, fstype
, conn
, f
;
340 for (server
=0;server
<NSERVERS
;server
++)
341 for (fstype
=0;fstype
<NUMFSTYPES
;fstype
++)
342 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
343 for (f
=0;f
<NFILES
;f
++) {
344 fnum
[server
][fstype
][conn
][f
] = try_open(cli
[server
][conn
], nfs
[server
], fstype
, FILENAME
,
346 if (fnum
[server
][fstype
][conn
][f
] == -1) {
347 fprintf(stderr
,"Failed to open fnum[%u][%u][%u][%u]\n",
348 server
, fstype
, conn
, f
);
355 static int retest(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
357 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
361 printf("testing %u ...\n", n
);
362 for (i
=0; i
<n
; i
++) {
363 if (i
&& i
% 100 == 0) {
367 if (recorded
[i
].needed
&&
368 !test_one(cli
, nfs
, fnum
, &recorded
[i
])) return i
;
374 /* each server has two connections open to it. Each connection has two file
375 descriptors open on the file - 8 file descriptors in total
377 we then do random locking ops in tamdem on the 4 fnums from each
378 server and ensure that the results match
380 static void test_locks(char *share1
, char *share2
, char *nfspath1
, char *nfspath2
)
382 struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
];
384 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
];
393 recorded
= SMB_MALLOC_ARRAY(struct record
, numops
);
395 for (n
=0; n
<numops
; n
++) {
396 recorded
[n
].conn
= random() % NCONNECTIONS
;
397 recorded
[n
].fstype
= random() % NUMFSTYPES
;
398 recorded
[n
].f
= random() % NFILES
;
399 recorded
[n
].start
= LOCKBASE
+ ((unsigned)random() % (LOCKRANGE
-1));
400 recorded
[n
].len
= 1 +
401 random() % (LOCKRANGE
-(recorded
[n
].start
-LOCKBASE
));
402 recorded
[n
].start
*= RANGE_MULTIPLE
;
403 recorded
[n
].len
*= RANGE_MULTIPLE
;
404 recorded
[n
].r1
= random() % 100;
405 recorded
[n
].r2
= random() % 100;
406 recorded
[n
].needed
= True
;
409 reconnect(cli
, nfs
, fnum
, share1
, share2
);
410 open_files(cli
, nfs
, fnum
);
411 n
= retest(cli
, nfs
, fnum
, numops
);
413 if (n
== numops
|| !analyze
) return;
419 close_files(cli
, nfs
, fnum
);
420 reconnect(cli
, nfs
, fnum
, share1
, share2
);
421 open_files(cli
, nfs
, fnum
);
423 for (i
=0;i
<n
-1;i
++) {
425 recorded
[i
].needed
= False
;
427 close_files(cli
, nfs
, fnum
);
428 open_files(cli
, nfs
, fnum
);
430 m
= retest(cli
, nfs
, fnum
, n
);
432 recorded
[i
].needed
= True
;
435 memmove(&recorded
[i
], &recorded
[i
+1],
436 (m
-i
)*sizeof(recorded
[0]));
446 close_files(cli
, nfs
, fnum
);
447 reconnect(cli
, nfs
, fnum
, share1
, share2
);
448 open_files(cli
, nfs
, fnum
);
450 n1
= retest(cli
, nfs
, fnum
, n
);
452 printf("ERROR - inconsistent result (%u %u)\n", n1
, n
);
454 close_files(cli
, nfs
, fnum
);
457 printf("{%u, %u, %u, %u, %u, %u, %u, %u},\n",
471 static void usage(void)
475 locktest //server1/share1 //server2/share2 /path1 /path2 [options..]\n\
480 -u hide unlock fails\n\
486 /****************************************************************************
488 ****************************************************************************/
489 int main(int argc
,char *argv
[])
491 char *share1
, *share2
, *nfspath1
, *nfspath2
;
498 if (argc
< 5 || argv
[1][0] == '-') {
503 setup_logging(argv
[0], DEBUG_STDOUT
);
510 all_string_sub(share1
,"/","\\",0);
511 all_string_sub(share2
,"/","\\",0);
516 lp_load_global(get_dyn_CONFIGFILE());
519 if (getenv("USER")) {
520 fstrcpy(username
,getenv("USER"));
525 while ((opt
= getopt(argc
, argv
, "U:s:ho:aAW:O")) != EOF
) {
528 fstrcpy(username
,optarg
);
529 p
= strchr_m(username
,'%');
532 fstrcpy(password
, p
+1);
540 hide_unlock_fails
= True
;
543 numops
= atoi(optarg
);
558 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
566 DEBUG(0,("seed=%u\n", seed
));
569 locking_init_readonly();
570 test_locks(share1
, share2
, nfspath1
, nfspath2
);