[NET] Start parsing the /times option of the USER command.

Only '/times:' and '/times:all' are accepted yet.
This commit is contained in:
Eric Kohl 2019-05-20 22:35:11 +02:00
parent 63286c6bbc
commit 611e6d7d0e

View file

@ -809,6 +809,53 @@ ParseDate(
} }
static
DWORD
ParseLogonHours(
PWSTR pszParams,
PBYTE *ppLogonHours,
PDWORD pdwUnitsPerWeek)
{
PBYTE pLogonHours = NULL;
DWORD dwError = ERROR_SUCCESS;
pLogonHours = HeapAlloc(GetProcessHeap(),
HEAP_ZERO_MEMORY,
UNITS_PER_WEEK / 8);
if (pLogonHours == NULL)
return ERROR_OUTOFMEMORY;
if (*pszParams == UNICODE_NULL)
{
goto done;
}
if (wcsicmp(pszParams, L"all") == 0)
{
FillMemory(pLogonHours, UNITS_PER_WEEK / 8, 0xFF);
goto done;
}
/* FIXME */
/* Mockup error because we do not parse the line yet */
dwError = 3768;
done:
if (dwError == ERROR_SUCCESS)
{
*ppLogonHours = pLogonHours;
*pdwUnitsPerWeek = UNITS_PER_WEEK;
}
else
{
if (pLogonHours != NULL)
HeapFree(GetProcessHeap(), 0, pLogonHours);
}
return dwError;
}
INT INT
cmdUser( cmdUser(
INT argc, INT argc,
@ -831,6 +878,8 @@ cmdUser(
LPWSTR endptr; LPWSTR endptr;
DWORD value; DWORD value;
BOOL bPasswordAllocated = FALSE; BOOL bPasswordAllocated = FALSE;
PBYTE pLogonHours = NULL;
DWORD dwUnitsPerWeek;
NET_API_STATUS Status; NET_API_STATUS Status;
i = 2; i = 2;
@ -884,7 +933,7 @@ cmdUser(
ConPrintf(StdOut, L"Status: %lu\n", Status); ConPrintf(StdOut, L"Status: %lu\n", Status);
return 0; return 0;
} }
else if (lpUserName != NULL && lpPassword == NULL) else if (lpUserName != NULL && lpPassword == NULL && argc == 3)
{ {
Status = DisplayUser(lpUserName); Status = DisplayUser(lpUserName);
ConPrintf(StdOut, L"Status: %lu\n", Status); ConPrintf(StdOut, L"Status: %lu\n", Status);
@ -1039,8 +1088,19 @@ cmdUser(
} }
else if (_wcsnicmp(argv[j], L"/times:", 7) == 0) else if (_wcsnicmp(argv[j], L"/times:", 7) == 0)
{ {
/* FIXME */ Status = ParseLogonHours(&argv[j][7],
ConPuts(StdErr, L"The /TIMES option is not supported yet.\n"); &pLogonHours,
&dwUnitsPerWeek);
if (Status == ERROR_SUCCESS)
{
pUserInfo->usri4_logon_hours = pLogonHours;
pUserInfo->usri4_units_per_week = dwUnitsPerWeek;
}
else
{
PrintMessageString(Status);
goto done;
}
} }
else if (_wcsnicmp(argv[j], L"/usercomment:", 13) == 0) else if (_wcsnicmp(argv[j], L"/usercomment:", 13) == 0)
{ {
@ -1105,6 +1165,9 @@ cmdUser(
} }
done: done:
if (pLogonHours != NULL)
HeapFree(GetProcessHeap(), 0, pLogonHours);
if (pWorkstations != NULL) if (pWorkstations != NULL)
HeapFree(GetProcessHeap(), 0, pWorkstations); HeapFree(GetProcessHeap(), 0, pWorkstations);