Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 | /* * Copyright (c) 2000-2024 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * Copyright (c) 1985, 1986, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)in_var.h 8.2 (Berkeley) 1/9/95 */ #ifndef _NETINET_IN_VAR_H_ #define _NETINET_IN_VAR_H_ #include <sys/appleapiopts.h> #include <sys/protosw.h> #include <sys/queue.h> #include <sys/kern_event.h> #include <net/if_var.h> #include <net/net_kev.h> #include <netinet/in.h> #ifdef BSD_KERNEL_PRIVATE #include <net/route.h> /* * Interface address, Internet version. One of these structures * is allocated for each Internet address on an interface. * The ifaddr structure contains the protocol-independent part * of the structure and is assumed to be first. */ struct in_ifaddr { struct ifaddr ia_ifa; /* protocol-independent info */ #define ia_ifp ia_ifa.ifa_ifp #define ia_flags ia_ifa.ifa_flags /* ia_{,sub}net{,mask} in host order */ u_int32_t ia_net; /* network number of interface */ u_int32_t ia_netmask; /* mask of net part */ u_int32_t ia_subnet; /* subnet number, including net */ u_int32_t ia_subnetmask; /* mask of subnet part */ struct in_addr ia_netbroadcast; /* to recognize net broadcasts */ TAILQ_ENTRY(in_ifaddr) ia_link; /* tailq macro glue */ struct sockaddr_in ia_addr; /* reserve space for interface name */ struct sockaddr_in ia_dstaddr; /* reserve space for broadcast addr */ #define ia_broadaddr ia_dstaddr struct sockaddr_in ia_sockmask; /* reserve space for general netmask */ TAILQ_ENTRY(in_ifaddr) ia_hash; /* hash bucket entry */ }; static inline const struct in_ifaddr * __attribute__((overloadable)) __pure2 __ifatoia_const(const struct ifaddr *ifa) { return __container_of(ifa, const struct in_ifaddr, ia_ifa); } static inline struct in_ifaddr * __attribute__((overloadable)) __pure2 __ifatoia(struct ifaddr *ifa) { return __container_of(ifa, struct in_ifaddr, ia_ifa); } #if __has_ptrcheck #define ifatoia(ifa) (_Generic((ifa), \ const struct ifaddr * __single : __ifatoia_const, \ const struct ifaddr * __bidi_indexable : __ifatoia_const, \ const struct ifaddr * __indexable : __ifatoia_const, \ struct ifaddr * __single : __ifatoia, \ struct ifaddr * __bidi_indexable : __ifatoia, \ struct ifaddr * __indexable : __ifatoia) \ ((ifa))) #else /* !__has_ptrcheck */ #define ifatoia(ifa) (_Generic((ifa), \ const struct ifaddr * : __ifatoia_const, \ struct ifaddr * : __ifatoia) \ ((ifa))) #endif /* !__has_ptrcheck */ static inline const struct in_ifaddr * __attribute__((overloadable)) __pure2 __iatoia_const(const struct in_ifaddr *ia) { return ia; } static inline struct in_ifaddr * __attribute__((overloadable)) __pure2 __iatoia(struct in_ifaddr *ia) { return ia; } #if __has_ptrcheck #define IA(ifa_or_ia) (_Generic((ifa_or_ia), \ const struct ifaddr * __single : __ifatoia_const, \ const struct ifaddr * __bidi_indexable : __ifatoia_const, \ const struct ifaddr * __indexable : __ifatoia_const, \ struct ifaddr * __single : __ifatoia, \ struct ifaddr * __bidi_indexable : __ifatoia, \ struct ifaddr * __indexable : __ifatoia, \ const struct in_ifaddr * __single : __iatoia_const, \ const struct in_ifaddr * __bidi_indexable : __iatoia_const, \ const struct in_ifaddr * __indexable : __iatoia_const, \ struct in_ifaddr * __single : __iatoia, \ struct in_ifaddr * __bidi_indexable : __iatoia, \ struct in_ifaddr * __indexable : __iatoia) \ ((ifa_or_ia))) #else /* !__has_ptrcheck */ #define IA(ifa_or_ia) (_Generic((ifa_or_ia), \ const struct ifaddr * : __ifatoia_const, \ struct ifaddr * : __ifatoia, \ const struct in_ifaddr * : __iatoia_const, \ struct in_ifaddr * : __iatoia) \ ((ifa_or_ia))) #endif /* !__has_ptrcheck */ #endif /* BSD_KERNEL_PRIVATE */ struct in_aliasreq { char ifra_name[IFNAMSIZ]; /* if name, e.g. "en0" */ struct sockaddr_in ifra_addr; struct sockaddr_in ifra_broadaddr; #define ifra_dstaddr ifra_broadaddr struct sockaddr_in ifra_mask; }; /* * Event data, inet style. */ struct kev_in_data { struct net_event_data link_data; struct in_addr ia_addr; /* interface address */ u_int32_t ia_net; /* network number of interface */ u_int32_t ia_netmask; /* mask of net part */ u_int32_t ia_subnet; /* subnet number, including net */ u_int32_t ia_subnetmask; /* mask of subnet part */ struct in_addr ia_netbroadcast; /* to recognize net broadcasts */ struct in_addr ia_dstaddr; }; struct kev_in_collision { struct net_event_data link_data; /* link where ARP was received on */ struct in_addr ia_ipaddr; /* conflicting IP address */ u_char hw_len; /* length of hardware address */ u_char hw_addr[__counted_by(hw_len)];/* variable length hardware address */ }; struct kev_in_arpfailure { struct net_event_data link_data; /* link where ARP is being sent */ }; struct kev_in_arpalive { struct net_event_data link_data; /* link where ARP was received */ }; #ifdef PRIVATE /* * Common structure for KEV_SOCKET_SUBCLASS * Have to place here to avoid declaration dependencies. */ struct kev_socket_event_data { union sockaddr_in_4_6 kev_sockname; union sockaddr_in_4_6 kev_peername; }; struct kev_socket_closed { struct kev_socket_event_data ev_data; }; #endif /* PRIVATE */ #ifdef __APPLE_API_PRIVATE struct kev_in_portinuse { u_int16_t port; /* conflicting port number in host order */ u_int32_t req_pid; /* PID port requestor */ u_int32_t reserved[2]; }; #endif /* __APPLE_API_PRIVATE */ #ifdef BSD_KERNEL_PRIVATE extern void socket_post_kev_msg(uint32_t, struct kev_socket_event_data *, uint32_t); extern void socket_post_kev_msg_closed(struct socket *); #include <net/if.h> #include <net/if_var.h> #include <kern/locks.h> #include <sys/tree.h> /* * Given a pointer to an in_ifaddr (ifaddr), * return a pointer to the addr as a sockaddr_in. */ #define IA_SIN(ia) (&(IA((ia))->ia_addr)) #define IA_DSTSIN(ia) (&(IA((ia))->ia_dstaddr)) #define IN_LNAOF(in, ifa) \ (ntohl((in).s_addr) & ~(IA((ifa))->ia_subnetmask)) /* * Hash table for IPv4 addresses. */ extern TAILQ_HEAD(in_ifaddrhead, in_ifaddr) in_ifaddrhead; TAILQ_HEAD(in_ifaddrhashhead, in_ifaddr); extern lck_rw_t in_ifaddr_rwlock; #define INADDR_HASH(x) inaddr_hashlookup(x) extern u_char inetctlerrmap[PRC_NCMDS]; /* * Macro for finding the interface (ifnet structure) corresponding to one * of our IP addresses. */ #define INADDR_TO_IFP(addr, ifp) \ /* struct in_addr addr; */ \ /* struct ifnet *ifp; */ \ { \ struct in_ifaddr *ia; \ \ lck_rw_lock_shared(&in_ifaddr_rwlock); \ TAILQ_FOREACH(ia, INADDR_HASH((addr).s_addr), ia_hash) { \ IFA_LOCK_SPIN(&ia->ia_ifa); \ if (IA_SIN(ia)->sin_addr.s_addr == (addr).s_addr) { \ IFA_UNLOCK(&ia->ia_ifa); \ break; \ } \ IFA_UNLOCK(&ia->ia_ifa); \ } \ (ifp) = (ia == NULL) ? NULL : ia->ia_ifp; \ lck_rw_done(&in_ifaddr_rwlock); \ } /* * Macro for finding the internet address structure (in_ifaddr) corresponding * to a given interface (ifnet structure). Caller is responsible for freeing * the reference. */ #define IFP_TO_IA(ifp, ia) \ /* struct ifnet *ifp; */ \ /* struct in_ifaddr *ia; */ \ { \ lck_rw_lock_shared(&in_ifaddr_rwlock); \ for ((ia) = TAILQ_FIRST(&in_ifaddrhead); \ (ia) != NULL && (ia)->ia_ifp != (ifp); \ (ia) = TAILQ_NEXT((ia), ia_link)) \ continue; \ if ((ia) != NULL) \ ifa_addref(&(ia)->ia_ifa); \ lck_rw_done(&in_ifaddr_rwlock); \ } /* * This information should be part of the ifnet structure but we don't wish * to change that - as it might break a number of things */ /* * Legacy IPv4 IGMP per-link structure. */ struct router_info { struct ifnet *rti_ifp; int rti_type; /* type of router which is querier on this interface */ int rti_time; /* # of slow timeouts since last old query */ SLIST_ENTRY(router_info) rti_list; }; /* * IPv4 multicast IGMP-layer source entry. */ struct ip_msource { RB_ENTRY(ip_msource) ims_link; /* RB tree links */ in_addr_t ims_haddr; /* host byte order */ struct ims_st { uint16_t ex; /* # of exclusive members */ uint16_t in; /* # of inclusive members */ } ims_st[2]; /* state at t0, t1 */ uint8_t ims_stp; /* pending query */ }; /* * IPv4 multicast PCB-layer source entry. */ struct in_msource { RB_ENTRY(ip_msource) ims_link; /* RB tree links */ in_addr_t ims_haddr; /* host byte order */ uint8_t imsl_st[2]; /* state before/at commit */ }; RB_HEAD(ip_msource_tree, ip_msource); /* define struct ip_msource_tree */ RB_PROTOTYPE_SC_PREV(__private_extern__, ip_msource_tree, ip_msource, ims_link, ip_msource_cmp); /* * IPv4 multicast PCB-layer group filter descriptor. */ struct in_mfilter { struct ip_msource_tree imf_sources; /* source list for (S,G) */ u_long imf_nsrc; /* # of source entries */ uint8_t imf_st[2]; /* state before/at commit */ }; struct igmp_ifinfo; /* * IPv4 group descriptor. * * For every entry on an ifnet's if_multiaddrs list which represents * an IP multicast group, there is one of these structures. * * If any source filters are present, then a node will exist in the RB-tree * to permit fast lookup by source whenever an operation takes place. * This permits pre-order traversal when we issue reports. * Source filter trees are kept separately from the socket layer to * greatly simplify locking. * * When IGMPv3 is active, inm_timer is the response to group query timer. * The state-change timer inm_sctimer is separate; whenever state changes * for the group the state change record is generated and transmitted, * and kept if retransmissions are necessary. * * The request count here is a count of requests for this address, not a * count of pointers to this structure. * * FUTURE: inm_link is now only used when groups are being purged * on a detaching ifnet. It could be demoted to a SLIST_ENTRY. */ struct in_multi { decl_lck_mtx_data(, inm_lock); u_int32_t inm_refcount; /* reference count */ u_int32_t inm_reqcnt; /* request count for this address */ u_int32_t inm_debug; /* see ifa_debug flags */ LIST_ENTRY(in_multi) inm_link; /* queue macro glue */ struct in_addr inm_addr; /* IP multicast address, convenience */ struct ifnet *inm_ifp; /* back pointer to ifnet */ struct ifmultiaddr *inm_ifma; /* back pointer to ifmultiaddr */ u_int inm_timer; /* IGMPv1/v2 group / v3 query timer */ u_int inm_state; /* state of the membership */ bool inm_in_nrele; /* if in nrele list */ /* New fields for IGMPv3 follow. */ struct igmp_ifinfo *inm_igi; /* IGMP info */ SLIST_ENTRY(in_multi) inm_dtle; /* detached waiting for rele */ SLIST_ENTRY(in_multi) inm_nrele; /* to-be-released by IGMP */ u_int32_t inm_nrelecnt; /* deferred release count */ struct ip_msource_tree inm_srcs; /* tree of sources */ u_long inm_nsrc; /* # of tree entries */ struct ifqueue inm_scq; /* queue of pending * state-change packets */ struct timeval inm_lastgsrtv; /* Time of last G-S-R query */ uint16_t inm_sctimer; /* state-change timer */ uint16_t inm_scrv; /* state-change rexmit count */ /* * SSM state counters which track state at T0 (the time the last * state-change report's RV timer went to zero) and T1 * (time of pending report, i.e. now). * Used for computing IGMPv3 state-change reports. Several refcounts * are maintained here to optimize for common use-cases. */ struct inm_st { uint16_t iss_fmode; /* IGMP filter mode */ uint16_t iss_asm; /* # of ASM listeners */ uint16_t iss_ex; /* # of exclusive members */ uint16_t iss_in; /* # of inclusive members */ uint16_t iss_rec; /* # of recorded sources */ } inm_st[2]; /* state at t0, t1 */ void (*inm_trace) /* callback fn for tracing refs */ (struct in_multi *, int); }; #define INM_LOCK_ASSERT_HELD(_inm) \ LCK_MTX_ASSERT(&(_inm)->inm_lock, LCK_MTX_ASSERT_OWNED) #define INM_LOCK_ASSERT_NOTHELD(_inm) \ LCK_MTX_ASSERT(&(_inm)->inm_lock, LCK_MTX_ASSERT_NOTOWNED) #define INM_LOCK(_inm) \ lck_mtx_lock(&(_inm)->inm_lock) #define INM_LOCK_SPIN(_inm) \ lck_mtx_lock_spin(&(_inm)->inm_lock) #define INM_CONVERT_LOCK(_inm) do { \ INM_LOCK_ASSERT_HELD(_inm); \ lck_mtx_convert_spin(&(_inm)->inm_lock); \ } while (0) #define INM_UNLOCK(_inm) \ lck_mtx_unlock(&(_inm)->inm_lock) #define INM_ADDREF(_inm) \ inm_addref(_inm, 0) #define INM_ADDREF_LOCKED(_inm) \ inm_addref(_inm, 1) #define INM_REMREF(_inm) \ inm_remref(_inm, 0) #define INM_REMREF_LOCKED(_inm) \ inm_remref(_inm, 1) #ifdef SYSCTL_DECL SYSCTL_DECL(_net_inet_ip); SYSCTL_DECL(_net_inet_raw); #endif extern LIST_HEAD(in_multihead, in_multi) in_multihead; /* * Structure used by macros below to remember position when stepping through * all of the in_multi records. */ struct in_multistep { struct in_multi *i_inm; }; /* * Macro for looking up the in_multi record for a given IP multicast address * on a given interface. If no matching record is found, "inm" is set null. * * We do this differently compared other BSD implementations; instead of * walking the if_multiaddrs list at the interface and returning the * ifma_protospec value of a matching entry, we search the global list * of in_multi records and find it that way. Otherwise either the two * structures (in_multi, ifmultiaddr) need to be ref counted both ways, * which will make things too complicated, or they need to reside in the * same protected domain, which they aren't. * * Must be called with in_multihead_lock held. */ #define IN_LOOKUP_MULTI(addr, ifp, inm) \ /* struct in_addr *addr; */ \ /* struct ifnet *ifp; */ \ /* struct in_multi *inm; */ \ do { \ struct in_multistep _step; \ IN_FIRST_MULTI(_step, inm); \ while ((inm) != NULL) { \ INM_LOCK_SPIN(inm); \ if ((inm)->inm_ifp == (ifp) && \ (inm)->inm_addr.s_addr == (addr)->s_addr) { \ INM_ADDREF_LOCKED(inm); \ INM_UNLOCK(inm); \ break; \ } \ INM_UNLOCK(inm); \ IN_NEXT_MULTI(_step, inm); \ } \ } while (0) /* * Macro to step through all of the in_multi records, one at a time. * The current position is remembered in "step", which the caller must * provide. IN_FIRST_MULTI(), below, must be called to initialize "step" * and get the first record. Both macros return a NULL "inm" when there * are no remaining records. * * Must be called with in_multihead_lock held. */ #define IN_NEXT_MULTI(step, inm) \ /* struct in_multistep step; */ \ /* struct in_multi *inm; */ \ do { \ in_multihead_lock_assert(LCK_RW_ASSERT_HELD); \ if (((inm) = (step).i_inm) != NULL) \ (step).i_inm = LIST_NEXT((step).i_inm, inm_link); \ } while (0) #define IN_FIRST_MULTI(step, inm) \ /* struct in_multistep step; */ \ /* struct in_multi *inm; */ \ do { \ in_multihead_lock_assert(LCK_RW_ASSERT_HELD); \ (step).i_inm = LIST_FIRST(&in_multihead); \ IN_NEXT_MULTI((step), (inm)); \ } while (0) extern lck_mtx_t *inet_domain_mutex; extern struct domain *inetdomain; struct ip_moptions; struct inpcb; /* * Return values for imo_multi_filter(). */ #define MCAST_PASS 0 /* Pass */ #define MCAST_NOTGMEMBER 1 /* This host not a member of group */ #define MCAST_NOTSMEMBER 2 /* This host excluded source */ #define MCAST_MUTED 3 /* [deprecated] */ /* * Per-interface IPv4 structures. */ struct in_ifextra { uint32_t netsig_len; u_int8_t netsig[IFNET_SIGNATURELEN]; }; #define IN_IFEXTRA(_ifp) (_ifp->if_inetdata) extern u_int32_t ipv4_ll_arp_aware; extern int imo_multi_filter(const struct ip_moptions *, const struct ifnet *, const struct sockaddr_in *, const struct sockaddr_in *); extern int imo_clone(struct inpcb *, struct inpcb *); extern void inm_commit(struct in_multi *); extern void inm_clear_recorded(struct in_multi *); extern void inm_print(const struct in_multi *); extern int inm_record_source(struct in_multi *inm, const in_addr_t); extern void inm_release(struct in_multi *); extern struct in_multi *in_addmulti(struct in_addr *, struct ifnet *); extern void in_delmulti(struct in_multi *); extern int in_leavegroup(struct in_multi *, struct in_mfilter *); extern int in_multi_detach(struct in_multi *); extern void inm_addref(struct in_multi *, int); extern void inm_remref(struct in_multi *, int); extern void inm_purge(struct in_multi *); extern uint8_t ims_get_mode(const struct in_multi *, const struct ip_msource *, uint8_t); extern int in_control(struct socket *, u_long cmd, caddr_t __sized_by(IOCPARM_LEN(cmd)), struct ifnet *, struct proc *); extern int in_inithead(void **, int); extern void in_rtqdrain(void); extern struct radix_node *in_validate(struct radix_node *); extern void ip_input_process_list(struct mbuf *); extern int in_ifadown(struct ifaddr *ifa, int); extern void in_ifscrub(struct ifnet *, struct in_ifaddr *, int); extern uint32_t inaddr_hashval(uint32_t); extern struct in_ifaddrhashhead *inaddr_hashlookup(uint32_t); extern void in_purgeaddrs(struct ifnet *); extern void gre_input(struct mbuf *, int); extern void imf_leave(struct in_mfilter *); extern void imf_purge(struct in_mfilter *); extern int inp_join_group(struct inpcb *, struct sockopt *); extern int inp_leave_group(struct inpcb *, struct sockopt *); extern void in_multihead_lock_exclusive(void); extern void in_multihead_lock_shared(void); extern void in_multihead_lock_assert(int); extern void in_multihead_lock_done(void); #endif /* BSD_KERNEL_PRIVATE */ /* INET6 stuff */ #include <netinet6/in6_var.h> #endif /* _NETINET_IN_VAR_H_ */ |