xref: /xnu-10002.41.9/tests/test_ip_drop_membership.c (revision 699cd48037512bf4380799317ca44ca453c82f57)
1*699cd480SApple OSS Distributions /*
2*699cd480SApple OSS Distributions  * Copyright (c) 2022 Apple Inc. All rights reserved.
3*699cd480SApple OSS Distributions  *
4*699cd480SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*699cd480SApple OSS Distributions  *
6*699cd480SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*699cd480SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*699cd480SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*699cd480SApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*699cd480SApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*699cd480SApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*699cd480SApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*699cd480SApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*699cd480SApple OSS Distributions  *
15*699cd480SApple OSS Distributions  * Please obtain a copy of the License at
16*699cd480SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*699cd480SApple OSS Distributions  *
18*699cd480SApple OSS Distributions  * The Original Code and all software distributed under the License are
19*699cd480SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*699cd480SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*699cd480SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*699cd480SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*699cd480SApple OSS Distributions  * Please see the License for the specific language governing rights and
24*699cd480SApple OSS Distributions  * limitations under the License.
25*699cd480SApple OSS Distributions  *
26*699cd480SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*699cd480SApple OSS Distributions  */
28*699cd480SApple OSS Distributions 
29*699cd480SApple OSS Distributions #include <sys/errno.h>
30*699cd480SApple OSS Distributions #include <sys/socket.h>
31*699cd480SApple OSS Distributions #include <sys/sysctl.h>
32*699cd480SApple OSS Distributions 
33*699cd480SApple OSS Distributions #include <netinet/in.h>
34*699cd480SApple OSS Distributions 
35*699cd480SApple OSS Distributions #include <err.h>
36*699cd480SApple OSS Distributions #include <stdarg.h>
37*699cd480SApple OSS Distributions #include <stdbool.h>
38*699cd480SApple OSS Distributions #include <stdint.h>
39*699cd480SApple OSS Distributions #include <stdio.h>
40*699cd480SApple OSS Distributions #include <stdlib.h>
41*699cd480SApple OSS Distributions #include <string.h>
42*699cd480SApple OSS Distributions #include <sysexits.h>
43*699cd480SApple OSS Distributions #include <unistd.h>
44*699cd480SApple OSS Distributions 
45*699cd480SApple OSS Distributions #include <arpa/inet.h>
46*699cd480SApple OSS Distributions 
47*699cd480SApple OSS Distributions #include <darwintest.h>
48*699cd480SApple OSS Distributions 
49*699cd480SApple OSS Distributions /*
50*699cd480SApple OSS Distributions  * rdar://89640053 (Rome 22A201 - panic: assertion failed: RB_EMPTY(&imf->imf_sources))
51*699cd480SApple OSS Distributions  */
52*699cd480SApple OSS Distributions 
53*699cd480SApple OSS Distributions T_GLOBAL_META(T_META_NAMESPACE("xnu.net"),
54*699cd480SApple OSS Distributions     T_META_RADAR_COMPONENT_NAME("xnu"),
55*699cd480SApple OSS Distributions     T_META_RADAR_COMPONENT_VERSION("networking"),
56*699cd480SApple OSS Distributions     T_META_ASROOT(true));
57*699cd480SApple OSS Distributions 
58*699cd480SApple OSS Distributions static void
print_mreq(const char * opt,struct ip_mreq * mreq)59*699cd480SApple OSS Distributions print_mreq(const char *opt, struct ip_mreq *mreq)
60*699cd480SApple OSS Distributions {
61*699cd480SApple OSS Distributions 	char *imr_multiaddr = strdup(inet_ntoa(mreq->imr_multiaddr));
62*699cd480SApple OSS Distributions 	char *imr_interface = strdup(inet_ntoa(mreq->imr_interface));
63*699cd480SApple OSS Distributions 
64*699cd480SApple OSS Distributions 	T_LOG("%s imr_multiaddr: %s imr_interface: %s",
65*699cd480SApple OSS Distributions 	    opt, imr_multiaddr, imr_interface);
66*699cd480SApple OSS Distributions 
67*699cd480SApple OSS Distributions 	free(imr_multiaddr);
68*699cd480SApple OSS Distributions 	free(imr_interface);
69*699cd480SApple OSS Distributions }
70*699cd480SApple OSS Distributions 
71*699cd480SApple OSS Distributions static void
print_mreq_src(const char * opt,struct ip_mreq_source * mreq_src)72*699cd480SApple OSS Distributions print_mreq_src(const char *opt, struct ip_mreq_source *mreq_src)
73*699cd480SApple OSS Distributions {
74*699cd480SApple OSS Distributions 	char *imr_multiaddr = strdup(inet_ntoa(mreq_src->imr_multiaddr));
75*699cd480SApple OSS Distributions 	char *imr_sourceaddr = strdup(inet_ntoa(mreq_src->imr_sourceaddr));
76*699cd480SApple OSS Distributions 	char *imr_interface = strdup(inet_ntoa(mreq_src->imr_interface));
77*699cd480SApple OSS Distributions 
78*699cd480SApple OSS Distributions 	T_LOG("%s imr_multiaddr: %s imr_sourceaddr: %s imr_interface: %s",
79*699cd480SApple OSS Distributions 	    opt, imr_multiaddr, imr_sourceaddr, imr_interface);
80*699cd480SApple OSS Distributions 
81*699cd480SApple OSS Distributions 	free(imr_multiaddr);
82*699cd480SApple OSS Distributions 	free(imr_sourceaddr);
83*699cd480SApple OSS Distributions 	free(imr_interface);
84*699cd480SApple OSS Distributions }
85*699cd480SApple OSS Distributions 
86*699cd480SApple OSS Distributions static void
test_ip_drop_membership(uint32_t max)87*699cd480SApple OSS Distributions test_ip_drop_membership(uint32_t max)
88*699cd480SApple OSS Distributions {
89*699cd480SApple OSS Distributions 	uint32_t maddr = 0xef000000; /* 239.0.0.0 */
90*699cd480SApple OSS Distributions 	int fd;
91*699cd480SApple OSS Distributions 
92*699cd480SApple OSS Distributions 	if (max == 0) {
93*699cd480SApple OSS Distributions 		max = 1;
94*699cd480SApple OSS Distributions 	}
95*699cd480SApple OSS Distributions 
96*699cd480SApple OSS Distributions 	fd = socket(AF_INET, SOCK_RAW, 1);
97*699cd480SApple OSS Distributions 	if (fd < 0) {
98*699cd480SApple OSS Distributions 		T_ASSERT_POSIX_SUCCESS(-1, "socket(AF_INET, SOCK_DGRAM, 1)");
99*699cd480SApple OSS Distributions 	}
100*699cd480SApple OSS Distributions 
101*699cd480SApple OSS Distributions 	for (uint32_t i = 0; i < max; i++) {
102*699cd480SApple OSS Distributions 		struct ip_mreq mreq = {};
103*699cd480SApple OSS Distributions 		struct ip_mreq_source mreq_src = {};
104*699cd480SApple OSS Distributions 
105*699cd480SApple OSS Distributions 		maddr += 1;
106*699cd480SApple OSS Distributions 
107*699cd480SApple OSS Distributions 		mreq.imr_multiaddr.s_addr = htonl(maddr);
108*699cd480SApple OSS Distributions 		mreq.imr_interface.s_addr = htonl(INADDR_LOOPBACK);
109*699cd480SApple OSS Distributions 
110*699cd480SApple OSS Distributions 		print_mreq("IP_ADD_MEMBERSHIP", &mreq);
111*699cd480SApple OSS Distributions 		if (setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (void *)&mreq, sizeof(mreq)) == -1) {
112*699cd480SApple OSS Distributions 			/*
113*699cd480SApple OSS Distributions 			 * The call is expected to fail when we reach the limit of membership
114*699cd480SApple OSS Distributions 			 * and when the device does not have an IP address
115*699cd480SApple OSS Distributions 			 */
116*699cd480SApple OSS Distributions 			if (errno == ETOOMANYREFS || errno == EADDRNOTAVAIL || errno == ENOMEM) {
117*699cd480SApple OSS Distributions 				T_LOG("setsockopt(IPPROTO_IP, IP_ADD_MEMBERSHIP) %s", strerror(errno));
118*699cd480SApple OSS Distributions 				break;
119*699cd480SApple OSS Distributions 			}
120*699cd480SApple OSS Distributions 			T_ASSERT_POSIX_SUCCESS(-1, "setsockopt(IPPROTO_IP, IP_ADD_MEMBERSHIP)");
121*699cd480SApple OSS Distributions 		}
122*699cd480SApple OSS Distributions 
123*699cd480SApple OSS Distributions 		maddr += 1;
124*699cd480SApple OSS Distributions 
125*699cd480SApple OSS Distributions 		mreq_src.imr_multiaddr.s_addr = htonl(maddr);
126*699cd480SApple OSS Distributions 		mreq_src.imr_sourceaddr.s_addr = htonl(INADDR_LOOPBACK);
127*699cd480SApple OSS Distributions 		mreq_src.imr_interface.s_addr = htonl(INADDR_LOOPBACK);
128*699cd480SApple OSS Distributions 
129*699cd480SApple OSS Distributions 		print_mreq_src("IP_ADD_SOURCE_MEMBERSHIP", &mreq_src);
130*699cd480SApple OSS Distributions 
131*699cd480SApple OSS Distributions 		if (setsockopt(fd, IPPROTO_IP, IP_ADD_SOURCE_MEMBERSHIP, (void *)&mreq_src, sizeof(mreq_src)) == -1) {
132*699cd480SApple OSS Distributions 			if (errno == ETOOMANYREFS || errno == EADDRNOTAVAIL || errno == ENOMEM) {
133*699cd480SApple OSS Distributions 				T_LOG("setsockopt(IPPROTO_IP, IP_ADD_SOURCE_MEMBERSHIP) %s", strerror(errno));
134*699cd480SApple OSS Distributions 				break;
135*699cd480SApple OSS Distributions 			}
136*699cd480SApple OSS Distributions 			T_ASSERT_POSIX_SUCCESS(-1, "setsockopt(IPPROTO_IP, IP_ADD_SOURCE_MEMBERSHIP)");
137*699cd480SApple OSS Distributions 		}
138*699cd480SApple OSS Distributions 
139*699cd480SApple OSS Distributions 		print_mreq("IP_DROP_MEMBERSHIP", &mreq);
140*699cd480SApple OSS Distributions 		if (setsockopt(fd, 0, IP_DROP_MEMBERSHIP, (void *)&mreq, sizeof(mreq)) == -1) {
141*699cd480SApple OSS Distributions 			T_ASSERT_POSIX_SUCCESS(-1, "setsockopt(IPPROTO_IP, IP_DROP_MEMBERSHIP)");
142*699cd480SApple OSS Distributions 		}
143*699cd480SApple OSS Distributions 
144*699cd480SApple OSS Distributions 		print_mreq("IP_ADD_MEMBERSHIP", &mreq);
145*699cd480SApple OSS Distributions 		if (setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (void *)&mreq, sizeof(mreq)) == -1) {
146*699cd480SApple OSS Distributions 			if (errno == ETOOMANYREFS || errno == EADDRNOTAVAIL) {
147*699cd480SApple OSS Distributions 				T_LOG("setsockopt(IPPROTO_IP, IP_ADD_MEMBERSHIP) %s", strerror(errno));
148*699cd480SApple OSS Distributions 				break;
149*699cd480SApple OSS Distributions 			}
150*699cd480SApple OSS Distributions 			T_ASSERT_POSIX_SUCCESS(-1, "setsockopt(IPPROTO_IP, IP_ADD_MEMBERSHIP)");
151*699cd480SApple OSS Distributions 		}
152*699cd480SApple OSS Distributions 	}
153*699cd480SApple OSS Distributions 	close(fd);
154*699cd480SApple OSS Distributions }
155*699cd480SApple OSS Distributions 
156*699cd480SApple OSS Distributions T_DECL(ip_drop_membership, "test IP_DROP_MEMBERSHIP")
157*699cd480SApple OSS Distributions {
158*699cd480SApple OSS Distributions 	test_ip_drop_membership(0xffff);
159*699cd480SApple OSS Distributions 
160*699cd480SApple OSS Distributions 	T_PASS("ip_drop_membership");
161*699cd480SApple OSS Distributions }
162