s4:lib/tevent: rename structs
[sfrench/samba-autobuild/.git] / source4 / torture / raw / openbench.c
index 8f9803fa4dbf03b0b0b773c99c51382cc2844ee3..a9ce4aec0d994da152060077f4df6c018ccfa873 100644 (file)
@@ -22,6 +22,7 @@
 #include "includes.h"
 #include "torture/torture.h"
 #include "libcli/raw/libcliraw.h"
+#include "libcli/raw/raw_proto.h"
 #include "system/time.h"
 #include "system/filesys.h"
 #include "libcli/libcli.h"
 #include "lib/cmdline/popt_common.h"
 #include "libcli/composite/composite.h"
 #include "libcli/smb_composite/smb_composite.h"
+#include "libcli/resolve/resolve.h"
 #include "param/param.h"
 
 #define BASEDIR "\\benchopen"
 
 static int nprocs;
 static int open_failed;
-static int open_retries;
+static int close_failed;
 static char **fnames;
 static int num_connected;
-static struct timed_event *report_te;
+static struct tevent_timer *report_te;
 
 struct benchopen_state {
        struct torture_context *tctx;
        TALLOC_CTX *mem_ctx;
-       struct event_context *ev;
+       struct tevent_context *ev;
        struct smbcli_state *cli;
        struct smbcli_tree *tree;
        int client_num;
-       int old_fnum;
-       int fnum;
-       int file_num;
+       int close_fnum;
+       int open_fnum;
+       int close_file_num;
+       int open_file_num;
+       int pending_file_num;
+       int next_file_num;
        int count;
        int lastcount;
        union smb_open open_parms;
+       int open_retries;
        union smb_close close_parms;
        struct smbcli_request *req_open;
        struct smbcli_request *req_close;
        struct smb_composite_connect reconnect;
-       struct timed_event *te;
+       struct tevent_timer *te;
 
        /* these are used for reconnections */
-       int dest_port;
+       const char **dest_ports;
        const char *dest_host;
        const char *called_name;
        const char *service_type;
 };
 
 static void next_open(struct benchopen_state *state);
-static void reopen_connection(struct event_context *ev, struct timed_event *te, 
+static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te, 
                              struct timeval t, void *private_data);
 
 
@@ -94,11 +100,11 @@ static void reopen_connection_complete(struct composite_context *ctx)
 
        num_connected++;
 
-       DEBUG(0,("reconnect to %s finished (%u connected)\n", state->dest_host,
-                num_connected));
+       DEBUG(0,("[%u] reconnect to %s finished (%u connected)\n",
+                state->client_num, state->dest_host, num_connected));
 
-       state->fnum = -1;
-       state->old_fnum = -1;
+       state->open_fnum = -1;
+       state->close_fnum = -1;
        next_open(state);
 }
 
@@ -107,7 +113,7 @@ static void reopen_connection_complete(struct composite_context *ctx)
 /*
   reopen a connection
  */
-static void reopen_connection(struct event_context *ev, struct timed_event *te, 
+static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te, 
                              struct timeval t, void *private_data)
 {
        struct benchopen_state *state = (struct benchopen_state *)private_data;
@@ -123,20 +129,27 @@ static void reopen_connection(struct event_context *ev, struct timed_event *te,
        }
 
        io->in.dest_host    = state->dest_host;
-       io->in.port         = state->dest_port;
+       io->in.dest_ports   = state->dest_ports;
+       io->in.socket_options = lp_socket_options(state->tctx->lp_ctx);
        io->in.called_name  = state->called_name;
        io->in.service      = share;
        io->in.service_type = state->service_type;
        io->in.credentials  = cmdline_credentials;
        io->in.fallback_to_anonymous = false;
        io->in.workgroup    = lp_workgroup(state->tctx->lp_ctx);
+       io->in.gensec_settings = lp_gensec_settings(state->mem_ctx, state->tctx->lp_ctx);
+       lp_smbcli_options(state->tctx->lp_ctx, &io->in.options);
+       lp_smbcli_session_options(state->tctx->lp_ctx, &io->in.session_options);
 
        /* kill off the remnants of the old connection */
        talloc_free(state->tree);
        state->tree = NULL;
-       state->fnum = -1;
+       state->open_fnum = -1;
+       state->close_fnum = -1;
 
-       ctx = smb_composite_connect_send(io, state->mem_ctx, state->ev);
+       ctx = smb_composite_connect_send(io, state->mem_ctx, 
+                                        lp_resolve_context(state->tctx->lp_ctx), 
+                                        state->ev);
        if (ctx == NULL) {
                DEBUG(0,("Failed to setup async reconnect\n"));
                exit(1);
@@ -154,9 +167,10 @@ static void next_open(struct benchopen_state *state)
 {
        state->count++;
 
-       state->file_num = (state->file_num+1) % (3*nprocs);
+       state->pending_file_num = state->next_file_num;
+       state->next_file_num = (state->next_file_num+1) % (3*nprocs);
 
-       DEBUG(2,("[%d] opening %u\n", state->client_num, state->file_num));
+       DEBUG(2,("[%d] opening %u\n", state->client_num, state->pending_file_num));
        state->open_parms.ntcreatex.level = RAW_OPEN_NTCREATEX;
        state->open_parms.ntcreatex.in.flags = 0;
        state->open_parms.ntcreatex.in.root_fid = 0;
@@ -168,7 +182,7 @@ static void next_open(struct benchopen_state *state)
        state->open_parms.ntcreatex.in.create_options = 0;
        state->open_parms.ntcreatex.in.impersonation = 0;
        state->open_parms.ntcreatex.in.security_flags = 0;
-       state->open_parms.ntcreatex.in.fname = fnames[state->file_num];
+       state->open_parms.ntcreatex.in.fname = fnames[state->pending_file_num];
 
        state->req_open = smb_raw_open_send(state->tree, &state->open_parms);
        state->req_open->async.fn = open_completed;
@@ -178,18 +192,18 @@ static void next_open(struct benchopen_state *state)
 
 static void next_close(struct benchopen_state *state)
 {
-       DEBUG(2,("[%d] closing %d\n", state->client_num, state->old_fnum));
-       if (state->old_fnum == -1) {
+       if (state->close_fnum == -1) {
                return;
        }
+       DEBUG(2,("[%d] closing %d (fnum[%d])\n",
+                state->client_num, state->close_file_num, state->close_fnum));
        state->close_parms.close.level = RAW_CLOSE_CLOSE;
-       state->close_parms.close.in.file.fnum = state->old_fnum;
+       state->close_parms.close.in.file.fnum = state->close_fnum;
        state->close_parms.close.in.write_time = 0;
 
        state->req_close = smb_raw_close_send(state->tree, &state->close_parms);
        state->req_close->async.fn = close_completed;
        state->req_close->async.private = state;
-       state->old_fnum = -1;
 }
 
 /*
@@ -214,7 +228,8 @@ static void open_completed(struct smbcli_request *req)
                state->tree = NULL;
                state->cli = NULL;
                num_connected--;        
-               DEBUG(0,("reopening connection to %s\n", state->dest_host));
+               DEBUG(0,("[%u] reopening connection to %s\n",
+                        state->client_num, state->dest_host));
                talloc_free(state->te);
                state->te = event_add_timed(state->ev, state->mem_ctx, 
                                            timeval_current_ofs(1,0), 
@@ -223,8 +238,9 @@ static void open_completed(struct smbcli_request *req)
        }
 
        if (NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION)) {
-               DEBUG(2,("[%d] retrying open\n", state->client_num));
-               open_retries++;
+               DEBUG(2,("[%d] retrying open %d\n",
+                        state->client_num, state->pending_file_num));
+               state->open_retries++;
                state->req_open = smb_raw_open_send(state->tree, &state->open_parms);
                state->req_open->async.fn = open_completed;
                state->req_open->async.private = state;
@@ -233,17 +249,21 @@ static void open_completed(struct smbcli_request *req)
 
        if (!NT_STATUS_IS_OK(status)) {
                open_failed++;
-               DEBUG(0,("open failed - %s\n", nt_errstr(status)));
+               DEBUG(0,("[%u] open failed %d - %s\n",
+                        state->client_num, state->pending_file_num,
+                        nt_errstr(status)));
                return;
        }
 
-       state->old_fnum = state->fnum;
-       state->fnum = state->open_parms.ntcreatex.out.file.fnum;
+       state->close_file_num = state->open_file_num;
+       state->close_fnum = state->open_fnum;
+       state->open_file_num = state->pending_file_num;
+       state->open_fnum = state->open_parms.ntcreatex.out.file.fnum;
 
-       DEBUG(2,("[%d] open completed: fnum=%d old_fnum=%d\n", 
-                state->client_num, state->fnum, state->old_fnum));
+       DEBUG(2,("[%d] open completed %d (fnum[%d])\n",
+                state->client_num, state->open_file_num, state->open_fnum));
 
-       if (state->old_fnum != -1) {
+       if (state->close_fnum != -1) {
                next_close(state);
        }
 
@@ -267,7 +287,8 @@ static void close_completed(struct smbcli_request *req)
                state->tree = NULL;
                state->cli = NULL;
                num_connected--;        
-               DEBUG(0,("reopening connection to %s\n", state->dest_host));
+               DEBUG(0,("[%u] reopening connection to %s\n",
+                        state->client_num, state->dest_host));
                talloc_free(state->te);
                state->te = event_add_timed(state->ev, state->mem_ctx, 
                                            timeval_current_ofs(1,0), 
@@ -276,13 +297,17 @@ static void close_completed(struct smbcli_request *req)
        }
 
        if (!NT_STATUS_IS_OK(status)) {
-               open_failed++;
-               DEBUG(0,("close failed - %s\n", nt_errstr(status)));
+               close_failed++;
+               DEBUG(0,("[%u] close failed %d (fnum[%d]) - %s\n",
+                        state->client_num, state->close_file_num,
+                        state->close_fnum,
+                        nt_errstr(status)));
                return;
        }
 
-       DEBUG(2,("[%d] close completed: fnum=%d old_fnum=%d\n", 
-                state->client_num, state->fnum, state->old_fnum));
+       DEBUG(2,("[%d] close completed %d (fnum[%d])\n",
+                state->client_num, state->close_file_num,
+                state->close_fnum));
 }      
 
 static void echo_completion(struct smbcli_request *req)
@@ -294,7 +319,8 @@ static void echo_completion(struct smbcli_request *req)
                talloc_free(state->tree);
                state->tree = NULL;
                num_connected--;        
-               DEBUG(0,("reopening connection to %s\n", state->dest_host));
+               DEBUG(0,("[%u] reopening connection to %s\n",
+                        state->client_num, state->dest_host));
                talloc_free(state->te);
                state->te = event_add_timed(state->ev, state->mem_ctx, 
                                            timeval_current_ofs(1,0), 
@@ -302,7 +328,7 @@ static void echo_completion(struct smbcli_request *req)
        }
 }
 
-static void report_rate(struct event_context *ev, struct timed_event *te, 
+static void report_rate(struct tevent_context *ev, struct tevent_timer *te, 
                        struct timeval t, void *private_data)
 {
        struct benchopen_state *state = talloc_get_type(private_data, 
@@ -346,9 +372,10 @@ bool torture_bench_open(struct torture_context *torture)
        int i;
        int timelimit = torture_setting_int(torture, "timelimit", 10);
        struct timeval tv;
-       struct event_context *ev = event_context_find(mem_ctx);
        struct benchopen_state *state;
-       int total = 0, minops=0;
+       int total = 0;
+       int total_retries = 0;
+       int minops = 0;
        bool progress=false;
 
        progress = torture_setting_bool(torture, "progress", true);
@@ -362,15 +389,19 @@ bool torture_bench_open(struct torture_context *torture)
                state[i].tctx = torture;
                state[i].mem_ctx = talloc_new(state);
                state[i].client_num = i;
-               state[i].ev = ev;
-               if (!torture_open_connection_ev(&state[i].cli, i, torture, ev)) {
+               state[i].ev = torture->ev;
+               if (!torture_open_connection_ev(&state[i].cli, i, torture, torture->ev)) {
                        return false;
                }
                talloc_steal(mem_ctx, state);
                state[i].tree = state[i].cli->tree;
                state[i].dest_host = talloc_strdup(state[i].mem_ctx, 
                                                   state[i].cli->tree->session->transport->socket->hostname);
-               state[i].dest_port = state[i].cli->tree->session->transport->socket->port;
+               state[i].dest_ports = talloc_array(state[i].mem_ctx, 
+                                                  const char *, 2);
+               state[i].dest_ports[0] = talloc_asprintf(state[i].dest_ports, 
+                                                        "%u", state[i].cli->tree->session->transport->socket->port);
+               state[i].dest_ports[1] = NULL;
                state[i].called_name  = talloc_strdup(state[i].mem_ctx,
                                                      state[i].cli->tree->session->transport->called.name);
                state[i].service_type = talloc_strdup(state[i].mem_ctx,
@@ -389,40 +420,52 @@ bool torture_bench_open(struct torture_context *torture)
        }
 
        for (i=0;i<nprocs;i++) {
-               state[i].file_num = i;          
-               state[i].fnum = smbcli_open(state[i].tree, 
-                                           fnames[state->file_num], 
-                                           O_RDWR|O_CREAT, DENY_ALL);
-               state[i].old_fnum = -1;
+               /* all connections start with the same file */
+               state[i].next_file_num = 0;
+               state[i].open_fnum = -1;
+               state[i].close_fnum = -1;
                next_open(&state[i]);
        }
 
        tv = timeval_current(); 
 
        if (progress) {
-               report_te = event_add_timed(ev, state, timeval_current_ofs(1, 0), 
+               report_te = event_add_timed(torture->ev, state, timeval_current_ofs(1, 0), 
                                            report_rate, state);
        }
 
        printf("Running for %d seconds\n", timelimit);
        while (timeval_elapsed(&tv) < timelimit) {
-               event_loop_once(ev);
+               event_loop_once(torture->ev);
 
                if (open_failed) {
                        DEBUG(0,("open failed\n"));
                        goto failed;
                }
+               if (close_failed) {
+                       DEBUG(0,("open failed\n"));
+                       goto failed;
+               }
        }
 
        talloc_free(report_te);
+       if (progress) {
+               for (i=0;i<nprocs;i++) {
+                       printf("      ");
+               }
+               printf("\r");
+       }
 
-       printf("%.2f ops/second (%d retries)\n", 
-              total/timeval_elapsed(&tv), open_retries);
        minops = state[0].count;
        for (i=0;i<nprocs;i++) {
-               printf("[%d] %u ops\n", i, state[i].count);
+               total += state[i].count;
+               total_retries += state[i].open_retries;
+               printf("[%d] %u ops (%u retries)\n",
+                      i, state[i].count, state[i].open_retries);
                if (state[i].count < minops) minops = state[i].count;
        }
+       printf("%.2f ops/second (%d retries)\n",
+              total/timeval_elapsed(&tv), total_retries);
        if (minops < 0.5*total/nprocs) {
                printf("Failed: unbalanced open\n");
                goto failed;