2 Unix SMB/CIFS implementation.
6 Copyright (C) Andrew Tridgell 2007
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "torture/torture.h"
24 #include "libcli/raw/libcliraw.h"
25 #include "libcli/raw/raw_proto.h"
26 #include "system/time.h"
27 #include "system/filesys.h"
28 #include "libcli/libcli.h"
29 #include "torture/util.h"
30 #include "lib/events/events.h"
31 #include "lib/cmdline/popt_common.h"
32 #include "libcli/composite/composite.h"
33 #include "libcli/smb_composite/smb_composite.h"
34 #include "libcli/resolve/resolve.h"
35 #include "param/param.h"
36 #include "torture/raw/proto.h"
37 #include "libcli/smb/smbXcli_base.h"
38 #include "../lib/util/util_net.h"
40 #define BASEDIR "\\benchopen"
43 static int open_failed
;
44 static int close_failed
;
46 static int num_connected
;
47 static struct tevent_timer
*report_te
;
49 struct benchopen_state
{
50 struct torture_context
*tctx
;
52 struct tevent_context
*ev
;
53 struct smbcli_state
*cli
;
54 struct smbcli_tree
*tree
;
64 union smb_open open_parms
;
66 union smb_close close_parms
;
67 struct smbcli_request
*req_open
;
68 struct smbcli_request
*req_close
;
69 struct smb_composite_connect reconnect
;
70 struct tevent_timer
*te
;
72 /* these are used for reconnections */
73 const char **dest_ports
;
74 const char *dest_host
;
75 const char *called_name
;
76 const char *service_type
;
79 static void next_open(struct benchopen_state
*state
);
80 static void reopen_connection(struct tevent_context
*ev
, struct tevent_timer
*te
,
81 struct timeval t
, void *private_data
);
85 complete an async reconnect
87 static void reopen_connection_complete(struct composite_context
*ctx
)
89 struct benchopen_state
*state
= (struct benchopen_state
*)ctx
->async
.private_data
;
91 struct smb_composite_connect
*io
= &state
->reconnect
;
93 status
= smb_composite_connect_recv(ctx
, state
->mem_ctx
);
94 if (!NT_STATUS_IS_OK(status
)) {
95 talloc_free(state
->te
);
96 state
->te
= tevent_add_timer(state
->ev
, state
->mem_ctx
,
97 timeval_current_ofs(1,0),
98 reopen_connection
, state
);
102 state
->tree
= io
->out
.tree
;
106 DEBUG(0,("[%u] reconnect to %s finished (%u connected)\n",
107 state
->client_num
, state
->dest_host
, num_connected
));
109 state
->open_fnum
= -1;
110 state
->close_fnum
= -1;
119 static void reopen_connection(struct tevent_context
*ev
, struct tevent_timer
*te
,
120 struct timeval t
, void *private_data
)
122 struct benchopen_state
*state
= (struct benchopen_state
*)private_data
;
123 struct composite_context
*ctx
;
124 struct smb_composite_connect
*io
= &state
->reconnect
;
129 if (!torture_get_conn_index(state
->client_num
, state
->mem_ctx
, state
->tctx
, &host
, &share
)) {
130 DEBUG(0,("Can't find host/share for reconnect?!\n"));
134 io
->in
.dest_host
= state
->dest_host
;
135 io
->in
.dest_ports
= state
->dest_ports
;
136 io
->in
.socket_options
= lpcfg_socket_options(state
->tctx
->lp_ctx
);
137 io
->in
.called_name
= state
->called_name
;
138 io
->in
.service
= share
;
139 io
->in
.service_type
= state
->service_type
;
140 io
->in
.credentials
= cmdline_credentials
;
141 io
->in
.fallback_to_anonymous
= false;
142 io
->in
.workgroup
= lpcfg_workgroup(state
->tctx
->lp_ctx
);
143 io
->in
.gensec_settings
= lpcfg_gensec_settings(state
->mem_ctx
, state
->tctx
->lp_ctx
);
144 lpcfg_smbcli_options(state
->tctx
->lp_ctx
, &io
->in
.options
);
145 lpcfg_smbcli_session_options(state
->tctx
->lp_ctx
, &io
->in
.session_options
);
147 /* kill off the remnants of the old connection */
148 talloc_free(state
->tree
);
150 state
->open_fnum
= -1;
151 state
->close_fnum
= -1;
153 ctx
= smb_composite_connect_send(io
, state
->mem_ctx
,
154 lpcfg_resolve_context(state
->tctx
->lp_ctx
),
157 DEBUG(0,("Failed to setup async reconnect\n"));
161 ctx
->async
.fn
= reopen_connection_complete
;
162 ctx
->async
.private_data
= state
;
165 static void open_completed(struct smbcli_request
*req
);
166 static void close_completed(struct smbcli_request
*req
);
169 static void next_open(struct benchopen_state
*state
)
173 state
->pending_file_num
= state
->next_file_num
;
174 state
->next_file_num
= (state
->next_file_num
+1) % (3*nprocs
);
176 DEBUG(2,("[%d] opening %u\n", state
->client_num
, state
->pending_file_num
));
177 state
->open_parms
.ntcreatex
.level
= RAW_OPEN_NTCREATEX
;
178 state
->open_parms
.ntcreatex
.in
.flags
= 0;
179 state
->open_parms
.ntcreatex
.in
.root_fid
.fnum
= 0;
180 state
->open_parms
.ntcreatex
.in
.access_mask
= SEC_RIGHTS_FILE_ALL
;
181 state
->open_parms
.ntcreatex
.in
.file_attr
= FILE_ATTRIBUTE_NORMAL
;
182 state
->open_parms
.ntcreatex
.in
.alloc_size
= 0;
183 state
->open_parms
.ntcreatex
.in
.share_access
= 0;
184 state
->open_parms
.ntcreatex
.in
.open_disposition
= NTCREATEX_DISP_OVERWRITE_IF
;
185 state
->open_parms
.ntcreatex
.in
.create_options
= 0;
186 state
->open_parms
.ntcreatex
.in
.impersonation
= 0;
187 state
->open_parms
.ntcreatex
.in
.security_flags
= 0;
188 state
->open_parms
.ntcreatex
.in
.fname
= fnames
[state
->pending_file_num
];
190 state
->req_open
= smb_raw_open_send(state
->tree
, &state
->open_parms
);
191 state
->req_open
->async
.fn
= open_completed
;
192 state
->req_open
->async
.private_data
= state
;
196 static void next_close(struct benchopen_state
*state
)
198 if (state
->close_fnum
== -1) {
201 DEBUG(2,("[%d] closing %d (fnum[%d])\n",
202 state
->client_num
, state
->close_file_num
, state
->close_fnum
));
203 state
->close_parms
.close
.level
= RAW_CLOSE_CLOSE
;
204 state
->close_parms
.close
.in
.file
.fnum
= state
->close_fnum
;
205 state
->close_parms
.close
.in
.write_time
= 0;
207 state
->req_close
= smb_raw_close_send(state
->tree
, &state
->close_parms
);
208 state
->req_close
->async
.fn
= close_completed
;
209 state
->req_close
->async
.private_data
= state
;
213 called when a open completes
215 static void open_completed(struct smbcli_request
*req
)
217 struct benchopen_state
*state
= (struct benchopen_state
*)req
->async
.private_data
;
218 TALLOC_CTX
*tmp_ctx
= talloc_new(state
->mem_ctx
);
221 status
= smb_raw_open_recv(req
, tmp_ctx
, &state
->open_parms
);
223 talloc_free(tmp_ctx
);
225 state
->req_open
= NULL
;
227 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
) ||
228 NT_STATUS_EQUAL(status
, NT_STATUS_LOCAL_DISCONNECT
) ||
229 NT_STATUS_EQUAL(status
, NT_STATUS_CONNECTION_RESET
)) {
230 talloc_free(state
->tree
);
231 talloc_free(state
->cli
);
235 DEBUG(0,("[%u] reopening connection to %s\n",
236 state
->client_num
, state
->dest_host
));
237 talloc_free(state
->te
);
238 state
->te
= tevent_add_timer(state
->ev
, state
->mem_ctx
,
239 timeval_current_ofs(1,0),
240 reopen_connection
, state
);
244 if (NT_STATUS_EQUAL(status
, NT_STATUS_SHARING_VIOLATION
)) {
245 DEBUG(2,("[%d] retrying open %d\n",
246 state
->client_num
, state
->pending_file_num
));
247 state
->open_retries
++;
248 state
->req_open
= smb_raw_open_send(state
->tree
, &state
->open_parms
);
249 state
->req_open
->async
.fn
= open_completed
;
250 state
->req_open
->async
.private_data
= state
;
254 if (!NT_STATUS_IS_OK(status
)) {
256 DEBUG(0,("[%u] open failed %d - %s\n",
257 state
->client_num
, state
->pending_file_num
,
262 state
->close_file_num
= state
->open_file_num
;
263 state
->close_fnum
= state
->open_fnum
;
264 state
->open_file_num
= state
->pending_file_num
;
265 state
->open_fnum
= state
->open_parms
.ntcreatex
.out
.file
.fnum
;
267 DEBUG(2,("[%d] open completed %d (fnum[%d])\n",
268 state
->client_num
, state
->open_file_num
, state
->open_fnum
));
270 if (state
->close_fnum
!= -1) {
278 called when a close completes
280 static void close_completed(struct smbcli_request
*req
)
282 struct benchopen_state
*state
= (struct benchopen_state
*)req
->async
.private_data
;
283 NTSTATUS status
= smbcli_request_simple_recv(req
);
285 state
->req_close
= NULL
;
287 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
) ||
288 NT_STATUS_EQUAL(status
, NT_STATUS_LOCAL_DISCONNECT
) ||
289 NT_STATUS_EQUAL(status
, NT_STATUS_CONNECTION_RESET
)) {
290 talloc_free(state
->tree
);
291 talloc_free(state
->cli
);
295 DEBUG(0,("[%u] reopening connection to %s\n",
296 state
->client_num
, state
->dest_host
));
297 talloc_free(state
->te
);
298 state
->te
= tevent_add_timer(state
->ev
, state
->mem_ctx
,
299 timeval_current_ofs(1,0),
300 reopen_connection
, state
);
304 if (!NT_STATUS_IS_OK(status
)) {
306 DEBUG(0,("[%u] close failed %d (fnum[%d]) - %s\n",
307 state
->client_num
, state
->close_file_num
,
313 DEBUG(2,("[%d] close completed %d (fnum[%d])\n",
314 state
->client_num
, state
->close_file_num
,
318 static void echo_completion(struct smbcli_request
*req
)
320 struct benchopen_state
*state
= (struct benchopen_state
*)req
->async
.private_data
;
321 NTSTATUS status
= smbcli_request_simple_recv(req
);
322 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
) ||
323 NT_STATUS_EQUAL(status
, NT_STATUS_LOCAL_DISCONNECT
) ||
324 NT_STATUS_EQUAL(status
, NT_STATUS_CONNECTION_RESET
)) {
325 talloc_free(state
->tree
);
328 DEBUG(0,("[%u] reopening connection to %s\n",
329 state
->client_num
, state
->dest_host
));
330 talloc_free(state
->te
);
331 state
->te
= tevent_add_timer(state
->ev
, state
->mem_ctx
,
332 timeval_current_ofs(1,0),
333 reopen_connection
, state
);
337 static void report_rate(struct tevent_context
*ev
, struct tevent_timer
*te
,
338 struct timeval t
, void *private_data
)
340 struct benchopen_state
*state
= talloc_get_type(private_data
,
341 struct benchopen_state
);
343 for (i
=0;i
<nprocs
;i
++) {
344 printf("%5u ", (unsigned)(state
[i
].count
- state
[i
].lastcount
));
345 state
[i
].lastcount
= state
[i
].count
;
349 report_te
= tevent_add_timer(ev
, state
, timeval_current_ofs(1, 0),
352 /* send an echo on each interface to ensure it stays alive - this helps
354 for (i
=0;i
<nprocs
;i
++) {
356 struct smbcli_request
*req
;
358 if (!state
[i
].tree
) {
362 p
.in
.repeat_count
= 1;
365 req
= smb_raw_echo_send(state
[i
].tree
->session
->transport
, &p
);
366 req
->async
.private_data
= &state
[i
];
367 req
->async
.fn
= echo_completion
;
374 bool torture_bench_open(struct torture_context
*torture
)
377 TALLOC_CTX
*mem_ctx
= talloc_new(torture
);
379 int timelimit
= torture_setting_int(torture
, "timelimit", 10);
381 struct benchopen_state
*state
;
383 int total_retries
= 0;
387 progress
= torture_setting_bool(torture
, "progress", true);
389 nprocs
= torture_setting_int(torture
, "nprocs", 4);
391 state
= talloc_zero_array(mem_ctx
, struct benchopen_state
, nprocs
);
393 printf("Opening %d connections\n", nprocs
);
394 for (i
=0;i
<nprocs
;i
++) {
395 const struct sockaddr_storage
*dest_ss
;
396 char addrstr
[INET6_ADDRSTRLEN
];
397 const char *dest_str
;
400 state
[i
].tctx
= torture
;
401 state
[i
].mem_ctx
= talloc_new(state
);
402 state
[i
].client_num
= i
;
403 state
[i
].ev
= torture
->ev
;
404 if (!torture_open_connection_ev(&state
[i
].cli
, i
, torture
, torture
->ev
)) {
407 talloc_steal(state
[i
].mem_ctx
, state
[i
].cli
);
408 state
[i
].tree
= state
[i
].cli
->tree
;
410 dest_ss
= smbXcli_conn_remote_sockaddr(
411 state
[i
].tree
->session
->transport
->conn
);
412 dest_str
= print_sockaddr(addrstr
, sizeof(addrstr
), dest_ss
);
413 dest_port
= get_sockaddr_port(dest_ss
);
415 state
[i
].dest_host
= talloc_strdup(state
[i
].mem_ctx
, dest_str
);
416 state
[i
].dest_ports
= talloc_array(state
[i
].mem_ctx
,
418 state
[i
].dest_ports
[0] = talloc_asprintf(state
[i
].dest_ports
,
420 state
[i
].dest_ports
[1] = NULL
;
421 state
[i
].called_name
= talloc_strdup(state
[i
].mem_ctx
,
422 smbXcli_conn_remote_name(state
[i
].tree
->session
->transport
->conn
));
423 state
[i
].service_type
= talloc_strdup(state
[i
].mem_ctx
, "?????");
428 if (!torture_setup_dir(state
[0].cli
, BASEDIR
)) {
432 fnames
= talloc_array(mem_ctx
, char *, 3*nprocs
);
433 for (i
=0;i
<3*nprocs
;i
++) {
434 fnames
[i
] = talloc_asprintf(fnames
, "%s\\file%d.dat", BASEDIR
, i
);
437 for (i
=0;i
<nprocs
;i
++) {
438 /* all connections start with the same file */
439 state
[i
].next_file_num
= 0;
440 state
[i
].open_fnum
= -1;
441 state
[i
].close_fnum
= -1;
442 next_open(&state
[i
]);
445 tv
= timeval_current();
448 report_te
= tevent_add_timer(torture
->ev
, state
, timeval_current_ofs(1, 0),
452 printf("Running for %d seconds\n", timelimit
);
453 while (timeval_elapsed(&tv
) < timelimit
) {
454 tevent_loop_once(torture
->ev
);
457 DEBUG(0,("open failed\n"));
461 DEBUG(0,("open failed\n"));
466 talloc_free(report_te
);
468 for (i
=0;i
<nprocs
;i
++) {
474 minops
= state
[0].count
;
475 for (i
=0;i
<nprocs
;i
++) {
476 total
+= state
[i
].count
;
477 total_retries
+= state
[i
].open_retries
;
478 printf("[%d] %u ops (%u retries)\n",
479 i
, state
[i
].count
, state
[i
].open_retries
);
480 if (state
[i
].count
< minops
) minops
= state
[i
].count
;
482 printf("%.2f ops/second (%d retries)\n",
483 total
/timeval_elapsed(&tv
), total_retries
);
484 if (minops
< 0.5*total
/nprocs
) {
485 printf("Failed: unbalanced open\n");
489 for (i
=0;i
<nprocs
;i
++) {
490 talloc_free(state
[i
].req_open
);
491 talloc_free(state
[i
].req_close
);
492 smb_raw_exit(state
[i
].tree
->session
);
495 smbcli_deltree(state
[0].tree
, BASEDIR
);
496 talloc_free(mem_ctx
);
500 talloc_free(mem_ctx
);