dsdb-tests: Add new test samba4.user_account_control.python
[Samba.git] / source3 / torture / test_messaging_fd_passing.c
blob7bee41b5986719a81981088d657730ab38871616
1 /*
2 Unix SMB/CIFS implementation.
3 Test for fd passing with messaging
5 Copyright (C) Michael Adam 2014
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "torture/proto.h"
23 #include "lib/util/tevent_unix.h"
24 #include "messages.h"
26 /**
27 * test fdpass1:
29 * Try to pass an fd to the sending process - fails.
31 bool run_messaging_fdpass1(int dummy)
33 struct tevent_context *ev = NULL;
34 struct messaging_context *msg_ctx = NULL;
35 bool retval = false;
36 int pipe_fds[2];
37 int pass_fds[1] = { 0 };
38 int ret;
39 NTSTATUS status;
40 struct server_id dst;
41 TALLOC_CTX *frame = talloc_stackframe();
43 ev = samba_tevent_context_init(frame);
44 if (ev == NULL) {
45 fprintf(stderr, "tevent_context_init failed\n");
46 goto fail;
48 msg_ctx = messaging_init(ev, ev);
49 if (msg_ctx == NULL) {
50 fprintf(stderr, "messaging_init failed\n");
51 goto fail;
54 dst = messaging_server_id(msg_ctx);
56 ret = pipe(pipe_fds);
57 if (ret != 0) {
58 perror("pipe failed");
59 goto fail;
62 pass_fds[0] = pipe_fds[0];
64 status = messaging_send_iov(msg_ctx, dst, MSG_PING, NULL, 0,
65 pass_fds, 1);
66 if (!NT_STATUS_EQUAL(status, NT_STATUS_OK)) {
67 fprintf(stderr,
68 "messaging_send_iov gave: %s\n", nt_errstr(status));
69 goto fail;
72 retval = true;
74 fail:
75 TALLOC_FREE(frame);
76 return retval;
79 /**
80 * test fdpass2:
82 * - parent: create a child
83 * - parent: create a two pipes in the parent: up and down
84 * - parent: pass the up pipe's reading end and the down pipe's writing
85 * end to the child and close them
86 * - parent: write a number into the up pipe's writing end
87 * - child: read number from the passed reading fd (up)
88 * - child: write the read number to the passed writing fd (down)
89 * - parent: read number from the down pipe's reading end and compare with
90 * original number
93 #define MSG_TORTURE_FDPASS2 0xF002
95 static bool fdpass2_filter(struct messaging_rec *rec, void *private_data)
97 if (rec->msg_type != MSG_TORTURE_FDPASS2) {
98 return false;
101 if (rec->num_fds != 2) {
102 return false;
105 return true;
108 static bool fdpass2_child(int ready_fd)
110 struct tevent_context *ev = NULL;
111 struct messaging_context *msg_ctx = NULL;
112 TALLOC_CTX *frame = talloc_stackframe();
113 bool retval = false;
114 uint8_t c = 1;
115 struct tevent_req *subreq;
116 int ret;
117 ssize_t bytes;
118 int up_fd, down_fd;
119 struct messaging_rec *rec;
120 bool ok;
122 ev = samba_tevent_context_init(frame);
123 if (ev == NULL) {
124 fprintf(stderr, "child: tevent_context_init failed\n");
125 goto done;
128 msg_ctx = messaging_init(ev, ev);
129 if (msg_ctx == NULL) {
130 fprintf(stderr, "child: messaging_init failed\n");
131 goto done;
134 /* Tell the parent we are ready to receive mesages. */
135 bytes = write(ready_fd, &c, 1);
136 if (bytes != 1) {
137 perror("child: failed to write to ready_fd");
138 goto done;
141 subreq = messaging_filtered_read_send(frame, /* TALLOC_CTX */
142 ev, msg_ctx,
143 fdpass2_filter, NULL);
144 if (subreq == NULL) {
145 fprintf(stderr, "child: messaging_filtered_read_send failed\n");
146 goto done;
149 ok = tevent_req_poll(subreq, ev);
150 if (!ok) {
151 fprintf(stderr, "child: tevent_req_poll failed\n");
152 goto done;
155 ret = messaging_filtered_read_recv(subreq, frame, &rec);
156 TALLOC_FREE(subreq);
157 if (ret != 0) {
158 fprintf(stderr, "child: messaging_filtered_read_recv failed\n");
159 goto done;
162 SMB_ASSERT(rec->num_fds == 2);
164 /* Tell the parent we are done. */
165 bytes = write(ready_fd, &c, 1);
166 if (bytes != 1) {
167 perror("child: failed to write to ready_fd");
168 goto done;
171 up_fd = rec->fds[0];
172 down_fd = rec->fds[1];
174 bytes = read(up_fd, &c, 1);
175 if (bytes != 1) {
176 perror("child: read from up_fd failed");
177 goto done;
180 bytes = write(down_fd, &c, 1);
181 if (bytes != 1) {
182 perror("child: write to down_fd failed");
185 printf("child: done\n");
187 retval = true;
189 done:
190 TALLOC_FREE(frame);
191 return retval;
194 struct child_done_state {
195 int fd;
196 bool done;
199 static void child_done_cb(struct tevent_context *ev,
200 struct tevent_fd *fde,
201 uint16_t flags,
202 void *private_data)
204 struct child_done_state *state =
205 (struct child_done_state *)private_data;
206 char c = 0;
207 ssize_t bytes;
209 bytes = read(state->fd, &c, 1);
210 if (bytes != 1) {
211 perror("parent: read from ready_fd failed");
214 state->done = true;
217 static bool fdpass2_parent(pid_t child_pid, int ready_fd)
219 struct tevent_context *ev = NULL;
220 struct messaging_context *msg_ctx = NULL;
221 bool retval = false;
222 int up_pipe[2];
223 int down_pipe[2];
224 int pass_fds[2] = { 0 };
225 int ret;
226 NTSTATUS status;
227 struct server_id dst;
228 TALLOC_CTX *frame = talloc_stackframe();
229 uint8_t c1 = 1, c2, c;
230 ssize_t bytes;
231 struct iovec iov;
232 DATA_BLOB blob;
233 struct tevent_fd *child_done_fde;
234 struct child_done_state child_state;
236 ev = samba_tevent_context_init(frame);
237 if (ev == NULL) {
238 fprintf(stderr, "parent: tevent_context_init failed\n");
239 goto done;
242 msg_ctx = messaging_init(ev, ev);
243 if (msg_ctx == NULL) {
244 fprintf(stderr, "parent: messaging_init failed\n");
245 goto done;
248 /* wait util the child is ready to receive messages */
249 bytes = read(ready_fd, &c, 1);
250 if (bytes != 1) {
251 perror("parent: read from ready_fd failed");
252 goto done;
255 ret = pipe(up_pipe);
256 if (ret != 0) {
257 perror("parent: pipe failed for up_pipe");
258 goto done;
261 ret = pipe(down_pipe);
262 if (ret != 0) {
263 perror("parent: pipe failed for down_pipe");
264 goto done;
267 child_state.fd = ready_fd;
268 child_state.done = false;
270 child_done_fde = tevent_add_fd(ev, ev, ready_fd, TEVENT_FD_READ,
271 child_done_cb, &child_state);
272 if (child_done_fde == NULL) {
273 fprintf(stderr,
274 "parent: failed tevent_add_fd for child done\n");
275 goto done;
278 pass_fds[0] = up_pipe[0];
279 pass_fds[1] = down_pipe[1];
281 dst = messaging_server_id(msg_ctx);
282 dst.pid = child_pid;
285 * Send a certain payload with the fds, to test to test
286 * that fd-passing works when we have fragmentation and
287 * re-assembly of the datagrams.
289 blob = data_blob_talloc_zero(frame, 1000*1000);
290 iov.iov_base = blob.data;
291 iov.iov_len = blob.length;
293 status = messaging_send_iov(msg_ctx, dst, MSG_TORTURE_FDPASS2, &iov, 1,
294 pass_fds, 2);
295 if (!NT_STATUS_IS_OK(status)) {
296 fprintf(stderr, "parent: messaging_send_iov failed: %s\n",
297 nt_errstr(status));
298 goto done;
301 printf("parent: waiting for child to confirm\n");
303 while (!child_state.done) {
304 ret = tevent_loop_once(ev);
305 if (ret != 0) {
306 fprintf(stderr, "parent: tevent_loop_once failed\n");
307 goto done;
311 printf("parent: child confirmed\n");
313 close(up_pipe[0]);
314 close(down_pipe[1]);
316 bytes = write(up_pipe[1], &c1, 1);
317 if (bytes != 1) {
318 perror("parent: write to up pipe failed");
319 goto done;
322 bytes = read(down_pipe[0], &c2, 1);
323 if (bytes != 1) {
324 perror("parent: read from down pipe failed");
325 goto done;
328 if (c1 != c2) {
329 fprintf(stderr, "parent: c1[%d] != c2[%d]\n", c1, c2);
330 goto done;
333 ret = waitpid(child_pid, NULL, 0);
334 if (ret == -1) {
335 perror("parent: waitpid failed");
336 goto done;
339 retval = true;
341 done:
342 TALLOC_FREE(frame);
343 return retval;
346 bool run_messaging_fdpass2(int dummy)
348 bool retval = false;
349 pid_t child_pid;
350 int ready_pipe[2];
351 int ret;
353 ret = pipe(ready_pipe);
354 if (ret != 0) {
355 perror("parent: pipe failed for ready_pipe");
356 return retval;
359 child_pid = fork();
360 if (child_pid == -1) {
361 perror("fork failed");
362 } else if (child_pid == 0) {
363 close(ready_pipe[0]);
364 retval = fdpass2_child(ready_pipe[1]);
365 } else {
366 close(ready_pipe[1]);
367 retval = fdpass2_parent(child_pid, ready_pipe[0]);
370 return retval;