1*fdd8201dSApple OSS Distributions /* 2*fdd8201dSApple OSS Distributions * Copyright (c) 2008-2016 Apple Inc. All rights reserved. 3*fdd8201dSApple OSS Distributions * 4*fdd8201dSApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5*fdd8201dSApple OSS Distributions * 6*fdd8201dSApple OSS Distributions * This file contains Original Code and/or Modifications of Original Code 7*fdd8201dSApple OSS Distributions * as defined in and that are subject to the Apple Public Source License 8*fdd8201dSApple OSS Distributions * Version 2.0 (the 'License'). You may not use this file except in 9*fdd8201dSApple OSS Distributions * compliance with the License. The rights granted to you under the License 10*fdd8201dSApple OSS Distributions * may not be used to create, or enable the creation or redistribution of, 11*fdd8201dSApple OSS Distributions * unlawful or unlicensed copies of an Apple operating system, or to 12*fdd8201dSApple OSS Distributions * circumvent, violate, or enable the circumvention or violation of, any 13*fdd8201dSApple OSS Distributions * terms of an Apple operating system software license agreement. 14*fdd8201dSApple OSS Distributions * 15*fdd8201dSApple OSS Distributions * Please obtain a copy of the License at 16*fdd8201dSApple OSS Distributions * http://www.opensource.apple.com/apsl/ and read it before using this file. 17*fdd8201dSApple OSS Distributions * 18*fdd8201dSApple OSS Distributions * The Original Code and all software distributed under the License are 19*fdd8201dSApple OSS Distributions * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20*fdd8201dSApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21*fdd8201dSApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22*fdd8201dSApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23*fdd8201dSApple OSS Distributions * Please see the License for the specific language governing rights and 24*fdd8201dSApple OSS Distributions * limitations under the License. 25*fdd8201dSApple OSS Distributions * 26*fdd8201dSApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27*fdd8201dSApple OSS Distributions */ 28*fdd8201dSApple OSS Distributions /*! 29*fdd8201dSApple OSS Distributions * @header kpi_protocol.h 30*fdd8201dSApple OSS Distributions * This header defines an API to interact with protocols in the kernel. 31*fdd8201dSApple OSS Distributions * The KPIs in this header file can be used to interact with protocols 32*fdd8201dSApple OSS Distributions * that already exist in the stack. These KPIs can be used to support 33*fdd8201dSApple OSS Distributions * existing protocols over media types that are not natively supported 34*fdd8201dSApple OSS Distributions * in the kernel, such as ATM. 35*fdd8201dSApple OSS Distributions */ 36*fdd8201dSApple OSS Distributions 37*fdd8201dSApple OSS Distributions #ifndef __KPI_PROTOCOL__ 38*fdd8201dSApple OSS Distributions #define __KPI_PROTOCOL__ 39*fdd8201dSApple OSS Distributions #include <sys/kernel_types.h> 40*fdd8201dSApple OSS Distributions #include <net/kpi_interface.h> 41*fdd8201dSApple OSS Distributions 42*fdd8201dSApple OSS Distributions #ifndef PRIVATE 43*fdd8201dSApple OSS Distributions #include <Availability.h> 44*fdd8201dSApple OSS Distributions #define __NKE_API_DEPRECATED __API_DEPRECATED("Network Kernel Extension KPI is deprecated", macos(10.4, 10.15.4)) 45*fdd8201dSApple OSS Distributions #else 46*fdd8201dSApple OSS Distributions #define __NKE_API_DEPRECATED 47*fdd8201dSApple OSS Distributions #endif /* PRIVATE */ 48*fdd8201dSApple OSS Distributions 49*fdd8201dSApple OSS Distributions __BEGIN_DECLS 50*fdd8201dSApple OSS Distributions 51*fdd8201dSApple OSS Distributions /******************************************************************************/ 52*fdd8201dSApple OSS Distributions /* Protocol input/inject */ 53*fdd8201dSApple OSS Distributions /******************************************************************************/ 54*fdd8201dSApple OSS Distributions 55*fdd8201dSApple OSS Distributions #ifdef BSD_KERNEL_PRIVATE 56*fdd8201dSApple OSS Distributions /*! 57*fdd8201dSApple OSS Distributions * @typedef protocol_input_handler 58*fdd8201dSApple OSS Distributions * @discussion protocol_input_handler is called to input a packet. If 59*fdd8201dSApple OSS Distributions * your protocol has specified a global lock, the lock will be held 60*fdd8201dSApple OSS Distributions * when this funciton is called. 61*fdd8201dSApple OSS Distributions * @pararm protocol The protocol this packet is intended for. 62*fdd8201dSApple OSS Distributions * @param packet The packet that should be input. 63*fdd8201dSApple OSS Distributions */ 64*fdd8201dSApple OSS Distributions typedef void (*proto_input_handler)(protocol_family_t protocol, mbuf_t packet); 65*fdd8201dSApple OSS Distributions 66*fdd8201dSApple OSS Distributions /*! 67*fdd8201dSApple OSS Distributions * @typedef proto_input_detached_handler 68*fdd8201dSApple OSS Distributions * @discussion proto_input_detached_handler is called to notify the 69*fdd8201dSApple OSS Distributions * protocol that it has been detached. When this function is 70*fdd8201dSApple OSS Distributions * called, the proto_input_handler will not be called again, making 71*fdd8201dSApple OSS Distributions * it safe to unload. 72*fdd8201dSApple OSS Distributions * @pararm protocol The protocol detached. 73*fdd8201dSApple OSS Distributions */ 74*fdd8201dSApple OSS Distributions typedef void (*proto_input_detached_handler)(protocol_family_t protocol); 75*fdd8201dSApple OSS Distributions 76*fdd8201dSApple OSS Distributions /*! 77*fdd8201dSApple OSS Distributions * @function proto_register_input 78*fdd8201dSApple OSS Distributions * @discussion Allows the caller to specify the functions called when a 79*fdd8201dSApple OSS Distributions * packet for a protocol is received. 80*fdd8201dSApple OSS Distributions * @param protocol The protocol family these functions will receive 81*fdd8201dSApple OSS Distributions * packets for. 82*fdd8201dSApple OSS Distributions * @param input The function called when a packet is input. 83*fdd8201dSApple OSS Distributions * @param chains Input function supports packet chains. 84*fdd8201dSApple OSS Distributions * @result A errno error on failure. 85*fdd8201dSApple OSS Distributions */ 86*fdd8201dSApple OSS Distributions extern errno_t proto_register_input(protocol_family_t protocol, 87*fdd8201dSApple OSS Distributions proto_input_handler input, proto_input_detached_handler detached, 88*fdd8201dSApple OSS Distributions int chains); 89*fdd8201dSApple OSS Distributions 90*fdd8201dSApple OSS Distributions /*! 91*fdd8201dSApple OSS Distributions * @function proto_unregister_input 92*fdd8201dSApple OSS Distributions * @discussion Allows the caller to unregister the input and inject 93*fdd8201dSApple OSS Distributions * functions for a protocol. The input/inject functions may not be 94*fdd8201dSApple OSS Distributions * unregistered immediately if there is a chance they are in use. 95*fdd8201dSApple OSS Distributions * To notify the owner when the functions are no longer in use, the 96*fdd8201dSApple OSS Distributions * proto_detached_handler function will be called. It is not safe 97*fdd8201dSApple OSS Distributions * to unload until the proto_detached_handler is called. 98*fdd8201dSApple OSS Distributions * @param protocol The protocol family these functions will receive 99*fdd8201dSApple OSS Distributions * packets for. 100*fdd8201dSApple OSS Distributions */ 101*fdd8201dSApple OSS Distributions extern void proto_unregister_input(protocol_family_t protocol); 102*fdd8201dSApple OSS Distributions #endif /* BSD_KERNEL_PRIVATE */ 103*fdd8201dSApple OSS Distributions 104*fdd8201dSApple OSS Distributions /*! 105*fdd8201dSApple OSS Distributions * @function proto_input 106*fdd8201dSApple OSS Distributions * @discussion Inputs a packet on the specified protocol from the input 107*fdd8201dSApple OSS Distributions * path. 108*fdd8201dSApple OSS Distributions * @param protocol The protocol of the packet. 109*fdd8201dSApple OSS Distributions * @param packet The first packet in a chain of packets to be input. 110*fdd8201dSApple OSS Distributions * @result A errno error on failure. Unless proto_input returns zero, 111*fdd8201dSApple OSS Distributions * the caller is responsible for freeing the mbuf. 112*fdd8201dSApple OSS Distributions */ 113*fdd8201dSApple OSS Distributions extern errno_t proto_input(protocol_family_t protocol, mbuf_t packet) 114*fdd8201dSApple OSS Distributions __NKE_API_DEPRECATED; 115*fdd8201dSApple OSS Distributions 116*fdd8201dSApple OSS Distributions /*! 117*fdd8201dSApple OSS Distributions * @function proto_inject 118*fdd8201dSApple OSS Distributions * @discussion Injects a packet on the specified protocol from 119*fdd8201dSApple OSS Distributions * anywhere. To avoid recursion, the protocol may need to queue the 120*fdd8201dSApple OSS Distributions * packet to be handled later. 121*fdd8201dSApple OSS Distributions * @param protocol The protocol of the packet. 122*fdd8201dSApple OSS Distributions * @param packet The first packet in a chain of packets to be injected. 123*fdd8201dSApple OSS Distributions * @result A errno error on failure. Unless proto_inject returns zero, 124*fdd8201dSApple OSS Distributions * the caller is responsible for freeing the mbuf. 125*fdd8201dSApple OSS Distributions */ 126*fdd8201dSApple OSS Distributions extern errno_t proto_inject(protocol_family_t protocol, mbuf_t packet) 127*fdd8201dSApple OSS Distributions __NKE_API_DEPRECATED; 128*fdd8201dSApple OSS Distributions 129*fdd8201dSApple OSS Distributions 130*fdd8201dSApple OSS Distributions /******************************************************************************/ 131*fdd8201dSApple OSS Distributions /* Protocol plumbing */ 132*fdd8201dSApple OSS Distributions /******************************************************************************/ 133*fdd8201dSApple OSS Distributions 134*fdd8201dSApple OSS Distributions /*! 135*fdd8201dSApple OSS Distributions * @typedef proto_plumb_handler 136*fdd8201dSApple OSS Distributions * @discussion proto_plumb_handler is called to attach a protocol to an 137*fdd8201dSApple OSS Distributions * interface. A typical protocol plumb function would fill out an 138*fdd8201dSApple OSS Distributions * ifnet_attach_proto_param and call ifnet_attach_protocol. 139*fdd8201dSApple OSS Distributions * @param ifp The interface the protocol should be attached to. 140*fdd8201dSApple OSS Distributions * @param protocol The protocol that should be attached to the 141*fdd8201dSApple OSS Distributions * interface. 142*fdd8201dSApple OSS Distributions * @result 143*fdd8201dSApple OSS Distributions * A non-zero value of the attach failed. 144*fdd8201dSApple OSS Distributions */ 145*fdd8201dSApple OSS Distributions typedef errno_t (*proto_plumb_handler)(ifnet_t ifp, protocol_family_t protocol); 146*fdd8201dSApple OSS Distributions 147*fdd8201dSApple OSS Distributions /*! 148*fdd8201dSApple OSS Distributions * @typedef proto_unplumb_handler 149*fdd8201dSApple OSS Distributions * @discussion proto_unplumb_handler is called to detach a protocol 150*fdd8201dSApple OSS Distributions * from an interface. A typical unplumb function would call 151*fdd8201dSApple OSS Distributions * ifnet_detach_protocol and perform any necessary cleanup. 152*fdd8201dSApple OSS Distributions * @param ifp The interface the protocol should be detached from. 153*fdd8201dSApple OSS Distributions * @param protocol The protocol that should be detached from the 154*fdd8201dSApple OSS Distributions * interface. 155*fdd8201dSApple OSS Distributions */ 156*fdd8201dSApple OSS Distributions typedef void (*proto_unplumb_handler)(ifnet_t ifp, protocol_family_t protocol); 157*fdd8201dSApple OSS Distributions 158*fdd8201dSApple OSS Distributions /*! 159*fdd8201dSApple OSS Distributions * @function proto_register_plumber 160*fdd8201dSApple OSS Distributions * @discussion Allows the caller to specify the functions called when a 161*fdd8201dSApple OSS Distributions * protocol is attached to an interface belonging to the specified 162*fdd8201dSApple OSS Distributions * family and when that protocol is detached. 163*fdd8201dSApple OSS Distributions * @param proto_fam The protocol family these plumbing functions will 164*fdd8201dSApple OSS Distributions * handle. 165*fdd8201dSApple OSS Distributions * @param if_fam The interface family these plumbing functions will 166*fdd8201dSApple OSS Distributions * handle. 167*fdd8201dSApple OSS Distributions * @param plumb The function to call to attach the protocol to an 168*fdd8201dSApple OSS Distributions * interface. 169*fdd8201dSApple OSS Distributions * @param unplumb The function to call to detach the protocol to an 170*fdd8201dSApple OSS Distributions * interface, may be NULL in which case ifnet_detach_protocol will 171*fdd8201dSApple OSS Distributions * be used to detach the protocol. 172*fdd8201dSApple OSS Distributions * @result A non-zero value of the attach failed. 173*fdd8201dSApple OSS Distributions */ 174*fdd8201dSApple OSS Distributions extern errno_t proto_register_plumber(protocol_family_t proto_fam, 175*fdd8201dSApple OSS Distributions ifnet_family_t if_fam, proto_plumb_handler plumb, 176*fdd8201dSApple OSS Distributions proto_unplumb_handler unplumb) 177*fdd8201dSApple OSS Distributions __NKE_API_DEPRECATED; 178*fdd8201dSApple OSS Distributions 179*fdd8201dSApple OSS Distributions /*! 180*fdd8201dSApple OSS Distributions * @function proto_unregister_plumber 181*fdd8201dSApple OSS Distributions * @discussion Unregisters a previously registered plumbing function. 182*fdd8201dSApple OSS Distributions * @param proto_fam The protocol family these plumbing functions 183*fdd8201dSApple OSS Distributions * handle. 184*fdd8201dSApple OSS Distributions * @param if_fam The interface family these plumbing functions handle. 185*fdd8201dSApple OSS Distributions */ 186*fdd8201dSApple OSS Distributions extern void proto_unregister_plumber(protocol_family_t proto_fam, 187*fdd8201dSApple OSS Distributions ifnet_family_t if_fam) 188*fdd8201dSApple OSS Distributions __NKE_API_DEPRECATED; 189*fdd8201dSApple OSS Distributions 190*fdd8201dSApple OSS Distributions #ifdef BSD_KERNEL_PRIVATE 191*fdd8201dSApple OSS Distributions /* 192*fdd8201dSApple OSS Distributions * @function proto_plumb 193*fdd8201dSApple OSS Distributions * @discussion Plumbs a protocol to an actual interface. This will find 194*fdd8201dSApple OSS Distributions * a registered protocol module and call its attach function. 195*fdd8201dSApple OSS Distributions * The module will typically call dlil_attach_protocol() with the 196*fdd8201dSApple OSS Distributions * appropriate parameters. 197*fdd8201dSApple OSS Distributions * @param protocol_family The protocol family. 198*fdd8201dSApple OSS Distributions * @param ifp The interface to plumb the protocol to. 199*fdd8201dSApple OSS Distributions * @result 0: No error. 200*fdd8201dSApple OSS Distributions * ENOENT: No module was registered. 201*fdd8201dSApple OSS Distributions * Other: Error returned by the attach_proto function 202*fdd8201dSApple OSS Distributions */ 203*fdd8201dSApple OSS Distributions extern errno_t proto_plumb(protocol_family_t protocol_family, ifnet_t ifp); 204*fdd8201dSApple OSS Distributions 205*fdd8201dSApple OSS Distributions /* 206*fdd8201dSApple OSS Distributions * @function proto_unplumb 207*fdd8201dSApple OSS Distributions * @discussion Unplumbs a protocol from an interface. This will find 208*fdd8201dSApple OSS Distributions * a registered protocol module and call its detach function. 209*fdd8201dSApple OSS Distributions * The module will typically call dlil_detach_protocol() with 210*fdd8201dSApple OSS Distributions * the appropriate parameters. If no module is found, this 211*fdd8201dSApple OSS Distributions * function will call dlil_detach_protocol directly(). 212*fdd8201dSApple OSS Distributions * @param protocol_family The protocol family. 213*fdd8201dSApple OSS Distributions * @param ifp The interface to unplumb the protocol from. 214*fdd8201dSApple OSS Distributions * @result 0: No error. 215*fdd8201dSApple OSS Distributions * ENOENT: No module was registered. 216*fdd8201dSApple OSS Distributions * Other: Error returned by the attach_proto function 217*fdd8201dSApple OSS Distributions */ 218*fdd8201dSApple OSS Distributions extern errno_t proto_unplumb(protocol_family_t protocol_family, ifnet_t ifp); 219*fdd8201dSApple OSS Distributions 220*fdd8201dSApple OSS Distributions __private_extern__ void 221*fdd8201dSApple OSS Distributions proto_kpi_init(void); 222*fdd8201dSApple OSS Distributions 223*fdd8201dSApple OSS Distributions #endif /* BSD_KERNEL_PRIVATE */ 224*fdd8201dSApple OSS Distributions __END_DECLS 225*fdd8201dSApple OSS Distributions 226*fdd8201dSApple OSS Distributions #undef __NKE_API_DEPRECATED 227*fdd8201dSApple OSS Distributions #endif /* __KPI_PROTOCOL__ */ 228