chiark / gitweb /
timedated: use libsystemd-bus instead of libdbus for bus communication
[elogind.git] / src / libsystemd-bus / test-bus-kernel.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2013 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <fcntl.h>
23
24 #include "util.h"
25 #include "log.h"
26
27 #include "sd-bus.h"
28 #include "bus-message.h"
29 #include "bus-error.h"
30 #include "bus-kernel.h"
31 #include "bus-util.h"
32
33 int main(int argc, char *argv[]) {
34         _cleanup_close_ int bus_ref = -1;
35         _cleanup_free_ char *bus_name = NULL, *address = NULL;
36         _cleanup_bus_message_unref_ sd_bus_message *m = NULL;
37         const char *ua = NULL, *ub = NULL, *the_string = NULL;
38         sd_bus *a, *b;
39         int r, pipe_fds[2];
40
41         log_set_max_level(LOG_DEBUG);
42
43         bus_ref = bus_kernel_create("deine-mutter", &bus_name);
44         if (bus_ref == -ENOENT)
45                 return EXIT_TEST_SKIP;
46
47         assert_se(bus_ref >= 0);
48
49         address = strappend("kernel:path=", bus_name);
50         assert_se(address);
51
52         r = sd_bus_new(&a);
53         assert_se(r >= 0);
54
55         r = sd_bus_new(&b);
56         assert_se(r >= 0);
57
58         r = sd_bus_set_address(a, address);
59         assert_se(r >= 0);
60
61         r = sd_bus_set_address(b, address);
62         assert_se(r >= 0);
63
64         assert_se(sd_bus_negotiate_attach_comm(a, 1) >= 0);
65         assert_se(sd_bus_negotiate_attach_exe(a, 1) >= 0);
66         assert_se(sd_bus_negotiate_attach_cmdline(a, 1) >= 0);
67         assert_se(sd_bus_negotiate_attach_cgroup(a, 1) >= 0);
68         assert_se(sd_bus_negotiate_attach_caps(a, 1) >= 0);
69         assert_se(sd_bus_negotiate_attach_selinux_context(a, 1) >= 0);
70         assert_se(sd_bus_negotiate_attach_audit(a, 1) >= 0);
71
72         assert_se(sd_bus_negotiate_attach_comm(b, 1) >= 0);
73         assert_se(sd_bus_negotiate_attach_exe(b, 1) >= 0);
74         assert_se(sd_bus_negotiate_attach_cmdline(b, 1) >= 0);
75         assert_se(sd_bus_negotiate_attach_cgroup(b, 1) >= 0);
76         assert_se(sd_bus_negotiate_attach_caps(b, 1) >= 0);
77         assert_se(sd_bus_negotiate_attach_selinux_context(b, 1) >= 0);
78         assert_se(sd_bus_negotiate_attach_audit(b, 1) >= 0);
79
80         r = sd_bus_start(a);
81         assert_se(r >= 0);
82
83         r = sd_bus_start(b);
84         assert_se(r >= 0);
85
86         r = sd_bus_get_unique_name(a, &ua);
87         assert_se(r >= 0);
88
89         printf("unique a: %s\n", ua);
90
91         r = sd_bus_get_unique_name(b, &ub);
92         assert_se(r >= 0);
93
94         printf("unique b: %s\n", ub);
95
96         r = sd_bus_add_match(b, "interface='waldo.com',member='Piep'", NULL, NULL);
97         assert_se(r >= 0);
98
99         r = sd_bus_emit_signal(a, "/foo/bar/waldo", "waldo.com", "Piep", "sss", "I am a string", "/this/is/a/path", "and.this.a.domain.name");
100         assert_se(r >= 0);
101
102         r = sd_bus_process(b, &m);
103         assert_se(r > 0);
104         assert_se(m);
105
106         bus_message_dump(m);
107         assert_se(sd_bus_message_rewind(m, true) >= 0);
108
109         r = sd_bus_message_read(m, "s", &the_string);
110         assert_se(r >= 0);
111         assert_se(streq(the_string, "I am a string"));
112
113         sd_bus_message_unref(m);
114         m = NULL;
115
116         r = sd_bus_request_name(a, "net.x0pointer.foobar", 0);
117         assert_se(r >= 0);
118
119         r = sd_bus_message_new_method_call(b, "net.x0pointer.foobar", "/a/path", "an.inter.face", "AMethod", &m);
120         assert_se(r >= 0);
121
122         assert_se(pipe2(pipe_fds, O_CLOEXEC) >= 0);
123
124         assert_se(write(pipe_fds[1], "x", 1) == 1);
125
126         close_nointr_nofail(pipe_fds[1]);
127         pipe_fds[1] = -1;
128
129         r = sd_bus_message_append(m, "h", pipe_fds[0]);
130         assert_se(r >= 0);
131
132         close_nointr_nofail(pipe_fds[0]);
133         pipe_fds[0] = -1;
134
135         r = sd_bus_send(b, m, NULL);
136         assert_se(r >= 0);
137
138         for (;;) {
139                 sd_bus_message_unref(m);
140                 m = NULL;
141                 r = sd_bus_process(a, &m);
142                 assert_se(r > 0);
143                 assert_se(m);
144
145                 bus_message_dump(m);
146                 assert_se(sd_bus_message_rewind(m, true) >= 0);
147
148                 if (sd_bus_message_is_method_call(m, "an.inter.face", "AMethod")) {
149                         int fd;
150                         char x;
151
152                         r = sd_bus_message_read(m, "h", &fd);
153                         assert_se(r >= 0);
154
155                         assert_se(read(fd, &x, 1) == 1);
156                         assert_se(x == 'x');
157                         break;
158                 }
159         }
160
161         r = sd_bus_release_name(a, "net.x0pointer.foobar");
162         assert_se(r >= 0);
163
164         r = sd_bus_release_name(a, "net.x0pointer.foobar");
165         assert_se(r == -ESRCH);
166
167         sd_bus_unref(a);
168         sd_bus_unref(b);
169
170         return 0;
171 }