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