r5394: as the timing should be fixed in the server now, don't accept to early replies
[Samba/gebeck_regimport.git] / source4 / torture / rpc / echo.c
blobd01bda1f6871d0b6166f142b8b80f0564ac9ea57
1 /*
2 Unix SMB/CIFS implementation.
3 test suite for echo rpc operations
5 Copyright (C) Andrew Tridgell 2003
6 Copyright (C) Stefan (metze) Metzmacher 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 2 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, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
24 #include "lib/events/events.h"
25 #include "librpc/gen_ndr/ndr_echo.h"
29 test the AddOne interface
31 static BOOL test_addone(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
33 int i;
34 NTSTATUS status;
36 printf("\nTesting AddOne\n");
38 for (i=0;i<10;i++) {
39 uint32_t n = i;
40 struct echo_AddOne r;
41 r.in.v = &n;
42 r.out.v = &n;
43 status = dcerpc_echo_AddOne(p, mem_ctx, &r);
44 if (!NT_STATUS_IS_OK(status)) {
45 printf("AddOne(%d) failed - %s\n", i, nt_errstr(status));
46 return False;
48 printf("%d + 1 = %u\n", i, n);
51 return True;
55 test the EchoData interface
57 static BOOL test_echodata(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
59 int i;
60 NTSTATUS status;
61 uint8_t *data_in, *data_out;
62 int len = 1 + (random() % 5000);
63 struct echo_EchoData r;
65 printf("\nTesting EchoData\n");
67 data_in = talloc_size(mem_ctx, len);
68 data_out = talloc_size(mem_ctx, len);
69 for (i=0;i<len;i++) {
70 data_in[i] = i;
73 r.in.len = len;
74 r.in.in_data = data_in;
76 status = dcerpc_echo_EchoData(p, mem_ctx, &r);
77 if (!NT_STATUS_IS_OK(status)) {
78 printf("EchoData(%d) failed - %s\n", len, nt_errstr(status));
79 return False;
82 data_out = r.out.out_data;
84 for (i=0;i<len;i++) {
85 if (data_in[i] != data_out[i]) {
86 printf("Bad data returned for len %d at offset %d\n",
87 len, i);
88 printf("in:\n");
89 dump_data(0, data_in+i, MIN(len-i, 16));
90 printf("out:\n");
91 dump_data(0, data_out+i, MIN(len-1, 16));
92 return False;
97 return True;
102 test the SourceData interface
104 static BOOL test_sourcedata(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
106 int i;
107 NTSTATUS status;
108 int len = 200000 + (random() % 5000);
109 uint8_t *data_out;
110 struct echo_SourceData r;
112 printf("\nTesting SourceData\n");
114 data_out = talloc_size(mem_ctx, len);
116 r.in.len = len;
117 r.out.data = data_out;
119 status = dcerpc_echo_SourceData(p, mem_ctx, &r);
120 if (!NT_STATUS_IS_OK(status)) {
121 printf("SourceData(%d) failed - %s\n", len, nt_errstr(status));
122 return False;
125 for (i=0;i<len;i++) {
126 uint8_t *v = (uint8_t *)data_out;
127 if (v[i] != (i & 0xFF)) {
128 printf("bad data 0x%x at %d\n", (uint8_t)data_out[i], i);
129 return False;
133 return True;
137 test the SinkData interface
139 static BOOL test_sinkdata(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
141 int i;
142 NTSTATUS status;
143 uint8_t *data_in;
144 int len = 200000 + (random() % 5000);
145 struct echo_SinkData r;
147 printf("\nTesting SinkData\n");
149 data_in = talloc_size(mem_ctx, len);
150 for (i=0;i<len;i++) {
151 data_in[i] = i+1;
154 r.in.len = len;
155 r.in.data = data_in;
157 status = dcerpc_echo_SinkData(p, mem_ctx, &r);
158 if (!NT_STATUS_IS_OK(status)) {
159 printf("SinkData(%d) failed - %s\n", len, nt_errstr(status));
160 return False;
163 printf("sunk %d bytes\n", len);
165 return True;
170 test the testcall interface
172 static BOOL test_testcall(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
174 NTSTATUS status;
175 struct echo_TestCall r;
177 r.in.s1 = "input string";
179 printf("\nTesting TestCall\n");
180 status = dcerpc_echo_TestCall(p, mem_ctx, &r);
181 if (!NT_STATUS_IS_OK(status)) {
182 printf("TestCall failed - %s\n", nt_errstr(status));
183 return False;
186 return True;
190 test the testcall interface
192 static BOOL test_testcall2(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
194 NTSTATUS status;
195 struct echo_TestCall2 r;
196 int i;
197 BOOL ret = True;
199 for (i=1;i<=7;i++) {
200 r.in.level = i;
202 printf("\nTesting TestCall2 level %d\n", i);
203 status = dcerpc_echo_TestCall2(p, mem_ctx, &r);
204 if (!NT_STATUS_IS_OK(status)) {
205 printf("TestCall2 failed - %s\n", nt_errstr(status));
206 ret = False;
210 return ret;
214 test the TestSleep interface
216 static BOOL test_sleep(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
218 int i;
219 NTSTATUS status;
220 #define ASYNC_COUNT 3
221 struct rpc_request *req[ASYNC_COUNT];
222 struct echo_TestSleep r[ASYNC_COUNT];
223 BOOL done[ASYNC_COUNT];
224 struct timeval snd[ASYNC_COUNT];
225 struct timeval rcv[ASYNC_COUNT];
226 struct timeval diff[ASYNC_COUNT];
227 struct event_context *ctx;
228 int total_done = 0;
229 BOOL ret = True;
231 printf("\nTesting TestSleep\n");
233 for (i=0;i<ASYNC_COUNT;i++) {
234 done[i] = False;
235 snd[i] = timeval_current();
236 rcv[i] = timeval_zero();
237 r[i].in.seconds = ASYNC_COUNT-i;
238 req[i] = dcerpc_echo_TestSleep_send(p, mem_ctx, &r[i]);
239 if (!req[i]) {
240 printf("Failed to send async sleep request\n");
241 return False;
245 ctx = dcerpc_event_context(p);
246 while (total_done < ASYNC_COUNT) {
247 if (event_loop_once(ctx) != 0) {
248 return False;
250 for (i=0;i<ASYNC_COUNT;i++) {
251 if (done[i] == False && req[i]->state == RPC_REQUEST_DONE) {
252 total_done++;
253 done[i] = True;
254 rcv[i] = timeval_current();
255 diff[i] = timeval_diff(&rcv[i], &snd[i]);
256 status = dcerpc_ndr_request_recv(req[i]);
257 if (!NT_STATUS_IS_OK(status)) {
258 printf("TestSleep(%d) failed - %s\n",
259 i, nt_errstr(status));
260 ret = False;
261 } else if (r[i].out.result != r[i].in.seconds) {
262 printf("Failed - Sleeped for %u seconds (but we said %u seconds and the reply takes only %u seconds)\n",
263 r[i].out.result, r[i].in.seconds, (uint_t)diff[i].tv_sec);
264 ret = False;
265 } else {
266 if (r[i].out.result > diff[i].tv_sec) {
267 printf("Failed - Sleeped for %u seconds (but reply takes only %u.%06u seconds)\n",
268 r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
269 } else if (r[i].out.result+1 == diff[i].tv_sec) {
270 printf("Sleeped for %u seconds (but reply takes %u.%06u seconds - busy server?)\n",
271 r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
272 } else if (r[i].out.result == diff[i].tv_sec) {
273 printf("Sleeped for %u seconds (reply takes %u.%06u seconds - ok)\n",
274 r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
275 } else {
276 printf("(Failed) - Not async - Sleeped for %u seconds (but reply takes %u.%06u seconds)\n",
277 r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
278 /* TODO: let the test fail here, when we support async rpc on ncacn_np
279 ret = False;*/
286 return ret;
290 test enum handling
292 static BOOL test_enum(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
294 NTSTATUS status;
295 struct echo_TestEnum r;
296 BOOL ret = True;
297 enum echo_Enum1 v = ECHO_ENUM1;
298 struct echo_Enum2 e2;
299 union echo_Enum3 e3;
301 r.in.foo1 = &v;
302 r.in.foo2 = &e2;
303 r.in.foo3 = &e3;
304 r.out.foo1 = &v;
305 r.out.foo2 = &e2;
306 r.out.foo3 = &e3;
308 e2.e1 = 76;
309 e2.e2 = ECHO_ENUM1_32;
310 e3.e1 = ECHO_ENUM2;
312 printf("\nTesting TestEnum\n");
313 status = dcerpc_echo_TestEnum(p, mem_ctx, &r);
314 if (!NT_STATUS_IS_OK(status)) {
315 printf("TestEnum failed - %s\n", nt_errstr(status));
316 ret = False;
319 return ret;
322 BOOL torture_rpc_echo(void)
324 NTSTATUS status;
325 struct dcerpc_pipe *p;
326 TALLOC_CTX *mem_ctx;
327 BOOL ret = True;
329 mem_ctx = talloc_init("torture_rpc_echo");
331 status = torture_rpc_connection(&p,
332 DCERPC_RPCECHO_NAME,
333 DCERPC_RPCECHO_UUID,
334 DCERPC_RPCECHO_VERSION);
335 if (!NT_STATUS_IS_OK(status)) {
336 return False;
339 ret &= test_addone(p, mem_ctx);
340 ret &= test_sinkdata(p, mem_ctx);
341 ret &= test_echodata(p, mem_ctx);
342 ret &= test_sourcedata(p, mem_ctx);
343 ret &= test_testcall(p, mem_ctx);
344 ret &= test_testcall2(p, mem_ctx);
345 ret &= test_enum(p, mem_ctx);
346 ret &= test_sleep(p, mem_ctx);
348 printf("\n");
350 talloc_free(mem_ctx);
352 torture_rpc_close(p);
353 return ret;