Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
cpython/Modules/expat/loadlibrary.c at pythoncapi · pythoncapi/cpython · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
pythoncapi
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
pythoncapi
Breadcrumbs
cpython
/
Modules
/
expat
/
loadlibrary.c
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
143 lines (123 loc) · 5.14 KB
pythoncapi
Breadcrumbs
cpython
/
Modules
/
expat
/
loadlibrary.c
Copy path
Top
File metadata and controls
Code
Blame
143 lines (123 loc) · 5.14 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 2016 - 2017, Steve Holme, <steve_holme@hotmail.com>.
* Copyright (C) 2017, Expat development team
*
* All rights reserved.
* Licensed under the MIT license:
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
* THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* Except as contained in this notice, the name of a copyright holder shall
* not be used in advertising or otherwise to promote the sale, use or other
* dealings in this Software without prior written authorization of the
* copyright holder.
*
***************************************************************************/
#if
defined(
_WIN32
)
#include
<windows.h>
#include
<tchar.h>
HMODULE
_Expat_LoadLibrary
(
LPCTSTR
filename
);
#if
!defined(
LOAD_WITH_ALTERED_SEARCH_PATH
)
#define
LOAD_WITH_ALTERED_SEARCH_PATH
0x00000008
#endif
#if
!defined(
LOAD_LIBRARY_SEARCH_SYSTEM32
)
#define
LOAD_LIBRARY_SEARCH_SYSTEM32
0x00000800
#endif
/* We use our own typedef here since some headers might lack these */
typedef
HMODULE
(
APIENTRY
*
LOADLIBRARYEX_FN
)(
LPCTSTR
,
HANDLE
,
DWORD
);
/* See function definitions in winbase.h */
#ifdef
UNICODE
# ifdef
_WIN32_WCE
# define
LOADLIBARYEX
L"LoadLibraryExW"
# else
# define
LOADLIBARYEX
"LoadLibraryExW"
# endif
#else
# define
LOADLIBARYEX
"LoadLibraryExA"
#endif
/*
* _Expat_LoadLibrary()
*
* This is used to dynamically load DLLs using the most secure method available
* for the version of Windows that we are running on.
*
* Parameters:
*
* filename [in] - The filename or full path of the DLL to load. If only the
* filename is passed then the DLL will be loaded from the
* Windows system directory.
*
* Returns the handle of the module on success; otherwise NULL.
*/
HMODULE
_Expat_LoadLibrary
(
LPCTSTR
filename
)
{
HMODULE
hModule
=
NULL
;
LOADLIBRARYEX_FN
pLoadLibraryEx
=
NULL
;
/* Get a handle to kernel32 so we can access it's functions at runtime */
HMODULE
hKernel32
=
GetModuleHandle
(
TEXT
(
"kernel32"
));
if
(!
hKernel32
)
return
NULL
;
/* LCOV_EXCL_LINE */
/* Attempt to find LoadLibraryEx() which is only available on Windows 2000
and above */
pLoadLibraryEx
=
(
LOADLIBRARYEX_FN
)
GetProcAddress
(
hKernel32
,
LOADLIBARYEX
);
/* Detect if there's already a path in the filename and load the library if
there is. Note: Both back slashes and forward slashes have been supported
since the earlier days of DOS at an API level although they are not
supported by command prompt */
if
(
_tcspbrk
(
filename
,
TEXT
(
"\\/"
))) {
/** !checksrc! disable BANNEDFUNC 1 **/
hModule
=
pLoadLibraryEx
?
pLoadLibraryEx
(
filename
,
NULL
,
LOAD_WITH_ALTERED_SEARCH_PATH
) :
LoadLibrary
(
filename
);
}
/* Detect if KB2533623 is installed, as LOAD_LIBARY_SEARCH_SYSTEM32 is only
supported on Windows Vista, Windows Server 2008, Windows 7 and Windows
Server 2008 R2 with this patch or natively on Windows 8 and above */
else
if
(
pLoadLibraryEx
&&
GetProcAddress
(
hKernel32
,
"AddDllDirectory"
)) {
/* Load the DLL from the Windows system directory */
hModule
=
pLoadLibraryEx
(
filename
,
NULL
,
LOAD_LIBRARY_SEARCH_SYSTEM32
);
}
else
{
/* Attempt to get the Windows system path */
UINT
systemdirlen
=
GetSystemDirectory
(
NULL
,
0
);
if
(
systemdirlen
) {
/* Allocate space for the full DLL path (Room for the null terminator
is included in systemdirlen) */
size_t
filenamelen
=
_tcslen
(
filename
);
TCHAR
*
path
=
malloc
(
sizeof
(
TCHAR
)
*
(
systemdirlen
+
1
+
filenamelen
));
if
(
path
&&
GetSystemDirectory
(
path
,
systemdirlen
)) {
/* Calculate the full DLL path */
_tcscpy
(
path
+
_tcslen
(
path
),
TEXT
(
"\\"
));
_tcscpy
(
path
+
_tcslen
(
path
),
filename
);
/* Load the DLL from the Windows system directory */
/** !checksrc! disable BANNEDFUNC 1 **/
hModule
=
pLoadLibraryEx
?
pLoadLibraryEx
(
path
,
NULL
,
LOAD_WITH_ALTERED_SEARCH_PATH
) :
LoadLibrary
(
path
);
}
free
(
path
);
}
}
return
hModule
;
}
#else
/* defined(_WIN32) */
/* ISO C requires a translation unit to contain at least one declaration
[-Wempty-translation-unit] */
typedef
int
_TRANSLATION_UNIT_LOAD_LIBRARY_C_NOT_EMTPY
;
#endif
/* defined(_WIN32) */
You can’t perform that action at this time.