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