Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party CJSON
提交
2691e142
T
Third Party CJSON
项目概览
OpenHarmony
/
Third Party CJSON
大约 1 年 前同步成功
通知
6
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party CJSON
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
You need to sign in or sign up before continuing.
提交
2691e142
编写于
7月 11, 2019
作者:
R
Randy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update fuzzer
上级
f7f175fd
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
29 addition
and
9 deletion
+29
-9
fuzzing/cjson_read_fuzzer.cc
fuzzing/cjson_read_fuzzer.cc
+29
-9
未找到文件。
fuzzing/cjson_read_fuzzer.cc
浏览文件 @
2691e142
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "../cJSON.h"
extern
"C"
int
LLVMFuzzerTestOneInput
(
const
uint8_t
*
data
,
size_t
size
)
{
if
((
data
[
0
]
==
'\0'
)
||
(
size
<
3
)
||
(
data
[
1
]
==
'\0'
))
return
0
;
size_t
offset
=
4
;
cJSON
*
json
=
cJSON_Parse
((
const
char
*
)
data
+
2
);
if
(
size
<
offset
)
return
0
;
if
(
data
[
0
]
!=
'1'
&&
data
[
0
]
!=
'0'
)
return
0
;
if
(
data
[
1
]
!=
'1'
&&
data
[
1
]
!=
'0'
)
return
0
;
if
(
data
[
2
]
!=
'1'
&&
data
[
2
]
!=
'0'
)
return
0
;
if
(
data
[
3
]
!=
'1'
&&
data
[
3
]
!=
'0'
)
return
0
;
int
minify
=
data
[
0
]
==
'1'
?
1
:
0
;
int
require_termination
=
data
[
1
]
==
'1'
?
1
:
0
;
int
formatted
=
data
[
2
]
==
'1'
?
1
:
0
;
int
buffered
=
data
[
3
]
==
'1'
?
1
:
0
;
cJSON
*
json
=
cJSON_ParseWithOpts
((
const
char
*
)
data
+
offset
,
NULL
,
require_termination
);
if
(
json
==
NULL
)
return
0
;
int
do_format
=
0
;
char
*
printed_json
=
NULL
;
if
(
data
[
1
]
==
'f'
)
do_format
=
1
;
if
(
data
[
0
]
==
'b'
)
if
(
buffered
)
{
/* buffered printing */
printed_json
=
cJSON_PrintBuffered
(
json
,
1
,
do_format
);
printed_json
=
cJSON_PrintBuffered
(
json
,
1
,
formatted
);
}
else
{
/* unbuffered printing */
if
(
do_format
)
if
(
formatted
)
{
printed_json
=
cJSON_Print
(
json
);
}
...
...
@@ -35,6 +43,18 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
}
if
(
printed_json
!=
NULL
)
free
(
printed_json
);
if
(
minify
)
{
unsigned
char
*
copied
=
(
unsigned
char
*
)
malloc
(
size
);
memcpy
(
copied
,
data
+
offset
,
size
);
cJSON_Minify
((
char
*
)
printed_json
);
free
(
copied
);
}
cJSON_Delete
(
json
);
return
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录