2 Unix SMB/CIFS implementation.
6 Copyright (C) Andrew Tridgell 2005
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 "librpc/gen_ndr/ndr_srvsvc_c.h"
25 #include "torture/rpc/rpc.h"
27 /**************************/
29 /**************************/
30 static bool test_NetShareEnumAll(struct dcerpc_pipe
*p
, TALLOC_CTX
*mem_ctx
)
33 struct srvsvc_NetShareEnumAll r
;
34 struct srvsvc_NetShareInfoCtr info_ctr
;
35 struct srvsvc_NetShareCtr0 c0
;
36 struct srvsvc_NetShareCtr1 c1
;
37 struct srvsvc_NetShareCtr2 c2
;
38 struct srvsvc_NetShareCtr501 c501
;
39 struct srvsvc_NetShareCtr502 c502
;
40 uint32_t totalentries
= 0;
41 uint32_t levels
[] = {0, 1, 2, 501, 502};
44 uint32_t resume_handle
;
46 ZERO_STRUCT(info_ctr
);
48 r
.in
.server_unc
= talloc_asprintf(mem_ctx
,"\\\\%s",dcerpc_server_name(p
));
49 r
.in
.info_ctr
= &info_ctr
;
50 r
.in
.max_buffer
= (uint32_t)-1;
51 r
.in
.resume_handle
= &resume_handle
;
52 r
.out
.resume_handle
= &resume_handle
;
53 r
.out
.totalentries
= &totalentries
;
54 r
.out
.info_ctr
= &info_ctr
;
56 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
58 info_ctr
.level
= levels
[i
];
60 switch (info_ctr
.level
) {
63 info_ctr
.ctr
.ctr0
= &c0
;
67 info_ctr
.ctr
.ctr1
= &c1
;
71 info_ctr
.ctr
.ctr2
= &c2
;
75 info_ctr
.ctr
.ctr501
= &c501
;
79 info_ctr
.ctr
.ctr502
= &c502
;
83 status
= dcerpc_srvsvc_NetShareEnumAll(p
, mem_ctx
, &r
);
84 if (!NT_STATUS_IS_OK(status
)) {
85 printf("NetShareEnumAll level %u failed - %s\n", info_ctr
.level
, nt_errstr(status
));
89 if (!W_ERROR_IS_OK(r
.out
.result
)) {
90 printf("NetShareEnumAll level %u failed - %s\n", info_ctr
.level
, win_errstr(r
.out
.result
));
99 benchmark srvsvc netshareenumall queries
101 static bool bench_NetShareEnumAll(struct torture_context
*tctx
, struct dcerpc_pipe
*p
, TALLOC_CTX
*mem_ctx
)
103 struct timeval tv
= timeval_current();
105 int timelimit
= torture_setting_int(tctx
, "timelimit", 10);
108 printf("Running for %d seconds\n", timelimit
);
109 while (timeval_elapsed(&tv
) < timelimit
) {
110 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
111 if (!test_NetShareEnumAll(p
, tmp_ctx
)) break;
112 talloc_free(tmp_ctx
);
114 if (count
% 50 == 0) {
115 if (torture_setting_bool(tctx
, "progress", true)) {
116 printf("%.1f queries per second \r",
117 count
/ timeval_elapsed(&tv
));
122 printf("%.1f queries per second \n", count
/ timeval_elapsed(&tv
));
128 bool torture_bench_rpc(struct torture_context
*torture
)
131 struct dcerpc_pipe
*p
;
135 mem_ctx
= talloc_init("torture_rpc_srvsvc");
137 status
= torture_rpc_connection(torture
,
140 if (!NT_STATUS_IS_OK(status
)) {
141 talloc_free(mem_ctx
);
145 if (!bench_NetShareEnumAll(torture
, p
, mem_ctx
)) {
149 talloc_free(mem_ctx
);