VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/win/VBoxSupLib-win.cpp@ 54288

Last change on this file since 54288 was 52940, checked in by vboxsync, 10 years ago

Eliminating some more kernel32.dll dependencies, marking APIs we like to use early as OK.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: VBoxSupLib-win.cpp 52940 2014-10-03 18:40:54Z vboxsync $ */
2/** @file
3 * IPRT - VBoxSupLib.dll, Windows.
4 */
5
6/*
7 * Copyright (C) 2006-2012 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#include <iprt/nt/nt-and-windows.h>
32
33#include <iprt/path.h>
34
35
36/**
37 * The Dll main entry point.
38 * @remarks The dllexport is for forcing the linker to generate an import
39 * library, so the the build system doesn't get confused.
40 */
41extern "C" __declspec(dllexport)
42BOOL __stdcall DllMainEntrypoint(HANDLE hModule, DWORD dwReason, PVOID pvReserved)
43{
44 switch (dwReason)
45 {
46 /*
47 * Make sure the DLL isn't ever unloaded.
48 */
49 case DLL_PROCESS_ATTACH:
50 {
51 WCHAR wszName[RTPATH_MAX];
52 SetLastError(NO_ERROR);
53 if ( GetModuleFileNameW((HMODULE)hModule, wszName, RT_ELEMENTS(wszName)) > 0
54 && RtlGetLastWin32Error() == NO_ERROR)
55 {
56 int cExtraLoads = 2;
57 while (cExtraLoads-- > 0)
58 LoadLibraryW(wszName);
59 }
60 break;
61 }
62
63 case DLL_THREAD_ATTACH:
64 {
65#ifdef VBOX_WITH_HARDENING
66# ifndef VBOX_WITHOUT_DEBUGGER_CHECKS
67 /*
68 * Anti debugging hack that prevents most debug notifications from
69 * ending up in the debugger.
70 */
71 NTSTATUS rcNt = NtSetInformationThread(GetCurrentThread(), ThreadHideFromDebugger, NULL, 0);
72 if (!NT_SUCCESS(rcNt))
73 {
74 __debugbreak();
75 return FALSE;
76 }
77# endif
78#endif
79 break;
80 }
81
82 case DLL_THREAD_DETACH:
83 /* Nothing to do. */
84 break;
85
86 case DLL_PROCESS_DETACH:
87 /* Nothing to do. */
88 break;
89
90 default:
91 /* ignore */
92 break;
93 }
94 return TRUE;
95}
96
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette