2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1999 Apple Computer, Inc.
25 * Data Link Inteface Layer
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/kernel.h>
32 #include <sys/malloc.h>
34 #include <sys/socket.h>
35 #include <sys/domain.h>
37 #include <net/if_dl.h>
39 #include <net/route.h>
40 #include <net/if_var.h>
42 #include <net/if_arp.h>
43 #include <sys/kern_event.h>
44 #include <sys/kdebug.h>
46 #include <kern/assert.h>
47 #include <kern/task.h>
48 #include <kern/thread.h>
49 #include <kern/sched_prim.h>
50 #include <kern/locks.h>
52 #include <net/if_types.h>
53 #include <net/kpi_interfacefilter.h>
55 #include <libkern/OSAtomic.h>
57 #include <machine/machine_routines.h>
59 #define DBG_LAYER_BEG DLILDBG_CODE(DBG_DLIL_STATIC, 0)
60 #define DBG_LAYER_END DLILDBG_CODE(DBG_DLIL_STATIC, 2)
61 #define DBG_FNC_DLIL_INPUT DLILDBG_CODE(DBG_DLIL_STATIC, (1 << 8))
62 #define DBG_FNC_DLIL_OUTPUT DLILDBG_CODE(DBG_DLIL_STATIC, (2 << 8))
63 #define DBG_FNC_DLIL_IFOUT DLILDBG_CODE(DBG_DLIL_STATIC, (3 << 8))
66 #define MAX_DL_TAGS 16
67 #define MAX_DLIL_FILTERS 16
68 #define MAX_FRAME_TYPE_SIZE 4 /* LONGWORDS */
69 #define MAX_LINKADDR 4 /* LONGWORDS */
70 #define M_NKE M_IFADDR
72 #define PFILT(x) ((struct dlil_filterq_entry *) (x))->variants.pr_filter
73 #define IFILT(x) ((struct dlil_filterq_entry *) (x))->variants.if_filter
76 #define DLIL_PRINTF printf
78 #define DLIL_PRINTF kprintf
87 SLIST_ENTRY(if_proto
) next_hash
;
91 struct domain
*dl_domain
;
92 protocol_family_t protocol_family
;
96 dl_input_func dl_input
;
97 dl_pre_output_func dl_pre_output
;
98 dl_event_func dl_event
;
99 dl_offer_func dl_offer
;
100 dl_ioctl_func dl_ioctl
;
101 dl_detached_func dl_detached
;
104 proto_media_input input
;
105 proto_media_preout pre_output
;
106 proto_media_event event
;
107 proto_media_ioctl ioctl
;
108 proto_media_detached detached
;
109 proto_media_resolve_multi resolve_multi
;
110 proto_media_send_arp send_arp
;
115 SLIST_HEAD(proto_hash_entry
, if_proto
);
119 /* ifnet and drvr_ext are used by the stack and drivers
120 drvr_ext extends the public ifnet and must follow dl_if */
121 struct ifnet dl_if
; /* public ifnet */
123 /* dlil private fields */
124 TAILQ_ENTRY(dlil_ifnet
) dl_if_link
; /* dlil_ifnet are link together */
125 /* it is not the ifnet list */
126 void *if_uniqueid
; /* unique id identifying the interface */
127 size_t if_uniqueid_len
;/* length of the unique id */
128 char if_namestorage
[IFNAMSIZ
]; /* interface name storage */
131 struct ifnet_filter
{
132 TAILQ_ENTRY(ifnet_filter
) filt_next
;
136 const char *filt_name
;
138 protocol_family_t filt_protocol
;
139 iff_input_func filt_input
;
140 iff_output_func filt_output
;
141 iff_event_func filt_event
;
142 iff_ioctl_func filt_ioctl
;
143 iff_detached_func filt_detached
;
146 struct if_family_str
{
147 TAILQ_ENTRY(if_family_str
) if_fam_next
;
152 #define DLIL_SHUTDOWN 1
154 int (*add_if
)(struct ifnet
*ifp
);
155 int (*del_if
)(struct ifnet
*ifp
);
156 int (*init_if
)(struct ifnet
*ifp
);
157 int (*add_proto
)(struct ifnet
*ifp
, u_long protocol_family
, struct ddesc_head_str
*demux_desc_head
);
158 ifnet_del_proto_func del_proto
;
159 ifnet_ioctl_func ifmod_ioctl
;
160 int (*shutdown
)(void);
163 struct proto_family_str
{
164 TAILQ_ENTRY(proto_family_str
) proto_fam_next
;
169 int (*attach_proto
)(struct ifnet
*ifp
, u_long protocol_family
);
170 int (*detach_proto
)(struct ifnet
*ifp
, u_long protocol_family
);
174 kIfNetUseCount_MayBeZero
= 0,
175 kIfNetUseCount_MustNotBeZero
= 1
178 static TAILQ_HEAD(, dlil_ifnet
) dlil_ifnet_head
;
179 static TAILQ_HEAD(, if_family_str
) if_family_head
;
180 static TAILQ_HEAD(, proto_family_str
) proto_family_head
;
181 static lck_grp_t
*dlil_lock_group
;
182 static lck_grp_t
*ifnet_lock_group
;
183 static lck_grp_t
*ifnet_head_lock_group
;
184 static lck_attr_t
*ifnet_lock_attr
;
185 static lck_mtx_t
*proto_family_mutex
;
186 static lck_rw_t
*ifnet_head_mutex
;
187 static lck_mtx_t
*dlil_ifnet_mutex
;
188 static lck_mtx_t
*dlil_mutex
;
189 static unsigned long dlil_read_count
= 0;
190 static unsigned long dlil_detach_waiting
= 0;
191 extern u_int32_t ipv4_ll_arp_aware
;
193 int dlil_initialized
= 0;
194 lck_spin_t
*dlil_input_lock
;
195 __private_extern__ thread_t dlil_input_thread_ptr
= 0;
196 int dlil_input_thread_wakeup
= 0;
197 __private_extern__
int dlil_output_thread_wakeup
= 0;
198 static struct mbuf
*dlil_input_mbuf_head
= NULL
;
199 static struct mbuf
*dlil_input_mbuf_tail
= NULL
;
201 #error dlil_input() needs to be revised to support more than on loopback interface
203 static struct mbuf
*dlil_input_loop_head
= NULL
;
204 static struct mbuf
*dlil_input_loop_tail
= NULL
;
206 static void dlil_input_thread(void);
207 static int dlil_event_internal(struct ifnet
*ifp
, struct kev_msg
*msg
);
208 struct ifnet
*ifbyfamily(u_long family
, short unit
);
209 static int dlil_detach_filter_internal(interface_filter_t filter
, int detached
);
210 static void dlil_call_delayed_detach_thread(void);
212 static void dlil_read_begin(void);
213 static void dlil_read_end(void);
214 static int dlil_write_begin(void);
215 static void dlil_write_end(void);
217 static int ifp_use(struct ifnet
*ifp
, int handle_zero
);
218 static int ifp_unuse(struct ifnet
*ifp
);
219 static void ifp_use_reached_zero(struct ifnet
*ifp
);
221 extern void bpfdetach(struct ifnet
*);
222 extern void proto_input_run(void); // new run_netisr
225 int dlil_input_packet(struct ifnet
*ifp
, struct mbuf
*m
, char *frame_header
);
227 __private_extern__
void link_rtrequest(int, struct rtentry
*, struct sockaddr
*);
231 extern u_int32_t inject_buckets
;
233 static const u_int32_t dlil_writer_waiting
= 0x80000000;
235 static __inline__
void*
236 _cast_non_const(const void * ptr
) {
246 /* Should these be inline? */
248 dlil_read_begin(void)
250 unsigned long new_value
;
251 unsigned long old_value
;
252 struct uthread
*uth
= get_bsdthread_info(current_thread());
254 if (uth
->dlil_incremented_read
== dlil_writer_waiting
)
255 panic("dlil_read_begin - thread is already a writer");
259 old_value
= dlil_read_count
;
261 if ((old_value
& dlil_writer_waiting
) != 0 && uth
->dlil_incremented_read
== 0)
263 tsleep(&dlil_read_count
, PRIBIO
, "dlil_read_count", 1);
267 new_value
= old_value
+ 1;
268 } while (!OSCompareAndSwap((UInt32
)old_value
, (UInt32
)new_value
, (UInt32
*)&dlil_read_count
));
270 uth
->dlil_incremented_read
++;
276 struct uthread
*uth
= get_bsdthread_info(current_thread());
278 OSDecrementAtomic((UInt32
*)&dlil_read_count
);
279 uth
->dlil_incremented_read
--;
280 if (dlil_read_count
== dlil_writer_waiting
)
281 wakeup(_cast_non_const(&dlil_writer_waiting
));
285 dlil_write_begin(void)
287 struct uthread
*uth
= get_bsdthread_info(current_thread());
289 if (uth
->dlil_incremented_read
!= 0) {
292 lck_mtx_lock(dlil_mutex
);
293 OSBitOrAtomic((UInt32
)dlil_writer_waiting
, (UInt32
*)&dlil_read_count
);
295 if (dlil_read_count
== dlil_writer_waiting
) {
296 uth
->dlil_incremented_read
= dlil_writer_waiting
;
300 tsleep(_cast_non_const(&dlil_writer_waiting
), PRIBIO
, "dlil_writer_waiting", 1);
308 struct uthread
*uth
= get_bsdthread_info(current_thread());
310 if (uth
->dlil_incremented_read
!= dlil_writer_waiting
)
311 panic("dlil_write_end - thread is not a writer");
312 OSBitAndAtomic((UInt32
)~dlil_writer_waiting
, (UInt32
*)&dlil_read_count
);
313 lck_mtx_unlock(dlil_mutex
);
314 uth
->dlil_incremented_read
= 0;
315 wakeup(&dlil_read_count
);
318 #define PROTO_HASH_SLOTS 0x5
321 * Internal functions.
325 proto_hash_value(u_long protocol_family
)
327 switch(protocol_family
) {
342 struct if_family_str
*find_family_module(u_long if_family
)
344 struct if_family_str
*mod
= NULL
;
346 TAILQ_FOREACH(mod
, &if_family_head
, if_fam_next
) {
347 if (mod
->if_family
== (if_family
& 0xffff))
355 struct proto_family_str
*
356 find_proto_module(u_long proto_family
, u_long if_family
)
358 struct proto_family_str
*mod
= NULL
;
360 TAILQ_FOREACH(mod
, &proto_family_head
, proto_fam_next
) {
361 if ((mod
->proto_family
== (proto_family
& 0xffff))
362 && (mod
->if_family
== (if_family
& 0xffff)))
369 static struct if_proto
*
370 find_attached_proto(struct ifnet
*ifp
, u_long protocol_family
)
372 struct if_proto
*proto
= NULL
;
373 u_long i
= proto_hash_value(protocol_family
);
374 if (ifp
->if_proto_hash
) {
375 proto
= SLIST_FIRST(&ifp
->if_proto_hash
[i
]);
378 while(proto
&& proto
->protocol_family
!= protocol_family
) {
379 proto
= SLIST_NEXT(proto
, next_hash
);
386 if_proto_ref(struct if_proto
*proto
)
388 OSAddAtomic(1, (UInt32
*)&proto
->refcount
);
392 if_proto_free(struct if_proto
*proto
)
394 int oldval
= OSAddAtomic(-1, (UInt32
*)&proto
->refcount
);
396 if (oldval
== 1) { /* This was the last reference */
397 FREE(proto
, M_IFADDR
);
401 __private_extern__
void
403 __unused
struct ifnet
*ifp
,
408 * Not implemented for rw locks.
410 * Function exists so when/if we use mutex we can
414 lck_mtx_assert(ifp
->if_lock
, what
);
418 __private_extern__
void
423 lck_rw_lock_shared(ifp
->if_lock
);
425 lck_mtx_assert(ifp
->if_lock
, LCK_MTX_ASSERT_NOTOWNED
);
426 lck_mtx_lock(ifp
->if_lock
);
430 __private_extern__
void
431 ifnet_lock_exclusive(
435 lck_rw_lock_exclusive(ifp
->if_lock
);
437 lck_mtx_assert(ifp
->if_lock
, LCK_MTX_ASSERT_NOTOWNED
);
438 lck_mtx_lock(ifp
->if_lock
);
442 __private_extern__
void
447 lck_rw_done(ifp
->if_lock
);
449 lck_mtx_assert(ifp
->if_lock
, LCK_MTX_ASSERT_OWNED
);
450 lck_mtx_unlock(ifp
->if_lock
);
454 __private_extern__
void
455 ifnet_head_lock_shared()
457 lck_rw_lock_shared(ifnet_head_mutex
);
460 __private_extern__
void
461 ifnet_head_lock_exclusive()
463 lck_rw_lock_exclusive(ifnet_head_mutex
);
466 __private_extern__
void
469 lck_rw_done(ifnet_head_mutex
);
475 struct ifnet
*ifbyfamily(u_long family
, short unit
)
479 ifnet_head_lock_shared();
480 TAILQ_FOREACH(ifp
, &ifnet_head
, if_link
)
481 if ((family
== ifp
->if_family
) && (ifp
->if_unit
== unit
))
488 static int dlil_ifp_proto_count(struct ifnet
* ifp
)
493 if (ifp
->if_proto_hash
!= NULL
) {
494 for (i
= 0; i
< PROTO_HASH_SLOTS
; i
++) {
495 struct if_proto
*proto
;
496 SLIST_FOREACH(proto
, &ifp
->if_proto_hash
[i
], next_hash
) {
505 __private_extern__
void
506 dlil_post_msg(struct ifnet
*ifp
, u_long event_subclass
, u_long event_code
,
507 struct net_event_data
*event_data
, u_long event_data_len
)
509 struct net_event_data ev_data
;
510 struct kev_msg ev_msg
;
513 * a net event always start with a net_event_data structure
514 * but the caller can generate a simple net event or
515 * provide a longer event structure to post
518 ev_msg
.vendor_code
= KEV_VENDOR_APPLE
;
519 ev_msg
.kev_class
= KEV_NETWORK_CLASS
;
520 ev_msg
.kev_subclass
= event_subclass
;
521 ev_msg
.event_code
= event_code
;
523 if (event_data
== 0) {
524 event_data
= &ev_data
;
525 event_data_len
= sizeof(struct net_event_data
);
528 strncpy(&event_data
->if_name
[0], ifp
->if_name
, IFNAMSIZ
);
529 event_data
->if_family
= ifp
->if_family
;
530 event_data
->if_unit
= (unsigned long) ifp
->if_unit
;
532 ev_msg
.dv
[0].data_length
= event_data_len
;
533 ev_msg
.dv
[0].data_ptr
= event_data
;
534 ev_msg
.dv
[1].data_length
= 0;
536 dlil_event_internal(ifp
, &ev_msg
);
539 void dlil_init(void);
543 lck_grp_attr_t
*grp_attributes
= 0;
544 lck_attr_t
*lck_attributes
= 0;
545 lck_grp_t
*input_lock_grp
= 0;
547 TAILQ_INIT(&dlil_ifnet_head
);
548 TAILQ_INIT(&if_family_head
);
549 TAILQ_INIT(&proto_family_head
);
550 TAILQ_INIT(&ifnet_head
);
552 /* Setup the lock groups we will use */
553 grp_attributes
= lck_grp_attr_alloc_init();
555 dlil_lock_group
= lck_grp_alloc_init("dlil internal locks", grp_attributes
);
557 ifnet_lock_group
= lck_grp_alloc_init("ifnet locks", grp_attributes
);
559 ifnet_lock_group
= lck_grp_alloc_init("ifnet locks", grp_attributes
);
561 ifnet_head_lock_group
= lck_grp_alloc_init("ifnet head lock", grp_attributes
);
562 input_lock_grp
= lck_grp_alloc_init("dlil input lock", grp_attributes
);
563 lck_grp_attr_free(grp_attributes
);
566 /* Setup the lock attributes we will use */
567 lck_attributes
= lck_attr_alloc_init();
569 ifnet_lock_attr
= lck_attr_alloc_init();
571 dlil_input_lock
= lck_spin_alloc_init(input_lock_grp
, lck_attributes
);
574 ifnet_head_mutex
= lck_rw_alloc_init(ifnet_head_lock_group
, lck_attributes
);
575 proto_family_mutex
= lck_mtx_alloc_init(dlil_lock_group
, lck_attributes
);
576 dlil_ifnet_mutex
= lck_mtx_alloc_init(dlil_lock_group
, lck_attributes
);
577 dlil_mutex
= lck_mtx_alloc_init(dlil_lock_group
, lck_attributes
);
579 lck_attr_free(lck_attributes
);
583 * Start up the dlil input thread once everything is initialized
585 (void) kernel_thread(kernel_task
, dlil_input_thread
);
586 (void) kernel_thread(kernel_task
, dlil_call_delayed_detach_thread
);
592 const struct iff_filter
*if_filter
,
593 interface_filter_t
*filter_ref
)
596 struct ifnet_filter
*filter
;
598 MALLOC(filter
, struct ifnet_filter
*, sizeof(*filter
), M_NKE
, M_WAITOK
);
601 bzero(filter
, sizeof(*filter
));
604 filter
->filt_ifp
= ifp
;
605 filter
->filt_cookie
= if_filter
->iff_cookie
;
606 filter
->filt_name
= if_filter
->iff_name
;
607 filter
->filt_protocol
= if_filter
->iff_protocol
;
608 filter
->filt_input
= if_filter
->iff_input
;
609 filter
->filt_output
= if_filter
->iff_output
;
610 filter
->filt_event
= if_filter
->iff_event
;
611 filter
->filt_ioctl
= if_filter
->iff_ioctl
;
612 filter
->filt_detached
= if_filter
->iff_detached
;
614 if ((retval
= dlil_write_begin()) != 0) {
615 /* Failed to acquire the write lock */
619 TAILQ_INSERT_TAIL(&ifp
->if_flt_head
, filter
, filt_next
);
621 *filter_ref
= filter
;
626 dlil_detach_filter_internal(interface_filter_t filter
, int detached
)
632 interface_filter_t entry
= NULL
;
634 /* Take the write lock */
635 retval
= dlil_write_begin();
636 if (retval
!= 0 && retval
!= EDEADLK
)
640 * At this point either we have the write lock (retval == 0)
641 * or we couldn't get it (retval == EDEADLK) because someone
642 * else up the stack is holding the read lock. It is safe to
643 * read, either the read or write is held. Verify the filter
644 * parameter before proceeding.
646 ifnet_head_lock_shared();
647 TAILQ_FOREACH(ifp
, &ifnet_head
, if_link
) {
648 TAILQ_FOREACH(entry
, &ifp
->if_flt_head
, filt_next
) {
657 if (entry
!= filter
) {
658 /* filter parameter is not a valid filter ref */
665 if (retval
== EDEADLK
) {
666 /* Perform a delayed detach */
667 filter
->filt_detaching
= 1;
668 dlil_detach_waiting
= 1;
669 wakeup(&dlil_detach_waiting
);
673 /* Remove the filter from the list */
674 TAILQ_REMOVE(&ifp
->if_flt_head
, filter
, filt_next
);
678 /* Call the detached funciton if there is one */
679 if (filter
->filt_detached
)
680 filter
->filt_detached(filter
->filt_cookie
, filter
->filt_ifp
);
682 /* Free the filter */
689 dlil_detach_filter(interface_filter_t filter
)
693 dlil_detach_filter_internal(filter
, 0);
697 dlil_input_thread_continue(
699 __unused wait_result_t wait
)
702 struct mbuf
*m
, *m_loop
;
704 lck_spin_lock(dlil_input_lock
);
705 m
= dlil_input_mbuf_head
;
706 dlil_input_mbuf_head
= NULL
;
707 dlil_input_mbuf_tail
= NULL
;
708 m_loop
= dlil_input_loop_head
;
709 dlil_input_loop_head
= NULL
;
710 dlil_input_loop_tail
= NULL
;
711 lck_spin_unlock(dlil_input_lock
);
714 * NOTE warning %%% attention !!!!
715 * We should think about putting some thread starvation safeguards if
716 * we deal with long chains of packets.
719 struct mbuf
*m0
= m
->m_nextpkt
;
720 void *header
= m
->m_pkthdr
.header
;
723 m
->m_pkthdr
.header
= NULL
;
724 (void) dlil_input_packet(m
->m_pkthdr
.rcvif
, m
, header
);
729 struct mbuf
*m0
= m
->m_nextpkt
;
730 void *header
= m
->m_pkthdr
.header
;
731 struct ifnet
*ifp
= &loif
[0];
734 m
->m_pkthdr
.header
= NULL
;
735 (void) dlil_input_packet(ifp
, m
, header
);
741 if (dlil_input_mbuf_head
== NULL
&&
742 dlil_input_loop_head
== NULL
&& inject_buckets
== 0) {
743 assert_wait(&dlil_input_thread_wakeup
, THREAD_UNINT
);
744 (void) thread_block(dlil_input_thread_continue
);
750 void dlil_input_thread(void)
752 register thread_t self
= current_thread();
754 ml_thread_policy(self
, MACHINE_GROUP
,
755 (MACHINE_NETWORK_GROUP
|MACHINE_NETWORK_NETISR
));
757 dlil_initialized
= 1;
758 dlil_input_thread_ptr
= current_thread();
759 dlil_input_thread_continue(NULL
, THREAD_RESTART
);
763 dlil_input_with_stats(
767 const struct ifnet_stat_increment_param
*stats
)
770 * Because of loopbacked multicast we cannot stuff the ifp in
771 * the rcvif of the packet header: loopback has its own dlil
775 lck_spin_lock(dlil_input_lock
);
776 if (ifp
->if_type
!= IFT_LOOP
) {
777 if (dlil_input_mbuf_head
== NULL
)
778 dlil_input_mbuf_head
= m_head
;
779 else if (dlil_input_mbuf_tail
!= NULL
)
780 dlil_input_mbuf_tail
->m_nextpkt
= m_head
;
781 dlil_input_mbuf_tail
= m_tail
? m_tail
: m_head
;
783 if (dlil_input_loop_head
== NULL
)
784 dlil_input_loop_head
= m_head
;
785 else if (dlil_input_loop_tail
!= NULL
)
786 dlil_input_loop_tail
->m_nextpkt
= m_head
;
787 dlil_input_loop_tail
= m_tail
? m_tail
: m_head
;
790 ifp
->if_data
.ifi_ipackets
+= stats
->packets_in
;
791 ifp
->if_data
.ifi_ibytes
+= stats
->bytes_in
;
792 ifp
->if_data
.ifi_ierrors
+= stats
->errors_in
;
794 ifp
->if_data
.ifi_opackets
+= stats
->packets_out
;
795 ifp
->if_data
.ifi_obytes
+= stats
->bytes_out
;
796 ifp
->if_data
.ifi_oerrors
+= stats
->errors_out
;
798 ifp
->if_data
.ifi_collisions
+= stats
->collisions
;
799 ifp
->if_data
.ifi_iqdrops
+= stats
->dropped
;
801 lck_spin_unlock(dlil_input_lock
);
803 wakeup((caddr_t
)&dlil_input_thread_wakeup
);
809 dlil_input(struct ifnet
*ifp
, struct mbuf
*m_head
, struct mbuf
*m_tail
)
811 return dlil_input_with_stats(ifp
, m_head
, m_tail
, NULL
);
815 dlil_input_packet(struct ifnet
*ifp
, struct mbuf
*m
,
819 struct if_proto
*ifproto
= 0;
820 protocol_family_t protocol_family
;
821 struct ifnet_filter
*filter
;
824 KERNEL_DEBUG(DBG_FNC_DLIL_INPUT
| DBG_FUNC_START
,0,0,0,0,0);
827 * Lock the interface while we run through
828 * the filters and the demux. This lock
829 * protects the filter list and the demux list.
834 * Call family demux module. If the demux module finds a match
835 * for the frame it will fill-in the ifproto pointer.
838 retval
= ifp
->if_demux(ifp
, m
, frame_header
, &protocol_family
);
841 if (retval
== EJUSTRETURN
) {
847 if (m
->m_flags
& (M_BCAST
|M_MCAST
))
851 * Run interface filters
854 /* Do not pass VLAN tagged packets to filters PR-3586856 */
855 if ((m
->m_pkthdr
.csum_flags
& CSUM_VLAN_TAG_VALID
) == 0) {
856 TAILQ_FOREACH(filter
, &ifp
->if_flt_head
, filt_next
) {
858 if (filter
->filt_input
&& (filter
->filt_protocol
== 0 ||
859 filter
->filt_protocol
== protocol_family
)) {
860 filter_result
= filter
->filt_input(filter
->filt_cookie
, ifp
, protocol_family
, &m
, &frame_header
);
864 if (filter_result
== EJUSTRETURN
) {
871 return filter_result
;
877 /* Demux is done, interface filters have been processed, unlock the mutex */
878 if (retval
|| ((m
->m_flags
& M_PROMISC
) != 0) ) {
880 if (retval
!= EJUSTRETURN
) {
888 ifproto
= find_attached_proto(ifp
, protocol_family
);
892 DLIL_PRINTF("ERROR - dlil_input - if_demux didn't return an if_proto pointer\n");
898 * Hand the packet off to the protocol.
901 if (ifproto
->dl_domain
&& (ifproto
->dl_domain
->dom_flags
& DOM_REENTRANT
) == 0) {
902 lck_mtx_lock(ifproto
->dl_domain
->dom_mtx
);
905 if (ifproto
->proto_kpi
== kProtoKPI_DLIL
)
906 retval
= (*ifproto
->kpi
.dlil
.dl_input
)(m
, frame_header
,
907 ifp
, ifproto
->protocol_family
,
910 retval
= ifproto
->kpi
.v1
.input(ifp
, ifproto
->protocol_family
, m
, frame_header
);
912 if (ifproto
->dl_domain
&& (ifproto
->dl_domain
->dom_flags
& DOM_REENTRANT
) == 0) {
913 lck_mtx_unlock(ifproto
->dl_domain
->dom_mtx
);
918 if (retval
== EJUSTRETURN
)
924 KERNEL_DEBUG(DBG_FNC_DLIL_INPUT
| DBG_FUNC_END
,0,0,0,0,0);
929 dlil_event_internal(struct ifnet
*ifp
, struct kev_msg
*event
)
931 struct ifnet_filter
*filter
;
933 if (ifp_use(ifp
, kIfNetUseCount_MustNotBeZero
) == 0) {
936 /* Pass the event to the interface filters */
937 TAILQ_FOREACH(filter
, &ifp
->if_flt_head
, filt_next
) {
938 if (filter
->filt_event
)
939 filter
->filt_event(filter
->filt_cookie
, ifp
, filter
->filt_protocol
, event
);
942 if (ifp
->if_proto_hash
) {
945 for (i
= 0; i
< PROTO_HASH_SLOTS
; i
++) {
946 struct if_proto
*proto
;
948 SLIST_FOREACH(proto
, &ifp
->if_proto_hash
[i
], next_hash
) {
949 /* Pass the event to the protocol */
950 if (proto
->proto_kpi
== kProtoKPI_DLIL
) {
951 if (proto
->kpi
.dlil
.dl_event
)
952 proto
->kpi
.dlil
.dl_event(ifp
, event
);
955 if (proto
->kpi
.v1
.event
)
956 proto
->kpi
.v1
.event(ifp
, proto
->protocol_family
, event
);
964 /* Pass the event to the interface */
966 ifp
->if_event(ifp
, event
);
969 ifp_use_reached_zero(ifp
);
972 return kev_post_msg(event
);
976 dlil_event(struct ifnet
*ifp
, struct kern_event_msg
*event
)
980 struct kev_msg kev_msg
;
982 kev_msg
.vendor_code
= event
->vendor_code
;
983 kev_msg
.kev_class
= event
->kev_class
;
984 kev_msg
.kev_subclass
= event
->kev_subclass
;
985 kev_msg
.event_code
= event
->event_code
;
986 kev_msg
.dv
[0].data_ptr
= &event
->event_data
[0];
987 kev_msg
.dv
[0].data_length
= event
->total_size
- KEV_MSG_HEADER_SIZE
;
988 kev_msg
.dv
[1].data_length
= 0;
991 result
= dlil_event_internal(ifp
, &kev_msg
);
1000 u_long proto_family
,
1001 struct mbuf
*packetlist
,
1003 const struct sockaddr
*dest
,
1006 char *frame_type
= 0;
1007 char *dst_linkaddr
= 0;
1008 int error
, retval
= 0;
1009 char frame_type_buffer
[MAX_FRAME_TYPE_SIZE
* 4];
1010 char dst_linkaddr_buffer
[MAX_LINKADDR
* 4];
1011 struct ifnet_filter
*filter
;
1012 struct if_proto
*proto
= 0;
1015 KERNEL_DEBUG(DBG_FNC_DLIL_OUTPUT
| DBG_FUNC_START
,0,0,0,0,0);
1017 if ((raw
!= 0) || proto_family
!= PF_INET
|| do_brige
) {
1019 if ((raw
!= 0) || proto_family
!= PF_INET
) {
1021 while (packetlist
) {
1023 packetlist
= packetlist
->m_nextpkt
;
1024 m
->m_nextpkt
= NULL
;
1025 error
= dlil_output(ifp
, proto_family
, m
, route
, dest
, raw
);
1028 m_freem_list(packetlist
);
1037 frame_type
= frame_type_buffer
;
1038 dst_linkaddr
= dst_linkaddr_buffer
;
1040 packetlist
= packetlist
->m_nextpkt
;
1041 m
->m_nextpkt
= NULL
;
1043 proto
= find_attached_proto(ifp
, proto_family
);
1044 if (proto
== NULL
) {
1050 if (proto
->proto_kpi
== kProtoKPI_DLIL
) {
1051 if (proto
->kpi
.dlil
.dl_pre_output
)
1052 retval
= proto
->kpi
.dlil
.dl_pre_output(ifp
, proto_family
, &m
, dest
, route
, frame_type
, dst_linkaddr
);
1055 if (proto
->kpi
.v1
.pre_output
)
1056 retval
= proto
->kpi
.v1
.pre_output(ifp
, proto_family
, &m
, dest
, route
, frame_type
, dst_linkaddr
);
1060 if (retval
!= EJUSTRETURN
) {
1069 if (ifp
->if_framer
) {
1070 retval
= ifp
->if_framer(ifp
, &m
, dest
, dst_linkaddr
, frame_type
);
1072 if (retval
!= EJUSTRETURN
) {
1080 * Let interface filters (if any) do their thing ...
1082 /* Do not pass VLAN tagged packets to filters PR-3586856 */
1083 if ((m
->m_pkthdr
.csum_flags
& CSUM_VLAN_TAG_VALID
) == 0) {
1084 TAILQ_FOREACH(filter
, &ifp
->if_flt_head
, filt_next
) {
1085 if ((filter
->filt_protocol
== 0 || (filter
->filt_protocol
== proto_family
)) &&
1086 filter
->filt_output
) {
1087 retval
= filter
->filt_output(filter
->filt_cookie
, ifp
, proto_family
, &m
);
1089 if (retval
== EJUSTRETURN
)
1100 * Finally, call the driver.
1103 KERNEL_DEBUG(DBG_FNC_DLIL_IFOUT
| DBG_FUNC_START
, 0,0,0,0,0);
1104 retval
= ifp
->if_output(ifp
, m
);
1106 printf("dlil_output_list: output error retval = %x\n", retval
);
1109 KERNEL_DEBUG(DBG_FNC_DLIL_IFOUT
| DBG_FUNC_END
, 0,0,0,0,0);
1113 packetlist
= packetlist
->m_nextpkt
;
1114 m
->m_nextpkt
= NULL
;
1119 KERNEL_DEBUG(DBG_FNC_DLIL_OUTPUT
| DBG_FUNC_END
,0,0,0,0,0);
1123 if (packetlist
) /* if any packet left, clean up */
1124 m_freem_list(packetlist
);
1125 if (retval
== EJUSTRETURN
)
1133 * Caller should have a lock on the protocol domain if the protocol
1134 * doesn't support finer grained locking. In most cases, the lock
1135 * will be held from the socket layer and won't be released until
1136 * we return back to the socket layer.
1138 * This does mean that we must take a protocol lock before we take
1139 * an interface lock if we're going to take both. This makes sense
1140 * because a protocol is likely to interact with an ifp while it
1141 * is under the protocol lock.
1146 u_long proto_family
,
1149 const struct sockaddr
*dest
,
1152 char *frame_type
= 0;
1153 char *dst_linkaddr
= 0;
1155 char frame_type_buffer
[MAX_FRAME_TYPE_SIZE
* 4];
1156 char dst_linkaddr_buffer
[MAX_LINKADDR
* 4];
1157 struct ifnet_filter
*filter
;
1159 KERNEL_DEBUG(DBG_FNC_DLIL_OUTPUT
| DBG_FUNC_START
,0,0,0,0,0);
1163 frame_type
= frame_type_buffer
;
1164 dst_linkaddr
= dst_linkaddr_buffer
;
1167 struct if_proto
*proto
= 0;
1169 proto
= find_attached_proto(ifp
, proto_family
);
1170 if (proto
== NULL
) {
1177 if (proto
->proto_kpi
== kProtoKPI_DLIL
) {
1178 if (proto
->kpi
.dlil
.dl_pre_output
)
1179 retval
= proto
->kpi
.dlil
.dl_pre_output(ifp
, proto_family
, &m
, dest
, route
, frame_type
, dst_linkaddr
);
1182 if (proto
->kpi
.v1
.pre_output
)
1183 retval
= proto
->kpi
.v1
.pre_output(ifp
, proto_family
, &m
, dest
, route
, frame_type
, dst_linkaddr
);
1187 if (retval
!= EJUSTRETURN
) {
1195 * Call framing module
1197 if ((raw
== 0) && (ifp
->if_framer
)) {
1198 retval
= ifp
->if_framer(ifp
, &m
, dest
, dst_linkaddr
, frame_type
);
1200 if (retval
!= EJUSTRETURN
) {
1210 * Need to consider how to handle this.
1214 struct mbuf
*m0
= m
;
1215 struct ether_header
*eh
= mtod(m
, struct ether_header
*);
1217 if (m
->m_pkthdr
.rcvif
)
1218 m
->m_pkthdr
.rcvif
= NULL
;
1219 ifp
= bridge_dst_lookup(eh
);
1220 bdg_forward(&m0
, ifp
);
1230 * Let interface filters (if any) do their thing ...
1233 /* Do not pass VLAN tagged packets to filters PR-3586856 */
1234 if ((m
->m_pkthdr
.csum_flags
& CSUM_VLAN_TAG_VALID
) == 0) {
1235 TAILQ_FOREACH(filter
, &ifp
->if_flt_head
, filt_next
) {
1236 if ((filter
->filt_protocol
== 0 || (filter
->filt_protocol
== proto_family
)) &&
1237 filter
->filt_output
) {
1238 retval
= filter
->filt_output(filter
->filt_cookie
, ifp
, proto_family
, &m
);
1240 if (retval
!= EJUSTRETURN
)
1249 * Finally, call the driver.
1252 KERNEL_DEBUG(DBG_FNC_DLIL_IFOUT
| DBG_FUNC_START
, 0,0,0,0,0);
1253 retval
= ifp
->if_output(ifp
, m
);
1254 KERNEL_DEBUG(DBG_FNC_DLIL_IFOUT
| DBG_FUNC_END
, 0,0,0,0,0);
1256 KERNEL_DEBUG(DBG_FNC_DLIL_OUTPUT
| DBG_FUNC_END
,0,0,0,0,0);
1260 if (retval
== EJUSTRETURN
)
1266 dlil_ioctl(u_long proto_fam
,
1271 struct ifnet_filter
*filter
;
1272 int retval
= EOPNOTSUPP
;
1274 struct if_family_str
*if_family
;
1275 int holding_read
= 0;
1277 /* Attempt to increment the use count. If it's zero, bail out, the ifp is invalid */
1278 result
= ifp_use(ifp
, kIfNetUseCount_MustNotBeZero
);
1285 /* Run the interface filters first.
1286 * We want to run all filters before calling the protocol,
1287 * interface family, or interface.
1289 TAILQ_FOREACH(filter
, &ifp
->if_flt_head
, filt_next
) {
1290 if ((filter
->filt_protocol
== 0 || (filter
->filt_protocol
== proto_fam
)) &&
1291 filter
->filt_ioctl
!= NULL
) {
1292 result
= filter
->filt_ioctl(filter
->filt_cookie
, ifp
, proto_fam
, ioctl_code
, ioctl_arg
);
1293 /* Only update retval if no one has handled the ioctl */
1294 if (retval
== EOPNOTSUPP
|| result
== EJUSTRETURN
) {
1295 if (result
== ENOTSUP
)
1296 result
= EOPNOTSUPP
;
1298 if (retval
&& retval
!= EOPNOTSUPP
) {
1305 /* Allow the protocol to handle the ioctl */
1307 struct if_proto
*proto
= find_attached_proto(ifp
, proto_fam
);
1310 result
= EOPNOTSUPP
;
1311 if (proto
->proto_kpi
== kProtoKPI_DLIL
) {
1312 if (proto
->kpi
.dlil
.dl_ioctl
)
1313 result
= proto
->kpi
.dlil
.dl_ioctl(proto_fam
, ifp
, ioctl_code
, ioctl_arg
);
1316 if (proto
->kpi
.v1
.ioctl
)
1317 result
= proto
->kpi
.v1
.ioctl(ifp
, proto_fam
, ioctl_code
, ioctl_arg
);
1320 /* Only update retval if no one has handled the ioctl */
1321 if (retval
== EOPNOTSUPP
|| result
== EJUSTRETURN
) {
1322 if (result
== ENOTSUP
)
1323 result
= EOPNOTSUPP
;
1325 if (retval
&& retval
!= EOPNOTSUPP
) {
1333 * Since we have incremented the use count on the ifp, we are guaranteed
1334 * that the ifp will not go away (the function pointers may not be changed).
1335 * We release the dlil read lock so the interface ioctl may trigger a
1336 * protocol attach. This happens with vlan and may occur with other virtual
1342 /* retval is either 0 or EOPNOTSUPP */
1345 * Let the family handle this ioctl.
1346 * If it returns something non-zero and not EOPNOTSUPP, we're done.
1347 * If it returns zero, the ioctl was handled, so set retval to zero.
1349 if_family
= find_family_module(ifp
->if_family
);
1350 if ((if_family
) && (if_family
->ifmod_ioctl
)) {
1351 result
= (*if_family
->ifmod_ioctl
)(ifp
, ioctl_code
, ioctl_arg
);
1353 /* Only update retval if no one has handled the ioctl */
1354 if (retval
== EOPNOTSUPP
|| result
== EJUSTRETURN
) {
1355 if (result
== ENOTSUP
)
1356 result
= EOPNOTSUPP
;
1358 if (retval
&& retval
!= EOPNOTSUPP
) {
1365 * Let the interface handle this ioctl.
1366 * If it returns EOPNOTSUPP, ignore that, we may have
1367 * already handled this in the protocol or family.
1370 result
= (*ifp
->if_ioctl
)(ifp
, ioctl_code
, ioctl_arg
);
1372 /* Only update retval if no one has handled the ioctl */
1373 if (retval
== EOPNOTSUPP
|| result
== EJUSTRETURN
) {
1374 if (result
== ENOTSUP
)
1375 result
= EOPNOTSUPP
;
1377 if (retval
&& retval
!= EOPNOTSUPP
) {
1386 ifp_use_reached_zero(ifp
);
1388 if (retval
== EJUSTRETURN
)
1393 __private_extern__ errno_t
1397 bpf_packet_func callback
)
1402 if (ifp
->if_set_bpf_tap
)
1403 error
= ifp
->if_set_bpf_tap(ifp
, mode
, callback
);
1409 __private_extern__ errno_t
1412 const struct sockaddr
*proto_addr
,
1413 struct sockaddr
*ll_addr
,
1416 errno_t result
= EOPNOTSUPP
;
1417 struct if_proto
*proto
;
1418 const struct sockaddr
*verify
;
1422 bzero(ll_addr
, ll_len
);
1424 /* Call the protocol first */
1425 proto
= find_attached_proto(ifp
, proto_addr
->sa_family
);
1426 if (proto
!= NULL
&& proto
->proto_kpi
!= kProtoKPI_DLIL
&&
1427 proto
->kpi
.v1
.resolve_multi
!= NULL
) {
1428 result
= proto
->kpi
.v1
.resolve_multi(ifp
, proto_addr
,
1429 (struct sockaddr_dl
*)ll_addr
, ll_len
);
1432 /* Let the interface verify the multicast address */
1433 if ((result
== EOPNOTSUPP
|| result
== 0) && ifp
->if_check_multi
) {
1437 verify
= proto_addr
;
1438 result
= ifp
->if_check_multi(ifp
, verify
);
1446 __private_extern__ errno_t
1447 dlil_send_arp_internal(
1450 const struct sockaddr_dl
* sender_hw
,
1451 const struct sockaddr
* sender_proto
,
1452 const struct sockaddr_dl
* target_hw
,
1453 const struct sockaddr
* target_proto
)
1455 struct if_proto
*proto
;
1460 proto
= find_attached_proto(ifp
, target_proto
->sa_family
);
1461 if (proto
== NULL
|| proto
->proto_kpi
== kProtoKPI_DLIL
||
1462 proto
->kpi
.v1
.send_arp
== NULL
) {
1466 result
= proto
->kpi
.v1
.send_arp(ifp
, arpop
, sender_hw
, sender_proto
,
1467 target_hw
, target_proto
);
1475 __private_extern__ errno_t
1479 const struct sockaddr_dl
* sender_hw
,
1480 const struct sockaddr
* sender_proto
,
1481 const struct sockaddr_dl
* target_hw
,
1482 const struct sockaddr
* target_proto
)
1486 if (target_proto
== NULL
|| (sender_proto
&&
1487 sender_proto
->sa_family
!= target_proto
->sa_family
))
1491 * If this is an ARP request and the target IP is IPv4LL,
1492 * send the request on all interfaces.
1494 if (IN_LINKLOCAL(((const struct sockaddr_in
*)target_proto
)->sin_addr
.s_addr
)
1495 && ipv4_ll_arp_aware
!= 0 && target_proto
->sa_family
== AF_INET
&&
1496 arpop
== ARPOP_REQUEST
) {
1503 if (ifnet_list_get(IFNET_FAMILY_ANY
, &ifp_list
, &count
) == 0) {
1504 for (ifp_on
= 0; ifp_on
< count
; ifp_on
++) {
1506 ifaddr_t source_hw
= NULL
;
1507 ifaddr_t source_ip
= NULL
;
1508 struct sockaddr_in source_ip_copy
;
1511 * Only arp on interfaces marked for IPv4LL ARPing. This may
1512 * mean that we don't ARP on the interface the subnet route
1515 if ((ifp_list
[ifp_on
]->if_eflags
& IFEF_ARPLL
) == 0) {
1519 source_hw
= TAILQ_FIRST(&ifp_list
[ifp_on
]->if_addrhead
);
1521 /* Find the source IP address */
1522 ifnet_lock_shared(ifp_list
[ifp_on
]);
1523 TAILQ_FOREACH(source_ip
, &ifp_list
[ifp_on
]->if_addrhead
,
1525 if (source_ip
->ifa_addr
&&
1526 source_ip
->ifa_addr
->sa_family
== AF_INET
) {
1531 /* No IP Source, don't arp */
1532 if (source_ip
== NULL
) {
1533 ifnet_lock_done(ifp_list
[ifp_on
]);
1537 /* Copy the source IP address */
1538 source_ip_copy
= *(struct sockaddr_in
*)source_ip
->ifa_addr
;
1540 ifnet_lock_done(ifp_list
[ifp_on
]);
1543 new_result
= dlil_send_arp_internal(ifp_list
[ifp_on
], arpop
,
1544 (struct sockaddr_dl
*)source_hw
->ifa_addr
,
1545 (struct sockaddr
*)&source_ip_copy
, NULL
,
1548 if (result
== ENOTSUP
) {
1549 result
= new_result
;
1554 ifnet_list_free(ifp_list
);
1557 result
= dlil_send_arp_internal(ifp
, arpop
, sender_hw
, sender_proto
,
1558 target_hw
, target_proto
);
1573 old_value
= ifp
->if_usecnt
;
1574 if (old_value
== 0 && handle_zero
== kIfNetUseCount_MustNotBeZero
) {
1575 retval
= ENXIO
; // ifp is invalid
1578 } while (!OSCompareAndSwap((UInt32
)old_value
, (UInt32
)old_value
+ 1, (UInt32
*)&ifp
->if_usecnt
));
1583 /* ifp_unuse is broken into two pieces.
1585 * ifp_use and ifp_unuse must be called between when the caller calls
1586 * dlil_write_begin and dlil_write_end. ifp_unuse needs to perform some
1587 * operations after dlil_write_end has been called. For this reason,
1588 * anyone calling ifp_unuse must call ifp_use_reached_zero if ifp_unuse
1589 * returns a non-zero value. The caller must call ifp_use_reached_zero
1590 * after the caller has called dlil_write_end.
1593 ifp_use_reached_zero(
1596 struct if_family_str
*if_family
;
1597 ifnet_detached_func free_func
;
1601 if (ifp
->if_usecnt
!= 0)
1602 panic("ifp_use_reached_zero: ifp->if_usecnt != 0");
1604 /* Let BPF know we're detaching */
1607 ifnet_head_lock_exclusive();
1608 ifnet_lock_exclusive(ifp
);
1610 /* Remove ourselves from the list */
1611 TAILQ_REMOVE(&ifnet_head
, ifp
, if_link
);
1612 ifnet_addrs
[ifp
->if_index
- 1] = 0;
1614 /* ifp should be removed from the interface list */
1615 while (ifp
->if_multiaddrs
.lh_first
) {
1616 struct ifmultiaddr
*ifma
= ifp
->if_multiaddrs
.lh_first
;
1619 * When the interface is gone, we will no longer
1620 * be listening on these multicasts. Various bits
1621 * of the stack may be referencing these multicasts,
1622 * release only our reference.
1624 LIST_REMOVE(ifma
, ifma_link
);
1625 ifma
->ifma_ifp
= NULL
;
1630 ifp
->if_eflags
&= ~IFEF_DETACHING
; // clear the detaching flag
1631 ifnet_lock_done(ifp
);
1633 if_family
= find_family_module(ifp
->if_family
);
1634 if (if_family
&& if_family
->del_if
)
1635 if_family
->del_if(ifp
);
1637 if (--if_family
->if_usecnt
== 0) {
1638 if (if_family
->shutdown
)
1639 (*if_family
->shutdown
)();
1641 TAILQ_REMOVE(&if_family_head
, if_family
, if_fam_next
);
1642 FREE(if_family
, M_IFADDR
);
1646 dlil_post_msg(ifp
, KEV_DL_SUBCLASS
, KEV_DL_IF_DETACHED
, 0, 0);
1647 free_func
= ifp
->if_free
;
1659 oldval
= OSDecrementAtomic((UInt32
*)&ifp
->if_usecnt
);
1661 panic("ifp_unuse: ifp(%s%n)->if_usecnt was zero\n", ifp
->if_name
, ifp
->if_unit
);
1666 if ((ifp
->if_eflags
& IFEF_DETACHING
) == 0)
1667 panic("ifp_unuse: use count reached zero but detching flag is not set!");
1669 return 1; /* caller must call ifp_use_reached_zero */
1677 oldval
= OSIncrementAtomic(&ifp
->if_refcnt
);
1685 oldval
= OSDecrementAtomic((UInt32
*)&ifp
->if_refcnt
);
1687 panic("dlil_if_reference - refcount decremented past zero!");
1690 extern lck_mtx_t
*domain_proto_mtx
;
1693 dlil_attach_protocol_internal(
1694 struct if_proto
*proto
,
1695 const struct ddesc_head_str
*demux
,
1696 const struct ifnet_demux_desc
*demux_list
,
1697 u_int32_t demux_count
)
1699 struct ddesc_head_str temp_head
;
1700 struct kev_dl_proto_data ev_pr_data
;
1701 struct ifnet
*ifp
= proto
->ifp
;
1703 u_long hash_value
= proto_hash_value(proto
->protocol_family
);
1704 int if_using_kpi
= (ifp
->if_eflags
& IFEF_USEKPI
) != 0;
1705 void* free_me
= NULL
;
1707 /* setup some of the common values */
1710 lck_mtx_lock(domain_proto_mtx
);
1711 struct domain
*dp
= domains
;
1712 while (dp
&& (protocol_family_t
)dp
->dom_family
!= proto
->protocol_family
)
1714 proto
->dl_domain
= dp
;
1715 lck_mtx_unlock(domain_proto_mtx
);
1719 * Convert the demux descriptors to a type the interface
1720 * will understand. Checking e_flags should be safe, this
1721 * flag won't change.
1723 if (if_using_kpi
&& demux
) {
1724 /* Convert the demux linked list to a demux_list */
1725 struct dlil_demux_desc
*demux_entry
;
1726 struct ifnet_demux_desc
*temp_list
= NULL
;
1729 TAILQ_FOREACH(demux_entry
, demux
, next
) {
1733 temp_list
= _MALLOC(sizeof(struct ifnet_demux_desc
) * i
, M_TEMP
, M_WAITOK
);
1734 free_me
= temp_list
;
1736 if (temp_list
== NULL
)
1740 TAILQ_FOREACH(demux_entry
, demux
, next
) {
1741 /* dlil_demux_desc types 1, 2, and 3 are obsolete and can not be translated */
1742 if (demux_entry
->type
== 1 ||
1743 demux_entry
->type
== 2 ||
1744 demux_entry
->type
== 3) {
1745 FREE(free_me
, M_TEMP
);
1749 temp_list
[i
].type
= demux_entry
->type
;
1750 temp_list
[i
].data
= demux_entry
->native_type
;
1751 temp_list
[i
].datalen
= demux_entry
->variants
.native_type_length
;
1755 demux_list
= temp_list
;
1757 else if (!if_using_kpi
&& demux_list
!= NULL
) {
1758 struct dlil_demux_desc
*demux_entry
;
1761 demux_entry
= _MALLOC(sizeof(struct dlil_demux_desc
) * demux_count
, M_TEMP
, M_WAITOK
);
1762 free_me
= demux_entry
;
1763 if (demux_entry
== NULL
)
1766 TAILQ_INIT(&temp_head
);
1768 for (i
= 0; i
< demux_count
; i
++) {
1769 demux_entry
[i
].type
= demux_list
[i
].type
;
1770 demux_entry
[i
].native_type
= demux_list
[i
].data
;
1771 demux_entry
[i
].variants
.native_type_length
= demux_list
[i
].datalen
;
1772 TAILQ_INSERT_TAIL(&temp_head
, &demux_entry
[i
], next
);
1778 * Take the write lock to protect readers and exclude other writers.
1782 /* Check that the interface isn't currently detaching */
1783 ifnet_lock_shared(ifp
);
1784 if ((ifp
->if_eflags
& IFEF_DETACHING
) != 0) {
1785 ifnet_lock_done(ifp
);
1788 FREE(free_me
, M_TEMP
);
1791 ifnet_lock_done(ifp
);
1793 if (find_attached_proto(ifp
, proto
->protocol_family
) != NULL
) {
1796 FREE(free_me
, M_TEMP
);
1801 * Call family module add_proto routine so it can refine the
1802 * demux descriptors as it wishes.
1805 retval
= ifp
->if_add_proto_u
.kpi(ifp
, proto
->protocol_family
, demux_list
, demux_count
);
1807 retval
= ifp
->if_add_proto_u
.original(ifp
, proto
->protocol_family
,
1808 _cast_non_const(demux
));
1813 FREE(free_me
, M_TEMP
);
1818 * We can't fail from this point on.
1819 * Increment the number of uses (protocol attachments + interface attached).
1821 ifp_use(ifp
, kIfNetUseCount_MustNotBeZero
);
1824 * Insert the protocol in the hash
1827 struct if_proto
* prev_proto
= SLIST_FIRST(&ifp
->if_proto_hash
[hash_value
]);
1828 while (prev_proto
&& SLIST_NEXT(prev_proto
, next_hash
) != NULL
)
1829 prev_proto
= SLIST_NEXT(prev_proto
, next_hash
);
1831 SLIST_INSERT_AFTER(prev_proto
, proto
, next_hash
);
1833 SLIST_INSERT_HEAD(&ifp
->if_proto_hash
[hash_value
], proto
, next_hash
);
1837 * Add to if_proto list for this interface
1839 if_proto_ref(proto
);
1840 if (proto
->proto_kpi
== kProtoKPI_DLIL
&& proto
->kpi
.dlil
.dl_offer
)
1844 /* the reserved field carries the number of protocol still attached (subject to change) */
1845 ev_pr_data
.proto_family
= proto
->protocol_family
;
1846 ev_pr_data
.proto_remaining_count
= dlil_ifp_proto_count(ifp
);
1847 dlil_post_msg(ifp
, KEV_DL_SUBCLASS
, KEV_DL_PROTO_ATTACHED
,
1848 (struct net_event_data
*)&ev_pr_data
,
1849 sizeof(struct kev_dl_proto_data
));
1851 DLIL_PRINTF("Attached protocol %d to %s%d - %d\n", proto
->protocol_family
,
1852 ifp
->if_name
, ifp
->if_unit
, retval
);
1854 FREE(free_me
, M_TEMP
);
1858 __private_extern__
int
1859 dlil_attach_protocol_kpi(ifnet_t ifp
, protocol_family_t protocol
,
1860 const struct ifnet_attach_proto_param
*proto_details
)
1863 struct if_proto
*ifproto
= NULL
;
1865 ifproto
= _MALLOC(sizeof(struct if_proto
), M_IFADDR
, M_WAITOK
);
1867 DLIL_PRINTF("ERROR - DLIL failed if_proto allocation\n");
1871 bzero(ifproto
, sizeof(*ifproto
));
1874 ifproto
->protocol_family
= protocol
;
1875 ifproto
->proto_kpi
= kProtoKPI_v1
;
1876 ifproto
->kpi
.v1
.input
= proto_details
->input
;
1877 ifproto
->kpi
.v1
.pre_output
= proto_details
->pre_output
;
1878 ifproto
->kpi
.v1
.event
= proto_details
->event
;
1879 ifproto
->kpi
.v1
.ioctl
= proto_details
->ioctl
;
1880 ifproto
->kpi
.v1
.detached
= proto_details
->detached
;
1881 ifproto
->kpi
.v1
.resolve_multi
= proto_details
->resolve
;
1882 ifproto
->kpi
.v1
.send_arp
= proto_details
->send_arp
;
1884 retval
= dlil_attach_protocol_internal(ifproto
, NULL
,
1885 proto_details
->demux_list
, proto_details
->demux_count
);
1888 if (retval
&& ifproto
)
1889 FREE(ifproto
, M_IFADDR
);
1894 dlil_attach_protocol(struct dlil_proto_reg_str
*proto
)
1896 struct ifnet
*ifp
= NULL
;
1897 struct if_proto
*ifproto
= NULL
;
1901 * Do everything we can before taking the write lock
1904 if ((proto
->protocol_family
== 0) || (proto
->interface_family
== 0))
1908 * Allocate and init a new if_proto structure
1910 ifproto
= _MALLOC(sizeof(struct if_proto
), M_IFADDR
, M_WAITOK
);
1912 DLIL_PRINTF("ERROR - DLIL failed if_proto allocation\n");
1918 /* ifbyfamily returns us an ifp with an incremented if_usecnt */
1919 ifp
= ifbyfamily(proto
->interface_family
, proto
->unit_number
);
1921 DLIL_PRINTF("dlil_attach_protocol -- no such interface %d unit %d\n",
1922 proto
->interface_family
, proto
->unit_number
);
1927 bzero(ifproto
, sizeof(struct if_proto
));
1930 ifproto
->protocol_family
= proto
->protocol_family
;
1931 ifproto
->proto_kpi
= kProtoKPI_DLIL
;
1932 ifproto
->kpi
.dlil
.dl_input
= proto
->input
;
1933 ifproto
->kpi
.dlil
.dl_pre_output
= proto
->pre_output
;
1934 ifproto
->kpi
.dlil
.dl_event
= proto
->event
;
1935 ifproto
->kpi
.dlil
.dl_offer
= proto
->offer
;
1936 ifproto
->kpi
.dlil
.dl_ioctl
= proto
->ioctl
;
1937 ifproto
->kpi
.dlil
.dl_detached
= proto
->detached
;
1939 retval
= dlil_attach_protocol_internal(ifproto
, &proto
->demux_desc_head
, NULL
, 0);
1942 if (retval
&& ifproto
)
1943 FREE(ifproto
, M_IFADDR
);
1947 extern void if_rtproto_del(struct ifnet
*ifp
, int protocol
);
1950 dlil_detach_protocol_internal(
1951 struct if_proto
*proto
)
1953 struct ifnet
*ifp
= proto
->ifp
;
1954 u_long proto_family
= proto
->protocol_family
;
1955 struct kev_dl_proto_data ev_pr_data
;
1957 if (proto
->proto_kpi
== kProtoKPI_DLIL
) {
1958 if (proto
->kpi
.dlil
.dl_detached
)
1959 proto
->kpi
.dlil
.dl_detached(proto
->protocol_family
, ifp
);
1962 if (proto
->kpi
.v1
.detached
)
1963 proto
->kpi
.v1
.detached(ifp
, proto
->protocol_family
);
1965 if_proto_free(proto
);
1968 * Cleanup routes that may still be in the routing table for that interface/protocol pair.
1971 if_rtproto_del(ifp
, proto_family
);
1973 /* the reserved field carries the number of protocol still attached (subject to change) */
1974 ev_pr_data
.proto_family
= proto_family
;
1975 ev_pr_data
.proto_remaining_count
= dlil_ifp_proto_count(ifp
);
1976 dlil_post_msg(ifp
, KEV_DL_SUBCLASS
, KEV_DL_PROTO_DETACHED
,
1977 (struct net_event_data
*)&ev_pr_data
,
1978 sizeof(struct kev_dl_proto_data
));
1983 dlil_detach_protocol(struct ifnet
*ifp
, u_long proto_family
)
1985 struct if_proto
*proto
= NULL
;
1987 int use_reached_zero
= 0;
1990 if ((retval
= dlil_write_begin()) != 0) {
1991 if (retval
== EDEADLK
) {
1994 proto
= find_attached_proto(ifp
, proto_family
);
1999 proto
->detaching
= 1;
2000 dlil_detach_waiting
= 1;
2001 wakeup(&dlil_detach_waiting
);
2008 proto
= find_attached_proto(ifp
, proto_family
);
2010 if (proto
== NULL
) {
2017 * Call family module del_proto
2020 if (ifp
->if_del_proto
)
2021 ifp
->if_del_proto(ifp
, proto
->protocol_family
);
2023 if (proto
->proto_kpi
== kProtoKPI_DLIL
&& proto
->kpi
.dlil
.dl_offer
)
2026 SLIST_REMOVE(&ifp
->if_proto_hash
[proto_hash_value(proto_family
)], proto
, if_proto
, next_hash
);
2029 * We can do the rest of the work outside of the write lock.
2031 use_reached_zero
= ifp_unuse(ifp
);
2034 dlil_detach_protocol_internal(proto
);
2037 * Only handle the case where the interface will go away after
2038 * we've sent the message. This way post message can send the
2039 * message to the interface safely.
2042 if (use_reached_zero
)
2043 ifp_use_reached_zero(ifp
);
2050 * dlil_delayed_detach_thread is responsible for detaching
2051 * protocols, protocol filters, and interface filters after
2052 * an attempt was made to detach one of those items while
2053 * it was not safe to do so (i.e. called dlil_read_begin).
2055 * This function will take the dlil write lock and walk
2056 * through each of the interfaces looking for items with
2057 * the detaching flag set. When an item is found, it is
2058 * detached from the interface and placed on a local list.
2059 * After all of the items have been collected, we drop the
2060 * write lock and performed the post detach. This is done
2061 * so we only have to take the write lock once.
2063 * When detaching a protocol filter, if we find that we
2064 * have detached the very last protocol and we need to call
2065 * ifp_use_reached_zero, we have to break out of our work
2066 * to drop the write lock so we can call ifp_use_reached_zero.
2070 dlil_delayed_detach_thread(__unused
void* foo
, __unused wait_result_t wait
)
2072 thread_t self
= current_thread();
2075 ml_thread_policy(self
, MACHINE_GROUP
,
2076 (MACHINE_NETWORK_GROUP
|MACHINE_NETWORK_NETISR
));
2080 if (dlil_detach_waiting
!= 0 && dlil_write_begin() == 0) {
2082 struct proto_hash_entry detached_protos
;
2083 struct ifnet_filter_head detached_filters
;
2084 struct if_proto
*proto
;
2085 struct if_proto
*next_proto
;
2086 struct ifnet_filter
*filt
;
2087 struct ifnet_filter
*next_filt
;
2092 /* Clear the detach waiting flag */
2093 dlil_detach_waiting
= 0;
2094 TAILQ_INIT(&detached_filters
);
2095 SLIST_INIT(&detached_protos
);
2097 ifnet_head_lock_shared();
2098 TAILQ_FOREACH(ifp
, &ifnet_head
, if_link
) {
2101 // Look for protocols and protocol filters
2102 for (i
= 0; i
< PROTO_HASH_SLOTS
&& !reached_zero
; i
++) {
2103 struct if_proto
**prev_nextptr
= &SLIST_FIRST(&ifp
->if_proto_hash
[i
]);
2104 for (proto
= *prev_nextptr
; proto
; proto
= *prev_nextptr
) {
2106 // Detach this protocol
2107 if (proto
->detaching
) {
2108 if (ifp
->if_del_proto
)
2109 ifp
->if_del_proto(ifp
, proto
->protocol_family
);
2110 if (proto
->proto_kpi
== kProtoKPI_DLIL
&& proto
->kpi
.dlil
.dl_offer
)
2112 *prev_nextptr
= SLIST_NEXT(proto
, next_hash
);
2113 SLIST_INSERT_HEAD(&detached_protos
, proto
, next_hash
);
2114 reached_zero
= ifp_unuse(ifp
);
2120 // Update prev_nextptr to point to our next ptr
2121 prev_nextptr
= &SLIST_NEXT(proto
, next_hash
);
2126 // look for interface filters that need to be detached
2127 for (filt
= TAILQ_FIRST(&ifp
->if_flt_head
); filt
; filt
= next_filt
) {
2128 next_filt
= TAILQ_NEXT(filt
, filt_next
);
2129 if (filt
->filt_detaching
!= 0) {
2130 // take this interface filter off the interface filter list
2131 TAILQ_REMOVE(&ifp
->if_flt_head
, filt
, filt_next
);
2133 // put this interface filter on the detached filters list
2134 TAILQ_INSERT_TAIL(&detached_filters
, filt
, filt_next
);
2138 if (ifp
->if_delayed_detach
) {
2139 ifp
->if_delayed_detach
= 0;
2140 reached_zero
= ifp_unuse(ifp
);
2149 for (filt
= TAILQ_FIRST(&detached_filters
); filt
; filt
= next_filt
) {
2150 next_filt
= TAILQ_NEXT(filt
, filt_next
);
2152 * dlil_detach_filter_internal won't remove an item from
2153 * the list if it is already detached (second parameter).
2154 * The item will be freed though.
2156 dlil_detach_filter_internal(filt
, 1);
2159 for (proto
= SLIST_FIRST(&detached_protos
); proto
; proto
= next_proto
) {
2160 next_proto
= SLIST_NEXT(proto
, next_hash
);
2161 dlil_detach_protocol_internal(proto
);
2165 ifp_use_reached_zero(ifp
);
2166 dlil_detach_waiting
= 1; // we may have missed something
2170 if (!asserted
&& dlil_detach_waiting
== 0) {
2172 assert_wait(&dlil_detach_waiting
, THREAD_UNINT
);
2175 if (dlil_detach_waiting
== 0) {
2177 thread_block(dlil_delayed_detach_thread
);
2183 dlil_call_delayed_detach_thread(void) {
2184 dlil_delayed_detach_thread(NULL
, THREAD_RESTART
);
2187 extern int if_next_index(void);
2189 __private_extern__
int
2190 dlil_if_attach_with_address(
2192 const struct sockaddr_dl
*ll_addr
)
2194 u_long interface_family
= ifp
->if_family
;
2195 struct if_family_str
*if_family
= NULL
;
2197 struct ifnet
*tmp_if
;
2198 struct proto_hash_entry
*new_proto_list
= NULL
;
2202 ifnet_head_lock_shared();
2204 /* Verify we aren't already on the list */
2205 TAILQ_FOREACH(tmp_if
, &ifnet_head
, if_link
) {
2206 if (tmp_if
== ifp
) {
2214 if ((ifp
->if_eflags
& IFEF_REUSE
) == 0 || ifp
->if_lock
== 0)
2216 ifp
->if_lock
= lck_rw_alloc_init(ifnet_lock_group
, ifnet_lock_attr
);
2218 ifp
->if_lock
= lck_mtx_alloc_init(ifnet_lock_group
, ifnet_lock_attr
);
2221 if (ifp
->if_lock
== 0) {
2225 // Only use family if this is not a KPI interface
2226 if ((ifp
->if_eflags
& IFEF_USEKPI
) == 0) {
2227 if_family
= find_family_module(interface_family
);
2231 * Allow interfaces withouth protocol families to attach
2232 * only if they have the necessary fields filled out.
2235 if ((if_family
== 0) &&
2236 (ifp
->if_add_proto
== 0 || ifp
->if_del_proto
== 0)) {
2237 DLIL_PRINTF("Attempt to attach interface without family module - %d\n",
2242 if ((ifp
->if_eflags
& IFEF_REUSE
) == 0 || ifp
->if_proto_hash
== NULL
) {
2243 MALLOC(new_proto_list
, struct proto_hash_entry
*, sizeof(struct proto_hash_entry
) * PROTO_HASH_SLOTS
,
2246 if (new_proto_list
== 0) {
2255 * Call the family module to fill in the appropriate fields in the
2260 stat
= if_family
->add_if(ifp
);
2262 DLIL_PRINTF("dlil_if_attach -- add_if failed with %d\n", stat
);
2266 ifp
->if_add_proto_u
.original
= if_family
->add_proto
;
2267 ifp
->if_del_proto
= if_family
->del_proto
;
2268 if_family
->refcnt
++;
2272 TAILQ_INIT(&ifp
->if_flt_head
);
2275 if (new_proto_list
) {
2276 bzero(new_proto_list
, (PROTO_HASH_SLOTS
* sizeof(struct proto_hash_entry
)));
2277 ifp
->if_proto_hash
= new_proto_list
;
2283 struct ifaddr
*ifa
= 0;
2285 if (ifp
->if_snd
.ifq_maxlen
== 0)
2286 ifp
->if_snd
.ifq_maxlen
= ifqmaxlen
;
2287 TAILQ_INIT(&ifp
->if_prefixhead
);
2288 LIST_INIT(&ifp
->if_multiaddrs
);
2289 ifnet_touch_lastchange(ifp
);
2291 /* usecount to track attachment to the ifnet list */
2292 ifp_use(ifp
, kIfNetUseCount_MayBeZero
);
2294 /* Lock the list of interfaces */
2295 ifnet_head_lock_exclusive();
2296 ifnet_lock_exclusive(ifp
);
2298 if ((ifp
->if_eflags
& IFEF_REUSE
) == 0 || ifp
->if_index
== 0) {
2300 int namelen
, masklen
, socksize
, ifasize
;
2302 ifp
->if_index
= if_next_index();
2304 namelen
= snprintf(workbuf
, sizeof(workbuf
), "%s%d", ifp
->if_name
, ifp
->if_unit
);
2305 #define _offsetof(t, m) ((int)((caddr_t)&((t *)0)->m))
2306 masklen
= _offsetof(struct sockaddr_dl
, sdl_data
[0]) + namelen
;
2307 socksize
= masklen
+ ifp
->if_addrlen
;
2308 #define ROUNDUP(a) (1 + (((a) - 1) | (sizeof(long) - 1)))
2309 if ((u_long
)socksize
< sizeof(struct sockaddr_dl
))
2310 socksize
= sizeof(struct sockaddr_dl
);
2311 socksize
= ROUNDUP(socksize
);
2312 ifasize
= sizeof(struct ifaddr
) + 2 * socksize
;
2313 ifa
= (struct ifaddr
*)_MALLOC(ifasize
, M_IFADDR
, M_WAITOK
);
2315 struct sockaddr_dl
*sdl
= (struct sockaddr_dl
*)(ifa
+ 1);
2316 ifnet_addrs
[ifp
->if_index
- 1] = ifa
;
2317 bzero(ifa
, ifasize
);
2318 sdl
->sdl_len
= socksize
;
2319 sdl
->sdl_family
= AF_LINK
;
2320 bcopy(workbuf
, sdl
->sdl_data
, namelen
);
2321 sdl
->sdl_nlen
= namelen
;
2322 sdl
->sdl_index
= ifp
->if_index
;
2323 sdl
->sdl_type
= ifp
->if_type
;
2325 sdl
->sdl_alen
= ll_addr
->sdl_alen
;
2326 if (ll_addr
->sdl_alen
!= ifp
->if_addrlen
)
2327 panic("dlil_if_attach - ll_addr->sdl_alen != ifp->if_addrlen");
2328 bcopy(CONST_LLADDR(ll_addr
), LLADDR(sdl
), sdl
->sdl_alen
);
2331 ifa
->ifa_rtrequest
= link_rtrequest
;
2332 ifa
->ifa_addr
= (struct sockaddr
*)sdl
;
2333 sdl
= (struct sockaddr_dl
*)(socksize
+ (caddr_t
)sdl
);
2334 ifa
->ifa_netmask
= (struct sockaddr
*)sdl
;
2335 sdl
->sdl_len
= masklen
;
2336 while (namelen
!= 0)
2337 sdl
->sdl_data
[--namelen
] = 0xff;
2341 /* preserve the first ifaddr */
2342 ifnet_addrs
[ifp
->if_index
- 1] = TAILQ_FIRST(&ifp
->if_addrhead
);
2346 TAILQ_INIT(&ifp
->if_addrhead
);
2347 ifa
= ifnet_addrs
[ifp
->if_index
- 1];
2351 * We don't use if_attach_ifa because we want
2352 * this address to be first on the list.
2355 ifa
->ifa_debug
|= IFA_ATTACHED
;
2356 TAILQ_INSERT_HEAD(&ifp
->if_addrhead
, ifa
, ifa_link
);
2359 TAILQ_INSERT_TAIL(&ifnet_head
, ifp
, if_link
);
2360 ifindex2ifnet
[ifp
->if_index
] = ifp
;
2366 if (if_family
&& if_family
->init_if
) {
2367 stat
= if_family
->init_if(ifp
);
2369 DLIL_PRINTF("dlil_if_attach -- init_if failed with %d\n", stat
);
2373 dlil_post_msg(ifp
, KEV_DL_SUBCLASS
, KEV_DL_IF_ATTACHED
, 0, 0);
2374 ifnet_lock_done(ifp
);
2380 dlil_if_attach(struct ifnet
*ifp
)
2382 dlil_if_attach_with_address(ifp
, NULL
);
2387 dlil_if_detach(struct ifnet
*ifp
)
2389 struct ifnet_filter
*filter
;
2390 struct ifnet_filter
*filter_next
;
2393 struct ifnet_filter_head fhead
;
2396 ifnet_lock_exclusive(ifp
);
2398 if ((ifp
->if_eflags
& IFEF_DETACHING
) != 0) {
2399 /* Interface has already been detached */
2400 ifnet_lock_done(ifp
);
2405 * Indicate this interface is being detached.
2407 * This should prevent protocols from attaching
2408 * from this point on. Interface will remain on
2409 * the list until all of the protocols are detached.
2411 ifp
->if_eflags
|= IFEF_DETACHING
;
2412 ifnet_lock_done(ifp
);
2414 dlil_post_msg(ifp
, KEV_DL_SUBCLASS
, KEV_DL_IF_DETACHING
, 0, 0);
2416 if ((retval
= dlil_write_begin()) != 0) {
2417 if (retval
== EDEADLK
) {
2418 retval
= DLIL_WAIT_FOR_FREE
;
2420 /* We need to perform a delayed detach */
2421 ifp
->if_delayed_detach
= 1;
2422 dlil_detach_waiting
= 1;
2423 wakeup(&dlil_detach_waiting
);
2428 /* Steal the list of interface filters */
2429 fhead
= ifp
->if_flt_head
;
2430 TAILQ_INIT(&ifp
->if_flt_head
);
2432 /* unuse the interface */
2433 zeroed
= ifp_unuse(ifp
);
2437 for (filter
= TAILQ_FIRST(&fhead
); filter
; filter
= filter_next
) {
2438 filter_next
= TAILQ_NEXT(filter
, filt_next
);
2439 dlil_detach_filter_internal(filter
, 1);
2443 retval
= DLIL_WAIT_FOR_FREE
;
2447 ifp_use_reached_zero(ifp
);
2455 dlil_reg_if_modules(u_long interface_family
,
2456 struct dlil_ifmod_reg_str
*ifmod
)
2458 struct if_family_str
*if_family
;
2461 if (find_family_module(interface_family
)) {
2462 DLIL_PRINTF("Attempt to register dlil family module more than once - %d\n",
2467 if ((!ifmod
->add_if
) || (!ifmod
->del_if
) ||
2468 (!ifmod
->add_proto
) || (!ifmod
->del_proto
)) {
2469 DLIL_PRINTF("dlil_reg_if_modules passed at least one null pointer\n");
2474 * The following is a gross hack to keep from breaking
2475 * Vicomsoft's internet gateway on Jaguar. Vicomsoft
2476 * does not zero the reserved fields in dlil_ifmod_reg_str.
2477 * As a result, we have to zero any function that used to
2478 * be reserved fields at the time Vicomsoft built their
2479 * kext. Radar #2974305
2481 if (ifmod
->reserved
[0] != 0 || ifmod
->reserved
[1] != 0 || ifmod
->reserved
[2]) {
2482 if (interface_family
== 123) { /* Vicom */
2489 if_family
= (struct if_family_str
*) _MALLOC(sizeof(struct if_family_str
), M_IFADDR
, M_WAITOK
);
2491 DLIL_PRINTF("dlil_reg_if_modules failed allocation\n");
2495 bzero(if_family
, sizeof(struct if_family_str
));
2497 if_family
->if_family
= interface_family
& 0xffff;
2498 if_family
->shutdown
= ifmod
->shutdown
;
2499 if_family
->add_if
= ifmod
->add_if
;
2500 if_family
->del_if
= ifmod
->del_if
;
2501 if_family
->init_if
= ifmod
->init_if
;
2502 if_family
->add_proto
= ifmod
->add_proto
;
2503 if_family
->del_proto
= ifmod
->del_proto
;
2504 if_family
->ifmod_ioctl
= ifmod
->ifmod_ioctl
;
2505 if_family
->refcnt
= 1;
2506 if_family
->flags
= 0;
2508 TAILQ_INSERT_TAIL(&if_family_head
, if_family
, if_fam_next
);
2512 int dlil_dereg_if_modules(u_long interface_family
)
2514 struct if_family_str
*if_family
;
2518 if_family
= find_family_module(interface_family
);
2519 if (if_family
== 0) {
2523 if (--if_family
->refcnt
== 0) {
2524 if (if_family
->shutdown
)
2525 (*if_family
->shutdown
)();
2527 TAILQ_REMOVE(&if_family_head
, if_family
, if_fam_next
);
2528 FREE(if_family
, M_IFADDR
);
2531 if_family
->flags
|= DLIL_SHUTDOWN
;
2532 ret
= DLIL_WAIT_FOR_FREE
;
2541 dlil_reg_proto_module(
2542 u_long protocol_family
,
2543 u_long interface_family
,
2544 int (*attach
)(struct ifnet
*ifp
, u_long protocol_family
),
2545 int (*detach
)(struct ifnet
*ifp
, u_long protocol_family
))
2547 struct proto_family_str
*proto_family
;
2549 if (attach
== NULL
) return EINVAL
;
2551 lck_mtx_lock(proto_family_mutex
);
2553 TAILQ_FOREACH(proto_family
, &proto_family_head
, proto_fam_next
) {
2554 if (proto_family
->proto_family
== protocol_family
&&
2555 proto_family
->if_family
== interface_family
) {
2556 lck_mtx_unlock(proto_family_mutex
);
2561 proto_family
= (struct proto_family_str
*) _MALLOC(sizeof(struct proto_family_str
), M_IFADDR
, M_WAITOK
);
2562 if (!proto_family
) {
2563 lck_mtx_unlock(proto_family_mutex
);
2567 bzero(proto_family
, sizeof(struct proto_family_str
));
2568 proto_family
->proto_family
= protocol_family
;
2569 proto_family
->if_family
= interface_family
& 0xffff;
2570 proto_family
->attach_proto
= attach
;
2571 proto_family
->detach_proto
= detach
;
2573 TAILQ_INSERT_TAIL(&proto_family_head
, proto_family
, proto_fam_next
);
2574 lck_mtx_unlock(proto_family_mutex
);
2578 int dlil_dereg_proto_module(u_long protocol_family
, u_long interface_family
)
2580 struct proto_family_str
*proto_family
;
2583 lck_mtx_lock(proto_family_mutex
);
2585 proto_family
= find_proto_module(protocol_family
, interface_family
);
2586 if (proto_family
== 0) {
2587 lck_mtx_unlock(proto_family_mutex
);
2591 TAILQ_REMOVE(&proto_family_head
, proto_family
, proto_fam_next
);
2592 FREE(proto_family
, M_IFADDR
);
2594 lck_mtx_unlock(proto_family_mutex
);
2598 int dlil_plumb_protocol(u_long protocol_family
, struct ifnet
*ifp
)
2600 struct proto_family_str
*proto_family
;
2603 lck_mtx_lock(proto_family_mutex
);
2604 proto_family
= find_proto_module(protocol_family
, ifp
->if_family
);
2605 if (proto_family
== 0) {
2606 lck_mtx_unlock(proto_family_mutex
);
2610 ret
= proto_family
->attach_proto(ifp
, protocol_family
);
2612 lck_mtx_unlock(proto_family_mutex
);
2617 int dlil_unplumb_protocol(u_long protocol_family
, struct ifnet
*ifp
)
2619 struct proto_family_str
*proto_family
;
2622 lck_mtx_lock(proto_family_mutex
);
2624 proto_family
= find_proto_module(protocol_family
, ifp
->if_family
);
2625 if (proto_family
&& proto_family
->detach_proto
)
2626 ret
= proto_family
->detach_proto(ifp
, protocol_family
);
2628 ret
= dlil_detach_protocol(ifp
, protocol_family
);
2630 lck_mtx_unlock(proto_family_mutex
);
2636 __unused ifnet_t ifnet_ptr
,
2637 __unused u_int32_t ioctl_code
,
2638 __unused
void *ioctl_arg
)
2644 dlil_recycle_output(
2645 __unused
struct ifnet
*ifnet_ptr
,
2654 __unused ifnet_t ifnet_ptr
)
2659 dlil_recycle_set_bpf_tap(
2660 __unused ifnet_t ifp
,
2661 __unused bpf_tap_mode mode
,
2662 __unused bpf_packet_func callback
)
2664 /* XXX not sure what to do here */
2668 int dlil_if_acquire(
2670 const void *uniqueid
,
2671 size_t uniqueid_len
,
2674 struct ifnet
*ifp1
= NULL
;
2675 struct dlil_ifnet
*dlifp1
= NULL
;
2678 lck_mtx_lock(dlil_ifnet_mutex
);
2679 TAILQ_FOREACH(dlifp1
, &dlil_ifnet_head
, dl_if_link
) {
2681 ifp1
= (struct ifnet
*)dlifp1
;
2683 if (ifp1
->if_family
== family
) {
2685 /* same uniqueid and same len or no unique id specified */
2686 if ((uniqueid_len
== dlifp1
->if_uniqueid_len
)
2687 && !bcmp(uniqueid
, dlifp1
->if_uniqueid
, uniqueid_len
)) {
2689 /* check for matching interface in use */
2690 if (ifp1
->if_eflags
& IFEF_INUSE
) {
2698 panic("ifp's lock is gone\n");
2699 ifnet_lock_exclusive(ifp1
);
2700 ifp1
->if_eflags
|= (IFEF_INUSE
| IFEF_REUSE
);
2701 ifnet_lock_done(ifp1
);
2709 /* no interface found, allocate a new one */
2710 MALLOC(dlifp1
, struct dlil_ifnet
*, sizeof(*dlifp1
), M_NKE
, M_WAITOK
);
2716 bzero(dlifp1
, sizeof(*dlifp1
));
2719 MALLOC(dlifp1
->if_uniqueid
, void *, uniqueid_len
, M_NKE
, M_WAITOK
);
2720 if (dlifp1
->if_uniqueid
== 0) {
2721 FREE(dlifp1
, M_NKE
);
2725 bcopy(uniqueid
, dlifp1
->if_uniqueid
, uniqueid_len
);
2726 dlifp1
->if_uniqueid_len
= uniqueid_len
;
2729 ifp1
= (struct ifnet
*)dlifp1
;
2730 ifp1
->if_eflags
|= IFEF_INUSE
;
2731 ifp1
->if_name
= dlifp1
->if_namestorage
;
2733 TAILQ_INSERT_TAIL(&dlil_ifnet_head
, dlifp1
, dl_if_link
);
2738 lck_mtx_unlock(dlil_ifnet_mutex
);
2743 void dlil_if_release(struct ifnet
*ifp
)
2745 struct dlil_ifnet
*dlifp
= (struct dlil_ifnet
*)ifp
;
2748 /* Interface does not have a lock until it is attached - radar 3713951 */
2750 ifnet_lock_exclusive(ifp
);
2751 ifp
->if_eflags
&= ~IFEF_INUSE
;
2752 ifp
->if_ioctl
= dlil_recycle_ioctl
;
2753 ifp
->if_output
= dlil_recycle_output
;
2754 ifp
->if_free
= dlil_recycle_free
;
2755 ifp
->if_set_bpf_tap
= dlil_recycle_set_bpf_tap
;
2757 strncpy(dlifp
->if_namestorage
, ifp
->if_name
, IFNAMSIZ
);
2758 ifp
->if_name
= dlifp
->if_namestorage
;
2760 ifnet_lock_done(ifp
);