vnic_ctl.c revision 568a765b090ca47ac51e3db4143a65f9358495bf
/*
* 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
* 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 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Virtual Network Interface Card (VNIC)
*/
#include <sys/dld_impl.h>
#include <sys/vnic_impl.h>
/* module description */
#define VNIC_LINKINFO "VNIC MAC"
#define VNIC_DRIVER_NAME "vnic"
/* device info ptr, only one for instance 0 */
/* for control interface */
static int vnic_close(queue_t *);
typedef struct vnic_taskq_args_s {
int tq_vnic_flag;
static void vnic_ioc_create(vnic_taskq_args_t *);
static void vnic_ioc_modify(vnic_taskq_args_t *);
static void vnic_ioc_delete(vnic_taskq_args_t *);
static void vnic_ioc_info(vnic_taskq_args_t *);
typedef struct ioc_cmd_s {
int ic_cmd;
void (*ic_func)(vnic_taskq_args_t *);
} ioc_cmd_t;
};
/*
* mi_hiwat is set to 1 because of the flow control mechanism implemented
* in dld. refer to the comments in dld_str.c for details.
*/
static struct module_info vnic_module_info = {
0,
0,
1,
0
};
NULL,
NULL,
NULL,
};
NULL,
NULL,
NULL,
};
/*
* Entry points for vnic control node
*/
static struct qinit vnic_w_ctl_qinit = {
NULL,
NULL,
NULL,
NULL,
};
static struct streamtab vnic_streamtab = {
};
static struct modldrv vnic_modldrv = {
&mod_driverops, /* Type of module. This one is a driver */
VNIC_LINKINFO, /* short description */
&vnic_dev_ops /* driver specific ops */
};
static struct modlinkage modlinkage = {
};
int
_init(void)
{
return (mod_install(&modlinkage));
}
int
_fini(void)
{
return (mod_remove(&modlinkage));
}
int
{
}
static int
{
return (EBUSY);
return (ENOSR);
/*
* The VNIC control node uses its own set of entry points.
*/
qprocson(q);
return (0);
}
}
static int
vnic_close(queue_t *q)
{
qprocsoff(q);
return (0);
}
return (dld_close(q));
}
void
{
/* LINTED alignment */
int i, err = 0;
void (*func)();
goto done;
}
/*
* Construct contiguous message
*/
goto done;
}
for (i = 0; i < IOC_CMD_SZ; i++) {
break;
}
}
if (i == IOC_CMD_SZ) {
goto done;
}
if (taskq_args == NULL) {
goto done;
}
goto done;
}
done:
if (err != 0)
}
static void
{
vnic_ioctl(q, mp);
else
}
static void
vnic_init(void)
{
}
static void
vnic_fini(void)
{
}
vnic_get_dip(void)
{
return (vnic_dip);
}
/*ARGSUSED*/
static int
void **result)
{
switch (infocmd) {
case DDI_INFO_DEVT2DEVINFO:
return (DDI_SUCCESS);
case DDI_INFO_DEVT2INSTANCE:
return (DDI_SUCCESS);
}
return (DDI_FAILURE);
}
static int
{
switch (cmd) {
case DDI_ATTACH:
if (ddi_get_instance(dip) != 0) {
/* we only allow instance 0 to attach */
return (DDI_FAILURE);
}
/* create minor node for control interface */
return (DDI_FAILURE);
}
vnic_init();
return (DDI_SUCCESS);
case DDI_RESUME:
return (DDI_SUCCESS);
default:
return (DDI_FAILURE);
}
}
/*ARGSUSED*/
static int
{
switch (cmd) {
case DDI_DETACH:
/*
* Allow the VNIC instance to be detached only if there
* are not VNICs configured.
*/
if (vnic_dev_count() > 0)
return (DDI_FAILURE);
vnic_fini();
return (DDI_SUCCESS);
case DDI_SUSPEND:
return (DDI_SUCCESS);
default:
return (DDI_FAILURE);
}
}
/*
* Process a VNICIOC_CREATE request.
*/
static void
{
int rc = 0;
int mac_len;
goto bail;
}
/*
* VNIC id. For now it is specified by the user. Once we have
* vanity naming, we can pick a value for the user, and let
* the user assign a generic name to the VNIC (XXXND)
*/
/*
* Device name and number of the MAC port the VNIC is defined
* on top of.
*/
/* MAC address */
switch (mac_addr_type) {
case VNIC_MAC_ADDR_TYPE_FIXED:
break;
default:
goto bail;
}
bail:
if (rc != 0)
else
}
static void
{
int err = 0;
goto done;
}
if (modify_mask & VNIC_IOC_MODIFY_ADDR) {
}
done:
if (err != 0)
else
}
static void
{
int err = 0;
goto fail;
}
fail:
if (err != 0)
else
}
typedef struct vnic_ioc_info_state {
static int
{
/*LINTED*/
return (ENOSPC);
return (0);
}
static void
{
char dev_name[MAXNAMELEN];
goto bail;
}
/* LINTED alignment */
/*
* ID of the vnic to return or vnic device.
* If zero, the call returns information
* regarding all vnics currently defined.
*/
if (info_argp->vi_dev_name)
bail:
if (rc == 0) {
} else {
}
}