r14720: Add torture_context argument to all torture tests
[samba.git] / source4 / torture / rpc / bench.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    simple RPC benchmark
5
6    Copyright (C) Andrew Tridgell 2005
7    
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 2 of the License, or
11    (at your option) any later version.
12    
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.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "torture/torture.h"
25 #include "librpc/gen_ndr/ndr_srvsvc_c.h"
26 #include "torture/rpc/rpc.h"
27
28 /**************************/
29 /* srvsvc_NetShare        */
30 /**************************/
31 static BOOL test_NetShareEnumAll(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
32 {
33         NTSTATUS status;
34         struct srvsvc_NetShareEnumAll r;
35         struct srvsvc_NetShareCtr0 c0;
36         uint32_t levels[] = {0, 1, 2, 501, 502};
37         int i;
38         BOOL ret = True;
39         uint32_t resume_handle;
40
41         ZERO_STRUCT(c0);
42
43         r.in.server_unc = talloc_asprintf(mem_ctx,"\\\\%s",dcerpc_server_name(p));
44         r.in.ctr.ctr0 = &c0;
45         r.in.max_buffer = (uint32_t)-1;
46         r.in.resume_handle = &resume_handle;
47         r.out.resume_handle = &resume_handle;
48
49         for (i=0;i<ARRAY_SIZE(levels);i++) {
50                 ZERO_STRUCT(r.out);
51                 resume_handle = 0;
52                 r.in.level = levels[i];
53                 status = dcerpc_srvsvc_NetShareEnumAll(p, mem_ctx, &r);
54                 if (!NT_STATUS_IS_OK(status)) {
55                         printf("NetShareEnumAll level %u failed - %s\n", r.in.level, nt_errstr(status));
56                         ret = False;
57                         continue;
58                 }
59                 if (!W_ERROR_IS_OK(r.out.result)) {
60                         printf("NetShareEnumAll level %u failed - %s\n", r.in.level, win_errstr(r.out.result));
61                         continue;
62                 }
63         }
64
65         return ret;
66 }
67
68 /*
69   benchmark srvsvc netshareenumall queries
70 */
71 static BOOL bench_NetShareEnumAll(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
72 {
73         struct timeval tv = timeval_current();
74         BOOL ret = True;
75         int timelimit = lp_parm_int(-1, "torture", "timelimit", 10);
76         int count=0;
77
78         printf("Running for %d seconds\n", timelimit);
79         while (timeval_elapsed(&tv) < timelimit) {
80                 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
81                 if (!test_NetShareEnumAll(p, tmp_ctx)) break;
82                 talloc_free(tmp_ctx);
83                 count++;
84                 if (count % 50 == 0) {
85                         printf("%.1f queries per second  \r", 
86                                count / timeval_elapsed(&tv));
87                 }
88         }
89
90         printf("%.1f queries per second  \n", count / timeval_elapsed(&tv));
91
92         return ret;
93 }
94
95
96 BOOL torture_bench_rpc(struct torture_context *torture)
97 {
98         NTSTATUS status;
99         struct dcerpc_pipe *p;
100         TALLOC_CTX *mem_ctx;
101         BOOL ret = True;
102
103         mem_ctx = talloc_init("torture_rpc_srvsvc");
104
105         status = torture_rpc_connection(mem_ctx, 
106                                         &p,
107                                         &dcerpc_table_srvsvc);
108         if (!NT_STATUS_IS_OK(status)) {
109                 talloc_free(mem_ctx);
110                 return False;
111         }
112
113         if (!bench_NetShareEnumAll(p, mem_ctx)) {
114                 ret = False;
115         }
116
117         talloc_free(mem_ctx);
118
119         return ret;
120 }