DHCPServerImpl.cpp revision 4b8518be25a866f7de85889a2d827d7a479e1411
/* $Id$ */
/** @file
*
* VirtualBox COM class implementation
*/
/*
* Copyright (C) 2006-2013 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* 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.
*/
#include <string>
#include "NetworkServiceRunner.h"
#include "DHCPServerImpl.h"
#include "AutoCaller.h"
#include "Logging.h"
#include <iprt/cpp/utils.h>
#include <VBox/com/array.h>
#include <VBox/settings.h>
#include "VirtualBoxImpl.h"
// constructor / destructor
/////////////////////////////////////////////////////////////////////////////
const std::string DHCPServerRunner::kDsrKeyGateway = "--gateway";
const std::string DHCPServerRunner::kDsrKeyLowerIp = "--lower-ip";
const std::string DHCPServerRunner::kDsrKeyUpperIp = "--upper-ip";
struct DHCPServer::Data
{
Data() : enabled(FALSE) {}
Bstr IPAddress;
Bstr lowerIP;
Bstr upperIP;
BOOL enabled;
DHCPServerRunner dhcp;
DhcpOptionMap GlobalDhcpOptions;
VmSlot2OptionsMap VmSlot2Options;
};
DHCPServer::DHCPServer()
: m(NULL), mVirtualBox(NULL)
{
m = new DHCPServer::Data();
}
DHCPServer::~DHCPServer()
{
if (m)
{
delete m;
m = NULL;
}
}
HRESULT DHCPServer::FinalConstruct()
{
return BaseFinalConstruct();
}
void DHCPServer::FinalRelease()
{
uninit ();
BaseFinalRelease();
}
void DHCPServer::uninit()
{
/* Enclose the state transition Ready->InUninit->NotReady */
AutoUninitSpan autoUninitSpan(this);
if (autoUninitSpan.uninitDone())
return;
unconst(mVirtualBox) = NULL;
}
HRESULT DHCPServer::init(VirtualBox *aVirtualBox, IN_BSTR aName)
{
AssertReturn(aName != NULL, E_INVALIDARG);
AutoInitSpan autoInitSpan(this);
AssertReturn(autoInitSpan.isOk(), E_FAIL);
/* share VirtualBox weakly (parent remains NULL so far) */
unconst(mVirtualBox) = aVirtualBox;
unconst(mName) = aName;
m->IPAddress = "0.0.0.0";
m->GlobalDhcpOptions.insert(DhcpOptValuePair(DhcpOpt_SubnetMask, Bstr("0.0.0.0")));
m->enabled = FALSE;
m->lowerIP = "0.0.0.0";
m->upperIP = "0.0.0.0";
/* Confirm a successful initialization */
autoInitSpan.setSucceeded();
return S_OK;
}
HRESULT DHCPServer::init(VirtualBox *aVirtualBox,
const settings::DHCPServer &data)
{
/* Enclose the state transition NotReady->InInit->Ready */
AutoInitSpan autoInitSpan(this);
AssertReturn(autoInitSpan.isOk(), E_FAIL);
/* share VirtualBox weakly (parent remains NULL so far) */
unconst(mVirtualBox) = aVirtualBox;
unconst(mName) = data.strNetworkName;
m->IPAddress = data.strIPAddress;
m->enabled = data.fEnabled;
m->lowerIP = data.strIPLower;
m->upperIP = data.strIPUpper;
m->GlobalDhcpOptions.clear();
m->GlobalDhcpOptions.insert(data.GlobalDhcpOptions.begin(),
data.GlobalDhcpOptions.end());
m->VmSlot2Options.clear();
m->VmSlot2Options.insert(data.VmSlot2OptionsM.begin(),
data.VmSlot2OptionsM.end());
autoInitSpan.setSucceeded();
return S_OK;
}
HRESULT DHCPServer::i_saveSettings(settings::DHCPServer &data)
{
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
data.strNetworkName = mName;
data.strIPAddress = m->IPAddress;
data.fEnabled = !!m->enabled;
data.strIPLower = m->lowerIP;
data.strIPUpper = m->upperIP;
data.GlobalDhcpOptions.clear();
data.GlobalDhcpOptions.insert(m->GlobalDhcpOptions.begin(),
m->GlobalDhcpOptions.end());
data.VmSlot2OptionsM.clear();
data.VmSlot2OptionsM.insert(m->VmSlot2Options.begin(),
m->VmSlot2Options.end());
return S_OK;
}
HRESULT DHCPServer::getNetworkName(com::Utf8Str &aName)
{
aName = mName;
return S_OK;
}
HRESULT DHCPServer::getEnabled(BOOL *aEnabled)
{
*aEnabled = m->enabled;
return S_OK;
}
HRESULT DHCPServer::setEnabled(BOOL aEnabled)
{
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
m->enabled = aEnabled;
// save the global settings; for that we should hold only the VirtualBox lock
alock.release();
AutoWriteLock vboxLock(mVirtualBox COMMA_LOCKVAL_SRC_POS);
HRESULT rc = mVirtualBox->saveSettings();
return rc;
}
HRESULT DHCPServer::getIPAddress(com::Utf8Str &aIPAddress)
{
aIPAddress = Utf8Str(m->IPAddress);
return S_OK;
}
HRESULT DHCPServer::getNetworkMask(com::Utf8Str &aNetworkMask)
{
aNetworkMask = m->GlobalDhcpOptions[DhcpOpt_SubnetMask];
return S_OK;
}
HRESULT DHCPServer::getLowerIP(com::Utf8Str &aIPAddress)
{
aIPAddress = Utf8Str(m->lowerIP);
return S_OK;
}
HRESULT DHCPServer::getUpperIP(com::Utf8Str &aIPAddress)
{
aIPAddress = Utf8Str(m->upperIP);
return S_OK;
}
HRESULT DHCPServer::setConfiguration(const com::Utf8Str &aIPAddress,
const com::Utf8Str &aNetworkMask,
const com::Utf8Str &aLowerIP,
const com::Utf8Str &aUpperIP)
{
AssertReturn(!aIPAddress.isEmpty(), E_INVALIDARG);
AssertReturn(!aNetworkMask.isEmpty(), E_INVALIDARG);
AssertReturn(!aLowerIP.isEmpty(), E_INVALIDARG);
AssertReturn(!aUpperIP.isEmpty(), E_INVALIDARG);
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
m->IPAddress = aIPAddress;
m->GlobalDhcpOptions[DhcpOpt_SubnetMask] = aNetworkMask;
m->lowerIP = aLowerIP;
m->upperIP = aUpperIP;
// save the global settings; for that we should hold only the VirtualBox lock
alock.release();
AutoWriteLock vboxLock(mVirtualBox COMMA_LOCKVAL_SRC_POS);
return mVirtualBox->saveSettings();
}
HRESULT DHCPServer::addGlobalOption(DhcpOpt_T aOption, const com::Utf8Str &aValue)
{
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
m->GlobalDhcpOptions.insert(DhcpOptValuePair(aOption, aValue));
/* Indirect way to understand that we're on NAT network */
if (aOption == DhcpOpt_Router)
m->dhcp.setOption(NetworkServiceRunner::kNsrKeyNeedMain, "on");
alock.release();
AutoWriteLock vboxLock(mVirtualBox COMMA_LOCKVAL_SRC_POS);
return mVirtualBox->saveSettings();
}
HRESULT DHCPServer::getGlobalOptions(std::vector<com::Utf8Str> &aValue)
{
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
aValue.resize(m->GlobalDhcpOptions.size());
DhcpOptionMap::const_iterator it;
size_t i = 0;
for (it = m->GlobalDhcpOptions.begin(); it != m->GlobalDhcpOptions.end(); ++it, ++i)
{
aValue[i] = Utf8StrFmt("%d:%s", (*it).first, (*it).second.c_str());
}
return S_OK;
}
HRESULT DHCPServer::getVmConfigs(std::vector<com::Utf8Str> &aValue)
{
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
aValue.resize(m->VmSlot2Options.size());
VmSlot2OptionsMap::const_iterator it;
size_t i = 0;
for (it = m->VmSlot2Options.begin(); it != m->VmSlot2Options.end(); ++it, ++i)
{
aValue[i] = Utf8StrFmt("[%s]:%d", it->first.VmName.c_str(), it->first.Slot);
}
return S_OK;
}
HRESULT DHCPServer::addVmSlotOption(const com::Utf8Str &aVmName,
LONG aSlot,
DhcpOpt_T aOption,
const com::Utf8Str &aValue)
{
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
m->VmSlot2Options[settings::VmNameSlotKey(aVmName, aSlot)][aOption] = aValue;
alock.release();
AutoWriteLock vboxLock(mVirtualBox COMMA_LOCKVAL_SRC_POS);
return mVirtualBox->saveSettings();
}
HRESULT DHCPServer::removeVmSlotOptions(const com::Utf8Str &aVmName, LONG aSlot)
{
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
DhcpOptionMap& map = i_findOptMapByVmNameSlot(aVmName, aSlot);
map.clear();
alock.release();
AutoWriteLock vboxLock(mVirtualBox COMMA_LOCKVAL_SRC_POS);
return mVirtualBox->saveSettings();
}
/**
* this is mapping (vm, slot)
*/
HRESULT DHCPServer::getVmSlotOptions(const com::Utf8Str &aVmName,
LONG aSlot,
std::vector<com::Utf8Str> &aValues)
{
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
DhcpOptionMap& map = i_findOptMapByVmNameSlot(aVmName, aSlot);
aValues.resize(map.size());
size_t i = 0;
DhcpOptionMap::const_iterator it;
for (it = map.begin(); it != map.end(); ++it, ++i)
{
aValues[i] = com::Utf8StrFmt("%d:%s", (*it).first, (*it).second.c_str());
}
return S_OK;
}
HRESULT DHCPServer::getMacOptions(const com::Utf8Str &aMAC, std::vector<com::Utf8Str> &aOption)
{
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
HRESULT hrc = S_OK;
ComPtr<IMachine> machine;
ComPtr<INetworkAdapter> nic;
VmSlot2OptionsIterator it;
for(it = m->VmSlot2Options.begin(); it != m->VmSlot2Options.end(); ++it)
{
alock.release();
hrc = mVirtualBox->FindMachine(Bstr(it->first.VmName).raw(), machine.asOutParam());
alock.acquire();
if (FAILED(hrc))
continue;
alock.release();
hrc = machine->GetNetworkAdapter(it->first.Slot, nic.asOutParam());
alock.acquire();
if (FAILED(hrc))
continue;
com::Bstr mac;
alock.release();
hrc = nic->COMGETTER(MACAddress)(mac.asOutParam());
alock.acquire();
if (FAILED(hrc)) /* no MAC address ??? */
break;
if (!RTStrICmp(com::Utf8Str(mac).c_str(), aMAC.c_str()))
return getVmSlotOptions(it->first.VmName,
it->first.Slot,
aOption);
} /* end of for */
return hrc;
}
HRESULT DHCPServer::getEventSource(ComPtr<IEventSource> &aEventSource)
{
NOREF(aEventSource);
ReturnComNotImplemented();
}
HRESULT DHCPServer::start(const com::Utf8Str &aNetworkName,
const com::Utf8Str &aTrunkName,
const com::Utf8Str &aTrunkType)
{
/* Silently ignore attempts to run disabled servers. */
if (!m->enabled)
return S_OK;
/* Commmon Network Settings */
m->dhcp.setOption(NetworkServiceRunner::kNsrKeyNetwork, aNetworkName.c_str());
if (!aTrunkName.isEmpty())
m->dhcp.setOption(NetworkServiceRunner::kNsrTrunkName, aTrunkName.c_str());
m->dhcp.setOption(NetworkServiceRunner::kNsrKeyTrunkType, aTrunkType.c_str());
/* XXX: should this MAC default initialization moved to NetworkServiceRunner? */
char strMAC[32];
Guid guid;
guid.create();
RTStrPrintf (strMAC, sizeof(strMAC), "08:00:27:%02X:%02X:%02X",
guid.raw()->au8[0],
guid.raw()->au8[1],
guid.raw()->au8[2]);
m->dhcp.setOption(NetworkServiceRunner::kNsrMacAddress, strMAC);
m->dhcp.setOption(NetworkServiceRunner::kNsrIpAddress, Utf8Str(m->IPAddress).c_str());
m->dhcp.setOption(NetworkServiceRunner::kNsrIpNetmask, Utf8Str(m->GlobalDhcpOptions[DhcpOpt_SubnetMask]).c_str());
m->dhcp.setOption(DHCPServerRunner::kDsrKeyLowerIp, Utf8Str(m->lowerIP).c_str());
m->dhcp.setOption(DHCPServerRunner::kDsrKeyUpperIp, Utf8Str(m->upperIP).c_str());
/* XXX: This parameters Dhcp Server will fetch via API */
return RT_FAILURE(m->dhcp.start()) ? E_FAIL : S_OK;
//m->dhcp.detachFromServer(); /* need to do this to avoid server shutdown on runner destruction */
}
HRESULT DHCPServer::stop (void)
{
return RT_FAILURE(m->dhcp.stop()) ? E_FAIL : S_OK;
}
DhcpOptionMap& DHCPServer::i_findOptMapByVmNameSlot(const com::Utf8Str& aVmName,
LONG aSlot)
{
return m->VmSlot2Options[settings::VmNameSlotKey(aVmName, aSlot)];
}