s3-libsmb: move protos to libsmb/proto.h
[nivanova/samba-autobuild/.git] / source3 / torture / test_async_echo.c
1 /*
2    Unix SMB/CIFS implementation.
3    Run the async echo responder
4    Copyright (C) Volker Lendecke 2010
5
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.
10
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.
15
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/>.
18 */
19
20 #include "includes.h"
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"
25
26 static void rpccli_sleep_done(struct tevent_req *req)
27 {
28         int *done = (int *)tevent_req_callback_data_void(req);
29         NTSTATUS status;
30         uint32_t result = UINT32_MAX;
31
32         status = dcerpc_echo_TestSleep_recv(req, talloc_tos(), &result);
33         TALLOC_FREE(req);
34         printf("sleep returned %s, %d\n", nt_errstr(status), (int)result);
35         *done -= 1;
36 }
37
38 static void cli_echo_done(struct tevent_req *req)
39 {
40         int *done = (int *)tevent_req_callback_data_void(req);
41         NTSTATUS status;
42
43         status = cli_echo_recv(req);
44         TALLOC_FREE(req);
45         printf("echo returned %s\n", nt_errstr(status));
46         *done -= 1;
47 }
48
49 static void cli_close_done(struct tevent_req *req)
50 {
51         int *done = (int *)tevent_req_callback_data_void(req);
52         NTSTATUS status;
53         size_t written;
54
55         status = cli_write_andx_recv(req, &written);
56         TALLOC_FREE(req);
57         printf("close returned %s\n", nt_errstr(status));
58         *done -= 1;
59 }
60
61 bool run_async_echo(int dummy)
62 {
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;
68         NTSTATUS status;
69         bool ret = false;
70         int i, num_reqs;
71         uint8_t buf[32768];
72
73         printf("Starting ASYNC_ECHO\n");
74
75         ev = tevent_context_init(talloc_tos());
76         if (ev == NULL) {
77                 printf("tevent_context_init failed\n");
78                 goto fail;
79         }
80
81         if (!torture_open_connection(&cli, 0)) {
82                 printf("torture_open_connection failed\n");
83                 goto fail;
84         }
85         status = cli_rpc_pipe_open_noauth(cli, &ndr_table_rpcecho.syntax_id,
86                                           &p);
87         if (!NT_STATUS_IS_OK(status)) {
88                 printf("Could not open echo pipe: %s\n", nt_errstr(status));
89                 goto fail;
90         }
91         b = p->binding_handle;
92
93         num_reqs = 0;
94
95         req = dcerpc_echo_TestSleep_send(ev, ev, b, 15);
96         if (req == NULL) {
97                 printf("rpccli_echo_TestSleep_send failed\n");
98                 goto fail;
99         }
100         tevent_req_set_callback(req, rpccli_sleep_done, &num_reqs);
101         num_reqs += 1;
102
103         req = cli_echo_send(ev, ev, cli, 1, data_blob_const("hello", 5));
104         if (req == NULL) {
105                 printf("cli_echo_send failed\n");
106                 goto fail;
107         }
108         tevent_req_set_callback(req, cli_echo_done, &num_reqs);
109         num_reqs += 1;
110
111         memset(buf, 0, sizeof(buf));
112
113         for (i=0; i<10; i++) {
114                 req = cli_write_andx_send(ev, ev, cli, 4711, 0, buf, 0, sizeof(buf));
115                 if (req == NULL) {
116                         printf("cli_close_send failed\n");
117                         goto fail;
118                 }
119                 tevent_req_set_callback(req, cli_close_done, &num_reqs);
120                 num_reqs += 1;
121
122                 req = cli_echo_send(ev, ev, cli, 1, data_blob_const("hello", 5));
123                 if (req == NULL) {
124                         printf("cli_echo_send failed\n");
125                         goto fail;
126                 }
127                 tevent_req_set_callback(req, cli_echo_done, &num_reqs);
128                 num_reqs += 1;
129         }
130
131         while (num_reqs > 0) {
132                 if (tevent_loop_once(ev) != 0) {
133                         printf("tevent_loop_once failed\n");
134                         goto fail;
135                 }
136         }
137
138         TALLOC_FREE(p);
139
140         ret = true;
141 fail:
142         if (cli != NULL) {
143                 torture_close_connection(cli);
144         }
145         return ret;
146 }