]> git.saurik.com Git - apple/xnu.git/blame - bsd/net/kext_net.h
xnu-3789.21.4.tar.gz
[apple/xnu.git] / bsd / net / kext_net.h
CommitLineData
1c79356b 1/*
39236c6e 2 * Copyright (c) 1999-2013 Apple Inc. All rights reserved.
1c79356b 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
39236c6e 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.
39236c6e 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.
39236c6e 17 *
2d21ac55
A
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.
39236c6e 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 33#ifndef NET_KEXT_NET_H
39236c6e 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 * Internal implementation bits
1c79356b 44 */
39236c6e
A
45#include <sys/kpi_socketfilter.h>
46
47struct socket;
48struct sockopt;
743345f9 49struct inpcb;
91447636 50
91447636 51/* Private, internal implementation functions */
39236c6e 52extern void sflt_init(void);
743345f9 53extern int sflt_permission_check(struct inpcb *inp);
6d2010ae
A
54extern void sflt_initsock(struct socket *so);
55extern void sflt_termsock(struct socket *so);
56extern errno_t sflt_attach_internal(struct socket *so, sflt_handle handle);
57extern void sflt_notify(struct socket *so, sflt_event_t event, void *param);
58extern int sflt_ioctl(struct socket *so, u_long cmd, caddr_t data);
59extern int sflt_bind(struct socket *so, const struct sockaddr *nam);
60extern int sflt_listen(struct socket *so);
61extern int sflt_accept(struct socket *head, struct socket *so,
39236c6e
A
62 const struct sockaddr *local,
63 const struct sockaddr *remote);
6d2010ae
A
64extern int sflt_getsockname(struct socket *so, struct sockaddr **local);
65extern int sflt_getpeername(struct socket *so, struct sockaddr **remote);
39236c6e
A
66extern int sflt_connectin(struct socket *head,
67 const struct sockaddr *remote);
6d2010ae 68extern int sflt_connectout(struct socket *so, const struct sockaddr *nam);
39236c6e
A
69extern int sflt_connectxout(struct socket *so,
70 struct sockaddr_list **nam_sl);
6d2010ae
A
71extern int sflt_setsockopt(struct socket *so, struct sockopt *sopt);
72extern int sflt_getsockopt(struct socket *so, struct sockopt *sopt);
73extern int sflt_data_out(struct socket *so, const struct sockaddr *to,
39236c6e 74 mbuf_t *data, mbuf_t *control, sflt_data_flag_t flags);
6d2010ae 75extern int sflt_data_in(struct socket *so, const struct sockaddr *from,
39236c6e 76 mbuf_t *data, mbuf_t *control, sflt_data_flag_t flags);
1c79356b 77
91447636
A
78#endif /* BSD_KERNEL_PRIVATE */
79
39236c6e
A
80#define NFF_BEFORE 0x01
81#define NFF_AFTER 0x02
1c79356b 82
39236c6e
A
83#define NKE_OK 0
84#define NKE_REMOVE (-1)
1c79356b
A
85
86/*
87 * Interface structure for inserting an installed socket NKE into an
88 * existing socket.
89 * 'handle' is the NKE to be inserted, 'where' is an insertion point,
90 * and flags dictate the position of the to-be-inserted NKE relative to
91 * the 'where' NKE. If the latter is NULL, the flags indicate "first"
92 * or "last"
93 */
0c530ab8 94#pragma pack(4)
91447636 95
39236c6e
A
96struct so_nke {
97 unsigned int nke_handle;
1c79356b
A
98 unsigned int nke_where;
99 int nke_flags; /* NFF_BEFORE, NFF_AFTER: net/kext_net.h */
2d21ac55 100 u_int32_t reserved[4]; /* for future use */
1c79356b
A
101};
102
0c530ab8 103#pragma pack()
91447636 104#endif /* NET_KEXT_NET_H */