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 /* 23f4b3ec61Sdh155122 * Copyright 2007 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 */ 66f4b3ec61Sdh155122 #define NS_HOOK 0 67f4b3ec61Sdh155122 #define NS_NETI 1 68f4b3ec61Sdh155122 #define NS_ARP 2 69f4b3ec61Sdh155122 #define NS_IP 3 70f4b3ec61Sdh155122 #define NS_ICMP 4 71f4b3ec61Sdh155122 #define NS_UDP 5 72f4b3ec61Sdh155122 #define NS_TCP 6 73f4b3ec61Sdh155122 #define NS_SCTP 7 74f4b3ec61Sdh155122 #define NS_RTS 8 75f4b3ec61Sdh155122 #define NS_IPSEC 9 76f4b3ec61Sdh155122 #define NS_KEYSOCK 10 77f4b3ec61Sdh155122 #define NS_SPDSOCK 11 78f4b3ec61Sdh155122 #define NS_IPSECAH 12 79f4b3ec61Sdh155122 #define NS_IPSECESP 13 80f4b3ec61Sdh155122 #define NS_TUN 14 81f4b3ec61Sdh155122 #define NS_IPF 15 82f4b3ec61Sdh155122 #define NS_STR 16 /* autopush list etc */ 83f4b3ec61Sdh155122 #define NS_MAX (NS_STR+1) 84f4b3ec61Sdh155122 85f4b3ec61Sdh155122 /* 86f4b3ec61Sdh155122 * One for every netstack in the system. 87f4b3ec61Sdh155122 * We use a union so that the compilar and lint can provide type checking - 88f4b3ec61Sdh155122 * in principle we could have 89f4b3ec61Sdh155122 * #define netstack_arp netstack_modules[NS_ARP] 90f4b3ec61Sdh155122 * etc, but that would imply void * types hence no type checking by the 91f4b3ec61Sdh155122 * compiler. 92f4b3ec61Sdh155122 * 93f4b3ec61Sdh155122 * All the fields in netstack_t except netstack_next are protected by 94f4b3ec61Sdh155122 * netstack_lock. netstack_next is protected by netstack_g_lock. 95f4b3ec61Sdh155122 */ 96f4b3ec61Sdh155122 struct netstack { 97f4b3ec61Sdh155122 union { 98f4b3ec61Sdh155122 void *nu_modules[NS_MAX]; 99f4b3ec61Sdh155122 struct { 100f4b3ec61Sdh155122 struct hook_stack *nu_hook; 101f4b3ec61Sdh155122 struct neti_stack *nu_neti; 102f4b3ec61Sdh155122 struct arp_stack *nu_arp; 103f4b3ec61Sdh155122 struct ip_stack *nu_ip; 104f4b3ec61Sdh155122 struct icmp_stack *nu_icmp; 105f4b3ec61Sdh155122 struct udp_stack *nu_udp; 106f4b3ec61Sdh155122 struct tcp_stack *nu_tcp; 107f4b3ec61Sdh155122 struct sctp_stack *nu_sctp; 108f4b3ec61Sdh155122 struct rts_stack *nu_rts; 109f4b3ec61Sdh155122 struct ipsec_stack *nu_ipsec; 110f4b3ec61Sdh155122 struct keysock_stack *nu_keysock; 111f4b3ec61Sdh155122 struct spd_stack *nu_spdsock; 112f4b3ec61Sdh155122 struct ipsecah_stack *nu_ipsecah; 113f4b3ec61Sdh155122 struct ipsecesp_stack *nu_ipsecesp; 114f4b3ec61Sdh155122 struct tun_stack *nu_tun; 115f4b3ec61Sdh155122 struct ipf_stack *nu_ipf; 116f4b3ec61Sdh155122 struct str_stack *nu_str; 117f4b3ec61Sdh155122 } nu_s; 118f4b3ec61Sdh155122 } netstack_u; 119f4b3ec61Sdh155122 #define netstack_modules netstack_u.nu_modules 120f4b3ec61Sdh155122 #define netstack_hook netstack_u.nu_s.nu_hook 121f4b3ec61Sdh155122 #define netstack_neti netstack_u.nu_s.nu_neti 122f4b3ec61Sdh155122 #define netstack_arp netstack_u.nu_s.nu_arp 123f4b3ec61Sdh155122 #define netstack_ip netstack_u.nu_s.nu_ip 124f4b3ec61Sdh155122 #define netstack_icmp netstack_u.nu_s.nu_icmp 125f4b3ec61Sdh155122 #define netstack_udp netstack_u.nu_s.nu_udp 126f4b3ec61Sdh155122 #define netstack_tcp netstack_u.nu_s.nu_tcp 127f4b3ec61Sdh155122 #define netstack_sctp netstack_u.nu_s.nu_sctp 128f4b3ec61Sdh155122 #define netstack_rts netstack_u.nu_s.nu_rts 129f4b3ec61Sdh155122 #define netstack_ipsec netstack_u.nu_s.nu_ipsec 130f4b3ec61Sdh155122 #define netstack_keysock netstack_u.nu_s.nu_keysock 131f4b3ec61Sdh155122 #define netstack_spdsock netstack_u.nu_s.nu_spdsock 132f4b3ec61Sdh155122 #define netstack_ipsecah netstack_u.nu_s.nu_ipsecah 133f4b3ec61Sdh155122 #define netstack_ipsecesp netstack_u.nu_s.nu_ipsecesp 134f4b3ec61Sdh155122 #define netstack_tun netstack_u.nu_s.nu_tun 135f4b3ec61Sdh155122 #define netstack_ipf netstack_u.nu_s.nu_ipf 136f4b3ec61Sdh155122 #define netstack_str netstack_u.nu_s.nu_str 137f4b3ec61Sdh155122 138f4b3ec61Sdh155122 uint16_t netstack_m_state[NS_MAX]; /* module state */ 139f4b3ec61Sdh155122 140f4b3ec61Sdh155122 kmutex_t netstack_lock; 141f4b3ec61Sdh155122 struct netstack *netstack_next; 142f4b3ec61Sdh155122 netstackid_t netstack_stackid; 143f4b3ec61Sdh155122 int netstack_numzones; /* Number of zones using this */ 144f4b3ec61Sdh155122 int netstack_refcnt; /* Number of hold-rele */ 145f4b3ec61Sdh155122 int netstack_flags; /* See below */ 146f4b3ec61Sdh155122 }; 147f4b3ec61Sdh155122 typedef struct netstack netstack_t; 148f4b3ec61Sdh155122 149f4b3ec61Sdh155122 /* netstack_flags values */ 150f4b3ec61Sdh155122 #define NSF_UNINIT 0x01 /* Not initialized */ 151f4b3ec61Sdh155122 #define NSF_CLOSING 0x02 /* Going away */ 152f4b3ec61Sdh155122 153f4b3ec61Sdh155122 /* 154f4b3ec61Sdh155122 * State for each module for each stack - netstack_m_state[moduleid] 155f4b3ec61Sdh155122 * Keeps track of pending actions to avoid holding looks when 156f4b3ec61Sdh155122 * calling into the create/shutdown/destroy functions in the module. 157f4b3ec61Sdh155122 */ 158f4b3ec61Sdh155122 #define NSS_CREATE_NEEDED 0x0001 159f4b3ec61Sdh155122 #define NSS_CREATE_INPROGRESS 0x0002 160f4b3ec61Sdh155122 #define NSS_CREATE_COMPLETED 0x0004 161f4b3ec61Sdh155122 #define NSS_SHUTDOWN_NEEDED 0x0010 162f4b3ec61Sdh155122 #define NSS_SHUTDOWN_INPROGRESS 0x0020 163f4b3ec61Sdh155122 #define NSS_SHUTDOWN_COMPLETED 0x0040 164f4b3ec61Sdh155122 #define NSS_DESTROY_NEEDED 0x0100 165f4b3ec61Sdh155122 #define NSS_DESTROY_INPROGRESS 0x0200 166f4b3ec61Sdh155122 #define NSS_DESTROY_COMPLETED 0x0400 167f4b3ec61Sdh155122 168f4b3ec61Sdh155122 #define NSS_CREATE_ALL \ 169f4b3ec61Sdh155122 (NSS_CREATE_NEEDED|NSS_CREATE_INPROGRESS|NSS_CREATE_COMPLETED) 170f4b3ec61Sdh155122 #define NSS_SHUTDOWN_ALL \ 171f4b3ec61Sdh155122 (NSS_SHUTDOWN_NEEDED|NSS_SHUTDOWN_INPROGRESS|NSS_SHUTDOWN_COMPLETED) 172f4b3ec61Sdh155122 #define NSS_DESTROY_ALL \ 173f4b3ec61Sdh155122 (NSS_DESTROY_NEEDED|NSS_DESTROY_INPROGRESS|NSS_DESTROY_COMPLETED) 174f4b3ec61Sdh155122 175f4b3ec61Sdh155122 /* 176f4b3ec61Sdh155122 * One for each of the NS_* values. 177f4b3ec61Sdh155122 */ 178f4b3ec61Sdh155122 struct netstack_registry { 179f4b3ec61Sdh155122 int nr_flags; /* 0 if nothing registered */ 180f4b3ec61Sdh155122 void *(*nr_create)(netstackid_t, netstack_t *); 181f4b3ec61Sdh155122 void (*nr_shutdown)(netstackid_t, void *); 182f4b3ec61Sdh155122 void (*nr_destroy)(netstackid_t, void *); 183f4b3ec61Sdh155122 }; 184f4b3ec61Sdh155122 185f4b3ec61Sdh155122 /* nr_flags values */ 186f4b3ec61Sdh155122 #define NRF_REGISTERED 0x01 187f4b3ec61Sdh155122 188f4b3ec61Sdh155122 /* 189f4b3ec61Sdh155122 * To support kstat_create_netstack() using kstat_add_zone we need 190f4b3ec61Sdh155122 * to track both 191f4b3ec61Sdh155122 * - all zoneids that use the global/shared stack 192f4b3ec61Sdh155122 * - all kstats that have been added for the shared stack 193f4b3ec61Sdh155122 */ 194f4b3ec61Sdh155122 195f4b3ec61Sdh155122 extern void netstack_init(void); 196f4b3ec61Sdh155122 extern void netstack_hold(netstack_t *); 197f4b3ec61Sdh155122 extern void netstack_rele(netstack_t *); 198f4b3ec61Sdh155122 extern netstack_t *netstack_find_by_cred(const cred_t *); 199f4b3ec61Sdh155122 extern netstack_t *netstack_find_by_stackid(netstackid_t); 200f4b3ec61Sdh155122 extern netstack_t *netstack_find_by_zoneid(zoneid_t); 201f4b3ec61Sdh155122 202f4b3ec61Sdh155122 extern zoneid_t netstackid_to_zoneid(netstackid_t); 203f4b3ec61Sdh155122 extern netstackid_t zoneid_to_netstackid(zoneid_t); 204f4b3ec61Sdh155122 205*fd006805Snordmark extern netstack_t *netstack_get_current(void); 206*fd006805Snordmark 207f4b3ec61Sdh155122 /* 208f4b3ec61Sdh155122 * Register interest in changes to the set of netstacks. 209f4b3ec61Sdh155122 * The createfn and destroyfn are required, but the shutdownfn can be 210f4b3ec61Sdh155122 * NULL. 211f4b3ec61Sdh155122 * Note that due to the current zsd implementation, when the create 212f4b3ec61Sdh155122 * function is called the zone isn't fully present, thus functions 213f4b3ec61Sdh155122 * like zone_find_by_* will fail, hence the create function can not 214f4b3ec61Sdh155122 * use many zones kernel functions including zcmn_err(). 215f4b3ec61Sdh155122 */ 216f4b3ec61Sdh155122 extern void netstack_register(int, 217f4b3ec61Sdh155122 void *(*)(netstackid_t, netstack_t *), 218f4b3ec61Sdh155122 void (*)(netstackid_t, void *), 219f4b3ec61Sdh155122 void (*)(netstackid_t, void *)); 220f4b3ec61Sdh155122 extern void netstack_unregister(int); 221f4b3ec61Sdh155122 extern kstat_t *kstat_create_netstack(char *, int, char *, char *, uchar_t, 222f4b3ec61Sdh155122 uint_t, uchar_t, netstackid_t); 223f4b3ec61Sdh155122 extern void kstat_delete_netstack(kstat_t *, netstackid_t); 224f4b3ec61Sdh155122 225f4b3ec61Sdh155122 /* 226f4b3ec61Sdh155122 * Simple support for walking all the netstacks. 227f4b3ec61Sdh155122 * The caller of netstack_next() needs to call netstack_rele() when 228f4b3ec61Sdh155122 * done with a netstack. 229f4b3ec61Sdh155122 */ 230f4b3ec61Sdh155122 typedef int netstack_handle_t; 231f4b3ec61Sdh155122 232f4b3ec61Sdh155122 extern void netstack_next_init(netstack_handle_t *); 233f4b3ec61Sdh155122 extern void netstack_next_fini(netstack_handle_t *); 234f4b3ec61Sdh155122 extern netstack_t *netstack_next(netstack_handle_t *); 235f4b3ec61Sdh155122 236f4b3ec61Sdh155122 #ifdef __cplusplus 237f4b3ec61Sdh155122 } 238f4b3ec61Sdh155122 #endif 239f4b3ec61Sdh155122 240f4b3ec61Sdh155122 241f4b3ec61Sdh155122 #endif /* _SYS_NETSTACK_H */ 242