195 lines
5.2 KiB
C
Raw Normal View History

2019-09-30 10:53:41 -04:00
/******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2017-2019. All rights reserved.
* iSulad licensed under the Mulan PSL v1.
* You can use this software according to the terms and conditions of the Mulan PSL v1.
* You may obtain a copy of Mulan PSL v1 at:
* http://license.coscl.org.cn/MulanPSL
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE.
* See the Mulan PSL v1 for more details.
* Author: tanyifeng
* Create: 2017-11-22
* Description: provide image functions
******************************************************************************/
#include "driver.h"
#include <stdlib.h>
#include <string.h>
#include <sys/mount.h>
#include <linux/limits.h>
#include "driver_overlay2.h"
#include "driver_devmapper.h"
2019-09-30 10:53:41 -04:00
#include "utils.h"
#include "libisulad.h"
2019-09-30 10:53:41 -04:00
#include "log.h"
#include "isulad_config.h"
2019-12-25 15:50:34 +08:00
#include "image.h"
2019-09-30 10:53:41 -04:00
/* overlay2 */
#define DRIVER_OVERLAY2_NAME "overlay2"
static const struct graphdriver_ops g_overlay2_ops = {
.init = overlay2_init,
.parse_options = overlay2_parse_options,
.is_quota_options = overlay2_is_quota_options,
};
/* devicemapper */
#define DRIVER_DEVMAPPER_NAME "devicemapper"
static const struct graphdriver_ops g_devmapper_ops = {
.init = devmapper_init,
.parse_options = devmapper_parse_options,
.is_quota_options = devmapper_is_quota_options,
};
2019-09-30 10:53:41 -04:00
static struct graphdriver g_drivers[] = {
{.name = DRIVER_OVERLAY2_NAME, .ops = &g_overlay2_ops},
{.name = DRIVER_DEVMAPPER_NAME, .ops = &g_devmapper_ops}
2019-09-30 10:53:41 -04:00
};
static const size_t g_numdrivers = sizeof(g_drivers) / sizeof(struct graphdriver);
struct graphdriver *graphdriver_init(const char *name, char **storage_opts, size_t storage_opts_len)
{
size_t i = 0;
if (name == NULL || storage_opts == NULL) {
return NULL;
}
for (i = 0; i < g_numdrivers; i++) {
if (strcmp(name, g_drivers[i].name) == 0) {
if (g_drivers[i].ops->init(&g_drivers[i])) {
return NULL;
}
if (g_drivers[i].ops->parse_options(&g_drivers[i], (const char **)storage_opts, storage_opts_len)) {
return NULL;
}
return &g_drivers[i];
}
}
isulad_set_error_message("Invalid storage driver name: '%s'", name);
2019-09-30 10:53:41 -04:00
return NULL;
}
struct graphdriver *graphdriver_get(const char *name)
{
size_t i = 0;
if (name == NULL) {
return NULL;
}
for (i = 0; i < g_numdrivers; i++) {
if (strcmp(name, g_drivers[i].name) == 0) {
return &g_drivers[i];
}
}
isulad_set_error_message("Invalid storage driver name: '%s'", name);
2019-09-30 10:53:41 -04:00
return NULL;
}
struct graphdriver_status *graphdriver_get_status(void)
{
struct graphdriver_status *status = NULL;
int ret = -1;
2019-12-25 15:50:34 +08:00
im_storage_status_response *resp = NULL;
2019-09-30 10:53:41 -04:00
2019-12-25 15:50:34 +08:00
ret = im_get_storage_status(IMAGE_TYPE_OCI, &resp);
if (ret != 0) {
return NULL;
2019-09-30 10:53:41 -04:00
}
status = util_common_calloc_s(sizeof(struct graphdriver_status));
if (status == NULL) {
ERROR("Out of memory");
goto free_out;
}
2019-12-25 15:50:34 +08:00
status->backing_fs = util_strdup_s(resp->backing_fs);
status->status = util_strdup_s(resp->status);
2019-09-30 10:53:41 -04:00
ret = 0;
free_out:
2019-12-25 15:50:34 +08:00
free_im_storage_status_response(resp);
2019-09-30 10:53:41 -04:00
if (ret != 0) {
free_graphdriver_status(status);
return NULL;
}
return status;
}
int update_graphdriver_status(struct graphdriver **driver)
{
struct graphdriver_status *status = NULL;
int ret = 0;
if (driver == NULL) {
return -1;
}
status = graphdriver_get_status();
if (status == NULL) {
ERROR("Can not get driver status");
return -1;
}
if (*driver == NULL) {
*driver = util_common_calloc_s(sizeof(struct graphdriver));
if (*driver == NULL) {
ERROR("Out of memory");
ret = -1;
goto out;
}
}
free((*driver)->backing_fs);
(*driver)->backing_fs = util_strdup_s(status->backing_fs);
out:
free_graphdriver_status(status);
return ret;
}
void graphdriver_umount_mntpoint(void)
{
char *root = NULL;
char *driver_name = NULL;
char mp[PATH_MAX] = { 0 };
int nret = 0;
root = conf_get_graph_rootpath();
driver_name = conf_get_isulad_storage_driver();
2019-09-30 10:53:41 -04:00
if (root == NULL || driver_name == NULL) {
WARN("No root or driver name specified");
goto cleanup;
}
if (strcmp(driver_name, "overlay2") == 0) {
driver_name[strlen(driver_name) - 1] = '\0';
}
nret = snprintf(mp, sizeof(mp), "%s/%s", root, driver_name);
if (nret < 0 || (size_t)nret >= sizeof(mp)) {
2019-09-30 10:53:41 -04:00
WARN("Failed to print string");
goto cleanup;
}
if (umount(mp) < 0 && errno != EINVAL) {
WARN("Can not umount: %s: %s", mp, strerror(errno));
}
cleanup:
free(root);
free(driver_name);
}
void free_graphdriver_status(struct graphdriver_status *status)
{
if (status == NULL) {
return;
}
free(status->backing_fs);
free(status->status);
2019-09-30 10:53:41 -04:00
free(status);
}