Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
iSulad
提交
1d9c46b5
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,发现更多精彩内容 >>
提交
1d9c46b5
编写于
4月 17, 2020
作者:
L
LiFeng
提交者:
lifeng68
7月 25, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tag: rename isula_tag to oci_tag
Signed-off-by:
N
LiFeng
<
lifeng68@huawei.com
>
上级
c7d00c94
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
5 addition
and
30 deletion
+5
-30
src/image/image.c
src/image/image.c
+1
-1
src/image/oci/oci_image.c
src/image/oci/oci_image.c
+1
-1
src/image/oci/oci_image.h
src/image/oci/oci_image.h
+1
-1
src/image/oci/storage/image_store/image_store.c
src/image/oci/storage/image_store/image_store.c
+1
-27
src/sha256/sha256.c
src/sha256/sha256.c
+1
-0
未找到文件。
src/image/image.c
浏览文件 @
1d9c46b5
...
...
@@ -104,7 +104,7 @@ static const struct bim_ops g_oci_ops = {
.
pull_image
=
oci_pull_rf
,
.
login
=
oci_login
,
.
logout
=
oci_logout
,
.
tag_image
=
isula
_tag
,
.
tag_image
=
oci
_tag
,
.
import
=
isula_import
,
};
#endif
...
...
src/image/oci/oci_image.c
浏览文件 @
1d9c46b5
...
...
@@ -274,7 +274,7 @@ out:
return
ret
;
}
int
isula
_tag
(
const
im_tag_request
*
request
)
int
oci
_tag
(
const
im_tag_request
*
request
)
{
int
ret
=
-
1
;
char
*
src_name
=
NULL
;
...
...
src/image/oci/oci_image.h
浏览文件 @
1d9c46b5
...
...
@@ -48,7 +48,7 @@ int oci_logout(const im_logout_request *request);
int
oci_sync_images
(
void
);
int
oci_sync_containers
(
void
);
int
isula
_tag
(
const
im_tag_request
*
request
);
int
oci
_tag
(
const
im_tag_request
*
request
);
#ifdef __cplusplus
}
#endif
...
...
src/image/oci/storage/image_store/image_store.c
浏览文件 @
1d9c46b5
...
...
@@ -1349,32 +1349,6 @@ static void update_json_map_string_int64(json_map_string_int64 *map, const char
}
}
static
char
*
calc_sha256_with_string
(
const
char
*
val
)
{
SHA256_CTX
ctx
;
unsigned
char
hash
[
SHA256_DIGEST_LENGTH
]
=
{
0x00
};
char
output_buffer
[(
SHA256_DIGEST_LENGTH
*
2
)
+
1
]
=
{
0x00
};
int
i
;
if
(
val
==
NULL
)
{
return
NULL
;
}
SHA256_Init
(
&
ctx
);
SHA256_Update
(
&
ctx
,
val
,
strlen
(
val
));
SHA256_Final
(
hash
,
&
ctx
);
for
(
i
=
0
;
i
<
SHA256_DIGEST_LENGTH
;
i
++
)
{
int
ret
=
snprintf
(
output_buffer
+
(
i
*
2
),
3
,
"%02x"
,
(
unsigned
int
)
hash
[
i
]);
if
(
ret
>=
3
||
ret
<
0
)
{
return
""
;
}
}
output_buffer
[
SHA256_DIGEST_LENGTH
*
2
]
=
'\0'
;
return
util_strdup_s
(
output_buffer
);
}
static
void
update_json_map_string_string
(
json_map_string_string
*
map
,
const
char
*
key
,
const
char
*
value
)
{
size_t
i
;
...
...
@@ -1446,7 +1420,7 @@ static int update_image_with_big_data(storage_image *image, const char *key, con
}
old_digest
=
get_value_from_json_map_string_string
(
image
->
big_data_digests
,
key
);
new_digest
=
calc_sha256_with_string
(
data
);
new_digest
=
sha256_digest_str
(
data
);
if
(
old_digest
!=
NULL
)
{
update_json_map_string_string
(
image
->
big_data_digests
,
key
,
new_digest
);
}
else
{
...
...
src/sha256/sha256.c
浏览文件 @
1d9c46b5
...
...
@@ -24,6 +24,7 @@
#include <errno.h>
#include <sys/wait.h>
#include <libwebsockets.h>
#include <openssl/sha.h>
#include "sha256.h"
#include "isula_libutils/log.h"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录