Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
d5460c99
Commit
d5460c99
authored
Jan 14, 2009
by
Heiko Carstens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CVE-2009-0029] System call wrappers part 25
Signed-off-by:
Heiko Carstens
<
heiko.carstens@de.ibm.com
>
parent
e48fbb69
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
11 deletions
+12
-11
ipc/mqueue.c
ipc/mqueue.c
+3
-3
ipc/sem.c
ipc/sem.c
+5
-4
ipc/shm.c
ipc/shm.c
+4
-4
No files found.
ipc/mqueue.c
View file @
d5460c99
...
...
@@ -650,8 +650,8 @@ static struct file *do_open(struct dentry *dentry, int oflag)
return
dentry_open
(
dentry
,
mqueue_mnt
,
oflag
,
cred
);
}
asmlinkage
long
sys_mq_open
(
const
char
__user
*
u_name
,
int
oflag
,
mode_t
mode
,
struct
mq_attr
__user
*
u_attr
)
SYSCALL_DEFINE4
(
mq_open
,
const
char
__user
*
,
u_name
,
int
,
oflag
,
mode_t
,
mode
,
struct
mq_attr
__user
*
,
u_attr
)
{
struct
dentry
*
dentry
;
struct
file
*
filp
;
...
...
@@ -721,7 +721,7 @@ asmlinkage long sys_mq_open(const char __user *u_name, int oflag, mode_t mode,
return
fd
;
}
asmlinkage
long
sys_mq_unlink
(
const
char
__user
*
u_name
)
SYSCALL_DEFINE1
(
mq_unlink
,
const
char
__user
*
,
u_name
)
{
int
err
;
char
*
name
;
...
...
ipc/sem.c
View file @
d5460c99
...
...
@@ -308,7 +308,7 @@ static inline int sem_more_checks(struct kern_ipc_perm *ipcp,
return
0
;
}
asmlinkage
long
sys_semget
(
key_t
key
,
int
nsems
,
int
semflg
)
SYSCALL_DEFINE3
(
semget
,
key_t
,
key
,
int
,
nsems
,
int
,
semflg
)
{
struct
ipc_namespace
*
ns
;
struct
ipc_ops
sem_ops
;
...
...
@@ -1055,8 +1055,8 @@ static struct sem_undo *find_alloc_undo(struct ipc_namespace *ns, int semid)
return
un
;
}
asmlinkage
long
sys_semtimedop
(
int
semid
,
struct
sembuf
__user
*
tsops
,
unsigned
nsops
,
const
struct
timespec
__user
*
timeout
)
SYSCALL_DEFINE4
(
semtimedop
,
int
,
semid
,
struct
sembuf
__user
*
,
tsops
,
unsigned
,
nsops
,
const
struct
timespec
__user
*
,
timeout
)
{
int
error
=
-
EINVAL
;
struct
sem_array
*
sma
;
...
...
@@ -1232,7 +1232,8 @@ asmlinkage long sys_semtimedop(int semid, struct sembuf __user *tsops,
return
error
;
}
asmlinkage
long
sys_semop
(
int
semid
,
struct
sembuf
__user
*
tsops
,
unsigned
nsops
)
SYSCALL_DEFINE3
(
semop
,
int
,
semid
,
struct
sembuf
__user
*
,
tsops
,
unsigned
,
nsops
)
{
return
sys_semtimedop
(
semid
,
tsops
,
nsops
,
NULL
);
}
...
...
ipc/shm.c
View file @
d5460c99
...
...
@@ -440,7 +440,7 @@ static inline int shm_more_checks(struct kern_ipc_perm *ipcp,
return
0
;
}
asmlinkage
long
sys_shmget
(
key_t
key
,
size_t
size
,
int
shmflg
)
SYSCALL_DEFINE3
(
shmget
,
key_t
,
key
,
size_t
,
size
,
int
,
shmflg
)
{
struct
ipc_namespace
*
ns
;
struct
ipc_ops
shm_ops
;
...
...
@@ -621,7 +621,7 @@ static int shmctl_down(struct ipc_namespace *ns, int shmid, int cmd,
return
err
;
}
asmlinkage
long
sys_shmctl
(
int
shmid
,
int
cmd
,
struct
shmid_ds
__user
*
buf
)
SYSCALL_DEFINE3
(
shmctl
,
int
,
shmid
,
int
,
cmd
,
struct
shmid_ds
__user
*
,
buf
)
{
struct
shmid_kernel
*
shp
;
int
err
,
version
;
...
...
@@ -939,7 +939,7 @@ long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr)
goto
out_nattch
;
}
asmlinkage
long
sys_shmat
(
int
shmid
,
char
__user
*
shmaddr
,
int
shmflg
)
SYSCALL_DEFINE3
(
shmat
,
int
,
shmid
,
char
__user
*
,
shmaddr
,
int
,
shmflg
)
{
unsigned
long
ret
;
long
err
;
...
...
@@ -955,7 +955,7 @@ asmlinkage long sys_shmat(int shmid, char __user *shmaddr, int shmflg)
* detach and kill segment if marked destroyed.
* The work is done in shm_close.
*/
asmlinkage
long
sys_shmdt
(
char
__user
*
shmaddr
)
SYSCALL_DEFINE1
(
shmdt
,
char
__user
*
,
shmaddr
)
{
struct
mm_struct
*
mm
=
current
->
mm
;
struct
vm_area_struct
*
vma
,
*
next
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment