提交 a304f5d2 编写于 作者: W WangFengTu 提交者: lifeng68

init registry module and fix copyright

Signed-off-by: NWangFengTu <wangfengtu@huawei.com>
上级 3a60aeb7
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-26 * Create: 2020-03-26
* Description: provide base64 functions * Description: provide base64 functions
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-04-21 * Create: 2020-04-21
* Description: provide aes functions * Description: provide aes functions
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-26 * Create: 2020-03-26
* Description: provide base64 functions * Description: provide base64 functions
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-26 * Create: 2020-03-26
* Description: provide base64 functions * Description: provide base64 functions
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include "isula_images_list.h" #include "isula_images_list.h"
#include "isula_containers_list.h" #include "isula_containers_list.h"
#include "isula_storage_metadata.h" #include "isula_storage_metadata.h"
#include "registry.h"
#include "containers_store.h" #include "containers_store.h"
#include "oci_images_store.h" #include "oci_images_store.h"
...@@ -95,12 +96,20 @@ out: ...@@ -95,12 +96,20 @@ out:
int oci_init(const struct service_arguments *args) int oci_init(const struct service_arguments *args)
{ {
int ret = -1; int ret = -1;
registry_init_options options;
if (args == NULL) { if (args == NULL) {
ERROR("Invalid image config"); ERROR("Invalid image config");
return ret; return ret;
} }
options.use_decrypted_key = conf_get_use_decrypted_key_flag();
options.skip_tls_verify = conf_get_skip_insecure_verify_flag();
ret = registry_init(&options);
if (ret != 0) {
goto out;
}
if (storage_module_init_helper(args) != 0) { if (storage_module_init_helper(args) != 0) {
ret = -1; ret = -1;
goto out; goto out;
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-04-23 * Create: 2020-04-23
* Description: provide aes process functions * Description: provide aes process functions
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-04-23 * Create: 2020-04-23
* Description: provide aes process definition * Description: provide aes process definition
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-20 * Create: 2020-03-20
* Description: provide auths file process functions * Description: provide auths file process functions
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-20 * Create: 2020-03-20
* Description: provide auths file process definition * Description: provide auths file process definition
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-20 * Create: 2020-03-20
* Description: provide auths file process functions * Description: provide auths file process functions
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-20 * Create: 2020-03-20
* Description: provide certs file process definition * Description: provide certs file process definition
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-20 * Create: 2020-03-20
* Description: provide http request functions * Description: provide http request functions
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-05 * Create: 2020-03-05
* Description: provide http request definition * Description: provide http request definition
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-02-27 * Create: 2020-02-27
* Description: provide registry functions * Description: provide registry functions
...@@ -39,6 +39,8 @@ ...@@ -39,6 +39,8 @@
#define MANIFEST_BIG_DATA_KEY "manifest" #define MANIFEST_BIG_DATA_KEY "manifest"
#define ROOTFS_TYPE "layers" #define ROOTFS_TYPE "layers"
static registry_init_options g_options;
static int parse_manifest_schema1(pull_descriptor *desc) static int parse_manifest_schema1(pull_descriptor *desc)
{ {
registry_manifest_schema1 *manifest = NULL; registry_manifest_schema1 *manifest = NULL;
...@@ -1152,8 +1154,8 @@ static int prepare_pull_desc(pull_descriptor *desc, registry_pull_options *optio ...@@ -1152,8 +1154,8 @@ static int prepare_pull_desc(pull_descriptor *desc, registry_pull_options *optio
desc->dest_image_name = util_strdup_s(options->dest_image_name); desc->dest_image_name = util_strdup_s(options->dest_image_name);
desc->scope = util_strdup_s(scope); desc->scope = util_strdup_s(scope);
desc->blobpath = util_strdup_s(blobpath); desc->blobpath = util_strdup_s(blobpath);
desc->use_decrypted_key = options->comm_opt.use_decrypted_key; desc->use_decrypted_key = g_options.use_decrypted_key;
desc->skip_tls_verify = options->comm_opt.skip_tls_verify; desc->skip_tls_verify = g_options.skip_tls_verify;
if (options->auth.username != NULL && options->auth.password != NULL) { if (options->auth.username != NULL && options->auth.password != NULL) {
desc->username = util_strdup_s(options->auth.username); desc->username = util_strdup_s(options->auth.username);
...@@ -1227,6 +1229,19 @@ out: ...@@ -1227,6 +1229,19 @@ out:
return ret; return ret;
} }
int registry_init(registry_init_options *options)
{
if (options == NULL) {
ERROR("Invalid NULL param when init registry module");
return -1;
}
g_options.use_decrypted_key = options->use_decrypted_key;
g_options.skip_tls_verify = options->skip_tls_verify;
return 0;
}
int registry_login(registry_login_options *options) int registry_login(registry_login_options *options)
{ {
int ret = 0; int ret = 0;
...@@ -1247,8 +1262,8 @@ int registry_login(registry_login_options *options) ...@@ -1247,8 +1262,8 @@ int registry_login(registry_login_options *options)
} }
desc->host = util_strdup_s(options->host); desc->host = util_strdup_s(options->host);
desc->use_decrypted_key = options->comm_opt.use_decrypted_key; desc->use_decrypted_key = g_options.use_decrypted_key;
desc->skip_tls_verify = options->comm_opt.skip_tls_verify; desc->skip_tls_verify = g_options.skip_tls_verify;
desc->username = util_strdup_s(options->auth.username); desc->username = util_strdup_s(options->auth.username);
desc->password = util_strdup_s(options->auth.password); desc->password = util_strdup_s(options->auth.password);
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-02-27 * Create: 2020-02-27
* Description: provide registry definition * Description: provide registry definition
...@@ -22,7 +22,7 @@ extern "C" { ...@@ -22,7 +22,7 @@ extern "C" {
typedef struct { typedef struct {
bool use_decrypted_key; bool use_decrypted_key;
bool skip_tls_verify; bool skip_tls_verify;
} registry_options; } registry_init_options;
typedef struct { typedef struct {
char *username; char *username;
...@@ -30,18 +30,17 @@ typedef struct { ...@@ -30,18 +30,17 @@ typedef struct {
} registry_auth; } registry_auth;
typedef struct { typedef struct {
registry_options comm_opt;
registry_auth auth; registry_auth auth;
char *image_name; char *image_name;
char *dest_image_name; char *dest_image_name;
} registry_pull_options; } registry_pull_options;
typedef struct { typedef struct {
registry_options comm_opt;
registry_auth auth; registry_auth auth;
char *host; char *host;
} registry_login_options; } registry_login_options;
int registry_init(registry_init_options *options);
int registry_pull(registry_pull_options *options); int registry_pull(registry_pull_options *options);
int registry_login(registry_login_options *options); int registry_login(registry_login_options *options);
int registry_logout(char *host); int registry_logout(char *host);
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-05 * Create: 2020-03-05
* Description: provide registry api v2 functions * Description: provide registry api v2 functions
......
/****************************************************************************** /******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v1. * iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v1 at: * You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL * http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR * 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 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE. * PURPOSE.
* See the Mulan PSL v1 for more details. * See the Mulan PSL v2 for more details.
* Author: wangfengtu * Author: wangfengtu
* Create: 2020-03-05 * Create: 2020-03-05
* Description: provide registry api v2 definition * Description: provide registry api v2 definition
......
/******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
* iSulad licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* 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 v2 for more details.
* Author: wangfengtu
* Create: 2020-04-23
* Description: provide registry type definition
******************************************************************************/
#ifndef _IMAGE_REGISTRY_TYPE_H #ifndef _IMAGE_REGISTRY_TYPE_H
#define _IMAGE_REGISTRY_TYPE_H #define _IMAGE_REGISTRY_TYPE_H
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册