1 | #include <sys/socket.h> |
---|
2 | #include <sys/un.h> |
---|
3 | |
---|
4 | #include "bitlbee.h" |
---|
5 | #include "bee.h" |
---|
6 | #include "nogaim.h" |
---|
7 | #include "parson.h" |
---|
8 | |
---|
9 | #define JSON_O_FOREACH(o, k, v) \ |
---|
10 | const char *k; const JSON_Value *v; int __i; \ |
---|
11 | for (__i = 0; json_object_get_tuple(o, __i, &k, &v); __i++) |
---|
12 | |
---|
13 | static int next_rpc_id = 1; |
---|
14 | |
---|
15 | struct rpc_plugin { |
---|
16 | /* Socket address of the RPC server. */ |
---|
17 | struct sockaddr *addr; |
---|
18 | socklen_t addrlen; |
---|
19 | /* Full copy of the "settings" section of the init message. This info |
---|
20 | * can only be applied later on, when an account is created (but well |
---|
21 | * before logging in). */ |
---|
22 | JSON_Value *settings; |
---|
23 | /* Supported away states returned by the away_states() function. Since |
---|
24 | * RPC servers can't do return values, just get this info at init time. |
---|
25 | * This means the list of possible away states is static from init time |
---|
26 | * which hopefully won't be a problem. If NULL, the away_states function |
---|
27 | * will not be set on this protocol. */ |
---|
28 | GList *away_states; |
---|
29 | /* Account flags. See account.h. Plugin lib should provide constants. */ |
---|
30 | int account_flags; |
---|
31 | }; |
---|
32 | |
---|
33 | struct rpc_connection { |
---|
34 | int fd; |
---|
35 | char *buf; |
---|
36 | int buflen; |
---|
37 | GHashTable *groupchats; |
---|
38 | }; |
---|
39 | |
---|
40 | struct rpc_groupchat { |
---|
41 | int id; |
---|
42 | struct groupchat *gc; |
---|
43 | }; |
---|
44 | |
---|
45 | static JSON_Value *jsonrpc_error(int code, const char *msg) { |
---|
46 | JSON_Value *ret = json_value_init_object(); |
---|
47 | json_object_set_null(json_object(ret), "result"); |
---|
48 | if (TRUE) { |
---|
49 | /* Format from http://jsonrpc.org/historical/json-rpc-1-1-alt.html. |
---|
50 | * Not sure whether to use it. */ |
---|
51 | JSON_Value *error = json_value_init_object(); |
---|
52 | json_object_set_number(json_object(error), "code", code); |
---|
53 | json_object_set_string(json_object(error), "message", msg); |
---|
54 | json_object_set_value(json_object(ret), "error", error); |
---|
55 | } else { |
---|
56 | json_object_set_string(json_object(ret), "error", msg); |
---|
57 | } |
---|
58 | |
---|
59 | return ret; |
---|
60 | } |
---|
61 | |
---|
62 | // Might have liked to have this one in the library for optional values/etc. |
---|
63 | static void json_array_append_string_or_null(JSON_Array *array, const char *string) { |
---|
64 | if (string) |
---|
65 | json_array_append_string(array, string); |
---|
66 | else |
---|
67 | json_array_append_null(array); |
---|
68 | } |
---|
69 | |
---|
70 | static void json_object_set_string_or_null(JSON_Object *object, const char *key, const char *string) { |
---|
71 | if (string) |
---|
72 | json_object_set_string(object, key, string); |
---|
73 | else |
---|
74 | json_object_set_null(object, key); |
---|
75 | } |
---|
76 | |
---|
77 | static JSON_Value *rpc_out_new(const char *method, JSON_Array **params_) { |
---|
78 | JSON_Value *rpc = json_value_init_object(); |
---|
79 | json_object_set_string(json_object(rpc), "method", method); |
---|
80 | json_object_set_number(json_object(rpc), "id", next_rpc_id++); |
---|
81 | |
---|
82 | JSON_Value *params = json_value_init_array(); |
---|
83 | json_object_set_value(json_object(rpc), "params", params); |
---|
84 | |
---|
85 | if (params_) |
---|
86 | *params_ = json_array(params); |
---|
87 | |
---|
88 | return rpc; |
---|
89 | } |
---|
90 | |
---|
91 | #define RPC_OUT_INIT(method) \ |
---|
92 | JSON_Array *params; \ |
---|
93 | JSON_Value *rpc = rpc_out_new(method, ¶ms); |
---|
94 | |
---|
95 | /** Sends an RPC object. Takes ownership (i.e. frees it when done). */ |
---|
96 | static gboolean rpc_send(struct im_connection *ic, JSON_Value *rpc) { |
---|
97 | struct rpc_connection *rd = ic->proto_data; |
---|
98 | char *buf = json_serialize_to_string(rpc); |
---|
99 | int len = strlen(buf); |
---|
100 | int st; |
---|
101 | |
---|
102 | buf = g_realloc(buf, len + 3); |
---|
103 | strcpy(buf + len, "\r\n"); |
---|
104 | len += 2; |
---|
105 | |
---|
106 | st = write(rd->fd, buf, len); |
---|
107 | g_free(buf); |
---|
108 | json_value_free(rpc); |
---|
109 | |
---|
110 | if (st != len) { |
---|
111 | if (!(ic->flags & OPT_LOGGING_OUT)) |
---|
112 | imcb_log(ic, "Write error"); |
---|
113 | imc_logout(ic, TRUE); |
---|
114 | return FALSE; |
---|
115 | } |
---|
116 | |
---|
117 | return TRUE; |
---|
118 | } |
---|
119 | |
---|
120 | static JSON_Value *rpc_ser_settings(set_t **set) { |
---|
121 | const set_t *s; |
---|
122 | JSON_Value *ret = json_value_init_object(); |
---|
123 | |
---|
124 | for (s = *set; s; s = s->next) { |
---|
125 | json_object_set_string_or_null(json_object(ret), s->key, set_getstr(set, s->key)); |
---|
126 | } |
---|
127 | |
---|
128 | return ret; |
---|
129 | } |
---|
130 | |
---|
131 | static JSON_Value *rpc_ser_account(account_t *acc) { |
---|
132 | JSON_Value *v = json_value_init_object(); |
---|
133 | JSON_Object *o = json_object(v); |
---|
134 | json_object_set_string(o, "user", acc->user); |
---|
135 | json_object_set_string(o, "pass", acc->user); |
---|
136 | if (acc->server) |
---|
137 | json_object_set_string(o, "server", acc->server); |
---|
138 | json_object_set_value(o, "settings", rpc_ser_settings(&acc->set)); |
---|
139 | return v; |
---|
140 | } |
---|
141 | |
---|
142 | static JSON_Value *rpc_ser_bee_user(bee_user_t *bu) { |
---|
143 | JSON_Value *v = json_value_init_object(); |
---|
144 | JSON_Object *o = json_object(v); |
---|
145 | json_object_set_string_or_null(o, "handle", bu->handle); |
---|
146 | json_object_set_string_or_null(o, "fullname", bu->fullname); |
---|
147 | json_object_set_string_or_null(o, "nick", bu->nick); |
---|
148 | json_object_set_string_or_null(o, "group", bu->group ? bu->group->name : NULL); |
---|
149 | json_object_set_number(o, "flags", bu->flags); |
---|
150 | json_object_set_string_or_null(o, "status", bu->status); |
---|
151 | json_object_set_string_or_null(o, "status_msg", bu->status_msg); |
---|
152 | json_object_set_number(o, "login_time", bu->login_time); |
---|
153 | json_object_set_number(o, "idle_time", bu->idle_time); |
---|
154 | return v; |
---|
155 | } |
---|
156 | |
---|
157 | static char *rpc_set_evaluator(set_t *set, char *value); |
---|
158 | |
---|
159 | static void rpc_init(account_t *acc) { |
---|
160 | struct rpc_plugin *pd = acc->prpl->data; |
---|
161 | |
---|
162 | JSON_O_FOREACH(json_object(pd->settings), name, value) { |
---|
163 | JSON_Object *o = json_object(value); |
---|
164 | set_t *set = set_add(&acc->set, name, json_object_get_string(o, "default"), NULL, acc); |
---|
165 | /* JSON numbers are floats. The following line "might" be a |
---|
166 | * terrible idea. As was JSON, but hey. */ |
---|
167 | set->flags |= (int) json_object_get_number(o, "flags"); |
---|
168 | set->eval = rpc_set_evaluator; |
---|
169 | set->eval_data = o; |
---|
170 | /* eval_list turns out to be a memory leak so don't implement it |
---|
171 | * for now. |
---|
172 | * Allowing a plugin to define its own evaluator is not really |
---|
173 | * possible without having BitlBee block on it responding which |
---|
174 | * I don't want to do. |
---|
175 | * Should a module want to override a user's setting, it can |
---|
176 | * use set_setstr(). */ |
---|
177 | } |
---|
178 | |
---|
179 | acc->flags |= pd->account_flags; |
---|
180 | } |
---|
181 | |
---|
182 | static char *rpc_set_evaluator(set_t *set, char *value) { |
---|
183 | JSON_Object *o = set->eval_data; |
---|
184 | const char *type = json_object_get_string(o, "type"); |
---|
185 | |
---|
186 | /* Just allow two simple int/bool evaluators with no protocol awareness. */ |
---|
187 | set_eval type_eval = NULL; |
---|
188 | if (type == NULL) { |
---|
189 | } else if (strncmp(type, "int", 3) == 0) { |
---|
190 | type_eval = set_eval_int; |
---|
191 | } else if (strncmp(type, "bool", 4) == 0) { |
---|
192 | type_eval = set_eval_bool; |
---|
193 | } |
---|
194 | |
---|
195 | if (type_eval) { |
---|
196 | char *new = type_eval(set, value); |
---|
197 | if (new == SET_INVALID) { |
---|
198 | return SET_INVALID; |
---|
199 | } |
---|
200 | } |
---|
201 | |
---|
202 | account_t *acc = set->data; |
---|
203 | if (acc->ic) { |
---|
204 | /* But do send RPCs to the plugin for each changed setting so |
---|
205 | * it always has up-to-date values. */ |
---|
206 | RPC_OUT_INIT("set_set"); |
---|
207 | json_array_append_string(params, set->key); |
---|
208 | if (type_eval == set_eval_int) { |
---|
209 | int num = 0; |
---|
210 | /* Evaluator already did validation so ignore retval. */ |
---|
211 | sscanf(value, "%d", &num); |
---|
212 | json_array_append_number(params, num); |
---|
213 | } else if (type_eval == set_eval_bool) { |
---|
214 | json_array_append_boolean(params, bool2int(value)); |
---|
215 | } else { |
---|
216 | json_array_append_string(params, value); |
---|
217 | } |
---|
218 | rpc_send(acc->ic, rpc); |
---|
219 | } |
---|
220 | |
---|
221 | return value; |
---|
222 | } |
---|
223 | |
---|
224 | static gboolean rpc_login_cb(gpointer data, gint fd, b_input_condition cond); |
---|
225 | static gboolean rpc_in_event(gpointer data, gint fd, b_input_condition cond); |
---|
226 | static JSON_Value *rpc_init_isup(); |
---|
227 | |
---|
228 | static void rpc_login(account_t *acc) { |
---|
229 | struct im_connection *ic = imcb_new(acc); |
---|
230 | struct rpc_connection *rd = ic->proto_data = g_new0(struct rpc_connection, 1); |
---|
231 | struct rpc_plugin *pd = acc->prpl->data; |
---|
232 | imcb_log(ic, "Connecting to RPC server"); |
---|
233 | rd->fd = socket(pd->addr->sa_family, SOCK_STREAM, 0); |
---|
234 | sock_make_nonblocking(rd->fd); |
---|
235 | if (connect(rd->fd, pd->addr, pd->addrlen) == -1) { |
---|
236 | closesocket(rd->fd); |
---|
237 | imcb_error(ic, "RPC server unreachable"); |
---|
238 | imc_logout(ic, TRUE); |
---|
239 | return; |
---|
240 | } |
---|
241 | ic->inpa = b_input_add(rd->fd, B_EV_IO_WRITE, rpc_login_cb, ic); |
---|
242 | rd->groupchats = g_hash_table_new(g_int_hash, g_int_equal); |
---|
243 | } |
---|
244 | |
---|
245 | static gboolean rpc_login_cb(gpointer data, gint fd, b_input_condition cond) { |
---|
246 | struct im_connection *ic = data; |
---|
247 | struct rpc_connection *rd = ic->proto_data; |
---|
248 | |
---|
249 | /* Need to repeat this since each IM connection means an actual new |
---|
250 | * RPC session. */ |
---|
251 | JSON_Value *init = rpc_init_isup(); |
---|
252 | if (!rpc_send(ic, init)) |
---|
253 | return FALSE; |
---|
254 | |
---|
255 | RPC_OUT_INIT("login"); |
---|
256 | json_array_append_value(params, rpc_ser_account(ic->acc)); |
---|
257 | if (!rpc_send(ic, rpc)) |
---|
258 | return FALSE; |
---|
259 | |
---|
260 | ic->inpa = b_input_add(rd->fd, B_EV_IO_READ, rpc_in_event, ic); |
---|
261 | |
---|
262 | return FALSE; |
---|
263 | } |
---|
264 | |
---|
265 | static void rpc_keepalive(struct im_connection *ic) { |
---|
266 | RPC_OUT_INIT("keepalive"); |
---|
267 | rpc_send(ic, rpc); |
---|
268 | } |
---|
269 | |
---|
270 | static void rpc_logout(struct im_connection *ic) { |
---|
271 | RPC_OUT_INIT("logout"); |
---|
272 | if (!rpc_send(ic, rpc)) |
---|
273 | return; |
---|
274 | |
---|
275 | struct rpc_connection *rd = ic->proto_data; |
---|
276 | b_event_remove(ic->inpa); |
---|
277 | closesocket(rd->fd); |
---|
278 | g_free(rd->buf); |
---|
279 | g_hash_table_destroy(rd->groupchats); |
---|
280 | g_free(rd); |
---|
281 | } |
---|
282 | |
---|
283 | static int rpc_buddy_msg(struct im_connection *ic, char *to, char *message, int flags) { |
---|
284 | RPC_OUT_INIT("buddy_msg"); |
---|
285 | json_array_append_string(params, to); |
---|
286 | json_array_append_string(params, message); |
---|
287 | json_array_append_number(params, flags); |
---|
288 | return rpc_send(ic, rpc); |
---|
289 | } |
---|
290 | |
---|
291 | static void rpc_set_away(struct im_connection *ic, char *state, char *message) { |
---|
292 | RPC_OUT_INIT("set_away"); |
---|
293 | json_array_append_string_or_null(params, state); |
---|
294 | json_array_append_string_or_null(params, message); |
---|
295 | rpc_send(ic, rpc); |
---|
296 | } |
---|
297 | |
---|
298 | static int rpc_send_typing(struct im_connection *ic, char *who, int flags) { |
---|
299 | RPC_OUT_INIT("send_typing"); |
---|
300 | json_array_append_string(params, who); |
---|
301 | json_array_append_number(params, flags); |
---|
302 | return rpc_send(ic, rpc); |
---|
303 | } |
---|
304 | |
---|
305 | static void rpc_add_buddy(struct im_connection *ic, char *name, char *group) { |
---|
306 | RPC_OUT_INIT("add_buddy"); |
---|
307 | json_array_append_string(params, name); |
---|
308 | json_array_append_string_or_null(params, group); |
---|
309 | rpc_send(ic, rpc); |
---|
310 | } |
---|
311 | |
---|
312 | static void rpc_remove_buddy(struct im_connection *ic, char *name, char *group) { |
---|
313 | RPC_OUT_INIT("remove_buddy"); |
---|
314 | json_array_append_string(params, name); |
---|
315 | json_array_append_string_or_null(params, group); |
---|
316 | rpc_send(ic, rpc); |
---|
317 | } |
---|
318 | |
---|
319 | static void rpc_add_permit(struct im_connection *ic, char *who) { |
---|
320 | RPC_OUT_INIT("add_permit"); |
---|
321 | json_array_append_string(params, who); |
---|
322 | rpc_send(ic, rpc); |
---|
323 | } |
---|
324 | |
---|
325 | static void rpc_add_deny(struct im_connection *ic, char *who) { |
---|
326 | RPC_OUT_INIT("add_deny"); |
---|
327 | json_array_append_string(params, who); |
---|
328 | rpc_send(ic, rpc); |
---|
329 | } |
---|
330 | |
---|
331 | static void rpc_rem_permit(struct im_connection *ic, char *who) { |
---|
332 | RPC_OUT_INIT("rem_permit"); |
---|
333 | json_array_append_string(params, who); |
---|
334 | rpc_send(ic, rpc); |
---|
335 | } |
---|
336 | |
---|
337 | static void rpc_rem_deny(struct im_connection *ic, char *who) { |
---|
338 | RPC_OUT_INIT("rem_deny"); |
---|
339 | json_array_append_string(params, who); |
---|
340 | rpc_send(ic, rpc); |
---|
341 | } |
---|
342 | |
---|
343 | static void rpc_get_info(struct im_connection *ic, char *who) { |
---|
344 | RPC_OUT_INIT("get_info"); |
---|
345 | json_array_append_string(params, who); |
---|
346 | rpc_send(ic, rpc); |
---|
347 | } |
---|
348 | |
---|
349 | static void rpc_chat_invite(struct groupchat *gc, char *who, char *message) { |
---|
350 | RPC_OUT_INIT("chat_invite"); |
---|
351 | struct rpc_groupchat *rc = gc->data; |
---|
352 | json_array_append_number(params, rc->id); |
---|
353 | json_array_append_string(params, who); |
---|
354 | json_array_append_string_or_null(params, message); |
---|
355 | rpc_send(gc->ic, rpc); |
---|
356 | } |
---|
357 | |
---|
358 | static void rpc_chat_kick(struct groupchat *gc, char *who, const char *message) { |
---|
359 | RPC_OUT_INIT("chat_kick"); |
---|
360 | struct rpc_groupchat *rc = gc->data; |
---|
361 | json_array_append_number(params, rc->id); |
---|
362 | json_array_append_string(params, who); |
---|
363 | json_array_append_string_or_null(params, message); |
---|
364 | rpc_send(gc->ic, rpc); |
---|
365 | } |
---|
366 | |
---|
367 | static void rpc_chat_leave(struct groupchat *gc) { |
---|
368 | RPC_OUT_INIT("chat_leave"); |
---|
369 | struct rpc_groupchat *rc = gc->data; |
---|
370 | json_array_append_number(params, rc->id); |
---|
371 | rpc_send(gc->ic, rpc); |
---|
372 | } |
---|
373 | |
---|
374 | static void rpc_chat_msg(struct groupchat *gc, char *msg, int flags) { |
---|
375 | RPC_OUT_INIT("chat_msg"); |
---|
376 | struct rpc_groupchat *rc = gc->data; |
---|
377 | json_array_append_number(params, rc->id); |
---|
378 | json_array_append_string(params, msg); |
---|
379 | json_array_append_number(params, flags); |
---|
380 | rpc_send(gc->ic, rpc); |
---|
381 | } |
---|
382 | |
---|
383 | static struct rpc_groupchat *rpc_groupchat_new(struct im_connection *ic, const char *handle) { |
---|
384 | struct rpc_connection *rd = ic->proto_data; |
---|
385 | struct groupchat *gc = imcb_chat_new(ic, handle); |
---|
386 | struct rpc_groupchat *rc = gc->data = g_new0(struct rpc_groupchat, 1); |
---|
387 | rc->id = next_rpc_id++; |
---|
388 | rc->gc = gc; |
---|
389 | g_hash_table_insert(rd->groupchats, &rc->id, rc); |
---|
390 | return rc; // TODO: RETVAL HERE AND BELOW |
---|
391 | } |
---|
392 | |
---|
393 | static struct rpc_groupchat *rpc_groupchat_by_id(struct im_connection *ic, int id) { |
---|
394 | struct rpc_connection *rd = ic->proto_data; |
---|
395 | struct rpc_groupchat *rc = g_hash_table_lookup(rd->groupchats, &id); |
---|
396 | |
---|
397 | return rc; |
---|
398 | } |
---|
399 | |
---|
400 | /* Boilerplate for all incoming RPCs (where groupchat is identified using |
---|
401 | * numeric ID). */ |
---|
402 | #define SET_GROUPCHAT(rc) \ |
---|
403 | do { \ |
---|
404 | rc = rpc_groupchat_by_id(ic, json_array_get_number(params, 0)); \ |
---|
405 | if (rc == NULL) \ |
---|
406 | return jsonrpc_error(ENOENT, "No groupchat with that id."); \ |
---|
407 | } while (0) |
---|
408 | |
---|
409 | static struct groupchat *rpc_chat_with(struct im_connection *ic, char *who) { |
---|
410 | RPC_OUT_INIT("chat_with"); |
---|
411 | struct rpc_groupchat *rc = rpc_groupchat_new(ic, who); |
---|
412 | json_array_append_number(params, rc->id); |
---|
413 | json_array_append_string(params, who); |
---|
414 | rpc_send(ic, rpc); |
---|
415 | |
---|
416 | return rc->gc; |
---|
417 | } |
---|
418 | |
---|
419 | static struct groupchat *rpc_chat_join(struct im_connection *ic, const char *room, const char *nick, |
---|
420 | const char *password, set_t **sets) { |
---|
421 | RPC_OUT_INIT("chat_join"); |
---|
422 | struct rpc_groupchat *rc = rpc_groupchat_new(ic, room); |
---|
423 | json_array_append_number(params, rc->id); |
---|
424 | json_array_append_string(params, room); |
---|
425 | json_array_append_string_or_null(params, nick); |
---|
426 | json_array_append_string_or_null(params, password); |
---|
427 | json_array_append_value(params, rpc_ser_settings(sets)); |
---|
428 | rpc_send(ic, rpc); |
---|
429 | |
---|
430 | return rc->gc; |
---|
431 | } |
---|
432 | |
---|
433 | static void rpc_chat_topic(struct groupchat *gc, char *topic) { |
---|
434 | RPC_OUT_INIT("chat_topic"); |
---|
435 | struct rpc_groupchat *rc = gc->data; |
---|
436 | json_array_append_number(params, rc->id); |
---|
437 | json_array_append_string(params, topic); |
---|
438 | rpc_send(gc->ic, rpc); |
---|
439 | } |
---|
440 | |
---|
441 | static GList *rpc_away_states(struct im_connection *ic) { |
---|
442 | struct rpc_plugin *pd = ic->acc->prpl->data; |
---|
443 | return pd->away_states; |
---|
444 | } |
---|
445 | |
---|
446 | static JSON_Value *rpc_cmd_in(struct im_connection *ic, const char *cmd, JSON_Array *params); |
---|
447 | |
---|
448 | static gboolean rpc_in(struct im_connection *ic, JSON_Object *rpc) { |
---|
449 | const char *cmd = json_object_get_string(rpc, "method"); |
---|
450 | JSON_Value *id = json_object_get_value(rpc, "id"); |
---|
451 | JSON_Value *error = json_object_get_value(rpc, "error"); |
---|
452 | JSON_Array *params = json_object_get_array(rpc, "params"); |
---|
453 | |
---|
454 | /* Removed checks for result/error/etc. as it's all too free-form and |
---|
455 | * at least for now this code is not going to care about retvals as |
---|
456 | * they come in late anyway. */ |
---|
457 | if (!id) { |
---|
458 | imcb_log(ic, "Received invalid JSON-RPC object."); |
---|
459 | imc_logout(ic, TRUE); |
---|
460 | return FALSE; |
---|
461 | } |
---|
462 | |
---|
463 | if (cmd) { |
---|
464 | JSON_Value *resp = rpc_cmd_in(ic, cmd, params); |
---|
465 | if (!resp) { |
---|
466 | resp = json_value_init_object(); |
---|
467 | json_object_set_boolean(json_object(resp), "result", TRUE); |
---|
468 | } |
---|
469 | json_object_set_value(json_object(resp), "id", json_value_deep_copy(id)); |
---|
470 | return rpc_send(ic, resp); |
---|
471 | } else if (error && json_type(error) != JSONNull) { |
---|
472 | char *error_str = json_serialize_to_string(error); |
---|
473 | /* Maybe sanitise/truncate? Though really that should be done at |
---|
474 | * a different layer. */ |
---|
475 | imcb_error(ic, "RPC Error: %s", error_str); |
---|
476 | g_free(error_str); |
---|
477 | } |
---|
478 | |
---|
479 | return TRUE; |
---|
480 | } |
---|
481 | |
---|
482 | static gboolean rpc_in_event(gpointer data, gint fd, b_input_condition cond) { |
---|
483 | struct im_connection *ic = data; |
---|
484 | struct rpc_connection *rd = ic->proto_data; |
---|
485 | char buf[2048]; |
---|
486 | int st; |
---|
487 | |
---|
488 | while ((st = read(rd->fd, buf, sizeof(buf))) > 0) { |
---|
489 | rd->buf = g_realloc(rd->buf, rd->buflen + st + 1); |
---|
490 | memcpy(rd->buf + rd->buflen, buf, st); |
---|
491 | rd->buflen += st; |
---|
492 | } |
---|
493 | |
---|
494 | if (st == 0 || (st == -1 && !(sockerr_again() || errno == EAGAIN))) { |
---|
495 | imcb_log(ic, "Lost RPC connection"); |
---|
496 | imc_logout(ic, TRUE); |
---|
497 | return FALSE; |
---|
498 | } |
---|
499 | rd->buf[rd->buflen] = '\0'; |
---|
500 | |
---|
501 | JSON_Value *parsed; |
---|
502 | const char *end; |
---|
503 | while ((parsed = json_parse_first(rd->buf, &end))) { |
---|
504 | st = rpc_in(ic, json_object(parsed)); |
---|
505 | json_value_free(parsed); |
---|
506 | |
---|
507 | if (!st) |
---|
508 | return FALSE; |
---|
509 | |
---|
510 | if (end == rd->buf + rd->buflen) { |
---|
511 | g_free(rd->buf); |
---|
512 | rd->buf = NULL; |
---|
513 | } else { |
---|
514 | int newlen = rd->buf + rd->buflen - end; |
---|
515 | char new[newlen]; |
---|
516 | memcpy(new, end, newlen); |
---|
517 | rd->buf = g_realloc(rd->buf, newlen + 1); |
---|
518 | memcpy(rd->buf, new, newlen); |
---|
519 | rd->buflen = newlen; |
---|
520 | rd->buf[rd->buflen] = '\0'; |
---|
521 | } |
---|
522 | } |
---|
523 | |
---|
524 | return TRUE; |
---|
525 | } |
---|
526 | |
---|
527 | static JSON_Value *rpc_imcb_log(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
528 | void (*func)(struct im_connection*, const char*, ...) = func_; |
---|
529 | func(ic, "%s", json_array_get_string(params, 0)); |
---|
530 | return NULL; |
---|
531 | } |
---|
532 | |
---|
533 | static JSON_Value *rpc_imcb_connected(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
534 | void (*func)(struct im_connection*) = func_; |
---|
535 | func(ic); |
---|
536 | return NULL; |
---|
537 | } |
---|
538 | |
---|
539 | static JSON_Value *rpc_imc_logout(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
540 | void (*func)(struct im_connection*, gboolean) = func_; |
---|
541 | func(ic, json_array_get_boolean(params, 0)); |
---|
542 | return NULL; |
---|
543 | } |
---|
544 | |
---|
545 | static JSON_Value *rpc_imcb_add_buddy(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
546 | void (*func)(struct im_connection*, const char*, const char*) = func_; |
---|
547 | func(ic, json_array_get_string(params, 0), json_array_get_string(params, 1)); |
---|
548 | return NULL; |
---|
549 | } |
---|
550 | |
---|
551 | static JSON_Value *rpc_imcb_buddy_status(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
552 | void (*func)(struct im_connection*, const char*, int, const char*, const char*) = func_; |
---|
553 | func(ic, json_array_get_string(params, 0), json_array_get_number(params, 1), |
---|
554 | json_array_get_string(params, 2), json_array_get_string(params, 3)); |
---|
555 | return NULL; |
---|
556 | } |
---|
557 | |
---|
558 | static JSON_Value *rpc_imcb_buddy_times(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
559 | void (*func)(struct im_connection*, const char*, int, int) = func_; |
---|
560 | func(ic, json_array_get_string(params, 0), json_array_get_number(params, 1), |
---|
561 | json_array_get_number(params, 2)); |
---|
562 | return NULL; |
---|
563 | } |
---|
564 | |
---|
565 | static JSON_Value *rpc_imcb_buddy_msg(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
566 | void (*func)(struct im_connection*, const char*, const char*, int, int) = func_; |
---|
567 | func(ic, json_array_get_string(params, 0), json_array_get_string(params, 1), |
---|
568 | json_array_get_number(params, 2), json_array_get_number(params, 3)); |
---|
569 | return NULL; |
---|
570 | } |
---|
571 | |
---|
572 | static JSON_Value *rpc_imcb_buddy_typing(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
573 | void (*func)(struct im_connection*, const char*, int) = func_; |
---|
574 | func(ic, (char*) json_array_get_string(params, 0), json_array_get_number(params, 1)); |
---|
575 | return NULL; |
---|
576 | } |
---|
577 | |
---|
578 | static JSON_Value *rpc_imcb_chat_new(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
579 | struct rpc_groupchat *rc = rpc_groupchat_new(ic, json_array_get_string(params, 0)); |
---|
580 | JSON_Value *resp = json_value_init_object(); |
---|
581 | json_object_set_number(json_object(resp), "result", rc->id); |
---|
582 | return resp; |
---|
583 | } |
---|
584 | |
---|
585 | static JSON_Value *rpc_imcb_chat_name_hint(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
586 | void (*func)(struct groupchat*, const char*) = func_; |
---|
587 | struct rpc_groupchat *rc; |
---|
588 | SET_GROUPCHAT(rc); |
---|
589 | func(rc->gc, json_array_get_string(params, 1)); |
---|
590 | return NULL; |
---|
591 | } |
---|
592 | |
---|
593 | static JSON_Value *rpc_imcb_chat_msg(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
594 | void (*func)(struct groupchat*, const char*, const char*, guint32, time_t) = func_; |
---|
595 | struct rpc_groupchat *rc; |
---|
596 | SET_GROUPCHAT(rc); |
---|
597 | func(rc->gc, json_array_get_string(params, 1), json_array_get_string(params, 2), |
---|
598 | json_array_get_number(params, 3), json_array_get_number(params, 4)); |
---|
599 | return NULL; |
---|
600 | } |
---|
601 | |
---|
602 | static JSON_Value *rpc_imcb_chat_log(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
603 | void (*func)(struct groupchat*, const char*, ...) = func_; |
---|
604 | struct rpc_groupchat *rc; |
---|
605 | SET_GROUPCHAT(rc); |
---|
606 | func(rc->gc, "%s", json_array_get_string(params, 1)); |
---|
607 | return NULL; |
---|
608 | } |
---|
609 | |
---|
610 | static JSON_Value *rpc_imcb_chat_topic(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
611 | void (*func)(struct groupchat*, const char*, const char*, time_t) = func_; |
---|
612 | struct rpc_groupchat *rc; |
---|
613 | SET_GROUPCHAT(rc); |
---|
614 | func(rc->gc, json_array_get_string(params, 1), json_array_get_string(params, 2), |
---|
615 | json_array_get_number(params, 3)); |
---|
616 | return NULL; |
---|
617 | } |
---|
618 | |
---|
619 | static JSON_Value *rpc_imcb_chat_remove_buddy(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
620 | void (*func)(struct groupchat*, const char*, const char*) = func_; |
---|
621 | struct rpc_groupchat *rc; |
---|
622 | SET_GROUPCHAT(rc); |
---|
623 | func(rc->gc, json_array_get_string(params, 1), json_array_get_string(params, 2)); |
---|
624 | return NULL; |
---|
625 | } |
---|
626 | |
---|
627 | static JSON_Value *rpc_imcb_chat_invite(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
628 | void (*func)(struct groupchat*, const char*, const char*, const char*) = func_; |
---|
629 | struct rpc_groupchat *rc; |
---|
630 | SET_GROUPCHAT(rc); |
---|
631 | func(rc->gc, json_array_get_string(params, 1), json_array_get_string(params, 2), |
---|
632 | json_array_get_string(params, 3)); |
---|
633 | return NULL; |
---|
634 | } |
---|
635 | |
---|
636 | static JSON_Value *rpc_set_getstr(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
637 | char *rets = set_getstr(&ic->acc->set, json_array_get_string(params, 0)); |
---|
638 | JSON_Value *ret = json_value_init_object(); |
---|
639 | if (rets) |
---|
640 | json_object_set_string(json_object(ret), "result", rets); |
---|
641 | else |
---|
642 | json_object_set_null(json_object(ret), "result"); |
---|
643 | return ret; |
---|
644 | } |
---|
645 | |
---|
646 | static JSON_Value *rpc_set_setstr(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
647 | /* Sadly use of const is very poor in BitlBee. :-( */ |
---|
648 | char *newval = g_strdup(json_array_get_string(params, 1)); |
---|
649 | set_setstr(&ic->acc->set, json_array_get_string(params, 0), newval); |
---|
650 | g_free(newval); |
---|
651 | return rpc_set_getstr(ic, func_, params); |
---|
652 | } |
---|
653 | |
---|
654 | static JSON_Value *rpc_set_reset(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
655 | set_reset(&ic->acc->set, json_array_get_string(params, 0)); |
---|
656 | return rpc_set_getstr(ic, func_, params); |
---|
657 | } |
---|
658 | |
---|
659 | static JSON_Value *rpc_bee_user_by_handle(struct im_connection *ic, void *func_, JSON_Array *params) { |
---|
660 | bee_user_t *bu = bee_user_by_handle(ic->bee, ic, json_array_get_string(params, 0)); |
---|
661 | JSON_Value *ret = json_value_init_object(); |
---|
662 | if (bu) |
---|
663 | json_object_set_value(json_object(ret), "result", rpc_ser_bee_user(bu)); |
---|
664 | else |
---|
665 | json_object_set_value(json_object(ret), "error", jsonrpc_error(ENOENT, "Contact not found")); |
---|
666 | return ret; |
---|
667 | } |
---|
668 | |
---|
669 | struct rpc_in_method { |
---|
670 | char *name; |
---|
671 | void *func; |
---|
672 | JSON_Value* (* wfunc) (struct im_connection *ic, void *cmd, JSON_Array *params); |
---|
673 | char args[8]; |
---|
674 | }; |
---|
675 | |
---|
676 | static const struct rpc_in_method methods[] = { |
---|
677 | /* All these RPCs are equivalent of BitlBee C functions but with the |
---|
678 | * struct im_connection* removed as this is in the object context. */ |
---|
679 | { "imcb_log", imcb_log, rpc_imcb_log, "s" }, |
---|
680 | { "imcb_error", imcb_error, rpc_imcb_log, "s" }, |
---|
681 | { "imcb_connected", imcb_connected, rpc_imcb_connected, "" }, |
---|
682 | { "imc_logout", imc_logout, rpc_imc_logout, "b" }, |
---|
683 | { "imcb_add_buddy", imcb_add_buddy, rpc_imcb_add_buddy, "ss" }, |
---|
684 | { "imcb_remove_buddy", imcb_remove_buddy, rpc_imcb_add_buddy, "ss" }, |
---|
685 | { "imcb_rename_buddy", imcb_rename_buddy, rpc_imcb_add_buddy, "ss" }, |
---|
686 | { "imcb_buddy_nick_hint", imcb_buddy_nick_hint, rpc_imcb_add_buddy, "ss" }, |
---|
687 | { "imcb_buddy_status", imcb_buddy_status, rpc_imcb_buddy_status, "snss" }, |
---|
688 | { "imcb_buddy_status_msg", imcb_buddy_status_msg, rpc_imcb_add_buddy, "ss" }, |
---|
689 | { "imcb_buddy_times", imcb_buddy_times, rpc_imcb_buddy_times, "snn" }, |
---|
690 | { "imcb_buddy_msg", imcb_buddy_msg, rpc_imcb_buddy_msg, "ssnn" }, |
---|
691 | { "imcb_buddy_typing", imcb_buddy_typing, rpc_imcb_buddy_typing, "sn" }, |
---|
692 | { "imcb_chat_new", NULL, rpc_imcb_chat_new, "s" }, |
---|
693 | |
---|
694 | /* RPCs below are equivalent, but with the struct groupchat* replaced |
---|
695 | * with the numeric id of the chat. */ |
---|
696 | { "imcb_chat_name_hint", imcb_chat_name_hint, rpc_imcb_chat_name_hint, "ns" }, |
---|
697 | { "imcb_chat_msg", imcb_chat_msg, rpc_imcb_chat_msg, "nssnn" }, |
---|
698 | { "imcb_chat_log", imcb_chat_log, rpc_imcb_chat_log, "ns" }, |
---|
699 | { "imcb_chat_topic", imcb_chat_topic, rpc_imcb_chat_topic, "nssn" }, |
---|
700 | { "imcb_chat_add_buddy", imcb_chat_add_buddy, rpc_imcb_chat_name_hint, "ns" }, |
---|
701 | { "imcb_chat_remove_buddy", imcb_chat_remove_buddy, rpc_imcb_chat_remove_buddy, "nss" }, |
---|
702 | { "imcb_chat_invite", imcb_chat_invite, rpc_imcb_chat_invite, "nsss" }, |
---|
703 | |
---|
704 | /* These are not imcb* functions but should still be exported. */ |
---|
705 | /* Setting functions. Starting with just providing access to account |
---|
706 | * settings. See later whether access to chat/chan settings is necessary. |
---|
707 | * All of these will return the (new) value of given setting. */ |
---|
708 | { "set_getstr", NULL, rpc_set_getstr, "s" }, |
---|
709 | { "set_setstr", NULL, rpc_set_setstr, "ss" }, |
---|
710 | { "set_reset", NULL, rpc_set_reset, "s" }, |
---|
711 | |
---|
712 | { "bee_user_by_handle", NULL, rpc_bee_user_by_handle, "s" }, |
---|
713 | |
---|
714 | { NULL }, |
---|
715 | }; |
---|
716 | |
---|
717 | static JSON_Value *rpc_cmd_in(struct im_connection *ic, const char *cmd, JSON_Array *params) { |
---|
718 | int i; |
---|
719 | |
---|
720 | for (i = 0; methods[i].name; i++) { |
---|
721 | if (strcmp(cmd, methods[i].name) == 0) { |
---|
722 | if (json_array_get_count(params) != strlen(methods[i].args)) { |
---|
723 | imcb_error(ic, "Invalid argument count to method %s: %d, wanted %zd", cmd, (int) json_array_get_count(params), strlen(methods[i].args)); |
---|
724 | return jsonrpc_error(E2BIG, "Invalid number of arguments"); |
---|
725 | } |
---|
726 | int j; |
---|
727 | for (j = 0; methods[i].args[j]; j++) { |
---|
728 | JSON_Value_Type type = json_value_get_type(json_array_get_value(params, j)); |
---|
729 | gboolean ok = FALSE; |
---|
730 | switch (methods[i].args[j]) { |
---|
731 | case 's': |
---|
732 | ok = type == JSONString || type == JSONNull; |
---|
733 | break; |
---|
734 | case 'n': |
---|
735 | ok = type == JSONNumber; |
---|
736 | break; |
---|
737 | case 'o': |
---|
738 | ok = type == JSONObject; |
---|
739 | break; |
---|
740 | case 'a': |
---|
741 | ok = type == JSONArray; |
---|
742 | break; |
---|
743 | case 'b': |
---|
744 | ok = type == JSONBoolean; |
---|
745 | break; |
---|
746 | } |
---|
747 | if (!ok) { |
---|
748 | // This error sucks, but just get your types right! |
---|
749 | imcb_error(ic, "Invalid argument type, %s parameter %d: %d not %c", cmd, j, type, methods[i].args[j]); |
---|
750 | return jsonrpc_error(EINVAL, "Invalid argument type"); |
---|
751 | } |
---|
752 | } |
---|
753 | return methods[i].wfunc(ic, methods[i].func, params); |
---|
754 | } |
---|
755 | } |
---|
756 | return jsonrpc_error(ENOSYS, "Function not implemented"); |
---|
757 | } |
---|
758 | |
---|
759 | #define RPC_ADD_FUNC(func) \ |
---|
760 | if (g_hash_table_contains(methods, #func)) \ |
---|
761 | ret->func = rpc_ ## func |
---|
762 | |
---|
763 | static JSON_Value *rpc_init_isup() { |
---|
764 | int i; |
---|
765 | |
---|
766 | RPC_OUT_INIT("init"); |
---|
767 | JSON_Value *d = json_value_init_object(); |
---|
768 | json_object_set_string(json_object(d), "version_str", BITLBEE_VERSION); |
---|
769 | json_object_set_number(json_object(d), "version", BITLBEE_VERSION_CODE); |
---|
770 | |
---|
771 | JSON_Value *ml = json_value_init_array(); |
---|
772 | for (i = 0; methods[i].name; i++) { |
---|
773 | json_array_append_string(json_array(ml), methods[i].name); |
---|
774 | } |
---|
775 | json_object_set_value(json_object(d), "method_list", ml); |
---|
776 | json_array_append_value(params, d); |
---|
777 | |
---|
778 | return rpc; |
---|
779 | } |
---|
780 | |
---|
781 | gboolean rpc_initmodule_sock(struct sockaddr *address, socklen_t addrlen) { |
---|
782 | int st, fd, i; |
---|
783 | |
---|
784 | fd = socket(address->sa_family, SOCK_STREAM, 0); |
---|
785 | if (fd == -1 || connect(fd, address, addrlen) == -1) { |
---|
786 | log_message(LOGLVL_WARNING, "Failed to connect to RPC server: %s", strerror(errno)); |
---|
787 | if (fd != -1) |
---|
788 | closesocket(fd); |
---|
789 | return FALSE; |
---|
790 | } |
---|
791 | |
---|
792 | JSON_Value *rpc = rpc_init_isup(); |
---|
793 | char *s = json_serialize_to_string(rpc); |
---|
794 | json_value_free(rpc); |
---|
795 | |
---|
796 | int len = strlen(s); |
---|
797 | s = g_realloc(s, len + 3); |
---|
798 | strcpy(s + len, "\r\n"); |
---|
799 | len += 2; |
---|
800 | |
---|
801 | if ((st = write(fd, s, len)) != len) { |
---|
802 | log_message(LOGLVL_WARNING, "Error while writing to RPC server: %s", strerror(errno)); |
---|
803 | return FALSE; |
---|
804 | } |
---|
805 | g_free(s); |
---|
806 | |
---|
807 | char *resp = NULL; |
---|
808 | int buflen = 4096, resplen = 0; |
---|
809 | JSON_Value *parsed; |
---|
810 | do { |
---|
811 | fd_set rfds; |
---|
812 | struct timeval to; |
---|
813 | |
---|
814 | FD_ZERO(&rfds); |
---|
815 | FD_SET(fd, &rfds); |
---|
816 | to.tv_sec = 1; |
---|
817 | to.tv_usec = 0; |
---|
818 | st = select(fd + 1, &rfds, NULL, NULL, &to); |
---|
819 | |
---|
820 | if (st == 0) { |
---|
821 | log_message(LOGLVL_WARNING, "Error while reading from RPC server: %s", strerror(errno)); |
---|
822 | closesocket(fd); |
---|
823 | return FALSE; |
---|
824 | } |
---|
825 | |
---|
826 | if (resplen >= buflen) |
---|
827 | buflen *= 2; |
---|
828 | resp = g_realloc(resp, buflen + 1); |
---|
829 | st = read(fd, resp + resplen, buflen - resplen); |
---|
830 | if (st == -1) { |
---|
831 | if (sockerr_again()) |
---|
832 | continue; |
---|
833 | log_message(LOGLVL_WARNING, "Error while reading from RPC server: %s", strerror(errno)); |
---|
834 | closesocket(fd); |
---|
835 | return FALSE; |
---|
836 | } |
---|
837 | resplen += st; |
---|
838 | resp[resplen] = '\0'; |
---|
839 | } |
---|
840 | while (!(parsed = json_parse_string(resp))); |
---|
841 | closesocket(fd); |
---|
842 | |
---|
843 | JSON_Object *isup = json_object_get_object(json_object(parsed), "result"); |
---|
844 | if (isup == NULL) { |
---|
845 | log_message(LOGLVL_WARNING, "Error while parsing RPC server response"); |
---|
846 | return FALSE; |
---|
847 | } |
---|
848 | |
---|
849 | struct prpl *ret = g_new0(struct prpl, 1); |
---|
850 | struct rpc_plugin *proto_data = g_new0(struct rpc_plugin, 1); |
---|
851 | proto_data->addr = g_memdup(address, addrlen); |
---|
852 | proto_data->addrlen = addrlen; |
---|
853 | ret->name = g_strdup(json_object_get_string(isup, "name")); |
---|
854 | ret->data = proto_data; |
---|
855 | |
---|
856 | proto_data->account_flags = json_object_get_number(isup, "account_flags"); |
---|
857 | |
---|
858 | /* Keep a full copy of the settings list, we can only use it when we |
---|
859 | * have an account to work on. */ |
---|
860 | JSON_Value *settings = json_object_get_value(isup, "settings"); |
---|
861 | if (json_type(settings) == JSONObject) |
---|
862 | proto_data->settings = json_value_deep_copy(settings); |
---|
863 | |
---|
864 | JSON_Array *aways_a = json_object_get_array(isup, "away_state_list"); |
---|
865 | for (i = 0; i < json_array_get_count(aways_a); ++i) { |
---|
866 | JSON_Value *state = json_array_get_value(aways_a, i); |
---|
867 | if (json_type(state) == JSONString) |
---|
868 | proto_data->away_states = |
---|
869 | g_list_append(proto_data->away_states, |
---|
870 | g_strdup(json_string(state))); |
---|
871 | } |
---|
872 | |
---|
873 | JSON_Array *methods_a = json_object_get_array(isup, "method_list"); |
---|
874 | GHashTable *methods = g_hash_table_new(g_str_hash, g_str_equal); |
---|
875 | for (i = 0; i < json_array_get_count(methods_a); i++) |
---|
876 | g_hash_table_add(methods, (void*) json_array_get_string(methods_a, i)); |
---|
877 | |
---|
878 | ret->init = rpc_init; |
---|
879 | RPC_ADD_FUNC(login); |
---|
880 | RPC_ADD_FUNC(keepalive); |
---|
881 | RPC_ADD_FUNC(logout); |
---|
882 | RPC_ADD_FUNC(buddy_msg); |
---|
883 | RPC_ADD_FUNC(set_away); |
---|
884 | RPC_ADD_FUNC(send_typing); |
---|
885 | RPC_ADD_FUNC(add_buddy); |
---|
886 | RPC_ADD_FUNC(remove_buddy); |
---|
887 | RPC_ADD_FUNC(add_permit); |
---|
888 | RPC_ADD_FUNC(add_deny); |
---|
889 | RPC_ADD_FUNC(rem_permit); |
---|
890 | RPC_ADD_FUNC(rem_deny); |
---|
891 | RPC_ADD_FUNC(get_info); |
---|
892 | RPC_ADD_FUNC(chat_invite); |
---|
893 | RPC_ADD_FUNC(chat_kick); |
---|
894 | RPC_ADD_FUNC(chat_leave); |
---|
895 | RPC_ADD_FUNC(chat_msg); |
---|
896 | RPC_ADD_FUNC(chat_with); |
---|
897 | RPC_ADD_FUNC(chat_join); |
---|
898 | RPC_ADD_FUNC(chat_topic); |
---|
899 | if (proto_data->away_states) |
---|
900 | ret->away_states = rpc_away_states; |
---|
901 | |
---|
902 | g_hash_table_destroy(methods); |
---|
903 | |
---|
904 | // TODO: Property for a few standard nickcmp implementations. |
---|
905 | ret->handle_cmp = g_ascii_strcasecmp; |
---|
906 | |
---|
907 | register_protocol(ret); |
---|
908 | |
---|
909 | return TRUE; |
---|
910 | } |
---|
911 | |
---|
912 | #define PDIR "/tmp/rpcplugins" |
---|
913 | |
---|
914 | /* YA RLY :-/ */ |
---|
915 | #ifndef UNIX_PATH_MAX |
---|
916 | struct sockaddr_un sizecheck; |
---|
917 | #define UNIX_PATH_MAX sizeof(sizecheck.sun_path) |
---|
918 | #endif |
---|
919 | |
---|
920 | void rpc_initmodule() { |
---|
921 | DIR *pdir = opendir(PDIR); |
---|
922 | struct dirent *de; |
---|
923 | |
---|
924 | if (!pdir) |
---|
925 | return; |
---|
926 | |
---|
927 | while ((de = readdir(pdir))) { |
---|
928 | if (de->d_type != DT_SOCK && de->d_type != DT_UNKNOWN) |
---|
929 | continue; |
---|
930 | |
---|
931 | char *fn = g_build_filename(PDIR, de->d_name, NULL); |
---|
932 | struct sockaddr_un su; |
---|
933 | |
---|
934 | strncpy(su.sun_path, fn, UNIX_PATH_MAX); |
---|
935 | |
---|
936 | #if 0 |
---|
937 | struct stat fdata; |
---|
938 | if (stat(fn, &fdata) == -1) { |
---|
939 | log_message(LOGLVL_WARNING, "Could not stat %s: %s", fn, strerror(errno)); |
---|
940 | g_free(fn); |
---|
941 | continue; |
---|
942 | } |
---|
943 | /* For now just skip anything that is not a Unix domain socket. */ |
---|
944 | if (!S_ISSOCK(fdata.st_mode)) |
---|
945 | continue; |
---|
946 | #endif |
---|
947 | |
---|
948 | su.sun_path[UNIX_PATH_MAX-1] = '\0'; |
---|
949 | su.sun_family = AF_UNIX; |
---|
950 | gboolean st = rpc_initmodule_sock((struct sockaddr*) &su, sizeof(su)); |
---|
951 | g_free(fn); |
---|
952 | if (!st) |
---|
953 | log_message(LOGLVL_WARNING, "Failed to register protocol %s", fn); |
---|
954 | /* Idea: Also support textfiles containing a host:port tuple to |
---|
955 | * connect to. Not that remote RPC'ing would be a great idea, |
---|
956 | * but maybe some jsonrpc libs don't support Unix domain sockets. */ |
---|
957 | } |
---|
958 | closedir(pdir); |
---|
959 | } |
---|
960 | |
---|