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_open(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 cli_lock(c
, fd
, start
, len
, LOCK_TIMEOUT
, op
);
120 lock
.l_type
= (op
==READ_LOCK
) ? F_RDLCK
:F_WRLCK
;
121 lock
.l_whence
= SEEK_SET
;
122 lock
.l_start
= start
;
124 lock
.l_pid
= getpid();
125 return fcntl(fd
,F_SETLK
,&lock
) == 0;
131 static bool try_unlock(struct cli_state
*c
, int fstype
,
132 int fd
, unsigned start
, unsigned len
)
138 return NT_STATUS_IS_OK(cli_unlock(c
, fd
, start
, len
));
141 lock
.l_type
= F_UNLCK
;
142 lock
.l_whence
= SEEK_SET
;
143 lock
.l_start
= start
;
145 lock
.l_pid
= getpid();
146 return fcntl(fd
,F_SETLK
,&lock
) == 0;
152 static void print_brl(struct file_id id
, struct server_id pid
,
153 enum brl_type lock_type
,
154 enum brl_flavour lock_flav
,
155 br_off start
, br_off size
,
158 printf("%6d %s %s %.0f:%.0f(%.0f)\n",
159 (int)procid_to_pid(&pid
), file_id_string_tos(&id
),
160 lock_type
==READ_LOCK
?"R":"W",
161 (double)start
, (double)start
+size
-1,(double)size
);
165 /*****************************************************
166 return a connection to a server
167 *******************************************************/
168 static struct cli_state
*connect_one(char *share
)
177 fstrcpy(server
,share
+2);
178 share
= strchr_m(server
,'\\');
179 if (!share
) return NULL
;
186 char *pass
= getpass("Password: ");
188 fstrcpy(password
, pass
);
192 slprintf(myname
,sizeof(myname
), "lock-%lu-%u", (unsigned long)getpid(), count
++);
194 nt_status
= cli_full_connection(&c
, myname
, server_n
, NULL
, 0, share
, "?????",
195 username
, lp_workgroup(), password
, 0,
198 if (!NT_STATUS_IS_OK(nt_status
)) {
199 DEBUG(0, ("cli_full_connection failed with error %s\n", nt_errstr(nt_status
)));
203 c
->use_oplocks
= use_oplocks
;
209 static void reconnect(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
211 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
212 char *share1
, char *share2
)
214 int server
, conn
, f
, fstype
;
221 for (server
=0;server
<NSERVERS
;server
++)
222 for (conn
=0;conn
<NCONNECTIONS
;conn
++) {
223 if (cli
[server
][conn
]) {
224 for (f
=0;f
<NFILES
;f
++) {
225 cli_close(cli
[server
][conn
], fnum
[server
][fstype
][conn
][f
]);
227 cli_ulogoff(cli
[server
][conn
]);
228 cli_shutdown(cli
[server
][conn
]);
230 cli
[server
][conn
] = connect_one(share
[server
]);
231 if (!cli
[server
][conn
]) {
232 DEBUG(0,("Failed to connect to %s\n", share
[server
]));
240 static bool test_one(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
242 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
245 unsigned conn
= rec
->conn
;
247 unsigned fstype
= rec
->fstype
;
248 unsigned start
= rec
->start
;
249 unsigned len
= rec
->len
;
250 unsigned r1
= rec
->r1
;
251 unsigned r2
= rec
->r2
;
264 for (server
=0;server
<NSERVERS
;server
++) {
265 ret
[server
] = try_lock(cli
[server
][conn
], fstype
,
266 fnum
[server
][fstype
][conn
][f
],
269 if (showall
|| ret
[0] != ret
[1]) {
270 printf("lock conn=%u fstype=%u f=%u range=%u:%u(%u) op=%s -> %u:%u\n",
272 start
, start
+len
-1, len
,
273 op
==READ_LOCK
?"READ_LOCK":"WRITE_LOCK",
276 if (showall
) brl_forall(print_brl
, NULL
);
277 if (ret
[0] != ret
[1]) return False
;
278 } else if (r2
< LOCK_PCT
+UNLOCK_PCT
) {
280 for (server
=0;server
<NSERVERS
;server
++) {
281 ret
[server
] = try_unlock(cli
[server
][conn
], fstype
,
282 fnum
[server
][fstype
][conn
][f
],
285 if (showall
|| (!hide_unlock_fails
&& (ret
[0] != ret
[1]))) {
286 printf("unlock conn=%u fstype=%u f=%u range=%u:%u(%u) -> %u:%u\n",
288 start
, start
+len
-1, len
,
291 if (showall
) brl_forall(print_brl
, NULL
);
292 if (!hide_unlock_fails
&& ret
[0] != ret
[1]) return False
;
294 /* reopen the file */
295 for (server
=0;server
<NSERVERS
;server
++) {
296 try_close(cli
[server
][conn
], fstype
, fnum
[server
][fstype
][conn
][f
]);
297 fnum
[server
][fstype
][conn
][f
] = try_open(cli
[server
][conn
], nfs
[server
], fstype
, FILENAME
,
299 if (fnum
[server
][fstype
][conn
][f
] == -1) {
300 printf("failed to reopen on share1\n");
305 printf("reopen conn=%u fstype=%u f=%u\n",
307 brl_forall(print_brl
, NULL
);
313 static void close_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
315 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
])
317 int server
, conn
, f
, fstype
;
319 for (server
=0;server
<NSERVERS
;server
++)
320 for (fstype
=0;fstype
<NUMFSTYPES
;fstype
++)
321 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
322 for (f
=0;f
<NFILES
;f
++) {
323 if (fnum
[server
][fstype
][conn
][f
] != -1) {
324 try_close(cli
[server
][conn
], fstype
, fnum
[server
][fstype
][conn
][f
]);
325 fnum
[server
][fstype
][conn
][f
] = -1;
328 for (server
=0;server
<NSERVERS
;server
++) {
329 cli_unlink(cli
[server
][0], FILENAME
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
333 static void open_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
335 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
])
337 int server
, fstype
, conn
, f
;
339 for (server
=0;server
<NSERVERS
;server
++)
340 for (fstype
=0;fstype
<NUMFSTYPES
;fstype
++)
341 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
342 for (f
=0;f
<NFILES
;f
++) {
343 fnum
[server
][fstype
][conn
][f
] = try_open(cli
[server
][conn
], nfs
[server
], fstype
, FILENAME
,
345 if (fnum
[server
][fstype
][conn
][f
] == -1) {
346 fprintf(stderr
,"Failed to open fnum[%u][%u][%u][%u]\n",
347 server
, fstype
, conn
, f
);
354 static int retest(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
356 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
360 printf("testing %u ...\n", n
);
361 for (i
=0; i
<n
; i
++) {
362 if (i
&& i
% 100 == 0) {
366 if (recorded
[i
].needed
&&
367 !test_one(cli
, nfs
, fnum
, &recorded
[i
])) return i
;
373 /* each server has two connections open to it. Each connection has two file
374 descriptors open on the file - 8 file descriptors in total
376 we then do random locking ops in tamdem on the 4 fnums from each
377 server and ensure that the results match
379 static void test_locks(char *share1
, char *share2
, char *nfspath1
, char *nfspath2
)
381 struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
];
383 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
];
392 recorded
= SMB_MALLOC_ARRAY(struct record
, numops
);
394 for (n
=0; n
<numops
; n
++) {
395 recorded
[n
].conn
= random() % NCONNECTIONS
;
396 recorded
[n
].fstype
= random() % NUMFSTYPES
;
397 recorded
[n
].f
= random() % NFILES
;
398 recorded
[n
].start
= LOCKBASE
+ ((unsigned)random() % (LOCKRANGE
-1));
399 recorded
[n
].len
= 1 +
400 random() % (LOCKRANGE
-(recorded
[n
].start
-LOCKBASE
));
401 recorded
[n
].start
*= RANGE_MULTIPLE
;
402 recorded
[n
].len
*= RANGE_MULTIPLE
;
403 recorded
[n
].r1
= random() % 100;
404 recorded
[n
].r2
= random() % 100;
405 recorded
[n
].needed
= True
;
408 reconnect(cli
, nfs
, fnum
, share1
, share2
);
409 open_files(cli
, nfs
, fnum
);
410 n
= retest(cli
, nfs
, fnum
, numops
);
412 if (n
== numops
|| !analyze
) return;
418 close_files(cli
, nfs
, fnum
);
419 reconnect(cli
, nfs
, fnum
, share1
, share2
);
420 open_files(cli
, nfs
, fnum
);
422 for (i
=0;i
<n
-1;i
++) {
424 recorded
[i
].needed
= False
;
426 close_files(cli
, nfs
, fnum
);
427 open_files(cli
, nfs
, fnum
);
429 m
= retest(cli
, nfs
, fnum
, n
);
431 recorded
[i
].needed
= True
;
434 memmove(&recorded
[i
], &recorded
[i
+1],
435 (m
-i
)*sizeof(recorded
[0]));
445 close_files(cli
, nfs
, fnum
);
446 reconnect(cli
, nfs
, fnum
, share1
, share2
);
447 open_files(cli
, nfs
, fnum
);
449 n1
= retest(cli
, nfs
, fnum
, n
);
451 printf("ERROR - inconsistent result (%u %u)\n", n1
, n
);
453 close_files(cli
, nfs
, fnum
);
456 printf("{%u, %u, %u, %u, %u, %u, %u, %u},\n",
470 static void usage(void)
474 locktest //server1/share1 //server2/share2 /path1 /path2 [options..]\n\
479 -u hide unlock fails\n\
485 /****************************************************************************
487 ****************************************************************************/
488 int main(int argc
,char *argv
[])
490 char *share1
, *share2
, *nfspath1
, *nfspath2
;
497 if (argc
< 5 || argv
[1][0] == '-') {
502 setup_logging(argv
[0], DEBUG_STDOUT
);
509 all_string_sub(share1
,"/","\\",0);
510 all_string_sub(share2
,"/","\\",0);
515 lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
);
518 if (getenv("USER")) {
519 fstrcpy(username
,getenv("USER"));
524 while ((opt
= getopt(argc
, argv
, "U:s:ho:aAW:O")) != EOF
) {
527 fstrcpy(username
,optarg
);
528 p
= strchr_m(username
,'%');
531 fstrcpy(password
, p
+1);
539 hide_unlock_fails
= True
;
542 numops
= atoi(optarg
);
557 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
565 DEBUG(0,("seed=%u\n", seed
));
568 locking_init_readonly();
569 test_locks(share1
, share2
, nfspath1
, nfspath2
);