]> git.proxmox.com Git - mirror_ovs.git/blame - lib/jsonrpc.c
bfd: Support overlay BFD
[mirror_ovs.git] / lib / jsonrpc.c
CommitLineData
f2129093 1/*
8cf6bbb1 2 * Copyright (c) 2009-2017 Nicira, Inc.
f2129093
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <config.h>
18
19#include "jsonrpc.h"
20
21#include <errno.h>
22
23#include "byteq.h"
3e8a2ad1 24#include "openvswitch/dynamic-string.h"
b302749b 25#include "fatal-signal.h"
ee89ea7b 26#include "openvswitch/json.h"
b19bab5b 27#include "openvswitch/list.h"
64c96779 28#include "openvswitch/ofpbuf.h"
d7eea710 29#include "ovs-thread.h"
fd016ae3 30#include "openvswitch/poll-loop.h"
dcbb691b 31#include "reconnect.h"
f2129093 32#include "stream.h"
8cf6bbb1 33#include "svec.h"
dcbb691b 34#include "timeval.h"
e6211adc 35#include "openvswitch/vlog.h"
5136ce49 36
d98e6007 37VLOG_DEFINE_THIS_MODULE(jsonrpc);
f2129093
BP
38\f
39struct jsonrpc {
40 struct stream *stream;
41 char *name;
42 int status;
43
44 /* Input. */
45 struct byteq input;
ea5c1ba0 46 uint8_t input_buffer[4096];
f2129093 47 struct json_parser *parser;
f2129093
BP
48
49 /* Output. */
ca6ba700 50 struct ovs_list output; /* Contains "struct ofpbuf"s. */
65b81af3 51 size_t output_count; /* Number of elements in "output". */
f2129093
BP
52 size_t backlog;
53};
54
55/* Rate limit for error messages. */
56static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 5);
57
79bda825 58static struct jsonrpc_msg *jsonrpc_parse_received_message(struct jsonrpc *);
f2129093 59static void jsonrpc_cleanup(struct jsonrpc *);
c1ce8fbf 60static void jsonrpc_error(struct jsonrpc *, int error);
f2129093 61
0d11f523 62/* This is just the same as stream_open() except that it uses the default
ca843648 63 * JSONRPC port if none is specified. */
0d11f523 64int
f125905c 65jsonrpc_stream_open(const char *name, struct stream **streamp, uint8_t dscp)
0d11f523 66{
d4763d1d 67 return stream_open_with_default_port(name, OVSDB_PORT, streamp, dscp);
0d11f523
BP
68}
69
70/* This is just the same as pstream_open() except that it uses the default
ca843648 71 * JSONRPC port if none is specified. */
0d11f523 72int
f125905c 73jsonrpc_pstream_open(const char *name, struct pstream **pstreamp, uint8_t dscp)
0d11f523 74{
d4763d1d 75 return pstream_open_with_default_port(name, OVSDB_PORT, pstreamp, dscp);
0d11f523
BP
76}
77
78fdd76d
BP
78/* Returns a new JSON-RPC stream that uses 'stream' for input and output. The
79 * new jsonrpc object takes ownership of 'stream'. */
f2129093
BP
80struct jsonrpc *
81jsonrpc_open(struct stream *stream)
82{
83 struct jsonrpc *rpc;
84
cb22974d 85 ovs_assert(stream != NULL);
f2129093
BP
86
87 rpc = xzalloc(sizeof *rpc);
88 rpc->name = xstrdup(stream_get_name(stream));
89 rpc->stream = stream;
00ecc5ce 90 byteq_init(&rpc->input, rpc->input_buffer, sizeof rpc->input_buffer);
417e7e66 91 ovs_list_init(&rpc->output);
f2129093
BP
92
93 return rpc;
94}
95
78fdd76d
BP
96/* Destroys 'rpc', closing the stream on which it is based, and frees its
97 * memory. */
f2129093
BP
98void
99jsonrpc_close(struct jsonrpc *rpc)
100{
101 if (rpc) {
102 jsonrpc_cleanup(rpc);
103 free(rpc->name);
104 free(rpc);
105 }
106}
107
78fdd76d 108/* Performs periodic maintenance on 'rpc', such as flushing output buffers. */
f2129093
BP
109void
110jsonrpc_run(struct jsonrpc *rpc)
111{
112 if (rpc->status) {
113 return;
114 }
115
539e96f6 116 stream_run(rpc->stream);
417e7e66 117 while (!ovs_list_is_empty(&rpc->output)) {
b3907fbc 118 struct ofpbuf *buf = ofpbuf_from_list(rpc->output.next);
f2129093
BP
119 int retval;
120
6fd6ed71 121 retval = stream_send(rpc->stream, buf->data, buf->size);
f2129093
BP
122 if (retval >= 0) {
123 rpc->backlog -= retval;
124 ofpbuf_pull(buf, retval);
6fd6ed71 125 if (!buf->size) {
417e7e66 126 ovs_list_remove(&buf->list_node);
65b81af3 127 rpc->output_count--;
b3907fbc 128 ofpbuf_delete(buf);
f2129093
BP
129 }
130 } else {
131 if (retval != -EAGAIN) {
132 VLOG_WARN_RL(&rl, "%s: send error: %s",
10a89ef0 133 rpc->name, ovs_strerror(-retval));
f2129093
BP
134 jsonrpc_error(rpc, -retval);
135 }
136 break;
137 }
138 }
139}
140
78fdd76d
BP
141/* Arranges for the poll loop to wake up when 'rpc' needs to perform
142 * maintenance activities. */
f2129093
BP
143void
144jsonrpc_wait(struct jsonrpc *rpc)
145{
539e96f6
BP
146 if (!rpc->status) {
147 stream_run_wait(rpc->stream);
417e7e66 148 if (!ovs_list_is_empty(&rpc->output)) {
539e96f6
BP
149 stream_send_wait(rpc->stream);
150 }
f2129093
BP
151 }
152}
153
c18ea70d 154/*
78fdd76d 155 * Returns the current status of 'rpc'. The possible return values are:
c18ea70d
AE
156 * - 0: no error yet
157 * - >0: errno value
78fdd76d
BP
158 * - EOF: end of file (remote end closed connection; not necessarily an error).
159 *
2a8e0b7c
JP
160 * When this function returns nonzero, 'rpc' is effectively out of
161 * commission. 'rpc' will not receive any more messages and any further
162 * messages that one attempts to send with 'rpc' will be discarded. The
163 * caller can keep 'rpc' around as long as it wants, but it's not going
164 * to provide any more useful services.
c18ea70d 165 */
f2129093
BP
166int
167jsonrpc_get_status(const struct jsonrpc *rpc)
168{
169 return rpc->status;
170}
171
78fdd76d
BP
172/* Returns the number of bytes buffered by 'rpc' to be written to the
173 * underlying stream. Always returns 0 if 'rpc' has encountered an error or if
174 * the remote end closed the connection. */
f2129093
BP
175size_t
176jsonrpc_get_backlog(const struct jsonrpc *rpc)
177{
178 return rpc->status ? 0 : rpc->backlog;
179}
180
3a8d38c8
BP
181/* Returns the number of bytes that have been received on 'rpc''s underlying
182 * stream. (The value wraps around if it exceeds UINT_MAX.) */
183unsigned int
184jsonrpc_get_received_bytes(const struct jsonrpc *rpc)
185{
186 return rpc->input.head;
187}
188
78fdd76d
BP
189/* Returns 'rpc''s name, that is, the name returned by stream_get_name() for
190 * the stream underlying 'rpc' when 'rpc' was created. */
f2129093
BP
191const char *
192jsonrpc_get_name(const struct jsonrpc *rpc)
193{
194 return rpc->name;
195}
196
1fd13cde
BP
197static void
198jsonrpc_log_msg(const struct jsonrpc *rpc, const char *title,
199 const struct jsonrpc_msg *msg)
200{
201 if (VLOG_IS_DBG_ENABLED()) {
202 struct ds s = DS_EMPTY_INITIALIZER;
203 if (msg->method) {
204 ds_put_format(&s, ", method=\"%s\"", msg->method);
205 }
206 if (msg->params) {
207 ds_put_cstr(&s, ", params=");
36d802ae 208 json_to_ds(msg->params, 0, &s);
1fd13cde
BP
209 }
210 if (msg->result) {
211 ds_put_cstr(&s, ", result=");
36d802ae 212 json_to_ds(msg->result, 0, &s);
1fd13cde
BP
213 }
214 if (msg->error) {
215 ds_put_cstr(&s, ", error=");
36d802ae 216 json_to_ds(msg->error, 0, &s);
1fd13cde
BP
217 }
218 if (msg->id) {
219 ds_put_cstr(&s, ", id=");
36d802ae 220 json_to_ds(msg->id, 0, &s);
1fd13cde
BP
221 }
222 VLOG_DBG("%s: %s %s%s", rpc->name, title,
223 jsonrpc_msg_type_to_string(msg->type), ds_cstr(&s));
224 ds_destroy(&s);
225 }
226}
227
78fdd76d
BP
228/* Schedules 'msg' to be sent on 'rpc' and returns 'rpc''s status (as with
229 * jsonrpc_get_status()).
230 *
231 * If 'msg' cannot be sent immediately, it is appended to a buffer. The caller
232 * is responsible for ensuring that the amount of buffered data is somehow
233 * limited. (jsonrpc_get_backlog() returns the amount of data currently
234 * buffered in 'rpc'.)
235 *
236 * Always takes ownership of 'msg', regardless of success. */
f2129093
BP
237int
238jsonrpc_send(struct jsonrpc *rpc, struct jsonrpc_msg *msg)
239{
240 struct ofpbuf *buf;
241 struct json *json;
71cc59f9 242 struct ds ds = DS_EMPTY_INITIALIZER;
f2129093 243 size_t length;
f2129093
BP
244
245 if (rpc->status) {
246 jsonrpc_msg_destroy(msg);
247 return rpc->status;
248 }
249
1fd13cde
BP
250 jsonrpc_log_msg(rpc, "send", msg);
251
f2129093 252 json = jsonrpc_msg_to_json(msg);
71cc59f9
AZ
253 json_to_ds(json, 0, &ds);
254 length = ds.length;
f2129093
BP
255 json_destroy(json);
256
257 buf = xmalloc(sizeof *buf);
2db02185 258 ofpbuf_use_ds(buf, &ds);
417e7e66 259 ovs_list_push_back(&rpc->output, &buf->list_node);
65b81af3 260 rpc->output_count++;
f2129093
BP
261 rpc->backlog += length;
262
65b81af3
AW
263 if (rpc->output_count >= 50) {
264 VLOG_INFO_RL(&rl, "excessive sending backlog, jsonrpc: %s, num of"
265 " msgs: %"PRIuSIZE", backlog: %"PRIuSIZE".", rpc->name,
266 rpc->output_count, rpc->backlog);
267 }
268
b3907fbc 269 if (rpc->backlog == length) {
f2129093
BP
270 jsonrpc_run(rpc);
271 }
272 return rpc->status;
273}
274
78fdd76d
BP
275/* Attempts to receive a message from 'rpc'.
276 *
277 * If successful, stores the received message in '*msgp' and returns 0. The
278 * caller takes ownership of '*msgp' and must eventually destroy it with
279 * jsonrpc_msg_destroy().
280 *
281 * Otherwise, stores NULL in '*msgp' and returns one of the following:
282 *
283 * - EAGAIN: No message has been received.
284 *
285 * - EOF: The remote end closed the connection gracefully.
286 *
287 * - Otherwise an errno value that represents a JSON-RPC protocol violation
288 * or another error fatal to the connection. 'rpc' will not send or
289 * receive any more messages.
290 */
f2129093
BP
291int
292jsonrpc_recv(struct jsonrpc *rpc, struct jsonrpc_msg **msgp)
293{
3a4548cf
BP
294 int i;
295
f2129093
BP
296 *msgp = NULL;
297 if (rpc->status) {
298 return rpc->status;
299 }
300
3a4548cf 301 for (i = 0; i < 50; i++) {
79bda825
BP
302 size_t n, used;
303
304 /* Fill our input buffer if it's empty. */
305 if (byteq_is_empty(&rpc->input)) {
f2129093
BP
306 size_t chunk;
307 int retval;
308
309 chunk = byteq_headroom(&rpc->input);
310 retval = stream_recv(rpc->stream, byteq_head(&rpc->input), chunk);
311 if (retval < 0) {
312 if (retval == -EAGAIN) {
313 return EAGAIN;
314 } else {
315 VLOG_WARN_RL(&rl, "%s: receive error: %s",
10a89ef0 316 rpc->name, ovs_strerror(-retval));
f2129093
BP
317 jsonrpc_error(rpc, -retval);
318 return rpc->status;
319 }
320 } else if (retval == 0) {
f2129093
BP
321 jsonrpc_error(rpc, EOF);
322 return EOF;
323 }
324 byteq_advance_head(&rpc->input, retval);
79bda825 325 }
f2129093 326
79bda825
BP
327 /* We have some input. Feed it into the JSON parser. */
328 if (!rpc->parser) {
329 rpc->parser = json_parser_create(0);
330 }
331 n = byteq_tailroom(&rpc->input);
332 used = json_parser_feed(rpc->parser,
333 (char *) byteq_tail(&rpc->input), n);
334 byteq_advance_tail(&rpc->input, used);
335
336 /* If we have complete JSON, attempt to parse it as JSON-RPC. */
337 if (json_parser_is_done(rpc->parser)) {
338 *msgp = jsonrpc_parse_received_message(rpc);
339 if (*msgp) {
340 return 0;
f2129093 341 }
79bda825
BP
342
343 if (rpc->status) {
344 const struct byteq *q = &rpc->input;
345 if (q->head <= q->size) {
346 stream_report_content(q->buffer, q->head, STREAM_JSONRPC,
922fed06 347 &this_module, rpc->name);
f2129093 348 }
79bda825 349 return rpc->status;
f2129093
BP
350 }
351 }
352 }
353
3a4548cf 354 return EAGAIN;
f2129093
BP
355}
356
78fdd76d
BP
357/* Causes the poll loop to wake up when jsonrpc_recv() may return a value other
358 * than EAGAIN. */
f2129093
BP
359void
360jsonrpc_recv_wait(struct jsonrpc *rpc)
361{
79bda825 362 if (rpc->status || !byteq_is_empty(&rpc->input)) {
5453ae20 363 poll_immediate_wake_at(rpc->name);
f2129093
BP
364 } else {
365 stream_recv_wait(rpc->stream);
366 }
367}
368
78fdd76d
BP
369/* Sends 'msg' on 'rpc' and waits for it to be successfully queued to the
370 * underlying stream. Returns 0 if 'msg' was sent successfully, otherwise a
371 * status value (see jsonrpc_get_status()).
372 *
373 * Always takes ownership of 'msg', regardless of success. */
f2129093
BP
374int
375jsonrpc_send_block(struct jsonrpc *rpc, struct jsonrpc_msg *msg)
376{
377 int error;
378
b302749b
BP
379 fatal_signal_run();
380
f2129093
BP
381 error = jsonrpc_send(rpc, msg);
382 if (error) {
383 return error;
384 }
385
f3d00a23 386 for (;;) {
f2129093 387 jsonrpc_run(rpc);
417e7e66 388 if (ovs_list_is_empty(&rpc->output) || rpc->status) {
f3d00a23
BP
389 return rpc->status;
390 }
f2129093
BP
391 jsonrpc_wait(rpc);
392 poll_block();
393 }
f2129093
BP
394}
395
78fdd76d
BP
396/* Waits for a message to be received on 'rpc'. Same semantics as
397 * jsonrpc_recv() except that EAGAIN will never be returned. */
f2129093
BP
398int
399jsonrpc_recv_block(struct jsonrpc *rpc, struct jsonrpc_msg **msgp)
400{
401 for (;;) {
402 int error = jsonrpc_recv(rpc, msgp);
403 if (error != EAGAIN) {
b302749b 404 fatal_signal_run();
f2129093
BP
405 return error;
406 }
407
408 jsonrpc_run(rpc);
409 jsonrpc_wait(rpc);
410 jsonrpc_recv_wait(rpc);
411 poll_block();
412 }
413}
414
78fdd76d
BP
415/* Sends 'request' to 'rpc' then waits for a reply. The return value is 0 if
416 * successful, in which case '*replyp' is set to the reply, which the caller
417 * must eventually free with jsonrpc_msg_destroy(). Otherwise returns a status
418 * value (see jsonrpc_get_status()).
419 *
420 * Discards any message received on 'rpc' that is not a reply to 'request'
421 * (based on message id).
422 *
423 * Always takes ownership of 'request', regardless of success. */
d0632593
BP
424int
425jsonrpc_transact_block(struct jsonrpc *rpc, struct jsonrpc_msg *request,
426 struct jsonrpc_msg **replyp)
427{
428 struct jsonrpc_msg *reply = NULL;
429 struct json *id;
430 int error;
431
432 id = json_clone(request->id);
433 error = jsonrpc_send_block(rpc, request);
434 if (!error) {
435 for (;;) {
436 error = jsonrpc_recv_block(rpc, &reply);
d35f8e72
EJ
437 if (error) {
438 break;
439 }
440 if ((reply->type == JSONRPC_REPLY || reply->type == JSONRPC_ERROR)
441 && json_equal(id, reply->id)) {
d0632593
BP
442 break;
443 }
444 jsonrpc_msg_destroy(reply);
445 }
446 }
447 *replyp = error ? NULL : reply;
448 json_destroy(id);
449 return error;
450}
451
79bda825
BP
452/* Attempts to parse the content of 'rpc->parser' (which is complete JSON) as a
453 * JSON-RPC message. If successful, returns the JSON-RPC message. On failure,
454 * signals an error on 'rpc' with jsonrpc_error() and returns NULL. */
455static struct jsonrpc_msg *
456jsonrpc_parse_received_message(struct jsonrpc *rpc)
f2129093
BP
457{
458 struct jsonrpc_msg *msg;
459 struct json *json;
460 char *error;
461
462 json = json_parser_finish(rpc->parser);
463 rpc->parser = NULL;
464 if (json->type == JSON_STRING) {
465 VLOG_WARN_RL(&rl, "%s: error parsing stream: %s",
466 rpc->name, json_string(json));
467 jsonrpc_error(rpc, EPROTO);
468 json_destroy(json);
79bda825 469 return NULL;
f2129093
BP
470 }
471
472 error = jsonrpc_msg_from_json(json, &msg);
473 if (error) {
474 VLOG_WARN_RL(&rl, "%s: received bad JSON-RPC message: %s",
475 rpc->name, error);
476 free(error);
477 jsonrpc_error(rpc, EPROTO);
79bda825 478 return NULL;
f2129093
BP
479 }
480
1fd13cde 481 jsonrpc_log_msg(rpc, "received", msg);
79bda825 482 return msg;
f2129093
BP
483}
484
c1ce8fbf 485static void
f2129093
BP
486jsonrpc_error(struct jsonrpc *rpc, int error)
487{
cb22974d 488 ovs_assert(error);
f2129093
BP
489 if (!rpc->status) {
490 rpc->status = error;
491 jsonrpc_cleanup(rpc);
492 }
493}
494
495static void
496jsonrpc_cleanup(struct jsonrpc *rpc)
497{
498 stream_close(rpc->stream);
499 rpc->stream = NULL;
500
501 json_parser_abort(rpc->parser);
502 rpc->parser = NULL;
503
b3907fbc 504 ofpbuf_list_delete(&rpc->output);
f2129093 505 rpc->backlog = 0;
65b81af3 506 rpc->output_count = 0;
f2129093
BP
507}
508\f
509static struct jsonrpc_msg *
510jsonrpc_create(enum jsonrpc_msg_type type, const char *method,
511 struct json *params, struct json *result, struct json *error,
512 struct json *id)
513{
514 struct jsonrpc_msg *msg = xmalloc(sizeof *msg);
515 msg->type = type;
2225c0b9 516 msg->method = nullable_xstrdup(method);
f2129093
BP
517 msg->params = params;
518 msg->result = result;
519 msg->error = error;
520 msg->id = id;
521 return msg;
522}
523
524static struct json *
525jsonrpc_create_id(void)
526{
ca4fbdfe 527 static atomic_count next_id = ATOMIC_COUNT_INIT(0);
d7eea710
BP
528 unsigned int id;
529
ca4fbdfe 530 id = atomic_count_inc(&next_id);
d7eea710 531 return json_integer_create(id);
f2129093
BP
532}
533
534struct jsonrpc_msg *
20bed8be
BP
535jsonrpc_create_request(const char *method, struct json *params,
536 struct json **idp)
f2129093 537{
20bed8be
BP
538 struct json *id = jsonrpc_create_id();
539 if (idp) {
540 *idp = json_clone(id);
541 }
542 return jsonrpc_create(JSONRPC_REQUEST, method, params, NULL, NULL, id);
f2129093
BP
543}
544
545struct jsonrpc_msg *
546jsonrpc_create_notify(const char *method, struct json *params)
547{
548 return jsonrpc_create(JSONRPC_NOTIFY, method, params, NULL, NULL, NULL);
549}
550
551struct jsonrpc_msg *
552jsonrpc_create_reply(struct json *result, const struct json *id)
553{
554 return jsonrpc_create(JSONRPC_REPLY, NULL, NULL, result, NULL,
555 json_clone(id));
556}
557
558struct jsonrpc_msg *
559jsonrpc_create_error(struct json *error, const struct json *id)
560{
561 return jsonrpc_create(JSONRPC_REPLY, NULL, NULL, NULL, error,
562 json_clone(id));
563}
564
1b1d2e6d
BP
565struct jsonrpc_msg *
566jsonrpc_msg_clone(const struct jsonrpc_msg *old)
567{
568 return jsonrpc_create(old->type, old->method,
569 json_nullable_clone(old->params),
570 json_nullable_clone(old->result),
571 json_nullable_clone(old->error),
572 json_nullable_clone(old->id));
573}
574
f2129093
BP
575const char *
576jsonrpc_msg_type_to_string(enum jsonrpc_msg_type type)
577{
578 switch (type) {
579 case JSONRPC_REQUEST:
580 return "request";
581
582 case JSONRPC_NOTIFY:
583 return "notification";
584
585 case JSONRPC_REPLY:
586 return "reply";
587
588 case JSONRPC_ERROR:
589 return "error";
590 }
591 return "(null)";
592}
593
594char *
595jsonrpc_msg_is_valid(const struct jsonrpc_msg *m)
596{
597 const char *type_name;
598 unsigned int pattern;
599
600 if (m->params && m->params->type != JSON_ARRAY) {
601 return xstrdup("\"params\" must be JSON array");
602 }
603
604 switch (m->type) {
605 case JSONRPC_REQUEST:
606 pattern = 0x11001;
607 break;
608
609 case JSONRPC_NOTIFY:
610 pattern = 0x11000;
611 break;
612
613 case JSONRPC_REPLY:
614 pattern = 0x00101;
615 break;
616
617 case JSONRPC_ERROR:
618 pattern = 0x00011;
619 break;
620
621 default:
622 return xasprintf("invalid JSON-RPC message type %d", m->type);
623 }
624
625 type_name = jsonrpc_msg_type_to_string(m->type);
626 if ((m->method != NULL) != ((pattern & 0x10000) != 0)) {
627 return xasprintf("%s must%s have \"method\"",
628 type_name, (pattern & 0x10000) ? "" : " not");
629
630 }
631 if ((m->params != NULL) != ((pattern & 0x1000) != 0)) {
632 return xasprintf("%s must%s have \"params\"",
633 type_name, (pattern & 0x1000) ? "" : " not");
634
635 }
636 if ((m->result != NULL) != ((pattern & 0x100) != 0)) {
637 return xasprintf("%s must%s have \"result\"",
638 type_name, (pattern & 0x100) ? "" : " not");
639
640 }
641 if ((m->error != NULL) != ((pattern & 0x10) != 0)) {
642 return xasprintf("%s must%s have \"error\"",
643 type_name, (pattern & 0x10) ? "" : " not");
644
645 }
646 if ((m->id != NULL) != ((pattern & 0x1) != 0)) {
647 return xasprintf("%s must%s have \"id\"",
648 type_name, (pattern & 0x1) ? "" : " not");
649
650 }
651 return NULL;
652}
653
654void
655jsonrpc_msg_destroy(struct jsonrpc_msg *m)
656{
657 if (m) {
658 free(m->method);
659 json_destroy(m->params);
660 json_destroy(m->result);
661 json_destroy(m->error);
662 json_destroy(m->id);
663 free(m);
664 }
665}
666
667static struct json *
668null_from_json_null(struct json *json)
669{
670 if (json && json->type == JSON_NULL) {
671 json_destroy(json);
672 return NULL;
673 }
674 return json;
675}
676
677char *
678jsonrpc_msg_from_json(struct json *json, struct jsonrpc_msg **msgp)
679{
680 struct json *method = NULL;
681 struct jsonrpc_msg *msg = NULL;
682 struct shash *object;
683 char *error;
684
685 if (json->type != JSON_OBJECT) {
686 error = xstrdup("message is not a JSON object");
687 goto exit;
688 }
689 object = json_object(json);
690
691 method = shash_find_and_delete(object, "method");
692 if (method && method->type != JSON_STRING) {
693 error = xstrdup("method is not a JSON string");
694 goto exit;
695 }
696
697 msg = xzalloc(sizeof *msg);
fa37affa 698 msg->method = method ? xstrdup(method->string) : NULL;
f2129093
BP
699 msg->params = null_from_json_null(shash_find_and_delete(object, "params"));
700 msg->result = null_from_json_null(shash_find_and_delete(object, "result"));
701 msg->error = null_from_json_null(shash_find_and_delete(object, "error"));
702 msg->id = null_from_json_null(shash_find_and_delete(object, "id"));
703 msg->type = (msg->result ? JSONRPC_REPLY
704 : msg->error ? JSONRPC_ERROR
705 : msg->id ? JSONRPC_REQUEST
706 : JSONRPC_NOTIFY);
707 if (!shash_is_empty(object)) {
708 error = xasprintf("message has unexpected member \"%s\"",
709 shash_first(object)->name);
710 goto exit;
711 }
712 error = jsonrpc_msg_is_valid(msg);
713 if (error) {
714 goto exit;
715 }
716
717exit:
718 json_destroy(method);
719 json_destroy(json);
720 if (error) {
721 jsonrpc_msg_destroy(msg);
722 msg = NULL;
723 }
724 *msgp = msg;
725 return error;
726}
727
303566c5
BP
728/* Returns 'm' converted to JSON suitable for sending as a JSON-RPC message.
729 *
730 * Consumes and destroys 'm'. */
f2129093
BP
731struct json *
732jsonrpc_msg_to_json(struct jsonrpc_msg *m)
733{
734 struct json *json = json_object_create();
735
736 if (m->method) {
737 json_object_put(json, "method", json_string_create_nocopy(m->method));
738 }
739
740 if (m->params) {
741 json_object_put(json, "params", m->params);
742 }
743
744 if (m->result) {
745 json_object_put(json, "result", m->result);
746 } else if (m->type == JSONRPC_ERROR) {
747 json_object_put(json, "result", json_null_create());
748 }
749
750 if (m->error) {
751 json_object_put(json, "error", m->error);
752 } else if (m->type == JSONRPC_REPLY) {
753 json_object_put(json, "error", json_null_create());
754 }
755
756 if (m->id) {
757 json_object_put(json, "id", m->id);
758 } else if (m->type == JSONRPC_NOTIFY) {
759 json_object_put(json, "id", json_null_create());
760 }
761
762 free(m);
763
764 return json;
765}
1b1d2e6d
BP
766
767char *
768jsonrpc_msg_to_string(const struct jsonrpc_msg *m)
769{
770 struct jsonrpc_msg *copy = jsonrpc_msg_clone(m);
771 struct json *json = jsonrpc_msg_to_json(copy);
772 char *s = json_to_string(json, JSSF_SORT);
773 json_destroy(json);
774 return s;
775}
dcbb691b
BP
776\f
777/* A JSON-RPC session with reconnection. */
778
779struct jsonrpc_session {
8cf6bbb1
BP
780 struct svec remotes;
781 size_t next_remote;
782
dcbb691b
BP
783 struct reconnect *reconnect;
784 struct jsonrpc *rpc;
785 struct stream *stream;
c9f3f37a 786 struct pstream *pstream;
fba6bd1d 787 int last_error;
dcbb691b 788 unsigned int seqno;
317f6420 789 uint8_t dscp;
dcbb691b
BP
790};
791
8cf6bbb1
BP
792static void
793jsonrpc_session_pick_remote(struct jsonrpc_session *s)
794{
795 reconnect_set_name(s->reconnect,
796 s->remotes.names[s->next_remote++ % s->remotes.n]);
797}
798
c9f3f37a
BP
799/* Creates and returns a jsonrpc_session to 'name', which should be a string
800 * acceptable to stream_open() or pstream_open().
801 *
802 * If 'name' is an active connection method, e.g. "tcp:127.1.2.3", the new
fba6bd1d
BP
803 * jsonrpc_session connects to 'name'. If 'retry' is true, then the new
804 * session connects and reconnects to 'name', with backoff. If 'retry' is
805 * false, the new session will only try to connect once and after a connection
806 * failure or a disconnection jsonrpc_session_is_alive() will return false for
807 * the new session.
c9f3f37a
BP
808 *
809 * If 'name' is a passive connection method, e.g. "ptcp:", the new
810 * jsonrpc_session listens for connections to 'name'. It maintains at most one
811 * connection at any given time. Any new connection causes the previous one
812 * (if any) to be dropped. */
dcbb691b 813struct jsonrpc_session *
fba6bd1d 814jsonrpc_session_open(const char *name, bool retry)
8cf6bbb1
BP
815{
816 const struct svec remotes = { .names = (char **) &name, .n = 1 };
817 return jsonrpc_session_open_multiple(&remotes, retry);
818}
819
820struct jsonrpc_session *
821jsonrpc_session_open_multiple(const struct svec *remotes, bool retry)
dcbb691b
BP
822{
823 struct jsonrpc_session *s;
824
825 s = xmalloc(sizeof *s);
8cf6bbb1 826
d5905055 827 /* Set 'n' remotes from 'names'. */
8cf6bbb1 828 svec_clone(&s->remotes, remotes);
f740828d
BP
829 if (!s->remotes.n) {
830 svec_add(&s->remotes, "invalid:");
831 }
8cf6bbb1
BP
832 s->next_remote = 0;
833
dcbb691b 834 s->reconnect = reconnect_create(time_msec());
8cf6bbb1 835 jsonrpc_session_pick_remote(s);
dcbb691b 836 reconnect_enable(s->reconnect, time_msec());
8cf6bbb1 837 reconnect_set_backoff_free_tries(s->reconnect, remotes->n);
dcbb691b
BP
838 s->rpc = NULL;
839 s->stream = NULL;
c9f3f37a 840 s->pstream = NULL;
dcbb691b 841 s->seqno = 0;
317f6420 842 s->dscp = 0;
fba6bd1d 843 s->last_error = 0;
dcbb691b 844
8cf6bbb1 845 const char *name = reconnect_get_name(s->reconnect);
c9f3f37a
BP
846 if (!pstream_verify_name(name)) {
847 reconnect_set_passive(s->reconnect, true, time_msec());
fba6bd1d 848 } else if (!retry) {
8cf6bbb1 849 reconnect_set_max_tries(s->reconnect, remotes->n);
fba6bd1d 850 reconnect_set_backoff(s->reconnect, INT_MAX, INT_MAX);
c9f3f37a
BP
851 }
852
f1936eb6
EJ
853 if (!stream_or_pstream_needs_probes(name)) {
854 reconnect_set_probe_interval(s->reconnect, 0);
855 }
856
dcbb691b
BP
857 return s;
858}
859
4931f33a 860/* Creates and returns a jsonrpc_session that is initially connected to
36a7b32d
BP
861 * 'jsonrpc'. If the connection is dropped, it will not be reconnected.
862 *
863 * On the assumption that such connections are likely to be short-lived
864 * (e.g. from ovs-vsctl), informational logging for them is suppressed. */
4931f33a 865struct jsonrpc_session *
e879d33e 866jsonrpc_session_open_unreliably(struct jsonrpc *jsonrpc, uint8_t dscp)
4931f33a
BP
867{
868 struct jsonrpc_session *s;
869
870 s = xmalloc(sizeof *s);
8cf6bbb1
BP
871 svec_init(&s->remotes);
872 svec_add(&s->remotes, jsonrpc_get_name(jsonrpc));
873 s->next_remote = 0;
4931f33a 874 s->reconnect = reconnect_create(time_msec());
36a7b32d 875 reconnect_set_quiet(s->reconnect, true);
4931f33a
BP
876 reconnect_set_name(s->reconnect, jsonrpc_get_name(jsonrpc));
877 reconnect_set_max_tries(s->reconnect, 0);
878 reconnect_connected(s->reconnect, time_msec());
e879d33e 879 s->dscp = dscp;
4931f33a
BP
880 s->rpc = jsonrpc;
881 s->stream = NULL;
c9f3f37a 882 s->pstream = NULL;
238f0052 883 s->seqno = 1;
4931f33a
BP
884
885 return s;
886}
887
dcbb691b
BP
888void
889jsonrpc_session_close(struct jsonrpc_session *s)
890{
891 if (s) {
892 jsonrpc_close(s->rpc);
893 reconnect_destroy(s->reconnect);
7c88a5dc 894 stream_close(s->stream);
c9f3f37a 895 pstream_close(s->pstream);
8cf6bbb1 896 svec_destroy(&s->remotes);
dcbb691b
BP
897 free(s);
898 }
899}
900
1b1d2e6d
BP
901struct jsonrpc *
902jsonrpc_session_steal(struct jsonrpc_session *s)
903{
904 struct jsonrpc *rpc = s->rpc;
905 s->rpc = NULL;
906 jsonrpc_session_close(s);
907 return rpc;
908}
909
dcbb691b
BP
910static void
911jsonrpc_session_disconnect(struct jsonrpc_session *s)
912{
dcbb691b
BP
913 if (s->rpc) {
914 jsonrpc_error(s->rpc, EOF);
915 jsonrpc_close(s->rpc);
916 s->rpc = NULL;
dcbb691b
BP
917 } else if (s->stream) {
918 stream_close(s->stream);
919 s->stream = NULL;
8cf6bbb1
BP
920 } else {
921 return;
dcbb691b 922 }
8cf6bbb1
BP
923
924 s->seqno++;
925 jsonrpc_session_pick_remote(s);
dcbb691b
BP
926}
927
928static void
929jsonrpc_session_connect(struct jsonrpc_session *s)
930{
c9f3f37a 931 const char *name = reconnect_get_name(s->reconnect);
dcbb691b
BP
932 int error;
933
934 jsonrpc_session_disconnect(s);
c9f3f37a 935 if (!reconnect_is_passive(s->reconnect)) {
317f6420 936 error = jsonrpc_stream_open(name, &s->stream, s->dscp);
c9f3f37a
BP
937 if (!error) {
938 reconnect_connecting(s->reconnect, time_msec());
fba6bd1d
BP
939 } else {
940 s->last_error = error;
c9f3f37a
BP
941 }
942 } else {
f125905c 943 error = s->pstream ? 0 : jsonrpc_pstream_open(name, &s->pstream,
317f6420 944 s->dscp);
c9f3f37a
BP
945 if (!error) {
946 reconnect_listening(s->reconnect, time_msec());
947 }
948 }
949
dcbb691b
BP
950 if (error) {
951 reconnect_connect_failed(s->reconnect, time_msec(), error);
8cf6bbb1 952 jsonrpc_session_pick_remote(s);
dcbb691b 953 }
dcbb691b
BP
954}
955
956void
957jsonrpc_session_run(struct jsonrpc_session *s)
958{
c9f3f37a
BP
959 if (s->pstream) {
960 struct stream *stream;
961 int error;
962
963 error = pstream_accept(s->pstream, &stream);
964 if (!error) {
965 if (s->rpc || s->stream) {
966 VLOG_INFO_RL(&rl,
967 "%s: new connection replacing active connection",
968 reconnect_get_name(s->reconnect));
969 jsonrpc_session_disconnect(s);
970 }
971 reconnect_connected(s->reconnect, time_msec());
972 s->rpc = jsonrpc_open(stream);
238f0052 973 s->seqno++;
c9f3f37a
BP
974 } else if (error != EAGAIN) {
975 reconnect_listen_error(s->reconnect, time_msec(), error);
976 pstream_close(s->pstream);
977 s->pstream = NULL;
978 }
979 }
980
dcbb691b 981 if (s->rpc) {
f97cae29 982 size_t backlog;
dcbb691b
BP
983 int error;
984
f97cae29 985 backlog = jsonrpc_get_backlog(s->rpc);
dcbb691b 986 jsonrpc_run(s->rpc);
f97cae29
BP
987 if (jsonrpc_get_backlog(s->rpc) < backlog) {
988 /* Data previously caught in a queue was successfully sent (or
989 * there's an error, which we'll catch below.)
990 *
991 * We don't count data that is successfully sent immediately as
992 * activity, because there's a lot of queuing downstream from us,
993 * which means that we can push a lot of data into a connection
994 * that has stalled and won't ever recover.
995 */
996 reconnect_activity(s->reconnect, time_msec());
997 }
998
dcbb691b
BP
999 error = jsonrpc_get_status(s->rpc);
1000 if (error) {
41630cfb 1001 reconnect_disconnected(s->reconnect, time_msec(), error);
dcbb691b 1002 jsonrpc_session_disconnect(s);
fba6bd1d 1003 s->last_error = error;
dcbb691b
BP
1004 }
1005 } else if (s->stream) {
539e96f6
BP
1006 int error;
1007
1008 stream_run(s->stream);
1009 error = stream_connect(s->stream);
dcbb691b
BP
1010 if (!error) {
1011 reconnect_connected(s->reconnect, time_msec());
1012 s->rpc = jsonrpc_open(s->stream);
1013 s->stream = NULL;
238f0052 1014 s->seqno++;
dcbb691b
BP
1015 } else if (error != EAGAIN) {
1016 reconnect_connect_failed(s->reconnect, time_msec(), error);
8cf6bbb1 1017 jsonrpc_session_pick_remote(s);
dcbb691b
BP
1018 stream_close(s->stream);
1019 s->stream = NULL;
5bf6cbd6 1020 s->last_error = error;
dcbb691b
BP
1021 }
1022 }
1023
1024 switch (reconnect_run(s->reconnect, time_msec())) {
1025 case RECONNECT_CONNECT:
1026 jsonrpc_session_connect(s);
1027 break;
1028
1029 case RECONNECT_DISCONNECT:
a1ae9a43 1030 reconnect_disconnected(s->reconnect, time_msec(), 0);
dcbb691b
BP
1031 jsonrpc_session_disconnect(s);
1032 break;
1033
1034 case RECONNECT_PROBE:
1035 if (s->rpc) {
1036 struct json *params;
1037 struct jsonrpc_msg *request;
1038
1039 params = json_array_create_empty();
20bed8be 1040 request = jsonrpc_create_request("echo", params, NULL);
dcbb691b
BP
1041 json_destroy(request->id);
1042 request->id = json_string_create("echo");
1043 jsonrpc_send(s->rpc, request);
1044 }
1045 break;
1046 }
1047}
1048
1049void
1050jsonrpc_session_wait(struct jsonrpc_session *s)
1051{
1052 if (s->rpc) {
1053 jsonrpc_wait(s->rpc);
1054 } else if (s->stream) {
539e96f6 1055 stream_run_wait(s->stream);
dcbb691b
BP
1056 stream_connect_wait(s->stream);
1057 }
c9f3f37a
BP
1058 if (s->pstream) {
1059 pstream_wait(s->pstream);
1060 }
dcbb691b
BP
1061 reconnect_wait(s->reconnect, time_msec());
1062}
1063
1064size_t
1065jsonrpc_session_get_backlog(const struct jsonrpc_session *s)
1066{
1067 return s->rpc ? jsonrpc_get_backlog(s->rpc) : 0;
1068}
1069
0b3e7a8b
AE
1070/* Always returns a pointer to a valid C string, assuming 's' was initialized
1071 * correctly. */
dcbb691b
BP
1072const char *
1073jsonrpc_session_get_name(const struct jsonrpc_session *s)
1074{
1075 return reconnect_get_name(s->reconnect);
1076}
1077
d6db7b3c
LR
1078const char *
1079jsonrpc_session_get_id(const struct jsonrpc_session *s)
1080{
1081 if (s->rpc && s->rpc->stream) {
1082 return stream_get_peer_id(s->rpc->stream);
1083 } else {
1084 return NULL;
1085 }
1086}
1087
8cf6bbb1
BP
1088size_t
1089jsonrpc_session_get_n_remotes(const struct jsonrpc_session *s)
1090{
1091 return s->remotes.n;
1092}
1093
7b8dbc8d 1094/* Always takes ownership of 'msg', regardless of success. */
dcbb691b
BP
1095int
1096jsonrpc_session_send(struct jsonrpc_session *s, struct jsonrpc_msg *msg)
1097{
7b8dbc8d
BP
1098 if (s->rpc) {
1099 return jsonrpc_send(s->rpc, msg);
1100 } else {
1101 jsonrpc_msg_destroy(msg);
1102 return ENOTCONN;
1103 }
dcbb691b
BP
1104}
1105
1106struct jsonrpc_msg *
1107jsonrpc_session_recv(struct jsonrpc_session *s)
1108{
dcbb691b 1109 if (s->rpc) {
3a8d38c8 1110 unsigned int received_bytes;
4931f33a 1111 struct jsonrpc_msg *msg;
3a8d38c8
BP
1112
1113 received_bytes = jsonrpc_get_received_bytes(s->rpc);
dcbb691b 1114 jsonrpc_recv(s->rpc, &msg);
3a8d38c8
BP
1115 if (received_bytes != jsonrpc_get_received_bytes(s->rpc)) {
1116 /* Data was successfully received.
1117 *
1118 * Previously we only counted receiving a full message as activity,
1119 * but with large messages or a slow connection that policy could
1120 * time out the session mid-message. */
a6f639f8 1121 reconnect_activity(s->reconnect, time_msec());
3a8d38c8
BP
1122 }
1123
1124 if (msg) {
4931f33a
BP
1125 if (msg->type == JSONRPC_REQUEST && !strcmp(msg->method, "echo")) {
1126 /* Echo request. Send reply. */
1127 struct jsonrpc_msg *reply;
1128
1129 reply = jsonrpc_create_reply(json_clone(msg->params), msg->id);
1130 jsonrpc_session_send(s, reply);
1131 } else if (msg->type == JSONRPC_REPLY
33ff0dce 1132 && msg->id && msg->id->type == JSON_STRING
fa37affa 1133 && !strcmp(msg->id->string, "echo")) {
4931f33a
BP
1134 /* It's a reply to our echo request. Suppress it. */
1135 } else {
1136 return msg;
1137 }
1138 jsonrpc_msg_destroy(msg);
dcbb691b
BP
1139 }
1140 }
4931f33a 1141 return NULL;
dcbb691b
BP
1142}
1143
1144void
1145jsonrpc_session_recv_wait(struct jsonrpc_session *s)
1146{
1147 if (s->rpc) {
1148 jsonrpc_recv_wait(s->rpc);
1149 }
1150}
1151
2e2f242e 1152/* Returns true if 's' is currently connected or trying to connect. */
4931f33a
BP
1153bool
1154jsonrpc_session_is_alive(const struct jsonrpc_session *s)
1155{
1156 return s->rpc || s->stream || reconnect_get_max_tries(s->reconnect);
1157}
1158
2e2f242e 1159/* Returns true if 's' is currently connected. */
dcbb691b
BP
1160bool
1161jsonrpc_session_is_connected(const struct jsonrpc_session *s)
1162{
1163 return s->rpc != NULL;
1164}
1165
2e2f242e
BP
1166/* Returns a sequence number for 's'. The sequence number increments every
1167 * time 's' connects or disconnects. Thus, a caller can use the change (or
1168 * lack of change) in the sequence number to figure out whether the underlying
1169 * connection is the same as before. */
dcbb691b
BP
1170unsigned int
1171jsonrpc_session_get_seqno(const struct jsonrpc_session *s)
1172{
1173 return s->seqno;
1174}
1175
2e2f242e
BP
1176/* Returns the current status of 's'. If 's' is NULL or is disconnected, this
1177 * is 0, otherwise it is the status of the connection, as reported by
1178 * jsonrpc_get_status(). */
0b3e7a8b
AE
1179int
1180jsonrpc_session_get_status(const struct jsonrpc_session *s)
1181{
1182 return s && s->rpc ? jsonrpc_get_status(s->rpc) : 0;
1183}
1184
2e2f242e
BP
1185/* Returns the last error reported on a connection by 's'. The return value is
1186 * 0 only if no connection made by 's' has ever encountered an error. See
1187 * jsonrpc_get_status() for return value interpretation. */
fba6bd1d
BP
1188int
1189jsonrpc_session_get_last_error(const struct jsonrpc_session *s)
1190{
1191 return s->last_error;
1192}
1193
2e2f242e 1194/* Populates 'stats' with statistics from 's'. */
0b3e7a8b
AE
1195void
1196jsonrpc_session_get_reconnect_stats(const struct jsonrpc_session *s,
1197 struct reconnect_stats *stats)
1198{
1199 reconnect_get_stats(s->reconnect, time_msec(), stats);
1200}
1201
2e2f242e 1202/* Enables 's' to reconnect to the peer if the connection drops. */
705d7a39
AA
1203void
1204jsonrpc_session_enable_reconnect(struct jsonrpc_session *s)
1205{
1206 reconnect_set_max_tries(s->reconnect, UINT_MAX);
1207 reconnect_set_backoff(s->reconnect, RECONNECT_DEFAULT_MIN_BACKOFF,
1208 RECONNECT_DEFAULT_MAX_BACKOFF);
1209}
1210
2e2f242e 1211/* Forces 's' to drop its connection (if any) and reconnect. */
dcbb691b
BP
1212void
1213jsonrpc_session_force_reconnect(struct jsonrpc_session *s)
1214{
1215 reconnect_force_reconnect(s->reconnect, time_msec());
1216}
94db5407 1217
2e2f242e
BP
1218/* Sets 'max_backoff' as the maximum time, in milliseconds, to wait after a
1219 * connection attempt fails before attempting to connect again. */
94db5407
BP
1220void
1221jsonrpc_session_set_max_backoff(struct jsonrpc_session *s, int max_backoff)
1222{
1223 reconnect_set_backoff(s->reconnect, 0, max_backoff);
1224}
1225
2e2f242e
BP
1226/* Sets the "probe interval" for 's' to 'probe_interval', in milliseconds. If
1227 * this is zero, it disables the connection keepalive feature. Otherwise, if
1228 * 's' is idle for 'probe_interval' milliseconds then 's' will send an echo
1229 * request and, if no reply is received within an additional 'probe_interval'
1230 * milliseconds, close the connection (then reconnect, if that feature is
1231 * enabled). */
94db5407
BP
1232void
1233jsonrpc_session_set_probe_interval(struct jsonrpc_session *s,
1234 int probe_interval)
1235{
1236 reconnect_set_probe_interval(s->reconnect, probe_interval);
1237}
f125905c 1238
2e2f242e
BP
1239/* Sets the DSCP value used for 's''s connection to 'dscp'. If this is
1240 * different from the DSCP value currently in use then the connection is closed
1241 * and reconnected. */
f125905c 1242void
2e2f242e 1243jsonrpc_session_set_dscp(struct jsonrpc_session *s, uint8_t dscp)
f125905c 1244{
0442efd9 1245 if (s->dscp != dscp) {
c2e3cbaf
BP
1246 pstream_close(s->pstream);
1247 s->pstream = NULL;
e879d33e 1248
0442efd9
MM
1249 s->dscp = dscp;
1250 jsonrpc_session_force_reconnect(s);
1251 }
f125905c 1252}