blob: 751790da2b12962ac2a9b1d7614d036a00bd4198 [file] [log] [blame]
Guido van Rossum22a1d361999-12-20 21:18:49 +00001
2/* Support for dynamic loading of extension modules */
3
Christian Heimes123d5c92008-01-04 03:15:05 +00004#include "Python.h"
5
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +00006#ifdef HAVE_DIRECT_H
Guido van Rossum22a1d361999-12-20 21:18:49 +00007#include <direct.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +00008#endif
Mark Hammond1f7838b2000-10-05 10:54:45 +00009#include <ctype.h>
Guido van Rossum22a1d361999-12-20 21:18:49 +000010
Guido van Rossum22a1d361999-12-20 21:18:49 +000011#include "importdl.h"
Kristján Valur Jónsson629ec262007-05-26 19:31:39 +000012#include <windows.h>
Guido van Rossum22a1d361999-12-20 21:18:49 +000013
14const struct filedescr _PyImport_DynLoadFiletab[] = {
15#ifdef _DEBUG
16 {"_d.pyd", "rb", C_EXTENSION},
Guido van Rossum22a1d361999-12-20 21:18:49 +000017#else
18 {".pyd", "rb", C_EXTENSION},
Guido van Rossum22a1d361999-12-20 21:18:49 +000019#endif
20 {0, 0}
21};
22
23
Mark Hammond1f7838b2000-10-05 10:54:45 +000024/* Case insensitive string compare, to avoid any dependencies on particular
25 C RTL implementations */
26
27static int strcasecmp (char *string1, char *string2)
28{
29 int first, second;
30
31 do {
32 first = tolower(*string1);
33 second = tolower(*string2);
34 string1++;
35 string2++;
36 } while (first && first == second);
37
38 return (first - second);
39}
40
41
42/* Function to return the name of the "python" DLL that the supplied module
43 directly imports. Looks through the list of imported modules and
44 returns the first entry that starts with "python" (case sensitive) and
45 is followed by nothing but numbers until the separator (period).
46
47 Returns a pointer to the import name, or NULL if no matching name was
48 located.
49
50 This function parses through the PE header for the module as loaded in
51 memory by the system loader. The PE header is accessed as documented by
52 Microsoft in the MSDN PE and COFF specification (2/99), and handles
53 both PE32 and PE32+. It only worries about the direct import table and
54 not the delay load import table since it's unlikely an extension is
55 going to be delay loading Python (after all, it's already loaded).
56
57 If any magic values are not found (e.g., the PE header or optional
58 header magic), then this function simply returns NULL. */
59
60#define DWORD_AT(mem) (*(DWORD *)(mem))
61#define WORD_AT(mem) (*(WORD *)(mem))
62
63static char *GetPythonImport (HINSTANCE hModule)
64{
65 unsigned char *dllbase, *import_data, *import_name;
66 DWORD pe_offset, opt_offset;
67 WORD opt_magic;
68 int num_dict_off, import_off;
69
70 /* Safety check input */
71 if (hModule == NULL) {
72 return NULL;
73 }
74
75 /* Module instance is also the base load address. First portion of
76 memory is the MS-DOS loader, which holds the offset to the PE
77 header (from the load base) at 0x3C */
78 dllbase = (unsigned char *)hModule;
79 pe_offset = DWORD_AT(dllbase + 0x3C);
80
81 /* The PE signature must be "PE\0\0" */
82 if (memcmp(dllbase+pe_offset,"PE\0\0",4)) {
83 return NULL;
84 }
85
86 /* Following the PE signature is the standard COFF header (20
87 bytes) and then the optional header. The optional header starts
88 with a magic value of 0x10B for PE32 or 0x20B for PE32+ (PE32+
89 uses 64-bits for some fields). It might also be 0x107 for a ROM
90 image, but we don't process that here.
91
92 The optional header ends with a data dictionary that directly
93 points to certain types of data, among them the import entries
94 (in the second table entry). Based on the header type, we
95 determine offsets for the data dictionary count and the entry
96 within the dictionary pointing to the imports. */
97
98 opt_offset = pe_offset + 4 + 20;
99 opt_magic = WORD_AT(dllbase+opt_offset);
100 if (opt_magic == 0x10B) {
101 /* PE32 */
102 num_dict_off = 92;
103 import_off = 104;
104 } else if (opt_magic == 0x20B) {
105 /* PE32+ */
106 num_dict_off = 108;
107 import_off = 120;
108 } else {
109 /* Unsupported */
110 return NULL;
111 }
112
113 /* Now if an import table exists, offset to it and walk the list of
114 imports. The import table is an array (ending when an entry has
115 empty values) of structures (20 bytes each), which contains (at
116 offset 12) a relative address (to the module base) at which a
117 string constant holding the import name is located. */
118
119 if (DWORD_AT(dllbase + opt_offset + num_dict_off) >= 2) {
Thomas Heller1df04612004-07-02 08:53:57 +0000120 /* We have at least 2 tables - the import table is the second
121 one. But still it may be that the table size is zero */
122 if (0 == DWORD_AT(dllbase + opt_offset + import_off + sizeof(DWORD)))
123 return NULL;
Mark Hammond1f7838b2000-10-05 10:54:45 +0000124 import_data = dllbase + DWORD_AT(dllbase +
125 opt_offset +
126 import_off);
127 while (DWORD_AT(import_data)) {
128 import_name = dllbase + DWORD_AT(import_data+12);
129 if (strlen(import_name) >= 6 &&
130 !strncmp(import_name,"python",6)) {
131 char *pch;
132
133 /* Ensure python prefix is followed only
134 by numbers to the end of the basename */
135 pch = import_name + 6;
Thomas Heller1df04612004-07-02 08:53:57 +0000136#ifdef _DEBUG
137 while (*pch && pch[0] != '_' && pch[1] != 'd' && pch[2] != '.') {
138#else
Mark Hammond1f7838b2000-10-05 10:54:45 +0000139 while (*pch && *pch != '.') {
Thomas Heller1df04612004-07-02 08:53:57 +0000140#endif
Mark Hammond1f7838b2000-10-05 10:54:45 +0000141 if (*pch >= '0' && *pch <= '9') {
142 pch++;
143 } else {
144 pch = NULL;
145 break;
146 }
147 }
148
149 if (pch) {
150 /* Found it - return the name */
151 return import_name;
152 }
153 }
154 import_data += 20;
155 }
156 }
157
158 return NULL;
159}
Mark Hammond1f7838b2000-10-05 10:54:45 +0000160
161
Guido van Rossum96a8fb71999-12-22 14:09:35 +0000162dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
Guido van Rossum22a1d361999-12-20 21:18:49 +0000163 const char *pathname, FILE *fp)
164{
165 dl_funcptr p;
Mark Hammond1f7838b2000-10-05 10:54:45 +0000166 char funcname[258], *import_python;
Guido van Rossum96a8fb71999-12-22 14:09:35 +0000167
Jeremy Hylton518ab1c2001-11-28 20:42:20 +0000168 PyOS_snprintf(funcname, sizeof(funcname), "init%.200s", shortname);
Guido van Rossum22a1d361999-12-20 21:18:49 +0000169
Guido van Rossum22a1d361999-12-20 21:18:49 +0000170 {
Mark Hammondfb1f68e2001-05-09 00:50:59 +0000171 HINSTANCE hDLL = NULL;
Guido van Rossum22a1d361999-12-20 21:18:49 +0000172 char pathbuf[260];
Mark Hammondfb1f68e2001-05-09 00:50:59 +0000173 LPTSTR dummy;
174 /* We use LoadLibraryEx so Windows looks for dependent DLLs
175 in directory of pathname first. However, Windows95
176 can sometimes not work correctly unless the absolute
177 path is used. If GetFullPathName() fails, the LoadLibrary
178 will certainly fail too, so use its error code */
179 if (GetFullPathName(pathname,
180 sizeof(pathbuf),
181 pathbuf,
182 &dummy))
183 /* XXX This call doesn't exist in Windows CE */
184 hDLL = LoadLibraryEx(pathname, NULL,
185 LOAD_WITH_ALTERED_SEARCH_PATH);
Guido van Rossum22a1d361999-12-20 21:18:49 +0000186 if (hDLL==NULL){
187 char errBuf[256];
188 unsigned int errorCode;
189
190 /* Get an error string from Win32 error code */
191 char theInfo[256]; /* Pointer to error text
192 from system */
193 int theLength; /* Length of error text */
194
195 errorCode = GetLastError();
196
197 theLength = FormatMessage(
Amaury Forgeot d'Arce0b76952008-01-04 02:04:15 +0000198 FORMAT_MESSAGE_FROM_SYSTEM |
199 FORMAT_MESSAGE_IGNORE_INSERTS, /* flags */
Guido van Rossum22a1d361999-12-20 21:18:49 +0000200 NULL, /* message source */
201 errorCode, /* the message (error) ID */
202 0, /* default language environment */
203 (LPTSTR) theInfo, /* the buffer */
204 sizeof(theInfo), /* the buffer size */
205 NULL); /* no additional format args. */
206
207 /* Problem: could not get the error message.
208 This should not happen if called correctly. */
209 if (theLength == 0) {
Jeremy Hylton518ab1c2001-11-28 20:42:20 +0000210 PyOS_snprintf(errBuf, sizeof(errBuf),
211 "DLL load failed with error code %d",
212 errorCode);
Guido van Rossum22a1d361999-12-20 21:18:49 +0000213 } else {
Guido van Rossum582acec2000-06-28 22:07:35 +0000214 size_t len;
Guido van Rossum22a1d361999-12-20 21:18:49 +0000215 /* For some reason a \r\n
216 is appended to the text */
217 if (theLength >= 2 &&
218 theInfo[theLength-2] == '\r' &&
219 theInfo[theLength-1] == '\n') {
220 theLength -= 2;
221 theInfo[theLength] = '\0';
222 }
223 strcpy(errBuf, "DLL load failed: ");
224 len = strlen(errBuf);
225 strncpy(errBuf+len, theInfo,
226 sizeof(errBuf)-len);
227 errBuf[sizeof(errBuf)-1] = '\0';
228 }
229 PyErr_SetString(PyExc_ImportError, errBuf);
Fred Drakee20131e2002-08-26 21:20:30 +0000230 return NULL;
Mark Hammond1f7838b2000-10-05 10:54:45 +0000231 } else {
232 char buffer[256];
233
Thomas Heller1df04612004-07-02 08:53:57 +0000234#ifdef _DEBUG
235 PyOS_snprintf(buffer, sizeof(buffer), "python%d%d_d.dll",
236#else
Jeremy Hylton518ab1c2001-11-28 20:42:20 +0000237 PyOS_snprintf(buffer, sizeof(buffer), "python%d%d.dll",
Thomas Heller1df04612004-07-02 08:53:57 +0000238#endif
Fred Drakee20131e2002-08-26 21:20:30 +0000239 PY_MAJOR_VERSION,PY_MINOR_VERSION);
Mark Hammond1f7838b2000-10-05 10:54:45 +0000240 import_python = GetPythonImport(hDLL);
241
242 if (import_python &&
243 strcasecmp(buffer,import_python)) {
Jeremy Hylton518ab1c2001-11-28 20:42:20 +0000244 PyOS_snprintf(buffer, sizeof(buffer),
245 "Module use of %.150s conflicts "
246 "with this version of Python.",
247 import_python);
Mark Hammond1f7838b2000-10-05 10:54:45 +0000248 PyErr_SetString(PyExc_ImportError,buffer);
249 FreeLibrary(hDLL);
250 return NULL;
251 }
Guido van Rossum22a1d361999-12-20 21:18:49 +0000252 }
253 p = GetProcAddress(hDLL, funcname);
254 }
Guido van Rossum22a1d361999-12-20 21:18:49 +0000255
256 return p;
257}