4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
29 #include <sys/types.h>
30 #include <sys/ethernet.h>
31 #include <sys/param.h>
33 #include <sys/mac_flow.h>
34 #include <sys/dld_ioc.h>
43 * Extended diagnostic codes that can be returned by the various
47 VNIC_IOC_DIAG_MACADDR_NIC
,
48 VNIC_IOC_DIAG_MACADDR_INUSE
,
49 VNIC_IOC_DIAG_MACADDR_INVALID
,
50 VNIC_IOC_DIAG_MACADDRLEN_INVALID
,
51 VNIC_IOC_DIAG_MACFACTORYSLOTINVALID
,
52 VNIC_IOC_DIAG_MACFACTORYSLOTUSED
,
53 VNIC_IOC_DIAG_MACFACTORYSLOTALLUSED
,
54 VNIC_IOC_DIAG_MACFACTORYNOTSUP
,
55 VNIC_IOC_DIAG_MACPREFIX_INVALID
,
56 VNIC_IOC_DIAG_MACPREFIXLEN_INVALID
,
57 VNIC_IOC_DIAG_MACMARGIN_INVALID
,
58 VNIC_IOC_DIAG_NO_HWRINGS
62 * Allowed VNIC MAC address types.
64 * - VNIC_MAC_ADDR_TYPE_FIXED, VNIC_MAC_ADDR_TYPE_RANDOM:
65 * The MAC address is specified by value by the caller, which
66 * itself can obtain it from the user directly,
67 * or pick it in a random fashion. Which method is used by the
68 * caller is irrelevant to the VNIC driver. However two different
69 * types are provided so that the information can be made available
70 * back to user-space when listing the kernel defined VNICs.
72 * When a VNIC is created, the address in passed through the
73 * vc_mac_addr and vc_mac_len fields of the vnic_ioc_create_t
76 * - VNIC_MAC_ADDR_TYPE_FACTORY: the MAC address is obtained from
77 * one of the MAC factory MAC addresses of the underyling NIC.
79 * - VNIC_MAC_ADDR_TYPE_AUTO: the VNIC driver attempts to
80 * obtain the address from one of the factory MAC addresses of
81 * the underlying NIC. If none is available, the specified
82 * MAC address value is used.
84 * - VNIC_MAC_ADDR_TYPE_PRIMARY: this is a VNIC based VLAN. The
85 * address for this is the address of the primary MAC client.
90 VNIC_MAC_ADDR_TYPE_FIXED
,
91 VNIC_MAC_ADDR_TYPE_RANDOM
,
92 VNIC_MAC_ADDR_TYPE_FACTORY
,
93 VNIC_MAC_ADDR_TYPE_AUTO
,
94 VNIC_MAC_ADDR_TYPE_PRIMARY
95 } vnic_mac_addr_type_t
;
97 #if _LONG_LONG_ALIGNMENT == 8 && _LONG_LONG_ALIGNMENT_32 == 4
101 #define VNIC_IOC_CREATE VNICIOC(1)
103 #define VNIC_IOC_CREATE_NODUPCHECK 0x00000001
104 #define VNIC_IOC_CREATE_ANCHOR 0x00000002
107 * Force creation of VLAN based VNIC without checking if the
108 * undelying MAC supports the margin size.
110 #define VNIC_IOC_CREATE_FORCE 0x00000004
112 /* Allocate a hardware ring to the vnic */
113 #define VNIC_IOC_CREATE_REQ_HWRINGS 0x00000008
115 typedef struct vnic_ioc_create
{
116 datalink_id_t vc_vnic_id
;
117 datalink_id_t vc_link_id
;
118 vnic_mac_addr_type_t vc_mac_addr_type
;
120 uchar_t vc_mac_addr
[MAXMACADDRLEN
];
121 uint_t vc_mac_prefix_len
;
126 vnic_ioc_diag_t vc_diag
;
127 mac_resource_props_t vc_resource_props
;
130 #define VNIC_IOC_DELETE VNICIOC(2)
132 typedef struct vnic_ioc_delete
{
133 datalink_id_t vd_vnic_id
;
136 #define VNIC_IOC_INFO VNICIOC(3)
138 typedef struct vnic_info
{
139 datalink_id_t vn_vnic_id
;
140 datalink_id_t vn_link_id
;
141 vnic_mac_addr_type_t vn_mac_addr_type
;
143 uchar_t vn_mac_addr
[MAXMACADDRLEN
];
145 uint32_t vn_mac_prefix_len
;
148 mac_resource_props_t vn_resource_props
;
151 typedef struct vnic_ioc_info
{
155 #define VNIC_IOC_MODIFY VNICIOC(4)
157 #define VNIC_IOC_MODIFY_ADDR 0x01
158 #define VNIC_IOC_MODIFY_RESOURCE_CTL 0x02
160 typedef struct vnic_ioc_modify
{
161 datalink_id_t vm_vnic_id
;
162 uint_t vm_modify_mask
;
165 uchar_t vm_mac_addr
[MAXMACADDRLEN
];
166 vnic_mac_addr_type_t vm_mac_addr_type
;
167 mac_resource_props_t vm_resource_props
;
168 vnic_ioc_diag_t vm_diag
;
171 #if _LONG_LONG_ALIGNMENT == 8 && _LONG_LONG_ALIGNMENT_32 == 4
179 #endif /* _SYS_VNIC_H */