2022-06-03 19:15:11 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2016-05-24 18:04:20 +00:00
|
|
|
* Copyright (c) Intel Corporation.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2017-05-02 18:18:25 +00:00
|
|
|
#include "spdk/stdinc.h"
|
2016-05-24 18:04:20 +00:00
|
|
|
|
2021-03-01 21:06:04 +00:00
|
|
|
#include "spdk/init.h"
|
2017-04-17 19:24:04 +00:00
|
|
|
#include "spdk/log.h"
|
2021-03-01 21:06:04 +00:00
|
|
|
#include "spdk/queue.h"
|
2019-03-04 19:52:07 +00:00
|
|
|
#include "spdk/thread.h"
|
2017-04-17 19:24:04 +00:00
|
|
|
|
2021-02-26 22:00:03 +00:00
|
|
|
#include "spdk_internal/init.h"
|
2017-10-16 12:05:17 +00:00
|
|
|
#include "spdk/env.h"
|
2016-05-24 18:04:20 +00:00
|
|
|
|
2021-02-26 22:00:03 +00:00
|
|
|
#include "spdk/json.h"
|
|
|
|
|
2021-03-01 20:55:15 +00:00
|
|
|
#include "subsystem.h"
|
|
|
|
|
2020-04-09 19:26:45 +00:00
|
|
|
TAILQ_HEAD(spdk_subsystem_list, spdk_subsystem);
|
2018-02-20 16:03:57 +00:00
|
|
|
struct spdk_subsystem_list g_subsystems = TAILQ_HEAD_INITIALIZER(g_subsystems);
|
2020-04-09 19:26:45 +00:00
|
|
|
|
|
|
|
TAILQ_HEAD(spdk_subsystem_depend_list, spdk_subsystem_depend);
|
2018-02-20 16:03:57 +00:00
|
|
|
struct spdk_subsystem_depend_list g_subsystems_deps = TAILQ_HEAD_INITIALIZER(g_subsystems_deps);
|
2017-05-23 04:31:24 +00:00
|
|
|
static struct spdk_subsystem *g_next_subsystem;
|
2017-11-17 12:36:15 +00:00
|
|
|
static bool g_subsystems_initialized = false;
|
2019-02-26 09:51:40 +00:00
|
|
|
static bool g_subsystems_init_interrupted = false;
|
2019-08-07 11:42:32 +00:00
|
|
|
static spdk_subsystem_init_fn g_subsystem_start_fn = NULL;
|
|
|
|
static void *g_subsystem_start_arg = NULL;
|
|
|
|
static spdk_msg_fn g_subsystem_stop_fn = NULL;
|
|
|
|
static void *g_subsystem_stop_arg = NULL;
|
2019-03-04 20:16:56 +00:00
|
|
|
static struct spdk_thread *g_fini_thread = NULL;
|
2016-05-24 18:04:20 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
spdk_add_subsystem(struct spdk_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
TAILQ_INSERT_TAIL(&g_subsystems, subsystem, tailq);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
spdk_add_subsystem_depend(struct spdk_subsystem_depend *depend)
|
|
|
|
{
|
2018-02-20 16:03:57 +00:00
|
|
|
TAILQ_INSERT_TAIL(&g_subsystems_deps, depend, tailq);
|
2016-05-24 18:04:20 +00:00
|
|
|
}
|
|
|
|
|
2020-04-09 19:00:08 +00:00
|
|
|
static struct spdk_subsystem *
|
|
|
|
_subsystem_find(struct spdk_subsystem_list *list, const char *name)
|
2016-05-24 18:04:20 +00:00
|
|
|
{
|
|
|
|
struct spdk_subsystem *iter;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(iter, list, tailq) {
|
|
|
|
if (strcmp(name, iter->name) == 0) {
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-04-09 19:00:08 +00:00
|
|
|
struct spdk_subsystem *
|
2021-03-01 20:55:15 +00:00
|
|
|
subsystem_find(const char *name)
|
2020-04-09 19:00:08 +00:00
|
|
|
{
|
|
|
|
return _subsystem_find(&g_subsystems, name);
|
|
|
|
}
|
|
|
|
|
2020-04-09 19:26:45 +00:00
|
|
|
struct spdk_subsystem *
|
2021-03-01 20:55:15 +00:00
|
|
|
subsystem_get_first(void)
|
2020-04-09 19:26:45 +00:00
|
|
|
{
|
|
|
|
return TAILQ_FIRST(&g_subsystems);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_subsystem *
|
2021-03-01 20:55:15 +00:00
|
|
|
subsystem_get_next(struct spdk_subsystem *cur_subsystem)
|
2020-04-09 19:26:45 +00:00
|
|
|
{
|
|
|
|
return TAILQ_NEXT(cur_subsystem, tailq);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct spdk_subsystem_depend *
|
2021-03-01 20:55:15 +00:00
|
|
|
subsystem_get_first_depend(void)
|
2020-04-09 19:26:45 +00:00
|
|
|
{
|
|
|
|
return TAILQ_FIRST(&g_subsystems_deps);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_subsystem_depend *
|
2021-03-01 20:55:15 +00:00
|
|
|
subsystem_get_next_depend(struct spdk_subsystem_depend *cur_depend)
|
2020-04-09 19:26:45 +00:00
|
|
|
{
|
|
|
|
return TAILQ_NEXT(cur_depend, tailq);
|
|
|
|
}
|
|
|
|
|
2016-05-24 18:04:20 +00:00
|
|
|
static void
|
|
|
|
subsystem_sort(void)
|
|
|
|
{
|
|
|
|
bool depends_on, depends_on_sorted;
|
|
|
|
struct spdk_subsystem *subsystem, *subsystem_tmp;
|
|
|
|
struct spdk_subsystem_depend *subsystem_dep;
|
|
|
|
|
|
|
|
struct spdk_subsystem_list subsystems_list = TAILQ_HEAD_INITIALIZER(subsystems_list);
|
|
|
|
|
|
|
|
while (!TAILQ_EMPTY(&g_subsystems)) {
|
|
|
|
TAILQ_FOREACH_SAFE(subsystem, &g_subsystems, tailq, subsystem_tmp) {
|
|
|
|
depends_on = false;
|
2018-02-20 16:03:57 +00:00
|
|
|
TAILQ_FOREACH(subsystem_dep, &g_subsystems_deps, tailq) {
|
2016-05-24 18:04:20 +00:00
|
|
|
if (strcmp(subsystem->name, subsystem_dep->name) == 0) {
|
|
|
|
depends_on = true;
|
2020-04-09 19:00:08 +00:00
|
|
|
depends_on_sorted = !!_subsystem_find(&subsystems_list, subsystem_dep->depends_on);
|
2017-12-07 23:23:48 +00:00
|
|
|
if (depends_on_sorted) {
|
2016-05-24 18:04:20 +00:00
|
|
|
continue;
|
2017-12-07 23:23:48 +00:00
|
|
|
}
|
2016-05-24 18:04:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (depends_on == false) {
|
|
|
|
TAILQ_REMOVE(&g_subsystems, subsystem, tailq);
|
|
|
|
TAILQ_INSERT_TAIL(&subsystems_list, subsystem, tailq);
|
|
|
|
} else {
|
|
|
|
if (depends_on_sorted == true) {
|
|
|
|
TAILQ_REMOVE(&g_subsystems, subsystem, tailq);
|
|
|
|
TAILQ_INSERT_TAIL(&subsystems_list, subsystem, tailq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(subsystem, &subsystems_list, tailq, subsystem_tmp) {
|
|
|
|
TAILQ_REMOVE(&subsystems_list, subsystem, tailq);
|
|
|
|
TAILQ_INSERT_TAIL(&g_subsystems, subsystem, tailq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-23 04:31:24 +00:00
|
|
|
void
|
|
|
|
spdk_subsystem_init_next(int rc)
|
|
|
|
{
|
2019-02-26 09:51:40 +00:00
|
|
|
/* The initialization is interrupted by the spdk_subsystem_fini, so just return */
|
|
|
|
if (g_subsystems_init_interrupted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-23 04:31:24 +00:00
|
|
|
if (rc) {
|
|
|
|
SPDK_ERRLOG("Init subsystem %s failed\n", g_next_subsystem->name);
|
2019-08-07 11:42:32 +00:00
|
|
|
g_subsystem_start_fn(rc, g_subsystem_start_arg);
|
2017-05-23 04:31:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g_next_subsystem) {
|
|
|
|
g_next_subsystem = TAILQ_FIRST(&g_subsystems);
|
|
|
|
} else {
|
|
|
|
g_next_subsystem = TAILQ_NEXT(g_next_subsystem, tailq);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g_next_subsystem) {
|
2017-11-17 12:36:15 +00:00
|
|
|
g_subsystems_initialized = true;
|
2019-08-07 11:42:32 +00:00
|
|
|
g_subsystem_start_fn(0, g_subsystem_start_arg);
|
2017-05-23 04:31:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_next_subsystem->init) {
|
|
|
|
g_next_subsystem->init();
|
|
|
|
} else {
|
|
|
|
spdk_subsystem_init_next(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-04 20:24:33 +00:00
|
|
|
void
|
2019-08-07 11:42:32 +00:00
|
|
|
spdk_subsystem_init(spdk_subsystem_init_fn cb_fn, void *cb_arg)
|
2016-05-24 18:04:20 +00:00
|
|
|
{
|
|
|
|
struct spdk_subsystem_depend *dep;
|
|
|
|
|
2019-08-07 11:42:32 +00:00
|
|
|
g_subsystem_start_fn = cb_fn;
|
|
|
|
g_subsystem_start_arg = cb_arg;
|
2019-03-04 20:24:33 +00:00
|
|
|
|
2016-05-24 18:04:20 +00:00
|
|
|
/* Verify that all dependency name and depends_on subsystems are registered */
|
2018-02-20 16:03:57 +00:00
|
|
|
TAILQ_FOREACH(dep, &g_subsystems_deps, tailq) {
|
2021-03-01 20:55:15 +00:00
|
|
|
if (!subsystem_find(dep->name)) {
|
2017-04-17 19:24:04 +00:00
|
|
|
SPDK_ERRLOG("subsystem %s is missing\n", dep->name);
|
2019-08-07 11:42:32 +00:00
|
|
|
g_subsystem_start_fn(-1, g_subsystem_start_arg);
|
2017-05-23 04:31:24 +00:00
|
|
|
return;
|
2016-05-24 18:04:20 +00:00
|
|
|
}
|
2021-03-01 20:55:15 +00:00
|
|
|
if (!subsystem_find(dep->depends_on)) {
|
2017-04-17 19:24:04 +00:00
|
|
|
SPDK_ERRLOG("subsystem %s dependency %s is missing\n",
|
|
|
|
dep->name, dep->depends_on);
|
2019-08-07 11:42:32 +00:00
|
|
|
g_subsystem_start_fn(-1, g_subsystem_start_arg);
|
2017-05-23 04:31:24 +00:00
|
|
|
return;
|
2016-05-24 18:04:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subsystem_sort();
|
|
|
|
|
2017-05-23 04:31:24 +00:00
|
|
|
spdk_subsystem_init_next(0);
|
2016-05-24 18:04:20 +00:00
|
|
|
}
|
|
|
|
|
2017-11-10 22:08:30 +00:00
|
|
|
static void
|
2020-05-14 23:32:50 +00:00
|
|
|
subsystem_fini_next(void *arg1)
|
2016-05-24 18:04:20 +00:00
|
|
|
{
|
2019-03-04 20:16:56 +00:00
|
|
|
assert(g_fini_thread == spdk_get_thread());
|
2016-06-14 07:19:38 +00:00
|
|
|
|
2017-10-25 13:58:02 +00:00
|
|
|
if (!g_next_subsystem) {
|
2017-11-17 12:36:15 +00:00
|
|
|
/* If the initialized flag is false, then we've failed to initialize
|
|
|
|
* the very first subsystem and no de-init is needed
|
|
|
|
*/
|
|
|
|
if (g_subsystems_initialized) {
|
|
|
|
g_next_subsystem = TAILQ_LAST(&g_subsystems, spdk_subsystem_list);
|
|
|
|
}
|
2017-10-25 13:58:02 +00:00
|
|
|
} else {
|
2019-02-26 09:51:40 +00:00
|
|
|
if (g_subsystems_initialized || g_subsystems_init_interrupted) {
|
|
|
|
g_next_subsystem = TAILQ_PREV(g_next_subsystem, spdk_subsystem_list, tailq);
|
|
|
|
} else {
|
|
|
|
g_subsystems_init_interrupted = true;
|
|
|
|
}
|
2016-06-14 07:19:38 +00:00
|
|
|
}
|
2017-10-25 13:58:02 +00:00
|
|
|
|
2017-11-10 22:08:30 +00:00
|
|
|
while (g_next_subsystem) {
|
|
|
|
if (g_next_subsystem->fini) {
|
2017-11-13 16:57:27 +00:00
|
|
|
g_next_subsystem->fini();
|
2017-11-10 22:08:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
g_next_subsystem = TAILQ_PREV(g_next_subsystem, spdk_subsystem_list, tailq);
|
2017-10-25 13:58:02 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 11:42:32 +00:00
|
|
|
g_subsystem_stop_fn(g_subsystem_stop_arg);
|
2017-11-10 22:08:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
spdk_subsystem_fini_next(void)
|
|
|
|
{
|
2019-03-04 20:16:56 +00:00
|
|
|
if (g_fini_thread != spdk_get_thread()) {
|
2020-05-14 23:32:50 +00:00
|
|
|
spdk_thread_send_msg(g_fini_thread, subsystem_fini_next, NULL);
|
2017-10-25 13:58:02 +00:00
|
|
|
} else {
|
2020-05-14 23:32:50 +00:00
|
|
|
subsystem_fini_next(NULL);
|
2017-10-25 13:58:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-03-04 20:16:56 +00:00
|
|
|
spdk_subsystem_fini(spdk_msg_fn cb_fn, void *cb_arg)
|
2017-10-25 13:58:02 +00:00
|
|
|
{
|
2019-08-07 11:42:32 +00:00
|
|
|
g_subsystem_stop_fn = cb_fn;
|
|
|
|
g_subsystem_stop_arg = cb_arg;
|
2019-03-04 20:16:56 +00:00
|
|
|
|
|
|
|
g_fini_thread = spdk_get_thread();
|
2017-11-10 21:58:44 +00:00
|
|
|
|
|
|
|
spdk_subsystem_fini_next();
|
2016-05-24 18:04:20 +00:00
|
|
|
}
|
|
|
|
|
2018-02-26 19:16:59 +00:00
|
|
|
void
|
2021-03-01 20:55:15 +00:00
|
|
|
subsystem_config_json(struct spdk_json_write_ctx *w, struct spdk_subsystem *subsystem)
|
2018-02-26 19:16:59 +00:00
|
|
|
{
|
|
|
|
if (subsystem && subsystem->write_config_json) {
|
2019-03-05 21:21:57 +00:00
|
|
|
subsystem->write_config_json(w);
|
2018-02-26 19:16:59 +00:00
|
|
|
} else {
|
|
|
|
spdk_json_write_null(w);
|
|
|
|
}
|
|
|
|
}
|