// https://syzkaller.appspot.com/bug?id=e4ffb8b46d363add6bfda13799cc0b0f81af4b60 // 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], 0x200002c0ul, 0x20000200ul); if (res != -1) r[1] = *(uint32_t*)0x200002c4; *(uint64_t*)0x20000240 = 0; *(uint32_t*)0x20000248 = 0; *(uint64_t*)0x20000250 = 0x20000140; *(uint64_t*)0x20000140 = 0x200004c0; memcpy((void*)0x200004c0, "\x38\x00\x00\x00\x24\x00\xff\xff\xdf\x7f\x00\x00" "\x00\x00\x3c\x00\x05\x00\x00\x00", 20); *(uint32_t*)0x200004d4 = r[1]; memcpy((void*)0x200004d8, "\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*)0x20000380 = 0; *(uint32_t*)0x20000388 = 0; *(uint64_t*)0x20000390 = 0x20000180; *(uint64_t*)0x20000180 = 0x20000680; *(uint32_t*)0x20000680 = 0xcec; *(uint16_t*)0x20000684 = 0x2c; *(uint16_t*)0x20000686 = 0xd27; *(uint32_t*)0x20000688 = 0; *(uint32_t*)0x2000068c = 0; *(uint8_t*)0x20000690 = 0; *(uint8_t*)0x20000691 = 0; *(uint16_t*)0x20000692 = 0; *(uint32_t*)0x20000694 = r[1]; *(uint16_t*)0x20000698 = 0xfff7; *(uint16_t*)0x2000069a = 0; *(uint16_t*)0x2000069c = 0; *(uint16_t*)0x2000069e = 0; *(uint16_t*)0x200006a0 = 0xe; *(uint16_t*)0x200006a2 = 0; *(uint16_t*)0x200006a4 = 7; *(uint16_t*)0x200006a6 = 1; memcpy((void*)0x200006a8, "fw\000", 3); *(uint16_t*)0x200006ac = 0xcc0; *(uint16_t*)0x200006ae = 2; *(uint16_t*)0x200006b0 = 8; *(uint16_t*)0x200006b2 = 5; *(uint32_t*)0x200006b4 = 0xab; *(uint16_t*)0x200006b8 = 0x54; *(uint16_t*)0x200006ba = 2; *(uint16_t*)0x200006bc = 0xc; *(uint16_t*)0x200006be = 8; *(uint64_t*)0x200006c0 = 0; *(uint16_t*)0x200006c8 = 0x3c; *(uint16_t*)0x200006ca = 1; *(uint32_t*)0x200006cc = 0x20; *(uint32_t*)0x200006d0 = 0; *(uint32_t*)0x200006d4 = 0xe4; *(uint32_t*)0x200006d8 = 5; *(uint32_t*)0x200006dc = 0x81; *(uint8_t*)0x200006e0 = 9; *(uint8_t*)0x200006e1 = 0; *(uint16_t*)0x200006e2 = 0x75; *(uint16_t*)0x200006e4 = 0xc6b; *(uint16_t*)0x200006e6 = 0; *(uint32_t*)0x200006e8 = 7; *(uint8_t*)0x200006ec = 1; *(uint8_t*)0x200006ed = 1; *(uint16_t*)0x200006ee = 0x1ff; *(uint16_t*)0x200006f0 = 0x823d; *(uint16_t*)0x200006f2 = 0x9b3; *(uint32_t*)0x200006f4 = 0x4dfe; *(uint32_t*)0x200006f8 = 0x101; *(uint32_t*)0x200006fc = 8; *(uint32_t*)0x20000700 = 0xfffffff7; *(uint16_t*)0x20000704 = 8; *(uint16_t*)0x20000706 = 5; *(uint32_t*)0x20000708 = 0x10001; *(uint16_t*)0x2000070c = 0xc58; *(uint16_t*)0x2000070e = 2; *(uint16_t*)0x20000710 = 0x404; *(uint16_t*)0x20000712 = 3; *(uint32_t*)0x20000714 = 8; *(uint32_t*)0x20000718 = 0xa28; *(uint32_t*)0x2000071c = 0x5c1; *(uint32_t*)0x20000720 = 3; *(uint32_t*)0x20000724 = 0xfff; *(uint32_t*)0x20000728 = 0x113c515b; *(uint32_t*)0x2000072c = 4; *(uint32_t*)0x20000730 = 8; *(uint32_t*)0x20000734 = 0x8001; *(uint32_t*)0x20000738 = 0x7fffffff; *(uint32_t*)0x2000073c = 0x6cf76719; *(uint32_t*)0x20000740 = 0x10001; *(uint32_t*)0x20000744 = 0x100; *(uint32_t*)0x20000748 = 4; *(uint32_t*)0x2000074c = 0xff; *(uint32_t*)0x20000750 = 3; *(uint32_t*)0x20000754 = 0x1ff; *(uint32_t*)0x20000758 = 7; *(uint32_t*)0x2000075c = 6; *(uint32_t*)0x20000760 = 0; *(uint32_t*)0x20000764 = 5; *(uint32_t*)0x20000768 = 7; *(uint32_t*)0x2000076c = 0x44; *(uint32_t*)0x20000770 = 2; *(uint32_t*)0x20000774 = 0x400; *(uint32_t*)0x20000778 = 2; *(uint32_t*)0x2000077c = 0xfff; *(uint32_t*)0x20000780 = 2; *(uint32_t*)0x20000784 = 0xfffffffb; *(uint32_t*)0x20000788 = 0x8000; *(uint32_t*)0x2000078c = 6; *(uint32_t*)0x20000790 = 5; *(uint32_t*)0x20000794 = 0x1f; *(uint32_t*)0x20000798 = 0x80000000; *(uint32_t*)0x2000079c = 3; *(uint32_t*)0x200007a0 = 0xfffff801; *(uint32_t*)0x200007a4 = 6; *(uint32_t*)0x200007a8 = 8; *(uint32_t*)0x200007ac = 2; *(uint32_t*)0x200007b0 = 0x80000000; *(uint32_t*)0x200007b4 = 0xfffffbff; *(uint32_t*)0x200007b8 = 0xa8; *(uint32_t*)0x200007bc = 0x800; *(uint32_t*)0x200007c0 = 7; *(uint32_t*)0x200007c4 = 0x1ff; *(uint32_t*)0x200007c8 = 3; *(uint32_t*)0x200007cc = 3; *(uint32_t*)0x200007d0 = 0x434; *(uint32_t*)0x200007d4 = 0x8c73; *(uint32_t*)0x200007d8 = 1; *(uint32_t*)0x200007dc = 0xfffffffd; *(uint32_t*)0x200007e0 = 0; *(uint32_t*)0x200007e4 = 0xd9; *(uint32_t*)0x200007e8 = 4; *(uint32_t*)0x200007ec = 0xd69; *(uint32_t*)0x200007f0 = 0x80000001; *(uint32_t*)0x200007f4 = 0x251; *(uint32_t*)0x200007f8 = 0xaa20; *(uint32_t*)0x200007fc = 5; *(uint32_t*)0x20000800 = 9; *(uint32_t*)0x20000804 = 5; *(uint32_t*)0x20000808 = 4; *(uint32_t*)0x2000080c = 2; *(uint32_t*)0x20000810 = 0x8001; *(uint32_t*)0x20000814 = 1; *(uint32_t*)0x20000818 = 5; *(uint32_t*)0x2000081c = -1; *(uint32_t*)0x20000820 = 1; *(uint32_t*)0x20000824 = 0x8001; *(uint32_t*)0x20000828 = 5; *(uint32_t*)0x2000082c = 0xd0e0; *(uint32_t*)0x20000830 = 8; *(uint32_t*)0x20000834 = 0; *(uint32_t*)0x20000838 = 0xfffffff8; *(uint32_t*)0x2000083c = -1; *(uint32_t*)0x20000840 = 2; *(uint32_t*)0x20000844 = 0x88; *(uint32_t*)0x20000848 = 9; *(uint32_t*)0x2000084c = 7; *(uint32_t*)0x20000850 = 0; *(uint32_t*)0x20000854 = 1; *(uint32_t*)0x20000858 = 0x63; *(uint32_t*)0x2000085c = 0x7ff; *(uint32_t*)0x20000860 = 0; *(uint32_t*)0x20000864 = 0x1000; *(uint32_t*)0x20000868 = 6; *(uint32_t*)0x2000086c = 0x6c0; *(uint32_t*)0x20000870 = 2; *(uint32_t*)0x20000874 = 3; *(uint32_t*)0x20000878 = 4; *(uint32_t*)0x2000087c = 3; *(uint32_t*)0x20000880 = 8; *(uint32_t*)0x20000884 = 2; *(uint32_t*)0x20000888 = 0x200; *(uint32_t*)0x2000088c = 0x80000000; *(uint32_t*)0x20000890 = 5; *(uint32_t*)0x20000894 = 2; *(uint32_t*)0x20000898 = 0xa4d; *(uint32_t*)0x2000089c = 0x1000; *(uint32_t*)0x200008a0 = 0x8cb; *(uint32_t*)0x200008a4 = 0x3ff; *(uint32_t*)0x200008a8 = 7; *(uint32_t*)0x200008ac = 1; *(uint32_t*)0x200008b0 = 0xffff; *(uint32_t*)0x200008b4 = 0x232; *(uint32_t*)0x200008b8 = 6; *(uint32_t*)0x200008bc = 7; *(uint32_t*)0x200008c0 = 0x7fff; *(uint32_t*)0x200008c4 = 0x5dba8c29; *(uint32_t*)0x200008c8 = 7; *(uint32_t*)0x200008cc = 5; *(uint32_t*)0x200008d0 = 5; *(uint32_t*)0x200008d4 = 8; *(uint32_t*)0x200008d8 = 4; *(uint32_t*)0x200008dc = 0x7f; *(uint32_t*)0x200008e0 = 1; *(uint32_t*)0x200008e4 = 0x80; *(uint32_t*)0x200008e8 = 3; *(uint32_t*)0x200008ec = 8; *(uint32_t*)0x200008f0 = 2; *(uint32_t*)0x200008f4 = 5; *(uint32_t*)0x200008f8 = 0x80000000; *(uint32_t*)0x200008fc = 5; *(uint32_t*)0x20000900 = 8; *(uint32_t*)0x20000904 = 0x8001; *(uint32_t*)0x20000908 = 6; *(uint32_t*)0x2000090c = 0; *(uint32_t*)0x20000910 = 7; *(uint32_t*)0x20000914 = 7; *(uint32_t*)0x20000918 = 7; *(uint32_t*)0x2000091c = 0x40; *(uint32_t*)0x20000920 = 0x604; *(uint32_t*)0x20000924 = 0x81; *(uint32_t*)0x20000928 = 0x800; *(uint32_t*)0x2000092c = 0x2b; *(uint32_t*)0x20000930 = 7; *(uint32_t*)0x20000934 = 0x7ff; *(uint32_t*)0x20000938 = 8; *(uint32_t*)0x2000093c = 0x7ff; *(uint32_t*)0x20000940 = 8; *(uint32_t*)0x20000944 = 0x80; *(uint32_t*)0x20000948 = 1; *(uint32_t*)0x2000094c = 3; *(uint32_t*)0x20000950 = 0xa84; *(uint32_t*)0x20000954 = 1; *(uint32_t*)0x20000958 = 0xbf2e; *(uint32_t*)0x2000095c = 0x3ff; *(uint32_t*)0x20000960 = 0x7fff; *(uint32_t*)0x20000964 = 3; *(uint32_t*)0x20000968 = 1; *(uint32_t*)0x2000096c = 0x7f; *(uint32_t*)0x20000970 = 7; *(uint32_t*)0x20000974 = 0x4200; *(uint32_t*)0x20000978 = 0x7f6; *(uint32_t*)0x2000097c = 5; *(uint32_t*)0x20000980 = 0x7ff; *(uint32_t*)0x20000984 = 4; *(uint32_t*)0x20000988 = 0x8000; *(uint32_t*)0x2000098c = 0xd20; *(uint32_t*)0x20000990 = 8; *(uint32_t*)0x20000994 = 0xcd; *(uint32_t*)0x20000998 = 3; *(uint32_t*)0x2000099c = 9; *(uint32_t*)0x200009a0 = 0xdca8; *(uint32_t*)0x200009a4 = 0x3ff; *(uint32_t*)0x200009a8 = 4; *(uint32_t*)0x200009ac = 2; *(uint32_t*)0x200009b0 = 0; *(uint32_t*)0x200009b4 = 9; *(uint32_t*)0x200009b8 = 0xf; *(uint32_t*)0x200009bc = 0x6ef; *(uint32_t*)0x200009c0 = 0x200; *(uint32_t*)0x200009c4 = 0x20; *(uint32_t*)0x200009c8 = 0xff; *(uint32_t*)0x200009cc = 0; *(uint32_t*)0x200009d0 = 3; *(uint32_t*)0x200009d4 = 0xfffffffd; *(uint32_t*)0x200009d8 = 0x80000000; *(uint32_t*)0x200009dc = 0x9cbb; *(uint32_t*)0x200009e0 = 4; *(uint32_t*)0x200009e4 = 0x58c6; *(uint32_t*)0x200009e8 = 0x401; *(uint32_t*)0x200009ec = 1; *(uint32_t*)0x200009f0 = 0xff; *(uint32_t*)0x200009f4 = 0x5eb; *(uint32_t*)0x200009f8 = 0xfff; *(uint32_t*)0x200009fc = 1; *(uint32_t*)0x20000a00 = 0x400; *(uint32_t*)0x20000a04 = 4; *(uint32_t*)0x20000a08 = 7; *(uint32_t*)0x20000a0c = 0xfffffc00; *(uint32_t*)0x20000a10 = 1; *(uint32_t*)0x20000a14 = 0x800; *(uint32_t*)0x20000a18 = 8; *(uint32_t*)0x20000a1c = 0; *(uint32_t*)0x20000a20 = 0x40; *(uint32_t*)0x20000a24 = 9; *(uint32_t*)0x20000a28 = -1; *(uint32_t*)0x20000a2c = 0x101; *(uint32_t*)0x20000a30 = 0x16c; *(uint32_t*)0x20000a34 = 7; *(uint32_t*)0x20000a38 = 0xffff; *(uint32_t*)0x20000a3c = 0x81; *(uint32_t*)0x20000a40 = 0; *(uint32_t*)0x20000a44 = 0xffff; *(uint32_t*)0x20000a48 = 2; *(uint32_t*)0x20000a4c = 0xae0d; *(uint32_t*)0x20000a50 = 0x1ff; *(uint32_t*)0x20000a54 = 1; *(uint32_t*)0x20000a58 = 9; *(uint32_t*)0x20000a5c = 0xce; *(uint32_t*)0x20000a60 = 0xf808; *(uint32_t*)0x20000a64 = 7; *(uint32_t*)0x20000a68 = 8; *(uint32_t*)0x20000a6c = 0x10da; *(uint32_t*)0x20000a70 = 7; *(uint32_t*)0x20000a74 = 9; *(uint32_t*)0x20000a78 = 0x80000001; *(uint32_t*)0x20000a7c = 0x1000; *(uint32_t*)0x20000a80 = 0x100; *(uint32_t*)0x20000a84 = -1; *(uint32_t*)0x20000a88 = 0xfffff585; *(uint32_t*)0x20000a8c = 9; *(uint32_t*)0x20000a90 = 0; *(uint32_t*)0x20000a94 = 8; *(uint32_t*)0x20000a98 = 0x20; *(uint32_t*)0x20000a9c = 0xffff0001; *(uint32_t*)0x20000aa0 = 0x7a; *(uint32_t*)0x20000aa4 = 0; *(uint32_t*)0x20000aa8 = 0xcf8; *(uint32_t*)0x20000aac = 0x3b36; *(uint32_t*)0x20000ab0 = 0xd75a; *(uint32_t*)0x20000ab4 = 8; *(uint32_t*)0x20000ab8 = 0; *(uint32_t*)0x20000abc = 4; *(uint32_t*)0x20000ac0 = 0x400000; *(uint32_t*)0x20000ac4 = 0x1ff; *(uint32_t*)0x20000ac8 = 0x800; *(uint32_t*)0x20000acc = 8; *(uint32_t*)0x20000ad0 = 0; *(uint32_t*)0x20000ad4 = 0x129f8000; *(uint32_t*)0x20000ad8 = 7; *(uint32_t*)0x20000adc = 8; *(uint32_t*)0x20000ae0 = 0; *(uint32_t*)0x20000ae4 = 6; *(uint32_t*)0x20000ae8 = 1; *(uint32_t*)0x20000aec = 0x200; *(uint32_t*)0x20000af0 = 3; *(uint32_t*)0x20000af4 = 0xc40; *(uint32_t*)0x20000af8 = 2; *(uint32_t*)0x20000afc = 0x10001; *(uint32_t*)0x20000b00 = 7; *(uint32_t*)0x20000b04 = 8; *(uint32_t*)0x20000b08 = 0x7ff; *(uint32_t*)0x20000b0c = 0; *(uint32_t*)0x20000b10 = 4; *(uint16_t*)0x20000b14 = 0x3c; *(uint16_t*)0x20000b16 = 1; *(uint32_t*)0x20000b18 = 6; *(uint32_t*)0x20000b1c = -1; *(uint32_t*)0x20000b20 = 7; *(uint32_t*)0x20000b24 = 6; *(uint32_t*)0x20000b28 = 8; *(uint8_t*)0x20000b2c = 0x3a; *(uint8_t*)0x20000b2d = 0; *(uint16_t*)0x20000b2e = 4; *(uint16_t*)0x20000b30 = 6; *(uint16_t*)0x20000b32 = 3; *(uint32_t*)0x20000b34 = 6; *(uint8_t*)0x20000b38 = 4; *(uint8_t*)0x20000b39 = 1; *(uint16_t*)0x20000b3a = 0x3f; *(uint16_t*)0x20000b3c = 0x8001; *(uint16_t*)0x20000b3e = 3; *(uint32_t*)0x20000b40 = 0xf99f; *(uint32_t*)0x20000b44 = 6; *(uint32_t*)0x20000b48 = 3; *(uint32_t*)0x20000b4c = 3; *(uint16_t*)0x20000b50 = 0xc; *(uint16_t*)0x20000b52 = 8; *(uint64_t*)0x20000b54 = 0x80000000; *(uint16_t*)0x20000b5c = 0x404; *(uint16_t*)0x20000b5e = 3; *(uint32_t*)0x20000b60 = 0xffffff80; *(uint32_t*)0x20000b64 = 4; *(uint32_t*)0x20000b68 = 9; *(uint32_t*)0x20000b6c = 2; *(uint32_t*)0x20000b70 = 0x10000; *(uint32_t*)0x20000b74 = 8; *(uint32_t*)0x20000b78 = 0xffffff00; *(uint32_t*)0x20000b7c = 0x1000; *(uint32_t*)0x20000b80 = 0x80; *(uint32_t*)0x20000b84 = 0; *(uint32_t*)0x20000b88 = 7; *(uint32_t*)0x20000b8c = 9; *(uint32_t*)0x20000b90 = 0xd340; *(uint32_t*)0x20000b94 = 0x400; *(uint32_t*)0x20000b98 = 9; *(uint32_t*)0x20000b9c = 3; *(uint32_t*)0x20000ba0 = 1; *(uint32_t*)0x20000ba4 = 0; *(uint32_t*)0x20000ba8 = 1; *(uint32_t*)0x20000bac = 2; *(uint32_t*)0x20000bb0 = 9; *(uint32_t*)0x20000bb4 = 0x80000000; *(uint32_t*)0x20000bb8 = 0x8000; *(uint32_t*)0x20000bbc = 4; *(uint32_t*)0x20000bc0 = 0x99; *(uint32_t*)0x20000bc4 = 3; *(uint32_t*)0x20000bc8 = 8; *(uint32_t*)0x20000bcc = 7; *(uint32_t*)0x20000bd0 = 0x20; *(uint32_t*)0x20000bd4 = 2; *(uint32_t*)0x20000bd8 = 0xfffffff7; *(uint32_t*)0x20000bdc = 4; *(uint32_t*)0x20000be0 = 0x401; *(uint32_t*)0x20000be4 = 0x77cb; *(uint32_t*)0x20000be8 = 0xe5; *(uint32_t*)0x20000bec = 6; *(uint32_t*)0x20000bf0 = 4; *(uint32_t*)0x20000bf4 = -1; *(uint32_t*)0x20000bf8 = 0x200; *(uint32_t*)0x20000bfc = 2; *(uint32_t*)0x20000c00 = 0xfffffffb; *(uint32_t*)0x20000c04 = 1; *(uint32_t*)0x20000c08 = 0x1ff; *(uint32_t*)0x20000c0c = 6; *(uint32_t*)0x20000c10 = 3; *(uint32_t*)0x20000c14 = 2; *(uint32_t*)0x20000c18 = 8; *(uint32_t*)0x20000c1c = 7; *(uint32_t*)0x20000c20 = 6; *(uint32_t*)0x20000c24 = 0x118; *(uint32_t*)0x20000c28 = 2; *(uint32_t*)0x20000c2c = 0xfffffffd; *(uint32_t*)0x20000c30 = 0xff; *(uint32_t*)0x20000c34 = 1; *(uint32_t*)0x20000c38 = 0x2ee0; *(uint32_t*)0x20000c3c = 0; *(uint32_t*)0x20000c40 = 0xfffff000; *(uint32_t*)0x20000c44 = 8; *(uint32_t*)0x20000c48 = 0xd1; *(uint32_t*)0x20000c4c = 0x18a; *(uint32_t*)0x20000c50 = 8; *(uint32_t*)0x20000c54 = 0xfffffffd; *(uint32_t*)0x20000c58 = 7; *(uint32_t*)0x20000c5c = 8; *(uint32_t*)0x20000c60 = 8; *(uint32_t*)0x20000c64 = 0xff; *(uint32_t*)0x20000c68 = 8; *(uint32_t*)0x20000c6c = 0; *(uint32_t*)0x20000c70 = 0x200; *(uint32_t*)0x20000c74 = 0x5acd; *(uint32_t*)0x20000c78 = 0x1000; *(uint32_t*)0x20000c7c = 2; *(uint32_t*)0x20000c80 = 0x7fffffff; *(uint32_t*)0x20000c84 = 1; *(uint32_t*)0x20000c88 = 0xf38; *(uint32_t*)0x20000c8c = 2; *(uint32_t*)0x20000c90 = 0xffffffe0; *(uint32_t*)0x20000c94 = 8; *(uint32_t*)0x20000c98 = 1; *(uint32_t*)0x20000c9c = 0x40; *(uint32_t*)0x20000ca0 = 0x76c; *(uint32_t*)0x20000ca4 = 1; *(uint32_t*)0x20000ca8 = 2; *(uint32_t*)0x20000cac = 0; *(uint32_t*)0x20000cb0 = 1; *(uint32_t*)0x20000cb4 = 8; *(uint32_t*)0x20000cb8 = 0x720; *(uint32_t*)0x20000cbc = 6; *(uint32_t*)0x20000cc0 = 5; *(uint32_t*)0x20000cc4 = 0x401; *(uint32_t*)0x20000cc8 = 0x81; *(uint32_t*)0x20000ccc = -1; *(uint32_t*)0x20000cd0 = 1; *(uint32_t*)0x20000cd4 = 0x60; *(uint32_t*)0x20000cd8 = 4; *(uint32_t*)0x20000cdc = 7; *(uint32_t*)0x20000ce0 = 0x3ff; *(uint32_t*)0x20000ce4 = 7; *(uint32_t*)0x20000ce8 = 7; *(uint32_t*)0x20000cec = 4; *(uint32_t*)0x20000cf0 = 2; *(uint32_t*)0x20000cf4 = 0xfffff5b2; *(uint32_t*)0x20000cf8 = 5; *(uint32_t*)0x20000cfc = 0x60; *(uint32_t*)0x20000d00 = 5; *(uint32_t*)0x20000d04 = 2; *(uint32_t*)0x20000d08 = 0x8001; *(uint32_t*)0x20000d0c = 0xff; *(uint32_t*)0x20000d10 = 9; *(uint32_t*)0x20000d14 = 0; *(uint32_t*)0x20000d18 = 9; *(uint32_t*)0x20000d1c = 0; *(uint32_t*)0x20000d20 = 9; *(uint32_t*)0x20000d24 = 0x6e6b; *(uint32_t*)0x20000d28 = 0; *(uint32_t*)0x20000d2c = 0x537a; *(uint32_t*)0x20000d30 = 0x820; *(uint32_t*)0x20000d34 = 2; *(uint32_t*)0x20000d38 = 0x92; *(uint32_t*)0x20000d3c = 3; *(uint32_t*)0x20000d40 = 8; *(uint32_t*)0x20000d44 = 6; *(uint32_t*)0x20000d48 = 6; *(uint32_t*)0x20000d4c = 0x40; *(uint32_t*)0x20000d50 = 0x92; *(uint32_t*)0x20000d54 = 9; *(uint32_t*)0x20000d58 = 4; *(uint32_t*)0x20000d5c = 0; *(uint32_t*)0x20000d60 = 8; *(uint32_t*)0x20000d64 = 0xfff; *(uint32_t*)0x20000d68 = 0x10001; *(uint32_t*)0x20000d6c = 1; *(uint32_t*)0x20000d70 = 0x80000001; *(uint32_t*)0x20000d74 = 4; *(uint32_t*)0x20000d78 = 0x400; *(uint32_t*)0x20000d7c = 0x57; *(uint32_t*)0x20000d80 = 0xacc6; *(uint32_t*)0x20000d84 = 0; *(uint32_t*)0x20000d88 = 3; *(uint32_t*)0x20000d8c = 4; *(uint32_t*)0x20000d90 = 4; *(uint32_t*)0x20000d94 = 0x80000000; *(uint32_t*)0x20000d98 = 0; *(uint32_t*)0x20000d9c = 8; *(uint32_t*)0x20000da0 = 0; *(uint32_t*)0x20000da4 = 0xb30; *(uint32_t*)0x20000da8 = 0x1f; *(uint32_t*)0x20000dac = 0xb7; *(uint32_t*)0x20000db0 = 0xffff0001; *(uint32_t*)0x20000db4 = 2; *(uint32_t*)0x20000db8 = 0xffffff00; *(uint32_t*)0x20000dbc = 0xfffffffe; *(uint32_t*)0x20000dc0 = 7; *(uint32_t*)0x20000dc4 = 0; *(uint32_t*)0x20000dc8 = 0x8001; *(uint32_t*)0x20000dcc = 3; *(uint32_t*)0x20000dd0 = 9; *(uint32_t*)0x20000dd4 = 1; *(uint32_t*)0x20000dd8 = 4; *(uint32_t*)0x20000ddc = 6; *(uint32_t*)0x20000de0 = 1; *(uint32_t*)0x20000de4 = 4; *(uint32_t*)0x20000de8 = 0; *(uint32_t*)0x20000dec = 0x2619; *(uint32_t*)0x20000df0 = 7; *(uint32_t*)0x20000df4 = 2; *(uint32_t*)0x20000df8 = 6; *(uint32_t*)0x20000dfc = 0; *(uint32_t*)0x20000e00 = 0x1e7; *(uint32_t*)0x20000e04 = 6; *(uint32_t*)0x20000e08 = 0xfffffa80; *(uint32_t*)0x20000e0c = 0xfffffffc; *(uint32_t*)0x20000e10 = 2; *(uint32_t*)0x20000e14 = 9; *(uint32_t*)0x20000e18 = 8; *(uint32_t*)0x20000e1c = 0x1e0; *(uint32_t*)0x20000e20 = 3; *(uint32_t*)0x20000e24 = 6; *(uint32_t*)0x20000e28 = 7; *(uint32_t*)0x20000e2c = 3; *(uint32_t*)0x20000e30 = 0x40; *(uint32_t*)0x20000e34 = 0x20; *(uint32_t*)0x20000e38 = 2; *(uint32_t*)0x20000e3c = 0x3ff; *(uint32_t*)0x20000e40 = 0; *(uint32_t*)0x20000e44 = 0xffff; *(uint32_t*)0x20000e48 = 8; *(uint32_t*)0x20000e4c = 0x101; *(uint32_t*)0x20000e50 = 3; *(uint32_t*)0x20000e54 = 0; *(uint32_t*)0x20000e58 = 0xfffffffa; *(uint32_t*)0x20000e5c = 0x20; *(uint32_t*)0x20000e60 = 0xffff8a02; *(uint32_t*)0x20000e64 = 3; *(uint32_t*)0x20000e68 = 0x8d1; *(uint32_t*)0x20000e6c = 3; *(uint32_t*)0x20000e70 = 0x6a9; *(uint32_t*)0x20000e74 = 5; *(uint32_t*)0x20000e78 = 0x8001; *(uint32_t*)0x20000e7c = 9; *(uint32_t*)0x20000e80 = 0xb84; *(uint32_t*)0x20000e84 = 0x20; *(uint32_t*)0x20000e88 = 0x40; *(uint32_t*)0x20000e8c = 8; *(uint32_t*)0x20000e90 = 0xffffff80; *(uint32_t*)0x20000e94 = 0; *(uint32_t*)0x20000e98 = 9; *(uint32_t*)0x20000e9c = 0x81; *(uint32_t*)0x20000ea0 = 1; *(uint32_t*)0x20000ea4 = 0; *(uint32_t*)0x20000ea8 = 0x200; *(uint32_t*)0x20000eac = 0xe5ae; *(uint32_t*)0x20000eb0 = 5; *(uint32_t*)0x20000eb4 = 5; *(uint32_t*)0x20000eb8 = 0x10000; *(uint32_t*)0x20000ebc = 9; *(uint32_t*)0x20000ec0 = 9; *(uint32_t*)0x20000ec4 = 8; *(uint32_t*)0x20000ec8 = 0x8d51; *(uint32_t*)0x20000ecc = 4; *(uint32_t*)0x20000ed0 = 3; *(uint32_t*)0x20000ed4 = 2; *(uint32_t*)0x20000ed8 = 0x194; *(uint32_t*)0x20000edc = 0xffffff7f; *(uint32_t*)0x20000ee0 = 5; *(uint32_t*)0x20000ee4 = 0x7fff; *(uint32_t*)0x20000ee8 = 7; *(uint32_t*)0x20000eec = 8; *(uint32_t*)0x20000ef0 = 9; *(uint32_t*)0x20000ef4 = 8; *(uint32_t*)0x20000ef8 = 8; *(uint32_t*)0x20000efc = 3; *(uint32_t*)0x20000f00 = 2; *(uint32_t*)0x20000f04 = 0; *(uint32_t*)0x20000f08 = 6; *(uint32_t*)0x20000f0c = 7; *(uint32_t*)0x20000f10 = 2; *(uint32_t*)0x20000f14 = 0x7fff; *(uint32_t*)0x20000f18 = 2; *(uint32_t*)0x20000f1c = 0x1ff; *(uint32_t*)0x20000f20 = 9; *(uint32_t*)0x20000f24 = 0xfffffffa; *(uint32_t*)0x20000f28 = 3; *(uint32_t*)0x20000f2c = 1; *(uint32_t*)0x20000f30 = 2; *(uint32_t*)0x20000f34 = 0; *(uint32_t*)0x20000f38 = 2; *(uint32_t*)0x20000f3c = 0x200; *(uint32_t*)0x20000f40 = 8; *(uint32_t*)0x20000f44 = 0x4d5c; *(uint32_t*)0x20000f48 = 0xb930; *(uint32_t*)0x20000f4c = 3; *(uint32_t*)0x20000f50 = 5; *(uint32_t*)0x20000f54 = 0x101; *(uint32_t*)0x20000f58 = 1; *(uint32_t*)0x20000f5c = 3; *(uint16_t*)0x20000f60 = 0x404; *(uint16_t*)0x20000f62 = 2; *(uint32_t*)0x20000f64 = 2; *(uint32_t*)0x20000f68 = 0xff; *(uint32_t*)0x20000f6c = 0x5452; *(uint32_t*)0x20000f70 = 0; *(uint32_t*)0x20000f74 = 0xc504; *(uint32_t*)0x20000f78 = 1; *(uint32_t*)0x20000f7c = 6; *(uint32_t*)0x20000f80 = 0; *(uint32_t*)0x20000f84 = 0x42; *(uint32_t*)0x20000f88 = 1; *(uint32_t*)0x20000f8c = 6; *(uint32_t*)0x20000f90 = 0x79cc; *(uint32_t*)0x20000f94 = 7; *(uint32_t*)0x20000f98 = 0; *(uint32_t*)0x20000f9c = 0x74c054f2; *(uint32_t*)0x20000fa0 = 2; *(uint32_t*)0x20000fa4 = 1; *(uint32_t*)0x20000fa8 = 7; *(uint32_t*)0x20000fac = 0x400; *(uint32_t*)0x20000fb0 = 8; *(uint32_t*)0x20000fb4 = 0xdda; *(uint32_t*)0x20000fb8 = 0x395; *(uint32_t*)0x20000fbc = 5; *(uint32_t*)0x20000fc0 = 7; *(uint32_t*)0x20000fc4 = 0x8000; *(uint32_t*)0x20000fc8 = 3; *(uint32_t*)0x20000fcc = 0x7fffffff; *(uint32_t*)0x20000fd0 = 0x449; *(uint32_t*)0x20000fd4 = 0xffff; *(uint32_t*)0x20000fd8 = 5; *(uint32_t*)0x20000fdc = 7; *(uint32_t*)0x20000fe0 = 7; *(uint32_t*)0x20000fe4 = 1; *(uint32_t*)0x20000fe8 = 6; *(uint32_t*)0x20000fec = 5; *(uint32_t*)0x20000ff0 = 8; *(uint32_t*)0x20000ff4 = 5; *(uint32_t*)0x20000ff8 = 5; *(uint32_t*)0x20000ffc = 0x10000; *(uint32_t*)0x20001000 = 0xf6; *(uint32_t*)0x20001004 = 1; *(uint32_t*)0x20001008 = 0x1000; *(uint32_t*)0x2000100c = 7; *(uint32_t*)0x20001010 = 8; *(uint32_t*)0x20001014 = 0xfffffffc; *(uint32_t*)0x20001018 = 0x100; *(uint32_t*)0x2000101c = 0xfffffffc; *(uint32_t*)0x20001020 = 0; *(uint32_t*)0x20001024 = 0xc5; *(uint32_t*)0x20001028 = 7; *(uint32_t*)0x2000102c = 5; *(uint32_t*)0x20001030 = 3; *(uint32_t*)0x20001034 = 2; *(uint32_t*)0x20001038 = 0xab34; *(uint32_t*)0x2000103c = 0x87c; *(uint32_t*)0x20001040 = 1; *(uint32_t*)0x20001044 = 0xd78; *(uint32_t*)0x20001048 = 0xfa; *(uint32_t*)0x2000104c = 0x3c0344fc; *(uint32_t*)0x20001050 = 7; *(uint32_t*)0x20001054 = 7; *(uint32_t*)0x20001058 = 6; *(uint32_t*)0x2000105c = 6; *(uint32_t*)0x20001060 = 1; *(uint32_t*)0x20001064 = 0x1f; *(uint32_t*)0x20001068 = 9; *(uint32_t*)0x2000106c = 7; *(uint32_t*)0x20001070 = 6; *(uint32_t*)0x20001074 = 3; *(uint32_t*)0x20001078 = 0; *(uint32_t*)0x2000107c = 8; *(uint32_t*)0x20001080 = 0xd9e; *(uint32_t*)0x20001084 = 0x10001; *(uint32_t*)0x20001088 = 0xfffffff8; *(uint32_t*)0x2000108c = 0x100; *(uint32_t*)0x20001090 = 0; *(uint32_t*)0x20001094 = 0x7f; *(uint32_t*)0x20001098 = 5; *(uint32_t*)0x2000109c = 0xffff; *(uint32_t*)0x200010a0 = 7; *(uint32_t*)0x200010a4 = 9; *(uint32_t*)0x200010a8 = 4; *(uint32_t*)0x200010ac = 0x1ff; *(uint32_t*)0x200010b0 = 0x22; *(uint32_t*)0x200010b4 = 3; *(uint32_t*)0x200010b8 = 0xfffffeff; *(uint32_t*)0x200010bc = 0x3f; *(uint32_t*)0x200010c0 = 1; *(uint32_t*)0x200010c4 = 0x10000; *(uint32_t*)0x200010c8 = 4; *(uint32_t*)0x200010cc = 4; *(uint32_t*)0x200010d0 = 2; *(uint32_t*)0x200010d4 = -1; *(uint32_t*)0x200010d8 = 7; *(uint32_t*)0x200010dc = 7; *(uint32_t*)0x200010e0 = 4; *(uint32_t*)0x200010e4 = 5; *(uint32_t*)0x200010e8 = 2; *(uint32_t*)0x200010ec = 0xaccf; *(uint32_t*)0x200010f0 = 0; *(uint32_t*)0x200010f4 = 9; *(uint32_t*)0x200010f8 = 0x101; *(uint32_t*)0x200010fc = 3; *(uint32_t*)0x20001100 = 0x81; *(uint32_t*)0x20001104 = 0xfffffffe; *(uint32_t*)0x20001108 = 0x73b; *(uint32_t*)0x2000110c = 1; *(uint32_t*)0x20001110 = 0; *(uint32_t*)0x20001114 = 0x3ff; *(uint32_t*)0x20001118 = 6; *(uint32_t*)0x2000111c = 0x6dddeda3; *(uint32_t*)0x20001120 = 0xfff; *(uint32_t*)0x20001124 = 2; *(uint32_t*)0x20001128 = 6; *(uint32_t*)0x2000112c = 0x8b; *(uint32_t*)0x20001130 = 0x1c; *(uint32_t*)0x20001134 = 0x758945dd; *(uint32_t*)0x20001138 = 0x80000001; *(uint32_t*)0x2000113c = 2; *(uint32_t*)0x20001140 = 2; *(uint32_t*)0x20001144 = 0x1125; *(uint32_t*)0x20001148 = 7; *(uint32_t*)0x2000114c = 0x7fffffff; *(uint32_t*)0x20001150 = 0x7f; *(uint32_t*)0x20001154 = 0x661; *(uint32_t*)0x20001158 = 0x3f; *(uint32_t*)0x2000115c = 1; *(uint32_t*)0x20001160 = 7; *(uint32_t*)0x20001164 = 0xfffffeff; *(uint32_t*)0x20001168 = 0xfffffffb; *(uint32_t*)0x2000116c = 6; *(uint32_t*)0x20001170 = 4; *(uint32_t*)0x20001174 = 4; *(uint32_t*)0x20001178 = 0x80000000; *(uint32_t*)0x2000117c = 0x7fff; *(uint32_t*)0x20001180 = 0; *(uint32_t*)0x20001184 = 0xffff; *(uint32_t*)0x20001188 = 0x2c9; *(uint32_t*)0x2000118c = 0x8000; *(uint32_t*)0x20001190 = 8; *(uint32_t*)0x20001194 = 0x401; *(uint32_t*)0x20001198 = 8; *(uint32_t*)0x2000119c = 0; *(uint32_t*)0x200011a0 = 0xfff; *(uint32_t*)0x200011a4 = 2; *(uint32_t*)0x200011a8 = 1; *(uint32_t*)0x200011ac = 0x40; *(uint32_t*)0x200011b0 = 0x81; *(uint32_t*)0x200011b4 = 0xd770875; *(uint32_t*)0x200011b8 = 0x81; *(uint32_t*)0x200011bc = 3; *(uint32_t*)0x200011c0 = 0x7fffffff; *(uint32_t*)0x200011c4 = 0xf2ca; *(uint32_t*)0x200011c8 = 0x8000; *(uint32_t*)0x200011cc = 0; *(uint32_t*)0x200011d0 = 9; *(uint32_t*)0x200011d4 = 0x368; *(uint32_t*)0x200011d8 = 0xbef; *(uint32_t*)0x200011dc = 7; *(uint32_t*)0x200011e0 = 0x876; *(uint32_t*)0x200011e4 = 1; *(uint32_t*)0x200011e8 = 0x80000001; *(uint32_t*)0x200011ec = 0x40000; *(uint32_t*)0x200011f0 = 0xff; *(uint32_t*)0x200011f4 = 1; *(uint32_t*)0x200011f8 = 0; *(uint32_t*)0x200011fc = 4; *(uint32_t*)0x20001200 = 5; *(uint32_t*)0x20001204 = 8; *(uint32_t*)0x20001208 = 1; *(uint32_t*)0x2000120c = 9; *(uint32_t*)0x20001210 = 1; *(uint32_t*)0x20001214 = 0x1ff; *(uint32_t*)0x20001218 = 9; *(uint32_t*)0x2000121c = 0xfffff596; *(uint32_t*)0x20001220 = 2; *(uint32_t*)0x20001224 = 0xef8a; *(uint32_t*)0x20001228 = 4; *(uint32_t*)0x2000122c = 2; *(uint32_t*)0x20001230 = -1; *(uint32_t*)0x20001234 = 0x40; *(uint32_t*)0x20001238 = 0x8001; *(uint32_t*)0x2000123c = 9; *(uint32_t*)0x20001240 = 0; *(uint32_t*)0x20001244 = 0xd2; *(uint32_t*)0x20001248 = 4; *(uint32_t*)0x2000124c = 0x80000001; *(uint32_t*)0x20001250 = 4; *(uint32_t*)0x20001254 = 0x8001; *(uint32_t*)0x20001258 = 0x26; *(uint32_t*)0x2000125c = 0xffff; *(uint32_t*)0x20001260 = 0x7990; *(uint32_t*)0x20001264 = 5; *(uint32_t*)0x20001268 = 7; *(uint32_t*)0x2000126c = 0x25a; *(uint32_t*)0x20001270 = 0x6b1f; *(uint32_t*)0x20001274 = 2; *(uint32_t*)0x20001278 = 3; *(uint32_t*)0x2000127c = 4; *(uint32_t*)0x20001280 = 0; *(uint32_t*)0x20001284 = 0; *(uint32_t*)0x20001288 = 8; *(uint32_t*)0x2000128c = 6; *(uint32_t*)0x20001290 = 3; *(uint32_t*)0x20001294 = 0x401; *(uint32_t*)0x20001298 = 0x200; *(uint32_t*)0x2000129c = 0xffff; *(uint32_t*)0x200012a0 = 5; *(uint32_t*)0x200012a4 = 0; *(uint32_t*)0x200012a8 = 9; *(uint32_t*)0x200012ac = 0x8001; *(uint32_t*)0x200012b0 = 0; *(uint32_t*)0x200012b4 = 3; *(uint32_t*)0x200012b8 = 0x3ff; *(uint32_t*)0x200012bc = 0xfff; *(uint32_t*)0x200012c0 = 0x7fffffff; *(uint32_t*)0x200012c4 = 1; *(uint32_t*)0x200012c8 = 6; *(uint32_t*)0x200012cc = 0x57900000; *(uint32_t*)0x200012d0 = 0x80000000; *(uint32_t*)0x200012d4 = 5; *(uint32_t*)0x200012d8 = 0x79fb07c7; *(uint32_t*)0x200012dc = 1; *(uint32_t*)0x200012e0 = 0x8000; *(uint32_t*)0x200012e4 = 0x401; *(uint32_t*)0x200012e8 = 0; *(uint32_t*)0x200012ec = 4; *(uint32_t*)0x200012f0 = 0x8a8; *(uint32_t*)0x200012f4 = 0xff; *(uint32_t*)0x200012f8 = 4; *(uint32_t*)0x200012fc = 8; *(uint32_t*)0x20001300 = 0x80; *(uint32_t*)0x20001304 = 8; *(uint32_t*)0x20001308 = 0x8000; *(uint32_t*)0x2000130c = 4; *(uint32_t*)0x20001310 = 0xffffff33; *(uint32_t*)0x20001314 = 7; *(uint32_t*)0x20001318 = 3; *(uint32_t*)0x2000131c = 6; *(uint32_t*)0x20001320 = 0xffff; *(uint32_t*)0x20001324 = 0x200; *(uint32_t*)0x20001328 = 7; *(uint32_t*)0x2000132c = 0x6a1; *(uint32_t*)0x20001330 = 0; *(uint32_t*)0x20001334 = 8; *(uint32_t*)0x20001338 = 5; *(uint32_t*)0x2000133c = 0x10000; *(uint32_t*)0x20001340 = 7; *(uint32_t*)0x20001344 = 0; *(uint32_t*)0x20001348 = 0x18; *(uint32_t*)0x2000134c = 0; *(uint32_t*)0x20001350 = 0x20; *(uint32_t*)0x20001354 = 0xb4b; *(uint32_t*)0x20001358 = 9; *(uint32_t*)0x2000135c = 0x9de8; *(uint32_t*)0x20001360 = 3; *(uint16_t*)0x20001364 = 8; *(uint16_t*)0x20001366 = 1; *(uint16_t*)0x20001368 = 0xb; *(uint16_t*)0x2000136a = 6; *(uint64_t*)0x20000188 = 0xcec; *(uint64_t*)0x20000398 = 1; *(uint64_t*)0x200003a0 = 0; *(uint64_t*)0x200003a8 = 0; *(uint32_t*)0x200003b0 = 0; syscall(__NR_sendmsg, -1, 0x20000380ul, 0ul); res = syscall(__NR_socket, 0x1000000010ul, 0x80002ul, 0); if (res != -1) r[2] = res; syscall(__NR_sendmmsg, r[2], 0x20000200ul, 0x10efe10675dec16ul, 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; }