1*699cd480SApple OSS Distributions /* 2*699cd480SApple OSS Distributions * Copyright (c) 1999-2013 Apple Inc. All rights reserved. 3*699cd480SApple OSS Distributions * 4*699cd480SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5*699cd480SApple OSS Distributions * 6*699cd480SApple OSS Distributions * This file contains Original Code and/or Modifications of Original Code 7*699cd480SApple OSS Distributions * as defined in and that are subject to the Apple Public Source License 8*699cd480SApple OSS Distributions * Version 2.0 (the 'License'). You may not use this file except in 9*699cd480SApple OSS Distributions * compliance with the License. The rights granted to you under the License 10*699cd480SApple OSS Distributions * may not be used to create, or enable the creation or redistribution of, 11*699cd480SApple OSS Distributions * unlawful or unlicensed copies of an Apple operating system, or to 12*699cd480SApple OSS Distributions * circumvent, violate, or enable the circumvention or violation of, any 13*699cd480SApple OSS Distributions * terms of an Apple operating system software license agreement. 14*699cd480SApple OSS Distributions * 15*699cd480SApple OSS Distributions * Please obtain a copy of the License at 16*699cd480SApple OSS Distributions * http://www.opensource.apple.com/apsl/ and read it before using this file. 17*699cd480SApple OSS Distributions * 18*699cd480SApple OSS Distributions * The Original Code and all software distributed under the License are 19*699cd480SApple OSS Distributions * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20*699cd480SApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21*699cd480SApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22*699cd480SApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23*699cd480SApple OSS Distributions * Please see the License for the specific language governing rights and 24*699cd480SApple OSS Distributions * limitations under the License. 25*699cd480SApple OSS Distributions * 26*699cd480SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27*699cd480SApple OSS Distributions */ 28*699cd480SApple OSS Distributions 29*699cd480SApple OSS Distributions /* 30*699cd480SApple OSS Distributions * Support for socket filter kernel extensions 31*699cd480SApple OSS Distributions */ 32*699cd480SApple OSS Distributions 33*699cd480SApple OSS Distributions #ifndef NET_KEXT_NET_H 34*699cd480SApple OSS Distributions #define NET_KEXT_NET_H 35*699cd480SApple OSS Distributions 36*699cd480SApple OSS Distributions #include <sys/appleapiopts.h> 37*699cd480SApple OSS Distributions 38*699cd480SApple OSS Distributions #include <sys/queue.h> 39*699cd480SApple OSS Distributions #include <sys/cdefs.h> 40*699cd480SApple OSS Distributions #include <sys/types.h> 41*699cd480SApple OSS Distributions 42*699cd480SApple OSS Distributions #ifdef BSD_KERNEL_PRIVATE 43*699cd480SApple OSS Distributions /* 44*699cd480SApple OSS Distributions * Internal implementation bits 45*699cd480SApple OSS Distributions */ 46*699cd480SApple OSS Distributions #include <sys/kpi_socketfilter.h> 47*699cd480SApple OSS Distributions 48*699cd480SApple OSS Distributions struct socket; 49*699cd480SApple OSS Distributions struct sockopt; 50*699cd480SApple OSS Distributions struct inpcb; 51*699cd480SApple OSS Distributions 52*699cd480SApple OSS Distributions /* Private, internal implementation functions */ 53*699cd480SApple OSS Distributions extern int sflt_permission_check(struct inpcb *inp); 54*699cd480SApple OSS Distributions extern void sflt_initsock(struct socket *so); 55*699cd480SApple OSS Distributions extern void sflt_termsock(struct socket *so); 56*699cd480SApple OSS Distributions extern errno_t sflt_attach_internal(struct socket *so, sflt_handle handle); 57*699cd480SApple OSS Distributions extern void sflt_notify(struct socket *so, sflt_event_t event, void *param); 58*699cd480SApple OSS Distributions extern int sflt_ioctl(struct socket *so, u_long cmd, caddr_t data); 59*699cd480SApple OSS Distributions extern int sflt_bind(struct socket *so, const struct sockaddr *nam); 60*699cd480SApple OSS Distributions extern int sflt_listen(struct socket *so); 61*699cd480SApple OSS Distributions extern int sflt_accept(struct socket *head, struct socket *so, 62*699cd480SApple OSS Distributions const struct sockaddr *local, 63*699cd480SApple OSS Distributions const struct sockaddr *remote); 64*699cd480SApple OSS Distributions extern int sflt_getsockname(struct socket *so, struct sockaddr **local); 65*699cd480SApple OSS Distributions extern int sflt_getpeername(struct socket *so, struct sockaddr **remote); 66*699cd480SApple OSS Distributions extern int sflt_connectin(struct socket *head, 67*699cd480SApple OSS Distributions const struct sockaddr *remote); 68*699cd480SApple OSS Distributions extern int sflt_connectout(struct socket *so, const struct sockaddr *nam); 69*699cd480SApple OSS Distributions extern int sflt_setsockopt(struct socket *so, struct sockopt *sopt); 70*699cd480SApple OSS Distributions extern int sflt_getsockopt(struct socket *so, struct sockopt *sopt); 71*699cd480SApple OSS Distributions extern int sflt_data_out(struct socket *so, const struct sockaddr *to, 72*699cd480SApple OSS Distributions mbuf_t *data, mbuf_t *control, sflt_data_flag_t flags); 73*699cd480SApple OSS Distributions extern int sflt_data_in(struct socket *so, const struct sockaddr *from, 74*699cd480SApple OSS Distributions mbuf_t *data, mbuf_t *control, sflt_data_flag_t flags); 75*699cd480SApple OSS Distributions 76*699cd480SApple OSS Distributions #endif /* BSD_KERNEL_PRIVATE */ 77*699cd480SApple OSS Distributions 78*699cd480SApple OSS Distributions #define NFF_BEFORE 0x01 79*699cd480SApple OSS Distributions #define NFF_AFTER 0x02 80*699cd480SApple OSS Distributions 81*699cd480SApple OSS Distributions #define NKE_OK 0 82*699cd480SApple OSS Distributions #define NKE_REMOVE (-1) 83*699cd480SApple OSS Distributions 84*699cd480SApple OSS Distributions /* 85*699cd480SApple OSS Distributions * Interface structure for inserting an installed socket NKE into an 86*699cd480SApple OSS Distributions * existing socket. 87*699cd480SApple OSS Distributions * 'handle' is the NKE to be inserted, 'where' is an insertion point, 88*699cd480SApple OSS Distributions * and flags dictate the position of the to-be-inserted NKE relative to 89*699cd480SApple OSS Distributions * the 'where' NKE. If the latter is NULL, the flags indicate "first" 90*699cd480SApple OSS Distributions * or "last" 91*699cd480SApple OSS Distributions */ 92*699cd480SApple OSS Distributions #pragma pack(4) 93*699cd480SApple OSS Distributions 94*699cd480SApple OSS Distributions struct so_nke { 95*699cd480SApple OSS Distributions unsigned int nke_handle; 96*699cd480SApple OSS Distributions unsigned int nke_where; 97*699cd480SApple OSS Distributions int nke_flags; /* NFF_BEFORE, NFF_AFTER: net/kext_net.h */ 98*699cd480SApple OSS Distributions u_int32_t reserved[4]; /* for future use */ 99*699cd480SApple OSS Distributions }; 100*699cd480SApple OSS Distributions 101*699cd480SApple OSS Distributions #pragma pack() 102*699cd480SApple OSS Distributions #endif /* NET_KEXT_NET_H */ 103