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