2015-07-16 13:59:20 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Print Spooler Service
|
2017-09-29 17:18:19 +00:00
|
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
2015-07-16 13:59:20 +00:00
|
|
|
* PURPOSE: Functions related to Print Monitors
|
2017-09-29 17:18:19 +00:00
|
|
|
* COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
|
2015-07-16 13:59:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "precomp.h"
|
|
|
|
|
2015-07-17 10:57:10 +00:00
|
|
|
static void
|
2017-07-05 15:29:13 +00:00
|
|
|
_MarshallDownMonitorInfo(PBYTE* ppMonitorInfo, DWORD Level)
|
2015-07-17 10:57:10 +00:00
|
|
|
{
|
2017-07-05 15:29:13 +00:00
|
|
|
PMONITOR_INFO_2W pMonitorInfo2 = (PMONITOR_INFO_2W)(*ppMonitorInfo); // MONITOR_INFO_1W is a subset of MONITOR_INFO_2W
|
2015-07-17 10:57:10 +00:00
|
|
|
|
|
|
|
// Replace absolute pointer addresses in the output by relative offsets.
|
|
|
|
pMonitorInfo2->pName = (PWSTR)((ULONG_PTR)pMonitorInfo2->pName - (ULONG_PTR)pMonitorInfo2);
|
|
|
|
|
2017-07-05 15:29:13 +00:00
|
|
|
if (Level == 1)
|
|
|
|
{
|
|
|
|
*ppMonitorInfo += sizeof(MONITOR_INFO_1W);
|
|
|
|
}
|
|
|
|
else
|
2015-07-17 10:57:10 +00:00
|
|
|
{
|
|
|
|
pMonitorInfo2->pDLLName = (PWSTR)((ULONG_PTR)pMonitorInfo2->pDLLName - (ULONG_PTR)pMonitorInfo2);
|
|
|
|
pMonitorInfo2->pEnvironment = (PWSTR)((ULONG_PTR)pMonitorInfo2->pEnvironment - (ULONG_PTR)pMonitorInfo2);
|
2017-07-05 15:29:13 +00:00
|
|
|
*ppMonitorInfo += sizeof(MONITOR_INFO_2W);
|
2015-07-17 10:57:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD
|
|
|
|
_RpcAddMonitor(WINSPOOL_HANDLE pName, WINSPOOL_MONITOR_CONTAINER* pMonitorContainer)
|
|
|
|
{
|
|
|
|
UNIMPLEMENTED;
|
|
|
|
return ERROR_INVALID_FUNCTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD
|
|
|
|
_RpcDeleteMonitor(WINSPOOL_HANDLE pName, WCHAR* pEnvironment, WCHAR* pMonitorName)
|
|
|
|
{
|
|
|
|
UNIMPLEMENTED;
|
|
|
|
return ERROR_INVALID_FUNCTION;
|
|
|
|
}
|
|
|
|
|
2015-07-16 13:59:20 +00:00
|
|
|
DWORD
|
|
|
|
_RpcEnumMonitors(WINSPOOL_HANDLE pName, DWORD Level, BYTE* pMonitor, DWORD cbBuf, DWORD* pcbNeeded, DWORD* pcReturned)
|
|
|
|
{
|
|
|
|
DWORD dwErrorCode;
|
2017-07-05 15:29:13 +00:00
|
|
|
PBYTE pMonitorAligned;
|
2015-07-16 13:59:20 +00:00
|
|
|
|
|
|
|
dwErrorCode = RpcImpersonateClient(NULL);
|
|
|
|
if (dwErrorCode != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
ERR("RpcImpersonateClient failed with error %lu!\n", dwErrorCode);
|
|
|
|
return dwErrorCode;
|
|
|
|
}
|
|
|
|
|
2017-07-05 15:29:13 +00:00
|
|
|
pMonitorAligned = AlignRpcPtr(pMonitor, &cbBuf);
|
2015-07-16 13:59:20 +00:00
|
|
|
|
2017-07-05 15:29:13 +00:00
|
|
|
if(EnumMonitorsW(pName, Level, pMonitorAligned, cbBuf, pcbNeeded, pcReturned))
|
2015-07-17 10:57:10 +00:00
|
|
|
{
|
|
|
|
// Replace absolute pointer addresses in the output by relative offsets.
|
2017-07-05 15:29:13 +00:00
|
|
|
DWORD i;
|
|
|
|
PBYTE p = pMonitorAligned;
|
2015-07-17 10:57:10 +00:00
|
|
|
|
2017-07-05 15:29:13 +00:00
|
|
|
for (i = 0; i < *pcReturned; i++)
|
|
|
|
_MarshallDownMonitorInfo(&p, Level);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dwErrorCode = GetLastError();
|
2015-07-17 10:57:10 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 13:59:20 +00:00
|
|
|
RpcRevertToSelf();
|
2017-07-05 15:29:13 +00:00
|
|
|
UndoAlignRpcPtr(pMonitor, pMonitorAligned, cbBuf, pcbNeeded);
|
|
|
|
|
2015-07-16 13:59:20 +00:00
|
|
|
return dwErrorCode;
|
|
|
|
}
|