xref: /titanic_52/usr/src/uts/common/sys/netstack.h (revision bd41d0a82bd89bc81d63ae5dfc2ba4245f74ea6c)
1f4b3ec61Sdh155122 /*
2f4b3ec61Sdh155122  * CDDL HEADER START
3f4b3ec61Sdh155122  *
4f4b3ec61Sdh155122  * The contents of this file are subject to the terms of the
5f4b3ec61Sdh155122  * Common Development and Distribution License (the "License").
6f4b3ec61Sdh155122  * You may not use this file except in compliance with the License.
7f4b3ec61Sdh155122  *
8f4b3ec61Sdh155122  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9f4b3ec61Sdh155122  * or http://www.opensolaris.org/os/licensing.
10f4b3ec61Sdh155122  * See the License for the specific language governing permissions
11f4b3ec61Sdh155122  * and limitations under the License.
12f4b3ec61Sdh155122  *
13f4b3ec61Sdh155122  * When distributing Covered Code, include this CDDL HEADER in each
14f4b3ec61Sdh155122  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15f4b3ec61Sdh155122  * If applicable, add the following below this CDDL HEADER, with the
16f4b3ec61Sdh155122  * fields enclosed by brackets "[]" replaced with your own identifying
17f4b3ec61Sdh155122  * information: Portions Copyright [yyyy] [name of copyright owner]
18f4b3ec61Sdh155122  *
19f4b3ec61Sdh155122  * CDDL HEADER END
20f4b3ec61Sdh155122  */
21f4b3ec61Sdh155122 
22f4b3ec61Sdh155122 /*
23*bd41d0a8Snordmark  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24f4b3ec61Sdh155122  * Use is subject to license terms.
25f4b3ec61Sdh155122  */
26f4b3ec61Sdh155122 #ifndef _SYS_NETSTACK_H
27f4b3ec61Sdh155122 #define	_SYS_NETSTACK_H
28f4b3ec61Sdh155122 
29f4b3ec61Sdh155122 #pragma ident	"%Z%%M%	%I%	%E% SMI"
30f4b3ec61Sdh155122 
31f4b3ec61Sdh155122 #include <sys/kstat.h>
32f4b3ec61Sdh155122 
33f4b3ec61Sdh155122 #ifdef	__cplusplus
34f4b3ec61Sdh155122 extern "C" {
35f4b3ec61Sdh155122 #endif
36f4b3ec61Sdh155122 
37f4b3ec61Sdh155122 /*
38f4b3ec61Sdh155122  * This allows various pieces in and around IP to have a separate instance
39f4b3ec61Sdh155122  * for each instance of IP. This is used to support zones that have an
40f4b3ec61Sdh155122  * exclusive stack.
41f4b3ec61Sdh155122  * Pieces of software far removed from IP (e.g., kernel software
42f4b3ec61Sdh155122  * sitting on top of TCP or UDP) probably should not use the netstack
43f4b3ec61Sdh155122  * support; if such software wants to support separate zones it
44f4b3ec61Sdh155122  * can do that using the zones framework (zone_key_create() etc)
45f4b3ec61Sdh155122  * whether there is a shared IP stack or and exclusive IP stack underneath.
46f4b3ec61Sdh155122  */
47f4b3ec61Sdh155122 
48f4b3ec61Sdh155122 /*
49f4b3ec61Sdh155122  * Each netstack has an identifier. We reuse the zoneid allocation for
50f4b3ec61Sdh155122  * this but have a separate typedef. Thus the shared stack (used by
51f4b3ec61Sdh155122  * the global zone and other shared stack zones) have a zero ID, and
52f4b3ec61Sdh155122  * the exclusive stacks have a netstackid that is the same as their zoneid.
53f4b3ec61Sdh155122  */
54f4b3ec61Sdh155122 typedef id_t	netstackid_t;
55f4b3ec61Sdh155122 
56f4b3ec61Sdh155122 #define	GLOBAL_NETSTACKID	0
57f4b3ec61Sdh155122 
58f4b3ec61Sdh155122 /*
59f4b3ec61Sdh155122  * One for each module which uses netstack support.
60f4b3ec61Sdh155122  * Used in netstack_register().
61f4b3ec61Sdh155122  *
62f4b3ec61Sdh155122  * The order of these is important for some modules both for
63f4b3ec61Sdh155122  * the creation (which done in ascending order) and destruction (which is
64f4b3ec61Sdh155122  * done ine in decending order).
65f4b3ec61Sdh155122  */
6623f4867fSnordmark #define	NS_ALL		-1	/* Match all */
67f4b3ec61Sdh155122 #define	NS_HOOK		0
68f4b3ec61Sdh155122 #define	NS_NETI		1
69f4b3ec61Sdh155122 #define	NS_ARP		2
70f4b3ec61Sdh155122 #define	NS_IP		3
71f4b3ec61Sdh155122 #define	NS_ICMP		4
72f4b3ec61Sdh155122 #define	NS_UDP		5
73f4b3ec61Sdh155122 #define	NS_TCP		6
74f4b3ec61Sdh155122 #define	NS_SCTP		7
75f4b3ec61Sdh155122 #define	NS_RTS		8
76f4b3ec61Sdh155122 #define	NS_IPSEC	9
77f4b3ec61Sdh155122 #define	NS_KEYSOCK	10
78f4b3ec61Sdh155122 #define	NS_SPDSOCK	11
79f4b3ec61Sdh155122 #define	NS_IPSECAH	12
80f4b3ec61Sdh155122 #define	NS_IPSECESP	13
81f4b3ec61Sdh155122 #define	NS_TUN		14
82f4b3ec61Sdh155122 #define	NS_IPF		15
83f4b3ec61Sdh155122 #define	NS_STR		16	/* autopush list etc */
84f4b3ec61Sdh155122 #define	NS_MAX		(NS_STR+1)
85f4b3ec61Sdh155122 
86f4b3ec61Sdh155122 /*
87*bd41d0a8Snordmark  * State maintained for each module which tracks the state of
88*bd41d0a8Snordmark  * the create, shutdown and destroy callbacks.
89*bd41d0a8Snordmark  *
90*bd41d0a8Snordmark  * Keeps track of pending actions to avoid holding locks when
91*bd41d0a8Snordmark  * calling into the create/shutdown/destroy functions in the module.
92*bd41d0a8Snordmark  */
93*bd41d0a8Snordmark #ifdef _KERNEL
94*bd41d0a8Snordmark typedef struct {
95*bd41d0a8Snordmark 	uint16_t 	nms_flags;
96*bd41d0a8Snordmark 	kcondvar_t	nms_cv;
97*bd41d0a8Snordmark } nm_state_t;
98*bd41d0a8Snordmark 
99*bd41d0a8Snordmark /*
100*bd41d0a8Snordmark  * nms_flags
101*bd41d0a8Snordmark  */
102*bd41d0a8Snordmark #define	NSS_CREATE_NEEDED	0x0001
103*bd41d0a8Snordmark #define	NSS_CREATE_INPROGRESS	0x0002
104*bd41d0a8Snordmark #define	NSS_CREATE_COMPLETED	0x0004
105*bd41d0a8Snordmark #define	NSS_SHUTDOWN_NEEDED	0x0010
106*bd41d0a8Snordmark #define	NSS_SHUTDOWN_INPROGRESS	0x0020
107*bd41d0a8Snordmark #define	NSS_SHUTDOWN_COMPLETED	0x0040
108*bd41d0a8Snordmark #define	NSS_DESTROY_NEEDED	0x0100
109*bd41d0a8Snordmark #define	NSS_DESTROY_INPROGRESS	0x0200
110*bd41d0a8Snordmark #define	NSS_DESTROY_COMPLETED	0x0400
111*bd41d0a8Snordmark 
112*bd41d0a8Snordmark #define	NSS_CREATE_ALL	\
113*bd41d0a8Snordmark 	(NSS_CREATE_NEEDED|NSS_CREATE_INPROGRESS|NSS_CREATE_COMPLETED)
114*bd41d0a8Snordmark #define	NSS_SHUTDOWN_ALL	\
115*bd41d0a8Snordmark 	(NSS_SHUTDOWN_NEEDED|NSS_SHUTDOWN_INPROGRESS|NSS_SHUTDOWN_COMPLETED)
116*bd41d0a8Snordmark #define	NSS_DESTROY_ALL	\
117*bd41d0a8Snordmark 	(NSS_DESTROY_NEEDED|NSS_DESTROY_INPROGRESS|NSS_DESTROY_COMPLETED)
118*bd41d0a8Snordmark 
119*bd41d0a8Snordmark #define	NSS_ALL_INPROGRESS	\
120*bd41d0a8Snordmark 	(NSS_CREATE_INPROGRESS|NSS_SHUTDOWN_INPROGRESS|NSS_DESTROY_INPROGRESS)
121*bd41d0a8Snordmark #else
122*bd41d0a8Snordmark /* User-level compile like IP Filter needs a netstack_t. Dummy */
123*bd41d0a8Snordmark typedef uint_t nm_state_t;
124*bd41d0a8Snordmark #endif /* _KERNEL */
125*bd41d0a8Snordmark 
126*bd41d0a8Snordmark /*
127f4b3ec61Sdh155122  * One for every netstack in the system.
128f4b3ec61Sdh155122  * We use a union so that the compilar and lint can provide type checking -
129f4b3ec61Sdh155122  * in principle we could have
130f4b3ec61Sdh155122  * #define	netstack_arp		netstack_modules[NS_ARP]
131f4b3ec61Sdh155122  * etc, but that would imply void * types hence no type checking by the
132f4b3ec61Sdh155122  * compiler.
133f4b3ec61Sdh155122  *
134f4b3ec61Sdh155122  * All the fields in netstack_t except netstack_next are protected by
135f4b3ec61Sdh155122  * netstack_lock. netstack_next is protected by netstack_g_lock.
136f4b3ec61Sdh155122  */
137f4b3ec61Sdh155122 struct netstack {
138f4b3ec61Sdh155122 	union {
139f4b3ec61Sdh155122 		void	*nu_modules[NS_MAX];
140f4b3ec61Sdh155122 		struct {
141f4b3ec61Sdh155122 			struct hook_stack	*nu_hook;
142f4b3ec61Sdh155122 			struct neti_stack	*nu_neti;
143f4b3ec61Sdh155122 			struct arp_stack	*nu_arp;
144f4b3ec61Sdh155122 			struct ip_stack		*nu_ip;
145f4b3ec61Sdh155122 			struct icmp_stack	*nu_icmp;
146f4b3ec61Sdh155122 			struct udp_stack	*nu_udp;
147f4b3ec61Sdh155122 			struct tcp_stack	*nu_tcp;
148f4b3ec61Sdh155122 			struct sctp_stack	*nu_sctp;
149f4b3ec61Sdh155122 			struct rts_stack	*nu_rts;
150f4b3ec61Sdh155122 			struct ipsec_stack	*nu_ipsec;
151f4b3ec61Sdh155122 			struct keysock_stack	*nu_keysock;
152f4b3ec61Sdh155122 			struct spd_stack	*nu_spdsock;
153f4b3ec61Sdh155122 			struct ipsecah_stack	*nu_ipsecah;
154f4b3ec61Sdh155122 			struct ipsecesp_stack	*nu_ipsecesp;
155f4b3ec61Sdh155122 			struct tun_stack	*nu_tun;
156f4b3ec61Sdh155122 			struct ipf_stack	*nu_ipf;
157f4b3ec61Sdh155122 			struct str_stack	*nu_str;
158f4b3ec61Sdh155122 		} nu_s;
159f4b3ec61Sdh155122 	} netstack_u;
160f4b3ec61Sdh155122 #define	netstack_modules	netstack_u.nu_modules
161f4b3ec61Sdh155122 #define	netstack_hook		netstack_u.nu_s.nu_hook
162f4b3ec61Sdh155122 #define	netstack_neti		netstack_u.nu_s.nu_neti
163f4b3ec61Sdh155122 #define	netstack_arp		netstack_u.nu_s.nu_arp
164f4b3ec61Sdh155122 #define	netstack_ip		netstack_u.nu_s.nu_ip
165f4b3ec61Sdh155122 #define	netstack_icmp		netstack_u.nu_s.nu_icmp
166f4b3ec61Sdh155122 #define	netstack_udp		netstack_u.nu_s.nu_udp
167f4b3ec61Sdh155122 #define	netstack_tcp		netstack_u.nu_s.nu_tcp
168f4b3ec61Sdh155122 #define	netstack_sctp		netstack_u.nu_s.nu_sctp
169f4b3ec61Sdh155122 #define	netstack_rts		netstack_u.nu_s.nu_rts
170f4b3ec61Sdh155122 #define	netstack_ipsec		netstack_u.nu_s.nu_ipsec
171f4b3ec61Sdh155122 #define	netstack_keysock	netstack_u.nu_s.nu_keysock
172f4b3ec61Sdh155122 #define	netstack_spdsock	netstack_u.nu_s.nu_spdsock
173f4b3ec61Sdh155122 #define	netstack_ipsecah	netstack_u.nu_s.nu_ipsecah
174f4b3ec61Sdh155122 #define	netstack_ipsecesp	netstack_u.nu_s.nu_ipsecesp
175f4b3ec61Sdh155122 #define	netstack_tun		netstack_u.nu_s.nu_tun
176f4b3ec61Sdh155122 #define	netstack_ipf		netstack_u.nu_s.nu_ipf
177f4b3ec61Sdh155122 #define	netstack_str		netstack_u.nu_s.nu_str
178f4b3ec61Sdh155122 
179*bd41d0a8Snordmark 	nm_state_t	netstack_m_state[NS_MAX]; /* module state */
180f4b3ec61Sdh155122 
181f4b3ec61Sdh155122 	kmutex_t	netstack_lock;
182f4b3ec61Sdh155122 	struct netstack *netstack_next;
183f4b3ec61Sdh155122 	netstackid_t	netstack_stackid;
184f4b3ec61Sdh155122 	int		netstack_numzones;	/* Number of zones using this */
185f4b3ec61Sdh155122 	int		netstack_refcnt;	/* Number of hold-rele */
186f4b3ec61Sdh155122 	int		netstack_flags;	/* See below */
187*bd41d0a8Snordmark 
188*bd41d0a8Snordmark #ifdef _KERNEL
189*bd41d0a8Snordmark 	/* Needed to ensure that we run the callback functions in order */
190*bd41d0a8Snordmark 	kcondvar_t	netstack_cv;
191*bd41d0a8Snordmark #endif
192f4b3ec61Sdh155122 };
193f4b3ec61Sdh155122 typedef struct netstack netstack_t;
194f4b3ec61Sdh155122 
195f4b3ec61Sdh155122 /* netstack_flags values */
196f4b3ec61Sdh155122 #define	NSF_UNINIT		0x01		/* Not initialized */
197f4b3ec61Sdh155122 #define	NSF_CLOSING		0x02		/* Going away */
198*bd41d0a8Snordmark #define	NSF_ZONE_CREATE		0x04		/* create callbacks inprog */
199*bd41d0a8Snordmark #define	NSF_ZONE_SHUTDOWN	0x08		/* shutdown callbacks */
200*bd41d0a8Snordmark #define	NSF_ZONE_DESTROY	0x10		/* destroy callbacks */
201f4b3ec61Sdh155122 
202*bd41d0a8Snordmark #define	NSF_ZONE_INPROGRESS	\
203*bd41d0a8Snordmark 	(NSF_ZONE_CREATE|NSF_ZONE_SHUTDOWN|NSF_ZONE_DESTROY)
204f4b3ec61Sdh155122 
205f4b3ec61Sdh155122 /*
206f4b3ec61Sdh155122  * One for each of the NS_* values.
207f4b3ec61Sdh155122  */
208f4b3ec61Sdh155122 struct netstack_registry {
209f4b3ec61Sdh155122 	int		nr_flags;	/* 0 if nothing registered */
210f4b3ec61Sdh155122 	void		*(*nr_create)(netstackid_t, netstack_t *);
211f4b3ec61Sdh155122 	void		(*nr_shutdown)(netstackid_t, void *);
212f4b3ec61Sdh155122 	void		(*nr_destroy)(netstackid_t, void *);
213f4b3ec61Sdh155122 };
214f4b3ec61Sdh155122 
215f4b3ec61Sdh155122 /* nr_flags values */
216f4b3ec61Sdh155122 #define	NRF_REGISTERED	0x01
217*bd41d0a8Snordmark #define	NRF_DYING	0x02	/* No new creates */
218f4b3ec61Sdh155122 
219f4b3ec61Sdh155122 /*
220f4b3ec61Sdh155122  * To support kstat_create_netstack() using kstat_add_zone we need
221f4b3ec61Sdh155122  * to track both
222f4b3ec61Sdh155122  *  - all zoneids that use the global/shared stack
223f4b3ec61Sdh155122  *  - all kstats that have been added for the shared stack
224f4b3ec61Sdh155122  */
225f4b3ec61Sdh155122 
226f4b3ec61Sdh155122 extern void netstack_init(void);
227f4b3ec61Sdh155122 extern void netstack_hold(netstack_t *);
228f4b3ec61Sdh155122 extern void netstack_rele(netstack_t *);
229f4b3ec61Sdh155122 extern netstack_t *netstack_find_by_cred(const cred_t *);
230f4b3ec61Sdh155122 extern netstack_t *netstack_find_by_stackid(netstackid_t);
231f4b3ec61Sdh155122 extern netstack_t *netstack_find_by_zoneid(zoneid_t);
232f4b3ec61Sdh155122 
233f4b3ec61Sdh155122 extern zoneid_t netstackid_to_zoneid(netstackid_t);
234f4b3ec61Sdh155122 extern netstackid_t zoneid_to_netstackid(zoneid_t);
235f4b3ec61Sdh155122 
236fd006805Snordmark extern netstack_t *netstack_get_current(void);
237fd006805Snordmark 
238f4b3ec61Sdh155122 /*
239f4b3ec61Sdh155122  * Register interest in changes to the set of netstacks.
240f4b3ec61Sdh155122  * The createfn and destroyfn are required, but the shutdownfn can be
241f4b3ec61Sdh155122  * NULL.
242f4b3ec61Sdh155122  * Note that due to the current zsd implementation, when the create
243f4b3ec61Sdh155122  * function is called the zone isn't fully present, thus functions
244f4b3ec61Sdh155122  * like zone_find_by_* will fail, hence the create function can not
245f4b3ec61Sdh155122  * use many zones kernel functions including zcmn_err().
246f4b3ec61Sdh155122  */
247f4b3ec61Sdh155122 extern void	netstack_register(int,
248f4b3ec61Sdh155122     void *(*)(netstackid_t, netstack_t *),
249f4b3ec61Sdh155122     void (*)(netstackid_t, void *),
250f4b3ec61Sdh155122     void (*)(netstackid_t, void *));
251f4b3ec61Sdh155122 extern void	netstack_unregister(int);
252f4b3ec61Sdh155122 extern kstat_t	*kstat_create_netstack(char *, int, char *, char *, uchar_t,
253f4b3ec61Sdh155122     uint_t, uchar_t, netstackid_t);
254f4b3ec61Sdh155122 extern void	kstat_delete_netstack(kstat_t *, netstackid_t);
255f4b3ec61Sdh155122 
256f4b3ec61Sdh155122 /*
257f4b3ec61Sdh155122  * Simple support for walking all the netstacks.
258f4b3ec61Sdh155122  * The caller of netstack_next() needs to call netstack_rele() when
259f4b3ec61Sdh155122  * done with a netstack.
260f4b3ec61Sdh155122  */
261f4b3ec61Sdh155122 typedef	int	netstack_handle_t;
262f4b3ec61Sdh155122 
263f4b3ec61Sdh155122 extern void	netstack_next_init(netstack_handle_t *);
264f4b3ec61Sdh155122 extern void	netstack_next_fini(netstack_handle_t *);
265f4b3ec61Sdh155122 extern netstack_t	*netstack_next(netstack_handle_t *);
266f4b3ec61Sdh155122 
267f4b3ec61Sdh155122 #ifdef	__cplusplus
268f4b3ec61Sdh155122 }
269f4b3ec61Sdh155122 #endif
270f4b3ec61Sdh155122 
271f4b3ec61Sdh155122 
272f4b3ec61Sdh155122 #endif	/* _SYS_NETSTACK_H */
273