Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
e2d2d819
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
大约 1 年 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e2d2d819
编写于
2月 18, 2018
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Limit how much work sanitize() can do
Fixes
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=6022
上级
7033fe58
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
17 addition
and
2 deletion
+17
-2
src/Makefile.am
src/Makefile.am
+2
-0
src/hb-open-type-private.hh
src/hb-open-type-private.hh
+14
-2
test/shaping/data/in-house/fonts/233c1e252e737ca79e03a9fd56b71aaa4a230f2b.ttf
...-house/fonts/233c1e252e737ca79e03a9fd56b71aaa4a230f2b.ttf
+0
-0
test/shaping/data/in-house/tests/fuzzed.tests
test/shaping/data/in-house/tests/fuzzed.tests
+1
-0
未找到文件。
src/Makefile.am
浏览文件 @
e2d2d819
...
...
@@ -170,6 +170,8 @@ FUZZING_CPPFLAGS = \
-DHB_NDEBUG
\
-DHB_MAX_NESTING_LEVEL
=
3
\
-DHB_SANITIZE_MAX_EDITS
=
3
\
-DHB_SANITIZE_MAX_OPS_FACTOR
=
3
\
-DHB_SANITIZE_MAX_OPS_MIN
=
128
\
-DHB_BUFFER_MAX_LEN_FACTOR
=
3
\
-DHB_BUFFER_MAX_LEN_MIN
=
8
\
-DHB_BUFFER_MAX_LEN_DEFAULT
=
128
\
...
...
src/hb-open-type-private.hh
浏览文件 @
e2d2d819
...
...
@@ -189,6 +189,12 @@ struct hb_dispatch_context_t
#ifndef HB_SANITIZE_MAX_EDITS
#define HB_SANITIZE_MAX_EDITS 32
#endif
#ifndef HB_SANITIZE_MAX_OPS_FACTOR
#define HB_SANITIZE_MAX_OPS_FACTOR 8
#endif
#ifndef HB_SANITIZE_MAX_OPS_MIN
#define HB_SANITIZE_MAX_OPS_MIN 16384
#endif
struct
hb_sanitize_context_t
:
hb_dispatch_context_t
<
hb_sanitize_context_t
,
bool
,
HB_DEBUG_SANITIZE
>
...
...
@@ -196,7 +202,7 @@ struct hb_sanitize_context_t :
inline
hb_sanitize_context_t
(
void
)
:
debug_depth
(
0
),
start
(
nullptr
),
end
(
nullptr
),
writable
(
false
),
edit_count
(
0
),
writable
(
false
),
edit_count
(
0
),
max_ops
(
0
),
blob
(
nullptr
),
num_glyphs
(
0
)
{}
...
...
@@ -221,6 +227,8 @@ struct hb_sanitize_context_t :
this
->
start
=
hb_blob_get_data
(
this
->
blob
,
nullptr
);
this
->
end
=
this
->
start
+
hb_blob_get_length
(
this
->
blob
);
assert
(
this
->
start
<=
this
->
end
);
/* Must not overflow. */
this
->
max_ops
=
MAX
((
unsigned
int
)
(
this
->
end
-
this
->
start
)
*
HB_SANITIZE_MAX_OPS_FACTOR
,
(
unsigned
)
HB_SANITIZE_MAX_OPS_MIN
);
this
->
edit_count
=
0
;
this
->
debug_depth
=
0
;
...
...
@@ -244,7 +252,10 @@ struct hb_sanitize_context_t :
inline
bool
check_range
(
const
void
*
base
,
unsigned
int
len
)
const
{
const
char
*
p
=
(
const
char
*
)
base
;
bool
ok
=
this
->
start
<=
p
&&
p
<=
this
->
end
&&
(
unsigned
int
)
(
this
->
end
-
p
)
>=
len
;
bool
ok
=
this
->
max_ops
--
>
0
&&
this
->
start
<=
p
&&
p
<=
this
->
end
&&
(
unsigned
int
)
(
this
->
end
-
p
)
>=
len
;
DEBUG_MSG_LEVEL
(
SANITIZE
,
p
,
this
->
debug_depth
+
1
,
0
,
"check_range [%p..%p] (%d bytes) in [%p..%p] -> %s"
,
...
...
@@ -308,6 +319,7 @@ struct hb_sanitize_context_t :
const
char
*
start
,
*
end
;
bool
writable
;
unsigned
int
edit_count
;
mutable
int
max_ops
;
hb_blob_t
*
blob
;
unsigned
int
num_glyphs
;
};
...
...
test/shaping/data/in-house/fonts/233c1e252e737ca79e03a9fd56b71aaa4a230f2b.ttf
0 → 100644
浏览文件 @
e2d2d819
文件已添加
test/shaping/data/in-house/tests/fuzzed.tests
浏览文件 @
e2d2d819
...
...
@@ -20,3 +20,4 @@
../fonts/ef2511f215aa3ca847cbfffbf861793b42170875.ttf:--font-funcs=ot:U+0041:[gid0=0+1000]
../fonts/9d8a94a67932a3ab75a596fc8b5c6d0392ca9e49.ttf:--font-funcs=ot:U+0041:[gid0=0+1000]
../fonts/bbf4a308c402f0678c3e82844892a4da2ebe598f.ttf:--font-funcs=ot:U+0041:[gid0=0+1000]
../fonts/233c1e252e737ca79e03a9fd56b71aaa4a230f2b.ttf:--font-funcs=ot:U+0041:[gid0=0+1000]
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录