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
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (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 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _SYS_DLS_IMPL_H
#define _SYS_DLS_IMPL_H
#pragma ident "%Z%%M% %I% %E% SMI"
#include <sys/stream.h>
#include <sys/dls.h>
#include <sys/mac.h>
#include <sys/modhash.h>
#include <sys/kstat.h>
#include <net/if.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct dls_multicst_addr_s dls_multicst_addr_t;
struct dls_multicst_addr_s {
dls_multicst_addr_t *dma_nextp;
uint8_t dma_addr[MAXADDRLEN];
};
typedef struct dls_link_s dls_link_t;
struct dls_link_s {
char dl_name[MAXNAMELEN];
char dl_dev[MAXNAMELEN];
uint_t dl_port;
mac_handle_t dl_mh;
const mac_info_t *dl_mip;
mac_rx_handle_t dl_mrh;
mac_txloop_handle_t dl_mth;
uint_t dl_ref;
uint_t dl_macref;
mod_hash_t *dl_impl_hash;
krwlock_t dl_impl_lock;
uint_t dl_impl_count;
mac_txloop_t dl_loopback;
kmutex_t dl_promisc_lock;
uint_t dl_npromisc;
uint_t dl_nactive;
uint32_t dl_unknowns;
kmutex_t dl_lock;
};
typedef struct dls_vlan_s {
char dv_name[IFNAMSIZ];
uint_t dv_ref;
dls_link_t *dv_dlp;
uint16_t dv_id;
kstat_t *dv_ksp;
} dls_vlan_t;
typedef struct dls_impl_s dls_impl_t;
typedef struct dls_head_s dls_head_t;
typedef mblk_t *(*dls_priv_header_t)(dls_impl_t *,
const uint8_t *, uint16_t, uint_t);
typedef void (*dls_priv_header_info_t)(dls_impl_t *,
mblk_t *, dls_header_info_t *);
struct dls_impl_s {
dls_impl_t *di_nextp;
dls_head_t *di_headp;
dls_vlan_t *di_dvp;
mac_handle_t di_mh;
mac_notify_handle_t di_mnh;
const mac_info_t *di_mip;
krwlock_t di_lock;
uint16_t di_sap;
uint_t di_promisc;
dls_multicst_addr_t *di_dmap;
dls_rx_t di_rx;
void *di_rx_arg;
const mac_txinfo_t *di_txinfo;
boolean_t di_bound;
boolean_t di_removing;
boolean_t di_active;
uint8_t di_unicst_addr[MAXADDRLEN];
dls_priv_header_t di_header;
dls_priv_header_info_t di_header_info;
};
struct dls_head_s {
dls_impl_t *dh_list;
uint_t dh_ref;
mod_hash_key_t dh_key;
};
extern void dls_link_init(void);
extern int dls_link_fini(void);
extern int dls_link_hold(const char *, uint_t, dls_link_t **);
extern void dls_link_rele(dls_link_t *);
extern void dls_link_add(dls_link_t *, uint32_t, dls_impl_t *);
extern void dls_link_remove(dls_link_t *, dls_impl_t *);
extern int dls_mac_hold(dls_link_t *);
extern void dls_mac_rele(dls_link_t *);
extern void dls_stat_create(dls_vlan_t *);
extern void dls_stat_destroy(dls_vlan_t *);
extern void dls_vlan_init(void);
extern int dls_vlan_fini(void);
extern int dls_vlan_create(const char *, const char *, uint_t,
uint16_t);
extern int dls_vlan_destroy(const char *);
extern int dls_vlan_hold(const char *, dls_vlan_t **, boolean_t);
extern void dls_vlan_rele(dls_vlan_t *);
extern int dls_vlan_walk(int (*)(dls_vlan_t *, void *), void *);
extern void dls_init(void);
extern int dls_fini(void);
extern boolean_t dls_accept(dls_impl_t *, const uint8_t *,
dls_rx_t *, void **);
extern boolean_t dls_accept_loopback(dls_impl_t *, const uint8_t *,
dls_rx_t *, void **);
#ifdef __cplusplus
}
#endif
#endif /* _SYS_DLS_IMPL_H */
|