Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/*
* lws-minimal-dbus-ws-proxy-testclient
*
* Copyright (C) 2018 Andy Green <andy@warmcat.com>
*
* This file is made available under the Creative Commons CC0 1.0
* Universal Public Domain Dedication.
*
* This acts as a test client over DBUS, opening a session with
* minimal-dbus-ws-proxy and sending and receiving data on the libwebsockets
* mirror demo page.
*/
#include <stdbool.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <libwebsockets.h>
#include <libwebsockets/lws-dbus.h>
/*
* These are the various states our connection can be in, both with regards
* to the direct connection to the proxy, and the state of the onward ws
* connection the proxy opens at our request.
*/
enum lws_dbus_client_state {
LDCS_NOTHING, /* no connection yet */
LDCS_CONN, /* conn to proxy */
LDCS_CONN_WAITING_ONWARD, /* conn to proxy, awaiting proxied conn */
LDCS_CONN_ONWARD, /* conn to proxy and onward conn OK */
LDCS_CONN_CLOSED, /* conn to proxy but onward conn closed */
LDCS_CLOSED, /* connection to proxy is closed */
};
/*
* our expanded dbus context
*/
struct lws_dbus_ctx_wsproxy_client {
struct lws_dbus_ctx ctx;
enum lws_dbus_client_state state;
};
static struct lws_dbus_ctx_wsproxy_client *dbus_ctx;
static struct lws_context *context;
static int interrupted, autoexit_budget = -1, count_rx, count_tx;
#define THIS_INTERFACE "org.libwebsockets.wsclientproxy"
#define THIS_OBJECT "/org/libwebsockets/wsclientproxy"
#define THIS_BUSNAME "org.libwebsockets.wsclientproxy"
#define THIS_LISTEN_PATH "unix:abstract=org.libwebsockets.wsclientproxy"
static void
state_transition(struct lws_dbus_ctx_wsproxy_client *dcwc,
enum lws_dbus_client_state state)
{
lwsl_notice("%s: %p: from state %d -> %d\n", __func__,
dcwc,dcwc->state, state);
dcwc->state = state;
}
static DBusHandlerResult
filter(DBusConnection *conn, DBusMessage *message, void *data)
{
struct lws_dbus_ctx_wsproxy_client *dcwc =
(struct lws_dbus_ctx_wsproxy_client *)data;
const char *str;
if (!dbus_message_get_args(message, NULL,
DBUS_TYPE_STRING, &str,
DBUS_TYPE_INVALID))
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
/* received ws data */
if (dbus_message_is_signal(message, THIS_INTERFACE, "Receive")) {
lwsl_user("%s: Received '%s'\n", __func__, str);
count_rx++;
}
/* proxy ws connection failed */
if (dbus_message_is_signal(message, THIS_INTERFACE, "Status") &&
!strcmp(str, "ws client connection error"))
state_transition(dcwc, LDCS_CONN_CLOSED);
/* proxy ws connection succeeded */
if (dbus_message_is_signal(message, THIS_INTERFACE, "Status") &&
!strcmp(str, "ws client connection established"))
state_transition(dcwc, LDCS_CONN_ONWARD);
/* proxy ws connection has closed */
if (dbus_message_is_signal(message, THIS_INTERFACE, "Status") &&
!strcmp(str, "ws client connection closed"))
state_transition(dcwc, LDCS_CONN_CLOSED);
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}
static void
destroy_dbus_client_conn(struct lws_dbus_ctx_wsproxy_client **pdcwc)
{
struct lws_dbus_ctx_wsproxy_client *dcwc = *pdcwc;
if (!dcwc || !dcwc->ctx.conn)
return;
lwsl_notice("%s\n", __func__);
dbus_connection_remove_filter(dcwc->ctx.conn, filter, &dcwc->ctx);
dbus_connection_close(dcwc->ctx.conn);
dbus_connection_unref(dcwc->ctx.conn);
free(dcwc);
*pdcwc = NULL;
}
/*
* This callback is coming when lws has noticed the fd took a POLLHUP. The
* ctx has effectively gone out of scope before this, and the connection can
* be cleaned up and the ctx freed.
*/
static void
cb_closing(struct lws_dbus_ctx *ctx)
{
struct lws_dbus_ctx_wsproxy_client *dcwc =
(struct lws_dbus_ctx_wsproxy_client *)ctx;
lwsl_err("%s: closing\n", __func__);
if (dcwc == dbus_ctx)
dbus_ctx = NULL;
destroy_dbus_client_conn(&dcwc);
interrupted = 1;
}
static struct lws_dbus_ctx_wsproxy_client *
create_dbus_client_conn(struct lws_vhost *vh, int tsi, const char *ads)
{
struct lws_dbus_ctx_wsproxy_client *dcwc;
DBusError e;
dcwc = malloc(sizeof(*dcwc));
if (!dcwc)
return NULL;
memset(dcwc, 0, sizeof(*dcwc));
dcwc->state = LDCS_NOTHING;
dcwc->ctx.vh = vh;
dcwc->ctx.tsi = tsi;
dbus_error_init(&e);
lwsl_user("%s: connecting to '%s'\n", __func__, ads);
#if 1
/* connect to our daemon bus */
dcwc->ctx.conn = dbus_connection_open_private(ads, &e);
if (!dcwc->ctx.conn) {
lwsl_err("%s: Failed to connect: %s\n",
__func__, e.message);
goto fail;
}
#else
/* connect to the SYSTEM bus */
dcwc->ctx.conn = dbus_bus_get(DBUS_BUS_SYSTEM, &e);
if (!dcwc->ctx.conn) {
lwsl_err("%s: Failed to get a session DBus connection: %s\n",
__func__, e.message);
goto fail;
}
#endif
dbus_connection_set_exit_on_disconnect(dcwc->ctx.conn, 0);
if (!dbus_connection_add_filter(dcwc->ctx.conn, filter,
&dcwc->ctx, NULL)) {
lwsl_err("%s: Failed to add filter\n", __func__);
goto fail;
}
/*
* This is the part that binds the connection to lws watcher and
* timeout handling provided by lws
*/
if (lws_dbus_connection_setup(&dcwc->ctx, dcwc->ctx.conn, cb_closing)) {
lwsl_err("%s: connection bind to lws failed\n", __func__);
goto fail;
}
state_transition(dcwc, LDCS_CONN);
lwsl_notice("%s: created OK\n", __func__);
return dcwc;
fail:
dbus_error_free(&e);
free(dcwc);
return NULL;
}
void sigint_handler(int sig)
{
interrupted = 1;
}
/*
* This gets called if we timed out waiting for the dbus server reply, or the
* reply arrived.
*/
static void
pending_call_notify(DBusPendingCall *pending, void *data)
{
const char *payload;
DBusMessage *msg;
if (!dbus_pending_call_get_completed(pending)) {
lwsl_err("%s: timed out waiting for reply\n", __func__);
goto bail;
}
msg = dbus_pending_call_steal_reply(pending);
if (!msg)
goto bail;
if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &payload,
DBUS_TYPE_INVALID)) {
goto bail1;
}
lwsl_user("%s: received '%s'\n", __func__, payload);
bail1:
dbus_message_unref(msg);
bail:
dbus_pending_call_unref(pending);
}
static int
remote_method_call(struct lws_dbus_ctx_wsproxy_client *dcwc)
{
char _uri[96];
const char *subprotocol = "lws-mirror-protocol", *uri = _uri;
/*
* make our own private mirror session... because others may run this
* at the same time against libwebsockets.org... as happened 2019-03-14
* and broke travis tests :-)
*/
lws_snprintf(_uri, sizeof(_uri), "wss://libwebsockets.org/?mirror=dbt-%d",
(int)getpid());
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
msg = dbus_message_new_method_call(
/* dest */ THIS_BUSNAME,
/* object-path */ THIS_OBJECT,
/* interface */ THIS_INTERFACE,
/* method */ "Connect");
if (!msg)
return 1;
if (!dbus_message_append_args(msg, DBUS_TYPE_STRING, &uri,
DBUS_TYPE_STRING, &subprotocol,
DBUS_TYPE_INVALID))
goto bail;
lwsl_user("%s: requesting proxy connection %s %s\n", __func__,
uri, subprotocol);
if (!dbus_connection_send_with_reply(dcwc->ctx.conn, msg, &dcwc->ctx.pc,
DBUS_TIMEOUT_USE_DEFAULT)) {
lwsl_err("%s: unable to send\n", __func__);
goto bail;
}
dbus_pending_call_set_notify(dcwc->ctx.pc, pending_call_notify,
&dcwc->ctx, NULL);
state_transition(dcwc, LDCS_CONN_WAITING_ONWARD);
ret = 0;
bail:
dbus_message_unref(msg);
return ret;
}
/*
* Stub lws protocol, just so we can get synchronous timers conveniently.
*
* Set up a 1Hz timer and if our connection state is suitable, use that
* to write mirror protocol drawing packets to the proxied ws connection
*/
static int
callback_just_timer(struct lws *wsi, enum lws_callback_reasons reason,
void *user, void *in, size_t len)
{
char payload[64];
const char *ws_pkt = payload;
DBusMessage *msg;
switch (reason) {
case LWS_CALLBACK_PROTOCOL_INIT:
case LWS_CALLBACK_USER:
lwsl_info("%s: LWS_CALLBACK_USER\n", __func__);
if (!dbus_ctx || dbus_ctx->state != LDCS_CONN_ONWARD)
goto again;
if (autoexit_budget > 0) {
if (!--autoexit_budget) {
lwsl_notice("reached autoexit budget\n");
interrupted = 1;
break;
}
}
msg = dbus_message_new_method_call(THIS_BUSNAME, THIS_OBJECT,
THIS_INTERFACE, "Send");
if (!msg)
break;
lws_snprintf(payload, sizeof(payload), "d #%06X %d %d %d %d;",
rand() & 0xffffff, rand() % 480, rand() % 300,
rand() % 480, rand() % 300);
if (!dbus_message_append_args(msg, DBUS_TYPE_STRING, &ws_pkt,
DBUS_TYPE_INVALID)) {
dbus_message_unref(msg);
break;
}
if (!dbus_connection_send_with_reply(dbus_ctx->ctx.conn, msg,
&dbus_ctx->ctx.pc,
DBUS_TIMEOUT_USE_DEFAULT)) {
lwsl_err("%s: unable to send\n", __func__);
dbus_message_unref(msg);
break;
}
dbus_message_unref(msg);
dbus_pending_call_set_notify(dbus_ctx->ctx.pc,
pending_call_notify,
&dbus_ctx->ctx, NULL);
count_tx++;
again:
lws_timed_callback_vh_protocol(lws_get_vhost(wsi),
lws_get_protocol(wsi),
LWS_CALLBACK_USER, 2);
break;
default:
break;
}
return 0;
}
static struct lws_protocols protocols[] = {
{ "_just_timer", callback_just_timer, 0, 10, 0, NULL, 0 },
{ }
};
int main(int argc, const char **argv)
{
struct lws_vhost *vh;
struct lws_context_creation_info info;
const char *p;
int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE
/* for LLL_ verbosity above NOTICE to be built into lws,
* lws must have been configured and built with
* -DCMAKE_BUILD_TYPE=DEBUG instead of =RELEASE */
/* | LLL_INFO */ /* | LLL_PARSER */ /* | LLL_HEADER */
/* | LLL_EXT */ /* | LLL_CLIENT */ /* | LLL_LATENCY */
/* | LLL_DEBUG */ /* | LLL_THREAD */;
signal(SIGINT, sigint_handler);
if ((p = lws_cmdline_option(argc, argv, "-d")))
logs = atoi(p);
if ((p = lws_cmdline_option(argc, argv, "-x")))
autoexit_budget = atoi(p);
lws_set_log_level(logs, NULL);
lwsl_user("LWS minimal DBUS ws proxy testclient\n");
memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
info.options = LWS_SERVER_OPTION_EXPLICIT_VHOSTS;
info.protocols = protocols;
context = lws_create_context(&info);
if (!context) {
lwsl_err("lws init failed\n");
return 1;
}
info.options |=
LWS_SERVER_OPTION_HTTP_HEADERS_SECURITY_BEST_PRACTICES_ENFORCE;
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
vh = lws_create_vhost(context, &info);
if (!vh)
goto bail;
dbus_ctx = create_dbus_client_conn(vh, 0, THIS_LISTEN_PATH);
if (!dbus_ctx)
goto bail1;
if (remote_method_call(dbus_ctx))
goto bail2;
/* lws event loop (default poll one) */
while (n >= 0 && !interrupted)
n = lws_service(context, 1000);
bail2:
destroy_dbus_client_conn(&dbus_ctx);
bail1:
/* this is required for valgrind-cleanliness */
dbus_shutdown();
lws_context_destroy(context);
lwsl_notice("Exiting cleanly, rx: %d, tx: %d\n", count_rx, count_tx);
return 0;
bail:
lwsl_err("%s: failed to start\n", __func__);
lws_context_destroy(context);
return 1;
}