windows-nt/Source/XPSP1/NT/net/dhcp/dhcpprov/dll/anetrng.cpp

329 lines
14 KiB
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
/******************************************************************
SNetScal.cpp -- WBEM provider class implementation
MODULE:
DhcpProv.dll
DESCRIPTION:
Contains: the definition of the DHCP_Subnet class,
the static table of manageable objects.
REVISION:
08/03/98 - created
******************************************************************/
#include <stdafx.h>
#include "props.h"
#include "snetfn.h"
#include "rngfn.h"
#include "srvfn.h"
#include "anetrng.h"
// the name of the WBEM class
#define PROVIDER_NAME_DHCP_ASSOC_SUBNETINCLRANGE "DHCP_SubnetIncludedRange"
#define PROVIDER_NAME_DHCP_ASSOC_SUBNETEXCLRANGE "DHCP_SubnetExcludedRange"
// Create here the two associations: Subnet<->IncludedRegion and Subnet<->ExcludedRegions
CDHCP_AssociationSubnetToRange MyDHCP_Assoc_SubnetInclRange(PROVIDER_NAME_DHCP_ASSOC_SUBNETINCLRANGE, PROVIDER_NAMESPACE_DHCP, DhcpIpRanges);
CDHCP_AssociationSubnetToRange MyDHCP_Assoc_SubnetExclRange(PROVIDER_NAME_DHCP_ASSOC_SUBNETEXCLRANGE, PROVIDER_NAMESPACE_DHCP, DhcpExcludedIpRanges);
/*****************************************************************************
*
* FUNCTION : CDHCP_AssociationSubnetToRange::CDHCP_AssociationSubnetToRange
*
* DESCRIPTION : Constructor
*
* INPUTS : none
*
* RETURNS : nothing
*
* COMMENTS : Calls the Provider constructor.
*
*****************************************************************************/
CDHCP_AssociationSubnetToRange::CDHCP_AssociationSubnetToRange (const CHString& strName, LPCSTR pszNameSpace, DWORD dwRangeType ) :
Provider(strName, pszNameSpace)
{
m_dwRangeType = dwRangeType;
}
/*****************************************************************************
*
* FUNCTION : CDHCP_AssociationSubnetToRange::~CDHCP_AssociationSubnetToRange
*
* DESCRIPTION : Destructor
*
* INPUTS : none
*
* RETURNS : nothing
*
* COMMENTS :
*
*****************************************************************************/
CDHCP_AssociationSubnetToRange::~CDHCP_AssociationSubnetToRange ()
{
}
/*****************************************************************************
*
* FUNCTION : CDHCP_AssociationSubnetToRange::EnumerateInstances
*
* DESCRIPTION : Returns all the instances of this class.
*
* INPUTS : none
*
* RETURNS : WBEM_S_NO_ERROR if successful
*
* COMMENTS : Enumerates all this instances of this class. As there is only one
* DHCP Server per system, there is only one instance for this class
*
*****************************************************************************/
HRESULT CDHCP_AssociationSubnetToRange::EnumerateInstances ( MethodContext* pMethodContext, long lFlags )
{
CDHCP_Server_Parameters srvParams;
LPDHCP_MIB_INFO pSrvMibInfo;
HRESULT hRes = WBEM_S_NO_ERROR;
if (!srvParams.GetMibInfo(pSrvMibInfo, TRUE))
return WBEM_E_FAILED;
// loop through all the subnets configured on the local server
for (int i = 0; hRes == WBEM_S_NO_ERROR && i < pSrvMibInfo->Scopes; i++)
{
DWORD dwSubnet;
DHCP_RESUME_HANDLE ResumeHandle;
WCHAR wcsSubnetQuery[64]; // should be enough for holding 'xxx.yyy.zzz.uuu\0'
dwSubnet = pSrvMibInfo->ScopeInfo[i].Subnet;
CDHCP_Range_Parameters rngParams(dwSubnet);
// build the str representation of the Subnet address
swprintf(wcsSubnetQuery, L"DHCP_Subnet.Address=\"%u.%u.%u.%u\"",
(dwSubnet & 0xff000000) >> 24,
(dwSubnet & 0x00ff0000) >> 16,
(dwSubnet & 0x0000ff00) >> 8,
(dwSubnet & 0x000000ff));
ResumeHandle = 0;
do
{
DWORD errCode;
// load the next buffer
errCode = rngParams.NextSubnetRange(ResumeHandle, (DHCP_SUBNET_ELEMENT_TYPE)m_dwRangeType);
// if ERROR_NO_MORE_ITEMS than no information was filled into m_pRangeInfoArray (which is null)
if (errCode == ERROR_NO_MORE_ITEMS)
break;
// two alternatives here: ERROR_MORE_DATA (ResumeHandle != 0) and ERROR_SUCCESS (which case
// the API is setting ResumeHandle to NULL (hope so :o). In both cases, just go on.
if (errCode != ERROR_MORE_DATA && errCode != ERROR_SUCCESS)
return WBEM_E_FAILED;
// for the current buffer, loop through all the ranges
for (int j = 0; hRes == WBEM_S_NO_ERROR && j < rngParams.m_pRangeInfoArray->NumElements; j++)
{
// this is finally the info of the current range
LPDHCP_IP_RANGE pRange = (m_dwRangeType == DhcpIpRanges)?
(LPDHCP_IP_RANGE)(rngParams.m_pRangeInfoArray->Elements[j].Element.IpRange) :
(LPDHCP_IP_RANGE)(rngParams.m_pRangeInfoArray->Elements[j].Element.ExcludeIpRange);
WCHAR wcsRegionQuery[128]; // should be enough for holding the whole query
DWORD dwQueryIndex = 0;
// we finally have everything we need for creating one more instance
CInstance* pInstance = CreateNewInstance(pMethodContext);
//------------------add 'Subnet' reference to the instance--------------------
if (pInstance == NULL ||
!pInstance->SetCHString(PROP_ANetRange_Subnet, wcsSubnetQuery))
return WBEM_E_FAILED;
//..................copy 'EndAddress' to the Range reference..................
// build the str representation of the EndAddress
dwQueryIndex += swprintf(wcsRegionQuery + dwQueryIndex, L"DHCP_Range.EndAddress=\"%u.%u.%u.%u\"",
(pRange->EndAddress & 0xff000000) >> 24,
(pRange->EndAddress & 0x00ff0000) >> 16,
(pRange->EndAddress & 0x0000ff00) >> 8,
(pRange->EndAddress & 0x000000ff));
//..................copy 'RangeType' to the Range reference...................
dwQueryIndex += swprintf(wcsRegionQuery + dwQueryIndex, L",RangeType=%u", m_dwRangeType);
//..................copy 'StartAddress' to the Range reference................
// build the str representation of the StartAddress
dwQueryIndex += swprintf(wcsRegionQuery + dwQueryIndex ,L",StartAddress=\"%u.%u.%u.%u\"",
(pRange->StartAddress & 0xff000000) >> 24,
(pRange->StartAddress & 0x00ff0000) >> 16,
(pRange->StartAddress & 0x0000ff00) >> 8,
(pRange->StartAddress & 0x000000ff));
//..................copy 'Subnet' to the Range reference......................
// build the str representation of the StartAddress
dwQueryIndex += swprintf(wcsRegionQuery + dwQueryIndex ,L",Subnet=\"%u.%u.%u.%u\"",
(dwSubnet & 0xff000000) >> 24,
(dwSubnet & 0x00ff0000) >> 16,
(dwSubnet & 0x0000ff00) >> 8,
(dwSubnet & 0x000000ff));
//------------------add the 'Range' reference to the instance------------------
if (!pInstance->SetCHString(PROP_ANetRange_Range, wcsRegionQuery))
return WBEM_E_FAILED;
//~~~~~~~~~~~~~~~~~ Commit the instance ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
hRes = Commit(pInstance);
}
} while (ResumeHandle != 0); // bail if ResumeHandle got back to 0 (the end was reached)
}
return WBEM_S_NO_ERROR;
}
/*****************************************************************************
*
* FUNCTION : CDHCP_AssociationSubnetToRange::GetObject
*
* DESCRIPTION : Find a single instance based on the key properties for the
* class.
*
* INPUTS : A pointer to a CInstance object containing the key properties.
*
* RETURNS : WBEM_S_NO_ERROR if the instance can be found
* WBEM_E_NOT_FOUND if the instance described by the key properties
* could not be found
* WBEM_E_FAILED if the instance could be found but another error
* occurred.
*
* COMMENTS :
*
*****************************************************************************/
HRESULT CDHCP_AssociationSubnetToRange::GetObject ( CInstance* pInstance, long lFlags )
{
return WBEM_S_NO_ERROR;
}
/*****************************************************************************
*
* FUNCTION : CDHCP_AssociationSubnetToRange::ExecQuery
*
* DESCRIPTION : You are passed a method context to use in the creation of
* instances that satisfy the query, and a CFrameworkQuery
* which describes the query. Create and populate all
* instances which satisfy the query. CIMOM will post -
* filter the query for you, you may return more instances
* or more properties than are requested and CIMOM
* will filter out any that do not apply.
*
*
* INPUTS :
*
* RETURNS : WBEM_E_PROVIDER_NOT_CAPABLE if not supported for this class
* WBEM_E_FAILED if the query failed
* WBEM_S_NO_ERROR if query was successful
*
* COMMENTS : TO DO: Most providers will not need to implement this method. If you don't, cimom
* will call your enumerate function to get all the instances and perform the
* filtering for you. Unless you expect SIGNIFICANT savings from implementing
* queries, you should remove this entire method.
*
*****************************************************************************/
HRESULT CDHCP_AssociationSubnetToRange::ExecQuery (MethodContext *pMethodContext, CFrameworkQuery& Query, long lFlags)
{
return WBEM_E_PROVIDER_NOT_CAPABLE;
}
/*****************************************************************************
*
* FUNCTION : CDHCP_AssociationSubnetToRange::PutInstance
*
* DESCRIPTION : PutInstance should be used in provider classes that can write
* instance information back to the hardware or software.
* For example: Win32_Environment will allow a PutInstance of a new
* environment variable, because environment variables are "software"
* related. However, a class like Win32_MotherboardDevice will not
* allow editing of the bus speed. Since by default PutInstance
* returns WBEM_E_PROVIDER_NOT_CAPABLE, this function is placed here as a
* skeleton, but can be removed if not used.
*
* INPUTS :
*
* RETURNS : WBEM_E_PROVIDER_NOT_CAPABLE if PutInstance is not available
* WBEM_E_FAILED if there is an error delivering the instance
* WBEM_E_INVALID_PARAMETER if any of the instance properties
* are incorrect.
* WBEM_S_NO_ERROR if instance is properly delivered
*
* COMMENTS : TO DO: If you don't intend to support writing to your provider, remove this method.
*
*****************************************************************************/
HRESULT CDHCP_AssociationSubnetToRange::PutInstance ( const CInstance &Instance, long lFlags)
{
return WBEM_E_PROVIDER_NOT_CAPABLE;
}
/*****************************************************************************
*
* FUNCTION : CDHCP_AssociationSubnetToRange::DeleteInstance
*
* DESCRIPTION : DeleteInstance, like PutInstance, actually writes information
* to the software or hardware. For most hardware devices,
* DeleteInstance should not be implemented, but for software
* configuration, DeleteInstance implementation is plausible.
* Like PutInstance, DeleteInstance returns WBEM_E_PROVIDER_NOT_CAPABLE from
* inside Provider::DeleteInstance (defined in Provider.h). So, if
* you choose not to implement DeleteInstance, remove this function
* definition and the declaration from DHCP_Server_Scalars.h
*
* INPUTS :
*
* RETURNS : WBEM_E_PROVIDER_NOT_CAPABLE if DeleteInstance is not available.
* WBEM_E_FAILED if there is an error deleting the instance.
* WBEM_E_INVALID_PARAMETER if any of the instance properties
* are incorrect.
* WBEM_S_NO_ERROR if instance is properly deleted.
*
* COMMENTS : TO DO: If you don't intend to support deleting instances, remove this method.
*
*****************************************************************************/
HRESULT CDHCP_AssociationSubnetToRange::DeleteInstance ( const CInstance &Instance, long lFlags )
{
return WBEM_E_PROVIDER_NOT_CAPABLE;
}
/*****************************************************************************
*
* FUNCTION : CDHCP_AssociationSubnetToRange::ExecMethod
*
* DESCRIPTION : Override this function to provide support for methods.
* A method is an entry point for the user of your provider
* to request your class perform some function above and
* beyond a change of state. (A change of state should be
* handled by PutInstance() )
*
* INPUTS : A pointer to a CInstance containing the instance the method was executed against.
* A string containing the method name
* A pointer to the CInstance which contains the IN parameters.
* A pointer to the CInstance to contain the OUT parameters.
* A set of specialized method flags
*
* RETURNS : WBEM_E_PROVIDER_NOT_CAPABLE if not implemented for this class
* WBEM_S_NO_ERROR if method executes successfully
* WBEM_E_FAILED if error occurs executing method
*
* COMMENTS : TO DO: If you don't intend to support Methods, remove this method.
*
*****************************************************************************/
HRESULT CDHCP_AssociationSubnetToRange::ExecMethod ( const CInstance& Instance,
const BSTR bstrMethodName,
CInstance *pInParams,
CInstance *pOutParams,
long lFlags)
{
return WBEM_E_PROVIDER_NOT_CAPABLE;
}