Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
dd23deb5
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
1 年多 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
dd23deb5
编写于
4月 10, 2023
作者:
O
openharmony_ci
提交者:
Gitee
4月 10, 2023
浏览文件
操作
浏览文件
下载
差异文件
!862 adapt:arm64适配后向CFI功能
Merge pull request !862 from Zhaotianyu/20230409backwardcfi
上级
3bb6a7c2
f518d827
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
42 addition
and
0 deletion
+42
-0
musl_src.gni
musl_src.gni
+2
-0
porting/linux/user/include/sys/sspret.h
porting/linux/user/include/sys/sspret.h
+40
-0
未找到文件。
musl_src.gni
浏览文件 @
dd23deb5
...
...
@@ -1883,6 +1883,7 @@ musl_inc_sys_files = [
"include/sys/signal.h",
"include/sys/socket.h",
"include/sys/soundcard.h",
"include/sys/sspret.h",
"include/sys/statfs.h",
"include/sys/stat.h",
"include/sys/statvfs.h",
...
...
@@ -2045,6 +2046,7 @@ musl_src_porting_file = [
"include/stdlib.h",
"include/string.h",
"include/sys/stat.h",
"include/sys/sspret.h",
"include/fortify/fcntl.h",
"include/fortify/fortify.h",
"include/fortify/poll.h",
...
...
porting/linux/user/include/sys/sspret.h
0 → 100644
浏览文件 @
dd23deb5
#ifndef _SSPRET_H
#define _SSPRET_H
#if defined(__SSP_RET_STRONG__) || defined(__SSP_RET_ALL__)
#if defined(__aarch64__)
# define SSPRET_CALC_RETCOOKIE(reg) \
eor reg, reg, x30
# define SSPRET_LOAD_COOKIE(x, reg) \
mov reg, x29
# define SSPRET_SETUP(x, reg) \
SSPRET_LOAD_COOKIE(x, reg); \
SSPRET_CALC_RETCOOKIE(reg)
# define SSPRET_CHECK(x, reg) \
SSPRET_LOAD_COOKIE(x, x9); \
SSPRET_CALC_RETCOOKIE(x9); \
subs reg, reg, x9; \
cbz reg, 6788f; \
brk #0x1; \
6788:
# define SSPRET_PUSH(reg) \
str reg, [sp, #-16]!
# define SSPRET_POP(reg) \
ldr reg, [sp, #16]!
#endif
/* __aarch64__ */
#else
# define SSPRET_CALC_RETCOOKIE(reg)
# define SSPRET_LOAD_COOKIE(x, reg)
# define SSPRET_SETUP(x, reg)
# define SSPRET_CHECK(x, reg)
# define SSPRET_PUSH(reg)
# define SSPRET_POP(reg)
#endif
/* __SSP_RET_STRONG__ || __SSP_RET_ALL__ */
#endif
/* _SSPRET_H */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录