b961d9cc12
Change-Id: I6a142feeaad3117bd3c75e7c5cb7231a1cfa78ae Signed-off-by: Ben Walker <benjamin.walker@intel.com>
276 lines
7.1 KiB
C
276 lines
7.1 KiB
C
/*-
|
|
* BSD LICENSE
|
|
*
|
|
* Copyright (c) Intel Corporation.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* * Neither the name of Intel Corporation nor the names of its
|
|
* contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "spdk/stdinc.h"
|
|
|
|
#include "spdk/queue.h"
|
|
#include "spdk/rpc.h"
|
|
#include "spdk/env.h"
|
|
#include "spdk/conf.h"
|
|
#include "spdk/log.h"
|
|
#include "spdk/string.h"
|
|
|
|
#include "spdk_internal/event.h"
|
|
|
|
#define RPC_SELECT_INTERVAL 4000 /* 4ms */
|
|
#define RPC_DEFAULT_LISTEN_ADDR "127.0.0.1:5260"
|
|
#define RPC_DEFAULT_PORT "5260"
|
|
|
|
static struct sockaddr_un g_rpc_listen_addr_unix = {};
|
|
|
|
static struct spdk_poller *g_rpc_poller = NULL;
|
|
|
|
static struct spdk_jsonrpc_server *g_jsonrpc_server = NULL;
|
|
|
|
struct spdk_rpc_method {
|
|
const char *name;
|
|
spdk_rpc_method_handler func;
|
|
SLIST_ENTRY(spdk_rpc_method) slist;
|
|
};
|
|
|
|
static SLIST_HEAD(, spdk_rpc_method) g_rpc_methods = SLIST_HEAD_INITIALIZER(g_rpc_methods);
|
|
|
|
static void
|
|
spdk_rpc_server_do_work(void *arg)
|
|
{
|
|
spdk_jsonrpc_server_poll(g_jsonrpc_server);
|
|
}
|
|
|
|
static int
|
|
enable_rpc(void)
|
|
{
|
|
struct spdk_conf_section *sp;
|
|
|
|
sp = spdk_conf_find_section(NULL, "Rpc");
|
|
if (sp == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
return spdk_conf_section_get_boolval(sp, "Enable", false);
|
|
}
|
|
|
|
static const char *
|
|
rpc_get_listen_addr(void)
|
|
{
|
|
struct spdk_conf_section *sp;
|
|
const char *val;
|
|
|
|
sp = spdk_conf_find_section(NULL, "Rpc");
|
|
if (sp == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
val = spdk_conf_section_get_val(sp, "Listen");
|
|
if (val == NULL) {
|
|
val = RPC_DEFAULT_LISTEN_ADDR;
|
|
}
|
|
|
|
return val;
|
|
}
|
|
|
|
void
|
|
spdk_rpc_register_method(const char *method, spdk_rpc_method_handler func)
|
|
{
|
|
struct spdk_rpc_method *m;
|
|
|
|
m = calloc(1, sizeof(struct spdk_rpc_method));
|
|
assert(m != NULL);
|
|
|
|
m->name = strdup(method);
|
|
assert(m->name != NULL);
|
|
|
|
m->func = func;
|
|
|
|
/* TODO: use a hash table or sorted list */
|
|
SLIST_INSERT_HEAD(&g_rpc_methods, m, slist);
|
|
}
|
|
|
|
static void
|
|
spdk_jsonrpc_handler(
|
|
struct spdk_jsonrpc_server_conn *conn,
|
|
const struct spdk_json_val *method,
|
|
const struct spdk_json_val *params,
|
|
const struct spdk_json_val *id)
|
|
{
|
|
struct spdk_rpc_method *m;
|
|
|
|
assert(method != NULL);
|
|
|
|
SLIST_FOREACH(m, &g_rpc_methods, slist) {
|
|
if (spdk_json_strequal(method, m->name)) {
|
|
m->func(conn, params, id);
|
|
return;
|
|
}
|
|
}
|
|
|
|
spdk_jsonrpc_send_error_response(conn, id, SPDK_JSONRPC_ERROR_METHOD_NOT_FOUND, "Method not found");
|
|
}
|
|
|
|
static void
|
|
spdk_rpc_setup(void *arg)
|
|
{
|
|
struct addrinfo hints;
|
|
struct addrinfo *res;
|
|
const char *listen_addr;
|
|
|
|
memset(&g_rpc_listen_addr_unix, 0, sizeof(g_rpc_listen_addr_unix));
|
|
|
|
/* Unregister the one-shot setup poller */
|
|
spdk_poller_unregister(&g_rpc_poller, NULL);
|
|
|
|
if (!enable_rpc()) {
|
|
return;
|
|
}
|
|
|
|
listen_addr = rpc_get_listen_addr();
|
|
if (!listen_addr) {
|
|
return;
|
|
}
|
|
|
|
if (listen_addr[0] == '/') {
|
|
int rc;
|
|
|
|
g_rpc_listen_addr_unix.sun_family = AF_UNIX;
|
|
rc = snprintf(g_rpc_listen_addr_unix.sun_path,
|
|
sizeof(g_rpc_listen_addr_unix.sun_path),
|
|
"%s", listen_addr);
|
|
if (rc < 0 || (size_t)rc >= sizeof(g_rpc_listen_addr_unix.sun_path)) {
|
|
SPDK_ERRLOG("RPC Listen address Unix socket path too long\n");
|
|
g_rpc_listen_addr_unix.sun_path[0] = '\0';
|
|
return;
|
|
}
|
|
|
|
unlink(g_rpc_listen_addr_unix.sun_path);
|
|
|
|
g_jsonrpc_server = spdk_jsonrpc_server_listen(AF_UNIX, 0,
|
|
(struct sockaddr *)&g_rpc_listen_addr_unix,
|
|
sizeof(g_rpc_listen_addr_unix),
|
|
spdk_jsonrpc_handler);
|
|
} else {
|
|
char *tmp;
|
|
char *host, *port;
|
|
|
|
tmp = strdup(listen_addr);
|
|
if (!tmp) {
|
|
SPDK_ERRLOG("Out of memory\n");
|
|
return;
|
|
}
|
|
|
|
if (spdk_parse_ip_addr(tmp, &host, &port) < 0) {
|
|
free(tmp);
|
|
SPDK_ERRLOG("Invalid listen address '%s'\n", listen_addr);
|
|
return;
|
|
}
|
|
|
|
if (port == NULL) {
|
|
port = RPC_DEFAULT_PORT;
|
|
}
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
hints.ai_family = AF_UNSPEC;
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
hints.ai_protocol = IPPROTO_TCP;
|
|
|
|
if (getaddrinfo(host, port, &hints, &res) != 0) {
|
|
free(tmp);
|
|
SPDK_ERRLOG("Unable to look up RPC listen address '%s'\n", listen_addr);
|
|
return;
|
|
}
|
|
|
|
g_jsonrpc_server = spdk_jsonrpc_server_listen(res->ai_family, res->ai_protocol,
|
|
res->ai_addr, res->ai_addrlen,
|
|
spdk_jsonrpc_handler);
|
|
|
|
freeaddrinfo(res);
|
|
free(tmp);
|
|
}
|
|
|
|
if (g_jsonrpc_server == NULL) {
|
|
SPDK_ERRLOG("spdk_jsonrpc_server_listen() failed\n");
|
|
return;
|
|
}
|
|
|
|
/* Register the periodic rpc_server_do_work */
|
|
spdk_poller_register(&g_rpc_poller, spdk_rpc_server_do_work, NULL, spdk_env_get_current_core(),
|
|
RPC_SELECT_INTERVAL);
|
|
}
|
|
|
|
static int
|
|
spdk_rpc_initialize(void)
|
|
{
|
|
/*
|
|
* Defer setup of the RPC service until the reactor has started. This
|
|
* allows us to detect the RPC listen socket as a suitable proxy for determining
|
|
* when the SPDK application has finished initialization and ready for logins
|
|
* or RPC commands.
|
|
*/
|
|
spdk_poller_register(&g_rpc_poller, spdk_rpc_setup, NULL, spdk_env_get_current_core(), 0);
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
spdk_rpc_finish(void)
|
|
{
|
|
if (g_rpc_listen_addr_unix.sun_path[0]) {
|
|
/* Delete the Unix socket file */
|
|
unlink(g_rpc_listen_addr_unix.sun_path);
|
|
}
|
|
|
|
spdk_poller_unregister(&g_rpc_poller, NULL);
|
|
|
|
if (g_jsonrpc_server) {
|
|
spdk_jsonrpc_server_shutdown(g_jsonrpc_server);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
spdk_rpc_config_text(FILE *fp)
|
|
{
|
|
fprintf(fp,
|
|
"\n"
|
|
"[Rpc]\n"
|
|
" # Defines whether to enable configuration via RPC.\n"
|
|
" # Default is disabled. Note that the RPC interface is not\n"
|
|
" # authenticated, so users should be careful about enabling\n"
|
|
" # RPC in non-trusted environments.\n"
|
|
" Enable %s\n"
|
|
" # Listen address for the RPC service.\n"
|
|
" # May be an IP address or an absolute path to a Unix socket.\n"
|
|
" Listen %s\n",
|
|
enable_rpc() ? "Yes" : "No", rpc_get_listen_addr());
|
|
}
|
|
|
|
SPDK_SUBSYSTEM_REGISTER(spdk_rpc, spdk_rpc_initialize, spdk_rpc_finish, spdk_rpc_config_text)
|