xref: /xnu-10063.101.15/tests/IP6_EXTHDR_CHECK_61873584.c (revision 94d3b452840153a99b38a3a9659680b2a006908e)
1*94d3b452SApple OSS Distributions #include <errno.h>
2*94d3b452SApple OSS Distributions #include <stdio.h>
3*94d3b452SApple OSS Distributions #include <string.h>
4*94d3b452SApple OSS Distributions #include <stdlib.h>
5*94d3b452SApple OSS Distributions #include <unistd.h>
6*94d3b452SApple OSS Distributions #include <arpa/inet.h>
7*94d3b452SApple OSS Distributions #include <net/if_var.h>
8*94d3b452SApple OSS Distributions #include <netinet/ip6.h>
9*94d3b452SApple OSS Distributions #include <darwintest.h>
10*94d3b452SApple OSS Distributions 
11*94d3b452SApple OSS Distributions struct packet1 {
12*94d3b452SApple OSS Distributions 	struct ip6_hbh hbh;
13*94d3b452SApple OSS Distributions 	struct ip6_opt hbh_opt;
14*94d3b452SApple OSS Distributions 	uint8_t hbh_pad[4];
15*94d3b452SApple OSS Distributions 	struct ip6_frag frag;
16*94d3b452SApple OSS Distributions 	struct ip6_dest dest;
17*94d3b452SApple OSS Distributions 	struct ip6_opt dest_opt;
18*94d3b452SApple OSS Distributions 	uint8_t dest_pad[4];
19*94d3b452SApple OSS Distributions };
20*94d3b452SApple OSS Distributions 
21*94d3b452SApple OSS Distributions struct packet2 {
22*94d3b452SApple OSS Distributions 	struct ip6_hbh hbh;
23*94d3b452SApple OSS Distributions 	struct ip6_opt hbh_opt;
24*94d3b452SApple OSS Distributions 	uint8_t hbh_pad[4];
25*94d3b452SApple OSS Distributions 	struct ip6_frag frag;
26*94d3b452SApple OSS Distributions 	struct ip6_opt dest_opt;
27*94d3b452SApple OSS Distributions 	uint8_t dest_pad[6];
28*94d3b452SApple OSS Distributions 	uint8_t payload[16];
29*94d3b452SApple OSS Distributions };
30*94d3b452SApple OSS Distributions 
31*94d3b452SApple OSS Distributions T_DECL(IP6_EXTHDR_CHECK_ICMPV6_61873584, "ICMPv6 test for IP6_EXTHDR_CHECK stale mbuf pointer vulnerability", T_META("as_root", "true"))
32*94d3b452SApple OSS Distributions {
33*94d3b452SApple OSS Distributions 	struct sockaddr_in6 daddr;
34*94d3b452SApple OSS Distributions 	struct packet1 packet1;
35*94d3b452SApple OSS Distributions 	struct packet2 packet2;
36*94d3b452SApple OSS Distributions 	int s, id, res;
37*94d3b452SApple OSS Distributions 
38*94d3b452SApple OSS Distributions 	srand(time(NULL));
39*94d3b452SApple OSS Distributions 	id = rand();
40*94d3b452SApple OSS Distributions 
41*94d3b452SApple OSS Distributions 	T_SETUPBEGIN;
42*94d3b452SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(s = socket(AF_INET6, SOCK_RAW, IPPROTO_HOPOPTS), NULL);
43*94d3b452SApple OSS Distributions 	T_SETUPEND;
44*94d3b452SApple OSS Distributions 
45*94d3b452SApple OSS Distributions 	memset(&daddr, 0, sizeof(daddr));
46*94d3b452SApple OSS Distributions 	daddr.sin6_family = AF_INET6;
47*94d3b452SApple OSS Distributions 	daddr.sin6_port = 0;
48*94d3b452SApple OSS Distributions 	inet_pton(AF_INET6, "::1", &daddr.sin6_addr);
49*94d3b452SApple OSS Distributions 
50*94d3b452SApple OSS Distributions 	memset(&packet1, 'A', sizeof(struct packet1));
51*94d3b452SApple OSS Distributions 	packet1.hbh.ip6h_nxt = IPPROTO_FRAGMENT;
52*94d3b452SApple OSS Distributions 	packet1.hbh.ip6h_len = 0;
53*94d3b452SApple OSS Distributions 	packet1.hbh_opt.ip6o_type = IP6OPT_PADN;
54*94d3b452SApple OSS Distributions 	packet1.hbh_opt.ip6o_len = 4;
55*94d3b452SApple OSS Distributions 	packet1.frag.ip6f_nxt = IPPROTO_DSTOPTS;
56*94d3b452SApple OSS Distributions 	packet1.frag.ip6f_reserved = 0;
57*94d3b452SApple OSS Distributions 	packet1.frag.ip6f_offlg = htons(0) | IP6F_MORE_FRAG;
58*94d3b452SApple OSS Distributions 	packet1.frag.ip6f_ident = id;
59*94d3b452SApple OSS Distributions 	// Use IPPROTO_RAW for "assertion failed: m->m_flags & M_PKTHDR" panic
60*94d3b452SApple OSS Distributions 	// Use IPPROTO_ICMPV6 for "m_free: freeing an already freed mbuf" panic
61*94d3b452SApple OSS Distributions 	packet1.dest.ip6d_nxt = IPPROTO_RAW;
62*94d3b452SApple OSS Distributions 	packet1.dest.ip6d_len = 1;
63*94d3b452SApple OSS Distributions 	packet1.dest_opt.ip6o_type = IP6OPT_PADN;
64*94d3b452SApple OSS Distributions 	packet1.dest_opt.ip6o_len = 4;
65*94d3b452SApple OSS Distributions 
66*94d3b452SApple OSS Distributions 	memset(&packet2, 'B', sizeof(struct packet2));
67*94d3b452SApple OSS Distributions 	packet2.hbh.ip6h_nxt = IPPROTO_FRAGMENT;
68*94d3b452SApple OSS Distributions 	packet2.hbh.ip6h_len = 0;
69*94d3b452SApple OSS Distributions 	packet2.hbh_opt.ip6o_type = IP6OPT_PADN;
70*94d3b452SApple OSS Distributions 	packet2.hbh_opt.ip6o_len = 4;
71*94d3b452SApple OSS Distributions 	packet2.frag.ip6f_nxt = IPPROTO_DSTOPTS;
72*94d3b452SApple OSS Distributions 	packet2.frag.ip6f_reserved = 0;
73*94d3b452SApple OSS Distributions 	packet2.frag.ip6f_offlg = htons(8);
74*94d3b452SApple OSS Distributions 	packet2.frag.ip6f_ident = id;
75*94d3b452SApple OSS Distributions 	packet2.dest_opt.ip6o_type = IP6OPT_PADN;
76*94d3b452SApple OSS Distributions 	packet2.dest_opt.ip6o_len = 6;
77*94d3b452SApple OSS Distributions 
78*94d3b452SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(res = sendto(s, (char *)&packet1, sizeof(packet1), 0,
79*94d3b452SApple OSS Distributions 	    (struct sockaddr *)&daddr, (socklen_t)sizeof(daddr)), NULL);
80*94d3b452SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(res = sendto(s, (char *)&packet2, sizeof(packet2), 0,
81*94d3b452SApple OSS Distributions 	    (struct sockaddr *)&daddr, (socklen_t)sizeof(daddr)), NULL);
82*94d3b452SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(res = close(s), NULL);
83*94d3b452SApple OSS Distributions }
84