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