2016-06-06 21:44:30 +00:00
|
|
|
/*-
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2018-03-08 20:26:44 +00:00
|
|
|
#include "event_nvmf.h"
|
2016-08-15 23:25:11 +00:00
|
|
|
|
2016-09-19 17:01:52 +00:00
|
|
|
#include "spdk/bdev.h"
|
2016-06-06 21:44:30 +00:00
|
|
|
#include "spdk/event.h"
|
2018-06-11 20:32:15 +00:00
|
|
|
#include "spdk/thread.h"
|
2016-06-06 21:44:30 +00:00
|
|
|
#include "spdk/log.h"
|
|
|
|
#include "spdk/nvme.h"
|
2017-09-25 22:27:01 +00:00
|
|
|
#include "spdk/util.h"
|
|
|
|
|
2018-03-10 00:28:52 +00:00
|
|
|
enum nvmf_tgt_state {
|
|
|
|
NVMF_TGT_INIT_NONE = 0,
|
|
|
|
NVMF_TGT_INIT_PARSE_CONFIG,
|
|
|
|
NVMF_TGT_INIT_CREATE_POLL_GROUPS,
|
|
|
|
NVMF_TGT_INIT_START_SUBSYSTEMS,
|
|
|
|
NVMF_TGT_INIT_START_ACCEPTOR,
|
|
|
|
NVMF_TGT_RUNNING,
|
|
|
|
NVMF_TGT_FINI_STOP_SUBSYSTEMS,
|
2018-07-27 18:38:38 +00:00
|
|
|
NVMF_TGT_FINI_DESTROY_POLL_GROUPS,
|
|
|
|
NVMF_TGT_FINI_STOP_ACCEPTOR,
|
2018-03-10 00:28:52 +00:00
|
|
|
NVMF_TGT_FINI_FREE_RESOURCES,
|
|
|
|
NVMF_TGT_STOPPED,
|
|
|
|
NVMF_TGT_ERROR,
|
|
|
|
};
|
|
|
|
|
2017-09-25 22:27:01 +00:00
|
|
|
struct nvmf_tgt_poll_group {
|
|
|
|
struct spdk_nvmf_poll_group *group;
|
|
|
|
};
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2018-08-14 05:34:29 +00:00
|
|
|
struct nvmf_tgt_host_trid {
|
|
|
|
struct spdk_nvme_transport_id host_trid;
|
|
|
|
uint32_t core;
|
|
|
|
uint32_t ref;
|
|
|
|
TAILQ_ENTRY(nvmf_tgt_host_trid) link;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* List of host trids that are connected to the target */
|
|
|
|
static TAILQ_HEAD(, nvmf_tgt_host_trid) g_nvmf_tgt_host_trids =
|
|
|
|
TAILQ_HEAD_INITIALIZER(g_nvmf_tgt_host_trids);
|
|
|
|
|
2018-03-10 00:33:41 +00:00
|
|
|
struct spdk_nvmf_tgt *g_spdk_nvmf_tgt = NULL;
|
2017-08-18 22:38:33 +00:00
|
|
|
|
2018-03-10 00:28:52 +00:00
|
|
|
static enum nvmf_tgt_state g_tgt_state;
|
|
|
|
|
2018-08-14 05:34:29 +00:00
|
|
|
/* Round-Robin/IP-based tracking of cores for qpair assignment */
|
|
|
|
static uint32_t g_tgt_core;
|
2018-03-10 00:28:52 +00:00
|
|
|
|
2017-09-25 22:27:01 +00:00
|
|
|
static struct nvmf_tgt_poll_group *g_poll_groups = NULL;
|
|
|
|
static size_t g_num_poll_groups = 0;
|
|
|
|
|
2016-08-16 16:35:59 +00:00
|
|
|
static struct spdk_poller *g_acceptor_poller = NULL;
|
|
|
|
|
2018-03-08 20:26:44 +00:00
|
|
|
static void nvmf_tgt_advance_state(void);
|
2016-08-25 22:00:50 +00:00
|
|
|
|
2016-08-16 16:35:59 +00:00
|
|
|
static void
|
nvmf/tgt: Fix issues for ctrlr+ c handling.
When receving ctrlr+c event, NVMe-oF target
could in any state. So we cannot guarantee
g_acceptor_poller is initialized or not. If
we do not handle such case, ctrlr+c will
trigger unexpected coredump issue. To
solve this issue, following methods are used.
Currently, our code in event module (lib/event/app.c)
can only receive ctrlr + c command once, so
when we receive the ctrlr+c, we should complete
the shutdown process.
The idea is to use spdk_event_call, we will only
enter shutdown process if tgt is in NVMF_TGT_RUNNING
status.
After several patch tries, I think that this solution
is much simple. Though we would like to kill after
entering the running state, it may wait some time
if users kill the application in early state, but those
operations will not be quite often in real case.
Change-Id: Id89a96b5d39f8a528e72dea8c0eb6524bdaf7ee4
Signed-off-by: Ziye Yang <optimistyzy@gmail.com>
Reviewed-on: https://review.gerrithub.io/389433
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
2017-12-08 10:57:43 +00:00
|
|
|
_spdk_nvmf_shutdown_cb(void *arg1, void *arg2)
|
2016-08-16 16:35:59 +00:00
|
|
|
{
|
nvmf/tgt: Fix issues for ctrlr+ c handling.
When receving ctrlr+c event, NVMe-oF target
could in any state. So we cannot guarantee
g_acceptor_poller is initialized or not. If
we do not handle such case, ctrlr+c will
trigger unexpected coredump issue. To
solve this issue, following methods are used.
Currently, our code in event module (lib/event/app.c)
can only receive ctrlr + c command once, so
when we receive the ctrlr+c, we should complete
the shutdown process.
The idea is to use spdk_event_call, we will only
enter shutdown process if tgt is in NVMF_TGT_RUNNING
status.
After several patch tries, I think that this solution
is much simple. Though we would like to kill after
entering the running state, it may wait some time
if users kill the application in early state, but those
operations will not be quite often in real case.
Change-Id: Id89a96b5d39f8a528e72dea8c0eb6524bdaf7ee4
Signed-off-by: Ziye Yang <optimistyzy@gmail.com>
Reviewed-on: https://review.gerrithub.io/389433
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
2017-12-08 10:57:43 +00:00
|
|
|
/* Still in initialization state, defer shutdown operation */
|
2018-03-10 00:28:52 +00:00
|
|
|
if (g_tgt_state < NVMF_TGT_RUNNING) {
|
nvmf/tgt: Fix issues for ctrlr+ c handling.
When receving ctrlr+c event, NVMe-oF target
could in any state. So we cannot guarantee
g_acceptor_poller is initialized or not. If
we do not handle such case, ctrlr+c will
trigger unexpected coredump issue. To
solve this issue, following methods are used.
Currently, our code in event module (lib/event/app.c)
can only receive ctrlr + c command once, so
when we receive the ctrlr+c, we should complete
the shutdown process.
The idea is to use spdk_event_call, we will only
enter shutdown process if tgt is in NVMF_TGT_RUNNING
status.
After several patch tries, I think that this solution
is much simple. Though we would like to kill after
entering the running state, it may wait some time
if users kill the application in early state, but those
operations will not be quite often in real case.
Change-Id: Id89a96b5d39f8a528e72dea8c0eb6524bdaf7ee4
Signed-off-by: Ziye Yang <optimistyzy@gmail.com>
Reviewed-on: https://review.gerrithub.io/389433
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
2017-12-08 10:57:43 +00:00
|
|
|
spdk_event_call(spdk_event_allocate(spdk_env_get_current_core(),
|
|
|
|
_spdk_nvmf_shutdown_cb, NULL, NULL));
|
|
|
|
return;
|
2018-03-10 00:28:52 +00:00
|
|
|
} else if (g_tgt_state > NVMF_TGT_RUNNING) {
|
nvmf/tgt: Fix issues for ctrlr+ c handling.
When receving ctrlr+c event, NVMe-oF target
could in any state. So we cannot guarantee
g_acceptor_poller is initialized or not. If
we do not handle such case, ctrlr+c will
trigger unexpected coredump issue. To
solve this issue, following methods are used.
Currently, our code in event module (lib/event/app.c)
can only receive ctrlr + c command once, so
when we receive the ctrlr+c, we should complete
the shutdown process.
The idea is to use spdk_event_call, we will only
enter shutdown process if tgt is in NVMF_TGT_RUNNING
status.
After several patch tries, I think that this solution
is much simple. Though we would like to kill after
entering the running state, it may wait some time
if users kill the application in early state, but those
operations will not be quite often in real case.
Change-Id: Id89a96b5d39f8a528e72dea8c0eb6524bdaf7ee4
Signed-off-by: Ziye Yang <optimistyzy@gmail.com>
Reviewed-on: https://review.gerrithub.io/389433
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
2017-12-08 10:57:43 +00:00
|
|
|
/* Already in Shutdown status, ignore the signal */
|
|
|
|
return;
|
|
|
|
}
|
2016-08-16 16:35:59 +00:00
|
|
|
|
2018-07-27 18:38:38 +00:00
|
|
|
g_tgt_state = NVMF_TGT_FINI_STOP_SUBSYSTEMS;
|
2018-03-08 20:26:44 +00:00
|
|
|
nvmf_tgt_advance_state();
|
2016-06-06 21:44:30 +00:00
|
|
|
}
|
|
|
|
|
nvmf/tgt: Fix issues for ctrlr+ c handling.
When receving ctrlr+c event, NVMe-oF target
could in any state. So we cannot guarantee
g_acceptor_poller is initialized or not. If
we do not handle such case, ctrlr+c will
trigger unexpected coredump issue. To
solve this issue, following methods are used.
Currently, our code in event module (lib/event/app.c)
can only receive ctrlr + c command once, so
when we receive the ctrlr+c, we should complete
the shutdown process.
The idea is to use spdk_event_call, we will only
enter shutdown process if tgt is in NVMF_TGT_RUNNING
status.
After several patch tries, I think that this solution
is much simple. Though we would like to kill after
entering the running state, it may wait some time
if users kill the application in early state, but those
operations will not be quite often in real case.
Change-Id: Id89a96b5d39f8a528e72dea8c0eb6524bdaf7ee4
Signed-off-by: Ziye Yang <optimistyzy@gmail.com>
Reviewed-on: https://review.gerrithub.io/389433
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
2017-12-08 10:57:43 +00:00
|
|
|
static void
|
2018-03-08 20:26:44 +00:00
|
|
|
spdk_nvmf_subsystem_fini(void)
|
nvmf/tgt: Fix issues for ctrlr+ c handling.
When receving ctrlr+c event, NVMe-oF target
could in any state. So we cannot guarantee
g_acceptor_poller is initialized or not. If
we do not handle such case, ctrlr+c will
trigger unexpected coredump issue. To
solve this issue, following methods are used.
Currently, our code in event module (lib/event/app.c)
can only receive ctrlr + c command once, so
when we receive the ctrlr+c, we should complete
the shutdown process.
The idea is to use spdk_event_call, we will only
enter shutdown process if tgt is in NVMF_TGT_RUNNING
status.
After several patch tries, I think that this solution
is much simple. Though we would like to kill after
entering the running state, it may wait some time
if users kill the application in early state, but those
operations will not be quite often in real case.
Change-Id: Id89a96b5d39f8a528e72dea8c0eb6524bdaf7ee4
Signed-off-by: Ziye Yang <optimistyzy@gmail.com>
Reviewed-on: https://review.gerrithub.io/389433
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
2017-12-08 10:57:43 +00:00
|
|
|
{
|
|
|
|
/* Always let the first core to handle the case */
|
|
|
|
if (spdk_env_get_current_core() != spdk_env_get_first_core()) {
|
|
|
|
spdk_event_call(spdk_event_allocate(spdk_env_get_first_core(),
|
|
|
|
_spdk_nvmf_shutdown_cb, NULL, NULL));
|
|
|
|
} else {
|
|
|
|
_spdk_nvmf_shutdown_cb(NULL, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-30 16:36:33 +00:00
|
|
|
static void
|
|
|
|
nvmf_tgt_poll_group_add(void *arg1, void *arg2)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_qpair *qpair = arg1;
|
|
|
|
struct nvmf_tgt_poll_group *pg = arg2;
|
|
|
|
|
|
|
|
spdk_nvmf_poll_group_add(pg->group, qpair);
|
|
|
|
}
|
|
|
|
|
2018-08-14 05:34:29 +00:00
|
|
|
/* Round robin selection of cores */
|
|
|
|
static uint32_t
|
|
|
|
spdk_nvmf_get_core_rr(void)
|
|
|
|
{
|
|
|
|
uint32_t core;
|
|
|
|
|
|
|
|
core = g_tgt_core;
|
|
|
|
g_tgt_core = spdk_env_get_next_core(core);
|
|
|
|
if (g_tgt_core == UINT32_MAX) {
|
|
|
|
g_tgt_core = spdk_env_get_first_core();
|
|
|
|
}
|
|
|
|
|
|
|
|
return core;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
nvmf_tgt_get_qpair_core(struct spdk_nvmf_qpair *qpair)
|
|
|
|
{
|
|
|
|
struct spdk_nvme_transport_id trid;
|
|
|
|
struct nvmf_tgt_host_trid *tmp_trid = NULL, *new_trid = NULL;
|
|
|
|
int ret;
|
|
|
|
uint32_t core = 0;
|
|
|
|
|
|
|
|
switch (g_spdk_nvmf_tgt_conf->conn_sched) {
|
|
|
|
case CONNECT_SCHED_HOST_IP:
|
|
|
|
ret = spdk_nvmf_qpair_get_peer_trid(qpair, &trid);
|
|
|
|
if (ret) {
|
|
|
|
SPDK_ERRLOG("Invalid host transport Id. Assigning to core %d\n", core);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH(tmp_trid, &g_nvmf_tgt_host_trids, link) {
|
|
|
|
if (tmp_trid && !strncmp(tmp_trid->host_trid.traddr,
|
|
|
|
trid.traddr, SPDK_NVMF_TRADDR_MAX_LEN + 1)) {
|
|
|
|
tmp_trid->ref++;
|
|
|
|
core = tmp_trid->core;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!tmp_trid) {
|
|
|
|
new_trid = calloc(1, sizeof(*new_trid));
|
|
|
|
if (!new_trid) {
|
|
|
|
SPDK_ERRLOG("Insufficient memory. Assigning to core %d\n", core);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Get the next available core for the new host */
|
|
|
|
core = spdk_nvmf_get_core_rr();
|
|
|
|
new_trid->core = core;
|
|
|
|
memcpy(new_trid->host_trid.traddr, trid.traddr,
|
|
|
|
SPDK_NVMF_TRADDR_MAX_LEN + 1);
|
|
|
|
TAILQ_INSERT_TAIL(&g_nvmf_tgt_host_trids, new_trid, link);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONNECT_SCHED_ROUND_ROBIN:
|
|
|
|
default:
|
|
|
|
core = spdk_nvmf_get_core_rr();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return core;
|
|
|
|
}
|
|
|
|
|
2017-08-30 16:36:33 +00:00
|
|
|
static void
|
|
|
|
new_qpair(struct spdk_nvmf_qpair *qpair)
|
|
|
|
{
|
|
|
|
struct spdk_event *event;
|
|
|
|
struct nvmf_tgt_poll_group *pg;
|
|
|
|
uint32_t core;
|
|
|
|
|
2018-07-27 19:21:00 +00:00
|
|
|
if (g_tgt_state != NVMF_TGT_RUNNING) {
|
|
|
|
spdk_nvmf_qpair_disconnect(qpair, NULL, NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-14 05:34:29 +00:00
|
|
|
core = nvmf_tgt_get_qpair_core(qpair);
|
2017-08-30 16:36:33 +00:00
|
|
|
|
|
|
|
pg = &g_poll_groups[core];
|
|
|
|
|
|
|
|
event = spdk_event_allocate(core, nvmf_tgt_poll_group_add, qpair, pg);
|
|
|
|
spdk_event_call(event);
|
|
|
|
}
|
|
|
|
|
2018-03-13 00:16:47 +00:00
|
|
|
static int
|
2016-08-16 16:35:59 +00:00
|
|
|
acceptor_poll(void *arg)
|
|
|
|
{
|
2017-08-21 21:07:44 +00:00
|
|
|
struct spdk_nvmf_tgt *tgt = arg;
|
|
|
|
|
2017-08-30 16:36:33 +00:00
|
|
|
spdk_nvmf_tgt_accept(tgt, new_qpair);
|
2018-03-13 00:16:47 +00:00
|
|
|
|
|
|
|
return -1;
|
2016-08-16 16:35:59 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 20:44:10 +00:00
|
|
|
static void
|
2017-11-17 18:43:45 +00:00
|
|
|
nvmf_tgt_destroy_poll_group_done(void *ctx)
|
2017-11-03 20:44:10 +00:00
|
|
|
{
|
2018-07-27 18:38:38 +00:00
|
|
|
g_tgt_state = NVMF_TGT_FINI_STOP_ACCEPTOR;
|
2018-03-08 20:26:44 +00:00
|
|
|
nvmf_tgt_advance_state();
|
2017-11-03 20:44:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-11-17 18:43:45 +00:00
|
|
|
nvmf_tgt_destroy_poll_group(void *ctx)
|
2017-11-03 20:44:10 +00:00
|
|
|
{
|
|
|
|
struct nvmf_tgt_poll_group *pg;
|
|
|
|
|
2017-11-17 18:43:45 +00:00
|
|
|
pg = &g_poll_groups[spdk_env_get_current_core()];
|
2017-11-03 20:44:10 +00:00
|
|
|
|
|
|
|
spdk_nvmf_poll_group_destroy(pg->group);
|
|
|
|
pg->group = NULL;
|
|
|
|
}
|
|
|
|
|
2017-11-02 23:03:10 +00:00
|
|
|
static void
|
2017-11-17 18:43:45 +00:00
|
|
|
nvmf_tgt_create_poll_group_done(void *ctx)
|
2017-11-02 23:03:10 +00:00
|
|
|
{
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_state = NVMF_TGT_INIT_START_SUBSYSTEMS;
|
2018-03-08 20:26:44 +00:00
|
|
|
nvmf_tgt_advance_state();
|
2017-11-02 23:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-11-17 18:43:45 +00:00
|
|
|
nvmf_tgt_create_poll_group(void *ctx)
|
2017-11-02 23:03:10 +00:00
|
|
|
{
|
|
|
|
struct nvmf_tgt_poll_group *pg;
|
|
|
|
|
2017-11-17 18:43:45 +00:00
|
|
|
pg = &g_poll_groups[spdk_env_get_current_core()];
|
2017-11-02 23:03:10 +00:00
|
|
|
|
2018-03-10 00:33:41 +00:00
|
|
|
pg->group = spdk_nvmf_poll_group_create(g_spdk_nvmf_tgt);
|
2018-06-11 04:59:36 +00:00
|
|
|
assert(pg->group != NULL);
|
2017-11-02 23:03:10 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
static void
|
|
|
|
nvmf_tgt_subsystem_started(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
void *cb_arg, int status)
|
|
|
|
{
|
|
|
|
subsystem = spdk_nvmf_subsystem_get_next(subsystem);
|
|
|
|
|
|
|
|
if (subsystem) {
|
|
|
|
spdk_nvmf_subsystem_start(subsystem, nvmf_tgt_subsystem_started, NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_state = NVMF_TGT_INIT_START_ACCEPTOR;
|
2018-03-08 20:26:44 +00:00
|
|
|
nvmf_tgt_advance_state();
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nvmf_tgt_subsystem_stopped(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
void *cb_arg, int status)
|
|
|
|
{
|
|
|
|
subsystem = spdk_nvmf_subsystem_get_next(subsystem);
|
|
|
|
|
|
|
|
if (subsystem) {
|
|
|
|
spdk_nvmf_subsystem_stop(subsystem, nvmf_tgt_subsystem_stopped, NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_state = NVMF_TGT_FINI_DESTROY_POLL_GROUPS;
|
2018-03-08 20:26:44 +00:00
|
|
|
nvmf_tgt_advance_state();
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
|
2018-06-05 22:34:04 +00:00
|
|
|
static void
|
|
|
|
nvmf_tgt_destroy_done(void *ctx, int status)
|
|
|
|
{
|
2018-08-14 05:34:29 +00:00
|
|
|
struct nvmf_tgt_host_trid *trid, *tmp_trid;
|
|
|
|
|
2018-06-05 22:34:04 +00:00
|
|
|
g_tgt_state = NVMF_TGT_STOPPED;
|
2018-08-14 05:34:29 +00:00
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(trid, &g_nvmf_tgt_host_trids, link, tmp_trid) {
|
|
|
|
TAILQ_REMOVE(&g_nvmf_tgt_host_trids, trid, link);
|
|
|
|
free(trid);
|
|
|
|
}
|
|
|
|
|
2018-06-07 23:00:26 +00:00
|
|
|
free(g_spdk_nvmf_tgt_conf);
|
2018-06-05 22:34:04 +00:00
|
|
|
nvmf_tgt_advance_state();
|
|
|
|
}
|
|
|
|
|
2018-08-27 22:27:47 +00:00
|
|
|
static void
|
|
|
|
nvmf_tgt_parse_conf_done(int status)
|
|
|
|
{
|
|
|
|
g_tgt_state = (status == 0) ? NVMF_TGT_INIT_CREATE_POLL_GROUPS : NVMF_TGT_ERROR;
|
|
|
|
nvmf_tgt_advance_state();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nvmf_tgt_parse_conf_start(void *ctx)
|
|
|
|
{
|
|
|
|
if (spdk_nvmf_parse_conf(nvmf_tgt_parse_conf_done)) {
|
|
|
|
SPDK_ERRLOG("spdk_nvmf_parse_conf() failed\n");
|
|
|
|
g_tgt_state = NVMF_TGT_ERROR;
|
|
|
|
nvmf_tgt_advance_state();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-06 21:44:30 +00:00
|
|
|
static void
|
2018-03-08 20:26:44 +00:00
|
|
|
nvmf_tgt_advance_state(void)
|
2016-06-06 21:44:30 +00:00
|
|
|
{
|
2017-11-01 23:24:18 +00:00
|
|
|
enum nvmf_tgt_state prev_state;
|
2017-11-02 23:03:10 +00:00
|
|
|
int rc = -1;
|
2017-11-01 23:24:18 +00:00
|
|
|
|
|
|
|
do {
|
2018-03-10 00:28:52 +00:00
|
|
|
prev_state = g_tgt_state;
|
2017-11-01 23:24:18 +00:00
|
|
|
|
2018-03-10 00:28:52 +00:00
|
|
|
switch (g_tgt_state) {
|
2017-11-01 23:24:18 +00:00
|
|
|
case NVMF_TGT_INIT_NONE: {
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_state = NVMF_TGT_INIT_PARSE_CONFIG;
|
2017-11-01 23:24:18 +00:00
|
|
|
|
|
|
|
/* Find the maximum core number */
|
2018-02-14 01:12:40 +00:00
|
|
|
g_num_poll_groups = spdk_env_get_last_core() + 1;
|
2017-11-01 23:24:18 +00:00
|
|
|
assert(g_num_poll_groups > 0);
|
|
|
|
|
|
|
|
g_poll_groups = calloc(g_num_poll_groups, sizeof(*g_poll_groups));
|
|
|
|
if (g_poll_groups == NULL) {
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_state = NVMF_TGT_ERROR;
|
2017-11-01 23:24:18 +00:00
|
|
|
rc = -ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
2017-08-30 16:36:33 +00:00
|
|
|
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_core = spdk_env_get_first_core();
|
2017-11-01 23:24:18 +00:00
|
|
|
break;
|
2017-09-25 22:27:01 +00:00
|
|
|
}
|
2017-11-01 23:24:18 +00:00
|
|
|
case NVMF_TGT_INIT_PARSE_CONFIG:
|
2018-08-27 22:27:47 +00:00
|
|
|
/* Send message to self to call parse conf func.
|
|
|
|
* Prevents it from possibly performing cb before getting
|
|
|
|
* out of this function, which causes problems. */
|
|
|
|
spdk_thread_send_msg(spdk_get_thread(), nvmf_tgt_parse_conf_start, NULL);
|
2017-11-01 23:24:18 +00:00
|
|
|
break;
|
2017-11-17 18:43:45 +00:00
|
|
|
case NVMF_TGT_INIT_CREATE_POLL_GROUPS:
|
|
|
|
/* Send a message to each thread and create a poll group */
|
|
|
|
spdk_for_each_thread(nvmf_tgt_create_poll_group,
|
|
|
|
NULL,
|
|
|
|
nvmf_tgt_create_poll_group_done);
|
2017-11-01 23:24:18 +00:00
|
|
|
break;
|
2017-12-19 23:39:04 +00:00
|
|
|
case NVMF_TGT_INIT_START_SUBSYSTEMS: {
|
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
|
|
|
|
2018-03-10 00:33:41 +00:00
|
|
|
subsystem = spdk_nvmf_subsystem_get_first(g_spdk_nvmf_tgt);
|
2017-12-19 23:39:04 +00:00
|
|
|
|
|
|
|
if (subsystem) {
|
|
|
|
spdk_nvmf_subsystem_start(subsystem, nvmf_tgt_subsystem_started, NULL);
|
|
|
|
} else {
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_state = NVMF_TGT_INIT_START_ACCEPTOR;
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2017-11-01 23:24:18 +00:00
|
|
|
case NVMF_TGT_INIT_START_ACCEPTOR:
|
2018-03-10 00:33:41 +00:00
|
|
|
g_acceptor_poller = spdk_poller_register(acceptor_poll, g_spdk_nvmf_tgt,
|
2018-06-07 23:00:26 +00:00
|
|
|
g_spdk_nvmf_tgt_conf->acceptor_poll_rate);
|
2018-03-30 22:19:55 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_NVMF, "Acceptor running\n");
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_state = NVMF_TGT_RUNNING;
|
2017-11-01 23:24:18 +00:00
|
|
|
break;
|
|
|
|
case NVMF_TGT_RUNNING:
|
2018-03-08 20:26:44 +00:00
|
|
|
spdk_subsystem_init_next(0);
|
2017-11-01 23:24:18 +00:00
|
|
|
break;
|
2017-12-19 23:39:04 +00:00
|
|
|
case NVMF_TGT_FINI_STOP_SUBSYSTEMS: {
|
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
|
|
|
|
2018-03-10 00:33:41 +00:00
|
|
|
subsystem = spdk_nvmf_subsystem_get_first(g_spdk_nvmf_tgt);
|
2017-12-19 23:39:04 +00:00
|
|
|
|
|
|
|
if (subsystem) {
|
|
|
|
spdk_nvmf_subsystem_stop(subsystem, nvmf_tgt_subsystem_stopped, NULL);
|
|
|
|
} else {
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_state = NVMF_TGT_FINI_DESTROY_POLL_GROUPS;
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2017-11-17 18:43:45 +00:00
|
|
|
case NVMF_TGT_FINI_DESTROY_POLL_GROUPS:
|
|
|
|
/* Send a message to each thread and destroy the poll group */
|
|
|
|
spdk_for_each_thread(nvmf_tgt_destroy_poll_group,
|
|
|
|
NULL,
|
|
|
|
nvmf_tgt_destroy_poll_group_done);
|
2017-11-15 17:48:32 +00:00
|
|
|
break;
|
2018-07-27 18:38:38 +00:00
|
|
|
case NVMF_TGT_FINI_STOP_ACCEPTOR:
|
|
|
|
spdk_poller_unregister(&g_acceptor_poller);
|
|
|
|
g_tgt_state = NVMF_TGT_FINI_FREE_RESOURCES;
|
|
|
|
break;
|
2017-11-01 23:24:18 +00:00
|
|
|
case NVMF_TGT_FINI_FREE_RESOURCES:
|
2018-06-05 22:34:04 +00:00
|
|
|
spdk_nvmf_tgt_destroy(g_spdk_nvmf_tgt, nvmf_tgt_destroy_done, NULL);
|
2017-11-01 23:24:18 +00:00
|
|
|
break;
|
|
|
|
case NVMF_TGT_STOPPED:
|
2018-03-08 20:26:44 +00:00
|
|
|
spdk_subsystem_fini_next();
|
2017-11-01 23:24:18 +00:00
|
|
|
return;
|
|
|
|
case NVMF_TGT_ERROR:
|
2018-03-08 20:26:44 +00:00
|
|
|
spdk_subsystem_init_next(rc);
|
2017-11-01 23:24:18 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2018-03-10 00:28:52 +00:00
|
|
|
} while (g_tgt_state != prev_state);
|
2016-06-06 21:44:30 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 20:26:44 +00:00
|
|
|
static void
|
|
|
|
spdk_nvmf_subsystem_init(void)
|
2016-06-06 21:44:30 +00:00
|
|
|
{
|
2018-03-10 00:28:52 +00:00
|
|
|
g_tgt_state = NVMF_TGT_INIT_NONE;
|
2018-03-08 20:26:44 +00:00
|
|
|
nvmf_tgt_advance_state();
|
2016-06-06 21:44:30 +00:00
|
|
|
}
|
2018-03-08 20:26:44 +00:00
|
|
|
|
2018-08-14 05:34:29 +00:00
|
|
|
static char *
|
|
|
|
get_conn_sched_string(enum spdk_nvmf_connect_sched sched)
|
|
|
|
{
|
|
|
|
if (sched == CONNECT_SCHED_HOST_IP) {
|
|
|
|
return "hostip";
|
|
|
|
} else {
|
|
|
|
return "roundrobin";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-07 18:26:13 +00:00
|
|
|
static void
|
|
|
|
spdk_nvmf_subsystem_write_config_json(struct spdk_json_write_ctx *w, struct spdk_event *done_ev)
|
|
|
|
{
|
|
|
|
spdk_json_write_array_begin(w);
|
|
|
|
|
|
|
|
spdk_json_write_object_begin(w);
|
|
|
|
spdk_json_write_named_string(w, "method", "set_nvmf_target_config");
|
|
|
|
|
|
|
|
spdk_json_write_named_object_begin(w, "params");
|
|
|
|
spdk_json_write_named_uint32(w, "acceptor_poll_rate", g_spdk_nvmf_tgt_conf->acceptor_poll_rate);
|
2018-08-14 05:34:29 +00:00
|
|
|
spdk_json_write_named_string(w, "conn_sched",
|
|
|
|
get_conn_sched_string(g_spdk_nvmf_tgt_conf->conn_sched));
|
2018-05-07 18:26:13 +00:00
|
|
|
spdk_json_write_object_end(w);
|
|
|
|
spdk_json_write_object_end(w);
|
|
|
|
|
|
|
|
spdk_nvmf_tgt_write_config_json(w, g_spdk_nvmf_tgt);
|
|
|
|
spdk_json_write_array_end(w);
|
|
|
|
|
|
|
|
spdk_event_call(done_ev);
|
|
|
|
}
|
|
|
|
|
2018-03-09 17:36:14 +00:00
|
|
|
static struct spdk_subsystem g_spdk_subsystem_nvmf = {
|
|
|
|
.name = "nvmf",
|
|
|
|
.init = spdk_nvmf_subsystem_init,
|
|
|
|
.fini = spdk_nvmf_subsystem_fini,
|
2018-05-07 18:26:13 +00:00
|
|
|
.write_config_json = spdk_nvmf_subsystem_write_config_json,
|
2018-03-09 17:36:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
SPDK_SUBSYSTEM_REGISTER(g_spdk_subsystem_nvmf)
|
2018-03-08 20:26:44 +00:00
|
|
|
SPDK_SUBSYSTEM_DEPEND(nvmf, bdev)
|