Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
iSulad
提交
0d629435
I
iSulad
项目概览
openeuler
/
iSulad
通知
15
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
I
iSulad
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0d629435
编写于
5月 12, 2020
作者:
W
wujing
提交者:
lifeng68
7月 25, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
containers module initialization && container load interface
Signed-off-by:
N
wujing
<
wujing50@huawei.com
>
上级
b6a212bb
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
892 addition
and
0 deletion
+892
-0
src/constants.h
src/constants.h
+2
-0
src/image/oci/storage/container_store/container.c
src/image/oci/storage/container_store/container.c
+94
-0
src/image/oci/storage/container_store/container.h
src/image/oci/storage/container_store/container.h
+42
-0
src/image/oci/storage/container_store/container_store.c
src/image/oci/storage/container_store/container_store.c
+574
-0
src/image/oci/storage/container_store/container_store.h
src/image/oci/storage/container_store/container_store.h
+89
-0
src/image/oci/storage/storage.h
src/image/oci/storage/storage.h
+24
-0
src/json/schema/schema/storage/container.json
src/json/schema/schema/storage/container.json
+67
-0
未找到文件。
src/constants.h
浏览文件 @
0d629435
...
...
@@ -54,6 +54,8 @@
#define IMAGE_STORE_PATH_MODE 0700
#define CONTAINER_STORE_PATH_MODE 0700
#define ISULAD_CONFIG "/etc/isulad"
#define ISULAD_DAEMON_JSON_CONF_FILE ISULAD_CONFIG "/daemon.json"
...
...
src/image/oci/storage/container_store/container.c
0 → 100644
浏览文件 @
0d629435
/******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. 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: WuJing
* Create: 2020-05-12
* Description: provide container function definition
******************************************************************************/
#include "container.h"
#include "storage_container.h"
#include "constants.h"
#include "util_atomic.h"
#include "utils.h"
#include "log.h"
static
cntr_t
*
create_empty_cntr
()
{
cntr_t
*
result
=
NULL
;
result
=
(
cntr_t
*
)
util_smart_calloc_s
(
sizeof
(
cntr_t
),
1
);
if
(
result
==
NULL
)
{
ERROR
(
"Out of memory"
);
goto
err_out
;
}
atomic_int_set
(
&
result
->
refcnt
,
1
);
return
result
;
err_out:
free_container_t
(
result
);
return
NULL
;
}
cntr_t
*
new_container
(
storage_container
*
scntr
)
{
cntr_t
*
c
=
NULL
;
if
(
scntr
==
NULL
)
{
ERROR
(
"Empty storage cntr"
);
return
NULL
;
}
c
=
create_empty_cntr
();
if
(
c
==
NULL
)
{
return
NULL
;
}
c
->
scontainer
=
scntr
;
return
c
;
}
void
container_ref_inc
(
cntr_t
*
c
)
{
if
(
c
==
NULL
)
{
return
;
}
atomic_int_inc
(
&
c
->
refcnt
);
}
void
container_ref_dec
(
cntr_t
*
c
)
{
bool
is_zero
=
false
;
if
(
c
==
NULL
)
{
return
;
}
is_zero
=
atomic_int_dec_test
(
&
c
->
refcnt
);
if
(
!
is_zero
)
{
return
;
}
free_container_t
(
c
);
}
void
free_container_t
(
cntr_t
*
ptr
)
{
if
(
ptr
==
NULL
)
{
return
;
}
free_storage_container
(
ptr
->
scontainer
);
ptr
->
scontainer
=
NULL
;
free
(
ptr
);
}
src/image/oci/storage/container_store/container.h
0 → 100644
浏览文件 @
0d629435
/******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020. 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: WuJing
* Create: 2020-05-12
* Description: provide containers function definition
******************************************************************************/
#ifndef __OCI_STORAGE_CONTAINER_H
#define __OCI_STORAGE_CONTAINER_H
#include <stdbool.h>
#include <stdint.h>
#include <pthread.h>
#include "storage_container.h"
#include "log.h"
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
struct
_cntr_t_
{
storage_container
*
scontainer
;
uint64_t
refcnt
;
}
cntr_t
;
cntr_t
*
new_container
(
storage_container
*
scntr
);
void
container_ref_inc
(
cntr_t
*
cntr
);
void
container_ref_dec
(
cntr_t
*
cntr
);
void
free_container_t
(
cntr_t
*
ptr
);
#ifdef __cplusplus
}
#endif
#endif // __OCI_STORAGE_CONTAINER_H
src/image/oci/storage/container_store/container_store.c
0 → 100644
浏览文件 @
0d629435
/******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. 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: wujing
* Create: 2020-05-12
* Description: provide image store functions
******************************************************************************/
#define _GNU_SOURCE
#include "container_store.h"
#include <sys/stat.h>
#include <sys/types.h>
#include <linux/limits.h>
#include <libgen.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stddef.h>
#include <libwebsockets.h>
#include <sha256.h>
#include "utils.h"
#include "log.h"
#include "constants.h"
#include "read_file.h"
#include "defs.h"
#include "map.h"
#include "linked_list.h"
#include "container.h"
#define CONTAINER_JSON "container.json"
typedef
struct
container_store
{
pthread_rwlock_t
rwlock
;
char
*
dir
;
struct
linked_list
containers_list
;
size_t
containers_list_len
;
map_t
*
byid
;
map_t
*
bylayer
;
map_t
*
byname
;
bool
loaded
;
}
container_store_t
;
container_store_t
*
g_container_store
=
NULL
;
static
inline
bool
container_store_lock
(
bool
writable
)
{
int
nret
=
0
;
if
(
writable
)
{
nret
=
pthread_rwlock_wrlock
(
&
g_container_store
->
rwlock
);
}
else
{
nret
=
pthread_rwlock_rdlock
(
&
g_container_store
->
rwlock
);
}
if
(
nret
!=
0
)
{
ERROR
(
"Lock memory store failed: %s"
,
strerror
(
nret
));
return
false
;
}
return
true
;
}
static
inline
void
container_store_unlock
()
{
int
nret
=
0
;
nret
=
pthread_rwlock_unlock
(
&
g_container_store
->
rwlock
);
if
(
nret
!=
0
)
{
FATAL
(
"Unlock memory store failed: %s"
,
strerror
(
nret
));
}
}
static
void
free_container_store
(
container_store_t
*
store
)
{
struct
linked_list
*
item
=
NULL
;
struct
linked_list
*
next
=
NULL
;
if
(
store
==
NULL
)
{
return
;
}
free
(
store
->
dir
);
store
->
dir
=
NULL
;
(
void
)
map_free
(
store
->
byid
);
store
->
byid
=
NULL
;
(
void
)
map_free
(
store
->
bylayer
);
store
->
bylayer
=
NULL
;
(
void
)
map_free
(
store
->
byname
);
store
->
byname
=
NULL
;
linked_list_for_each_safe
(
item
,
&
(
store
->
containers_list
),
next
)
{
linked_list_del
(
item
);
container_ref_dec
((
cntr_t
*
)
item
->
elem
);
free
(
item
);
item
=
NULL
;
}
store
->
containers_list_len
=
0
;
free
(
store
);
}
void
container_store_free
()
{
free_container_store
(
g_container_store
);
g_container_store
=
NULL
;
}
static
void
container_store_field_kvfree
(
void
*
key
,
void
*
value
)
{
(
void
)
value
;
free
(
key
);
}
static
int
do_append_container
(
storage_container
*
c
)
{
cntr_t
*
cntr
=
NULL
;
struct
linked_list
*
item
=
NULL
;
cntr
=
new_container
(
c
);
if
(
cntr
==
NULL
)
{
ERROR
(
"Out of memory"
);
return
-
1
;
}
item
=
util_smart_calloc_s
(
sizeof
(
struct
linked_list
),
1
);
if
(
item
==
NULL
)
{
ERROR
(
"Out of memory"
);
free_container_t
(
cntr
);
return
-
1
;
}
linked_list_add_elem
(
item
,
cntr
);
linked_list_add_tail
(
&
g_container_store
->
containers_list
,
item
);
g_container_store
->
containers_list_len
++
;
return
0
;
}
static
int
append_container_by_directory
(
const
char
*
container_dir
)
{
int
ret
=
0
;
int
nret
;
char
container_path
[
PATH_MAX
]
=
{
0x00
};
storage_container
*
c
=
NULL
;
parser_error
err
=
NULL
;
nret
=
snprintf
(
container_path
,
sizeof
(
container_path
),
"%s/%s"
,
container_dir
,
CONTAINER_JSON
);
if
(
nret
<
0
||
(
size_t
)
nret
>=
sizeof
(
container_path
))
{
ERROR
(
"Failed to get container path"
);
return
-
1
;
}
c
=
storage_container_parse_file
(
container_path
,
NULL
,
&
err
);
if
(
c
==
NULL
)
{
ERROR
(
"Failed to parse container path: %s"
,
err
);
return
-
1
;
}
if
(
do_append_container
(
c
)
!=
0
)
{
ERROR
(
"Failed to append container"
);
ret
=
-
1
;
goto
out
;
}
c
=
NULL
;
out:
free_storage_container
(
c
);
free
(
err
);
return
ret
;
}
static
int
get_containers_from_json
()
{
int
ret
=
0
;
int
nret
;
char
**
container_dirs
=
NULL
;
size_t
container_dirs_num
=
0
;
size_t
i
;
char
*
id_patten
=
"^[a-f0-9]{64}$"
;
char
container_path
[
PATH_MAX
]
=
{
0x00
};
if
(
!
container_store_lock
(
true
))
{
ERROR
(
"Failed to lock container store"
);
return
-
1
;
}
ret
=
util_list_all_subdir
(
g_container_store
->
dir
,
&
container_dirs
);
if
(
ret
!=
0
)
{
ERROR
(
"Failed to get container directorys"
);
goto
out
;
}
container_dirs_num
=
util_array_len
((
const
char
**
)
container_dirs
);
for
(
i
=
0
;
i
<
container_dirs_num
;
i
++
)
{
if
(
util_reg_match
(
id_patten
,
container_dirs
[
i
])
!=
0
)
{
DEBUG
(
"Container's json is placed inside container's data directory, so skip any other file or directory: %s"
,
container_dirs
[
i
]);
continue
;
}
DEBUG
(
"Restore the containers:%s"
,
container_dirs
[
i
]);
nret
=
snprintf
(
container_path
,
sizeof
(
container_path
),
"%s/%s"
,
g_container_store
->
dir
,
container_dirs
[
i
]);
if
(
nret
<
0
||
(
size_t
)
nret
>=
sizeof
(
container_path
))
{
ERROR
(
"Failed to get container path"
);
ret
=
-
1
;
goto
out
;
}
if
(
append_container_by_directory
(
container_path
)
!=
0
)
{
ERROR
(
"Found container path but load json failed: %s"
,
container_dirs
[
i
]);
ret
=
-
1
;
goto
out
;
}
}
out:
util_free_array
(
container_dirs
);
container_store_unlock
();
return
ret
;
}
static
int
remove_name
(
cntr_t
*
cntr
,
const
char
*
name
)
{
size_t
i
;
size_t
new_size
;
size_t
count
=
0
;
size_t
index
=
0
;
char
**
tmp_names
=
NULL
;
if
(
cntr
==
NULL
||
name
==
NULL
)
{
return
0
;
}
for
(
i
=
0
;
i
<
cntr
->
scontainer
->
names_len
;
i
++
)
{
if
(
strcmp
(
cntr
->
scontainer
->
names
[
i
],
name
)
==
0
)
{
count
++
;
}
}
new_size
=
(
cntr
->
scontainer
->
names_len
-
count
)
*
sizeof
(
char
*
);
tmp_names
=
(
char
**
)
util_common_calloc_s
(
new_size
);
if
(
tmp_names
==
NULL
)
{
ERROR
(
"Out of memory"
);
return
-
1
;
}
for
(
i
=
0
;
i
<
cntr
->
scontainer
->
names_len
;
i
++
)
{
if
(
strcmp
(
cntr
->
scontainer
->
names
[
i
],
name
)
!=
0
)
{
tmp_names
[
index
++
]
=
util_strdup_s
(
cntr
->
scontainer
->
names
[
i
]);
}
free
(
cntr
->
scontainer
->
names
[
i
]);
cntr
->
scontainer
->
names
[
i
]
=
NULL
;
}
free
(
cntr
->
scontainer
->
names
);
cntr
->
scontainer
->
names
=
tmp_names
;
cntr
->
scontainer
->
names_len
=
index
;
tmp_names
=
NULL
;
return
0
;
}
static
int
get_container_path
(
const
char
*
id
,
char
*
path
,
size_t
len
)
{
int
nret
=
snprintf
(
path
,
len
,
"%s/%s/%s"
,
g_container_store
->
dir
,
id
,
CONTAINER_JSON
);
return
(
nret
<
0
||
(
size_t
)
nret
>=
len
)
?
-
1
:
0
;
}
static
int
save_container
(
cntr_t
*
cntr
)
{
int
ret
=
0
;
char
container_path
[
PATH_MAX
]
=
{
0x00
};
char
container_dir
[
PATH_MAX
]
=
{
0x00
};
parser_error
err
=
NULL
;
char
*
json_data
=
NULL
;
if
(
get_container_path
(
cntr
->
scontainer
->
id
,
container_path
,
sizeof
(
container_path
))
!=
0
)
{
ERROR
(
"Failed to get container path by id: %s"
,
cntr
->
scontainer
->
id
);
return
-
1
;
}
strcpy
(
container_dir
,
container_path
);
ret
=
util_mkdir_p
(
dirname
(
container_dir
),
CONTAINER_STORE_PATH_MODE
);
if
(
ret
<
0
)
{
ERROR
(
"Failed to create container directory %s."
,
container_path
);
return
-
1
;
}
json_data
=
storage_container_generate_json
(
cntr
->
scontainer
,
NULL
,
&
err
);
if
(
json_data
==
NULL
)
{
ERROR
(
"Failed to generate container json path string:%s"
,
err
?
err
:
" "
);
ret
=
-
1
;
goto
out
;
}
if
(
util_atomic_write_file
(
container_path
,
json_data
,
strlen
(
json_data
),
SECURE_CONFIG_FILE_MODE
)
!=
0
)
{
ERROR
(
"Failed to save image json file"
);
ret
=
-
1
;
goto
out
;
}
out:
free
(
json_data
);
free
(
err
);
return
ret
;
}
static
int
load_container_to_store_field
(
cntr_t
*
cntr
)
{
int
ret
=
0
;
bool
should_save
=
false
;
size_t
i
;
if
(
!
map_replace
(
g_container_store
->
byid
,
(
void
*
)
cntr
->
scontainer
->
id
,
(
void
*
)
cntr
))
{
ERROR
(
"Failed to insert container to id index"
);
return
-
1
;
}
if
(
!
map_replace
(
g_container_store
->
bylayer
,
(
void
*
)
cntr
->
scontainer
->
layer
,
(
void
*
)
cntr
))
{
ERROR
(
"Failed to insert container to layer index"
);
return
-
1
;
}
for
(
i
=
0
;
i
<
cntr
->
scontainer
->
names_len
;
i
++
)
{
cntr_t
*
conflict_container
=
(
cntr_t
*
)
map_search
(
g_container_store
->
byname
,
(
void
*
)
cntr
->
scontainer
->
names
[
i
]);
if
(
conflict_container
!=
NULL
)
{
if
(
remove_name
(
conflict_container
,
cntr
->
scontainer
->
names
[
i
])
!=
0
)
{
ERROR
(
"Failed to remove name from conflict container"
);
ret
=
-
1
;
goto
out
;
}
should_save
=
true
;
}
if
(
!
map_replace
(
g_container_store
->
byname
,
(
void
*
)
cntr
->
scontainer
->
names
[
i
],
(
void
*
)
cntr
))
{
ERROR
(
"Failed to insert containes to name index"
);
ret
=
-
1
;
goto
out
;
}
}
if
(
should_save
&&
save_container
(
cntr
)
!=
0
)
{
ERROR
(
"Failed to save container"
);
ret
=
-
1
;
goto
out
;
}
out:
return
ret
;
}
static
int
container_store_load
()
{
struct
linked_list
*
item
=
NULL
;
struct
linked_list
*
next
=
NULL
;
if
(
g_container_store
->
loaded
)
{
DEBUG
(
"Do not need reload if daemon"
);
return
0
;
}
if
(
get_containers_from_json
()
!=
0
)
{
ERROR
(
"Failed to get images from json"
);
return
-
1
;
}
linked_list_for_each_safe
(
item
,
&
(
g_container_store
->
containers_list
),
next
)
{
if
(
load_container_to_store_field
((
cntr_t
*
)
item
->
elem
)
!=
0
)
{
ERROR
(
"Failed to load image to container store"
);
return
-
1
;
}
}
g_container_store
->
loaded
=
true
;
return
0
;
}
static
char
*
get_container_store_root_path
(
const
struct
storage_module_init_options
*
opts
)
{
int
nret
=
0
;
char
*
root_dir
=
NULL
;
if
(
opts
==
NULL
)
{
return
NULL
;
}
if
(
opts
->
storage_root
==
NULL
||
opts
->
driver_name
==
NULL
)
{
ERROR
(
"Invalid argument"
);
return
NULL
;
}
nret
=
asprintf
(
&
root_dir
,
"%s/%s-containers"
,
opts
->
storage_root
,
opts
->
driver_name
);
if
(
nret
<
0
||
nret
>
PATH_MAX
)
{
SYSERROR
(
"Create root path failed"
);
free
(
root_dir
);
root_dir
=
NULL
;
}
return
root_dir
;
}
int
container_store_init
(
struct
storage_module_init_options
*
opts
)
{
int
ret
=
0
;
char
*
root_dir
=
NULL
;
if
(
g_container_store
!=
NULL
)
{
ERROR
(
"Container store has already been initialized"
);
return
-
1
;
}
root_dir
=
get_container_store_root_path
(
opts
);
if
(
root_dir
==
NULL
)
{
return
ret
;
}
ret
=
util_mkdir_p
(
root_dir
,
CONTAINER_STORE_PATH_MODE
);
if
(
ret
<
0
)
{
ERROR
(
"Unable to create container store directory %s."
,
root_dir
);
ret
=
-
1
;
goto
out
;
}
g_container_store
=
(
container_store_t
*
)
util_common_calloc_s
(
sizeof
(
container_store_t
));
if
(
g_container_store
==
NULL
)
{
ERROR
(
"Out of memory"
);
ret
=
-
1
;
goto
out
;
}
ret
=
pthread_rwlock_init
(
&
(
g_container_store
->
rwlock
),
NULL
);
if
(
ret
!=
0
)
{
ERROR
(
"Failed to init container store rwlock"
);
ret
=
-
1
;
goto
out
;
}
g_container_store
->
dir
=
root_dir
;
root_dir
=
NULL
;
g_container_store
->
containers_list_len
=
0
;
linked_list_init
(
&
g_container_store
->
containers_list
);
g_container_store
->
byid
=
map_new
(
MAP_STR_PTR
,
MAP_DEFAULT_CMP_FUNC
,
container_store_field_kvfree
);
if
(
g_container_store
->
byid
==
NULL
)
{
ERROR
(
"Out of memory"
);
ret
=
-
1
;
goto
out
;
}
g_container_store
->
bylayer
=
map_new
(
MAP_STR_PTR
,
MAP_DEFAULT_CMP_FUNC
,
container_store_field_kvfree
);
if
(
g_container_store
->
byname
==
NULL
)
{
ERROR
(
"Out of memory"
);
ret
=
-
1
;
goto
out
;
}
g_container_store
->
byname
=
map_new
(
MAP_STR_PTR
,
MAP_DEFAULT_CMP_FUNC
,
container_store_field_kvfree
);
if
(
g_container_store
->
byname
==
NULL
)
{
ERROR
(
"Out of memory"
);
ret
=
-
1
;
goto
out
;
}
ret
=
container_store_load
();
if
(
ret
!=
0
)
{
ERROR
(
"Failed to load container store"
);
ret
=
-
1
;
goto
out
;
}
out:
if
(
ret
!=
0
)
{
free_container_store
(
g_container_store
);
g_container_store
=
NULL
;
}
free
(
root_dir
);
return
ret
;
}
char
*
container_store_create
(
const
char
*
id
,
const
char
**
names
,
size_t
names_len
,
const
char
*
image
,
const
char
*
layer
,
const
char
*
metadata
,
struct
storage_container_options
*
container_opts
)
{
return
NULL
;
}
char
*
container_store_lookup
(
const
char
*
id
)
{
return
NULL
;
}
int
container_store_delete
(
const
char
*
id
)
{
return
0
;
}
int
container_store_wipe
()
{
return
0
;
}
int
container_store_set_big_data
(
const
char
*
id
,
const
char
*
key
,
const
char
*
data
)
{
return
0
;
}
int
container_store_set_names
(
const
char
*
id
,
const
char
**
names
,
size_t
names_len
)
{
return
0
;
}
int
container_store_set_metadata
(
const
char
*
id
,
const
char
*
metadata
)
{
return
0
;
}
int
container_store_save
(
cntr_t
*
c
)
{
return
0
;
}
bool
container_store_exists
(
const
char
*
id
)
{
return
false
;
}
cntr_t
*
container_store_get_container
(
const
char
*
id
)
{
return
NULL
;
}
char
*
container_store_big_data
(
const
char
*
id
,
const
char
*
key
)
{
return
NULL
;
}
int64_t
container_store_big_data_size
(
const
char
*
id
,
const
char
*
key
)
{
return
-
1
;
}
char
*
container_store_big_data_digest
(
const
char
*
id
,
const
char
*
key
)
{
return
NULL
;
}
int
container_store_big_data_names
(
const
char
*
id
,
char
***
names
,
size_t
*
names_len
)
{
return
0
;
}
char
*
container_store_metadata
(
const
char
*
id
)
{
return
NULL
;
}
int
container_store_get_all_containers
(
cntr_t
*
containers
,
size_t
*
len
)
{
return
0
;
}
src/image/oci/storage/container_store/container_store.h
0 → 100644
浏览文件 @
0d629435
/******************************************************************************
* Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. 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: wujing
* Create: 2020-05-12
* Description: provide containers module interface definition
******************************************************************************/
#ifndef __OCI_STORAGE_CONTAINER_STORE_H
#define __OCI_STORAGE_CONTAINER_STORE_H
#include <stdbool.h>
#include <string.h>
#include <pthread.h>
#include "storage.h"
#include "container.h"
#ifdef __cplusplus
extern
"C"
{
#endif
// Load the containers in the folder(${driver}-containers)
int
container_store_init
(
struct
storage_module_init_options
*
opts
);
// Creates a container that has a specified ID (or generates a random one if an empty value is supplied)
// and optional names, based on the specified image, using the specified layer as its read-write layer.
// return a new id, or NULL if failed.
char
*
container_store_create
(
const
char
*
id
,
const
char
**
names
,
size_t
names_len
,
const
char
*
image
,
const
char
*
layer
,
const
char
*
metadata
,
struct
storage_container_options
*
container_opts
);
// Attempt to translate a name to an ID. Most methods do this implicitly.
char
*
container_store_lookup
(
const
char
*
id
);
// Remove the record of the container.
int
container_store_delete
(
const
char
*
id
);
// Remove records of all containers
int
container_store_wipe
();
// Stores a (potentially large) piece of data associated with this ID.
int
container_store_set_big_data
(
const
char
*
id
,
const
char
*
key
,
const
char
*
data
);
// Replace the list of names associated with a container with the supplied values.
int
container_store_set_names
(
const
char
*
id
,
const
char
**
names
,
size_t
names_len
);
// Updates the metadata associated with the item with the specified ID.
int
container_store_set_metadata
(
const
char
*
id
,
const
char
*
metadata
);
// Saves the contents of the store to disk.
int
container_store_save
(
cntr_t
*
c
);
// Check if there is a container with the given ID or name.
bool
container_store_exists
(
const
char
*
id
);
// Retrieve information about a container given an ID or name.
cntr_t
*
container_store_get_container
(
const
char
*
id
);
// Retrieves a (potentially large) piece of data associated with this ID, if it has previously been set.
char
*
container_store_big_data
(
const
char
*
id
,
const
char
*
key
);
// Retrieves the size of a (potentially large) piece of data associated with this ID, if it has previously been set.
int64_t
container_store_big_data_size
(
const
char
*
id
,
const
char
*
key
);
// Retrieves the digest of a (potentially large) piece of data associated with this ID, if it has previously been set.
char
*
container_store_big_data_digest
(
const
char
*
id
,
const
char
*
key
);
// Returns a list of the names of previously-stored pieces of data.
int
container_store_big_data_names
(
const
char
*
id
,
char
***
names
,
size_t
*
names_len
);
// Reads metadata associated with an item with the specified ID.
char
*
container_store_metadata
(
const
char
*
id
);
// Return a slice enumerating the known containers.
int
container_store_get_all_containers
(
cntr_t
*
containers
,
size_t
*
len
);
// Free memory of container store, but will not delete the persisted files
void
container_store_free
();
#ifdef __cplusplus
}
#endif
#endif
/* __OCI_STORAGE_CONTAINER_STORE_H */
src/image/oci/storage/storage.h
浏览文件 @
0d629435
...
...
@@ -66,6 +66,30 @@ struct storage_img_create_options {
char
*
digest
;
};
struct
id_map
{
int
container_id
;
int
host_id
;
int
size
;
};
struct
id_mapping_options
{
bool
host_uid_mapping
;
bool
host_gid_mapping
;
struct
id_map
*
uid_map
;
size_t
uid_map_len
;
struct
id_map
*
gid_map
;
size_t
gid_map_len
;
};
struct
storage_container_options
{
struct
id_mapping_options
id_mapping_opts
;
char
**
label_opts
;
size_t
label_opts_len
;
char
**
mount_opts
;
size_t
mount_opts_len
;
};
int
storage_module_init
(
struct
storage_module_init_options
*
opts
);
void
free_storage_module_init_options
(
struct
storage_module_init_options
*
opts
);
...
...
src/json/schema/schema/storage/container.json
0 → 100644
浏览文件 @
0d629435
{
"$schema"
:
"http://json-schema.org/draft-04/schema#"
,
"type"
:
"object"
,
"properties"
:
{
"id"
:
{
"type"
:
"string"
},
"names"
:
{
"type"
:
"array"
,
"items"
:
{
"type"
:
"string"
}
},
"image"
:
{
"type"
:
"string"
},
"layer"
:
{
"type"
:
"string"
},
"metadata"
:
{
"type"
:
"string"
},
"big-data-names"
:
{
"type"
:
"array"
,
"items"
:
{
"type"
:
"string"
}
},
"big-data-sizes"
:
{
"$ref"
:
"../defs.json#/definitions/mapStringInt64"
},
"big-data-digests"
:
{
"$ref"
:
"../defs.json#/definitions/mapStringString"
},
"created"
:
{
"type"
:
"string"
},
"uidmap"
:
{
"type"
:
"object"
,
"properties"
:
{
"container_id"
:
{
"type"
:
"integer"
},
"host_id"
:
{
"type"
:
"integer"
},
"size"
:
{
"type"
:
"integer"
}
}
},
"gidmap"
:
{
"type"
:
"object"
,
"properties"
:
{
"container_id"
:
{
"type"
:
"integer"
},
"host_id"
:
{
"type"
:
"integer"
},
"size"
:
{
"type"
:
"integer"
}
}
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录