mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[LSASRV]
Revert all pointless changes from r72751. svn path=/trunk/; revision=72757
This commit is contained in:
parent
73975f8f4a
commit
1b6257ac3f
1 changed files with 44 additions and 43 deletions
|
@ -35,8 +35,8 @@ LsaCallAuthenticationPackage(IN HANDLE LsaHandle,
|
|||
OUT PULONG ReturnBufferLength,
|
||||
OUT PNTSTATUS ProtocolStatus)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
LSA_API_MSG ApiMessage;
|
||||
NTSTATUS Status;
|
||||
|
||||
DPRINT1("LsaCallAuthenticationPackage()\n");
|
||||
|
||||
|
@ -72,6 +72,46 @@ LsaCallAuthenticationPackage(IN HANDLE LsaHandle,
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
LsaDeregisterLogonProcess(IN HANDLE LsaHandle)
|
||||
{
|
||||
LSA_API_MSG ApiMessage;
|
||||
NTSTATUS Status;
|
||||
|
||||
DPRINT("LsaDeregisterLogonProcess()\n");
|
||||
|
||||
ApiMessage.ApiNumber = LSASS_REQUEST_DEREGISTER_LOGON_PROCESS;
|
||||
ApiMessage.h.u1.s1.DataLength = LSA_PORT_DATA_SIZE(ApiMessage.DeregisterLogonProcess);
|
||||
ApiMessage.h.u1.s1.TotalLength = LSA_PORT_MESSAGE_SIZE;
|
||||
ApiMessage.h.u2.ZeroInit = 0;
|
||||
|
||||
Status = ZwRequestWaitReplyPort(LsaHandle,
|
||||
(PPORT_MESSAGE)&ApiMessage,
|
||||
(PPORT_MESSAGE)&ApiMessage);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("ZwRequestWaitReplyPort() failed (Status 0x%08lx)\n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
if (!NT_SUCCESS(ApiMessage.Status))
|
||||
{
|
||||
DPRINT1("ZwRequestWaitReplyPort() failed (ApiMessage.Status 0x%08lx)\n", ApiMessage.Status);
|
||||
return ApiMessage.Status;
|
||||
}
|
||||
|
||||
ZwClose(LsaHandle);
|
||||
|
||||
DPRINT("LsaDeregisterLogonProcess() done (Status 0x%08lx)\n", Status);
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
@ -80,6 +120,7 @@ NTAPI
|
|||
LsaFreeReturnBuffer(IN PVOID Buffer)
|
||||
{
|
||||
SIZE_T Size = 0;
|
||||
|
||||
return ZwFreeVirtualMemory(NtCurrentProcess(),
|
||||
&Buffer,
|
||||
&Size,
|
||||
|
@ -96,8 +137,8 @@ LsaLookupAuthenticationPackage(IN HANDLE LsaHandle,
|
|||
IN PLSA_STRING PackageName,
|
||||
OUT PULONG AuthenticationPackage)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
LSA_API_MSG ApiMessage;
|
||||
NTSTATUS Status;
|
||||
|
||||
/* Check the package name length */
|
||||
if (PackageName->Length > LSASS_MAX_PACKAGE_NAME_LENGTH)
|
||||
|
@ -155,8 +196,8 @@ LsaLogonUser(IN HANDLE LsaHandle,
|
|||
OUT PQUOTA_LIMITS Quotas,
|
||||
OUT PNTSTATUS SubStatus)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
LSA_API_MSG ApiMessage;
|
||||
NTSTATUS Status;
|
||||
|
||||
ApiMessage.ApiNumber = LSASS_REQUEST_LOGON_USER;
|
||||
ApiMessage.h.u1.s1.DataLength = LSA_PORT_DATA_SIZE(ApiMessage.LogonUser);
|
||||
|
@ -301,43 +342,3 @@ LsaRegisterLogonProcess(IN PLSA_STRING LogonProcessName,
|
|||
|
||||
return ConnectInfo.Status;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
LsaDeregisterLogonProcess(IN HANDLE LsaHandle)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
LSA_API_MSG ApiMessage;
|
||||
|
||||
DPRINT("LsaDeregisterLogonProcess()\n");
|
||||
|
||||
ApiMessage.ApiNumber = LSASS_REQUEST_DEREGISTER_LOGON_PROCESS;
|
||||
ApiMessage.h.u1.s1.DataLength = LSA_PORT_DATA_SIZE(ApiMessage.DeregisterLogonProcess);
|
||||
ApiMessage.h.u1.s1.TotalLength = LSA_PORT_MESSAGE_SIZE;
|
||||
ApiMessage.h.u2.ZeroInit = 0;
|
||||
|
||||
Status = ZwRequestWaitReplyPort(LsaHandle,
|
||||
(PPORT_MESSAGE)&ApiMessage,
|
||||
(PPORT_MESSAGE)&ApiMessage);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("ZwRequestWaitReplyPort() failed (Status 0x%08lx)\n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
if (!NT_SUCCESS(ApiMessage.Status))
|
||||
{
|
||||
DPRINT1("ZwRequestWaitReplyPort() failed (ApiMessage.Status 0x%08lx)\n", ApiMessage.Status);
|
||||
return ApiMessage.Status;
|
||||
}
|
||||
|
||||
ZwClose(LsaHandle);
|
||||
|
||||
DPRINT("LsaDeregisterLogonProcess() done (Status 0x%08lx)\n", Status);
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue