c792698a99
with development kernels bjm.c: sys_query_module: check if malloc succeeds system.c: sys_cap[gs]et(): check if malloc succeeds, only malloc once linux/syscallent.h: updated for 2.3.99pre3 linux/alpha/syscallent.h: updated for 2.3.99pre3, add all osf syscalls even though Linux doesn't implement them syscall.c: add global variables for MIPS registers as well syscall.c: move global variables to before get_scno since that uses them util.c: oops, misspelled defined process.c: fix ptrace calls in change_syscall mem.c: decode sys_madvise Merge patch from Topi Miettinen <Topi.Miettinen@nic.fi> + add support for quotactl, fdatasync, mlock, mlockall, munlockall & acct + small fix for RLIMIT_* and RUSAGE_BOTH + enhace support for capget and capset
34 lines
778 B
C
34 lines
778 B
C
/* This demonstrates races: kernel may actually open other file then
|
|
* you read at strace output. Create /tmp/delme with 10K of zeros and
|
|
* 666 mode, then run this under strace. If you see open successfull
|
|
* open of /etc/shadow, you know you've seen a race.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
char *c = (char*)0x94000000;
|
|
int fd;
|
|
open( "/tmp/delme", O_RDWR );
|
|
mmap( c, 4096, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_SHARED, 3, 0 );
|
|
*c = 0;
|
|
if (fork()) {
|
|
while(1) {
|
|
strcpy( c, "/etc/passwd" );
|
|
strcpy( c, "/etc/shadow" );
|
|
}
|
|
} else
|
|
while (1)
|
|
if ((fd=open( c, 0 ))!=-1)
|
|
close(fd);
|
|
return 0;
|
|
}
|