-
Notifications
You must be signed in to change notification settings - Fork 1
/
udht-ubus.c
143 lines (113 loc) · 3.24 KB
/
udht-ubus.c
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
#include <libubus.h>
#include "udht.h"
#include "curve25519.h"
static struct ubus_auto_conn conn;
static struct blob_buf b;
static void
udht_ubus_network_add(struct blob_attr *data, int seq)
{
static const struct blobmsg_policy net_policy =
{ "config", BLOBMSG_TYPE_TABLE };
enum {
CONFIG_ATTR_AUTH_KEY,
CONFIG_ATTR_DHT,
__CONFIG_ATTR_MAX
};
static const struct blobmsg_policy policy[__CONFIG_ATTR_MAX] = {
[CONFIG_ATTR_AUTH_KEY] = { "auth_key", BLOBMSG_TYPE_STRING },
[CONFIG_ATTR_DHT] = { "dht", BLOBMSG_TYPE_BOOL },
};
struct blob_attr *tb[__CONFIG_ATTR_MAX];
struct blob_attr *config, *cur;
uint8_t auth_key[CURVE25519_KEY_SIZE];
blobmsg_parse(&net_policy, 1, &config, blobmsg_data(data), blobmsg_len(data));
if (!config)
return;
blobmsg_parse(policy, __CONFIG_ATTR_MAX, tb, blobmsg_data(config), blobmsg_len(config));
if ((cur = tb[CONFIG_ATTR_DHT]) == NULL || !blobmsg_get_u8(cur))
return;
if ((cur = tb[CONFIG_ATTR_AUTH_KEY]) == NULL ||
(b64_decode(blobmsg_get_string(cur), auth_key, CURVE25519_KEY_SIZE) !=
CURVE25519_KEY_SIZE))
return;
udht_network_add(auth_key, seq);
}
static void
udht_ubus_network_cb(struct ubus_request *req, int type,
struct blob_attr *msg)
{
static const struct blobmsg_policy policy =
{ "networks", BLOBMSG_TYPE_TABLE };
struct blob_attr *networks, *cur;
int *seq = req->priv;
int rem;
blobmsg_parse(&policy, 1, &networks, blobmsg_data(msg), blobmsg_len(msg));
if (!networks)
return;
blobmsg_for_each_attr(cur, networks, rem)
udht_ubus_network_add(cur, *seq);
}
static void
udht_ubus_update_networks(struct ubus_context *ctx)
{
static int seq;
uint32_t id;
seq++;
if (ubus_lookup_id(ctx, "unetd", &id) == 0)
ubus_invoke(ctx, id, "network_get", b.head, udht_ubus_network_cb, &seq, 5000);
udht_network_flush(seq);
}
static int
udht_ubus_unetd_cb(struct ubus_context *ctx, struct ubus_object *obj,
struct ubus_request_data *req, const char *method,
struct blob_attr *msg)
{
udht_ubus_update_networks(ctx);
return 0;
}
static void
udht_subscribe_unetd(struct ubus_context *ctx)
{
static struct ubus_subscriber sub = {
.cb = udht_ubus_unetd_cb
};
uint32_t id;
if (!sub.obj.id && ubus_register_subscriber(ctx, &sub))
return;
if (ubus_lookup_id(ctx, "unetd", &id))
return;
ubus_subscribe(ctx, &sub, id);
/* ensure that unetd's socket is ready by testing if it's reachable over ubus */
if (ubus_invoke(ctx, id, "network_get", b.head, NULL, NULL, 10000))
return;
udht_reconnect();
udht_ubus_update_networks(ctx);
}
static void
udht_ubus_event_cb(struct ubus_context *ctx, struct ubus_event_handler *ev,
const char *type, struct blob_attr *msg)
{
static const struct blobmsg_policy policy =
{ "path", BLOBMSG_TYPE_STRING };
struct blob_attr *attr;
blobmsg_parse(&policy, 1, &attr, blobmsg_data(msg), blobmsg_len(msg));
if (!attr)
return;
if (!strcmp(blobmsg_get_string(attr), "unetd"))
udht_subscribe_unetd(ctx);
}
static void
ubus_connect_handler(struct ubus_context *ctx)
{
static struct ubus_event_handler ev = {
.cb = udht_ubus_event_cb,
};
ubus_register_event_handler(ctx, &ev, "ubus.object.add");
udht_subscribe_unetd(ctx);
}
void udht_ubus_init(void)
{
blob_buf_init(&b, 0);
conn.cb = ubus_connect_handler;
ubus_auto_connect(&conn);
}