// https://syzkaller.appspot.com/bug?id=efc234d0d3f0d6b900fe67b5334dc76cde55dbd4 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define MAX_FDS 30 static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } loop(); exit(1); } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) { continue; } kill_and_wait(pid, &status); break; } } } uint64_t r[3] = {0xffffffffffffffff, 0x0, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; res = syscall(__NR_socket, 0x10ul, 0x803ul, 0); if (res != -1) r[0] = res; *(uint64_t*)0x20000280 = 0; *(uint32_t*)0x20000288 = 0; *(uint64_t*)0x20000290 = 0x20000180; *(uint64_t*)0x20000180 = 0; *(uint64_t*)0x20000188 = 0; *(uint64_t*)0x20000298 = 1; *(uint64_t*)0x200002a0 = 0; *(uint64_t*)0x200002a8 = 0; *(uint32_t*)0x200002b0 = 0; syscall(__NR_sendmsg, r[0], 0x20000280ul, 0ul); *(uint32_t*)0x20000200 = 0x14; res = syscall(__NR_getsockname, r[0], 0x20000440ul, 0x20000200ul); if (res != -1) r[1] = *(uint32_t*)0x20000444; *(uint64_t*)0x20000240 = 0; *(uint32_t*)0x20000248 = 0; *(uint64_t*)0x20000250 = 0x20000140; *(uint64_t*)0x20000140 = 0x200003c0; memcpy((void*)0x200003c0, "\x38\x00\x00\x00\x24\x00\xff\xff\xff\x7f\x01\x00" "\x00\x00\x00\x00\x05\x00\x00\x00", 20); *(uint32_t*)0x200003d4 = r[1]; memcpy((void*)0x200003d8, "\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00" "\x09\x00\x01\x00\x68\x66\x73\x63\x00\x00\x00\x00" "\x08\x00\x02", 27); *(uint64_t*)0x20000148 = 0x38; *(uint64_t*)0x20000258 = 1; *(uint64_t*)0x20000260 = 0; *(uint64_t*)0x20000268 = 0; *(uint32_t*)0x20000270 = 0; syscall(__NR_sendmsg, -1, 0x20000240ul, 0ul); *(uint64_t*)0x20000300 = 0; *(uint32_t*)0x20000308 = 0; *(uint64_t*)0x20000310 = 0x20000180; *(uint64_t*)0x20000180 = 0x200005c0; *(uint32_t*)0x200005c0 = 0xc88; *(uint16_t*)0x200005c4 = 0x2c; *(uint16_t*)0x200005c6 = 0xd27; *(uint32_t*)0x200005c8 = 0; *(uint32_t*)0x200005cc = 0; *(uint8_t*)0x200005d0 = 0; *(uint8_t*)0x200005d1 = 0; *(uint16_t*)0x200005d2 = 0; *(uint32_t*)0x200005d4 = r[1]; *(uint16_t*)0x200005d8 = 0; *(uint16_t*)0x200005da = 0x10; *(uint16_t*)0x200005dc = 0; *(uint16_t*)0x200005de = 0; *(uint16_t*)0x200005e0 = 7; *(uint16_t*)0x200005e2 = 0xa; *(uint16_t*)0x200005e4 = 7; *(uint16_t*)0x200005e6 = 1; memcpy((void*)0x200005e8, "fw\000", 3); *(uint16_t*)0x200005ec = 0xc5c; *(uint16_t*)0x200005ee = 2; *(uint16_t*)0x200005f0 = 0xc58; *(uint16_t*)0x200005f2 = 2; *(uint16_t*)0x200005f4 = 0x3c; *(uint16_t*)0x200005f6 = 1; *(uint32_t*)0x200005f8 = 5; *(uint32_t*)0x200005fc = 0x10000000; *(uint32_t*)0x20000600 = 0; *(uint32_t*)0x20000604 = 0xcc5; *(uint32_t*)0x20000608 = 0x81; *(uint8_t*)0x2000060c = 1; *(uint8_t*)0x2000060d = 0; *(uint16_t*)0x2000060e = 7; *(uint16_t*)0x20000610 = 7; *(uint16_t*)0x20000612 = 7; *(uint32_t*)0x20000614 = 0xfffffff9; *(uint8_t*)0x20000618 = 6; *(uint8_t*)0x20000619 = 0; *(uint16_t*)0x2000061a = 0x1000; *(uint16_t*)0x2000061c = 0xfff8; *(uint16_t*)0x2000061e = 8; *(uint32_t*)0x20000620 = 4; *(uint32_t*)0x20000624 = 0xfffffff8; *(uint32_t*)0x20000628 = 5; *(uint32_t*)0x2000062c = 0x18; *(uint16_t*)0x20000630 = 0x404; *(uint16_t*)0x20000632 = 2; *(uint32_t*)0x20000634 = 0; *(uint32_t*)0x20000638 = 0xfffffffd; *(uint32_t*)0x2000063c = 0x23; *(uint32_t*)0x20000640 = 0x401; *(uint32_t*)0x20000644 = 0x10001; *(uint32_t*)0x20000648 = 1; *(uint32_t*)0x2000064c = 0x1000; *(uint32_t*)0x20000650 = 0x7ff; *(uint32_t*)0x20000654 = 0x800; *(uint32_t*)0x20000658 = 0x4dd1; *(uint32_t*)0x2000065c = 1; *(uint32_t*)0x20000660 = 0x101; *(uint32_t*)0x20000664 = 0x76f2; *(uint32_t*)0x20000668 = 1; *(uint32_t*)0x2000066c = 0xbc9; *(uint32_t*)0x20000670 = 0; *(uint32_t*)0x20000674 = 3; *(uint32_t*)0x20000678 = 9; *(uint32_t*)0x2000067c = 0x7f; *(uint32_t*)0x20000680 = 5; *(uint32_t*)0x20000684 = 5; *(uint32_t*)0x20000688 = 0x7fff; *(uint32_t*)0x2000068c = 0x1f; *(uint32_t*)0x20000690 = 0x1f; *(uint32_t*)0x20000694 = 1; *(uint32_t*)0x20000698 = 0x4aa1; *(uint32_t*)0x2000069c = 0; *(uint32_t*)0x200006a0 = 8; *(uint32_t*)0x200006a4 = 0xfe; *(uint32_t*)0x200006a8 = -1; *(uint32_t*)0x200006ac = 0xd6d3; *(uint32_t*)0x200006b0 = 0x7f; *(uint32_t*)0x200006b4 = 3; *(uint32_t*)0x200006b8 = 3; *(uint32_t*)0x200006bc = 2; *(uint32_t*)0x200006c0 = 0x10001; *(uint32_t*)0x200006c4 = 0x3ff; *(uint32_t*)0x200006c8 = 0xffff; *(uint32_t*)0x200006cc = 0xb6; *(uint32_t*)0x200006d0 = 0x80000000; *(uint32_t*)0x200006d4 = 9; *(uint32_t*)0x200006d8 = 0; *(uint32_t*)0x200006dc = 3; *(uint32_t*)0x200006e0 = 7; *(uint32_t*)0x200006e4 = 8; *(uint32_t*)0x200006e8 = 2; *(uint32_t*)0x200006ec = 7; *(uint32_t*)0x200006f0 = 9; *(uint32_t*)0x200006f4 = 0; *(uint32_t*)0x200006f8 = 0; *(uint32_t*)0x200006fc = 3; *(uint32_t*)0x20000700 = 0xa032; *(uint32_t*)0x20000704 = 1; *(uint32_t*)0x20000708 = 0; *(uint32_t*)0x2000070c = 0; *(uint32_t*)0x20000710 = 3; *(uint32_t*)0x20000714 = 0x2de00000; *(uint32_t*)0x20000718 = 8; *(uint32_t*)0x2000071c = 0x80000000; *(uint32_t*)0x20000720 = 1; *(uint32_t*)0x20000724 = 2; *(uint32_t*)0x20000728 = 5; *(uint32_t*)0x2000072c = 0; *(uint32_t*)0x20000730 = 0x5f5c1cd6; *(uint32_t*)0x20000734 = 0; *(uint32_t*)0x20000738 = 0x100; *(uint32_t*)0x2000073c = 0x5b9; *(uint32_t*)0x20000740 = 0; *(uint32_t*)0x20000744 = 5; *(uint32_t*)0x20000748 = 0; *(uint32_t*)0x2000074c = 0x800; *(uint32_t*)0x20000750 = 1; *(uint32_t*)0x20000754 = 0x2866; *(uint32_t*)0x20000758 = 0x665; *(uint32_t*)0x2000075c = 0xfffffffd; *(uint32_t*)0x20000760 = 0xfffffff9; *(uint32_t*)0x20000764 = 0x73; *(uint32_t*)0x20000768 = 9; *(uint32_t*)0x2000076c = 0x20; *(uint32_t*)0x20000770 = 0; *(uint32_t*)0x20000774 = 8; *(uint32_t*)0x20000778 = 0xffff; *(uint32_t*)0x2000077c = 0; *(uint32_t*)0x20000780 = 3; *(uint32_t*)0x20000784 = 0; *(uint32_t*)0x20000788 = 0x4ba; *(uint32_t*)0x2000078c = 0x1ff; *(uint32_t*)0x20000790 = 5; *(uint32_t*)0x20000794 = 0; *(uint32_t*)0x20000798 = 4; *(uint32_t*)0x2000079c = 0xfffffffb; *(uint32_t*)0x200007a0 = 2; *(uint32_t*)0x200007a4 = 0; *(uint32_t*)0x200007a8 = 0; *(uint32_t*)0x200007ac = 0; *(uint32_t*)0x200007b0 = 0x20; *(uint32_t*)0x200007b4 = 4; *(uint32_t*)0x200007b8 = 6; *(uint32_t*)0x200007bc = 0xffffff00; *(uint32_t*)0x200007c0 = 0x65ae; *(uint32_t*)0x200007c4 = 7; *(uint32_t*)0x200007c8 = 8; *(uint32_t*)0x200007cc = 1; *(uint32_t*)0x200007d0 = 0x200; *(uint32_t*)0x200007d4 = 1; *(uint32_t*)0x200007d8 = 3; *(uint32_t*)0x200007dc = 6; *(uint32_t*)0x200007e0 = 0x6d40; *(uint32_t*)0x200007e4 = 0xa4; *(uint32_t*)0x200007e8 = 4; *(uint32_t*)0x200007ec = 2; *(uint32_t*)0x200007f0 = 0x80; *(uint32_t*)0x200007f4 = 0; *(uint32_t*)0x200007f8 = 9; *(uint32_t*)0x200007fc = 0xffffffdb; *(uint32_t*)0x20000800 = -1; *(uint32_t*)0x20000804 = 0x401; *(uint32_t*)0x20000808 = 0xffff; *(uint32_t*)0x2000080c = 0; *(uint32_t*)0x20000810 = 0x3f; *(uint32_t*)0x20000814 = 2; *(uint32_t*)0x20000818 = 8; *(uint32_t*)0x2000081c = 5; *(uint32_t*)0x20000820 = 0x7f; *(uint32_t*)0x20000824 = 0x81; *(uint32_t*)0x20000828 = 6; *(uint32_t*)0x2000082c = 0; *(uint32_t*)0x20000830 = 0x1000; *(uint32_t*)0x20000834 = 4; *(uint32_t*)0x20000838 = 7; *(uint32_t*)0x2000083c = 6; *(uint32_t*)0x20000840 = 8; *(uint32_t*)0x20000844 = 0xe44; *(uint32_t*)0x20000848 = 6; *(uint32_t*)0x2000084c = 0xfff; *(uint32_t*)0x20000850 = 0x9b; *(uint32_t*)0x20000854 = 0; *(uint32_t*)0x20000858 = 7; *(uint32_t*)0x2000085c = 5; *(uint32_t*)0x20000860 = 0x3f; *(uint32_t*)0x20000864 = 0x40; *(uint32_t*)0x20000868 = 0x8f4b; *(uint32_t*)0x2000086c = 1; *(uint32_t*)0x20000870 = 7; *(uint32_t*)0x20000874 = -1; *(uint32_t*)0x20000878 = 0x72e9312e; *(uint32_t*)0x2000087c = 2; *(uint32_t*)0x20000880 = 2; *(uint32_t*)0x20000884 = 0x45; *(uint32_t*)0x20000888 = 0xfffffffa; *(uint32_t*)0x2000088c = 7; *(uint32_t*)0x20000890 = 0; *(uint32_t*)0x20000894 = 0x800; *(uint32_t*)0x20000898 = 0x20; *(uint32_t*)0x2000089c = 2; *(uint32_t*)0x200008a0 = 4; *(uint32_t*)0x200008a4 = 6; *(uint32_t*)0x200008a8 = 8; *(uint32_t*)0x200008ac = 0x200000; *(uint32_t*)0x200008b0 = 0xffff; *(uint32_t*)0x200008b4 = 0x80; *(uint32_t*)0x200008b8 = 0x10001; *(uint32_t*)0x200008bc = 2; *(uint32_t*)0x200008c0 = 3; *(uint32_t*)0x200008c4 = 0x500; *(uint32_t*)0x200008c8 = 3; *(uint32_t*)0x200008cc = -1; *(uint32_t*)0x200008d0 = 0x7fffffff; *(uint32_t*)0x200008d4 = 0xff; *(uint32_t*)0x200008d8 = 5; *(uint32_t*)0x200008dc = 0x3f; *(uint32_t*)0x200008e0 = 0xffff; *(uint32_t*)0x200008e4 = 4; *(uint32_t*)0x200008e8 = 0x400; *(uint32_t*)0x200008ec = 0xfffffff8; *(uint32_t*)0x200008f0 = 0xff; *(uint32_t*)0x200008f4 = 6; *(uint32_t*)0x200008f8 = 0; *(uint32_t*)0x200008fc = 0xf2; *(uint32_t*)0x20000900 = 5; *(uint32_t*)0x20000904 = 0x3f; *(uint32_t*)0x20000908 = 2; *(uint32_t*)0x2000090c = 8; *(uint32_t*)0x20000910 = 8; *(uint32_t*)0x20000914 = 0xfaf9; *(uint32_t*)0x20000918 = 2; *(uint32_t*)0x2000091c = 0x1c8; *(uint32_t*)0x20000920 = 0xfffff801; *(uint32_t*)0x20000924 = 0xfffffffc; *(uint32_t*)0x20000928 = 2; *(uint32_t*)0x2000092c = 5; *(uint32_t*)0x20000930 = 0x100000; *(uint32_t*)0x20000934 = 5; *(uint32_t*)0x20000938 = 0x80; *(uint32_t*)0x2000093c = 7; *(uint32_t*)0x20000940 = 0x12f; *(uint32_t*)0x20000944 = 0x200; *(uint32_t*)0x20000948 = 9; *(uint32_t*)0x2000094c = 0x1a; *(uint32_t*)0x20000950 = 0x10000; *(uint32_t*)0x20000954 = 5; *(uint32_t*)0x20000958 = 0x10000; *(uint32_t*)0x2000095c = 0; *(uint32_t*)0x20000960 = 5; *(uint32_t*)0x20000964 = 0x8001; *(uint32_t*)0x20000968 = 7; *(uint32_t*)0x2000096c = 0xffff4df0; *(uint32_t*)0x20000970 = 1; *(uint32_t*)0x20000974 = 0x39d9; *(uint32_t*)0x20000978 = 0; *(uint32_t*)0x2000097c = 0x25; *(uint32_t*)0x20000980 = 8; *(uint32_t*)0x20000984 = 9; *(uint32_t*)0x20000988 = 6; *(uint32_t*)0x2000098c = 0xfffeffff; *(uint32_t*)0x20000990 = 0x80000001; *(uint32_t*)0x20000994 = 9; *(uint32_t*)0x20000998 = 0x10001; *(uint32_t*)0x2000099c = 0x80000000; *(uint32_t*)0x200009a0 = 0xd9; *(uint32_t*)0x200009a4 = 1; *(uint32_t*)0x200009a8 = 9; *(uint32_t*)0x200009ac = 2; *(uint32_t*)0x200009b0 = 0x1000; *(uint32_t*)0x200009b4 = 8; *(uint32_t*)0x200009b8 = 0x10000; *(uint32_t*)0x200009bc = 8; *(uint32_t*)0x200009c0 = 0xffffff94; *(uint32_t*)0x200009c4 = 5; *(uint32_t*)0x200009c8 = 0; *(uint32_t*)0x200009cc = 4; *(uint32_t*)0x200009d0 = 4; *(uint32_t*)0x200009d4 = 0x11f; *(uint32_t*)0x200009d8 = 0xa07; *(uint32_t*)0x200009dc = 0x8000; *(uint32_t*)0x200009e0 = 6; *(uint32_t*)0x200009e4 = 6; *(uint32_t*)0x200009e8 = 0xd6; *(uint32_t*)0x200009ec = 1; *(uint32_t*)0x200009f0 = 3; *(uint32_t*)0x200009f4 = 6; *(uint32_t*)0x200009f8 = 8; *(uint32_t*)0x200009fc = 9; *(uint32_t*)0x20000a00 = 6; *(uint32_t*)0x20000a04 = 0x5ca0; *(uint32_t*)0x20000a08 = 0x81; *(uint32_t*)0x20000a0c = 0x80000001; *(uint32_t*)0x20000a10 = 9; *(uint32_t*)0x20000a14 = 6; *(uint32_t*)0x20000a18 = 7; *(uint32_t*)0x20000a1c = 1; *(uint32_t*)0x20000a20 = 6; *(uint32_t*)0x20000a24 = 0xc4a; *(uint32_t*)0x20000a28 = 2; *(uint32_t*)0x20000a2c = 3; *(uint32_t*)0x20000a30 = 5; *(uint16_t*)0x20000a34 = 0xc; *(uint16_t*)0x20000a36 = 8; *(uint64_t*)0x20000a38 = 2; *(uint16_t*)0x20000a40 = 0x404; *(uint16_t*)0x20000a42 = 3; *(uint32_t*)0x20000a44 = 0xf38; *(uint32_t*)0x20000a48 = 7; *(uint32_t*)0x20000a4c = 8; *(uint32_t*)0x20000a50 = 8; *(uint32_t*)0x20000a54 = 8; *(uint32_t*)0x20000a58 = 4; *(uint32_t*)0x20000a5c = 0x7fffffff; *(uint32_t*)0x20000a60 = 8; *(uint32_t*)0x20000a64 = 0x3f; *(uint32_t*)0x20000a68 = 0xbe; *(uint32_t*)0x20000a6c = 0xa9; *(uint32_t*)0x20000a70 = 0x7f; *(uint32_t*)0x20000a74 = 0x81; *(uint32_t*)0x20000a78 = 0xfffffeff; *(uint32_t*)0x20000a7c = 0x3ff; *(uint32_t*)0x20000a80 = 0x8000; *(uint32_t*)0x20000a84 = 0xefc; *(uint32_t*)0x20000a88 = 0x75d; *(uint32_t*)0x20000a8c = 3; *(uint32_t*)0x20000a90 = 9; *(uint32_t*)0x20000a94 = 4; *(uint32_t*)0x20000a98 = 1; *(uint32_t*)0x20000a9c = 0x100; *(uint32_t*)0x20000aa0 = 7; *(uint32_t*)0x20000aa4 = 1; *(uint32_t*)0x20000aa8 = 6; *(uint32_t*)0x20000aac = 0xffffff7b; *(uint32_t*)0x20000ab0 = 0x4f77; *(uint32_t*)0x20000ab4 = 1; *(uint32_t*)0x20000ab8 = 4; *(uint32_t*)0x20000abc = 7; *(uint32_t*)0x20000ac0 = 1; *(uint32_t*)0x20000ac4 = 1; *(uint32_t*)0x20000ac8 = 0x81; *(uint32_t*)0x20000acc = 0xc62; *(uint32_t*)0x20000ad0 = 6; *(uint32_t*)0x20000ad4 = 0x5e1; *(uint32_t*)0x20000ad8 = 7; *(uint32_t*)0x20000adc = 2; *(uint32_t*)0x20000ae0 = 2; *(uint32_t*)0x20000ae4 = 0x3ff; *(uint32_t*)0x20000ae8 = 2; *(uint32_t*)0x20000aec = 0xffffffe0; *(uint32_t*)0x20000af0 = 0xb2d; *(uint32_t*)0x20000af4 = 0xfffffffe; *(uint32_t*)0x20000af8 = 9; *(uint32_t*)0x20000afc = 0xfffffffa; *(uint32_t*)0x20000b00 = 7; *(uint32_t*)0x20000b04 = 1; *(uint32_t*)0x20000b08 = 0x7fff; *(uint32_t*)0x20000b0c = 0x8879; *(uint32_t*)0x20000b10 = 0x1f; *(uint32_t*)0x20000b14 = 0x100; *(uint32_t*)0x20000b18 = 8; *(uint32_t*)0x20000b1c = 8; *(uint32_t*)0x20000b20 = 0x6d; *(uint32_t*)0x20000b24 = 8; *(uint32_t*)0x20000b28 = -1; *(uint32_t*)0x20000b2c = 2; *(uint32_t*)0x20000b30 = 3; *(uint32_t*)0x20000b34 = 5; *(uint32_t*)0x20000b38 = 0xf80; *(uint32_t*)0x20000b3c = 9; *(uint32_t*)0x20000b40 = 9; *(uint32_t*)0x20000b44 = 5; *(uint32_t*)0x20000b48 = 0; *(uint32_t*)0x20000b4c = 5; *(uint32_t*)0x20000b50 = 0x59; *(uint32_t*)0x20000b54 = 0xfffffffa; *(uint32_t*)0x20000b58 = 0xfc2; *(uint32_t*)0x20000b5c = 0x9826; *(uint32_t*)0x20000b60 = 0x80; *(uint32_t*)0x20000b64 = 0; *(uint32_t*)0x20000b68 = 0x200; *(uint32_t*)0x20000b6c = 0x6fc; *(uint32_t*)0x20000b70 = 9; *(uint32_t*)0x20000b74 = 0xffffffe1; *(uint32_t*)0x20000b78 = 0x26; *(uint32_t*)0x20000b7c = 6; *(uint32_t*)0x20000b80 = 0xd0; *(uint32_t*)0x20000b84 = 6; *(uint32_t*)0x20000b88 = 0x38000000; *(uint32_t*)0x20000b8c = 9; *(uint32_t*)0x20000b90 = 0x1d0e00; *(uint32_t*)0x20000b94 = 4; *(uint32_t*)0x20000b98 = 0x33; *(uint32_t*)0x20000b9c = 0x40; *(uint32_t*)0x20000ba0 = 3; *(uint32_t*)0x20000ba4 = 0xfbdd; *(uint32_t*)0x20000ba8 = 2; *(uint32_t*)0x20000bac = 0x8001; *(uint32_t*)0x20000bb0 = 2; *(uint32_t*)0x20000bb4 = 0x400; *(uint32_t*)0x20000bb8 = 0xb1; *(uint32_t*)0x20000bbc = 4; *(uint32_t*)0x20000bc0 = 0x9f; *(uint32_t*)0x20000bc4 = 3; *(uint32_t*)0x20000bc8 = 1; *(uint32_t*)0x20000bcc = 5; *(uint32_t*)0x20000bd0 = 1; *(uint32_t*)0x20000bd4 = 0x20; *(uint32_t*)0x20000bd8 = 0x29744eb4; *(uint32_t*)0x20000bdc = 0x80000009; *(uint32_t*)0x20000be0 = 0xff; *(uint32_t*)0x20000be4 = 0x7fffffff; *(uint32_t*)0x20000be8 = 0xfffffff7; *(uint32_t*)0x20000bec = 0x157e; *(uint32_t*)0x20000bf0 = 0x3f; *(uint32_t*)0x20000bf4 = 6; *(uint32_t*)0x20000bf8 = 4; *(uint32_t*)0x20000bfc = 0x100; *(uint32_t*)0x20000c00 = 0xf; *(uint32_t*)0x20000c04 = 0x8000; *(uint32_t*)0x20000c08 = 1; *(uint32_t*)0x20000c0c = 8; *(uint32_t*)0x20000c10 = 0xc5; *(uint32_t*)0x20000c14 = 0xc4; *(uint32_t*)0x20000c18 = 0; *(uint32_t*)0x20000c1c = 1; *(uint32_t*)0x20000c20 = 0x400; *(uint32_t*)0x20000c24 = 0x800000; *(uint32_t*)0x20000c28 = 0x80; *(uint32_t*)0x20000c2c = 0x7fffffff; *(uint32_t*)0x20000c30 = 0x7ff; *(uint32_t*)0x20000c34 = 3; *(uint32_t*)0x20000c38 = 5; *(uint32_t*)0x20000c3c = 0x4000000; *(uint32_t*)0x20000c40 = 0xfff; *(uint32_t*)0x20000c44 = 0xffff224e; *(uint32_t*)0x20000c48 = 0xfffffff9; *(uint32_t*)0x20000c4c = 0; *(uint32_t*)0x20000c50 = 0; *(uint32_t*)0x20000c54 = 0xa94; *(uint32_t*)0x20000c58 = 0x406c; *(uint32_t*)0x20000c5c = 2; *(uint32_t*)0x20000c60 = 0xb5; *(uint32_t*)0x20000c64 = 0xf418; *(uint32_t*)0x20000c68 = 0x3f; *(uint32_t*)0x20000c6c = 8; *(uint32_t*)0x20000c70 = 8; *(uint32_t*)0x20000c74 = 3; *(uint32_t*)0x20000c78 = 0xe8; *(uint32_t*)0x20000c7c = 3; *(uint32_t*)0x20000c80 = 0x80; *(uint32_t*)0x20000c84 = 7; *(uint32_t*)0x20000c88 = 4; *(uint32_t*)0x20000c8c = 0xffff; *(uint32_t*)0x20000c90 = 0x800; *(uint32_t*)0x20000c94 = 0x10001; *(uint32_t*)0x20000c98 = 0x3f; *(uint32_t*)0x20000c9c = 0x8000; *(uint32_t*)0x20000ca0 = -1; *(uint32_t*)0x20000ca4 = 0xb91b; *(uint32_t*)0x20000ca8 = 0xe1; *(uint32_t*)0x20000cac = 0; *(uint32_t*)0x20000cb0 = 0xfffffffe; *(uint32_t*)0x20000cb4 = 3; *(uint32_t*)0x20000cb8 = 0x66; *(uint32_t*)0x20000cbc = 2; *(uint32_t*)0x20000cc0 = 9; *(uint32_t*)0x20000cc4 = 4; *(uint32_t*)0x20000cc8 = 0x4df0; *(uint32_t*)0x20000ccc = 0x7fffffff; *(uint32_t*)0x20000cd0 = 4; *(uint32_t*)0x20000cd4 = 0x200; *(uint32_t*)0x20000cd8 = 0x2000000; *(uint32_t*)0x20000cdc = 0xfffffffa; *(uint32_t*)0x20000ce0 = 3; *(uint32_t*)0x20000ce4 = 7; *(uint32_t*)0x20000ce8 = 0x80; *(uint32_t*)0x20000cec = 0x10001; *(uint32_t*)0x20000cf0 = 4; *(uint32_t*)0x20000cf4 = 3; *(uint32_t*)0x20000cf8 = 1; *(uint32_t*)0x20000cfc = 0xbf8; *(uint32_t*)0x20000d00 = 0x3a5; *(uint32_t*)0x20000d04 = 0xe1; *(uint32_t*)0x20000d08 = 0; *(uint32_t*)0x20000d0c = 6; *(uint32_t*)0x20000d10 = 0x1000; *(uint32_t*)0x20000d14 = 4; *(uint32_t*)0x20000d18 = 0x14b3; *(uint32_t*)0x20000d1c = 0xf79; *(uint32_t*)0x20000d20 = 0x80; *(uint32_t*)0x20000d24 = 0x689; *(uint32_t*)0x20000d28 = 0xa0; *(uint32_t*)0x20000d2c = 0xd36f; *(uint32_t*)0x20000d30 = 5; *(uint32_t*)0x20000d34 = 0x74f7774d; *(uint32_t*)0x20000d38 = 0x101; *(uint32_t*)0x20000d3c = 0x101; *(uint32_t*)0x20000d40 = 3; *(uint32_t*)0x20000d44 = 2; *(uint32_t*)0x20000d48 = 0xa9e; *(uint32_t*)0x20000d4c = 0x1000; *(uint32_t*)0x20000d50 = 0xe6f; *(uint32_t*)0x20000d54 = 0x63bdc9b4; *(uint32_t*)0x20000d58 = 0; *(uint32_t*)0x20000d5c = 0x351; *(uint32_t*)0x20000d60 = 0xc98f; *(uint32_t*)0x20000d64 = 0xdad; *(uint32_t*)0x20000d68 = 0; *(uint32_t*)0x20000d6c = 0xffff; *(uint32_t*)0x20000d70 = 0x1f; *(uint32_t*)0x20000d74 = 8; *(uint32_t*)0x20000d78 = 4; *(uint32_t*)0x20000d7c = 3; *(uint32_t*)0x20000d80 = 0x7f; *(uint32_t*)0x20000d84 = 0x2c160; *(uint32_t*)0x20000d88 = 0x3f; *(uint32_t*)0x20000d8c = 0x3f; *(uint32_t*)0x20000d90 = 4; *(uint32_t*)0x20000d94 = 7; *(uint32_t*)0x20000d98 = 0xffffff5e; *(uint32_t*)0x20000d9c = 8; *(uint32_t*)0x20000da0 = 8; *(uint32_t*)0x20000da4 = 3; *(uint32_t*)0x20000da8 = 0xc7a8; *(uint32_t*)0x20000dac = 0x4dab; *(uint32_t*)0x20000db0 = 0xffffffe1; *(uint32_t*)0x20000db4 = 7; *(uint32_t*)0x20000db8 = 2; *(uint32_t*)0x20000dbc = 0x91; *(uint32_t*)0x20000dc0 = 0xfff; *(uint32_t*)0x20000dc4 = 4; *(uint32_t*)0x20000dc8 = 0xfffffffb; *(uint32_t*)0x20000dcc = 2; *(uint32_t*)0x20000dd0 = 4; *(uint32_t*)0x20000dd4 = 5; *(uint32_t*)0x20000dd8 = 8; *(uint32_t*)0x20000ddc = 4; *(uint32_t*)0x20000de0 = 0; *(uint32_t*)0x20000de4 = 4; *(uint32_t*)0x20000de8 = 2; *(uint32_t*)0x20000dec = 3; *(uint32_t*)0x20000df0 = 0; *(uint32_t*)0x20000df4 = 0xff; *(uint32_t*)0x20000df8 = 0x6683; *(uint32_t*)0x20000dfc = 0xb1; *(uint32_t*)0x20000e00 = 0x75ad; *(uint32_t*)0x20000e04 = 0x180; *(uint32_t*)0x20000e08 = 2; *(uint32_t*)0x20000e0c = 8; *(uint32_t*)0x20000e10 = 0x1ff; *(uint32_t*)0x20000e14 = 9; *(uint32_t*)0x20000e18 = 2; *(uint32_t*)0x20000e1c = 0; *(uint32_t*)0x20000e20 = 4; *(uint32_t*)0x20000e24 = 2; *(uint32_t*)0x20000e28 = 9; *(uint32_t*)0x20000e2c = 2; *(uint32_t*)0x20000e30 = 3; *(uint32_t*)0x20000e34 = 0xffffff0b; *(uint32_t*)0x20000e38 = 0x65; *(uint32_t*)0x20000e3c = 5; *(uint32_t*)0x20000e40 = 7; *(uint16_t*)0x20000e44 = 0x404; *(uint16_t*)0x20000e46 = 2; *(uint32_t*)0x20000e48 = 3; *(uint32_t*)0x20000e4c = 4; *(uint32_t*)0x20000e50 = 0x10001; *(uint32_t*)0x20000e54 = 0xbb; *(uint32_t*)0x20000e58 = 9; *(uint32_t*)0x20000e5c = -1; *(uint32_t*)0x20000e60 = 6; *(uint32_t*)0x20000e64 = 4; *(uint32_t*)0x20000e68 = 0x400; *(uint32_t*)0x20000e6c = 4; *(uint32_t*)0x20000e70 = 3; *(uint32_t*)0x20000e74 = 3; *(uint32_t*)0x20000e78 = 9; *(uint32_t*)0x20000e7c = 0; *(uint32_t*)0x20000e80 = 4; *(uint32_t*)0x20000e84 = 0x7fff; *(uint32_t*)0x20000e88 = 5; *(uint32_t*)0x20000e8c = 4; *(uint32_t*)0x20000e90 = 5; *(uint32_t*)0x20000e94 = 0xd627; *(uint32_t*)0x20000e98 = 0xbe10; *(uint32_t*)0x20000e9c = 2; *(uint32_t*)0x20000ea0 = 0x401; *(uint32_t*)0x20000ea4 = 0x1a5; *(uint32_t*)0x20000ea8 = 1; *(uint32_t*)0x20000eac = 0x200; *(uint32_t*)0x20000eb0 = 7; *(uint32_t*)0x20000eb4 = 0; *(uint32_t*)0x20000eb8 = 0x80000000; *(uint32_t*)0x20000ebc = 0; *(uint32_t*)0x20000ec0 = -1; *(uint32_t*)0x20000ec4 = 0xae0a; *(uint32_t*)0x20000ec8 = 1; *(uint32_t*)0x20000ecc = 0x7fffffff; *(uint32_t*)0x20000ed0 = 0x7f; *(uint32_t*)0x20000ed4 = 0; *(uint32_t*)0x20000ed8 = 0x3f; *(uint32_t*)0x20000edc = 0xffff; *(uint32_t*)0x20000ee0 = 0x24a; *(uint32_t*)0x20000ee4 = 0; *(uint32_t*)0x20000ee8 = 0x61; *(uint32_t*)0x20000eec = -1; *(uint32_t*)0x20000ef0 = 0x163; *(uint32_t*)0x20000ef4 = 0x8001; *(uint32_t*)0x20000ef8 = 0x1000; *(uint32_t*)0x20000efc = 9; *(uint32_t*)0x20000f00 = 4; *(uint32_t*)0x20000f04 = 7; *(uint32_t*)0x20000f08 = 3; *(uint32_t*)0x20000f0c = 4; *(uint32_t*)0x20000f10 = 4; *(uint32_t*)0x20000f14 = 5; *(uint32_t*)0x20000f18 = 0x9acb; *(uint32_t*)0x20000f1c = 0; *(uint32_t*)0x20000f20 = 0x1f; *(uint32_t*)0x20000f24 = 1; *(uint32_t*)0x20000f28 = 0x28c; *(uint32_t*)0x20000f2c = 4; *(uint32_t*)0x20000f30 = 0x9ecb; *(uint32_t*)0x20000f34 = 5; *(uint32_t*)0x20000f38 = 0x7fff; *(uint32_t*)0x20000f3c = 0x800; *(uint32_t*)0x20000f40 = 7; *(uint32_t*)0x20000f44 = 0x7fffffff; *(uint32_t*)0x20000f48 = 0x7fd3; *(uint32_t*)0x20000f4c = 5; *(uint32_t*)0x20000f50 = 0; *(uint32_t*)0x20000f54 = 0xc048; *(uint32_t*)0x20000f58 = 5; *(uint32_t*)0x20000f5c = 4; *(uint32_t*)0x20000f60 = 0xb43; *(uint32_t*)0x20000f64 = 0x4f6; *(uint32_t*)0x20000f68 = 0xfff; *(uint32_t*)0x20000f6c = 4; *(uint32_t*)0x20000f70 = 0x100; *(uint32_t*)0x20000f74 = 0x1000; *(uint32_t*)0x20000f78 = 0; *(uint32_t*)0x20000f7c = 3; *(uint32_t*)0x20000f80 = 0x2b; *(uint32_t*)0x20000f84 = 0x80000000; *(uint32_t*)0x20000f88 = 0xb7cf; *(uint32_t*)0x20000f8c = 4; *(uint32_t*)0x20000f90 = 0x80; *(uint32_t*)0x20000f94 = 0x40; *(uint32_t*)0x20000f98 = 7; *(uint32_t*)0x20000f9c = 2; *(uint32_t*)0x20000fa0 = 5; *(uint32_t*)0x20000fa4 = 4; *(uint32_t*)0x20000fa8 = 9; *(uint32_t*)0x20000fac = 0x800; *(uint32_t*)0x20000fb0 = 4; *(uint32_t*)0x20000fb4 = 0x40; *(uint32_t*)0x20000fb8 = 0; *(uint32_t*)0x20000fbc = 0x1000; *(uint32_t*)0x20000fc0 = 3; *(uint32_t*)0x20000fc4 = 0x8000; *(uint32_t*)0x20000fc8 = 0x80; *(uint32_t*)0x20000fcc = 9; *(uint32_t*)0x20000fd0 = 3; *(uint32_t*)0x20000fd4 = 0x7ff; *(uint32_t*)0x20000fd8 = 4; *(uint32_t*)0x20000fdc = 0xff; *(uint32_t*)0x20000fe0 = 0x5dd04ef1; *(uint32_t*)0x20000fe4 = 2; *(uint32_t*)0x20000fe8 = 0xd61c; *(uint32_t*)0x20000fec = 0xd1; *(uint32_t*)0x20000ff0 = 0; *(uint32_t*)0x20000ff4 = 0xc2d4; *(uint32_t*)0x20000ff8 = 0x214; *(uint32_t*)0x20000ffc = 0; *(uint32_t*)0x20001000 = 0xc7b6; *(uint32_t*)0x20001004 = 0x7ff; *(uint32_t*)0x20001008 = 9; *(uint32_t*)0x2000100c = 0xffff; *(uint32_t*)0x20001010 = 0x5004; *(uint32_t*)0x20001014 = 6; *(uint32_t*)0x20001018 = 5; *(uint32_t*)0x2000101c = 5; *(uint32_t*)0x20001020 = 7; *(uint32_t*)0x20001024 = 0x2f12; *(uint32_t*)0x20001028 = 4; *(uint32_t*)0x2000102c = 0x81; *(uint32_t*)0x20001030 = 0x1f; *(uint32_t*)0x20001034 = 0x4b; *(uint32_t*)0x20001038 = 0; *(uint32_t*)0x2000103c = 1; *(uint32_t*)0x20001040 = 0x90; *(uint32_t*)0x20001044 = 0x80000001; *(uint32_t*)0x20001048 = 6; *(uint32_t*)0x2000104c = 4; *(uint32_t*)0x20001050 = 0x53d; *(uint32_t*)0x20001054 = 0x7f; *(uint32_t*)0x20001058 = 0x2a8; *(uint32_t*)0x2000105c = 0xfffffff9; *(uint32_t*)0x20001060 = 0x3ff; *(uint32_t*)0x20001064 = 7; *(uint32_t*)0x20001068 = 3; *(uint32_t*)0x2000106c = 1; *(uint32_t*)0x20001070 = 0xfffffbff; *(uint32_t*)0x20001074 = 1; *(uint32_t*)0x20001078 = 2; *(uint32_t*)0x2000107c = 1; *(uint32_t*)0x20001080 = 4; *(uint32_t*)0x20001084 = 3; *(uint32_t*)0x20001088 = 1; *(uint32_t*)0x2000108c = 5; *(uint32_t*)0x20001090 = 0x80000000; *(uint32_t*)0x20001094 = 0x7cb64aa3; *(uint32_t*)0x20001098 = 2; *(uint32_t*)0x2000109c = 5; *(uint32_t*)0x200010a0 = 2; *(uint32_t*)0x200010a4 = 0x350; *(uint32_t*)0x200010a8 = 0x97; *(uint32_t*)0x200010ac = 0; *(uint32_t*)0x200010b0 = 1; *(uint32_t*)0x200010b4 = 2; *(uint32_t*)0x200010b8 = 0xfffffffc; *(uint32_t*)0x200010bc = 0xfffffffe; *(uint32_t*)0x200010c0 = 4; *(uint32_t*)0x200010c4 = 0x100; *(uint32_t*)0x200010c8 = 0x1ff; *(uint32_t*)0x200010cc = 0x7fffffff; *(uint32_t*)0x200010d0 = 0; *(uint32_t*)0x200010d4 = 0x72c; *(uint32_t*)0x200010d8 = 9; *(uint32_t*)0x200010dc = 0xe186; *(uint32_t*)0x200010e0 = 6; *(uint32_t*)0x200010e4 = 7; *(uint32_t*)0x200010e8 = 1; *(uint32_t*)0x200010ec = 7; *(uint32_t*)0x200010f0 = 0; *(uint32_t*)0x200010f4 = 0x1000; *(uint32_t*)0x200010f8 = 0x80000000; *(uint32_t*)0x200010fc = 0x7fff; *(uint32_t*)0x20001100 = 6; *(uint32_t*)0x20001104 = 0x84; *(uint32_t*)0x20001108 = 4; *(uint32_t*)0x2000110c = 9; *(uint32_t*)0x20001110 = 0x7ff; *(uint32_t*)0x20001114 = 0xfffffa12; *(uint32_t*)0x20001118 = 4; *(uint32_t*)0x2000111c = 0x10001; *(uint32_t*)0x20001120 = 4; *(uint32_t*)0x20001124 = 8; *(uint32_t*)0x20001128 = 6; *(uint32_t*)0x2000112c = 0xffffffcf; *(uint32_t*)0x20001130 = 8; *(uint32_t*)0x20001134 = 4; *(uint32_t*)0x20001138 = 5; *(uint32_t*)0x2000113c = 4; *(uint32_t*)0x20001140 = 0x249; *(uint32_t*)0x20001144 = 6; *(uint32_t*)0x20001148 = 8; *(uint32_t*)0x2000114c = 9; *(uint32_t*)0x20001150 = 3; *(uint32_t*)0x20001154 = 5; *(uint32_t*)0x20001158 = 6; *(uint32_t*)0x2000115c = 0x7f; *(uint32_t*)0x20001160 = 0x200; *(uint32_t*)0x20001164 = 5; *(uint32_t*)0x20001168 = 2; *(uint32_t*)0x2000116c = 0x40; *(uint32_t*)0x20001170 = 0; *(uint32_t*)0x20001174 = 0x80; *(uint32_t*)0x20001178 = -1; *(uint32_t*)0x2000117c = 0x800; *(uint32_t*)0x20001180 = 0x7fffffff; *(uint32_t*)0x20001184 = 0x522; *(uint32_t*)0x20001188 = 3; *(uint32_t*)0x2000118c = 6; *(uint32_t*)0x20001190 = 0xffffff8d; *(uint32_t*)0x20001194 = 0x1ff; *(uint32_t*)0x20001198 = 0; *(uint32_t*)0x2000119c = 0x101; *(uint32_t*)0x200011a0 = 0xfff; *(uint32_t*)0x200011a4 = 0x81; *(uint32_t*)0x200011a8 = 4; *(uint32_t*)0x200011ac = 0x3cfe4ba5; *(uint32_t*)0x200011b0 = 2; *(uint32_t*)0x200011b4 = 0x491; *(uint32_t*)0x200011b8 = 0xff; *(uint32_t*)0x200011bc = 0x1ff; *(uint32_t*)0x200011c0 = 4; *(uint32_t*)0x200011c4 = 2; *(uint32_t*)0x200011c8 = 8; *(uint32_t*)0x200011cc = 1; *(uint32_t*)0x200011d0 = 0x56e4; *(uint32_t*)0x200011d4 = 3; *(uint32_t*)0x200011d8 = 0; *(uint32_t*)0x200011dc = 0xffffff49; *(uint32_t*)0x200011e0 = 0x200; *(uint32_t*)0x200011e4 = 0x79c8; *(uint32_t*)0x200011e8 = 8; *(uint32_t*)0x200011ec = 8; *(uint32_t*)0x200011f0 = 4; *(uint32_t*)0x200011f4 = 4; *(uint32_t*)0x200011f8 = 4; *(uint32_t*)0x200011fc = 0; *(uint32_t*)0x20001200 = 0; *(uint32_t*)0x20001204 = 0x7c96; *(uint32_t*)0x20001208 = 0x101; *(uint32_t*)0x2000120c = 7; *(uint32_t*)0x20001210 = 0; *(uint32_t*)0x20001214 = 0x574fc753; *(uint32_t*)0x20001218 = 4; *(uint32_t*)0x2000121c = 0x697b; *(uint32_t*)0x20001220 = 0x101; *(uint32_t*)0x20001224 = 0x800; *(uint32_t*)0x20001228 = 0x800; *(uint32_t*)0x2000122c = 9; *(uint32_t*)0x20001230 = 4; *(uint32_t*)0x20001234 = 0xd6b; *(uint32_t*)0x20001238 = 0; *(uint32_t*)0x2000123c = 0x8001; *(uint32_t*)0x20001240 = 0; *(uint32_t*)0x20001244 = 0x132; *(uint64_t*)0x20000188 = 0xc88; *(uint64_t*)0x20000318 = 1; *(uint64_t*)0x20000320 = 0; *(uint64_t*)0x20000328 = 0; *(uint32_t*)0x20000330 = 0; syscall(__NR_sendmsg, -1, 0x20000300ul, 0ul); res = syscall(__NR_socket, 0x1000000010ul, 0x80002ul, 0); if (res != -1) r[2] = res; syscall(__NR_sendmmsg, r[2], 0x20000200ul, 0x4924924924926d3ul, 0ul); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); do_sandbox_none(); return 0; }