Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
2e4d0924
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2e4d0924
编写于
1月 14, 2009
作者:
H
Heiko Carstens
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CVE-2009-0029] System call wrappers part 29
Signed-off-by:
N
Heiko Carstens
<
heiko.carstens@de.ibm.com
>
上级
938bb9f5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
13 deletion
+13
-13
fs/namei.c
fs/namei.c
+10
-11
fs/notify/inotify/inotify_user.c
fs/notify/inotify/inotify_user.c
+3
-2
未找到文件。
fs/namei.c
浏览文件 @
2e4d0924
...
...
@@ -1962,8 +1962,8 @@ static int may_mknod(mode_t mode)
}
}
asmlinkage
long
sys_mknodat
(
int
dfd
,
const
char
__user
*
filename
,
int
mode
,
unsigned
dev
)
SYSCALL_DEFINE4
(
mknodat
,
int
,
dfd
,
const
char
__user
*
,
filename
,
int
,
mode
,
unsigned
,
dev
)
{
int
error
;
char
*
tmp
;
...
...
@@ -2044,7 +2044,7 @@ int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
return
error
;
}
asmlinkage
long
sys_mkdirat
(
int
dfd
,
const
char
__user
*
pathname
,
int
mode
)
SYSCALL_DEFINE3
(
mkdirat
,
int
,
dfd
,
const
char
__user
*
,
pathname
,
int
,
mode
)
{
int
error
=
0
;
char
*
tmp
;
...
...
@@ -2291,7 +2291,7 @@ static long do_unlinkat(int dfd, const char __user *pathname)
goto
exit2
;
}
asmlinkage
long
sys_unlinkat
(
int
dfd
,
const
char
__user
*
pathname
,
int
flag
)
SYSCALL_DEFINE3
(
unlinkat
,
int
,
dfd
,
const
char
__user
*
,
pathname
,
int
,
flag
)
{
if
((
flag
&
~
AT_REMOVEDIR
)
!=
0
)
return
-
EINVAL
;
...
...
@@ -2328,8 +2328,8 @@ int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
return
error
;
}
asmlinkage
long
sys_symlinkat
(
const
char
__user
*
oldname
,
int
newdfd
,
const
char
__user
*
newname
)
SYSCALL_DEFINE3
(
symlinkat
,
const
char
__user
*
,
oldname
,
int
,
newdfd
,
const
char
__user
*
,
newname
)
{
int
error
;
char
*
from
;
...
...
@@ -2422,9 +2422,8 @@ int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_de
* with linux 2.0, and to avoid hard-linking to directories
* and other special files. --ADM
*/
asmlinkage
long
sys_linkat
(
int
olddfd
,
const
char
__user
*
oldname
,
int
newdfd
,
const
char
__user
*
newname
,
int
flags
)
SYSCALL_DEFINE5
(
linkat
,
int
,
olddfd
,
const
char
__user
*
,
oldname
,
int
,
newdfd
,
const
char
__user
*
,
newname
,
int
,
flags
)
{
struct
dentry
*
new_dentry
;
struct
nameidata
nd
;
...
...
@@ -2624,8 +2623,8 @@ int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
return
error
;
}
asmlinkage
long
sys_renameat
(
int
olddfd
,
const
char
__user
*
oldname
,
int
newdfd
,
const
char
__user
*
newname
)
SYSCALL_DEFINE4
(
renameat
,
int
,
olddfd
,
const
char
__user
*
,
oldname
,
int
,
newdfd
,
const
char
__user
*
,
newname
)
{
struct
dentry
*
old_dir
,
*
new_dir
;
struct
dentry
*
old_dentry
,
*
new_dentry
;
...
...
fs/notify/inotify/inotify_user.c
浏览文件 @
2e4d0924
...
...
@@ -660,7 +660,8 @@ SYSCALL_DEFINE0(inotify_init)
return
sys_inotify_init1
(
0
);
}
asmlinkage
long
sys_inotify_add_watch
(
int
fd
,
const
char
__user
*
pathname
,
u32
mask
)
SYSCALL_DEFINE3
(
inotify_add_watch
,
int
,
fd
,
const
char
__user
*
,
pathname
,
u32
,
mask
)
{
struct
inode
*
inode
;
struct
inotify_device
*
dev
;
...
...
@@ -704,7 +705,7 @@ asmlinkage long sys_inotify_add_watch(int fd, const char __user *pathname, u32 m
return
ret
;
}
asmlinkage
long
sys_inotify_rm_watch
(
int
fd
,
__s32
wd
)
SYSCALL_DEFINE2
(
inotify_rm_watch
,
int
,
fd
,
__s32
,
wd
)
{
struct
file
*
filp
;
struct
inotify_device
*
dev
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录