mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:52:57 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
440
base/services/dhcpcsvc/dhcpcsvc.c
Normal file
440
base/services/dhcpcsvc/dhcpcsvc.c
Normal file
|
@ -0,0 +1,440 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
* FILE: lib/dhcpcapi/dhcpcapi.c
|
||||
* PURPOSE: Client API for DHCP
|
||||
* COPYRIGHT: Copyright 2005 Art Yerkes <ayerkes@speakeasy.net>
|
||||
*/
|
||||
|
||||
#include <rosdhcp.h>
|
||||
#include <winsvc.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
static WCHAR ServiceName[] = L"DHCP";
|
||||
|
||||
SERVICE_STATUS_HANDLE ServiceStatusHandle = 0;
|
||||
SERVICE_STATUS ServiceStatus;
|
||||
|
||||
static HANDLE PipeHandle = INVALID_HANDLE_VALUE;
|
||||
|
||||
DWORD APIENTRY
|
||||
DhcpCApiInitialize(LPDWORD Version)
|
||||
{
|
||||
DWORD PipeMode;
|
||||
|
||||
/* Wait for the pipe to be available */
|
||||
if (!WaitNamedPipeW(DHCP_PIPE_NAME, NMPWAIT_USE_DEFAULT_WAIT))
|
||||
{
|
||||
/* No good, we failed */
|
||||
return GetLastError();
|
||||
}
|
||||
|
||||
/* It's available, let's try to open it */
|
||||
PipeHandle = CreateFileW(DHCP_PIPE_NAME,
|
||||
GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_SHARE_READ | FILE_SHARE_WRITE,
|
||||
NULL,
|
||||
OPEN_EXISTING,
|
||||
0,
|
||||
NULL);
|
||||
|
||||
/* Check if we succeeded in opening the pipe */
|
||||
if (PipeHandle == INVALID_HANDLE_VALUE)
|
||||
{
|
||||
/* We didn't */
|
||||
return GetLastError();
|
||||
}
|
||||
|
||||
/* Change the pipe into message mode */
|
||||
PipeMode = PIPE_READMODE_MESSAGE;
|
||||
if (!SetNamedPipeHandleState(PipeHandle, &PipeMode, NULL, NULL))
|
||||
{
|
||||
/* Mode change failed */
|
||||
CloseHandle(PipeHandle);
|
||||
PipeHandle = INVALID_HANDLE_VALUE;
|
||||
return GetLastError();
|
||||
}
|
||||
else
|
||||
{
|
||||
/* We're good to go */
|
||||
*Version = 2;
|
||||
return NO_ERROR;
|
||||
}
|
||||
}
|
||||
|
||||
VOID APIENTRY
|
||||
DhcpCApiCleanup(VOID)
|
||||
{
|
||||
CloseHandle(PipeHandle);
|
||||
PipeHandle = INVALID_HANDLE_VALUE;
|
||||
}
|
||||
|
||||
DWORD APIENTRY
|
||||
DhcpQueryHWInfo(DWORD AdapterIndex,
|
||||
PDWORD MediaType,
|
||||
PDWORD Mtu,
|
||||
PDWORD Speed)
|
||||
{
|
||||
COMM_DHCP_REQ Req;
|
||||
COMM_DHCP_REPLY Reply;
|
||||
DWORD BytesRead;
|
||||
BOOL Result;
|
||||
|
||||
ASSERT(PipeHandle != INVALID_HANDLE_VALUE);
|
||||
|
||||
Req.Type = DhcpReqQueryHWInfo;
|
||||
Req.AdapterIndex = AdapterIndex;
|
||||
|
||||
Result = TransactNamedPipe(PipeHandle,
|
||||
&Req, sizeof(Req),
|
||||
&Reply, sizeof(Reply),
|
||||
&BytesRead, NULL);
|
||||
if (!Result)
|
||||
{
|
||||
/* Pipe transaction failed */
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (Reply.Reply == 0)
|
||||
return 0;
|
||||
|
||||
*MediaType = Reply.QueryHWInfo.MediaType;
|
||||
*Mtu = Reply.QueryHWInfo.Mtu;
|
||||
*Speed = Reply.QueryHWInfo.Speed;
|
||||
return 1;
|
||||
}
|
||||
|
||||
DWORD APIENTRY
|
||||
DhcpLeaseIpAddress(DWORD AdapterIndex)
|
||||
{
|
||||
COMM_DHCP_REQ Req;
|
||||
COMM_DHCP_REPLY Reply;
|
||||
DWORD BytesRead;
|
||||
BOOL Result;
|
||||
|
||||
ASSERT(PipeHandle != INVALID_HANDLE_VALUE);
|
||||
|
||||
Req.Type = DhcpReqLeaseIpAddress;
|
||||
Req.AdapterIndex = AdapterIndex;
|
||||
|
||||
Result = TransactNamedPipe(PipeHandle,
|
||||
&Req, sizeof(Req),
|
||||
&Reply, sizeof(Reply),
|
||||
&BytesRead, NULL);
|
||||
if (!Result)
|
||||
{
|
||||
/* Pipe transaction failed */
|
||||
return 0;
|
||||
}
|
||||
|
||||
return Reply.Reply;
|
||||
}
|
||||
|
||||
DWORD APIENTRY
|
||||
DhcpReleaseIpAddressLease(DWORD AdapterIndex)
|
||||
{
|
||||
COMM_DHCP_REQ Req;
|
||||
COMM_DHCP_REPLY Reply;
|
||||
DWORD BytesRead;
|
||||
BOOL Result;
|
||||
|
||||
ASSERT(PipeHandle != INVALID_HANDLE_VALUE);
|
||||
|
||||
Req.Type = DhcpReqReleaseIpAddress;
|
||||
Req.AdapterIndex = AdapterIndex;
|
||||
|
||||
Result = TransactNamedPipe(PipeHandle,
|
||||
&Req, sizeof(Req),
|
||||
&Reply, sizeof(Reply),
|
||||
&BytesRead, NULL);
|
||||
if (!Result)
|
||||
{
|
||||
/* Pipe transaction failed */
|
||||
return 0;
|
||||
}
|
||||
|
||||
return Reply.Reply;
|
||||
}
|
||||
|
||||
DWORD APIENTRY
|
||||
DhcpRenewIpAddressLease(DWORD AdapterIndex)
|
||||
{
|
||||
COMM_DHCP_REQ Req;
|
||||
COMM_DHCP_REPLY Reply;
|
||||
DWORD BytesRead;
|
||||
BOOL Result;
|
||||
|
||||
ASSERT(PipeHandle != INVALID_HANDLE_VALUE);
|
||||
|
||||
Req.Type = DhcpReqRenewIpAddress;
|
||||
Req.AdapterIndex = AdapterIndex;
|
||||
|
||||
Result = TransactNamedPipe(PipeHandle,
|
||||
&Req, sizeof(Req),
|
||||
&Reply, sizeof(Reply),
|
||||
&BytesRead, NULL);
|
||||
if (!Result)
|
||||
{
|
||||
/* Pipe transaction failed */
|
||||
return 0;
|
||||
}
|
||||
|
||||
return Reply.Reply;
|
||||
}
|
||||
|
||||
DWORD APIENTRY
|
||||
DhcpStaticRefreshParams(DWORD AdapterIndex,
|
||||
DWORD Address,
|
||||
DWORD Netmask)
|
||||
{
|
||||
COMM_DHCP_REQ Req;
|
||||
COMM_DHCP_REPLY Reply;
|
||||
DWORD BytesRead;
|
||||
BOOL Result;
|
||||
|
||||
ASSERT(PipeHandle != INVALID_HANDLE_VALUE);
|
||||
|
||||
Req.Type = DhcpReqStaticRefreshParams;
|
||||
Req.AdapterIndex = AdapterIndex;
|
||||
Req.Body.StaticRefreshParams.IPAddress = Address;
|
||||
Req.Body.StaticRefreshParams.Netmask = Netmask;
|
||||
|
||||
Result = TransactNamedPipe(PipeHandle,
|
||||
&Req, sizeof(Req),
|
||||
&Reply, sizeof(Reply),
|
||||
&BytesRead, NULL);
|
||||
if (!Result)
|
||||
{
|
||||
/* Pipe transaction failed */
|
||||
return 0;
|
||||
}
|
||||
|
||||
return Reply.Reply;
|
||||
}
|
||||
|
||||
/*!
|
||||
* Set new TCP/IP parameters and notify DHCP client service of this
|
||||
*
|
||||
* \param[in] ServerName
|
||||
* NULL for local machine
|
||||
*
|
||||
* \param[in] AdapterName
|
||||
* IPHLPAPI name of adapter to change
|
||||
*
|
||||
* \param[in] NewIpAddress
|
||||
* TRUE if IP address changes
|
||||
*
|
||||
* \param[in] IpAddress
|
||||
* New IP address (network byte order)
|
||||
*
|
||||
* \param[in] SubnetMask
|
||||
* New subnet mask (network byte order)
|
||||
*
|
||||
* \param[in] DhcpAction
|
||||
* 0 - don't modify
|
||||
* 1 - enable DHCP
|
||||
* 2 - disable DHCP
|
||||
*
|
||||
* \return non-zero on success
|
||||
*
|
||||
* \remarks Undocumented by Microsoft
|
||||
*/
|
||||
DWORD APIENTRY
|
||||
DhcpNotifyConfigChange(LPWSTR ServerName,
|
||||
LPWSTR AdapterName,
|
||||
BOOL NewIpAddress,
|
||||
DWORD IpIndex,
|
||||
DWORD IpAddress,
|
||||
DWORD SubnetMask,
|
||||
INT DhcpAction)
|
||||
{
|
||||
DPRINT1("DHCPCSVC: DhcpNotifyConfigChange not implemented yet\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get DHCP info for an adapter
|
||||
*
|
||||
* \param[in] AdapterIndex
|
||||
* Index of the adapter (iphlpapi-style) for which info is
|
||||
* requested
|
||||
*
|
||||
* \param[out] DhcpEnabled
|
||||
* Returns whether DHCP is enabled for the adapter
|
||||
*
|
||||
* \param[out] DhcpServer
|
||||
* Returns DHCP server IP address (255.255.255.255 if no
|
||||
* server reached yet), in network byte order
|
||||
*
|
||||
* \param[out] LeaseObtained
|
||||
* Returns time at which the lease was obtained
|
||||
*
|
||||
* \param[out] LeaseExpires
|
||||
* Returns time at which the lease will expire
|
||||
*
|
||||
* \return non-zero on success
|
||||
*
|
||||
* \remarks This is a ReactOS-only routine
|
||||
*/
|
||||
DWORD APIENTRY
|
||||
DhcpRosGetAdapterInfo(DWORD AdapterIndex,
|
||||
PBOOL DhcpEnabled,
|
||||
PDWORD DhcpServer,
|
||||
time_t* LeaseObtained,
|
||||
time_t* LeaseExpires)
|
||||
{
|
||||
COMM_DHCP_REQ Req;
|
||||
COMM_DHCP_REPLY Reply;
|
||||
DWORD BytesRead;
|
||||
BOOL Result;
|
||||
|
||||
ASSERT(PipeHandle != INVALID_HANDLE_VALUE);
|
||||
|
||||
Req.Type = DhcpReqGetAdapterInfo;
|
||||
Req.AdapterIndex = AdapterIndex;
|
||||
|
||||
Result = TransactNamedPipe(PipeHandle,
|
||||
&Req, sizeof(Req),
|
||||
&Reply, sizeof(Reply),
|
||||
&BytesRead, NULL);
|
||||
|
||||
if (Result && Reply.Reply != 0)
|
||||
*DhcpEnabled = Reply.GetAdapterInfo.DhcpEnabled;
|
||||
else
|
||||
*DhcpEnabled = FALSE;
|
||||
|
||||
if (*DhcpEnabled)
|
||||
{
|
||||
*DhcpServer = Reply.GetAdapterInfo.DhcpServer;
|
||||
*LeaseObtained = Reply.GetAdapterInfo.LeaseObtained;
|
||||
*LeaseExpires = Reply.GetAdapterInfo.LeaseExpires;
|
||||
}
|
||||
else
|
||||
{
|
||||
*DhcpServer = INADDR_NONE;
|
||||
*LeaseObtained = 0;
|
||||
*LeaseExpires = 0;
|
||||
}
|
||||
|
||||
return Reply.Reply;
|
||||
}
|
||||
|
||||
|
||||
static VOID
|
||||
UpdateServiceStatus(DWORD dwState)
|
||||
{
|
||||
ServiceStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
|
||||
ServiceStatus.dwCurrentState = dwState;
|
||||
|
||||
ServiceStatus.dwControlsAccepted = 0;
|
||||
|
||||
ServiceStatus.dwWin32ExitCode = 0;
|
||||
ServiceStatus.dwServiceSpecificExitCode = 0;
|
||||
ServiceStatus.dwCheckPoint = 0;
|
||||
|
||||
if (dwState == SERVICE_START_PENDING ||
|
||||
dwState == SERVICE_STOP_PENDING ||
|
||||
dwState == SERVICE_PAUSE_PENDING ||
|
||||
dwState == SERVICE_CONTINUE_PENDING)
|
||||
ServiceStatus.dwWaitHint = 10000;
|
||||
else
|
||||
ServiceStatus.dwWaitHint = 0;
|
||||
|
||||
SetServiceStatus(ServiceStatusHandle,
|
||||
&ServiceStatus);
|
||||
}
|
||||
|
||||
static DWORD WINAPI
|
||||
ServiceControlHandler(DWORD dwControl,
|
||||
DWORD dwEventType,
|
||||
LPVOID lpEventData,
|
||||
LPVOID lpContext)
|
||||
{
|
||||
switch (dwControl)
|
||||
{
|
||||
case SERVICE_CONTROL_STOP:
|
||||
UpdateServiceStatus(SERVICE_STOP_PENDING);
|
||||
UpdateServiceStatus(SERVICE_STOPPED);
|
||||
return ERROR_SUCCESS;
|
||||
|
||||
case SERVICE_CONTROL_PAUSE:
|
||||
UpdateServiceStatus(SERVICE_PAUSED);
|
||||
return ERROR_SUCCESS;
|
||||
|
||||
case SERVICE_CONTROL_CONTINUE:
|
||||
UpdateServiceStatus(SERVICE_START_PENDING);
|
||||
UpdateServiceStatus(SERVICE_RUNNING);
|
||||
return ERROR_SUCCESS;
|
||||
|
||||
case SERVICE_CONTROL_INTERROGATE:
|
||||
SetServiceStatus(ServiceStatusHandle,
|
||||
&ServiceStatus);
|
||||
return ERROR_SUCCESS;
|
||||
|
||||
case SERVICE_CONTROL_SHUTDOWN:
|
||||
UpdateServiceStatus(SERVICE_STOP_PENDING);
|
||||
UpdateServiceStatus(SERVICE_STOPPED);
|
||||
return ERROR_SUCCESS;
|
||||
|
||||
default :
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
}
|
||||
|
||||
VOID WINAPI
|
||||
ServiceMain(DWORD argc, LPWSTR* argv)
|
||||
{
|
||||
ServiceStatusHandle = RegisterServiceCtrlHandlerExW(ServiceName,
|
||||
ServiceControlHandler,
|
||||
NULL);
|
||||
if (!ServiceStatusHandle)
|
||||
{
|
||||
DPRINT1("DHCPCSVC: Unable to register service control handler (%lx)\n", GetLastError());
|
||||
return;
|
||||
}
|
||||
|
||||
UpdateServiceStatus(SERVICE_START_PENDING);
|
||||
|
||||
if (!init_client())
|
||||
{
|
||||
DPRINT1("DHCPCSVC: init_client() failed!\n");
|
||||
UpdateServiceStatus(SERVICE_STOPPED);
|
||||
return;
|
||||
}
|
||||
|
||||
DH_DbgPrint(MID_TRACE,("DHCP Service Started\n"));
|
||||
|
||||
UpdateServiceStatus(SERVICE_RUNNING);
|
||||
|
||||
DH_DbgPrint(MID_TRACE,("Going into dispatch()\n"));
|
||||
DH_DbgPrint(MID_TRACE,("DHCPCSVC: DHCP service is starting up\n"));
|
||||
|
||||
dispatch();
|
||||
|
||||
DH_DbgPrint(MID_TRACE,("DHCPCSVC: DHCP service is shutting down\n"));
|
||||
stop_client();
|
||||
|
||||
UpdateServiceStatus(SERVICE_STOPPED);
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
DllMain(HINSTANCE hinstDLL,
|
||||
DWORD fdwReason,
|
||||
LPVOID lpvReserved)
|
||||
{
|
||||
switch (fdwReason)
|
||||
{
|
||||
case DLL_PROCESS_ATTACH:
|
||||
DisableThreadLibraryCalls(hinstDLL);
|
||||
break;
|
||||
|
||||
case DLL_PROCESS_DETACH:
|
||||
break;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue