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/share_mode_lock.h"
24 #include "locking/proto.h"
25 #include "lib/util/string_wrappers.h"
27 static fstring password
;
28 static fstring username
;
30 static int numops
= 1000;
33 static bool hide_unlock_fails
;
34 static bool use_oplocks
;
39 #define FILENAME "\\locktest.dat"
44 #define LOCKBASE (0x40000000 - 50)
50 #define RANGE_MULTIPLE 1
53 #define NCONNECTIONS 2
56 #define LOCK_TIMEOUT 0
68 static struct record
*recorded
;
70 static int try_open(struct cli_state
*c
, char *nfs
, int fstype
, const char *fname
, int flags
)
78 if (!NT_STATUS_IS_OK(cli_openx(c
, fname
, flags
, DENY_NONE
, &fd
))) {
85 if (asprintf(&path
, "%s%s", nfs
, fname
) > 0) {
87 string_replace(path
,'\\', '/');
88 ret
= open(path
, flags
, 0666);
98 static bool try_close(struct cli_state
*c
, int fstype
, int fd
)
102 return NT_STATUS_IS_OK(cli_close(c
, fd
));
105 return close(fd
) == 0;
111 static bool try_lock(struct cli_state
*c
, int fstype
,
112 int fd
, unsigned start
, unsigned len
,
119 return NT_STATUS_IS_OK(cli_lock32(c
, fd
, start
, len
,
123 lock
.l_type
= (op
==READ_LOCK
) ? F_RDLCK
:F_WRLCK
;
124 lock
.l_whence
= SEEK_SET
;
125 lock
.l_start
= start
;
127 lock
.l_pid
= getpid();
128 return fcntl(fd
,F_SETLK
,&lock
) == 0;
134 static bool try_unlock(struct cli_state
*c
, int fstype
,
135 int fd
, unsigned start
, unsigned len
)
141 return NT_STATUS_IS_OK(cli_unlock(c
, fd
, start
, len
));
144 lock
.l_type
= F_UNLCK
;
145 lock
.l_whence
= SEEK_SET
;
146 lock
.l_start
= start
;
148 lock
.l_pid
= getpid();
149 return fcntl(fd
,F_SETLK
,&lock
) == 0;
155 static void print_brl(struct file_id id
, struct server_id pid
,
156 enum brl_type lock_type
,
157 enum brl_flavour lock_flav
,
158 br_off start
, br_off size
,
161 struct file_id_buf idbuf
;
163 printf("%6d %s %s %.0f:%.0f(%.0f)\n",
164 (int)procid_to_pid(&pid
),
165 file_id_str_buf(id
, &idbuf
),
166 lock_type
==READ_LOCK
?"R":"W",
167 (double)start
, (double)start
+size
-1,(double)size
);
171 /*****************************************************
172 return a connection to a server
173 *******************************************************/
174 static struct cli_state
*connect_one(char *share
)
182 struct cli_credentials
*creds
= NULL
;
184 fstrcpy(server
,share
+2);
185 share
= strchr_m(server
,'\\');
186 if (!share
) return NULL
;
196 rc
= samba_getpass("Password: ", pwd
, sizeof(pwd
), false, false);
198 fstrcpy(password
, pwd
);
202 creds
= cli_session_creds_init(NULL
,
205 NULL
, /* realm (use default) */
207 false, /* use_kerberos */
208 false, /* fallback_after_kerberos */
209 false, /* use_ccache */
210 false); /* pw_nt_hash */
212 DEBUG(0, ("cli_session_creds_init failed\n"));
216 slprintf(myname
,sizeof(myname
), "lock-%lu-%u", (unsigned long)getpid(), count
++);
218 nt_status
= cli_full_connection_creds(NULL
,
229 if (!NT_STATUS_IS_OK(nt_status
)) {
230 DEBUG(0, ("cli_full_connection failed with error %s\n", nt_errstr(nt_status
)));
234 c
->use_oplocks
= use_oplocks
;
240 static void reconnect(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
242 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
243 char *share1
, char *share2
)
245 int server
, conn
, f
, fstype
;
252 for (server
=0;server
<NSERVERS
;server
++)
253 for (conn
=0;conn
<NCONNECTIONS
;conn
++) {
254 if (cli
[server
][conn
]) {
255 for (f
=0;f
<NFILES
;f
++) {
256 cli_close(cli
[server
][conn
], fnum
[server
][fstype
][conn
][f
]);
258 cli_ulogoff(cli
[server
][conn
]);
259 cli_shutdown(cli
[server
][conn
]);
261 cli
[server
][conn
] = connect_one(share
[server
]);
262 if (!cli
[server
][conn
]) {
263 DEBUG(0,("Failed to connect to %s\n", share
[server
]));
271 static bool test_one(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
273 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
276 unsigned conn
= rec
->conn
;
278 unsigned fstype
= rec
->fstype
;
279 unsigned start
= rec
->start
;
280 unsigned len
= rec
->len
;
281 unsigned r1
= rec
->r1
;
282 unsigned r2
= rec
->r2
;
293 if (fstype
>= NUMFSTYPES
) {
299 for (server
=0;server
<NSERVERS
;server
++) {
300 ret
[server
] = try_lock(cli
[server
][conn
], fstype
,
301 fnum
[server
][fstype
][conn
][f
],
304 if (showall
|| ret
[0] != ret
[1]) {
305 printf("lock conn=%u fstype=%u f=%u range=%u:%u(%u) op=%s -> %u:%u\n",
307 start
, start
+len
-1, len
,
308 op
==READ_LOCK
?"READ_LOCK":"WRITE_LOCK",
311 if (showall
) brl_forall(print_brl
, NULL
);
312 if (ret
[0] != ret
[1]) return False
;
313 } else if (r2
< LOCK_PCT
+UNLOCK_PCT
) {
315 for (server
=0;server
<NSERVERS
;server
++) {
316 ret
[server
] = try_unlock(cli
[server
][conn
], fstype
,
317 fnum
[server
][fstype
][conn
][f
],
320 if (showall
|| (!hide_unlock_fails
&& (ret
[0] != ret
[1]))) {
321 printf("unlock conn=%u fstype=%u f=%u range=%u:%u(%u) -> %u:%u\n",
323 start
, start
+len
-1, len
,
326 if (showall
) brl_forall(print_brl
, NULL
);
327 if (!hide_unlock_fails
&& ret
[0] != ret
[1]) return False
;
329 /* reopen the file */
330 for (server
=0;server
<NSERVERS
;server
++) {
331 try_close(cli
[server
][conn
], fstype
, fnum
[server
][fstype
][conn
][f
]);
332 fnum
[server
][fstype
][conn
][f
] = try_open(cli
[server
][conn
], nfs
[server
], fstype
, FILENAME
,
334 if (fnum
[server
][fstype
][conn
][f
] == -1) {
335 printf("failed to reopen on share1\n");
340 printf("reopen conn=%u fstype=%u f=%u\n",
342 brl_forall(print_brl
, NULL
);
348 static void close_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
350 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
])
352 int server
, conn
, f
, fstype
;
354 for (server
=0;server
<NSERVERS
;server
++)
355 for (fstype
=0;fstype
<NUMFSTYPES
;fstype
++)
356 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
357 for (f
=0;f
<NFILES
;f
++) {
358 if (fnum
[server
][fstype
][conn
][f
] != -1) {
359 try_close(cli
[server
][conn
], fstype
, fnum
[server
][fstype
][conn
][f
]);
360 fnum
[server
][fstype
][conn
][f
] = -1;
363 for (server
=0;server
<NSERVERS
;server
++) {
364 cli_unlink(cli
[server
][0], FILENAME
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
368 static void open_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
370 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
])
372 int server
, fstype
, conn
, f
;
374 for (server
=0;server
<NSERVERS
;server
++)
375 for (fstype
=0;fstype
<NUMFSTYPES
;fstype
++)
376 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
377 for (f
=0;f
<NFILES
;f
++) {
378 fnum
[server
][fstype
][conn
][f
] = try_open(cli
[server
][conn
], nfs
[server
], fstype
, FILENAME
,
380 if (fnum
[server
][fstype
][conn
][f
] == -1) {
381 fprintf(stderr
,"Failed to open fnum[%u][%u][%u][%u]\n",
382 server
, fstype
, conn
, f
);
389 static int retest(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
391 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
395 printf("testing %u ...\n", n
);
396 for (i
=0; i
<n
; i
++) {
397 if (i
&& i
% 100 == 0) {
401 if (recorded
[i
].needed
&&
402 !test_one(cli
, nfs
, fnum
, &recorded
[i
])) return i
;
408 /* each server has two connections open to it. Each connection has two file
409 descriptors open on the file - 8 file descriptors in total
411 we then do random locking ops in tamdem on the 4 fnums from each
412 server and ensure that the results match
414 static void test_locks(char *share1
, char *share2
, char *nfspath1
, char *nfspath2
)
416 struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
];
418 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
];
427 recorded
= SMB_MALLOC_ARRAY(struct record
, numops
);
429 for (n
=0; n
<numops
; n
++) {
430 recorded
[n
].conn
= random() % NCONNECTIONS
;
431 recorded
[n
].fstype
= random() % NUMFSTYPES
;
432 recorded
[n
].f
= random() % NFILES
;
433 recorded
[n
].start
= LOCKBASE
+ ((unsigned)random() % (LOCKRANGE
-1));
434 recorded
[n
].len
= 1 +
435 random() % (LOCKRANGE
-(recorded
[n
].start
-LOCKBASE
));
436 recorded
[n
].start
*= RANGE_MULTIPLE
;
437 recorded
[n
].len
*= RANGE_MULTIPLE
;
438 recorded
[n
].r1
= random() % 100;
439 recorded
[n
].r2
= random() % 100;
440 recorded
[n
].needed
= True
;
443 reconnect(cli
, nfs
, fnum
, share1
, share2
);
444 open_files(cli
, nfs
, fnum
);
445 n
= retest(cli
, nfs
, fnum
, numops
);
447 if (n
== numops
|| !analyze
) return;
453 close_files(cli
, nfs
, fnum
);
454 reconnect(cli
, nfs
, fnum
, share1
, share2
);
455 open_files(cli
, nfs
, fnum
);
457 for (i
=0;i
<n
-1;i
++) {
459 recorded
[i
].needed
= False
;
461 close_files(cli
, nfs
, fnum
);
462 open_files(cli
, nfs
, fnum
);
464 m
= retest(cli
, nfs
, fnum
, n
);
466 recorded
[i
].needed
= True
;
469 memmove(&recorded
[i
], &recorded
[i
+1],
470 (m
-i
)*sizeof(recorded
[0]));
480 close_files(cli
, nfs
, fnum
);
481 reconnect(cli
, nfs
, fnum
, share1
, share2
);
482 open_files(cli
, nfs
, fnum
);
484 n1
= retest(cli
, nfs
, fnum
, n
);
486 printf("ERROR - inconsistent result (%u %u)\n", n1
, n
);
488 close_files(cli
, nfs
, fnum
);
491 printf("{%u, %u, %u, %u, %u, %u, %u, %u},\n",
505 static void usage(void)
509 locktest //server1/share1 //server2/share2 /path1 /path2 [options..]\n\
514 -u hide unlock fails\n\
520 /****************************************************************************
522 ****************************************************************************/
523 int main(int argc
,char *argv
[])
525 char *share1
, *share2
, *nfspath1
, *nfspath2
;
532 if (argc
< 5 || argv
[1][0] == '-') {
537 setup_logging(argv
[0], DEBUG_STDOUT
);
544 all_string_sub(share1
,"/","\\",0);
545 all_string_sub(share2
,"/","\\",0);
550 lp_load_global(get_dyn_CONFIGFILE());
553 if (getenv("USER")) {
554 fstrcpy(username
,getenv("USER"));
559 while ((opt
= getopt(argc
, argv
, "U:s:ho:aAW:O")) != EOF
) {
562 fstrcpy(username
,optarg
);
563 p
= strchr_m(username
,'%');
566 fstrcpy(password
, p
+1);
574 hide_unlock_fails
= True
;
577 numops
= atoi(optarg
);
592 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
600 DEBUG(0,("seed=%u\n", seed
));
603 locking_init_readonly();
604 test_locks(share1
, share2
, nfspath1
, nfspath2
);