2000-03-19 13:08:09 +01:00
|
|
|
/*
|
|
|
|
* USER initialization code
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* Copyright 2000 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2000-03-19 13:08:09 +01:00
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2005-05-06 21:38:50 +02:00
|
|
|
#include <stdio.h>
|
2001-01-22 03:17:29 +01:00
|
|
|
#include <string.h>
|
2000-03-19 13:08:09 +01:00
|
|
|
#include "windef.h"
|
2000-12-19 05:53:20 +01:00
|
|
|
#include "winbase.h"
|
2000-03-19 13:08:09 +01:00
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
2000-08-03 02:04:24 +02:00
|
|
|
#include "winreg.h"
|
2005-05-25 20:42:37 +02:00
|
|
|
#include "tlhelp32.h"
|
2000-03-19 13:08:09 +01:00
|
|
|
|
2000-12-11 00:01:33 +01:00
|
|
|
#include "controls.h"
|
2004-12-08 19:06:14 +01:00
|
|
|
#include "user_private.h"
|
2000-03-19 13:08:09 +01:00
|
|
|
#include "win.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2000-08-03 02:04:24 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(graphics);
|
2000-08-10 03:16:19 +02:00
|
|
|
|
2001-03-23 20:13:23 +01:00
|
|
|
WORD USER_HeapSel = 0; /* USER heap selector */
|
2004-02-12 01:35:01 +01:00
|
|
|
HMODULE user32_module = 0;
|
2001-03-23 20:13:23 +01:00
|
|
|
|
2005-04-27 13:09:55 +02:00
|
|
|
static SYSLEVEL USER_SysLevel;
|
|
|
|
static CRITICAL_SECTION_DEBUG critsect_debug =
|
|
|
|
{
|
|
|
|
0, 0, &USER_SysLevel.crst,
|
|
|
|
{ &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
|
|
|
|
0, 0, { 0, (DWORD)(__FILE__ ": USER_SysLevel") }
|
|
|
|
};
|
|
|
|
static SYSLEVEL USER_SysLevel = { { &critsect_debug, -1, 0, 0, 0, 0 }, 2 };
|
|
|
|
|
2004-12-08 15:12:09 +01:00
|
|
|
static HPALETTE (WINAPI *pfnGDISelectPalette)( HDC hdc, HPALETTE hpal, WORD bkgnd );
|
|
|
|
static UINT (WINAPI *pfnGDIRealizePalette)( HDC hdc );
|
|
|
|
static HPALETTE hPrimaryPalette;
|
2002-10-18 06:05:49 +02:00
|
|
|
|
2001-10-16 23:58:58 +02:00
|
|
|
static DWORD exiting_thread_id;
|
2000-08-10 03:16:19 +02:00
|
|
|
|
2001-10-16 23:58:58 +02:00
|
|
|
extern void WDML_NotifyThreadDetach(void);
|
2001-07-24 22:49:41 +02:00
|
|
|
|
2000-03-19 13:08:09 +01:00
|
|
|
|
2005-04-27 13:09:55 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* USER_Lock
|
|
|
|
*/
|
|
|
|
void USER_Lock(void)
|
|
|
|
{
|
|
|
|
_EnterSysLevel( &USER_SysLevel );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* USER_Unlock
|
|
|
|
*/
|
|
|
|
void USER_Unlock(void)
|
|
|
|
{
|
|
|
|
_LeaveSysLevel( &USER_SysLevel );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* USER_CheckNotLock
|
|
|
|
*
|
|
|
|
* Make sure that we don't hold the user lock.
|
|
|
|
*/
|
|
|
|
void USER_CheckNotLock(void)
|
|
|
|
{
|
|
|
|
_CheckNotSysLevel( &USER_SysLevel );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-08 15:12:09 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* UserSelectPalette (Not a Windows API)
|
|
|
|
*/
|
|
|
|
static HPALETTE WINAPI UserSelectPalette( HDC hDC, HPALETTE hPal, BOOL bForceBackground )
|
|
|
|
{
|
|
|
|
WORD wBkgPalette = 1;
|
|
|
|
|
|
|
|
if (!bForceBackground && (hPal != GetStockObject(DEFAULT_PALETTE)))
|
|
|
|
{
|
|
|
|
HWND hwnd = WindowFromDC( hDC );
|
|
|
|
if (hwnd)
|
|
|
|
{
|
|
|
|
HWND hForeground = GetForegroundWindow();
|
|
|
|
/* set primary palette if it's related to current active */
|
|
|
|
if (hForeground == hwnd || IsChild(hForeground,hwnd))
|
|
|
|
{
|
|
|
|
wBkgPalette = 0;
|
|
|
|
hPrimaryPalette = hPal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pfnGDISelectPalette( hDC, hPal, wBkgPalette);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* UserRealizePalette (USER32.@)
|
|
|
|
*/
|
|
|
|
UINT WINAPI UserRealizePalette( HDC hDC )
|
|
|
|
{
|
|
|
|
UINT realized = pfnGDIRealizePalette( hDC );
|
|
|
|
|
|
|
|
/* do not send anything if no colors were changed */
|
|
|
|
if (realized && GetCurrentObject( hDC, OBJ_PAL ) == hPrimaryPalette)
|
|
|
|
{
|
|
|
|
/* send palette change notification */
|
|
|
|
HWND hWnd = WindowFromDC( hDC );
|
|
|
|
if (hWnd) SendMessageTimeoutW( HWND_BROADCAST, WM_PALETTECHANGED, (WPARAM)hWnd, 0,
|
|
|
|
SMTO_ABORTIFHUNG, 2000, NULL );
|
|
|
|
}
|
|
|
|
return realized;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-16 22:57:39 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* palette_init
|
|
|
|
*
|
|
|
|
* Patch the function pointers in GDI for SelectPalette and RealizePalette
|
|
|
|
*/
|
|
|
|
static void palette_init(void)
|
|
|
|
{
|
|
|
|
void **ptr;
|
|
|
|
HMODULE module = GetModuleHandleA( "gdi32" );
|
|
|
|
if (!module)
|
|
|
|
{
|
|
|
|
ERR( "cannot get GDI32 handle\n" );
|
|
|
|
return;
|
|
|
|
}
|
2002-10-18 06:05:49 +02:00
|
|
|
if ((ptr = (void**)GetProcAddress( module, "pfnSelectPalette" )))
|
2004-12-08 15:12:09 +01:00
|
|
|
pfnGDISelectPalette = InterlockedExchangePointer( ptr, UserSelectPalette );
|
2000-09-16 22:57:39 +02:00
|
|
|
else ERR( "cannot find pfnSelectPalette in GDI32\n" );
|
2002-10-18 06:05:49 +02:00
|
|
|
if ((ptr = (void**)GetProcAddress( module, "pfnRealizePalette" )))
|
|
|
|
pfnGDIRealizePalette = InterlockedExchangePointer( ptr, UserRealizePalette );
|
2000-09-16 22:57:39 +02:00
|
|
|
else ERR( "cannot find pfnRealizePalette in GDI32\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-19 13:08:09 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* USER initialisation routine
|
|
|
|
*/
|
2004-02-12 01:35:01 +01:00
|
|
|
static BOOL process_attach(void)
|
2000-03-19 13:08:09 +01:00
|
|
|
{
|
2000-05-07 20:41:15 +02:00
|
|
|
HINSTANCE16 instance;
|
2000-03-19 13:08:09 +01:00
|
|
|
|
|
|
|
/* Create USER heap */
|
2002-10-02 04:36:20 +02:00
|
|
|
if ((instance = LoadLibrary16( "USER.EXE" )) >= 32) USER_HeapSel = instance | 7;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
USER_HeapSel = GlobalAlloc16( GMEM_FIXED, 65536 );
|
|
|
|
LocalInit16( USER_HeapSel, 32, 65534 );
|
|
|
|
}
|
2000-03-19 13:08:09 +01:00
|
|
|
|
2004-04-22 00:30:08 +02:00
|
|
|
/* some Win9x dlls expect keyboard to be loaded */
|
|
|
|
if (GetVersion() & 0x80000000) LoadLibrary16( "keyboard.drv" );
|
|
|
|
|
2002-05-20 20:01:44 +02:00
|
|
|
/* Initialize system colors and metrics */
|
2004-12-09 14:48:56 +01:00
|
|
|
SYSPARAMS_Init();
|
2000-03-19 13:08:09 +01:00
|
|
|
|
2000-09-16 22:57:39 +02:00
|
|
|
/* Setup palette function pointers */
|
|
|
|
palette_init();
|
|
|
|
|
2000-03-19 13:08:09 +01:00
|
|
|
/* Initialize built-in window classes */
|
2004-02-12 01:35:01 +01:00
|
|
|
CLASS_RegisterBuiltinClasses();
|
2000-03-19 13:08:09 +01:00
|
|
|
|
|
|
|
/* Initialize message spying */
|
|
|
|
if (!SPY_Init()) return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2001-05-16 21:52:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
2001-10-16 23:58:58 +02:00
|
|
|
* USER_IsExitingThread
|
|
|
|
*/
|
|
|
|
BOOL USER_IsExitingThread( DWORD tid )
|
|
|
|
{
|
|
|
|
return (tid == exiting_thread_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* thread_detach
|
2001-05-16 21:52:29 +02:00
|
|
|
*/
|
|
|
|
static void thread_detach(void)
|
|
|
|
{
|
2001-10-16 23:58:58 +02:00
|
|
|
exiting_thread_id = GetCurrentThreadId();
|
|
|
|
|
2001-08-10 00:07:22 +02:00
|
|
|
WDML_NotifyThreadDetach();
|
|
|
|
|
2002-10-29 22:32:37 +01:00
|
|
|
WIN_DestroyThreadWindows( GetDesktopWindow() );
|
2005-04-27 10:18:20 +02:00
|
|
|
CloseHandle( get_user_thread_info()->server_queue );
|
2001-05-16 21:52:29 +02:00
|
|
|
|
2001-10-16 23:58:58 +02:00
|
|
|
exiting_thread_id = 0;
|
2001-05-16 21:52:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-10-08 22:42:14 +02:00
|
|
|
* UserClientDllInitialize (USER32.@)
|
|
|
|
*
|
2003-10-10 06:30:54 +02:00
|
|
|
* USER dll initialisation routine (exported as UserClientDllInitialize for compatibility).
|
2001-05-16 21:52:29 +02:00
|
|
|
*/
|
2003-10-10 06:30:54 +02:00
|
|
|
BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
|
2001-05-16 21:52:29 +02:00
|
|
|
{
|
|
|
|
BOOL ret = TRUE;
|
|
|
|
switch(reason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
2004-02-12 01:35:01 +01:00
|
|
|
user32_module = inst;
|
|
|
|
ret = process_attach();
|
2001-05-16 21:52:29 +02:00
|
|
|
break;
|
|
|
|
case DLL_THREAD_DETACH:
|
|
|
|
thread_detach();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2005-05-25 20:42:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* USER_GetProcessHandleList(Internal)
|
|
|
|
*/
|
|
|
|
static HANDLE *USER_GetProcessHandleList(void)
|
|
|
|
{
|
|
|
|
DWORD count, i, n;
|
|
|
|
HANDLE *list;
|
|
|
|
PROCESSENTRY32 pe;
|
|
|
|
HANDLE hSnapshot;
|
|
|
|
BOOL r;
|
|
|
|
|
|
|
|
hSnapshot = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 );
|
|
|
|
if (!hSnapshot)
|
|
|
|
{
|
|
|
|
ERR("cannot create snapshot\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* count the number of processes plus one */
|
|
|
|
for (count=0; ;count++)
|
|
|
|
{
|
|
|
|
pe.dwSize = sizeof pe;
|
|
|
|
if (count)
|
|
|
|
r = Process32Next( hSnapshot, &pe );
|
|
|
|
else
|
|
|
|
r = Process32First( hSnapshot, &pe );
|
|
|
|
if (!r)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate memory make a list of the process handles */
|
|
|
|
list = HeapAlloc( GetProcessHeap(), 0, (count+1)*sizeof(HANDLE) );
|
|
|
|
n=0;
|
|
|
|
for (i=0; i<count; i++)
|
|
|
|
{
|
|
|
|
pe.dwSize = sizeof pe;
|
|
|
|
if (i)
|
|
|
|
r = Process32Next( hSnapshot, &pe );
|
|
|
|
else
|
|
|
|
r = Process32First( hSnapshot, &pe );
|
|
|
|
if (!r)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* don't kill ourselves */
|
|
|
|
if (GetCurrentProcessId() == pe.th32ProcessID )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* open the process so we don't can track it */
|
|
|
|
list[n] = OpenProcess( PROCESS_QUERY_INFORMATION|
|
|
|
|
PROCESS_TERMINATE,
|
|
|
|
FALSE, pe.th32ProcessID );
|
|
|
|
|
|
|
|
/* check it didn't terminate already */
|
|
|
|
if( list[n] )
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
list[n]=0;
|
|
|
|
CloseHandle( hSnapshot );
|
|
|
|
|
|
|
|
if (!r)
|
|
|
|
ERR("Error enumerating processes\n");
|
|
|
|
|
|
|
|
TRACE("return %lu processes\n", n);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* USER_KillProcesses (Internal)
|
|
|
|
*/
|
|
|
|
static DWORD USER_KillProcesses(void)
|
|
|
|
{
|
|
|
|
DWORD n, r, i;
|
|
|
|
HANDLE *handles;
|
|
|
|
const DWORD dwShutdownTimeout = 10000;
|
|
|
|
|
|
|
|
TRACE("terminating other processes\n");
|
|
|
|
|
|
|
|
/* kill it and add it to our list of object to wait on */
|
|
|
|
handles = USER_GetProcessHandleList();
|
|
|
|
for (n=0; handles && handles[n]; n++)
|
|
|
|
TerminateProcess( handles[n], 0 );
|
|
|
|
|
|
|
|
/* wait for processes to exit */
|
|
|
|
for (i=0; i<n; i+=MAXIMUM_WAIT_OBJECTS)
|
|
|
|
{
|
|
|
|
int n_objs = ((n-i)>MAXIMUM_WAIT_OBJECTS) ? MAXIMUM_WAIT_OBJECTS : (n-i);
|
|
|
|
r = WaitForMultipleObjects( n_objs, &handles[i], TRUE, dwShutdownTimeout );
|
|
|
|
if (r==WAIT_TIMEOUT)
|
|
|
|
ERR("wait failed!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* close the handles */
|
|
|
|
for (i=0; i<n; i++)
|
|
|
|
CloseHandle( handles[i] );
|
|
|
|
|
|
|
|
HeapFree( GetProcessHeap(), 0, handles );
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* USER_DoShutdown (Internal)
|
|
|
|
*/
|
|
|
|
static void USER_DoShutdown(void)
|
|
|
|
{
|
|
|
|
DWORD i, n;
|
|
|
|
const DWORD nRetries = 10;
|
|
|
|
|
|
|
|
for (i=0; i<nRetries; i++)
|
|
|
|
{
|
|
|
|
n = USER_KillProcesses();
|
|
|
|
TRACE("Killed %ld processes, attempt %ld\n", n, i);
|
|
|
|
if(!n)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ExitWindowsEx (USER32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reserved )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
BOOL result = FALSE;
|
|
|
|
HWND *list, *phwnd;
|
|
|
|
|
|
|
|
/* We have to build a list of all windows first, as in EnumWindows */
|
|
|
|
TRACE("(%x,%lx)\n", flags, reserved);
|
|
|
|
|
|
|
|
list = WIN_ListChildren( GetDesktopWindow() );
|
|
|
|
if (list)
|
|
|
|
{
|
|
|
|
/* Send a WM_QUERYENDSESSION message to every window */
|
|
|
|
|
|
|
|
for (i = 0; list[i]; i++)
|
|
|
|
{
|
|
|
|
/* Make sure that the window still exists */
|
|
|
|
if (!IsWindow( list[i] )) continue;
|
|
|
|
if (!SendMessageW( list[i], WM_QUERYENDSESSION, 0, 0 )) break;
|
|
|
|
}
|
|
|
|
result = !list[i];
|
|
|
|
|
|
|
|
/* Now notify all windows that got a WM_QUERYENDSESSION of the result */
|
|
|
|
|
|
|
|
for (phwnd = list; i > 0; i--, phwnd++)
|
|
|
|
{
|
|
|
|
if (!IsWindow( *phwnd )) continue;
|
|
|
|
SendMessageW( *phwnd, WM_ENDSESSION, result, 0 );
|
|
|
|
}
|
|
|
|
HeapFree( GetProcessHeap(), 0, list );
|
|
|
|
|
|
|
|
if ( !(result || (flags & EWX_FORCE) ))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* USER_DoShutdown will kill all processes except the current process */
|
|
|
|
USER_DoShutdown();
|
|
|
|
|
|
|
|
if (flags & EWX_REBOOT)
|
|
|
|
{
|
|
|
|
WCHAR winebootW[] = { 'w','i','n','e','b','o','o','t',0 };
|
|
|
|
PROCESS_INFORMATION pi;
|
|
|
|
STARTUPINFOW si;
|
|
|
|
|
|
|
|
memset( &si, 0, sizeof si );
|
|
|
|
si.cb = sizeof si;
|
|
|
|
if (CreateProcessW( NULL, winebootW, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi ))
|
|
|
|
{
|
|
|
|
CloseHandle( pi.hProcess );
|
|
|
|
CloseHandle( pi.hThread );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
MESSAGE("wine: Failed to start wineboot\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result) ExitProcess(0);
|
|
|
|
return TRUE;
|
|
|
|
}
|