mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
333 lines
12 KiB
C
333 lines
12 KiB
C
/*
|
|
* ReactOS kernel
|
|
* Copyright (C) 2003 ReactOS Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
/* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS winlogon
|
|
* FILE: subsys/system/winlogon/winlogon.h
|
|
* PURPOSE: Winlogon
|
|
* PROGRAMMER:
|
|
*/
|
|
|
|
#ifndef __WINLOGON_MAIN_H__
|
|
#define __WINLOGON_MAIN_H__
|
|
|
|
#define USE_GETLASTINPUTINFO
|
|
|
|
#define WIN32_NO_STATUS
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#include <mmsystem.h>
|
|
#include <userenv.h>
|
|
#include <winwlx.h>
|
|
#include <cmfuncs.h>
|
|
#include <rtlfuncs.h>
|
|
#include <exfuncs.h>
|
|
#include <setypes.h>
|
|
#include <sefuncs.h>
|
|
#include <aclapi.h>
|
|
#include <strsafe.h>
|
|
|
|
#include <reactos/undocuser.h>
|
|
#include <reactos/winlogon.h>
|
|
|
|
#include <wine/debug.h>
|
|
|
|
#include "setup.h"
|
|
#include "resource.h"
|
|
|
|
typedef BOOL (WINAPI * PFWLXNEGOTIATE) (DWORD, DWORD *);
|
|
typedef BOOL (WINAPI * PFWLXINITIALIZE) (LPWSTR, HANDLE, PVOID, PVOID, PVOID *);
|
|
typedef VOID (WINAPI * PFWLXDISPLAYSASNOTICE) (PVOID);
|
|
typedef int (WINAPI * PFWLXLOGGEDOUTSAS) (PVOID, DWORD, PLUID, PSID, PDWORD,
|
|
PHANDLE, PWLX_MPR_NOTIFY_INFO,
|
|
PVOID *);
|
|
typedef BOOL (WINAPI * PFWLXACTIVATEUSERSHELL) (PVOID, PWSTR, PWSTR, PVOID);
|
|
typedef int (WINAPI * PFWLXLOGGEDONSAS) (PVOID, DWORD, PVOID);
|
|
typedef VOID (WINAPI * PFWLXDISPLAYLOCKEDNOTICE) (PVOID);
|
|
typedef int (WINAPI * PFWLXWKSTALOCKEDSAS) (PVOID, DWORD);
|
|
typedef BOOL (WINAPI * PFWLXISLOCKOK) (PVOID);
|
|
typedef BOOL (WINAPI * PFWLXISLOGOFFOK) (PVOID);
|
|
typedef VOID (WINAPI * PFWLXLOGOFF) (PVOID);
|
|
typedef VOID (WINAPI * PFWLXSHUTDOWN) (PVOID, DWORD);
|
|
|
|
/* version 1.1 */
|
|
|
|
typedef BOOL (WINAPI * PFWLXSCREENSAVERNOTIFY) (PVOID, BOOL *);
|
|
typedef BOOL (WINAPI * PFWLXSTARTAPPLICATION) (PVOID, PWSTR, PVOID, PWSTR);
|
|
|
|
/* version 1.3 */
|
|
|
|
typedef BOOL (WINAPI * PFWLXNETWORKPROVIDERLOAD) (PVOID, PWLX_MPR_NOTIFY_INFO);
|
|
typedef BOOL (WINAPI * PFWLXDISPLAYSTATUSMESSAGE) (PVOID, HDESK, DWORD, PWSTR, PWSTR);
|
|
typedef BOOL (WINAPI * PFWLXGETSTATUSMESSAGE) (PVOID, DWORD *, PWSTR, DWORD);
|
|
typedef BOOL (WINAPI * PFWLXREMOVESTATUSMESSAGE) (PVOID);
|
|
|
|
typedef struct _GINAFUNCTIONS
|
|
{
|
|
/* Functions always available for a valid GINA */
|
|
PFWLXNEGOTIATE WlxNegotiate; /* optional */
|
|
PFWLXINITIALIZE WlxInitialize;
|
|
|
|
/* Functions available if WlxVersion >= WLX_VERSION_1_0 (MS Windows 3.5.0) */
|
|
PFWLXDISPLAYSASNOTICE WlxDisplaySASNotice;
|
|
PFWLXLOGGEDOUTSAS WlxLoggedOutSAS;
|
|
PFWLXACTIVATEUSERSHELL WlxActivateUserShell;
|
|
PFWLXLOGGEDONSAS WlxLoggedOnSAS;
|
|
PFWLXDISPLAYLOCKEDNOTICE WlxDisplayLockedNotice;
|
|
PFWLXWKSTALOCKEDSAS WlxWkstaLockedSAS;
|
|
PFWLXISLOCKOK WlxIsLockOk;
|
|
PFWLXISLOGOFFOK WlxIsLogoffOk;
|
|
PFWLXLOGOFF WlxLogoff;
|
|
PFWLXSHUTDOWN WlxShutdown;
|
|
|
|
/* Functions available if WlxVersion >= WLX_VERSION_1_1 (MS Windows 3.5.1) */
|
|
PFWLXSCREENSAVERNOTIFY WlxScreenSaverNotify; /* optional */
|
|
PFWLXSTARTAPPLICATION WlxStartApplication; /* optional */
|
|
|
|
/* Functions available if WlxVersion >= WLX_VERSION_1_2 (MS Windows NT 4.0) */
|
|
|
|
/* Functions available if WlxVersion >= WLX_VERSION_1_3 (MS Windows 2000) */
|
|
PFWLXNETWORKPROVIDERLOAD WlxNetworkProviderLoad; /* not called ATM */
|
|
PFWLXDISPLAYSTATUSMESSAGE WlxDisplayStatusMessage;
|
|
PFWLXGETSTATUSMESSAGE WlxGetStatusMessage; /* doesn't need to be called */
|
|
PFWLXREMOVESTATUSMESSAGE WlxRemoveStatusMessage;
|
|
|
|
/* Functions available if WlxVersion >= WLX_VERSION_1_4 (MS Windows XP) */
|
|
} GINAFUNCTIONS, *PGINAFUNCTIONS;
|
|
|
|
typedef struct _GINAINSTANCE
|
|
{
|
|
HMODULE hDllInstance;
|
|
GINAFUNCTIONS Functions;
|
|
PVOID Context;
|
|
DWORD Version;
|
|
BOOL UseCtrlAltDelete;
|
|
} GINAINSTANCE, *PGINAINSTANCE;
|
|
|
|
|
|
/*
|
|
* The picture Microsoft is trying to paint here
|
|
* (http://msdn.microsoft.com/en-us/library/windows/desktop/aa380547%28v=vs.85%29.aspx)
|
|
* about the Winlogon states is a little too simple.
|
|
*
|
|
* The real picture should look more like this:
|
|
*
|
|
* STATE_INIT
|
|
* Initial state. Required for session initialization. After intialization,
|
|
* the state will automatically change to STATE_LOGGED_OFF.
|
|
*
|
|
* STATE_LOGGED_OFF
|
|
* User is logged off. Winlogon shows the "Press Ctrl-Alt-Del for logon"
|
|
* dialog. The state changes to STATE_LOGGED_OFF_SAS when the user presses
|
|
* "Ctrl-Alt-Del". If DisableCAD is true, the state will automatically
|
|
* change to STATE_LOGGED_OFF_SAS without showing the dialog.
|
|
*
|
|
* STATE_LOGGED_OFF_SAS
|
|
* State shows the logon dialog. Entering the right credentials and pressing
|
|
* "OK" changes the state to STATE_LOGGED_ON. Pressing "Cancel" or a timeout
|
|
* changes the state back to STATE_LOGGED_OFF.
|
|
*
|
|
* STATE_LOGGED_ON
|
|
* User is logged on. Winlogon does not show any dialog. Pressing
|
|
* "Ctrl-Alt-Del" changes the state to STATE_LOGGED_ON_SAS and user
|
|
* inactivity changes the state to STATE_SCREENSAVER.
|
|
*
|
|
* STATE_LOGGED_ON_SAS
|
|
* Winlogon shows the security dialog. Pressing "Cancel" or "Task Manager"
|
|
* or a timeout change the state back to STATE_LOGGED_ON. Pressing "Change
|
|
* Password" does not change the state, because the security dialog is still
|
|
* visible behind the change password dialog. Pressing "Log off" changes the
|
|
* state to STATE_LOGGING_OFF. Pressing "Lock Computer" changes the state to
|
|
* STATE_LOCKED. Pressing "Shutdown" changes the state to
|
|
* STATE_SHUTTING_DOWN.
|
|
*
|
|
* STATE_SCREENSAVER
|
|
* Winlogon runs the screen saver. Upon user activity, the screensaver
|
|
* terminates and the state changes back to STATE_LOGGED_ON if the secure
|
|
* screen saver option is off. Otherwise, the state changes to STATE_LOCKED.
|
|
*
|
|
* STATE_LOGGING_OFF
|
|
* Winlogon shows the logoff dialog. Pressing "Cancel" or a timeout changes
|
|
* the state back to STATE_LOGGED_ON_SAS. Pressing "OK" logs off the user
|
|
* and changes the state to STATE_LOGGED_OFF.
|
|
*
|
|
* STATE_LOCKED
|
|
* Winlogon shows the locked message dialog. When the user presses "Ctrl-
|
|
* Alt-Del" the state changes to STATE_LOCKED_SAS. If DisableCAD is true,
|
|
* the state will automatically change to STATE_LOCKED_SAS without showing
|
|
* the dialog.
|
|
*
|
|
* STATE_LOCKED_SAS
|
|
* Winlogon shows the unlock dialog. Presing "Cancel" or a timeout will
|
|
* change the state back to STATE_LOCKED. Entering the right credentials and
|
|
* pressing "OK" unlocks the computer and changes the state to
|
|
* STATE_LOGGED_ON.
|
|
*
|
|
* STATE_SHUTTING_DOWN
|
|
* Winlogon shows the shutdown dialog. Presing "Cancel" or a timeout will
|
|
* change the state back to STATE_LOGGED_ON_SAS. Pressing "OK" will change
|
|
* the state to STATE_SHUT_DOWN.
|
|
*
|
|
* STATE_SHUT_DOWN
|
|
* Terminates Winlogon and initiates shut-down.
|
|
*/
|
|
typedef enum _LOGON_STATE
|
|
{
|
|
STATE_INIT, // not user yet
|
|
STATE_LOGGED_OFF,
|
|
STATE_LOGGED_OFF_SAS, // not user yet
|
|
STATE_LOGGED_ON,
|
|
STATE_LOGGED_ON_SAS, // not user yet
|
|
STATE_SCREENSAVER, // not user yet
|
|
STATE_LOCKED,
|
|
STATE_LOCKED_SAS, // not user yet
|
|
STATE_LOGGING_OFF, // not user yet
|
|
STATE_SHUTTING_DOWN, // not user yet
|
|
STATE_SHUT_DOWN // not user yet
|
|
} LOGON_STATE, *PLOGON_STATE;
|
|
|
|
#define LockWorkstation(Session)
|
|
#define UnlockWorkstation(Session)
|
|
|
|
typedef struct _WLSESSION
|
|
{
|
|
GINAINSTANCE Gina;
|
|
DWORD SASAction;
|
|
BOOL SuppressStatus;
|
|
BOOL TaskManHotkey;
|
|
HWND SASWindow;
|
|
HWINSTA InteractiveWindowStation;
|
|
LPWSTR InteractiveWindowStationName;
|
|
HDESK ApplicationDesktop;
|
|
HDESK WinlogonDesktop;
|
|
HDESK ScreenSaverDesktop;
|
|
LUID LogonId;
|
|
HANDLE UserToken;
|
|
HANDLE hProfileInfo;
|
|
LOGON_STATE LogonState;
|
|
DWORD DialogTimeout; /* Timeout for dialog boxes, in seconds */
|
|
|
|
/* Screen-saver informations */
|
|
#ifndef USE_GETLASTINPUTINFO
|
|
HHOOK KeyboardHook;
|
|
HHOOK MouseHook;
|
|
#endif
|
|
HANDLE hEndOfScreenSaverThread;
|
|
HANDLE hScreenSaverParametersChanged;
|
|
HANDLE hUserActivity;
|
|
HANDLE hEndOfScreenSaver;
|
|
#ifndef USE_GETLASTINPUTINFO
|
|
DWORD LastActivity;
|
|
#endif
|
|
|
|
/* Logon informations */
|
|
DWORD Options;
|
|
WLX_MPR_NOTIFY_INFO MprNotifyInfo;
|
|
WLX_PROFILE_V2_0 *Profile;
|
|
} WLSESSION, *PWLSESSION;
|
|
|
|
extern HINSTANCE hAppInstance;
|
|
extern PWLSESSION WLSession;
|
|
|
|
#define WLX_SHUTTINGDOWN(Status) \
|
|
(((Status) == WLX_SAS_ACTION_SHUTDOWN) || \
|
|
((Status) == WLX_SAS_ACTION_SHUTDOWN_POWER_OFF) || \
|
|
((Status) == WLX_SAS_ACTION_SHUTDOWN_REBOOT) \
|
|
)
|
|
|
|
#define WLX_SUSPENDING(Status) \
|
|
(((Status) == WLX_SAS_ACTION_SHUTDOWN_SLEEP) || \
|
|
((Status) == WLX_SAS_ACTION_SHUTDOWN_SLEEP2) || \
|
|
((Status) == WLX_SAS_ACTION_SHUTDOWN_HIBERNATE) \
|
|
)
|
|
|
|
/* environment.c */
|
|
BOOL
|
|
CreateUserEnvironment(IN PWLSESSION Session);
|
|
|
|
/* sas.c */
|
|
BOOL
|
|
SetDefaultLanguage(IN BOOL UserProfile);
|
|
|
|
BOOL
|
|
InitializeSAS(IN OUT PWLSESSION Session);
|
|
|
|
/* screensaver.c */
|
|
BOOL
|
|
InitializeScreenSaver(IN OUT PWLSESSION Session);
|
|
|
|
VOID
|
|
StartScreenSaver(IN PWLSESSION Session);
|
|
|
|
/* winlogon.c */
|
|
|
|
BOOL
|
|
PlaySoundRoutine(IN LPCWSTR FileName,
|
|
IN UINT Logon,
|
|
IN UINT Flags);
|
|
|
|
BOOL
|
|
DisplayStatusMessage(IN PWLSESSION Session,
|
|
IN HDESK hDesktop,
|
|
IN UINT ResourceId);
|
|
|
|
BOOL
|
|
RemoveStatusMessage(IN PWLSESSION Session);
|
|
|
|
/* wlx.c */
|
|
BOOL
|
|
GinaInit(IN OUT PWLSESSION Session);
|
|
|
|
BOOL
|
|
CreateWindowStationAndDesktops(IN OUT PWLSESSION Session);
|
|
|
|
NTSTATUS
|
|
HandleShutdown(IN OUT PWLSESSION Session,
|
|
IN DWORD wlxAction);
|
|
|
|
VOID WINAPI WlxUseCtrlAltDel(HANDLE hWlx);
|
|
VOID WINAPI WlxSetContextPointer(HANDLE hWlx, PVOID pWlxContext);
|
|
VOID WINAPI WlxSasNotify(HANDLE hWlx, DWORD dwSasType);
|
|
BOOL WINAPI WlxSetTimeout(HANDLE hWlx, DWORD Timeout);
|
|
int WINAPI WlxAssignShellProtection(HANDLE hWlx, HANDLE hToken, HANDLE hProcess, HANDLE hThread);
|
|
int WINAPI WlxMessageBox(HANDLE hWlx, HWND hwndOwner, LPWSTR lpszText, LPWSTR lpszTitle, UINT fuStyle);
|
|
int WINAPI WlxDialogBox(HANDLE hWlx, HANDLE hInst, LPWSTR lpszTemplate, HWND hwndOwner, DLGPROC dlgprc);
|
|
int WINAPI WlxDialogBoxParam(HANDLE hWlx, HANDLE hInst, LPWSTR lpszTemplate, HWND hwndOwner, DLGPROC dlgprc, LPARAM dwInitParam);
|
|
int WINAPI WlxDialogBoxIndirect(HANDLE hWlx, HANDLE hInst, LPCDLGTEMPLATE hDialogTemplate, HWND hwndOwner, DLGPROC dlgprc);
|
|
int WINAPI WlxDialogBoxIndirectParam(HANDLE hWlx, HANDLE hInst, LPCDLGTEMPLATE hDialogTemplate, HWND hwndOwner, DLGPROC dlgprc, LPARAM dwInitParam);
|
|
int WINAPI WlxSwitchDesktopToUser(HANDLE hWlx);
|
|
int WINAPI WlxSwitchDesktopToWinlogon(HANDLE hWlx);
|
|
int WINAPI WlxChangePasswordNotify(HANDLE hWlx, PWLX_MPR_NOTIFY_INFO pMprInfo, DWORD dwChangeInfo);
|
|
BOOL WINAPI WlxGetSourceDesktop(HANDLE hWlx, PWLX_DESKTOP* ppDesktop);
|
|
BOOL WINAPI WlxSetReturnDesktop(HANDLE hWlx, PWLX_DESKTOP pDesktop);
|
|
BOOL WINAPI WlxCreateUserDesktop(HANDLE hWlx, HANDLE hToken, DWORD Flags, PWSTR pszDesktopName, PWLX_DESKTOP* ppDesktop);
|
|
int WINAPI WlxChangePasswordNotifyEx(HANDLE hWlx, PWLX_MPR_NOTIFY_INFO pMprInfo, DWORD dwChangeInfo, PWSTR ProviderName, PVOID Reserved);
|
|
BOOL WINAPI WlxCloseUserDesktop(HANDLE hWlx, PWLX_DESKTOP pDesktop, HANDLE hToken);
|
|
BOOL WINAPI WlxSetOption(HANDLE hWlx, DWORD Option, ULONG_PTR Value, ULONG_PTR* OldValue);
|
|
BOOL WINAPI WlxGetOption(HANDLE hWlx, DWORD Option, ULONG_PTR* Value);
|
|
VOID WINAPI WlxWin31Migrate(HANDLE hWlx);
|
|
BOOL WINAPI WlxQueryClientCredentials(PWLX_CLIENT_CREDENTIALS_INFO_V1_0 pCred);
|
|
BOOL WINAPI WlxQueryInetConnectorCredentials(PWLX_CLIENT_CREDENTIALS_INFO_V1_0 pCred);
|
|
DWORD WINAPI WlxQueryConsoleSwitchCredentials(PWLX_CONSOLESWITCH_CREDENTIALS_INFO_V1_0 pCred);
|
|
BOOL WINAPI WlxQueryTsLogonCredentials(PWLX_CLIENT_CREDENTIALS_INFO_V2_0 pCred);
|
|
BOOL WINAPI WlxDisconnect(VOID);
|
|
DWORD WINAPI WlxQueryTerminalServicesData(HANDLE hWlx, PWLX_TERMINAL_SERVICES_DATA pTSData, WCHAR* UserName, WCHAR* Domain);
|
|
|
|
#endif /* __WINLOGON_MAIN_H__ */
|
|
|
|
/* EOF */
|