-
- Downloads
[CVE-2009-0029] System call wrapper special cases
System calls with an unsigned long long argument can't be converted with
the standard wrappers since that would include a cast to long, which in
turn means that we would lose the upper 32 bit on 32 bit architectures.
Also semctl can't use the standard wrapper since it has a 'union'
parameter.
So we handle them as special case and add some extra wrappers instead.
Signed-off-by:
Heiko Carstens <heiko.carstens@de.ibm.com>
Showing
- fs/dcookies.c 8 additions, 2 deletionsfs/dcookies.c
- fs/open.c 24 additions, 3 deletionsfs/open.c
- fs/read_write.c 20 additions, 4 deletionsfs/read_write.c
- fs/sync.c 22 additions, 4 deletionsfs/sync.c
- ipc/sem.c 8 additions, 1 deletionipc/sem.c
- mm/fadvise.c 16 additions, 2 deletionsmm/fadvise.c
- mm/filemap.c 8 additions, 1 deletionmm/filemap.c
Loading
Please register or sign in to comment