2009-10-26 15:04:05 -07:00
|
|
|
|
/*
|
2018-01-22 11:09:40 -08:00
|
|
|
|
* Copyright (c) 2009, 2010, 2012, 2013, 2017 Nicira, Inc.
|
2009-10-26 15:04:05 -07:00
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef JSONRPC_H
|
|
|
|
|
#define JSONRPC_H 1
|
|
|
|
|
|
|
|
|
|
/* This is an implementation of the JSON-RPC 1.0 specification defined at
|
|
|
|
|
* http://json-rpc.org/wiki/specification. */
|
|
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <stddef.h>
|
2012-03-10 15:58:10 -08:00
|
|
|
|
#include "openvswitch/types.h"
|
2009-10-26 15:04:05 -07:00
|
|
|
|
|
|
|
|
|
struct json;
|
|
|
|
|
struct jsonrpc_msg;
|
2010-03-18 12:59:34 -07:00
|
|
|
|
struct pstream;
|
2011-01-28 15:39:55 -08:00
|
|
|
|
struct reconnect_stats;
|
2009-10-26 15:04:05 -07:00
|
|
|
|
struct stream;
|
2018-01-22 11:09:40 -08:00
|
|
|
|
struct svec;
|
2009-10-26 15:04:05 -07:00
|
|
|
|
|
|
|
|
|
/* API for a JSON-RPC stream. */
|
|
|
|
|
|
2013-08-30 17:20:29 -07:00
|
|
|
|
/* Default port numbers.
|
2010-03-18 12:59:34 -07:00
|
|
|
|
*
|
2013-08-30 17:20:29 -07:00
|
|
|
|
* OVSDB_OLD_PORT defines the original port number used by OVS.
|
2015-03-11 13:32:01 -07:00
|
|
|
|
* OVSDB_PORT defines the official port number assigned by IANA. */
|
2013-08-30 17:20:29 -07:00
|
|
|
|
#define OVSDB_OLD_PORT 6632
|
|
|
|
|
#define OVSDB_PORT 6640
|
2010-03-18 12:59:34 -07:00
|
|
|
|
|
2012-03-10 15:58:10 -08:00
|
|
|
|
int jsonrpc_stream_open(const char *name, struct stream **, uint8_t dscp);
|
|
|
|
|
int jsonrpc_pstream_open(const char *name, struct pstream **, uint8_t dscp);
|
2010-03-18 12:59:34 -07:00
|
|
|
|
|
2009-10-26 15:04:05 -07:00
|
|
|
|
struct jsonrpc *jsonrpc_open(struct stream *);
|
|
|
|
|
void jsonrpc_close(struct jsonrpc *);
|
|
|
|
|
|
|
|
|
|
void jsonrpc_run(struct jsonrpc *);
|
|
|
|
|
void jsonrpc_wait(struct jsonrpc *);
|
|
|
|
|
|
|
|
|
|
int jsonrpc_get_status(const struct jsonrpc *);
|
|
|
|
|
size_t jsonrpc_get_backlog(const struct jsonrpc *);
|
2020-10-21 03:32:49 +02:00
|
|
|
|
void jsonrpc_set_backlog_threshold(struct jsonrpc *, size_t max_n_msgs,
|
|
|
|
|
size_t max_backlog_bytes);
|
|
|
|
|
|
2012-09-05 13:34:35 -07:00
|
|
|
|
unsigned int jsonrpc_get_received_bytes(const struct jsonrpc *);
|
2009-10-26 15:04:05 -07:00
|
|
|
|
const char *jsonrpc_get_name(const struct jsonrpc *);
|
|
|
|
|
|
|
|
|
|
int jsonrpc_send(struct jsonrpc *, struct jsonrpc_msg *);
|
|
|
|
|
int jsonrpc_recv(struct jsonrpc *, struct jsonrpc_msg **);
|
|
|
|
|
void jsonrpc_recv_wait(struct jsonrpc *);
|
|
|
|
|
|
|
|
|
|
int jsonrpc_send_block(struct jsonrpc *, struct jsonrpc_msg *);
|
|
|
|
|
int jsonrpc_recv_block(struct jsonrpc *, struct jsonrpc_msg **);
|
2009-11-06 15:35:34 -08:00
|
|
|
|
int jsonrpc_transact_block(struct jsonrpc *, struct jsonrpc_msg *,
|
|
|
|
|
struct jsonrpc_msg **);
|
2009-10-26 15:04:05 -07:00
|
|
|
|
|
|
|
|
|
/* Messages. */
|
|
|
|
|
enum jsonrpc_msg_type {
|
|
|
|
|
JSONRPC_REQUEST, /* Request. */
|
|
|
|
|
JSONRPC_NOTIFY, /* Notification. */
|
|
|
|
|
JSONRPC_REPLY, /* Successful reply. */
|
|
|
|
|
JSONRPC_ERROR /* Error reply. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct jsonrpc_msg {
|
|
|
|
|
enum jsonrpc_msg_type type;
|
|
|
|
|
char *method; /* Request or notification only. */
|
|
|
|
|
struct json *params; /* Request or notification only. */
|
|
|
|
|
struct json *result; /* Successful reply only. */
|
|
|
|
|
struct json *error; /* Error reply only. */
|
|
|
|
|
struct json *id; /* Request or reply only. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct jsonrpc_msg *jsonrpc_create_request(const char *method,
|
2009-12-01 16:32:03 -08:00
|
|
|
|
struct json *params,
|
|
|
|
|
struct json **idp);
|
2009-10-26 15:04:05 -07:00
|
|
|
|
struct jsonrpc_msg *jsonrpc_create_notify(const char *method,
|
|
|
|
|
struct json *params);
|
|
|
|
|
struct jsonrpc_msg *jsonrpc_create_reply(struct json *result,
|
|
|
|
|
const struct json *id);
|
|
|
|
|
struct jsonrpc_msg *jsonrpc_create_error(struct json *error,
|
|
|
|
|
const struct json *id);
|
|
|
|
|
|
2017-12-31 21:15:58 -08:00
|
|
|
|
struct jsonrpc_msg *jsonrpc_msg_clone(const struct jsonrpc_msg *);
|
|
|
|
|
|
2009-10-26 15:04:05 -07:00
|
|
|
|
const char *jsonrpc_msg_type_to_string(enum jsonrpc_msg_type);
|
|
|
|
|
char *jsonrpc_msg_is_valid(const struct jsonrpc_msg *);
|
|
|
|
|
void jsonrpc_msg_destroy(struct jsonrpc_msg *);
|
|
|
|
|
|
|
|
|
|
char *jsonrpc_msg_from_json(struct json *, struct jsonrpc_msg **);
|
|
|
|
|
struct json *jsonrpc_msg_to_json(struct jsonrpc_msg *);
|
2017-12-31 21:15:58 -08:00
|
|
|
|
|
|
|
|
|
char *jsonrpc_msg_to_string(const struct jsonrpc_msg *);
|
2009-12-02 10:50:18 -08:00
|
|
|
|
|
|
|
|
|
/* A JSON-RPC session with reconnection. */
|
|
|
|
|
|
2013-03-15 16:14:28 -07:00
|
|
|
|
struct jsonrpc_session *jsonrpc_session_open(const char *name, bool retry);
|
2018-01-22 11:09:40 -08:00
|
|
|
|
struct jsonrpc_session *jsonrpc_session_open_multiple(const struct svec *,
|
|
|
|
|
bool retry);
|
2012-10-04 12:33:05 -07:00
|
|
|
|
struct jsonrpc_session *jsonrpc_session_open_unreliably(struct jsonrpc *,
|
|
|
|
|
uint8_t);
|
2009-12-02 10:50:18 -08:00
|
|
|
|
void jsonrpc_session_close(struct jsonrpc_session *);
|
|
|
|
|
|
2017-12-31 21:15:58 -08:00
|
|
|
|
struct jsonrpc *jsonrpc_session_steal(struct jsonrpc_session *);
|
2021-06-29 12:56:18 +02:00
|
|
|
|
void jsonrpc_session_replace(struct jsonrpc_session *, struct jsonrpc *);
|
2017-12-31 21:15:58 -08:00
|
|
|
|
|
2009-12-02 10:50:18 -08:00
|
|
|
|
void jsonrpc_session_run(struct jsonrpc_session *);
|
|
|
|
|
void jsonrpc_session_wait(struct jsonrpc_session *);
|
|
|
|
|
|
|
|
|
|
size_t jsonrpc_session_get_backlog(const struct jsonrpc_session *);
|
|
|
|
|
const char *jsonrpc_session_get_name(const struct jsonrpc_session *);
|
2018-01-22 11:09:40 -08:00
|
|
|
|
size_t jsonrpc_session_get_n_remotes(const struct jsonrpc_session *);
|
2009-12-02 10:50:18 -08:00
|
|
|
|
|
|
|
|
|
int jsonrpc_session_send(struct jsonrpc_session *, struct jsonrpc_msg *);
|
|
|
|
|
struct jsonrpc_msg *jsonrpc_session_recv(struct jsonrpc_session *);
|
|
|
|
|
void jsonrpc_session_recv_wait(struct jsonrpc_session *);
|
|
|
|
|
|
2009-12-17 15:16:43 -08:00
|
|
|
|
bool jsonrpc_session_is_alive(const struct jsonrpc_session *);
|
2009-12-02 10:50:18 -08:00
|
|
|
|
bool jsonrpc_session_is_connected(const struct jsonrpc_session *);
|
|
|
|
|
unsigned int jsonrpc_session_get_seqno(const struct jsonrpc_session *);
|
2011-01-28 15:39:55 -08:00
|
|
|
|
int jsonrpc_session_get_status(const struct jsonrpc_session *);
|
2013-03-15 16:14:28 -07:00
|
|
|
|
int jsonrpc_session_get_last_error(const struct jsonrpc_session *);
|
2011-01-28 15:39:55 -08:00
|
|
|
|
void jsonrpc_session_get_reconnect_stats(const struct jsonrpc_session *,
|
|
|
|
|
struct reconnect_stats *);
|
|
|
|
|
|
2014-02-18 13:19:36 -08:00
|
|
|
|
void jsonrpc_session_enable_reconnect(struct jsonrpc_session *);
|
2009-12-02 10:50:18 -08:00
|
|
|
|
void jsonrpc_session_force_reconnect(struct jsonrpc_session *);
|
ovsdb-cs: Perform forced reconnects without a backoff.
The ovsdb-cs layer triggers a forced reconnect in various cases:
- when an inconsistency is detected in the data received from the
remote server.
- when the remote server is running in clustered mode and transitioned
to "follower", if the client is configured in "leader-only" mode.
- when explicitly requested by upper layers (e.g., by the user
application, through the IDL layer).
In such cases it's desirable that reconnection should happen as fast as
possible, without the current exponential backoff maintained by the
underlying reconnect object. Furthermore, since 3c2d6274bcee ("raft:
Transfer leadership before creating snapshots."), leadership changes
inside the clustered database happen more often and, therefore,
"leader-only" clients need to reconnect more often too.
Forced reconnects call jsonrpc_session_force_reconnect() which will not
reset backoff. To make sure clients reconnect as fast as possible in
the aforementioned scenarios we first call the new API,
jsonrpc_session_reset_backoff(), in ovsdb-cs, for sessions that are in
state CS_S_MONITORING (i.e., the remote is likely still alive and
functioning fine).
jsonrpc_session_reset_backoff() resets the number of backoff-free
reconnect retries to the number of remotes configured for the session,
ensuring that all remotes are retried exactly once with backoff 0.
This commit also updates the Python IDL and jsonrpc implementations.
The Python IDL wasn't tracking the IDL_S_MONITORING state explicitly,
we now do that too. Tests were also added to make sure the IDL forced
reconnects happen without backoff.
Reported-at: https://bugzilla.redhat.com/1977264
Suggested-by: Ilya Maximets <i.maximets@ovn.org>
Signed-off-by: Dumitru Ceara <dceara@redhat.com>
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
2021-07-21 14:51:00 +02:00
|
|
|
|
void jsonrpc_session_reset_backoff(struct jsonrpc_session *);
|
2009-10-26 15:04:05 -07:00
|
|
|
|
|
2010-11-05 10:22:18 -07:00
|
|
|
|
void jsonrpc_session_set_max_backoff(struct jsonrpc_session *,
|
2017-02-08 08:31:17 -08:00
|
|
|
|
int max_backoff);
|
2010-11-05 10:22:18 -07:00
|
|
|
|
void jsonrpc_session_set_probe_interval(struct jsonrpc_session *,
|
|
|
|
|
int probe_interval);
|
2012-03-10 15:58:10 -08:00
|
|
|
|
void jsonrpc_session_set_dscp(struct jsonrpc_session *,
|
|
|
|
|
uint8_t dscp);
|
2020-10-21 03:32:49 +02:00
|
|
|
|
void jsonrpc_session_set_backlog_threshold(struct jsonrpc_session *,
|
|
|
|
|
size_t max_n_msgs,
|
|
|
|
|
size_t max_backlog_bytes);
|
2017-05-31 19:04:32 -04:00
|
|
|
|
const char *jsonrpc_session_get_id(const struct jsonrpc_session *);
|
2010-11-05 10:22:18 -07:00
|
|
|
|
|
2009-10-26 15:04:05 -07:00
|
|
|
|
#endif /* jsonrpc.h */
|