1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Copyright (c) 2013, Joyent, Inc. All rights reserved.
*/
#ifndef _SYS_MAC_CLIENT_IMPL_H
#define _SYS_MAC_CLIENT_IMPL_H
#include <sys/modhash.h>
#include <sys/mac_client.h>
#include <sys/mac_provider.h>
#include <sys/mac.h>
#include <sys/mac_impl.h>
#include <sys/mac_stat.h>
#include <net/if.h>
#include <sys/mac_flow_impl.h>
#ifdef __cplusplus
extern "C" {
#endif
extern kmem_cache_t *mac_client_impl_cache;
extern kmem_cache_t *mac_unicast_impl_cache;
extern kmem_cache_t *mac_promisc_impl_cache;
/*
* Need a list to chain all VIDs assigned to a client. Normally, one
* MAC client only has one VID. But vsw might need multiple VIDs.
*/
typedef struct mac_unicast_impl_s { /* Protected by */
struct mac_unicast_impl_s *mui_next; /* SL */
mac_address_t *mui_map; /* SL */
uint16_t mui_vid; /* SL */
} mac_unicast_impl_t;
#define MAC_CLIENT_FLAGS_PRIMARY 0X0001
#define MAC_CLIENT_FLAGS_VNIC_PRIMARY 0x0002
#define MAC_CLIENT_FLAGS_MULTI_PRIMARY 0x0004
#define MAC_CLIENT_FLAGS_PASSIVE_PRIMARY 0x0008
/*
* One of these is instantiated per MAC client promiscuous callback.
*
* Each element of this structure belongs to two linked list. One
* for the mac_client_impl_t (mci_promisc_list) which created allocated
* the callback, the other for the mac_impl_t (mi_promisc_list) corresponding
* to the MAC client.
* The former allows us to do bookkeeping, the latter allows us
* to more efficiently dispatch packets to the promiscuous callbacks.
*/
typedef struct mac_promisc_impl_s { /* Protected by */
mac_cb_t mpi_mci_link; /* mi_promisc_lock */
mac_cb_t mpi_mi_link; /* mi_promisc_lock */
mac_client_promisc_type_t mpi_type; /* WO */
mac_rx_t mpi_fn; /* WO */
void *mpi_arg; /* WO */
struct mac_client_impl_s *mpi_mcip; /* WO */
boolean_t mpi_no_tx_loop; /* WO */
boolean_t mpi_no_phys; /* WO */
boolean_t mpi_strip_vlan_tag; /* WO */
boolean_t mpi_no_copy; /* WO */
} mac_promisc_impl_t;
typedef union mac_tx_percpu_s {
struct {
kmutex_t _pcpu_tx_lock;
uint_t _pcpu_tx_refcnt;
} pcpu_lr;
uchar_t pcpu_pad[64];
} mac_tx_percpu_t;
#define pcpu_tx_lock pcpu_lr._pcpu_tx_lock
#define pcpu_tx_refcnt pcpu_lr._pcpu_tx_refcnt
/*
* One of these is instanciated for each MAC client.
*/
struct mac_client_impl_s { /* Protected by */
struct mac_client_impl_s *mci_client_next; /* mi_rw_lock */
char mci_name[MAXNAMELEN]; /* mi_rw_lock */
/*
* This flow entry will contain all the internal constructs
* such as SRS etc. for this MAC client. The MAC client may
* have more than one flow corresponding to each upper client
* sharing this mac_client_impl_t.
*/
flow_entry_t *mci_flent; /* mi_rw_lock */
struct mac_impl_s *mci_mip; /* WO */
/*
* If this is a client that has a pass thru MAC (e.g. a VNIC),
* then we also keep the handle for the client's upper MAC.
*/
struct mac_impl_s *mci_upper_mip; /* WO */
uint32_t mci_state_flags; /* WO */
mac_rx_t mci_rx_fn; /* Rx Quiescence */
void *mci_rx_arg; /* Rx Quiescence */
mac_direct_rx_t mci_direct_rx_fn; /* SL */
void *mci_direct_rx_arg; /* SL */
mac_rx_t mci_rx_p_fn; /* Rx Quiescence */
void *mci_rx_p_arg; /* Rx Quiescence */
void *mci_p_unicast_list;
mac_cb_t *mci_promisc_list; /* mi_promisc_lock */
mac_address_t *mci_unicast;
uint32_t mci_flags; /* SL */
krwlock_t mci_rw_lock;
mac_unicast_impl_t *mci_unicast_list; /* mci_rw_lock */
/*
* The mac_client_impl_t may be shared by multiple clients, i.e
* multiple VLANs sharing the same MAC client. In this case the
* address/vid tubles differ and are each associated with their
* own flow entry, but the rest underlying components SRS, etc,
* are common.
*/
flow_entry_t *mci_flent_list; /* mci_rw_lock */
uint_t mci_nflents; /* mci_rw_lock */
uint_t mci_nvids; /* mci_rw_lock */
volatile uint32_t mci_vidcache; /* VID cache */
/* Resource Management Functions */
mac_resource_add_t mci_resource_add; /* SL */
mac_resource_remove_t mci_resource_remove; /* SL */
mac_resource_quiesce_t mci_resource_quiesce; /* SL */
mac_resource_restart_t mci_resource_restart; /* SL */
mac_resource_bind_t mci_resource_bind; /* SL */
void *mci_resource_arg; /* SL */
/* Tx notify callback */
kmutex_t mci_tx_cb_lock;
mac_cb_info_t mci_tx_notify_cb_info; /* cb list info */
mac_cb_t *mci_tx_notify_cb_list; /* The cb list */
uintptr_t mci_tx_notify_id;
/* per MAC client stats */ /* None */
mac_misc_stats_t mci_misc_stat;
flow_tab_t *mci_subflow_tab; /* Rx quiescence */
/*
* Priority range for this MAC client. This the range
* corresponding to the priority configured (nr_flow_priority).
*/
pri_t mci_min_pri;
pri_t mci_max_pri;
/*
* Hybrid I/O related definitions.
*/
mac_share_handle_t mci_share;
/* for multicast support */
struct mac_mcast_addrs_s *mci_mcast_addrs; /* mi_rw_lock */
/*
* Mac protection related fields
*/
kmutex_t mci_protect_lock;
uint32_t mci_protect_flags; /* SL */
in6_addr_t mci_v6_local_addr; /* SL */
avl_tree_t mci_v4_pending_txn; /* mci_protect_lock */
avl_tree_t mci_v4_completed_txn; /* mci_protect_lock */
avl_tree_t mci_v4_dyn_ip; /* mci_protect_lock */
avl_tree_t mci_v6_pending_txn; /* mci_protect_lock */
avl_tree_t mci_v6_cid; /* mci_protect_lock */
avl_tree_t mci_v6_dyn_ip; /* mci_protect_lock */
timeout_id_t mci_txn_cleanup_tid; /* mci_protect_lock */
/*
* Protected by mci_tx_pcpu[0].pcpu_tx_lock
*/
uint_t mci_tx_flag;
kcondvar_t mci_tx_cv;
/* Must be last in the structure for dynamic sizing */
mac_tx_percpu_t mci_tx_pcpu[1]; /* SL */
};
#define MAC_CLIENT_IMPL_SIZE \
(sizeof (mac_client_impl_t) + \
(mac_tx_percpu_cnt * sizeof (mac_tx_percpu_t)))
extern int mac_tx_percpu_cnt;
#define MCIP_TX_SRS(mcip) \
((mcip)->mci_flent == NULL ? NULL : (mcip)->mci_flent->fe_tx_srs)
/* Defensive coding, non-null mcip_flent could be an assert */
#define MCIP_DATAPATH_SETUP(mcip) \
((mcip)->mci_flent == NULL ? B_FALSE : \
!((mcip)->mci_flent->fe_flags & FE_MC_NO_DATAPATH))
#define MCIP_RESOURCE_PROPS(mcip) \
((mcip)->mci_flent == NULL ? NULL : \
&(mcip)->mci_flent->fe_resource_props)
#define MCIP_EFFECTIVE_PROPS(mcip) \
(mcip->mci_flent == NULL ? NULL : \
&(mcip)->mci_flent->fe_effective_props)
#define MCIP_RESOURCE_PROPS_MASK(mcip) \
((mcip)->mci_flent == NULL ? 0 : \
(mcip)->mci_flent->fe_resource_props.mrp_mask)
#define MCIP_RESOURCE_PROPS_MAXBW(mcip) \
((mcip)->mci_flent == NULL ? 0 : \
(mcip)->mci_flent->fe_resource_props.mrp_maxbw)
#define MCIP_RESOURCE_PROPS_PRIORITY(mcip) \
((mcip)->mci_flent == NULL ? 0 : \
(mcip)->mci_flent->fe_resource_props.mrp_priority)
#define MCIP_RESOURCE_PROPS_CPUS(mcip) \
((mcip)->mci_flent == NULL ? 0 : \
&(mcip)->mci_flent->fe_resource_props.mrp_cpus)
#define MCIP_RESOURCE_PROPS_NCPUS(mcip) \
((mcip)->mci_flent == NULL ? 0 : \
(mcip)->mci_flent->fe_resource_props.mrp_ncpus)
#define MCIP_RESOURCE_PROPS_CPU(mcip) \
((mcip)->mci_flent == NULL ? 0 : \
(mcip)->mci_flent->fe_resource_props.mrp_ncpu)
/*
* We validate the VLAN id of the packet w.r.t the client's vid,
* if required (i.e. !MCIS_DISABLE_TX_VID_CHECK). DLS clients
* will have MCIS_DISABLE_TX_VID_CHECK set.
* (In the case of aggr when we get back packets, due to
* the underlying driver being flow controlled, we won't
* drop the packet even if it is VLAN tagged as we
* don't set MCIS_DISABLE_TX_VID_CHECK for an aggr.)
*/
#define MAC_VID_CHECK_NEEDED(mcip) \
(((mcip)->mci_state_flags & MCIS_DISABLE_TX_VID_CHECK) == 0 && \
(mcip)->mci_mip->mi_info.mi_nativemedia == DL_ETHER)
#define MAC_VID_CHECK(mcip, mp, err) { \
if (ntohs(((struct ether_header *)(mp)->b_rptr)->ether_type) == \
ETHERTYPE_VLAN) { \
/* \
* err is set to EINVAL (so the caller can take the \
* appropriate action. e.g. freemsg()) for two cases: \
* -client is not responsible for filling in the vid. \
* -client is responsible for filling in the vid, but \
* the vid doesn't match the vid of the MAC client. \
*/ \
(err) = EINVAL; \
if (((mcip)->mci_state_flags & MCIS_TAG_DISABLE) != 0) {\
struct ether_vlan_header *evhp; \
uint16_t vlanid; \
\
evhp = (struct ether_vlan_header *)(mp)->b_rptr;\
vlanid = VLAN_ID(ntohs(evhp->ether_tci)); \
if (mac_client_check_flow_vid((mcip), vlanid)) \
(err) = 0; \
} \
} \
}
/*
* To allow the hot path to not grab any additional locks, we keep a single
* entry VLAN ID cache that caches whether or not a given VID belongs to a
* MAC client.
*/
#define MCIP_VIDCACHE_VALIDSHIFT 31
#define MCIP_VIDCACHE_VIDSHIFT 1
#define MCIP_VIDCACHE_VIDMASK (UINT16_MAX << MCIP_VIDCACHE_VIDSHIFT)
#define MCIP_VIDCACHE_BOOLSHIFT 0
#define MCIP_VIDCACHE_INVALID 0
#define MCIP_VIDCACHE_CACHE(vid, bool) \
((1U << MCIP_VIDCACHE_VALIDSHIFT) | \
((vid) << MCIP_VIDCACHE_VIDSHIFT) | \
((bool) ? (1U << MCIP_VIDCACHE_BOOLSHIFT) : 0))
#define MCIP_VIDCACHE_ISVALID(v) ((v) & (1U << MCIP_VIDCACHE_VALIDSHIFT))
#define MCIP_VIDCACHE_VID(v) \
(((v) & MCIP_VIDCACHE_VIDMASK) >> MCIP_VIDCACHE_VIDSHIFT)
#define MCIP_VIDCACHE_BOOL(v) ((v) & (1U << MCIP_VIDCACHE_BOOLSHIFT))
#define MAC_TAG_NEEDED(mcip) \
(((mcip)->mci_state_flags & MCIS_TAG_DISABLE) == 0 && \
(mcip)->mci_nvids == 1) \
/* MCI state flags */
#define MCIS_IS_VNIC 0x0001
#define MCIS_EXCLUSIVE 0x0002
#define MCIS_TAG_DISABLE 0x0004
#define MCIS_STRIP_DISABLE 0x0008
#define MCIS_IS_AGGR_PORT 0x0010
#define MCIS_CLIENT_POLL_CAPABLE 0x0020
#define MCIS_DESC_LOGGED 0x0040
#define MCIS_SHARE_BOUND 0x0080
#define MCIS_DISABLE_TX_VID_CHECK 0x0100
#define MCIS_USE_DATALINK_NAME 0x0200
#define MCIS_UNICAST_HW 0x0400
#define MCIS_IS_AGGR 0x0800
#define MCIS_RX_BYPASS_DISABLE 0x1000
#define MCIS_NO_UNICAST_ADDR 0x2000
/* Mac protection flags */
#define MPT_FLAG_V6_LOCAL_ADDR_SET 0x0001
#define MPT_FLAG_PROMISC_FILTERED 0x0002
/* in mac_client.c */
extern void mac_promisc_client_dispatch(mac_client_impl_t *, mblk_t *);
extern void mac_client_init(void);
extern void mac_client_fini(void);
extern void mac_promisc_dispatch(mac_impl_t *, mblk_t *,
mac_client_impl_t *);
extern int mac_validate_props(mac_impl_t *, mac_resource_props_t *);
extern mac_client_impl_t *mac_vnic_lower(mac_impl_t *);
extern mac_client_impl_t *mac_primary_client_handle(mac_impl_t *);
extern uint16_t i_mac_flow_vid(flow_entry_t *);
extern boolean_t i_mac_capab_get(mac_handle_t, mac_capab_t, void *);
extern void mac_unicast_update_clients(mac_impl_t *, mac_address_t *);
extern void mac_update_resources(mac_resource_props_t *,
mac_resource_props_t *, boolean_t);
boolean_t mac_client_check_flow_vid(mac_client_impl_t *, uint16_t);
extern boolean_t mac_is_primary_client(mac_client_impl_t *);
extern int mac_client_set_rings_prop(mac_client_impl_t *,
mac_resource_props_t *, mac_resource_props_t *);
extern void mac_set_prim_vlan_rings(mac_impl_t *, mac_resource_props_t *);
#ifdef __cplusplus
}
#endif
#endif /* _SYS_MAC_CLIENT_IMPL_H */
|