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