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 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
;
24 static fstring username
;
26 static int numops
= 1000;
29 static BOOL hide_unlock_fails
;
30 static BOOL use_oplocks
;
32 #define FILENAME "\\locktest.dat"
37 #define LOCKBASE (0x40000000 - 50)
43 #define RANGE_MULTIPLE 1
46 #define NCONNECTIONS 2
49 #define LOCK_TIMEOUT 0
61 static struct record
*recorded
;
63 static int try_open(struct cli_state
*c
, char *nfs
, int fstype
, const char *fname
, int flags
)
69 return cli_open(c
, fname
, flags
, DENY_NONE
);
72 slprintf(path
, sizeof(path
), "%s%s", nfs
, fname
);
73 pstring_sub(path
,"\\", "/");
74 return open(path
, flags
, 0666);
80 static BOOL
try_close(struct cli_state
*c
, int fstype
, int fd
)
84 return cli_close(c
, fd
);
87 return close(fd
) == 0;
93 static BOOL
try_lock(struct cli_state
*c
, int fstype
,
94 int fd
, unsigned start
, unsigned len
,
101 return cli_lock(c
, fd
, start
, len
, LOCK_TIMEOUT
, op
);
104 lock
.l_type
= (op
==READ_LOCK
) ? F_RDLCK
:F_WRLCK
;
105 lock
.l_whence
= SEEK_SET
;
106 lock
.l_start
= start
;
108 lock
.l_pid
= getpid();
109 return fcntl(fd
,F_SETLK
,&lock
) == 0;
115 static BOOL
try_unlock(struct cli_state
*c
, int fstype
,
116 int fd
, unsigned start
, unsigned len
)
122 return cli_unlock(c
, fd
, start
, len
);
125 lock
.l_type
= F_UNLCK
;
126 lock
.l_whence
= SEEK_SET
;
127 lock
.l_start
= start
;
129 lock
.l_pid
= getpid();
130 return fcntl(fd
,F_SETLK
,&lock
) == 0;
136 static void print_brl(SMB_DEV_T dev
, SMB_INO_T ino
, struct process_id pid
,
137 enum brl_type lock_type
,
138 br_off start
, br_off size
)
140 printf("%6d %05x:%05x %s %.0f:%.0f(%.0f)\n",
141 (int)procid_to_pid(&pid
), (int)dev
, (int)ino
,
142 lock_type
==READ_LOCK
?"R":"W",
143 (double)start
, (double)start
+size
-1,(double)size
);
147 /*****************************************************
148 return a connection to a server
149 *******************************************************/
150 static struct cli_state
*connect_one(char *share
)
159 fstrcpy(server
,share
+2);
160 share
= strchr_m(server
,'\\');
161 if (!share
) return NULL
;
168 char *pass
= getpass("Password: ");
170 fstrcpy(password
, pass
);
174 slprintf(myname
,sizeof(myname
), "lock-%lu-%u", (unsigned long)getpid(), count
++);
176 nt_status
= cli_full_connection(&c
, myname
, server_n
, NULL
, 0, share
, "?????",
177 username
, lp_workgroup(), password
, 0,
180 if (!NT_STATUS_IS_OK(nt_status
)) {
181 DEBUG(0, ("cli_full_connection failed with error %s\n", nt_errstr(nt_status
)));
185 c
->use_oplocks
= use_oplocks
;
191 static void reconnect(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
193 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
194 char *share1
, char *share2
)
196 int server
, conn
, f
, fstype
;
203 for (server
=0;server
<NSERVERS
;server
++)
204 for (conn
=0;conn
<NCONNECTIONS
;conn
++) {
205 if (cli
[server
][conn
]) {
206 for (f
=0;f
<NFILES
;f
++) {
207 cli_close(cli
[server
][conn
], fnum
[server
][fstype
][conn
][f
]);
209 cli_ulogoff(cli
[server
][conn
]);
210 cli_shutdown(cli
[server
][conn
]);
212 cli
[server
][conn
] = connect_one(share
[server
]);
213 if (!cli
[server
][conn
]) {
214 DEBUG(0,("Failed to connect to %s\n", share
[server
]));
222 static BOOL
test_one(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
224 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
227 unsigned conn
= rec
->conn
;
229 unsigned fstype
= rec
->fstype
;
230 unsigned start
= rec
->start
;
231 unsigned len
= rec
->len
;
232 unsigned r1
= rec
->r1
;
233 unsigned r2
= rec
->r2
;
246 for (server
=0;server
<NSERVERS
;server
++) {
247 ret
[server
] = try_lock(cli
[server
][conn
], fstype
,
248 fnum
[server
][fstype
][conn
][f
],
251 if (showall
|| ret
[0] != ret
[1]) {
252 printf("lock conn=%u fstype=%u f=%u range=%u:%u(%u) op=%s -> %u:%u\n",
254 start
, start
+len
-1, len
,
255 op
==READ_LOCK
?"READ_LOCK":"WRITE_LOCK",
258 if (showall
) brl_forall(print_brl
);
259 if (ret
[0] != ret
[1]) return False
;
260 } else if (r2
< LOCK_PCT
+UNLOCK_PCT
) {
262 for (server
=0;server
<NSERVERS
;server
++) {
263 ret
[server
] = try_unlock(cli
[server
][conn
], fstype
,
264 fnum
[server
][fstype
][conn
][f
],
267 if (showall
|| (!hide_unlock_fails
&& (ret
[0] != ret
[1]))) {
268 printf("unlock conn=%u fstype=%u f=%u range=%u:%u(%u) -> %u:%u\n",
270 start
, start
+len
-1, len
,
273 if (showall
) brl_forall(print_brl
);
274 if (!hide_unlock_fails
&& ret
[0] != ret
[1]) return False
;
276 /* reopen the file */
277 for (server
=0;server
<NSERVERS
;server
++) {
278 try_close(cli
[server
][conn
], fstype
, fnum
[server
][fstype
][conn
][f
]);
279 fnum
[server
][fstype
][conn
][f
] = try_open(cli
[server
][conn
], nfs
[server
], fstype
, FILENAME
,
281 if (fnum
[server
][fstype
][conn
][f
] == -1) {
282 printf("failed to reopen on share1\n");
287 printf("reopen conn=%u fstype=%u f=%u\n",
289 brl_forall(print_brl
);
295 static void close_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
297 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
])
299 int server
, conn
, f
, fstype
;
301 for (server
=0;server
<NSERVERS
;server
++)
302 for (fstype
=0;fstype
<NUMFSTYPES
;fstype
++)
303 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
304 for (f
=0;f
<NFILES
;f
++) {
305 if (fnum
[server
][fstype
][conn
][f
] != -1) {
306 try_close(cli
[server
][conn
], fstype
, fnum
[server
][fstype
][conn
][f
]);
307 fnum
[server
][fstype
][conn
][f
] = -1;
310 for (server
=0;server
<NSERVERS
;server
++) {
311 cli_unlink(cli
[server
][0], FILENAME
);
315 static void open_files(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
317 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
])
319 int server
, fstype
, conn
, f
;
321 for (server
=0;server
<NSERVERS
;server
++)
322 for (fstype
=0;fstype
<NUMFSTYPES
;fstype
++)
323 for (conn
=0;conn
<NCONNECTIONS
;conn
++)
324 for (f
=0;f
<NFILES
;f
++) {
325 fnum
[server
][fstype
][conn
][f
] = try_open(cli
[server
][conn
], nfs
[server
], fstype
, FILENAME
,
327 if (fnum
[server
][fstype
][conn
][f
] == -1) {
328 fprintf(stderr
,"Failed to open fnum[%u][%u][%u][%u]\n",
329 server
, fstype
, conn
, f
);
336 static int retest(struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
],
338 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
],
342 printf("testing %u ...\n", n
);
343 for (i
=0; i
<n
; i
++) {
344 if (i
&& i
% 100 == 0) {
348 if (recorded
[i
].needed
&&
349 !test_one(cli
, nfs
, fnum
, &recorded
[i
])) return i
;
355 /* each server has two connections open to it. Each connection has two file
356 descriptors open on the file - 8 file descriptors in total
358 we then do random locking ops in tamdem on the 4 fnums from each
359 server and ensure that the results match
361 static void test_locks(char *share1
, char *share2
, char *nfspath1
, char *nfspath2
)
363 struct cli_state
*cli
[NSERVERS
][NCONNECTIONS
];
365 int fnum
[NSERVERS
][NUMFSTYPES
][NCONNECTIONS
][NFILES
];
374 recorded
= SMB_MALLOC_ARRAY(struct record
, numops
);
376 for (n
=0; n
<numops
; n
++) {
377 recorded
[n
].conn
= random() % NCONNECTIONS
;
378 recorded
[n
].fstype
= random() % NUMFSTYPES
;
379 recorded
[n
].f
= random() % NFILES
;
380 recorded
[n
].start
= LOCKBASE
+ ((unsigned)random() % (LOCKRANGE
-1));
381 recorded
[n
].len
= 1 +
382 random() % (LOCKRANGE
-(recorded
[n
].start
-LOCKBASE
));
383 recorded
[n
].start
*= RANGE_MULTIPLE
;
384 recorded
[n
].len
*= RANGE_MULTIPLE
;
385 recorded
[n
].r1
= random() % 100;
386 recorded
[n
].r2
= random() % 100;
387 recorded
[n
].needed
= True
;
390 reconnect(cli
, nfs
, fnum
, share1
, share2
);
391 open_files(cli
, nfs
, fnum
);
392 n
= retest(cli
, nfs
, fnum
, numops
);
394 if (n
== numops
|| !analyze
) return;
400 close_files(cli
, nfs
, fnum
);
401 reconnect(cli
, nfs
, fnum
, share1
, share2
);
402 open_files(cli
, nfs
, fnum
);
404 for (i
=0;i
<n
-1;i
++) {
406 recorded
[i
].needed
= False
;
408 close_files(cli
, nfs
, fnum
);
409 open_files(cli
, nfs
, fnum
);
411 m
= retest(cli
, nfs
, fnum
, n
);
413 recorded
[i
].needed
= True
;
416 memmove(&recorded
[i
], &recorded
[i
+1],
417 (m
-i
)*sizeof(recorded
[0]));
427 close_files(cli
, nfs
, fnum
);
428 reconnect(cli
, nfs
, fnum
, share1
, share2
);
429 open_files(cli
, nfs
, fnum
);
431 n1
= retest(cli
, nfs
, fnum
, n
);
433 printf("ERROR - inconsistent result (%u %u)\n", n1
, n
);
435 close_files(cli
, nfs
, fnum
);
438 printf("{%u, %u, %u, %u, %u, %u, %u, %u},\n",
452 static void usage(void)
456 locktest //server1/share1 //server2/share2 /path1 /path2 [options..]\n\
461 -u hide unlock fails\n\
467 /****************************************************************************
469 ****************************************************************************/
470 int main(int argc
,char *argv
[])
472 char *share1
, *share2
, *nfspath1
, *nfspath2
;
483 if (argc
< 5 || argv
[1][0] == '-') {
493 all_string_sub(share1
,"/","\\",0);
494 all_string_sub(share2
,"/","\\",0);
496 setup_logging(argv
[0],True
);
501 lp_load(dyn_CONFIGFILE
,True
,False
,False
,True
);
504 if (getenv("USER")) {
505 fstrcpy(username
,getenv("USER"));
510 while ((opt
= getopt(argc
, argv
, "U:s:ho:aAW:O")) != EOF
) {
513 fstrcpy(username
,optarg
);
514 p
= strchr_m(username
,'%');
517 fstrcpy(password
, p
+1);
525 hide_unlock_fails
= True
;
528 numops
= atoi(optarg
);
543 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
551 DEBUG(0,("seed=%u\n", seed
));
555 test_locks(share1
, share2
, nfspath1
, nfspath2
);