]> git.saurik.com Git - apple/xnu.git/blame - bsd/net/kext_net.h
xnu-1228.9.59.tar.gz
[apple/xnu.git] / bsd / net / kext_net.h
CommitLineData
1c79356b 1/*
2d21ac55 2 * Copyright (c) 1999-2006 Apple Computer, Inc. All rights reserved.
1c79356b 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
8f6c56a5 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b 27 */
91447636 28
1c79356b 29/*
91447636 30 * Support for socket filter kernel extensions
1c79356b 31 */
91447636 32
1c79356b
A
33#ifndef NET_KEXT_NET_H
34#define NET_KEXT_NET_H
91447636 35
9bccf70c 36#include <sys/appleapiopts.h>
1c79356b
A
37
38#include <sys/queue.h>
91447636 39#include <sys/cdefs.h>
1c79356b 40
91447636 41#ifdef BSD_KERNEL_PRIVATE
1c79356b 42
91447636 43#include <sys/kpi_socketfilter.h>
9bccf70c 44
1c79356b 45/*
91447636 46 * Internal implementation bits
1c79356b 47 */
91447636
A
48
49struct socket_filter;
50
4a3eedf9
A
51#define SFEF_DETACHUSEZERO 0x1 /* Detach when use reaches zero */
52#define SFEF_UNREGISTERING 0x2 /* Remove due to unregister */
53#define SFEF_DETACHXREF 0x4 /* Extra reference held for detach */
91447636
A
54
55struct socket_filter_entry {
56 struct socket_filter_entry *sfe_next_onsocket;
57 struct socket_filter_entry *sfe_next_onfilter;
58
59 struct socket_filter *sfe_filter;
60 struct socket *sfe_socket;
61 void *sfe_cookie;
62
63 u_int32_t sfe_flags;
1c79356b
A
64};
65
91447636 66#define SFF_DETACHING 0x1
1c79356b 67
91447636
A
68struct socket_filter {
69 TAILQ_ENTRY(socket_filter) sf_protosw_next;
70 TAILQ_ENTRY(socket_filter) sf_global_next;
71 struct socket_filter_entry *sf_entry_head;
72
73 struct protosw *sf_proto;
74 struct sflt_filter sf_filter;
75 u_int32_t sf_flags;
76 u_int32_t sf_usecount;
77};
1c79356b 78
91447636 79TAILQ_HEAD(socket_filter_list, socket_filter);
1c79356b 80
91447636 81/* Private, internal implementation functions */
2d21ac55 82void sflt_init(void) __attribute__((section("__TEXT, initcode")));
91447636
A
83void sflt_initsock(struct socket *so);
84void sflt_termsock(struct socket *so);
85void sflt_use(struct socket *so);
86void sflt_unuse(struct socket *so);
87void sflt_notify(struct socket *so, sflt_event_t event, void *param);
88int sflt_data_in(struct socket *so, const struct sockaddr *from, mbuf_t *data,
cc9f6e38 89 mbuf_t *control, sflt_data_flag_t flags, int *filtered);
91447636 90int sflt_attach_private(struct socket *so, struct socket_filter *filter, sflt_handle handle, int locked);
1c79356b 91
91447636
A
92#endif /* BSD_KERNEL_PRIVATE */
93
94#define NFF_BEFORE 0x01
95#define NFF_AFTER 0x02
1c79356b
A
96
97#define NKE_OK 0
98#define NKE_REMOVE -1
99
100/*
101 * Interface structure for inserting an installed socket NKE into an
102 * existing socket.
103 * 'handle' is the NKE to be inserted, 'where' is an insertion point,
104 * and flags dictate the position of the to-be-inserted NKE relative to
105 * the 'where' NKE. If the latter is NULL, the flags indicate "first"
106 * or "last"
107 */
0c530ab8 108#pragma pack(4)
91447636 109
1c79356b
A
110struct so_nke
111{ unsigned int nke_handle;
112 unsigned int nke_where;
113 int nke_flags; /* NFF_BEFORE, NFF_AFTER: net/kext_net.h */
2d21ac55 114 u_int32_t reserved[4]; /* for future use */
1c79356b
A
115};
116
0c530ab8 117#pragma pack()
1c79356b 118
91447636 119#endif /* NET_KEXT_NET_H */
1c79356b 120