// https://syzkaller.appspot.com/bug?id=e2dc9aea0465d1eea101bb24cb463e2a7efe7d17 // autogenerated by syzkaller (http://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 #include #include #include #include __attribute__((noreturn)) static void doexit(int status) { volatile unsigned i; syscall(__NR_exit_group, status); for (i = 0;; i++) { } } #include #include const int kFailStatus = 67; const int kRetryStatus = 69; static void fail(const char* msg, ...) { int e = errno; va_list args; va_start(args, msg); vfprintf(stderr, msg, args); va_end(args); fprintf(stderr, " (errno %d)\n", e); doexit((e == ENOMEM || e == EAGAIN) ? kRetryStatus : kFailStatus); } static uint64_t current_time_ms() { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) fail("clock_gettime failed"); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void vsnprintf_check(char* str, size_t size, const char* format, va_list args) { int rv; rv = vsnprintf(str, size, format, args); if (rv < 0) fail("tun: snprintf failed"); if ((size_t)rv >= size) fail("tun: string '%s...' doesn't fit into buffer", str); } static void snprintf_check(char* str, size_t size, const char* format, ...) { va_list args; va_start(args, format); vsnprintf_check(str, size, format, args); va_end(args); } #define COMMAND_MAX_LEN 128 #define PATH_PREFIX \ "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin " #define PATH_PREFIX_LEN (sizeof(PATH_PREFIX) - 1) static void execute_command(const char* format, ...) { va_list args; char command[PATH_PREFIX_LEN + COMMAND_MAX_LEN]; int rv; va_start(args, format); memcpy(command, PATH_PREFIX, PATH_PREFIX_LEN); vsnprintf_check(command + PATH_PREFIX_LEN, COMMAND_MAX_LEN, format, args); rv = system(command); if (rv != 0) fail("tun: command \"%s\" failed with code %d", &command[0], rv); va_end(args); } static int tunfd = -1; static int tun_frags_enabled; #define SYZ_TUN_MAX_PACKET_SIZE 1000 #define MAX_PIDS 32 #define ADDR_MAX_LEN 32 #define LOCAL_MAC "aa:aa:aa:aa:aa:%02hx" #define REMOTE_MAC "bb:bb:bb:bb:bb:%02hx" #define LOCAL_IPV4 "172.20.%d.170" #define REMOTE_IPV4 "172.20.%d.187" #define LOCAL_IPV6 "fe80::%02hxaa" #define REMOTE_IPV6 "fe80::%02hxbb" #define IFF_NAPI 0x0010 #define IFF_NAPI_FRAGS 0x0020 static void initialize_tun(uint64_t pid) { if (pid >= MAX_PIDS) fail("tun: no more than %d executors", MAX_PIDS); int id = pid; tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf( "tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as " "intended\n"); return; } char iface[IFNAMSIZ]; snprintf_check(iface, sizeof(iface), "syz%d", id); struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, iface, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_NAPI | IFF_NAPI_FRAGS; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) fail("tun: ioctl(TUNSETIFF) failed"); } if (ioctl(tunfd, TUNGETIFF, (void*)&ifr) < 0) fail("tun: ioctl(TUNGETIFF) failed"); tun_frags_enabled = (ifr.ifr_flags & IFF_NAPI_FRAGS) != 0; char local_mac[ADDR_MAX_LEN]; snprintf_check(local_mac, sizeof(local_mac), LOCAL_MAC, id); char remote_mac[ADDR_MAX_LEN]; snprintf_check(remote_mac, sizeof(remote_mac), REMOTE_MAC, id); char local_ipv4[ADDR_MAX_LEN]; snprintf_check(local_ipv4, sizeof(local_ipv4), LOCAL_IPV4, id); char remote_ipv4[ADDR_MAX_LEN]; snprintf_check(remote_ipv4, sizeof(remote_ipv4), REMOTE_IPV4, id); char local_ipv6[ADDR_MAX_LEN]; snprintf_check(local_ipv6, sizeof(local_ipv6), LOCAL_IPV6, id); char remote_ipv6[ADDR_MAX_LEN]; snprintf_check(remote_ipv6, sizeof(remote_ipv6), REMOTE_IPV6, id); execute_command("sysctl -w net.ipv6.conf.%s.accept_dad=0", iface); execute_command("sysctl -w net.ipv6.conf.%s.router_solicitations=0", iface); execute_command("ip link set dev %s address %s", iface, local_mac); execute_command("ip addr add %s/24 dev %s", local_ipv4, iface); execute_command("ip -6 addr add %s/120 dev %s", local_ipv6, iface); execute_command("ip neigh add %s lladdr %s dev %s nud permanent", remote_ipv4, remote_mac, iface); execute_command("ip -6 neigh add %s lladdr %s dev %s nud permanent", remote_ipv6, remote_mac, iface); execute_command("ip link set dev %s up", iface); } static void setup_tun(uint64_t pid, bool enable_tun) { if (enable_tun) initialize_tun(pid); } static int read_tun(char* data, int size) { if (tunfd < 0) return -1; int rv = read(tunfd, data, size); if (rv < 0) { if (errno == EAGAIN) return -1; if (errno == EBADFD) return -1; fail("tun: read failed with %d", rv); } return rv; } static void flush_tun() { char data[SYZ_TUN_MAX_PACKET_SIZE]; while (read_tun(&data[0], sizeof(data)) != -1) ; } static void test(); void loop() { int iter; for (iter = 0;; iter++) { int pid = fork(); if (pid < 0) fail("loop fork failed"); if (pid == 0) { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); flush_tun(); test(); doexit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { int res = waitpid(-1, &status, __WALL | WNOHANG); if (res == pid) break; usleep(1000); if (current_time_ms() - start > 5 * 1000) { kill(-pid, SIGKILL); kill(pid, SIGKILL); while (waitpid(-1, &status, __WALL) != pid) { } break; } } } } long r[2]; void test() { memset(r, -1, sizeof(r)); syscall(__NR_mmap, 0x20000000, 0xfff000, 0x3, 0x32, 0xffffffff, 0x0); r[0] = syscall(__NR_socket, 0x26, 0x5, 0x0); *(uint16_t*)0x2019d000 = 0x26; memcpy((void*)0x2019d002, "\x73\x6b\x63\x69\x70\x68\x65\x72\x00\x00\x00\x00\x00\x00", 14); *(uint32_t*)0x2019d010 = 0x0; *(uint32_t*)0x2019d014 = 0xf; memcpy((void*)0x2019d018, "\x73\x61\x6c\x73\x61\x32\x30\x2d\x61\x73\x6d\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00", 64); syscall(__NR_bind, r[0], 0x2019d000, 0x58); memcpy((void*)0x2097e000, "\xad\x56\xb6\xc5\x82\x0f\xae\xb9\x95\x29" "\x89\x92\xea\x54\xc7\xbe", 16); syscall(__NR_setsockopt, r[0], 0x117, 0x1, 0x2097e000, 0x10); r[1] = syscall(__NR_accept, r[0], 0x0, 0x0); *(uint64_t*)0x205f0fc8 = 0x0; *(uint32_t*)0x205f0fd0 = 0x0; *(uint64_t*)0x205f0fd8 = 0x20331fc0; *(uint64_t*)0x205f0fe0 = 0x1; *(uint64_t*)0x205f0fe8 = 0x20f42fe8; *(uint64_t*)0x205f0ff0 = 0x0; *(uint32_t*)0x205f0ff8 = 0x0; *(uint64_t*)0x20331fc0 = 0x20fa7f12; *(uint64_t*)0x20331fc8 = 0xc0; memcpy((void*)0x20fa7f12, "\xb1\xc5\x41\x12\xaa\xd2\xc4\xc3\xc4\x95\x96\x2c\x2e\x68\xb6" "\x45\x5b\x79\xac\xca\xad\x45\xc6\x5a\x12\x70\xdc\xe2\x57\x77" "\x73\x50\xe2\xea\x63\x30\x0c\x04\xf8\xe3\xa2\x91\x8b\x71\x9d" "\x1a\x50\x94\x71\xe6\xae\xdf\x62\x10\xa5\x3e\x33\x97\xa5\x55" "\x7e\x14\x3f\xfc\x1c\x10\x6a\xf5\x45\x2f\x29\x6b\xef\xba\x34" "\xbf\xaa\xfb\x53\xdf\xd7\x2d\x8b\x11\x5f\x63\x3e\x4f\xd9\x94" "\x91\xf5\x7d\x21\x78\xac\x50\xc9\x49\x57\xae\x79\x07\x1a\xf2" "\xf5\x24\x81\x9d\x44\x73\x1d\x89\x2a\x83\xca\xe4\xa3\x78\x8b" "\x65\x81\x2a\xcc\x97\xdf\xf3\xb7\x9b\x11\x8d\x25\x5a\x16\x83" "\xd8\x72\xeb\x0a\xa9\xb3\x83\x16\x91\x7a\x00\x45\x6e\x29\xb0" "\xe7\x50\xcc\x67\xad\x01\x09\x81\xf6\xc8\x8c\x41\x87\x79\xa7" "\x72\xcf\x32\x9e\x8d\x6d\x95\x3e\xa8\x20\x0a\x7f\xe8\x5f\x7c" "\x8e\x23\x52\xd6\x07\x61\x82\x3b\xf1\xf4\xf3\x0f", 192); syscall(__NR_sendmsg, r[1], 0x205f0fc8, 0x0); *(uint64_t*)0x20b2f000 = 0x208e8000; *(uint32_t*)0x20b2f008 = 0x10; *(uint64_t*)0x20b2f010 = 0x20030fa0; *(uint64_t*)0x20b2f018 = 0x2; *(uint64_t*)0x20b2f020 = 0x20590000; *(uint64_t*)0x20b2f028 = 0x0; *(uint32_t*)0x20b2f030 = 0x0; *(uint64_t*)0x20030fa0 = 0x2034df41; *(uint64_t*)0x20030fa8 = 0xbf; *(uint64_t*)0x20030fb0 = 0x200cd000; *(uint64_t*)0x20030fb8 = 0x1a; syscall(__NR_recvmsg, r[1], 0x20b2f000, 0x0); } int main() { for (;;) { setup_tun(0, true); loop(); } }