]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
39236c6e | 2 | * Copyright (c) 2000-2013 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
316670eb | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
316670eb | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
316670eb | 17 | * |
2d21ac55 A |
18 | * The Original Code and all software distributed under the License are |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
316670eb | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b A |
27 | */ |
28 | /* | |
29 | * Copyright (c) 1982, 1986, 1993 | |
30 | * The Regents of the University of California. All rights reserved. | |
31 | * | |
32 | * Redistribution and use in source and binary forms, with or without | |
33 | * modification, are permitted provided that the following conditions | |
34 | * are met: | |
35 | * 1. Redistributions of source code must retain the above copyright | |
36 | * notice, this list of conditions and the following disclaimer. | |
37 | * 2. Redistributions in binary form must reproduce the above copyright | |
38 | * notice, this list of conditions and the following disclaimer in the | |
39 | * documentation and/or other materials provided with the distribution. | |
40 | * 3. All advertising materials mentioning features or use of this software | |
41 | * must display the following acknowledgement: | |
42 | * This product includes software developed by the University of | |
43 | * California, Berkeley and its contributors. | |
44 | * 4. Neither the name of the University nor the names of its contributors | |
45 | * may be used to endorse or promote products derived from this software | |
46 | * without specific prior written permission. | |
47 | * | |
48 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
49 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
50 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
51 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
52 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
53 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
54 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
55 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
56 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
57 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
58 | * SUCH DAMAGE. | |
59 | * | |
60 | * @(#)if_loop.c 8.1 (Berkeley) 6/10/93 | |
9bccf70c | 61 | * $FreeBSD: src/sys/net/if_loop.c,v 1.47.2.5 2001/07/03 11:01:41 ume Exp $ |
1c79356b | 62 | */ |
2d21ac55 A |
63 | /* |
64 | * NOTICE: This file was modified by SPARTA, Inc. in 2006 to introduce | |
65 | * support for mandatory and extensible security protections. This notice | |
66 | * is included in support of clause 2.2 (b) of the Apple Public License, | |
67 | * Version 2.0. | |
68 | */ | |
1c79356b A |
69 | |
70 | /* | |
71 | * Loopback interface driver for protocol testing and timing. | |
72 | */ | |
73 | #include "loop.h" | |
74 | #if NLOOP > 0 | |
75 | ||
316670eb A |
76 | #if NLOOP != 1 |
77 | #error "More than one loopback interface is not supported." | |
78 | #endif | |
79 | ||
1c79356b A |
80 | #include <sys/param.h> |
81 | #include <sys/systm.h> | |
82 | #include <sys/kernel.h> | |
83 | #include <sys/mbuf.h> | |
84 | #include <sys/socket.h> | |
85 | #include <sys/sockio.h> | |
6d2010ae | 86 | #include <sys/mcache.h> |
316670eb | 87 | #include <sys/sysctl.h> |
1c79356b A |
88 | |
89 | #include <net/if.h> | |
90 | #include <net/if_types.h> | |
1c79356b A |
91 | #include <net/route.h> |
92 | #include <net/bpf.h> | |
93 | #include <sys/malloc.h> | |
94 | ||
316670eb | 95 | #if INET |
1c79356b A |
96 | #include <netinet/in.h> |
97 | #include <netinet/in_var.h> | |
98 | #endif | |
99 | ||
1c79356b | 100 | #if INET6 |
2d21ac55 | 101 | #if !INET |
1c79356b A |
102 | #include <netinet/in.h> |
103 | #endif | |
104 | #include <netinet6/in6_var.h> | |
105 | #include <netinet/ip6.h> | |
106 | #endif | |
107 | ||
1c79356b | 108 | #include <net/dlil.h> |
91447636 | 109 | #include <net/kpi_protocol.h> |
1c79356b | 110 | |
2d21ac55 A |
111 | #if CONFIG_MACF_NET |
112 | #include <security/mac_framework.h> | |
113 | #endif | |
114 | ||
316670eb A |
115 | #include <pexpert/pexpert.h> |
116 | ||
117 | #define LOMTU 16384 | |
118 | #define LOSNDQ_MAXLEN 256 | |
119 | ||
120 | #define LO_BPF_TAP_OUT(_m) { \ | |
121 | if (lo_statics[0].bpf_callback != NULL) { \ | |
122 | bpf_tap_out(lo_ifp, DLT_NULL, _m, \ | |
39236c6e A |
123 | &((struct loopback_header *)_m->m_pkthdr.pkt_hdr)-> \ |
124 | protocol, sizeof (u_int32_t)); \ | |
316670eb A |
125 | } \ |
126 | } | |
127 | ||
128 | #define LO_BPF_TAP_OUT_MULTI(_m) { \ | |
129 | if (lo_statics[0].bpf_callback != NULL) { \ | |
130 | struct mbuf *_n; \ | |
131 | for (_n = _m; _n != NULL; _n = _n->m_nextpkt) \ | |
132 | LO_BPF_TAP_OUT(_n); \ | |
133 | } \ | |
134 | } | |
1c79356b A |
135 | |
136 | struct lo_statics_str { | |
316670eb | 137 | int bpf_mode; |
91447636 | 138 | bpf_packet_func bpf_callback; |
1c79356b A |
139 | }; |
140 | ||
91447636 | 141 | static struct lo_statics_str lo_statics[NLOOP]; |
316670eb | 142 | static int lo_txstart = 0; |
1c79356b | 143 | |
316670eb | 144 | struct ifnet *lo_ifp = NULL; |
1c79356b | 145 | |
91447636 | 146 | struct loopback_header { |
2d21ac55 | 147 | protocol_family_t protocol; |
91447636 | 148 | }; |
1c79356b | 149 | |
316670eb A |
150 | /* Local forward declerations */ |
151 | void loopattach(void); | |
152 | static errno_t lo_demux(struct ifnet *, struct mbuf *, char *, | |
153 | protocol_family_t *); | |
316670eb A |
154 | static errno_t |
155 | lo_framer(struct ifnet *, struct mbuf **, const struct sockaddr *, | |
156 | const char *, const char *, u_int32_t *, u_int32_t *); | |
316670eb A |
157 | static errno_t lo_add_proto(struct ifnet *, protocol_family_t, |
158 | const struct ifnet_demux_desc *, u_int32_t); | |
159 | static errno_t lo_del_proto(struct ifnet *, protocol_family_t); | |
160 | static int lo_output(struct ifnet *, struct mbuf *); | |
161 | static errno_t lo_pre_enqueue(struct ifnet *, struct mbuf *); | |
162 | static void lo_start(struct ifnet *); | |
163 | static errno_t lo_pre_output(struct ifnet *, protocol_family_t, struct mbuf **, | |
164 | const struct sockaddr *, void *, char *, char *); | |
165 | static errno_t lo_input(struct ifnet *, protocol_family_t, struct mbuf *); | |
166 | static void lo_rtrequest(int, struct rtentry *, struct sockaddr *); | |
167 | static errno_t lo_ioctl(struct ifnet *, u_long, void *); | |
168 | static errno_t lo_attach_proto(struct ifnet *, protocol_family_t); | |
2d21ac55 | 169 | static void lo_reg_if_mods(void); |
316670eb A |
170 | static errno_t lo_set_bpf_tap(struct ifnet *, bpf_tap_mode, bpf_packet_func); |
171 | static int sysctl_dequeue_max SYSCTL_HANDLER_ARGS; | |
172 | static int sysctl_sched_model SYSCTL_HANDLER_ARGS; | |
173 | static int sysctl_dequeue_scidx SYSCTL_HANDLER_ARGS; | |
1c79356b | 174 | |
316670eb A |
175 | SYSCTL_DECL(_net_link); |
176 | ||
177 | SYSCTL_NODE(_net_link, OID_AUTO, loopback, CTLFLAG_RW | CTLFLAG_LOCKED, 0, | |
178 | "loopback interface"); | |
179 | ||
180 | #define LO_BW_SLEEP 10 | |
181 | static u_int32_t lo_bw_sleep_usec = LO_BW_SLEEP; | |
182 | SYSCTL_UINT(_net_link_loopback, OID_AUTO, bw_sleep_usec, | |
183 | CTLFLAG_RW | CTLFLAG_LOCKED, &lo_bw_sleep_usec, LO_BW_SLEEP, ""); | |
184 | ||
185 | static u_int32_t lo_bw_measure = 0; | |
186 | SYSCTL_UINT(_net_link_loopback, OID_AUTO, bw_measure, | |
187 | CTLFLAG_RW | CTLFLAG_LOCKED, &lo_bw_measure, 0, ""); | |
188 | ||
189 | static u_int32_t lo_dequeue_max = LOSNDQ_MAXLEN; | |
190 | SYSCTL_PROC(_net_link_loopback, OID_AUTO, max_dequeue, | |
191 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &lo_dequeue_max, LOSNDQ_MAXLEN, | |
192 | sysctl_dequeue_max, "I", "Maximum number of packets dequeued at a time"); | |
193 | ||
194 | static u_int32_t lo_sched_model = IFNET_SCHED_MODEL_NORMAL; | |
195 | SYSCTL_PROC(_net_link_loopback, OID_AUTO, sched_model, | |
196 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &lo_sched_model, | |
197 | IFNET_SCHED_MODEL_NORMAL, sysctl_sched_model, "I", "Scheduling model"); | |
198 | ||
199 | static u_int32_t lo_dequeue_sc = MBUF_SC_BE; | |
200 | static int lo_dequeue_scidx = MBUF_SCIDX(MBUF_SC_BE); | |
201 | SYSCTL_PROC(_net_link_loopback, OID_AUTO, dequeue_sc, | |
202 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &lo_dequeue_scidx, | |
203 | MBUF_SC_BE, sysctl_dequeue_scidx, "I", "Dequeue a specific SC index"); | |
1c79356b | 204 | |
91447636 | 205 | static errno_t |
316670eb A |
206 | lo_demux(struct ifnet *ifp, struct mbuf *m, char *frame_header, |
207 | protocol_family_t *protocol_family) | |
1c79356b | 208 | { |
316670eb A |
209 | #pragma unused(ifp, m) |
210 | struct loopback_header *header = | |
211 | (struct loopback_header *)(void *)frame_header; | |
212 | ||
91447636 | 213 | *protocol_family = header->protocol; |
1c79356b | 214 | |
316670eb A |
215 | return (0); |
216 | } | |
1c79356b | 217 | |
316670eb A |
218 | static errno_t |
219 | lo_framer(struct ifnet *ifp, struct mbuf **m, const struct sockaddr *dest, | |
220 | const char *dest_linkaddr, const char *frame_type, | |
221 | u_int32_t *prepend_len, u_int32_t *postpend_len) | |
1c79356b | 222 | { |
316670eb | 223 | #pragma unused(ifp, dest, dest_linkaddr) |
91447636 | 224 | struct loopback_header *header; |
1c79356b | 225 | |
3e170ce0 | 226 | M_PREPEND(*m, sizeof (struct loopback_header), M_WAITOK, 1); |
316670eb A |
227 | if (*m == NULL) { |
228 | /* Tell caller not to try to free passed-in mbuf */ | |
229 | return (EJUSTRETURN); | |
230 | } | |
231 | ||
39236c6e A |
232 | if (prepend_len != NULL) |
233 | *prepend_len = sizeof (struct loopback_header); | |
234 | if (postpend_len != NULL) | |
235 | *postpend_len = 0; | |
316670eb A |
236 | |
237 | header = mtod(*m, struct loopback_header *); | |
238 | bcopy(frame_type, &header->protocol, sizeof (u_int32_t)); | |
239 | return (0); | |
1c79356b A |
240 | } |
241 | ||
91447636 | 242 | static errno_t |
316670eb A |
243 | lo_add_proto(struct ifnet *interface, protocol_family_t protocol_family, |
244 | const struct ifnet_demux_desc *demux_array, u_int32_t demux_count) | |
1c79356b | 245 | { |
316670eb A |
246 | #pragma unused(interface, protocol_family, demux_array, demux_count) |
247 | return (0); | |
1c79356b A |
248 | } |
249 | ||
91447636 | 250 | static errno_t |
316670eb | 251 | lo_del_proto(struct ifnet *ifp, protocol_family_t protocol) |
1c79356b | 252 | { |
316670eb A |
253 | #pragma unused(ifp, protocol) |
254 | return (0); | |
1c79356b A |
255 | } |
256 | ||
316670eb A |
257 | /* |
258 | * Output callback. | |
259 | * | |
260 | * This routine is called only when lo_txstart is disabled. | |
261 | */ | |
1c79356b | 262 | static int |
316670eb | 263 | lo_output(struct ifnet *ifp, struct mbuf *m_list) |
91447636 | 264 | { |
316670eb A |
265 | struct mbuf *m, *m_tail = NULL; |
266 | struct ifnet_stat_increment_param s; | |
267 | u_int32_t cnt = 0, len = 0; | |
268 | ||
269 | bzero(&s, sizeof(s)); | |
270 | ||
2d21ac55 | 271 | for (m = m_list; m; m = m->m_nextpkt) { |
39236c6e | 272 | VERIFY(m->m_flags & M_PKTHDR); |
316670eb A |
273 | cnt++; |
274 | len += m->m_pkthdr.len; | |
1c79356b | 275 | |
2d21ac55 A |
276 | /* |
277 | * Don't overwrite the rcvif field if it is in use. | |
278 | * This is used to match multicast packets, sent looping | |
279 | * back, with the appropriate group record on input. | |
280 | */ | |
281 | if (m->m_pkthdr.rcvif == NULL) | |
282 | m->m_pkthdr.rcvif = ifp; | |
91447636 | 283 | |
39236c6e A |
284 | m->m_pkthdr.pkt_flags |= PKTF_LOOP; |
285 | m->m_pkthdr.pkt_hdr = mtod(m, char *); | |
286 | ||
287 | /* loopback checksums are always OK */ | |
288 | m->m_pkthdr.csum_data = 0xffff; | |
289 | m->m_pkthdr.csum_flags = | |
290 | CSUM_DATA_VALID | CSUM_PSEUDO_HDR | | |
291 | CSUM_IP_CHECKED | CSUM_IP_VALID; | |
292 | ||
316670eb A |
293 | m_adj(m, sizeof (struct loopback_header)); |
294 | ||
295 | LO_BPF_TAP_OUT(m); | |
296 | if (m->m_nextpkt == NULL) { | |
297 | m_tail = m; | |
298 | } | |
299 | } | |
300 | ||
301 | s.packets_in = cnt; | |
302 | s.packets_out = cnt; | |
303 | s.bytes_in = len; | |
39236c6e | 304 | s.bytes_out = len; |
316670eb A |
305 | |
306 | return (ifnet_input_extended(ifp, m_list, m_tail, &s)); | |
307 | } | |
308 | ||
309 | /* | |
310 | * Pre-enqueue callback. | |
311 | * | |
312 | * This routine is called only when lo_txstart is enabled. | |
313 | */ | |
314 | static errno_t | |
315 | lo_pre_enqueue(struct ifnet *ifp, struct mbuf *m0) | |
316 | { | |
317 | struct mbuf *m = m0, *n; | |
318 | int error = 0; | |
319 | ||
320 | while (m != NULL) { | |
39236c6e | 321 | VERIFY(m->m_flags & M_PKTHDR); |
91447636 | 322 | |
316670eb A |
323 | n = m->m_nextpkt; |
324 | m->m_nextpkt = NULL; | |
325 | ||
326 | /* | |
327 | * Don't overwrite the rcvif field if it is in use. | |
328 | * This is used to match multicast packets, sent looping | |
329 | * back, with the appropriate group record on input. | |
330 | */ | |
331 | if (m->m_pkthdr.rcvif == NULL) | |
332 | m->m_pkthdr.rcvif = ifp; | |
1c79356b | 333 | |
39236c6e A |
334 | m->m_pkthdr.pkt_flags |= PKTF_LOOP; |
335 | m->m_pkthdr.pkt_hdr = mtod(m, char *); | |
336 | ||
337 | /* loopback checksums are always OK */ | |
338 | m->m_pkthdr.csum_data = 0xffff; | |
339 | m->m_pkthdr.csum_flags = | |
340 | CSUM_DATA_VALID | CSUM_PSEUDO_HDR | | |
341 | CSUM_IP_CHECKED | CSUM_IP_VALID; | |
342 | ||
316670eb A |
343 | m_adj(m, sizeof (struct loopback_header)); |
344 | ||
345 | /* | |
346 | * Let the callee free it in case of error, | |
347 | * and perform any necessary accounting. | |
348 | */ | |
349 | (void) ifnet_enqueue(ifp, m); | |
350 | ||
351 | m = n; | |
1c79356b | 352 | } |
1c79356b | 353 | |
316670eb | 354 | return (error); |
1c79356b A |
355 | } |
356 | ||
316670eb A |
357 | /* |
358 | * Start output callback. | |
359 | * | |
360 | * This routine is invoked by the start worker thread; because we never call | |
361 | * it directly, there is no need do deploy any serialization mechanism other | |
362 | * than what's already used by the worker thread, i.e. this is already single | |
363 | * threaded. | |
364 | * | |
365 | * This routine is called only when lo_txstart is enabled. | |
366 | */ | |
367 | static void | |
368 | lo_start(struct ifnet *ifp) | |
369 | { | |
370 | struct ifnet_stat_increment_param s; | |
371 | ||
372 | bzero(&s, sizeof (s)); | |
373 | ||
374 | for (;;) { | |
375 | struct mbuf *m = NULL, *m_tail = NULL; | |
376 | u_int32_t cnt, len = 0; | |
377 | int sleep_chan = 0; | |
378 | struct timespec ts; | |
379 | ||
380 | if (lo_sched_model == IFNET_SCHED_MODEL_NORMAL) { | |
381 | if (ifnet_dequeue_multi(ifp, lo_dequeue_max, &m, | |
382 | &m_tail, &cnt, &len) != 0) | |
383 | break; | |
384 | } else { | |
385 | if (ifnet_dequeue_service_class_multi(ifp, | |
386 | lo_dequeue_sc, lo_dequeue_max, &m, | |
387 | &m_tail, &cnt, &len) != 0) | |
388 | break; | |
389 | } | |
390 | ||
391 | LO_BPF_TAP_OUT_MULTI(m); | |
392 | ||
393 | if (lo_bw_measure) { | |
394 | if (cnt >= if_bw_measure_size) | |
395 | ifnet_transmit_burst_start(ifp, m); | |
396 | if (lo_bw_sleep_usec > 0) { | |
397 | bzero(&ts, sizeof(ts)); | |
398 | ts.tv_nsec = (lo_bw_sleep_usec << 10) * cnt; | |
399 | ||
400 | /* Add msleep with timeout */ | |
401 | (void) msleep(&sleep_chan, NULL, | |
402 | PSOCK, "lo_start", &ts); | |
403 | } | |
404 | if (cnt >= if_bw_measure_size) | |
405 | ifnet_transmit_burst_end(ifp, m_tail); | |
406 | } | |
407 | ||
408 | /* stats are required for extended variant */ | |
409 | s.packets_in = cnt; | |
410 | s.packets_out = cnt; | |
411 | s.bytes_in = len; | |
412 | s.bytes_out = len; | |
413 | ||
414 | (void) ifnet_input_extended(ifp, m, m_tail, &s); | |
415 | } | |
416 | } | |
1c79356b A |
417 | |
418 | /* | |
91447636 | 419 | * This is a common pre-output route used by INET and INET6. This could |
1c79356b A |
420 | * (should?) be split into separate pre-output routines for each protocol. |
421 | */ | |
2d21ac55 | 422 | static errno_t |
316670eb A |
423 | lo_pre_output(struct ifnet *ifp, protocol_family_t protocol_family, |
424 | struct mbuf **m, const struct sockaddr *dst, void *route, char *frame_type, | |
425 | char *dst_addr) | |
1c79356b | 426 | { |
316670eb A |
427 | #pragma unused(ifp, dst, dst_addr) |
428 | struct rtentry *rt = route; | |
2d21ac55 | 429 | |
39236c6e | 430 | VERIFY((*m)->m_flags & M_PKTHDR); |
1c79356b | 431 | |
39236c6e | 432 | (*m)->m_flags |= M_LOOP; |
1c79356b | 433 | |
b0d623f7 A |
434 | if (rt != NULL) { |
435 | u_int32_t rt_flags = rt->rt_flags; | |
436 | if (rt_flags & (RTF_REJECT | RTF_BLACKHOLE)) { | |
437 | if (rt_flags & RTF_BLACKHOLE) { | |
438 | m_freem(*m); | |
316670eb | 439 | return (EJUSTRETURN); |
b0d623f7 A |
440 | } else { |
441 | return ((rt_flags & RTF_HOST) ? | |
442 | EHOSTUNREACH : ENETUNREACH); | |
443 | } | |
91447636 | 444 | } |
1c79356b | 445 | } |
b0d623f7 | 446 | |
316670eb | 447 | bcopy(&protocol_family, frame_type, sizeof (protocol_family)); |
1c79356b | 448 | |
316670eb | 449 | return (0); |
1c79356b A |
450 | } |
451 | ||
1c79356b A |
452 | /* |
453 | * lo_input - This should work for all attached protocols that use the | |
454 | * ifq/schednetisr input mechanism. | |
455 | */ | |
2d21ac55 | 456 | static errno_t |
316670eb | 457 | lo_input(struct ifnet *ifp, protocol_family_t protocol_family, struct mbuf *m) |
1c79356b | 458 | { |
316670eb | 459 | #pragma unused(ifp, protocol_family) |
91447636 | 460 | if (proto_input(protocol_family, m) != 0) |
1c79356b | 461 | m_freem(m); |
1c79356b A |
462 | return (0); |
463 | } | |
464 | ||
1c79356b A |
465 | /* ARGSUSED */ |
466 | static void | |
316670eb | 467 | lo_rtrequest(int cmd, struct rtentry *rt, struct sockaddr *sa) |
1c79356b | 468 | { |
316670eb | 469 | #pragma unused(cmd, sa) |
b0d623f7 A |
470 | if (rt != NULL) { |
471 | RT_LOCK_ASSERT_HELD(rt); | |
1c79356b A |
472 | rt->rt_rmx.rmx_mtu = rt->rt_ifp->if_mtu; /* for ISO */ |
473 | /* | |
474 | * For optimal performance, the send and receive buffers | |
475 | * should be at least twice the MTU plus a little more for | |
476 | * overhead. | |
477 | */ | |
316670eb | 478 | rt->rt_rmx.rmx_recvpipe = rt->rt_rmx.rmx_sendpipe = 3 * LOMTU; |
1c79356b A |
479 | } |
480 | } | |
481 | ||
482 | /* | |
483 | * Process an ioctl request. | |
484 | */ | |
91447636 | 485 | static errno_t |
316670eb | 486 | lo_ioctl(struct ifnet *ifp, u_long cmd, void *data) |
1c79356b | 487 | { |
316670eb | 488 | int error = 0; |
1c79356b A |
489 | |
490 | switch (cmd) { | |
491 | ||
316670eb A |
492 | case SIOCSIFADDR: { /* struct ifaddr pointer */ |
493 | struct ifaddr *ifa = data; | |
494 | ||
495 | ifnet_set_flags(ifp, IFF_UP|IFF_RUNNING, IFF_UP|IFF_RUNNING); | |
6d2010ae | 496 | IFA_LOCK_SPIN(ifa); |
316670eb | 497 | ifa->ifa_rtrequest = lo_rtrequest; |
6d2010ae | 498 | IFA_UNLOCK(ifa); |
1c79356b A |
499 | /* |
500 | * Everything else is done at a higher level. | |
501 | */ | |
502 | break; | |
316670eb | 503 | } |
1c79356b | 504 | |
316670eb A |
505 | case SIOCADDMULTI: /* struct ifreq */ |
506 | case SIOCDELMULTI: { /* struct ifreq */ | |
507 | struct ifreq *ifr = data; | |
508 | ||
509 | if (ifr == NULL) { | |
1c79356b A |
510 | error = EAFNOSUPPORT; /* XXX */ |
511 | break; | |
512 | } | |
513 | switch (ifr->ifr_addr.sa_family) { | |
514 | ||
515 | #if INET | |
516 | case AF_INET: | |
517 | break; | |
518 | #endif | |
519 | #if INET6 | |
520 | case AF_INET6: | |
521 | break; | |
522 | #endif | |
523 | ||
524 | default: | |
525 | error = EAFNOSUPPORT; | |
526 | break; | |
527 | } | |
528 | break; | |
316670eb A |
529 | } |
530 | ||
531 | case SIOCSIFMTU: { /* struct ifreq */ | |
532 | struct ifreq *ifr = data; | |
1c79356b | 533 | |
316670eb | 534 | bcopy(&ifr->ifr_mtu, &ifp->if_mtu, sizeof (int)); |
1c79356b | 535 | break; |
316670eb | 536 | } |
1c79356b | 537 | |
316670eb | 538 | case SIOCSIFFLAGS: /* struct ifreq */ |
1c79356b A |
539 | break; |
540 | ||
541 | default: | |
542 | error = EOPNOTSUPP; | |
4a249263 | 543 | break; |
1c79356b A |
544 | } |
545 | return (error); | |
546 | } | |
547 | #endif /* NLOOP > 0 */ | |
548 | ||
549 | ||
316670eb A |
550 | static errno_t |
551 | lo_attach_proto(struct ifnet *ifp, protocol_family_t protocol_family) | |
1c79356b | 552 | { |
2d21ac55 A |
553 | struct ifnet_attach_proto_param_v2 proto; |
554 | errno_t result = 0; | |
316670eb A |
555 | |
556 | bzero(&proto, sizeof (proto)); | |
2d21ac55 A |
557 | proto.input = lo_input; |
558 | proto.pre_output = lo_pre_output; | |
316670eb | 559 | |
2d21ac55 | 560 | result = ifnet_attach_protocol_v2(ifp, protocol_family, &proto); |
1c79356b | 561 | |
2d21ac55 | 562 | if (result && result != EEXIST) { |
316670eb A |
563 | printf("lo_attach_proto: ifnet_attach_protocol for %u " |
564 | "returned=%d\n", protocol_family, result); | |
9bccf70c | 565 | } |
316670eb A |
566 | |
567 | return (result); | |
9bccf70c A |
568 | } |
569 | ||
316670eb A |
570 | static void |
571 | lo_reg_if_mods(void) | |
55e303ae | 572 | { |
316670eb | 573 | int error; |
55e303ae | 574 | |
55e303ae | 575 | /* Register protocol registration functions */ |
316670eb A |
576 | if ((error = proto_register_plumber(PF_INET, |
577 | APPLE_IF_FAM_LOOPBACK, lo_attach_proto, NULL)) != 0) | |
578 | printf("proto_register_plumber failed for AF_INET " | |
579 | "error=%d\n", error); | |
580 | ||
581 | if ((error = proto_register_plumber(PF_INET6, | |
582 | APPLE_IF_FAM_LOOPBACK, lo_attach_proto, NULL)) != 0) | |
583 | printf("proto_register_plumber failed for AF_INET6 " | |
584 | "error=%d\n", error); | |
55e303ae | 585 | } |
1c79356b | 586 | |
91447636 | 587 | static errno_t |
316670eb A |
588 | lo_set_bpf_tap(struct ifnet *ifp, bpf_tap_mode mode, |
589 | bpf_packet_func bpf_callback) | |
1c79356b | 590 | { |
316670eb | 591 | VERIFY(ifp == lo_ifp); |
1c79356b | 592 | |
316670eb A |
593 | lo_statics[0].bpf_mode = mode; |
594 | ||
595 | switch (mode) { | |
596 | case BPF_TAP_DISABLE: | |
597 | case BPF_TAP_INPUT: | |
598 | lo_statics[0].bpf_callback = NULL; | |
599 | break; | |
600 | ||
601 | case BPF_TAP_OUTPUT: | |
602 | case BPF_TAP_INPUT_OUTPUT: | |
603 | lo_statics[0].bpf_callback = bpf_callback; | |
604 | break; | |
1c79356b A |
605 | } |
606 | ||
316670eb | 607 | return (0); |
1c79356b A |
608 | } |
609 | ||
1c79356b A |
610 | /* ARGSUSED */ |
611 | void | |
2d21ac55 | 612 | loopattach(void) |
1c79356b | 613 | { |
316670eb | 614 | struct ifnet_init_eparams lo_init; |
2d21ac55 | 615 | errno_t result = 0; |
1c79356b | 616 | |
316670eb | 617 | PE_parse_boot_argn("lo_txstart", &lo_txstart, sizeof (lo_txstart)); |
1c79356b | 618 | |
2d21ac55 | 619 | lo_reg_if_mods(); |
316670eb A |
620 | |
621 | lo_statics[0].bpf_callback = NULL; | |
622 | lo_statics[0].bpf_mode = BPF_TAP_DISABLE; | |
623 | ||
624 | bzero(&lo_init, sizeof (lo_init)); | |
625 | lo_init.ver = IFNET_INIT_CURRENT_VERSION; | |
626 | lo_init.len = sizeof (lo_init); | |
627 | lo_init.sndq_maxlen = LOSNDQ_MAXLEN; | |
628 | if (lo_txstart) { | |
629 | lo_init.flags = 0; | |
630 | lo_init.pre_enqueue = lo_pre_enqueue; | |
631 | lo_init.start = lo_start; | |
632 | lo_init.output_sched_model = lo_sched_model; | |
633 | } else { | |
634 | lo_init.flags = IFNET_INIT_LEGACY; | |
635 | lo_init.output = lo_output; | |
636 | } | |
637 | lo_init.name = "lo"; | |
638 | lo_init.unit = 0; | |
639 | lo_init.family = IFNET_FAMILY_LOOPBACK; | |
640 | lo_init.type = IFT_LOOP; | |
641 | lo_init.demux = lo_demux; | |
642 | lo_init.add_proto = lo_add_proto; | |
643 | lo_init.del_proto = lo_del_proto; | |
39236c6e | 644 | lo_init.framer_extended = lo_framer; |
316670eb A |
645 | lo_init.softc = &lo_statics[0]; |
646 | lo_init.ioctl = lo_ioctl; | |
647 | lo_init.set_bpf_tap = lo_set_bpf_tap; | |
648 | ||
649 | result = ifnet_allocate_extended(&lo_init, &lo_ifp); | |
2d21ac55 | 650 | if (result != 0) { |
316670eb A |
651 | panic("%s: couldn't allocate loopback ifnet (%d)\n", |
652 | __func__, result); | |
653 | /* NOTREACHED */ | |
2d21ac55 | 654 | } |
316670eb | 655 | |
2d21ac55 | 656 | ifnet_set_mtu(lo_ifp, LOMTU); |
316670eb A |
657 | ifnet_set_flags(lo_ifp, IFF_LOOPBACK | IFF_MULTICAST, |
658 | IFF_LOOPBACK | IFF_MULTICAST); | |
659 | ifnet_set_offload(lo_ifp, | |
660 | IFNET_CSUM_IP | IFNET_CSUM_TCP | IFNET_CSUM_UDP | | |
661 | IFNET_CSUM_TCPIPV6 | IFNET_CSUM_UDPIPV6 | IFNET_IPV6_FRAGMENT | | |
662 | IFNET_CSUM_FRAGMENT | IFNET_IP_FRAGMENT | IFNET_MULTIPAGES); | |
663 | ifnet_set_hdrlen(lo_ifp, sizeof (struct loopback_header)); | |
2d21ac55 A |
664 | ifnet_set_eflags(lo_ifp, IFEF_SENDLIST, IFEF_SENDLIST); |
665 | ||
666 | #if CONFIG_MACF_NET | |
316670eb | 667 | mac_ifnet_label_init(ifp); |
1c79356b | 668 | #endif |
2d21ac55 A |
669 | |
670 | result = ifnet_attach(lo_ifp, NULL); | |
671 | if (result != 0) { | |
316670eb A |
672 | panic("%s: couldn't attach loopback ifnet (%d)\n", |
673 | __func__, result); | |
674 | /* NOTREACHED */ | |
675 | } | |
676 | bpfattach(lo_ifp, DLT_NULL, sizeof (u_int32_t)); | |
677 | } | |
678 | ||
679 | static int | |
680 | sysctl_dequeue_max SYSCTL_HANDLER_ARGS | |
681 | { | |
682 | #pragma unused(arg1, arg2) | |
683 | u_int32_t i; | |
684 | int err; | |
685 | ||
686 | i = lo_dequeue_max; | |
687 | ||
688 | err = sysctl_handle_int(oidp, &i, 0, req); | |
689 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
690 | return (err); | |
691 | ||
692 | if (i < 1) | |
693 | i = 1; | |
694 | else if (i > LOSNDQ_MAXLEN) | |
695 | i = LOSNDQ_MAXLEN; | |
696 | ||
697 | lo_dequeue_max = i; | |
698 | ||
699 | return (err); | |
700 | } | |
701 | ||
702 | static int | |
703 | sysctl_sched_model SYSCTL_HANDLER_ARGS | |
704 | { | |
705 | #pragma unused(arg1, arg2) | |
706 | u_int32_t i; | |
707 | int err; | |
708 | ||
709 | i = lo_sched_model; | |
710 | ||
711 | err = sysctl_handle_int(oidp, &i, 0, req); | |
712 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
713 | return (err); | |
714 | ||
715 | switch (i) { | |
716 | case IFNET_SCHED_MODEL_NORMAL: | |
717 | case IFNET_SCHED_MODEL_DRIVER_MANAGED: | |
718 | break; | |
719 | ||
720 | default: | |
721 | err = EINVAL; | |
722 | break; | |
1c79356b | 723 | } |
316670eb A |
724 | |
725 | if (err == 0 && (err = ifnet_set_output_sched_model(lo_ifp, i)) == 0) | |
726 | lo_sched_model = i; | |
727 | ||
728 | return (err); | |
729 | } | |
730 | ||
731 | static int | |
732 | sysctl_dequeue_scidx SYSCTL_HANDLER_ARGS | |
733 | { | |
734 | #pragma unused(arg1, arg2) | |
735 | u_int32_t i; | |
736 | int err; | |
737 | ||
738 | i = lo_dequeue_scidx; | |
739 | ||
740 | err = sysctl_handle_int(oidp, &i, 0, req); | |
741 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
742 | return (err); | |
743 | ||
744 | if (!MBUF_VALID_SCIDX(i)) | |
745 | return (EINVAL); | |
746 | ||
747 | if (lo_sched_model != IFNET_SCHED_MODEL_DRIVER_MANAGED) | |
748 | return (ENODEV); | |
749 | ||
750 | lo_dequeue_sc = m_service_class_from_idx(i); | |
751 | lo_dequeue_scidx = MBUF_SCIDX(lo_dequeue_sc); | |
752 | ||
753 | return (err); | |
1c79356b | 754 | } |