140 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			140 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C
		
	
	
	
| // SPDX-License-Identifier: GPL-2.0-or-later
 | |
| /*
 | |
|  * Copyright (C) 2017 Christoph Paasch <cpaasch@apple.com>
 | |
|  * Copyright (C) 2020 SUSE LLC <mdoucha@suse.cz>
 | |
|  *
 | |
|  * CVE-2018-9568
 | |
|  *
 | |
|  * Test that connect() to AF_UNSPEC address correctly converts IPV6 socket
 | |
|  * to IPV4 listen socket when IPV6_ADDRFORM is set to AF_INET.
 | |
|  * Kernel memory corruption fixed in:
 | |
|  *
 | |
|  *  commit 9d538fa60bad4f7b23193c89e843797a1cf71ef3
 | |
|  *  Author: Christoph Paasch <cpaasch@apple.com>
 | |
|  *  Date:   Tue Sep 26 17:38:50 2017 -0700
 | |
|  *
 | |
|  *  net: Set sk_prot_creator when cloning sockets to the right proto
 | |
|  *
 | |
|  *
 | |
|  * Note: This test also detects setsockopt(IP_ADDRFORM) breakage caused by
 | |
|  * kernel commit b6f6118901d1. This bug is unrelated to CVE-2018-9568.
 | |
|  * Fixed in:
 | |
|  *
 | |
|  *  commit 82c9ae440857840c56e05d4fb1427ee032531346
 | |
|  *  Author: John Haxby <john.haxby@oracle.com>
 | |
|  *  Date:   Sat Apr 18 16:30:49 2020 +0100
 | |
|  *
 | |
|  *  ipv6: fix restrict IPV6_ADDRFORM operation
 | |
|  */
 | |
| 
 | |
| #include <sys/types.h>
 | |
| #include <sys/socket.h>
 | |
| #include <netinet/in.h>
 | |
| #include <netinet/tcp.h>
 | |
| #include <arpa/inet.h>
 | |
| 
 | |
| #include "tst_test.h"
 | |
| #include "tst_net.h"
 | |
| 
 | |
| static int listenfd = -1, fd = -1, confd1 = -1, confd2 = -1, confd3 = -1;
 | |
| static struct sockaddr_in6 bind_addr;
 | |
| static struct sockaddr_in bind_addr4, client_addr;
 | |
| static struct sockaddr reset_addr;
 | |
| 
 | |
| static void setup(void)
 | |
| {
 | |
| 	socklen_t size = sizeof(bind_addr);
 | |
| 
 | |
| 	tst_init_sockaddr_inet6_bin(&bind_addr, &in6addr_any, 0);
 | |
| 	tst_init_sockaddr_inet_bin(&bind_addr4, INADDR_ANY, 0);
 | |
| 	memset(&reset_addr, 0, sizeof(reset_addr));
 | |
| 	reset_addr.sa_family = AF_UNSPEC;
 | |
| 
 | |
| 	listenfd = SAFE_SOCKET(AF_INET6, SOCK_STREAM, IPPROTO_TCP);
 | |
| 	SAFE_BIND(listenfd, (struct sockaddr *)&bind_addr, sizeof(bind_addr));
 | |
| 	SAFE_LISTEN(listenfd, 5);
 | |
| 	SAFE_GETSOCKNAME(listenfd, (struct sockaddr *)&bind_addr, &size);
 | |
| 	tst_init_sockaddr_inet(&client_addr, "127.0.0.1",
 | |
| 		htons(bind_addr.sin6_port));
 | |
| }
 | |
| 
 | |
| static void cleanup(void)
 | |
| {
 | |
| 	if (confd3 >= 0)
 | |
| 		SAFE_CLOSE(confd3);
 | |
| 
 | |
| 	if (confd2 >= 0)
 | |
| 		SAFE_CLOSE(confd2);
 | |
| 
 | |
| 	if (confd1 >= 0)
 | |
| 		SAFE_CLOSE(confd1);
 | |
| 
 | |
| 	if (fd >= 0)
 | |
| 		SAFE_CLOSE(fd);
 | |
| 
 | |
| 	if (listenfd >= 0)
 | |
| 		SAFE_CLOSE(listenfd);
 | |
| }
 | |
| 
 | |
| static void run(void)
 | |
| {
 | |
| 	int i, addrlen, optval = AF_INET;
 | |
| 	struct sockaddr_storage client_addr2;
 | |
| 
 | |
| 	for (i = 0; i < 1000; i++) {
 | |
| 		confd1 = SAFE_SOCKET(AF_INET, SOCK_STREAM, IPPROTO_TCP);
 | |
| 		SAFE_CONNECT(confd1, (struct sockaddr *)&client_addr,
 | |
| 			sizeof(client_addr));
 | |
| 
 | |
| 		fd = SAFE_ACCEPT(listenfd, NULL, NULL);
 | |
| 		TEST(setsockopt(fd, SOL_IPV6, IPV6_ADDRFORM, &optval,
 | |
| 			sizeof(optval)));
 | |
| 
 | |
| 		if (TST_RET == -1) {
 | |
| 			tst_res(TFAIL | TTERRNO,
 | |
| 				"setsockopt(IPV6_ADDRFORM) failed");
 | |
| 			return;
 | |
| 		}
 | |
| 
 | |
| 		if (TST_RET != 0)
 | |
| 			tst_brk(TBROK | TTERRNO, "setsockopt(IPV6_ADDRFORM) "
 | |
| 				"returned invalid value");
 | |
| 
 | |
| 		SAFE_CONNECT(fd, (struct sockaddr *)&reset_addr,
 | |
| 			sizeof(reset_addr));
 | |
| 		SAFE_BIND(fd, (struct sockaddr *)&bind_addr4,
 | |
| 			sizeof(bind_addr4));
 | |
| 		SAFE_LISTEN(fd, 5);
 | |
| 
 | |
| 		addrlen = tst_get_connect_address(fd, &client_addr2);
 | |
| 		confd2 = SAFE_SOCKET(AF_INET, SOCK_STREAM, IPPROTO_TCP);
 | |
| 		SAFE_CONNECT(confd2, (struct sockaddr *)&client_addr2, addrlen);
 | |
| 		confd3 = SAFE_ACCEPT(fd, NULL, NULL);
 | |
| 
 | |
| 		SAFE_CLOSE(confd3);
 | |
| 		SAFE_CLOSE(confd2);
 | |
| 		SAFE_CLOSE(confd1);
 | |
| 		SAFE_CLOSE(fd);
 | |
| 
 | |
| 		if (tst_taint_check()) {
 | |
| 			tst_res(TFAIL, "Kernel is vulnerable");
 | |
| 			return;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	tst_res(TPASS, "Nothing bad happened, probably");
 | |
| }
 | |
| 
 | |
| static struct tst_test test = {
 | |
| 	.test_all = run,
 | |
| 	.setup = setup,
 | |
| 	.cleanup = cleanup,
 | |
| 	.taint_check = TST_TAINT_W | TST_TAINT_D,
 | |
| 	.tags = (const struct tst_tag[]) {
 | |
| 		{"linux-git", "9d538fa60bad"},
 | |
| 		{"linux-git", "82c9ae440857"},
 | |
| 		{"CVE", "2018-9568"},
 | |
| 		{}
 | |
| 	}
 | |
| };
 |