2 Unix SMB/CIFS implementation.
3 Run the async echo responder
4 Copyright (C) Volker Lendecke 2010
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "torture/proto.h"
22 #include "libsmb/libsmb.h"
23 #include "rpc_client/cli_pipe.h"
24 #include "librpc/gen_ndr/ndr_echo_c.h"
26 static void rpccli_sleep_done(struct tevent_req
*req
)
28 int *done
= (int *)tevent_req_callback_data_void(req
);
30 uint32_t result
= UINT32_MAX
;
32 status
= dcerpc_echo_TestSleep_recv(req
, talloc_tos(), &result
);
34 printf("sleep returned %s, %d\n", nt_errstr(status
), (int)result
);
38 static void cli_echo_done(struct tevent_req
*req
)
40 int *done
= (int *)tevent_req_callback_data_void(req
);
43 status
= cli_echo_recv(req
);
45 printf("echo returned %s\n", nt_errstr(status
));
49 static void write_andx_done(struct tevent_req
*req
)
51 int *done
= (int *)tevent_req_callback_data_void(req
);
55 status
= cli_write_andx_recv(req
, &written
);
57 printf("cli_write_andx returned %s\n", nt_errstr(status
));
61 bool run_async_echo(int dummy
)
63 struct cli_state
*cli
= NULL
;
64 struct rpc_pipe_client
*p
;
65 struct dcerpc_binding_handle
*b
;
66 struct tevent_context
*ev
;
67 struct tevent_req
*req
;
73 printf("Starting ASYNC_ECHO\n");
75 ev
= tevent_context_init(talloc_tos());
77 printf("tevent_context_init failed\n");
81 if (!torture_open_connection(&cli
, 0)) {
82 printf("torture_open_connection failed\n");
85 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_rpcecho
.syntax_id
,
87 if (!NT_STATUS_IS_OK(status
)) {
88 printf("Could not open echo pipe: %s\n", nt_errstr(status
));
91 b
= p
->binding_handle
;
95 req
= dcerpc_echo_TestSleep_send(ev
, ev
, b
, 15);
97 printf("rpccli_echo_TestSleep_send failed\n");
100 tevent_req_set_callback(req
, rpccli_sleep_done
, &num_reqs
);
103 req
= cli_echo_send(ev
, ev
, cli
, 1, data_blob_const("hello", 5));
105 printf("cli_echo_send failed\n");
108 tevent_req_set_callback(req
, cli_echo_done
, &num_reqs
);
111 memset(buf
, 0, sizeof(buf
));
113 for (i
=0; i
<10; i
++) {
114 req
= cli_write_andx_send(ev
, ev
, cli
, 4711, 0, buf
, 0,
117 printf("cli_write_andx_send failed\n");
120 tevent_req_set_callback(req
, write_andx_done
, &num_reqs
);
123 req
= cli_echo_send(ev
, ev
, cli
, 1,
124 data_blob_const("hello", 5));
126 printf("cli_echo_send failed\n");
129 tevent_req_set_callback(req
, cli_echo_done
, &num_reqs
);
133 while (num_reqs
> 0) {
134 if (tevent_loop_once(ev
) != 0) {
135 printf("tevent_loop_once failed\n");
145 torture_close_connection(cli
);