2017-09-14 14:53:36 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "spdk_internal/lvolstore.h"
|
|
|
|
#include "spdk_internal/log.h"
|
|
|
|
#include "spdk/string.h"
|
|
|
|
#include "spdk/io_channel.h"
|
2017-10-19 15:30:32 +00:00
|
|
|
#include "spdk/blob_bdev.h"
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
/* Length of string returned from uuid_unparse() */
|
|
|
|
#define UUID_STRING_LEN 37
|
|
|
|
|
lvol, blob: make channel operations number configurable for blob.
We need to make the channel operations numbers configurable for blob.
Reason: for iSCSI tests, if there is one CPU core, there will be only
one channel, thus read stress tests would
fail since we need more operations for blob channel.
Select a value equal to the small buffer size(8192) for
bdev layer, thus we can solve the iSCSI read issue
correctly. Since for bdev read, we currently only
allow 8192 active bdev I/o requests, so this solution should
work.
PS: Current solution is still not perfect, I think the very
precise fix is that we need to restrict sending I/Os
to the blob, if there is no channel operations. Though
current code, we have retry I/O in bdev , but it still fails
the iSCSI high pressure test.
Change-Id: I211f7a89d144af2c96ad4cc1bd7ac8e94adc72e7
Signed-off-by: Ziye Yang <optimistyzy@gmail.com>
Reviewed-on: https://review.gerrithub.io/393115
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
2017-12-28 03:07:45 +00:00
|
|
|
/* Default blob channel opts for lvol */
|
2018-01-11 11:52:44 +00:00
|
|
|
#define SPDK_LVOL_BLOB_OPTS_CHANNEL_OPS 512
|
lvol, blob: make channel operations number configurable for blob.
We need to make the channel operations numbers configurable for blob.
Reason: for iSCSI tests, if there is one CPU core, there will be only
one channel, thus read stress tests would
fail since we need more operations for blob channel.
Select a value equal to the small buffer size(8192) for
bdev layer, thus we can solve the iSCSI read issue
correctly. Since for bdev read, we currently only
allow 8192 active bdev I/o requests, so this solution should
work.
PS: Current solution is still not perfect, I think the very
precise fix is that we need to restrict sending I/Os
to the blob, if there is no channel operations. Though
current code, we have retry I/O in bdev , but it still fails
the iSCSI high pressure test.
Change-Id: I211f7a89d144af2c96ad4cc1bd7ac8e94adc72e7
Signed-off-by: Ziye Yang <optimistyzy@gmail.com>
Reviewed-on: https://review.gerrithub.io/393115
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
2017-12-28 03:07:45 +00:00
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_LOG_REGISTER_COMPONENT("lvol", SPDK_LOG_LVOL)
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-10-18 18:05:41 +00:00
|
|
|
static TAILQ_HEAD(, spdk_lvol_store) g_lvol_stores = TAILQ_HEAD_INITIALIZER(g_lvol_stores);
|
|
|
|
static pthread_mutex_t g_lvol_stores_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
2017-09-27 11:18:50 +00:00
|
|
|
static inline size_t
|
|
|
|
divide_round_up(size_t num, size_t divisor)
|
|
|
|
{
|
|
|
|
return (num + divisor - 1) / divisor;
|
|
|
|
}
|
|
|
|
|
2017-10-18 18:05:41 +00:00
|
|
|
static int
|
|
|
|
_spdk_add_lvs_to_list(struct spdk_lvol_store *lvs)
|
|
|
|
{
|
2017-08-29 17:37:41 +00:00
|
|
|
struct spdk_lvol_store *tmp;
|
|
|
|
bool name_conflict = false;
|
|
|
|
|
2017-10-18 18:05:41 +00:00
|
|
|
pthread_mutex_lock(&g_lvol_stores_mutex);
|
2017-08-29 17:37:41 +00:00
|
|
|
TAILQ_FOREACH(tmp, &g_lvol_stores, link) {
|
|
|
|
if (!strncmp(lvs->name, tmp->name, SPDK_LVS_NAME_MAX)) {
|
|
|
|
name_conflict = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!name_conflict) {
|
|
|
|
lvs->on_list = true;
|
|
|
|
TAILQ_INSERT_TAIL(&g_lvol_stores, lvs, link);
|
|
|
|
}
|
2017-10-18 18:05:41 +00:00
|
|
|
pthread_mutex_unlock(&g_lvol_stores_mutex);
|
|
|
|
|
2017-08-29 17:37:41 +00:00
|
|
|
return name_conflict ? -1 : 0;
|
2017-10-18 18:05:41 +00:00
|
|
|
}
|
|
|
|
|
2017-10-18 18:15:56 +00:00
|
|
|
static void
|
|
|
|
_spdk_lvs_free(struct spdk_lvol_store *lvs)
|
|
|
|
{
|
2017-10-18 18:05:41 +00:00
|
|
|
if (lvs->on_list) {
|
|
|
|
TAILQ_REMOVE(&g_lvol_stores, lvs, link);
|
|
|
|
}
|
2017-10-18 18:15:56 +00:00
|
|
|
free(lvs);
|
|
|
|
}
|
|
|
|
|
2017-10-19 15:30:32 +00:00
|
|
|
static void
|
|
|
|
_spdk_lvol_open_cb(void *cb_arg, struct spdk_blob *blob, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvol_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol *lvol = req->lvol;
|
|
|
|
|
|
|
|
if (lvolerrno != 0) {
|
2017-12-21 09:50:52 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Failed to open lvol %s\n", lvol->unique_id);
|
2017-10-19 15:30:32 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2017-10-20 14:07:10 +00:00
|
|
|
lvol->ref_count++;
|
2017-10-19 15:30:32 +00:00
|
|
|
lvol->blob = blob;
|
|
|
|
end:
|
|
|
|
req->cb_fn(req->cb_arg, lvol, lvolerrno);
|
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
spdk_lvol_open(struct spdk_lvol *lvol, spdk_lvol_op_with_handle_complete cb_fn, void *cb_arg)
|
|
|
|
{
|
|
|
|
struct spdk_lvol_with_handle_req *req;
|
|
|
|
|
|
|
|
assert(cb_fn != NULL);
|
|
|
|
|
|
|
|
if (lvol == NULL) {
|
|
|
|
SPDK_ERRLOG("lvol does not exist\n");
|
|
|
|
cb_fn(cb_arg, NULL, -ENODEV);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-25 08:15:02 +00:00
|
|
|
if (lvol->action_in_progress == true) {
|
|
|
|
SPDK_ERRLOG("Cannot open lvol - operations on lvol pending\n");
|
|
|
|
cb_fn(cb_arg, lvol, -EBUSY);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-20 14:07:10 +00:00
|
|
|
if (lvol->ref_count > 0) {
|
|
|
|
lvol->ref_count++;
|
|
|
|
cb_fn(cb_arg, lvol, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-19 15:30:32 +00:00
|
|
|
req = calloc(1, sizeof(*req));
|
|
|
|
if (req == NULL) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for request structure\n");
|
|
|
|
cb_fn(cb_arg, NULL, -ENOMEM);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
req->cb_fn = cb_fn;
|
|
|
|
req->cb_arg = cb_arg;
|
|
|
|
req->lvol = lvol;
|
|
|
|
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_open_blob(lvol->lvol_store->blobstore, lvol->blob_id, _spdk_lvol_open_cb, req);
|
2017-10-19 15:30:32 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 19:37:25 +00:00
|
|
|
static void
|
|
|
|
_spdk_bs_unload_with_error_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = (struct spdk_lvs_with_handle_req *)cb_arg;
|
|
|
|
|
|
|
|
req->cb_fn(req->cb_arg, NULL, req->lvserrno);
|
|
|
|
free(req);
|
|
|
|
}
|
2017-10-19 15:30:32 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_load_next_lvol(void *cb_arg, struct spdk_blob *blob, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
struct spdk_blob_store *bs = lvs->blobstore;
|
|
|
|
struct spdk_lvol *lvol, *tmp;
|
|
|
|
spdk_blob_id blob_id;
|
|
|
|
char uuid[UUID_STRING_LEN];
|
2017-11-02 12:57:58 +00:00
|
|
|
const char *attr;
|
|
|
|
size_t value_len;
|
|
|
|
int rc;
|
2017-10-19 15:30:32 +00:00
|
|
|
|
|
|
|
if (lvolerrno == -ENOENT) {
|
|
|
|
/* Finished iterating */
|
|
|
|
req->cb_fn(req->cb_arg, lvs, 0);
|
|
|
|
free(req);
|
|
|
|
return;
|
|
|
|
} else if (lvolerrno < 0) {
|
|
|
|
SPDK_ERRLOG("Failed to fetch blobs list\n");
|
2017-11-06 19:37:25 +00:00
|
|
|
req->lvserrno = lvolerrno;
|
|
|
|
goto invalid;
|
2017-10-19 15:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blob_id = spdk_blob_get_id(blob);
|
|
|
|
|
|
|
|
if (blob_id == lvs->super_blob_id) {
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "found superblob %"PRIu64"\n", (uint64_t)blob_id);
|
2017-12-12 20:53:10 +00:00
|
|
|
spdk_bs_iter_next(bs, blob, _spdk_load_next_lvol, req);
|
2017-10-19 15:30:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lvol = calloc(1, sizeof(*lvol));
|
|
|
|
if (!lvol) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol base pointer\n");
|
2017-11-06 19:37:25 +00:00
|
|
|
req->lvserrno = -ENOMEM;
|
|
|
|
goto invalid;
|
2017-10-19 15:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lvol->blob = blob;
|
|
|
|
lvol->blob_id = blob_id;
|
|
|
|
lvol->lvol_store = lvs;
|
|
|
|
lvol->num_clusters = spdk_blob_get_num_clusters(blob);
|
|
|
|
lvol->close_only = false;
|
|
|
|
uuid_unparse(lvol->lvol_store->uuid, uuid);
|
2017-12-21 09:50:52 +00:00
|
|
|
lvol->unique_id = spdk_sprintf_alloc("%s_%"PRIu64, uuid, (uint64_t)blob_id);
|
|
|
|
if (!lvol->unique_id) {
|
2017-10-19 15:30:32 +00:00
|
|
|
SPDK_ERRLOG("Cannot assign lvol name\n");
|
|
|
|
free(lvol);
|
2017-11-06 19:37:25 +00:00
|
|
|
req->lvserrno = -ENOMEM;
|
|
|
|
goto invalid;
|
2017-10-19 15:30:32 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
rc = spdk_blob_get_xattr_value(blob, "name", (const void **)&attr, &value_len);
|
2017-11-02 12:57:58 +00:00
|
|
|
if (rc != 0 || value_len > SPDK_LVOL_NAME_MAX) {
|
|
|
|
SPDK_ERRLOG("Cannot assign lvol name\n");
|
2017-12-21 09:50:52 +00:00
|
|
|
free(lvol->unique_id);
|
2017-11-02 12:57:58 +00:00
|
|
|
free(lvol);
|
2017-11-06 19:37:25 +00:00
|
|
|
req->lvserrno = -EINVAL;
|
|
|
|
goto invalid;
|
2017-11-02 12:57:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
strncpy(lvol->name, attr, SPDK_LVOL_NAME_MAX);
|
|
|
|
|
2017-10-19 15:30:32 +00:00
|
|
|
TAILQ_INSERT_TAIL(&lvs->lvols, lvol, link);
|
|
|
|
|
|
|
|
lvs->lvol_count++;
|
|
|
|
|
2017-12-21 09:50:52 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "added lvol %s\n", lvol->unique_id);
|
2017-10-19 15:30:32 +00:00
|
|
|
|
2017-12-12 20:53:10 +00:00
|
|
|
spdk_bs_iter_next(bs, blob, _spdk_load_next_lvol, req);
|
2017-10-19 15:30:32 +00:00
|
|
|
|
2017-11-06 19:37:25 +00:00
|
|
|
return;
|
2017-10-19 15:30:32 +00:00
|
|
|
|
2017-11-06 19:37:25 +00:00
|
|
|
invalid:
|
|
|
|
TAILQ_FOREACH_SAFE(lvol, &lvs->lvols, link, tmp) {
|
|
|
|
TAILQ_REMOVE(&lvs->lvols, lvol, link);
|
2017-12-21 09:50:52 +00:00
|
|
|
free(lvol->unique_id);
|
2017-11-06 19:37:25 +00:00
|
|
|
free(lvol);
|
|
|
|
}
|
|
|
|
|
|
|
|
_spdk_lvs_free(lvs);
|
|
|
|
spdk_bs_unload(bs, _spdk_bs_unload_with_error_cb, req);
|
2017-10-19 15:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_close_super_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = (struct spdk_lvs_with_handle_req *)cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
struct spdk_blob_store *bs = lvs->blobstore;
|
|
|
|
|
|
|
|
if (lvolerrno != 0) {
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Could not close super blob\n");
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-10-27 13:47:34 +00:00
|
|
|
req->lvserrno = -ENODEV;
|
2017-10-19 15:30:32 +00:00
|
|
|
spdk_bs_unload(bs, _spdk_bs_unload_with_error_cb, req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start loading lvols */
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_iter_first(lvs->blobstore, _spdk_load_next_lvol, req);
|
2017-10-19 15:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_close_super_blob_with_error_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = (struct spdk_lvs_with_handle_req *)cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
struct spdk_blob_store *bs = lvs->blobstore;
|
|
|
|
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-10-19 15:30:32 +00:00
|
|
|
|
|
|
|
spdk_bs_unload(bs, _spdk_bs_unload_with_error_cb, req);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_lvs_read_uuid(void *cb_arg, struct spdk_blob *blob, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = (struct spdk_lvs_with_handle_req *)cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
struct spdk_blob_store *bs = lvs->blobstore;
|
|
|
|
const char *attr;
|
|
|
|
size_t value_len;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (lvolerrno != 0) {
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Could not open super blob\n");
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-10-27 13:47:34 +00:00
|
|
|
req->lvserrno = -ENODEV;
|
2017-10-19 15:30:32 +00:00
|
|
|
spdk_bs_unload(bs, _spdk_bs_unload_with_error_cb, req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
rc = spdk_blob_get_xattr_value(blob, "uuid", (const void **)&attr, &value_len);
|
2017-10-19 15:30:32 +00:00
|
|
|
if (rc != 0 || value_len != UUID_STRING_LEN || attr[UUID_STRING_LEN - 1] != '\0') {
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "missing or incorrect UUID\n");
|
2017-10-27 13:47:34 +00:00
|
|
|
req->lvserrno = -EINVAL;
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(blob, _spdk_close_super_blob_with_error_cb, req);
|
2017-10-19 15:30:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uuid_parse(attr, lvs->uuid)) {
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "incorrect UUID '%s'\n", attr);
|
2017-10-27 13:47:34 +00:00
|
|
|
req->lvserrno = -EINVAL;
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(blob, _spdk_close_super_blob_with_error_cb, req);
|
2017-10-19 15:30:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
rc = spdk_blob_get_xattr_value(blob, "name", (const void **)&attr, &value_len);
|
2017-08-29 17:37:41 +00:00
|
|
|
if (rc != 0 || value_len > SPDK_LVS_NAME_MAX) {
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "missing or invalid name\n");
|
2017-10-27 13:47:34 +00:00
|
|
|
req->lvserrno = -EINVAL;
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(blob, _spdk_close_super_blob_with_error_cb, req);
|
2017-08-29 17:37:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
strncpy(lvs->name, attr, value_len);
|
|
|
|
|
|
|
|
rc = _spdk_add_lvs_to_list(lvs);
|
|
|
|
if (rc) {
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "lvolstore with name %s already exists\n", lvs->name);
|
2017-10-27 13:47:34 +00:00
|
|
|
req->lvserrno = -EEXIST;
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(blob, _spdk_close_super_blob_with_error_cb, req);
|
2017-08-29 17:37:41 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-10-18 18:05:41 +00:00
|
|
|
|
2017-10-19 15:30:32 +00:00
|
|
|
lvs->super_blob_id = spdk_blob_get_id(blob);
|
|
|
|
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(blob, _spdk_close_super_cb, req);
|
2017-10-19 15:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_lvs_open_super(void *cb_arg, spdk_blob_id blobid, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = (struct spdk_lvs_with_handle_req *)cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
struct spdk_blob_store *bs = lvs->blobstore;
|
|
|
|
|
|
|
|
if (lvolerrno != 0) {
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Super blob not found\n");
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-10-27 13:47:34 +00:00
|
|
|
req->lvserrno = -ENODEV;
|
2017-10-19 15:30:32 +00:00
|
|
|
spdk_bs_unload(bs, _spdk_bs_unload_with_error_cb, req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_open_blob(bs, blobid, _spdk_lvs_read_uuid, req);
|
2017-10-19 15:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_lvs_load_cb(void *cb_arg, struct spdk_blob_store *bs, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = (struct spdk_lvs_with_handle_req *)cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs;
|
|
|
|
|
|
|
|
if (lvolerrno != 0) {
|
|
|
|
req->cb_fn(req->cb_arg, NULL, lvolerrno);
|
|
|
|
free(req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lvs = calloc(1, sizeof(*lvs));
|
|
|
|
if (lvs == NULL) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol store\n");
|
|
|
|
spdk_bs_unload(bs, _spdk_bs_unload_with_error_cb, req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lvs->blobstore = bs;
|
|
|
|
lvs->bs_dev = req->bs_dev;
|
|
|
|
TAILQ_INIT(&lvs->lvols);
|
|
|
|
|
|
|
|
req->lvol_store = lvs;
|
|
|
|
|
|
|
|
spdk_bs_get_super(bs, _spdk_lvs_open_super, req);
|
|
|
|
}
|
|
|
|
|
2018-01-05 03:16:37 +00:00
|
|
|
static void
|
|
|
|
spdk_lvs_bs_opts_init(struct spdk_bs_opts *opts)
|
|
|
|
{
|
|
|
|
spdk_bs_opts_init(opts);
|
|
|
|
opts->max_channel_ops = SPDK_LVOL_BLOB_OPTS_CHANNEL_OPS;
|
|
|
|
}
|
|
|
|
|
2017-10-19 15:30:32 +00:00
|
|
|
void
|
|
|
|
spdk_lvs_load(struct spdk_bs_dev *bs_dev, spdk_lvs_op_with_handle_complete cb_fn, void *cb_arg)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req;
|
|
|
|
struct spdk_bs_opts opts = {};
|
|
|
|
|
|
|
|
assert(cb_fn != NULL);
|
|
|
|
|
|
|
|
if (bs_dev == NULL) {
|
|
|
|
SPDK_ERRLOG("Blobstore device does not exist\n");
|
|
|
|
cb_fn(cb_arg, NULL, -ENODEV);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
req = calloc(1, sizeof(*req));
|
|
|
|
if (req == NULL) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for request structure\n");
|
|
|
|
cb_fn(cb_arg, NULL, -ENOMEM);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
req->cb_fn = cb_fn;
|
|
|
|
req->cb_arg = cb_arg;
|
|
|
|
req->bs_dev = bs_dev;
|
|
|
|
|
2018-01-05 03:16:37 +00:00
|
|
|
spdk_lvs_bs_opts_init(&opts);
|
2017-10-19 15:30:32 +00:00
|
|
|
strncpy(opts.bstype.bstype, "LVOLSTORE", SPDK_BLOBSTORE_TYPE_LENGTH);
|
|
|
|
|
|
|
|
spdk_bs_load(bs_dev, &opts, _spdk_lvs_load_cb, req);
|
|
|
|
}
|
|
|
|
|
2017-09-14 14:53:36 +00:00
|
|
|
static void
|
2017-09-22 12:13:56 +00:00
|
|
|
_spdk_super_create_close_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
|
|
|
SPDK_ERRLOG("Lvol store init failed: could not close super blob\n");
|
2017-10-13 21:27:22 +00:00
|
|
|
req->cb_fn(req->cb_arg, NULL, lvolerrno);
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-10-13 21:27:22 +00:00
|
|
|
free(req);
|
|
|
|
return;
|
2017-09-22 12:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
req->cb_fn(req->cb_arg, lvs, lvolerrno);
|
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_super_blob_set_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
struct spdk_blob *blob = lvs->super_blob;
|
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
|
|
|
req->cb_fn(req->cb_arg, NULL, lvolerrno);
|
|
|
|
SPDK_ERRLOG("Lvol store init failed: could not set uuid for super blob\n");
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-09-22 12:13:56 +00:00
|
|
|
free(req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(blob, _spdk_super_create_close_cb, req);
|
2017-09-22 12:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_super_blob_init_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
struct spdk_blob *blob = lvs->super_blob;
|
|
|
|
char uuid[UUID_STRING_LEN];
|
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
|
|
|
req->cb_fn(req->cb_arg, NULL, lvolerrno);
|
|
|
|
SPDK_ERRLOG("Lvol store init failed: could not set super blob\n");
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-09-22 12:13:56 +00:00
|
|
|
free(req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uuid_unparse(lvs->uuid, uuid);
|
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
spdk_blob_set_xattr(blob, "uuid", uuid, UUID_STRING_LEN);
|
|
|
|
spdk_blob_set_xattr(blob, "name", lvs->name, strnlen(lvs->name, SPDK_LVS_NAME_MAX) + 1);
|
|
|
|
spdk_blob_sync_md(blob, _spdk_super_blob_set_cb, req);
|
2017-09-22 12:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_super_blob_create_open_cb(void *cb_arg, struct spdk_blob *blob, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
|
|
|
req->cb_fn(req->cb_arg, NULL, lvolerrno);
|
|
|
|
SPDK_ERRLOG("Lvol store init failed: could not open super blob\n");
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-09-22 12:13:56 +00:00
|
|
|
free(req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lvs->super_blob = blob;
|
|
|
|
lvs->super_blob_id = spdk_blob_get_id(blob);
|
|
|
|
|
|
|
|
spdk_bs_set_super(lvs->blobstore, lvs->super_blob_id, _spdk_super_blob_init_cb, req);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_super_blob_create_cb(void *cb_arg, spdk_blob_id blobid, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = req->lvol_store;
|
|
|
|
struct spdk_blob_store *bs;
|
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
|
|
|
req->cb_fn(req->cb_arg, NULL, lvolerrno);
|
|
|
|
SPDK_ERRLOG("Lvol store init failed: could not create super blob\n");
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-09-22 12:13:56 +00:00
|
|
|
free(req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bs = req->lvol_store->blobstore;
|
|
|
|
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_open_blob(bs, blobid, _spdk_super_blob_create_open_cb, req);
|
2017-09-22 12:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_lvs_init_cb(void *cb_arg, struct spdk_blob_store *bs, int lvserrno)
|
2017-09-14 14:53:36 +00:00
|
|
|
{
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvs_with_handle_req *lvs_req = cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = lvs_req->lvol_store;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
if (lvserrno != 0) {
|
|
|
|
assert(bs == NULL);
|
2017-09-22 12:13:56 +00:00
|
|
|
lvs_req->cb_fn(lvs_req->cb_arg, NULL, lvserrno);
|
2017-09-14 14:53:36 +00:00
|
|
|
SPDK_ERRLOG("Lvol store init failed: could not initialize blobstore\n");
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-09-22 12:13:56 +00:00
|
|
|
free(lvs_req);
|
|
|
|
return;
|
2017-09-14 14:53:36 +00:00
|
|
|
}
|
2017-09-22 12:13:56 +00:00
|
|
|
|
|
|
|
assert(bs != NULL);
|
|
|
|
lvs->blobstore = bs;
|
|
|
|
TAILQ_INIT(&lvs->lvols);
|
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Lvol store initialized\n");
|
2017-09-22 12:13:56 +00:00
|
|
|
|
|
|
|
/* create super blob */
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_create_blob(lvs->blobstore, _spdk_super_blob_create_cb, lvs_req);
|
2017-09-14 14:53:36 +00:00
|
|
|
}
|
|
|
|
|
2017-10-18 19:40:28 +00:00
|
|
|
void
|
|
|
|
spdk_lvs_opts_init(struct spdk_lvs_opts *o)
|
|
|
|
{
|
|
|
|
o->cluster_sz = SPDK_LVS_OPTS_CLUSTER_SZ;
|
2017-08-29 17:37:41 +00:00
|
|
|
memset(o->name, 0, sizeof(o->name));
|
2017-10-18 19:40:28 +00:00
|
|
|
}
|
|
|
|
|
2017-09-29 07:46:50 +00:00
|
|
|
static void
|
2017-10-18 19:40:28 +00:00
|
|
|
_spdk_setup_lvs_opts(struct spdk_bs_opts *bs_opts, struct spdk_lvs_opts *o)
|
2017-09-29 07:46:50 +00:00
|
|
|
{
|
2017-10-18 19:40:28 +00:00
|
|
|
assert(o != NULL);
|
2018-01-05 03:16:37 +00:00
|
|
|
spdk_lvs_bs_opts_init(bs_opts);
|
2017-10-18 19:40:28 +00:00
|
|
|
bs_opts->cluster_sz = o->cluster_sz;
|
2017-09-29 07:46:50 +00:00
|
|
|
}
|
|
|
|
|
2017-09-14 14:53:36 +00:00
|
|
|
int
|
2017-09-29 07:46:50 +00:00
|
|
|
spdk_lvs_init(struct spdk_bs_dev *bs_dev, struct spdk_lvs_opts *o,
|
|
|
|
spdk_lvs_op_with_handle_complete cb_fn, void *cb_arg)
|
2017-09-14 14:53:36 +00:00
|
|
|
{
|
|
|
|
struct spdk_lvol_store *lvs;
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvs_with_handle_req *lvs_req;
|
2017-10-19 15:30:32 +00:00
|
|
|
struct spdk_bs_opts opts = {};
|
2017-08-29 17:37:41 +00:00
|
|
|
int rc;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
if (bs_dev == NULL) {
|
|
|
|
SPDK_ERRLOG("Blobstore device does not exist\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2017-10-18 19:40:28 +00:00
|
|
|
if (o == NULL) {
|
|
|
|
SPDK_ERRLOG("spdk_lvs_opts not specified\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
_spdk_setup_lvs_opts(&opts, o);
|
2017-09-29 07:46:50 +00:00
|
|
|
|
2017-08-29 17:37:41 +00:00
|
|
|
if (strnlen(o->name, SPDK_LVS_NAME_MAX) == SPDK_LVS_NAME_MAX) {
|
|
|
|
SPDK_ERRLOG("Name has no null terminator.\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strnlen(o->name, SPDK_LVS_NAME_MAX) == 0) {
|
|
|
|
SPDK_ERRLOG("No name specified.\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2017-09-14 14:53:36 +00:00
|
|
|
lvs = calloc(1, sizeof(*lvs));
|
|
|
|
if (!lvs) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol store base pointer\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
uuid_generate_time(lvs->uuid);
|
2017-08-29 17:37:41 +00:00
|
|
|
strncpy(lvs->name, o->name, SPDK_LVS_NAME_MAX);
|
|
|
|
|
|
|
|
rc = _spdk_add_lvs_to_list(lvs);
|
|
|
|
if (rc) {
|
|
|
|
SPDK_ERRLOG("lvolstore with name %s already exists\n", lvs->name);
|
|
|
|
_spdk_lvs_free(lvs);
|
2017-10-27 13:47:34 +00:00
|
|
|
return -EEXIST;
|
2017-08-29 17:37:41 +00:00
|
|
|
}
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
lvs_req = calloc(1, sizeof(*lvs_req));
|
|
|
|
if (!lvs_req) {
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-09-14 14:53:36 +00:00
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol store request pointer\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2017-09-22 12:13:56 +00:00
|
|
|
assert(cb_fn != NULL);
|
2017-09-19 14:09:43 +00:00
|
|
|
lvs_req->cb_fn = cb_fn;
|
|
|
|
lvs_req->cb_arg = cb_arg;
|
|
|
|
lvs_req->lvol_store = lvs;
|
2017-09-14 14:53:36 +00:00
|
|
|
lvs->bs_dev = bs_dev;
|
2017-10-21 01:23:54 +00:00
|
|
|
lvs->destruct = false;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-10-19 15:30:32 +00:00
|
|
|
strncpy(opts.bstype.bstype, "LVOLSTORE", SPDK_BLOBSTORE_TYPE_LENGTH);
|
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Initializing lvol store\n");
|
2017-09-22 12:13:56 +00:00
|
|
|
spdk_bs_init(bs_dev, &opts, _spdk_lvs_init_cb, lvs_req);
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_lvs_unload_cb(void *cb_arg, int lvserrno)
|
|
|
|
{
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvs_req *lvs_req = cb_arg;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Lvol store unloaded\n");
|
2017-09-19 14:09:43 +00:00
|
|
|
assert(lvs_req->cb_fn != NULL);
|
|
|
|
lvs_req->cb_fn(lvs_req->cb_arg, lvserrno);
|
2017-09-14 14:53:36 +00:00
|
|
|
free(lvs_req);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
spdk_lvs_unload(struct spdk_lvol_store *lvs, spdk_lvs_op_complete cb_fn,
|
|
|
|
void *cb_arg)
|
|
|
|
{
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvs_req *lvs_req;
|
2017-10-20 08:34:22 +00:00
|
|
|
struct spdk_lvol *lvol, *tmp;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
if (lvs == NULL) {
|
|
|
|
SPDK_ERRLOG("Lvol store is NULL\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2017-10-20 08:34:22 +00:00
|
|
|
TAILQ_FOREACH_SAFE(lvol, &lvs->lvols, link, tmp) {
|
2017-10-25 08:15:02 +00:00
|
|
|
if (lvol->action_in_progress == true) {
|
|
|
|
SPDK_ERRLOG("Cannot unload lvol store - operations on lvols pending\n");
|
|
|
|
cb_fn(cb_arg, -EBUSY);
|
|
|
|
return -EBUSY;
|
|
|
|
} else if (lvol->ref_count != 0) {
|
2017-10-20 08:34:22 +00:00
|
|
|
SPDK_ERRLOG("Lvols still open on lvol store\n");
|
2017-10-25 08:15:02 +00:00
|
|
|
cb_fn(cb_arg, -EBUSY);
|
2017-10-20 08:34:22 +00:00
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(lvol, &lvs->lvols, link, tmp) {
|
|
|
|
TAILQ_REMOVE(&lvs->lvols, lvol, link);
|
2017-12-21 09:50:52 +00:00
|
|
|
free(lvol->unique_id);
|
2017-10-20 08:34:22 +00:00
|
|
|
free(lvol);
|
2017-10-12 07:47:41 +00:00
|
|
|
}
|
|
|
|
|
2017-09-14 14:53:36 +00:00
|
|
|
lvs_req = calloc(1, sizeof(*lvs_req));
|
|
|
|
if (!lvs_req) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol store request pointer\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2017-09-19 14:09:43 +00:00
|
|
|
lvs_req->cb_fn = cb_fn;
|
|
|
|
lvs_req->cb_arg = cb_arg;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Unloading lvol store\n");
|
2017-09-14 14:53:36 +00:00
|
|
|
spdk_bs_unload(lvs->blobstore, _lvs_unload_cb, lvs_req);
|
2017-10-18 18:15:56 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_lvs_destruct_cb(void *cb_arg, int lvserrno)
|
|
|
|
{
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvs_req *req = cb_arg;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Lvol store bdev deleted\n");
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-12-07 23:23:48 +00:00
|
|
|
if (req->cb_fn != NULL) {
|
2017-09-19 14:09:43 +00:00
|
|
|
req->cb_fn(req->cb_arg, lvserrno);
|
2017-12-07 23:23:48 +00:00
|
|
|
}
|
2017-09-14 14:53:36 +00:00
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
2017-10-20 13:44:30 +00:00
|
|
|
static void
|
|
|
|
_lvs_destroy_cb(void *cb_arg, int lvserrno)
|
|
|
|
{
|
2017-10-20 22:22:11 +00:00
|
|
|
struct spdk_lvs_destroy_req *lvs_req = cb_arg;
|
2017-10-20 13:44:30 +00:00
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Lvol store destroyed\n");
|
2017-10-20 13:44:30 +00:00
|
|
|
assert(lvs_req->cb_fn != NULL);
|
|
|
|
lvs_req->cb_fn(lvs_req->cb_arg, lvserrno);
|
|
|
|
free(lvs_req);
|
|
|
|
}
|
|
|
|
|
2017-10-20 22:22:11 +00:00
|
|
|
static void
|
|
|
|
_lvs_destroy_super_cb(void *cb_arg, int bserrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvs_destroy_req *lvs_req = cb_arg;
|
|
|
|
struct spdk_lvol_store *lvs = lvs_req->lvs;
|
|
|
|
|
|
|
|
assert(lvs != NULL);
|
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Destroying lvol store\n");
|
2017-12-04 18:05:49 +00:00
|
|
|
spdk_bs_destroy(lvs->blobstore, _lvs_destroy_cb, lvs_req);
|
2017-10-20 22:22:11 +00:00
|
|
|
_spdk_lvs_free(lvs);
|
|
|
|
}
|
|
|
|
|
2017-10-20 13:44:30 +00:00
|
|
|
int
|
2017-12-04 18:05:49 +00:00
|
|
|
spdk_lvs_destroy(struct spdk_lvol_store *lvs, spdk_lvs_op_complete cb_fn,
|
2017-10-20 13:44:30 +00:00
|
|
|
void *cb_arg)
|
|
|
|
{
|
2017-10-20 22:22:11 +00:00
|
|
|
struct spdk_lvs_destroy_req *lvs_req;
|
2017-10-20 13:44:30 +00:00
|
|
|
struct spdk_lvol *iter_lvol, *tmp;
|
|
|
|
|
|
|
|
if (lvs == NULL) {
|
|
|
|
SPDK_ERRLOG("Lvol store is NULL\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(iter_lvol, &lvs->lvols, link, tmp) {
|
2017-10-25 08:15:02 +00:00
|
|
|
if (iter_lvol->action_in_progress == true) {
|
|
|
|
SPDK_ERRLOG("Cannot destroy lvol store - operations on lvols pending\n");
|
|
|
|
cb_fn(cb_arg, -EBUSY);
|
|
|
|
return -EBUSY;
|
|
|
|
} else if (iter_lvol->ref_count != 0) {
|
2017-10-20 13:44:30 +00:00
|
|
|
SPDK_ERRLOG("Lvols still open on lvol store\n");
|
2017-10-25 08:15:02 +00:00
|
|
|
cb_fn(cb_arg, -EBUSY);
|
2017-10-20 13:44:30 +00:00
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(iter_lvol, &lvs->lvols, link, tmp) {
|
2017-12-21 09:50:52 +00:00
|
|
|
free(iter_lvol->unique_id);
|
2017-10-20 13:44:30 +00:00
|
|
|
free(iter_lvol);
|
|
|
|
}
|
|
|
|
|
|
|
|
lvs_req = calloc(1, sizeof(*lvs_req));
|
|
|
|
if (!lvs_req) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol store request pointer\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
lvs_req->cb_fn = cb_fn;
|
|
|
|
lvs_req->cb_arg = cb_arg;
|
2017-10-20 22:22:11 +00:00
|
|
|
lvs_req->lvs = lvs;
|
2017-10-20 13:44:30 +00:00
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Deleting super blob\n");
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_delete_blob(lvs->blobstore, lvs->super_blob_id, _lvs_destroy_super_cb, lvs_req);
|
2017-10-20 13:44:30 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-09-14 14:53:36 +00:00
|
|
|
static void
|
|
|
|
_spdk_lvol_close_blob_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
2017-10-20 09:43:07 +00:00
|
|
|
struct spdk_lvol_req *req = cb_arg;
|
|
|
|
struct spdk_lvol *lvol = req->lvol;
|
2017-10-20 08:34:22 +00:00
|
|
|
struct spdk_lvol *iter_lvol, *tmp;
|
|
|
|
bool all_lvols_closed = true;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
|
|
|
SPDK_ERRLOG("Could not close blob on lvol\n");
|
2017-12-21 09:50:52 +00:00
|
|
|
free(lvol->unique_id);
|
2017-09-21 11:19:22 +00:00
|
|
|
free(lvol);
|
2017-10-20 09:43:07 +00:00
|
|
|
goto end;
|
2017-09-14 14:53:36 +00:00
|
|
|
}
|
|
|
|
|
2017-10-20 08:34:22 +00:00
|
|
|
lvol->ref_count--;
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(iter_lvol, &lvol->lvol_store->lvols, link, tmp) {
|
|
|
|
if (iter_lvol->ref_count != 0) {
|
|
|
|
all_lvols_closed = false;
|
|
|
|
}
|
2017-09-14 14:53:36 +00:00
|
|
|
}
|
|
|
|
|
2017-10-25 08:15:02 +00:00
|
|
|
lvol->action_in_progress = false;
|
|
|
|
|
2017-12-21 09:50:52 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Lvol %s closed\n", lvol->unique_id);
|
2017-10-20 09:43:07 +00:00
|
|
|
|
2017-10-20 08:34:22 +00:00
|
|
|
if (lvol->lvol_store->destruct_req && all_lvols_closed == true) {
|
2017-10-21 01:23:54 +00:00
|
|
|
if (!lvol->lvol_store->destruct) {
|
|
|
|
spdk_lvs_unload(lvol->lvol_store, _spdk_lvs_destruct_cb, lvol->lvol_store->destruct_req);
|
|
|
|
}
|
2017-10-20 08:34:22 +00:00
|
|
|
}
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-10-20 09:43:07 +00:00
|
|
|
end:
|
|
|
|
req->cb_fn(req->cb_arg, lvolerrno);
|
|
|
|
free(req);
|
2017-09-14 14:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_lvol_delete_blob_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
2017-10-20 09:43:07 +00:00
|
|
|
struct spdk_lvol_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol_req *lvol_req = req->cb_arg;
|
|
|
|
struct spdk_lvol *lvol = req->lvol;
|
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
|
|
|
SPDK_ERRLOG("Could not delete blob on lvol\n");
|
2017-12-21 09:50:52 +00:00
|
|
|
free(lvol->unique_id);
|
2017-10-20 09:43:07 +00:00
|
|
|
free(lvol);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2017-10-21 01:23:54 +00:00
|
|
|
TAILQ_REMOVE(&lvol->lvol_store->lvols, lvol, link);
|
|
|
|
|
2017-10-20 09:43:07 +00:00
|
|
|
if (lvol->lvol_store->destruct_req && TAILQ_EMPTY(&lvol->lvol_store->lvols)) {
|
2017-12-07 23:23:48 +00:00
|
|
|
if (lvol->lvol_store->destruct) {
|
2017-12-04 18:05:49 +00:00
|
|
|
spdk_lvs_destroy(lvol->lvol_store, _spdk_lvs_destruct_cb, lvol->lvol_store->destruct_req);
|
2017-12-07 23:23:48 +00:00
|
|
|
}
|
2017-10-20 09:43:07 +00:00
|
|
|
}
|
|
|
|
|
2017-12-21 09:50:52 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Lvol %s deleted\n", lvol->unique_id);
|
2017-10-20 09:43:07 +00:00
|
|
|
|
2017-12-21 09:50:52 +00:00
|
|
|
free(lvol->unique_id);
|
2017-10-20 09:43:07 +00:00
|
|
|
free(lvol);
|
|
|
|
|
|
|
|
end:
|
|
|
|
lvol_req->cb_fn(lvol_req->cb_arg, lvolerrno);
|
|
|
|
free(lvol_req);
|
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_lvol_destroy_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvol_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol_req *lvol_req = req->cb_arg;
|
|
|
|
struct spdk_lvol *lvol = req->lvol;
|
2017-09-14 14:53:36 +00:00
|
|
|
struct spdk_blob_store *bs = lvol->lvol_store->blobstore;
|
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
|
|
|
SPDK_ERRLOG("Could not delete blob on lvol\n");
|
2017-12-21 09:50:52 +00:00
|
|
|
free(lvol->unique_id);
|
2017-09-21 11:19:22 +00:00
|
|
|
free(lvol);
|
2017-10-20 09:43:07 +00:00
|
|
|
lvol_req->cb_fn(lvol_req->cb_arg, lvolerrno);
|
|
|
|
free(lvol_req);
|
|
|
|
free(req);
|
2017-09-14 14:53:36 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-12-21 09:50:52 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_LVOL, "Blob closed on lvol %s\n", lvol->unique_id);
|
2017-10-20 09:43:07 +00:00
|
|
|
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_delete_blob(bs, lvol->blob_id, _spdk_lvol_delete_blob_cb, req);
|
2017-09-14 14:53:36 +00:00
|
|
|
}
|
|
|
|
|
2017-10-20 09:43:07 +00:00
|
|
|
|
2017-10-20 08:34:22 +00:00
|
|
|
static void
|
|
|
|
_spdk_lvol_sync_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
|
|
|
struct spdk_lvol_with_handle_req *req = cb_arg;
|
|
|
|
struct spdk_lvol *lvol = req->lvol;
|
|
|
|
|
|
|
|
if (lvolerrno != 0) {
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(lvol->blob, _spdk_lvol_delete_blob_cb, lvol);
|
2017-10-20 08:34:22 +00:00
|
|
|
} else {
|
|
|
|
lvol->ref_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(req->cb_fn != NULL);
|
|
|
|
req->cb_fn(req->cb_arg, req->lvol, lvolerrno);
|
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
2017-09-14 14:53:36 +00:00
|
|
|
static void
|
|
|
|
_spdk_lvol_create_open_cb(void *cb_arg, struct spdk_blob *blob, int lvolerrno)
|
|
|
|
{
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvol_with_handle_req *req = cb_arg;
|
2017-09-14 14:53:36 +00:00
|
|
|
spdk_blob_id blob_id = spdk_blob_get_id(blob);
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvol *lvol = req->lvol;
|
2017-09-14 14:53:36 +00:00
|
|
|
char uuid[UUID_STRING_LEN];
|
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
|
|
|
free(lvol);
|
|
|
|
goto invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
lvol->blob = blob;
|
|
|
|
lvol->blob_id = blob_id;
|
|
|
|
|
|
|
|
uuid_unparse(lvol->lvol_store->uuid, uuid);
|
2017-12-21 09:50:52 +00:00
|
|
|
lvol->unique_id = spdk_sprintf_alloc("%s_%"PRIu64, uuid, (uint64_t)blob_id);
|
|
|
|
if (!lvol->unique_id) {
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(blob, _spdk_lvol_delete_blob_cb, lvol);
|
2017-10-13 13:32:59 +00:00
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol name\n");
|
|
|
|
lvolerrno = -ENOMEM;
|
2017-10-20 08:34:22 +00:00
|
|
|
free(lvol);
|
2017-09-14 14:53:36 +00:00
|
|
|
goto invalid;
|
|
|
|
}
|
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
lvolerrno = spdk_blob_resize(blob, lvol->num_clusters);
|
2017-09-14 14:53:36 +00:00
|
|
|
if (lvolerrno < 0) {
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(blob, _spdk_lvol_destroy_cb, lvol);
|
2017-09-14 14:53:36 +00:00
|
|
|
goto invalid;
|
|
|
|
}
|
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
lvolerrno = spdk_blob_set_xattr(blob, "name", lvol->name,
|
|
|
|
strnlen(lvol->name, SPDK_LVOL_NAME_MAX) + 1);
|
2017-10-24 02:51:49 +00:00
|
|
|
if (lvolerrno < 0) {
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(blob, _spdk_lvol_destroy_cb, lvol);
|
2017-10-24 02:51:49 +00:00
|
|
|
goto invalid;
|
|
|
|
}
|
|
|
|
|
2017-09-14 14:53:36 +00:00
|
|
|
TAILQ_INSERT_TAIL(&lvol->lvol_store->lvols, lvol, link);
|
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
spdk_blob_sync_md(blob, _spdk_lvol_sync_cb, req);
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
invalid:
|
2017-09-19 14:09:43 +00:00
|
|
|
assert(req->cb_fn != NULL);
|
|
|
|
req->cb_fn(req->cb_arg, NULL, lvolerrno);
|
2017-09-14 14:53:36 +00:00
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_lvol_create_cb(void *cb_arg, spdk_blob_id blobid, int lvolerrno)
|
|
|
|
{
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvol_with_handle_req *req = cb_arg;
|
2017-09-14 14:53:36 +00:00
|
|
|
struct spdk_blob_store *bs;
|
|
|
|
|
|
|
|
if (lvolerrno < 0) {
|
2017-09-19 14:09:43 +00:00
|
|
|
free(req->lvol);
|
|
|
|
assert(req->cb_fn != NULL);
|
|
|
|
req->cb_fn(req->cb_arg, NULL, lvolerrno);
|
2017-09-14 14:53:36 +00:00
|
|
|
free(req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-19 14:09:43 +00:00
|
|
|
bs = req->lvol->lvol_store->blobstore;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_open_blob(bs, blobid, _spdk_lvol_create_open_cb, req);
|
2017-09-14 14:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2017-10-27 13:12:38 +00:00
|
|
|
spdk_lvol_create(struct spdk_lvol_store *lvs, const char *name, uint64_t sz,
|
2017-09-14 14:53:36 +00:00
|
|
|
spdk_lvol_op_with_handle_complete cb_fn, void *cb_arg)
|
|
|
|
{
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvol_with_handle_req *req;
|
2017-09-27 11:18:50 +00:00
|
|
|
struct spdk_blob_store *bs;
|
2017-10-24 02:51:49 +00:00
|
|
|
struct spdk_lvol *lvol, *tmp;
|
2017-09-27 11:18:50 +00:00
|
|
|
uint64_t num_clusters, free_clusters;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
if (lvs == NULL) {
|
|
|
|
SPDK_ERRLOG("lvol store does not exist\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
2017-10-24 02:51:49 +00:00
|
|
|
|
|
|
|
if (name == NULL || strnlen(name, SPDK_LVS_NAME_MAX) == 0) {
|
|
|
|
SPDK_ERRLOG("No name specified.\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strnlen(name, SPDK_LVOL_NAME_MAX) == SPDK_LVOL_NAME_MAX) {
|
|
|
|
SPDK_ERRLOG("Name has no null terminator.\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH(tmp, &lvs->lvols, link) {
|
|
|
|
if (!strncmp(name, tmp->name, SPDK_LVOL_NAME_MAX)) {
|
|
|
|
SPDK_ERRLOG("lvol with name %s already exists\n", name);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-27 11:18:50 +00:00
|
|
|
bs = lvs->blobstore;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-09-27 11:18:50 +00:00
|
|
|
num_clusters = divide_round_up(sz, spdk_bs_get_cluster_size(bs));
|
|
|
|
free_clusters = spdk_bs_free_cluster_count(bs);
|
|
|
|
if (num_clusters > free_clusters) {
|
|
|
|
SPDK_ERRLOG("Not enough free clusters left (%zu) on lvol store to add lvol %zu clusters\n",
|
|
|
|
free_clusters, num_clusters);
|
2017-09-14 14:53:36 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
req = calloc(1, sizeof(*req));
|
|
|
|
if (!req) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol request pointer\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2017-09-19 14:09:43 +00:00
|
|
|
req->cb_fn = cb_fn;
|
|
|
|
req->cb_arg = cb_arg;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
lvol = calloc(1, sizeof(*lvol));
|
|
|
|
if (!lvol) {
|
|
|
|
free(req);
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol base pointer\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
lvol->lvol_store = lvs;
|
2017-09-27 11:18:50 +00:00
|
|
|
lvol->num_clusters = num_clusters;
|
2017-09-14 14:53:36 +00:00
|
|
|
lvol->close_only = false;
|
2017-10-24 02:51:49 +00:00
|
|
|
strncpy(lvol->name, name, SPDK_LVS_NAME_MAX);
|
2017-09-19 14:09:43 +00:00
|
|
|
req->lvol = lvol;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_create_blob(lvs->blobstore, _spdk_lvol_create_cb, req);
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_lvol_resize_cb(void *cb_arg, int lvolerrno)
|
|
|
|
{
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvol_req *req = cb_arg;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-09-19 14:09:43 +00:00
|
|
|
req->cb_fn(req->cb_arg, lvolerrno);
|
2017-09-14 14:53:36 +00:00
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
spdk_lvol_resize(struct spdk_lvol *lvol, uint64_t sz,
|
|
|
|
spdk_lvol_op_complete cb_fn, void *cb_arg)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct spdk_blob *blob = lvol->blob;
|
|
|
|
struct spdk_lvol_store *lvs = lvol->lvol_store;
|
2017-09-19 14:09:43 +00:00
|
|
|
struct spdk_lvol_req *req;
|
2017-09-14 14:53:36 +00:00
|
|
|
uint64_t free_clusters = spdk_bs_free_cluster_count(lvs->blobstore);
|
2017-09-27 11:18:50 +00:00
|
|
|
uint64_t used_clusters = lvol->num_clusters;
|
|
|
|
uint64_t new_clusters = divide_round_up(sz, spdk_bs_get_cluster_size(lvs->blobstore));
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
/* Check if size of lvol increasing */
|
2017-09-27 11:18:50 +00:00
|
|
|
if (new_clusters > used_clusters) {
|
2017-09-14 14:53:36 +00:00
|
|
|
/* Check if there is enough clusters left to resize */
|
2017-09-27 11:18:50 +00:00
|
|
|
if (new_clusters - used_clusters > free_clusters) {
|
2017-09-14 14:53:36 +00:00
|
|
|
SPDK_ERRLOG("Not enough free clusters left on lvol store to resize lvol to %zu clusters\n", sz);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
req = calloc(1, sizeof(*req));
|
|
|
|
if (!req) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol request pointer\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2017-09-19 14:09:43 +00:00
|
|
|
req->cb_fn = cb_fn;
|
|
|
|
req->cb_arg = cb_arg;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
rc = spdk_blob_resize(blob, sz);
|
2017-09-14 14:53:36 +00:00
|
|
|
if (rc < 0) {
|
|
|
|
goto invalid;
|
|
|
|
}
|
|
|
|
|
2017-09-27 11:18:50 +00:00
|
|
|
lvol->num_clusters = new_clusters;
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
spdk_blob_set_xattr(blob, "length", &sz, sizeof(sz));
|
2017-09-14 14:53:36 +00:00
|
|
|
|
2017-12-08 16:38:33 +00:00
|
|
|
spdk_blob_sync_md(blob, _spdk_lvol_resize_cb, req);
|
2017-09-14 14:53:36 +00:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
invalid:
|
2017-09-19 14:09:43 +00:00
|
|
|
req->cb_fn(req->cb_arg, rc);
|
2017-09-14 14:53:36 +00:00
|
|
|
free(req);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-10-20 09:43:07 +00:00
|
|
|
spdk_lvol_destroy(struct spdk_lvol *lvol, spdk_lvol_op_complete cb_fn, void *cb_arg)
|
2017-09-14 14:53:36 +00:00
|
|
|
{
|
2017-10-20 09:43:07 +00:00
|
|
|
struct spdk_lvol_with_handle_req *req;
|
|
|
|
struct spdk_lvol_req *lvol_req;
|
2017-10-20 08:34:22 +00:00
|
|
|
struct spdk_blob_store *bs = lvol->lvol_store->blobstore;
|
2017-10-20 09:43:07 +00:00
|
|
|
|
|
|
|
assert(cb_fn != NULL);
|
|
|
|
|
2017-09-14 14:53:36 +00:00
|
|
|
if (lvol == NULL) {
|
|
|
|
SPDK_ERRLOG("lvol does not exist\n");
|
2017-10-20 09:43:07 +00:00
|
|
|
cb_fn(cb_arg, -ENODEV);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-20 08:34:22 +00:00
|
|
|
if (lvol->ref_count != 0) {
|
2017-12-21 09:50:52 +00:00
|
|
|
SPDK_ERRLOG("Cannot destroy lvol %s because it is still open\n", lvol->unique_id);
|
2017-10-20 08:34:22 +00:00
|
|
|
cb_fn(cb_arg, -EBUSY);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-25 08:15:02 +00:00
|
|
|
lvol->action_in_progress = true;
|
|
|
|
|
2017-10-20 09:43:07 +00:00
|
|
|
req = calloc(1, sizeof(*req));
|
|
|
|
if (!req) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol request pointer\n");
|
|
|
|
cb_fn(cb_arg, -ENOMEM);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lvol_req = calloc(1, sizeof(*lvol_req));
|
2017-10-20 22:30:56 +00:00
|
|
|
if (!lvol_req) {
|
2017-10-20 09:43:07 +00:00
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol request pointer\n");
|
|
|
|
cb_fn(cb_arg, -ENOMEM);
|
|
|
|
free(req);
|
2017-09-14 14:53:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-20 09:43:07 +00:00
|
|
|
lvol_req->cb_fn = cb_fn;
|
|
|
|
lvol_req->cb_arg = cb_arg;
|
|
|
|
req->cb_arg = lvol_req;
|
|
|
|
req->lvol = lvol;
|
|
|
|
|
2017-12-08 21:09:12 +00:00
|
|
|
spdk_bs_delete_blob(bs, lvol->blob_id, _spdk_lvol_delete_blob_cb, req);
|
2017-09-14 14:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-10-20 09:43:07 +00:00
|
|
|
spdk_lvol_close(struct spdk_lvol *lvol, spdk_lvol_op_complete cb_fn, void *cb_arg)
|
2017-09-14 14:53:36 +00:00
|
|
|
{
|
2017-10-20 09:43:07 +00:00
|
|
|
struct spdk_lvol_req *req;
|
|
|
|
|
|
|
|
assert(cb_fn != NULL);
|
|
|
|
|
2017-09-14 14:53:36 +00:00
|
|
|
if (lvol == NULL) {
|
|
|
|
SPDK_ERRLOG("lvol does not exist\n");
|
2017-10-20 09:43:07 +00:00
|
|
|
cb_fn(cb_arg, -ENODEV);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-20 14:07:10 +00:00
|
|
|
if (lvol->ref_count > 1) {
|
|
|
|
lvol->ref_count--;
|
|
|
|
cb_fn(cb_arg, 0);
|
|
|
|
return;
|
|
|
|
} else if (lvol->ref_count == 0) {
|
|
|
|
cb_fn(cb_arg, -EINVAL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-25 08:15:02 +00:00
|
|
|
lvol->action_in_progress = true;
|
|
|
|
|
2017-10-20 09:43:07 +00:00
|
|
|
req = calloc(1, sizeof(*req));
|
|
|
|
if (!req) {
|
|
|
|
SPDK_ERRLOG("Cannot alloc memory for lvol request pointer\n");
|
|
|
|
cb_fn(cb_arg, -ENOMEM);
|
2017-09-14 14:53:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-20 09:43:07 +00:00
|
|
|
req->cb_fn = cb_fn;
|
|
|
|
req->cb_arg = cb_arg;
|
|
|
|
req->lvol = lvol;
|
|
|
|
|
2017-12-12 20:42:56 +00:00
|
|
|
spdk_blob_close(lvol->blob, _spdk_lvol_close_blob_cb, req);
|
2017-09-14 14:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_io_channel *
|
|
|
|
spdk_lvol_get_io_channel(struct spdk_lvol *lvol)
|
|
|
|
{
|
|
|
|
return spdk_bs_alloc_io_channel(lvol->lvol_store->blobstore);
|
|
|
|
}
|