📄 subauth.c
字号:
Cleanup:
if ( CritSectLocked ) {
LeaveCriticalSection( &SubAuthenticationCritSect );
}
return Status;
}
NTSTATUS
Msv1_0SubAuthenticationRoutineEx(
IN NETLOGON_LOGON_INFO_CLASS LogonLevel,
IN PVOID LogonInformation,
IN ULONG Flags,
IN PUSER_ALL_INFORMATION UserAll,
IN SAM_HANDLE UserHandle,
IN OUT PMSV1_0_VALIDATION_INFO ValidationInfo,
OUT PULONG ActionsPerformed
)
/*++
Routine Description:
The subauthentication routine does client/server specific authentication
of a user. This stub routine loads the appropriate subauthentication
package DLL and calls out to that DLL to do the actuall validation.
Arguments:
LogonLevel -- Specifies the level of information given in
LogonInformation.
LogonInformation -- Specifies the description for the user
logging on. The LogonDomainName field should be ignored.
Flags - Flags describing the circumstances of the logon.
MSV1_0_PASSTHRU -- This is a PassThru authenication. (i.e., the
user isn't connecting to this machine.)
MSV1_0_GUEST_LOGON -- This is a retry of the logon using the GUEST
user account.
UserAll -- The description of the user as returned from SAM.
WhichFields -- Returns which fields from UserAllInfo are to be written
back to SAM. The fields will only be written if MSV returns success
to it's caller. Only the following bits are valid.
USER_ALL_PARAMETERS - Write UserAllInfo->Parameters back to SAM. If
the size of the buffer is changed, Msv1_0SubAuthenticationRoutine
must delete the old buffer using MIDL_user_free() and reallocate the
buffer using MIDL_user_allocate().
UserFlags -- Returns UserFlags to be returned from LsaLogonUser in the
LogonProfile. The following bits are currently defined:
LOGON_GUEST -- This was a guest logon
LOGON_NOENCRYPTION -- The caller didn't specify encrypted credentials
LOGON_GRACE_LOGON -- The caller's password has expired but logon
was allowed during a grace period following the expiration.
SubAuthentication packages should restrict themselves to returning
bits in the high order byte of UserFlags. However, this convention
isn't enforced giving the SubAuthentication package more flexibility.
Authoritative -- Returns whether the status returned is an
authoritative status which should be returned to the original
caller. If not, this logon request may be tried again on another
domain controller. This parameter is returned regardless of the
status code.
LogoffTime - Receives the time at which the user should logoff the
system. This time is specified as a GMT relative NT system time.
KickoffTime - Receives the time at which the user should be kicked
off the system. This time is specified as a GMT relative NT system
time. Specify, a full scale positive number if the user isn't to
be kicked off.
Return Value:
STATUS_SUCCESS: if there was no error.
STATUS_NO_SUCH_USER: The specified user has no account.
STATUS_WRONG_PASSWORD: The password was invalid.
STATUS_INVALID_INFO_CLASS: LogonLevel is invalid.
STATUS_ACCOUNT_LOCKED_OUT: The account is locked out
STATUS_ACCOUNT_DISABLED: The account is disabled
STATUS_ACCOUNT_EXPIRED: The account has expired.
STATUS_PASSWORD_MUST_CHANGE: Account is marked as Password must change
on next logon.
STATUS_PASSWORD_EXPIRED: The Password is expired.
STATUS_INVALID_LOGON_HOURS - The user is not authorized to logon at
this time.
STATUS_INVALID_WORKSTATION - The user is not authorized to logon to
the specified workstation.
--*/
{
NTSTATUS Status;
NTSTATUS SubStatus;
ULONG DllNumber;
PSUBAUTHENTICATION_DLL SubAuthenticationDll;
PSUBAUTHENTICATION_ROUTINEEX SubAuthenticationRoutineEx;
PNETLOGON_LOGON_IDENTITY_INFO LogonInfo;
BOOLEAN CritSectLocked = FALSE;
//
// Initialization
//
LogonInfo = (PNETLOGON_LOGON_IDENTITY_INFO) LogonInformation;
DllNumber = LogonInfo->ParameterControl >> MSV1_0_SUBAUTHENTICATION_DLL_SHIFT;
EnterCriticalSection( &SubAuthenticationCritSect );
CritSectLocked = TRUE;
//
// Find the SubAuthentication Dll.
//
SubAuthenticationDll = ReferenceSubAuth (DllNumber, &SubStatus);;
if (SubStatus != STATUS_SUCCESS)
{
KdPrint(( "MSV1_0: SubAuth Error value is %ld.\n", SubStatus));
Status = SubStatus;
goto Cleanup;
}
//
// Leave the crit sect while calling the DLL
//
SubAuthenticationRoutineEx = SubAuthenticationDll->SubAuthenticationRoutineEx;
LeaveCriticalSection( &SubAuthenticationCritSect );
CritSectLocked = FALSE;
if (SubAuthenticationRoutineEx == NULL)
{
Status = STATUS_PROCEDURE_NOT_FOUND;
goto Cleanup;
}
//
// Call the actual authentication routine.
//
Status = (*SubAuthenticationRoutineEx)(
LogonLevel,
LogonInformation,
Flags,
UserAll,
UserHandle,
ValidationInfo,
ActionsPerformed
);
//
// Cleanup up before returning.
//
Cleanup:
if ( CritSectLocked ) {
LeaveCriticalSection( &SubAuthenticationCritSect );
}
return Status;
}
NTSTATUS
MspNtSubAuth(
IN PLSA_CLIENT_REQUEST ClientRequest,
IN PVOID ProtocolSubmitBuffer,
IN PVOID ClientBufferBase,
IN ULONG SubmitBufferSize,
OUT PVOID *ProtocolReturnBuffer,
OUT PULONG ReturnBufferSize,
OUT PNTSTATUS ProtocolStatus
)
/*++
Routine Description:
This routine is the dispatch routine for LsaCallAuthenticationPackage()
with a message type of MsV1_0SubAuthInfo.
Arguments:
The arguments to this routine are identical to those of LsaApCallPackage.
Only the special attributes of these parameters as they apply to
this routine are mentioned here.
Return Value:
STATUS_SUCCESS - Indicates the service completed successfully.
STATUS_QUOTA_EXCEEDED - This error indicates that the logon
could not be completed because the client does not have
sufficient quota to allocate the return buffer.
--*/
{
NTSTATUS Status = STATUS_SUCCESS;
NTSTATUS SubStatus = STATUS_SUCCESS;
PMSV1_0_SUBAUTH_REQUEST SubAuthRequest;
PMSV1_0_SUBAUTH_RESPONSE SubAuthResponse;
CLIENT_BUFFER_DESC ClientBufferDesc;
ULONG ReturnDataLength = 0;
PVOID ReturnDataBuffer = NULL;
BOOLEAN CritSectLocked = FALSE;
PSUBAUTHENTICATION_DLL SubAuthenticationDll;
PSUBAUTHENTICATION_ROUTINEGENERIC SubAuthenticationRoutineGeneric;
NlpInitClientBuffer( &ClientBufferDesc, ClientRequest );
*ProtocolStatus = STATUS_SUCCESS;
//
// Ensure the specified Submit Buffer is of reasonable size and
// relocate all of the pointers to be relative to the LSA allocated
// buffer.
//
if ( SubmitBufferSize < sizeof(MSV1_0_SUBAUTH_REQUEST) ) {
Status = STATUS_INVALID_PARAMETER;
goto Cleanup;
}
SubAuthRequest = (PMSV1_0_SUBAUTH_REQUEST) ProtocolSubmitBuffer;
//
// Make sure the buffer fits in the supplied size
//
if (SubAuthRequest->SubAuthSubmitBuffer != NULL) {
if (SubAuthRequest->SubAuthSubmitBuffer + SubAuthRequest->SubAuthInfoLength >
(PUCHAR) ClientBufferBase + SubmitBufferSize) {
Status = STATUS_INVALID_PARAMETER;
goto Cleanup;
}
//
// Reset the pointers for the validation data
//
SubAuthRequest->SubAuthSubmitBuffer =
(PUCHAR) SubAuthRequest -
(ULONG_PTR) ClientBufferBase +
(ULONG_PTR) SubAuthRequest->SubAuthSubmitBuffer;
}
// If subauth package found, call the routine,
EnterCriticalSection( &SubAuthenticationCritSect );
CritSectLocked = TRUE;
//
// Find the SubAuthentication Dll.
//
SubAuthenticationDll = ReferenceSubAuth (SubAuthRequest->SubAuthPackageId, &SubStatus);;
if (SubStatus != STATUS_SUCCESS)
{
KdPrint(( "MSV1_0: SubAuth Error value is %ld.\n", SubStatus));
Status = SubStatus;
goto Cleanup;
}
//
// Leave the crit sect while calling the DLL
//
SubAuthenticationRoutineGeneric = SubAuthenticationDll->SubAuthenticationRoutineGeneric;
LeaveCriticalSection( &SubAuthenticationCritSect );
CritSectLocked = FALSE;
if (SubAuthenticationRoutineGeneric == NULL)
{
Status = STATUS_PROCEDURE_NOT_FOUND;
goto Cleanup;
}
Status = (*SubAuthenticationRoutineGeneric)(
(PVOID) SubAuthRequest->SubAuthSubmitBuffer,
SubAuthRequest->SubAuthInfoLength,
&ReturnDataLength,
&ReturnDataBuffer);
if (!NT_SUCCESS(Status)) {
goto Cleanup;
}
//
// Allocate a buffer to return to the caller.
//
*ReturnBufferSize = sizeof(MSV1_0_SUBAUTH_RESPONSE) +
ReturnDataLength;
Status = NlpAllocateClientBuffer( &ClientBufferDesc,
sizeof(MSV1_0_SUBAUTH_RESPONSE),
*ReturnBufferSize );
if ( !NT_SUCCESS( Status ) ) {
goto Cleanup;
}
SubAuthResponse = (PMSV1_0_SUBAUTH_RESPONSE) ClientBufferDesc.MsvBuffer;
//
// Fill in the return buffer.
//
SubAuthResponse->MessageType = MsV1_0SubAuth;
SubAuthResponse->SubAuthInfoLength = ReturnDataLength;
if (ReturnDataLength > 0)
{
SubAuthResponse->SubAuthReturnBuffer = ClientBufferDesc.UserBuffer + sizeof(MSV1_0_SUBAUTH_RESPONSE);
if (ReturnDataBuffer)
{
RtlCopyMemory(
SubAuthResponse + 1,
ReturnDataBuffer,
ReturnDataLength
);
// Make relative pointers
SubAuthResponse->SubAuthReturnBuffer = (PUCHAR) sizeof(MSV1_0_SUBAUTH_RESPONSE);
}
else
{
SubAuthResponse->SubAuthReturnBuffer = NULL;
SubStatus = STATUS_NO_MEMORY;
}
}
else
{
SubAuthResponse->SubAuthReturnBuffer = 0;
}
//
// Flush the buffer to the client's address space.
//
Status = NlpFlushClientBuffer( &ClientBufferDesc,
ProtocolReturnBuffer );
Cleanup:
if (ReturnDataBuffer != NULL) {
MIDL_user_free(ReturnDataBuffer);
}
if ( !NT_SUCCESS(Status)) {
NlpFreeClientBuffer( &ClientBufferDesc );
}
if ( CritSectLocked ) {
LeaveCriticalSection( &SubAuthenticationCritSect );
}
*ProtocolStatus = SubStatus;
return(Status);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -