VBoxNetAdpInternal.h revision e8a169f512c942da921be71296b4234f787c7e3b
/* $Id$ */
/** @file
* VBoxNetAdp - Network Filter Driver (Host), Internal Header.
*/
/*
* Copyright (C) 2008 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ___VBoxNetAdpInternal_h___
#define ___VBoxNetAdpInternal_h___
#include <iprt/semaphore.h>
/** Pointer to the globals. */
typedef struct VBOXNETADPGLOBALS *PVBOXNETADPGLOBALS;
#define VBOXNETADP_MAX_INSTANCES 8
#define VBOXNETADP_NAME "vboxnet"
#define VBOXNETADP_MAX_NAME_LEN 32
#define VBOXNETADP_MTU 1500
#if defined(RT_OS_DARWIN)
# define VBOXNETADP_MAX_FAMILIES 4
# define VBOXNETADP_DETACH_TIMEOUT 500
#endif
/**
* Void entries mark vacant slots in adapter array. Valid entries are busy slots.
* As soon as slot is being modified its state changes to transitional.
* An entry in transitional state must only be accessed by the thread that
* put it to this state.
*/
/**
* To avoid races on adapter fields we stick to the following rules:
* - rewrite: Int net port calls are serialized
* - No modifications are allowed on busy adapters (deactivate first)
* Refuse to destroy adapter until it gets to available state
* - No transfers (thus getting busy) on inactive adapters
* - Init sequence: void->available->connected->active
1) Create
2) Connect
3) Activate
* - Destruction sequence: active->connected->available->void
1) Deactivate
2) Disconnect
3) Destroy
*/
enum VBoxNetAdpState
{
};
typedef enum VBoxNetAdpState VBOXNETADPSTATE;
#endif /* VBOXANETADP_DO_NOT_USE_NETFLT */
struct VBoxNetAdapter
{
/** The spinlock protecting the state variables and host interface handle. */
/* --- Protected with spinlock. --- */
/** Denotes availability of this slot in adapter array. */
/* --- Unprotected. Atomic access. --- */
/** Reference count. */
/** The busy count.
* This counts the number of current callers and pending packet. */
/* --- Unprotected. Do not modify when cBusy > 0. --- */
/** Our RJ-45 port.
* This is what the internal network plugs into. */
/** The RJ-45 port on the INTNET "switch".
* This is what we're connected to. */
/** Pointer to the globals. */
/** The event that is signaled when we go idle and that pfnWaitForIdle blocks on. */
#endif /* !VBOXANETADP_DO_NOT_USE_NETFLT */
/** Corresponds to the digit at the end of device name. */
union
{
#ifdef VBOXNETADP_OS_SPECFIC
struct
{
# if defined(RT_OS_DARWIN)
/** @name Darwin instance data.
* @{ */
/** Event to signal detachment of interface. */
/** Pointer to Darwin interface structure. */
/** MAC address. */
/** Protocol families attached to this adapter. */
# else
# endif
} s;
#endif
/** Padding. */
#if defined(RT_OS_WINDOWS)
# if defined(VBOX_NETFLT_ONDEMAND_BIND)
# else
# endif
#elif defined(RT_OS_LINUX)
#else
#endif
} u;
/** The interface name. */
char szName[VBOXNETADP_MAX_NAME_LEN];
};
typedef struct VBoxNetAdapter VBOXNETADP;
typedef VBOXNETADP *PVBOXNETADP;
/**
* The global data of the VBox filter driver.
*
* This contains the bit required for communicating with support driver, VBoxDrv
* (start out as SupDrv).
*/
typedef struct VBOXNETADPGLOBALS
{
/** Mutex protecting the list of instances and state changes. */
/** Array of adapter instances. */
/** The INTNET trunk network interface factory. */
/** The SUPDRV component factory registration. */
/** The number of current factory references. */
int32_t volatile cFactoryRefs;
/** The SUPDRV IDC handle (opaque struct). */
/** @name The OS specific interface.
* @{ */
/**
* Transmits a frame.
*
* @return IPRT status code.
* @param pThis The new instance.
* @param pSG The (scatter/)gather list.
* @param fDst The destination mask. At least one bit will be set.
*
* @remarks Owns the out-bound trunk port semaphore.
*/
/**
* Checks if the interface is in promiscuous mode from the host perspective.
*
* If it is, then the internal networking switch will send frames
* heading for the wire to the host as well.
*
* @see INTNETTRUNKIFPORT::pfnIsPromiscuous for more details.
*
* @returns true / false accordingly.
* @param pThis The instance.
*
* @remarks Owns the network lock and the out-bound trunk port semaphores.
*/
/**
* Get the MAC address of the interface we're attached to.
*
* Used by the internal networking switch for implementing the
* shared-MAC-on-the-wire mode.
*
* @param pThis The instance.
* @param pMac Where to store the MAC address.
* If you don't know, set all the bits except the first (the multicast one).
*
* @remarks Owns the network lock and the out-bound trunk port semaphores.
*/
/**
* Checks if the specified MAC address is for any of the host interfaces.
*
* Used by the internal networking switch to decide the destination(s)
* of a frame.
*
* @returns true / false accordingly.
* @param pThis The instance.
* @param pMac The MAC address.
*
* @remarks Owns the network lock and the out-bound trunk port semaphores.
*/
/**
* This is called to when disconnecting from a network.
*
* @return IPRT status code.
* @param pThis The new instance.
*
* @remarks May own the semaphores for the global list, the network lock and the out-bound trunk port.
*/
/**
* This is called to when connecting to a network.
*
* @return IPRT status code.
* @param pThis The new instance.
*
* @remarks Owns the semaphores for the global list, the network lock and the out-bound trunk port.
*/
/**
* This is called to perform OS-specific structure initializations.
*
* @return IPRT status code.
* @param pThis The new instance.
*
* @remarks Owns no locks.
*/
/**
* Counter part to vboxNetAdpOsCreate().
*
* @return IPRT status code.
* @param pThis The new instance.
*
* @remarks May own the semaphores for the global list, the network lock and the out-bound trunk port.
*/
/**
* This is called to attach to the actual host interface
* after linking the instance into the list.
*
* @return IPRT status code.
* @param pThis The new instance.
* @param pMac The MAC address to use for this instance.
*
* @remarks Owns no locks.
*/
/** @} */
#endif /* !VBOXANETADP_DO_NOT_USE_NETFLT */
#endif