xref: /xnu-11215.61.5/tests/v4mappedv6_dontfrag.c (revision 4f1223e81cd707a65cc109d0b8ad6653699da3c4)
1*4f1223e8SApple OSS Distributions /*
2*4f1223e8SApple OSS Distributions  * Copyright (c) 2024 Apple Inc. All rights reserved.
3*4f1223e8SApple OSS Distributions  *
4*4f1223e8SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*4f1223e8SApple OSS Distributions  *
6*4f1223e8SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*4f1223e8SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*4f1223e8SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*4f1223e8SApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*4f1223e8SApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*4f1223e8SApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*4f1223e8SApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*4f1223e8SApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*4f1223e8SApple OSS Distributions  *
15*4f1223e8SApple OSS Distributions  * Please obtain a copy of the License at
16*4f1223e8SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*4f1223e8SApple OSS Distributions  *
18*4f1223e8SApple OSS Distributions  * The Original Code and all software distributed under the License are
19*4f1223e8SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*4f1223e8SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*4f1223e8SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*4f1223e8SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*4f1223e8SApple OSS Distributions  * Please see the License for the specific language governing rights and
24*4f1223e8SApple OSS Distributions  * limitations under the License.
25*4f1223e8SApple OSS Distributions  *
26*4f1223e8SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*4f1223e8SApple OSS Distributions  */
28*4f1223e8SApple OSS Distributions 
29*4f1223e8SApple OSS Distributions #define __APPLE_USE_RFC_3542 1
30*4f1223e8SApple OSS Distributions 
31*4f1223e8SApple OSS Distributions #include <darwintest.h>
32*4f1223e8SApple OSS Distributions 
33*4f1223e8SApple OSS Distributions #include <sys/ioctl.h>
34*4f1223e8SApple OSS Distributions #include <sys/sysctl.h>
35*4f1223e8SApple OSS Distributions #include <sys/uio.h>
36*4f1223e8SApple OSS Distributions 
37*4f1223e8SApple OSS Distributions #include <arpa/inet.h>
38*4f1223e8SApple OSS Distributions 
39*4f1223e8SApple OSS Distributions #include <netinet/ip.h>
40*4f1223e8SApple OSS Distributions 
41*4f1223e8SApple OSS Distributions #include <stdlib.h>
42*4f1223e8SApple OSS Distributions #include <string.h>
43*4f1223e8SApple OSS Distributions #include <strings.h>
44*4f1223e8SApple OSS Distributions 
45*4f1223e8SApple OSS Distributions #include "net_test_lib.h"
46*4f1223e8SApple OSS Distributions 
47*4f1223e8SApple OSS Distributions T_GLOBAL_META(
48*4f1223e8SApple OSS Distributions 	T_META_NAMESPACE("xnu.net"),
49*4f1223e8SApple OSS Distributions 	T_META_ASROOT(true),
50*4f1223e8SApple OSS Distributions 	T_META_RADAR_COMPONENT_NAME("xnu"),
51*4f1223e8SApple OSS Distributions 	T_META_RADAR_COMPONENT_VERSION("networking"),
52*4f1223e8SApple OSS Distributions 	T_META_CHECK_LEAKS(false));
53*4f1223e8SApple OSS Distributions 
54*4f1223e8SApple OSS Distributions /* need something greater than default MTU */
55*4f1223e8SApple OSS Distributions #define MAX_BUFFER_SIZE 2048
56*4f1223e8SApple OSS Distributions 
57*4f1223e8SApple OSS Distributions // 169.254
58*4f1223e8SApple OSS Distributions #define LL_NET                 0xa9fe0000 //0x0a000000
59*4f1223e8SApple OSS Distributions // 169.254.1
60*4f1223e8SApple OSS Distributions #define LL_1_NET               (LL_NET | 0x000100)
61*4f1223e8SApple OSS Distributions 
62*4f1223e8SApple OSS Distributions static void
get_ipv4_address(u_int unit,u_int addr_index,struct in_addr * ip)63*4f1223e8SApple OSS Distributions get_ipv4_address(u_int unit, u_int addr_index, struct in_addr *ip)
64*4f1223e8SApple OSS Distributions {
65*4f1223e8SApple OSS Distributions 	/* up to 255 units, 255 addresses */
66*4f1223e8SApple OSS Distributions 	ip->s_addr = htonl(LL_1_NET | (unit << 8) | addr_index);
67*4f1223e8SApple OSS Distributions 	return;
68*4f1223e8SApple OSS Distributions }
69*4f1223e8SApple OSS Distributions 
70*4f1223e8SApple OSS Distributions static void
network_interface_init(network_interface_t netif,const char * name,unsigned int unit,unsigned int address_index)71*4f1223e8SApple OSS Distributions network_interface_init(network_interface_t netif,
72*4f1223e8SApple OSS Distributions     const char * name, unsigned int unit,
73*4f1223e8SApple OSS Distributions     unsigned int address_index)
74*4f1223e8SApple OSS Distributions {
75*4f1223e8SApple OSS Distributions 	network_interface_create(netif, name);
76*4f1223e8SApple OSS Distributions 	get_ipv4_address(unit, address_index, &netif->ip);
77*4f1223e8SApple OSS Distributions 	ifnet_add_ip_address(netif->if_name, netif->ip,
78*4f1223e8SApple OSS Distributions 	    inet_class_c_subnet_mask);
79*4f1223e8SApple OSS Distributions 	route_add_inet_scoped_subnet(netif->if_name, netif->if_index,
80*4f1223e8SApple OSS Distributions 	    netif->ip, inet_class_c_subnet_mask);
81*4f1223e8SApple OSS Distributions }
82*4f1223e8SApple OSS Distributions 
83*4f1223e8SApple OSS Distributions static network_interface if_one = {0};
84*4f1223e8SApple OSS Distributions static network_interface if_two = {0};
85*4f1223e8SApple OSS Distributions 
86*4f1223e8SApple OSS Distributions static void
cleanup(void)87*4f1223e8SApple OSS Distributions cleanup(void)
88*4f1223e8SApple OSS Distributions {
89*4f1223e8SApple OSS Distributions 	network_interface_destroy(&if_one);
90*4f1223e8SApple OSS Distributions 	network_interface_destroy(&if_two);
91*4f1223e8SApple OSS Distributions }
92*4f1223e8SApple OSS Distributions 
93*4f1223e8SApple OSS Distributions T_DECL(v4mappedv6_dontfrag_sockopt, "Tests setting IPV6_DONTFRAG on an IPv4-mapped IPv6 address")
94*4f1223e8SApple OSS Distributions {
95*4f1223e8SApple OSS Distributions 	int sockfd = 0;
96*4f1223e8SApple OSS Distributions 	ssize_t n;
97*4f1223e8SApple OSS Distributions 	char buf[MAX_BUFFER_SIZE] = {0};
98*4f1223e8SApple OSS Distributions 	struct sockaddr_in6 sin6 = {0};
99*4f1223e8SApple OSS Distributions 
100*4f1223e8SApple OSS Distributions 	sin6.sin6_len = sizeof(struct sockaddr_in6);
101*4f1223e8SApple OSS Distributions 	sin6.sin6_family = AF_INET6;
102*4f1223e8SApple OSS Distributions 	sin6.sin6_port = htons(12345);
103*4f1223e8SApple OSS Distributions 
104*4f1223e8SApple OSS Distributions 	T_ATEND(cleanup);
105*4f1223e8SApple OSS Distributions 
106*4f1223e8SApple OSS Distributions 	network_interface_init(&if_one, FETH_NAME, 0, 1);
107*4f1223e8SApple OSS Distributions 	network_interface_init(&if_two, FETH_NAME, 0, 2);
108*4f1223e8SApple OSS Distributions 	fake_set_peer(if_one.if_name, if_two.if_name);
109*4f1223e8SApple OSS Distributions 	ifnet_set_mtu(if_one.if_name, 1500);
110*4f1223e8SApple OSS Distributions 
111*4f1223e8SApple OSS Distributions 	T_ASSERT_EQ(inet_pton(AF_INET6, "::ffff:169.254.1.2", &sin6.sin6_addr), 1, "inet_pton");
112*4f1223e8SApple OSS Distributions 
113*4f1223e8SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(sockfd = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP), "create socket");
114*4f1223e8SApple OSS Distributions 
115*4f1223e8SApple OSS Distributions 	// This send should succeed (and fragment)
116*4f1223e8SApple OSS Distributions 	n = sendto(sockfd, buf, MAX_BUFFER_SIZE, 0,
117*4f1223e8SApple OSS Distributions 	    (struct sockaddr *)&sin6, sizeof(sin6));
118*4f1223e8SApple OSS Distributions 	T_EXPECT_EQ(n, (ssize_t)MAX_BUFFER_SIZE, "Ensure we wrote MAX_BUFFER_SIZE");
119*4f1223e8SApple OSS Distributions 
120*4f1223e8SApple OSS Distributions 	int Option = 1;
121*4f1223e8SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(setsockopt(sockfd, IPPROTO_IPV6, IPV6_DONTFRAG, &Option, sizeof(Option)), "setsockopt IPV6_DONTFRAG to 1");
122*4f1223e8SApple OSS Distributions 
123*4f1223e8SApple OSS Distributions 	// This send should fail because MAX_BUFFER_SIZE > MTU and we enabled DONTFRAG
124*4f1223e8SApple OSS Distributions 	n = sendto(sockfd, buf, MAX_BUFFER_SIZE, 0,
125*4f1223e8SApple OSS Distributions 	    (struct sockaddr *)&sin6, sizeof(sin6));
126*4f1223e8SApple OSS Distributions 	T_EXPECT_EQ(errno, EMSGSIZE, "errno should be EMSGSIZE");
127*4f1223e8SApple OSS Distributions 	T_EXPECT_EQ(n, (ssize_t)-1, "Expect n of a certain size");
128*4f1223e8SApple OSS Distributions 
129*4f1223e8SApple OSS Distributions 	Option = 0;
130*4f1223e8SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(setsockopt(sockfd, IPPROTO_IPV6, IPV6_DONTFRAG, &Option, sizeof(Option)), "setsockopt IPV6_DONTFRAG back to 0");
131*4f1223e8SApple OSS Distributions 
132*4f1223e8SApple OSS Distributions 	// This send should succeeed (and fragment) because we turned the option back off
133*4f1223e8SApple OSS Distributions 	n = sendto(sockfd, buf, MAX_BUFFER_SIZE, 0,
134*4f1223e8SApple OSS Distributions 	    (struct sockaddr *)&sin6, sizeof(sin6));
135*4f1223e8SApple OSS Distributions 	T_EXPECT_EQ(n, (ssize_t)MAX_BUFFER_SIZE, "Ensure we wrote MAX_BUFFER_SIZE");
136*4f1223e8SApple OSS Distributions }
137