blob: d5472ef9d56c38337e96af69f083613e70cadd52 [file] [log] [blame]
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001/*
Thomas Hellerd1d92ea2004-07-14 15:17:04 +00002 IMPORTANT NOTE: IF THIS FILE IS CHANGED, WININST-6.EXE MUST BE RECOMPILED
3 WITH THE MSVC6 WININST.DSW WORKSPACE FILE MANUALLY, AND WININST-7.1.EXE MUST
4 BE RECOMPILED WITH THE MSVC 2003.NET WININST-7.1.VCPROJ FILE MANUALLY.
5
6 IF CHANGES TO THIS FILE ARE CHECKED INTO PYTHON CVS, THE RECOMPILED BINARIES
7 MUST BE CHECKED IN AS WELL!
8*/
9
10/*
Thomas Hellerbb4b7d22002-11-22 20:39:33 +000011 * Written by Thomas Heller, May 2000
12 *
13 * $Id$
14 */
15
16/*
17 * Windows Installer program for distutils.
18 *
19 * (a kind of self-extracting zip-file)
20 *
21 * At runtime, the exefile has appended:
22 * - compressed setup-data in ini-format, containing the following sections:
Antoine Pitrouc83ea132010-05-09 14:46:46 +000023 * [metadata]
24 * author=Greg Ward
25 * author_email=gward@python.net
26 * description=Python Distribution Utilities
27 * licence=Python
28 * name=Distutils
29 * url=http://www.python.org/sigs/distutils-sig/
30 * version=0.9pre
Thomas Hellerbb4b7d22002-11-22 20:39:33 +000031 *
Antoine Pitrouc83ea132010-05-09 14:46:46 +000032 * [Setup]
33 * info= text to be displayed in the edit-box
34 * title= to be displayed by this program
35 * target_version = if present, python version required
36 * pyc_compile = if 0, do not compile py to pyc
37 * pyo_compile = if 0, do not compile py to pyo
Thomas Hellerbb4b7d22002-11-22 20:39:33 +000038 *
39 * - a struct meta_data_hdr, describing the above
40 * - a zip-file, containing the modules to be installed.
41 * for the format see http://www.pkware.com/appnote.html
42 *
43 * What does this program do?
44 * - the setup-data is uncompressed and written to a temporary file.
45 * - setup-data is queried with GetPrivateProfile... calls
46 * - [metadata] - info is displayed in the dialog box
47 * - The registry is searched for installations of python
48 * - The user can select the python version to use.
49 * - The python-installation directory (sys.prefix) is displayed
50 * - When the start-button is pressed, files from the zip-archive
51 * are extracted to the file system. All .py filenames are stored
52 * in a list.
53 */
54/*
55 * Includes now an uninstaller.
56 */
57
58/*
59 * To Do:
60 *
61 * display some explanation when no python version is found
62 * instead showing the user an empty listbox to select something from.
63 *
64 * Finish the code so that we can use other python installations
65 * additionaly to those found in the registry,
66 * and then #define USE_OTHER_PYTHON_VERSIONS
67 *
68 * - install a help-button, which will display something meaningful
69 * to the poor user.
70 * text to the user
71 * - should there be a possibility to display a README file
72 * before starting the installation (if one is present in the archive)
73 * - more comments about what the code does(?)
74 *
75 * - evolve this into a full blown installer (???)
76 */
77
78#include <windows.h>
79#include <commctrl.h>
80#include <imagehlp.h>
81#include <objbase.h>
82#include <shlobj.h>
83#include <objidl.h>
84#include "resource.h"
85
86#include <stdio.h>
87#include <stdlib.h>
88#include <stdarg.h>
89#include <string.h>
90#include <time.h>
Thomas Heller9f2e3be2005-02-03 20:35:10 +000091#include <sys/types.h>
92#include <sys/stat.h>
93#include <malloc.h>
94#include <io.h>
95#include <fcntl.h>
Thomas Hellerbb4b7d22002-11-22 20:39:33 +000096
97#include "archive.h"
98
99/* Only for debugging!
100 static int dprintf(char *fmt, ...)
101 {
102 char Buffer[4096];
103 va_list marker;
104 int result;
105
106 va_start(marker, fmt);
107 result = wvsprintf(Buffer, fmt, marker);
108 OutputDebugString(Buffer);
109 return result;
110 }
111*/
112
113/* Bah: global variables */
114FILE *logfile;
115
116char modulename[MAX_PATH];
117
118HWND hwndMain;
119HWND hDialog;
120
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000121char *ini_file; /* Full pathname of ini-file */
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000122/* From ini-file */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000123char info[4096]; /* [Setup] info= */
124char title[80]; /* [Setup] title=, contains package name
125 including version: "Distutils-1.0.1" */
126char target_version[10]; /* [Setup] target_version=, required python
127 version or empty string */
128char build_info[80]; /* [Setup] build_info=, distutils version
129 and build date */
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000130
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000131char meta_name[80]; /* package name without version like
132 'Distutils' */
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000133char install_script[MAX_PATH];
Thomas Hellera19cdad2004-02-20 14:43:21 +0000134char *pre_install_script; /* run before we install a single file */
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000135
Mark Hammond7c5c8e62008-05-02 12:48:15 +0000136char user_access_control[10]; // one of 'auto', 'force', otherwise none.
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000137
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000138int py_major, py_minor; /* Python version selected for installation */
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000139
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000140char *arc_data; /* memory mapped archive */
141DWORD arc_size; /* number of bytes in archive */
142int exe_size; /* number of bytes for exe-file portion */
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000143char python_dir[MAX_PATH];
144char pythondll[MAX_PATH];
145BOOL pyc_compile, pyo_compile;
Mark Hammondf9bfdd82004-07-02 23:53:16 +0000146/* Either HKLM or HKCU, depending on where Python itself is registered, and
147 the permissions of the current user. */
148HKEY hkey_root = (HKEY)-1;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000149
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000150BOOL success; /* Installation successfull? */
Thomas Hellera19cdad2004-02-20 14:43:21 +0000151char *failure_reason = NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000152
153HANDLE hBitmap;
154char *bitmap_bytes;
155
156
157#define WM_NUMFILES WM_USER+1
158/* wParam: 0, lParam: total number of files */
159#define WM_NEXTFILE WM_USER+2
160/* wParam: number of this file */
161/* lParam: points to pathname */
162
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000163static BOOL notify(int code, char *fmt, ...);
164
165/* Note: If scheme.prefix is nonempty, it must end with a '\'! */
166/* Note: purelib must be the FIRST entry! */
167SCHEME old_scheme[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000168 { "PURELIB", "" },
169 { "PLATLIB", "" },
170 { "HEADERS", "" }, /* 'Include/dist_name' part already in archive */
171 { "SCRIPTS", "Scripts\\" },
172 { "DATA", "" },
173 { NULL, NULL },
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000174};
175
176SCHEME new_scheme[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000177 { "PURELIB", "Lib\\site-packages\\" },
178 { "PLATLIB", "Lib\\site-packages\\" },
179 { "HEADERS", "" }, /* 'Include/dist_name' part already in archive */
180 { "SCRIPTS", "Scripts\\" },
181 { "DATA", "" },
182 { NULL, NULL },
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000183};
184
185static void unescape(char *dst, char *src, unsigned size)
186{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000187 char *eon;
188 char ch;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000189
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000190 while (src && *src && (size > 2)) {
191 if (*src == '\\') {
192 switch (*++src) {
193 case 'n':
194 ++src;
195 *dst++ = '\r';
196 *dst++ = '\n';
197 size -= 2;
198 break;
199 case 'r':
200 ++src;
201 *dst++ = '\r';
202 --size;
203 break;
204 case '0': case '1': case '2': case '3':
205 ch = (char)strtol(src, &eon, 8);
206 if (ch == '\n') {
207 *dst++ = '\r';
208 --size;
209 }
210 *dst++ = ch;
211 --size;
212 src = eon;
213 }
214 } else {
215 *dst++ = *src++;
216 --size;
217 }
218 }
219 *dst = '\0';
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000220}
221
222static struct tagFile {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000223 char *path;
224 struct tagFile *next;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000225} *file_list = NULL;
226
Thomas Hellera19cdad2004-02-20 14:43:21 +0000227static void set_failure_reason(char *reason)
228{
229 if (failure_reason)
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000230 free(failure_reason);
Thomas Hellera19cdad2004-02-20 14:43:21 +0000231 failure_reason = strdup(reason);
232 success = FALSE;
233}
234static char *get_failure_reason()
235{
236 if (!failure_reason)
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000237 return "Installation failed.";
Thomas Hellera19cdad2004-02-20 14:43:21 +0000238 return failure_reason;
239}
240
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000241static void add_to_filelist(char *path)
242{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000243 struct tagFile *p;
244 p = (struct tagFile *)malloc(sizeof(struct tagFile));
245 p->path = strdup(path);
246 p->next = file_list;
247 file_list = p;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000248}
249
250static int do_compile_files(int (__cdecl * PyRun_SimpleString)(char *),
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000251 int optimize)
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000252{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000253 struct tagFile *p;
254 int total, n;
255 char Buffer[MAX_PATH + 64];
256 int errors = 0;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000257
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000258 total = 0;
259 p = file_list;
260 while (p) {
261 ++total;
262 p = p->next;
263 }
264 SendDlgItemMessage(hDialog, IDC_PROGRESS, PBM_SETRANGE, 0,
265 MAKELPARAM(0, total));
266 SendDlgItemMessage(hDialog, IDC_PROGRESS, PBM_SETPOS, 0, 0);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000267
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000268 n = 0;
269 p = file_list;
270 while (p) {
271 ++n;
272 wsprintf(Buffer,
273 "import py_compile; py_compile.compile (r'%s')",
274 p->path);
275 if (PyRun_SimpleString(Buffer)) {
276 ++errors;
277 }
278 /* We send the notification even if the files could not
279 * be created so that the uninstaller will remove them
280 * in case they are created later.
281 */
282 wsprintf(Buffer, "%s%c", p->path, optimize ? 'o' : 'c');
283 notify(FILE_CREATED, Buffer);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000284
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000285 SendDlgItemMessage(hDialog, IDC_PROGRESS, PBM_SETPOS, n, 0);
286 SetDlgItemText(hDialog, IDC_INFO, p->path);
287 p = p->next;
288 }
289 return errors;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000290}
291
292#define DECLPROC(dll, result, name, args)\
293 typedef result (*__PROC__##name) args;\
294 result (*name)args = (__PROC__##name)GetProcAddress(dll, #name)
295
296
297#define DECLVAR(dll, type, name)\
298 type *name = (type*)GetProcAddress(dll, #name)
299
300typedef void PyObject;
301
302
303/*
304 * Returns number of files which failed to compile,
305 * -1 if python could not be loaded at all
306 */
307static int compile_filelist(HINSTANCE hPython, BOOL optimize_flag)
308{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000309 DECLPROC(hPython, void, Py_Initialize, (void));
310 DECLPROC(hPython, void, Py_SetProgramName, (char *));
311 DECLPROC(hPython, void, Py_Finalize, (void));
312 DECLPROC(hPython, int, PyRun_SimpleString, (char *));
313 DECLPROC(hPython, PyObject *, PySys_GetObject, (char *));
314 DECLVAR(hPython, int, Py_OptimizeFlag);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000315
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000316 int errors = 0;
317 struct tagFile *p = file_list;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000318
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000319 if (!p)
320 return 0;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000321
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000322 if (!Py_Initialize || !Py_SetProgramName || !Py_Finalize)
323 return -1;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000324
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000325 if (!PyRun_SimpleString || !PySys_GetObject || !Py_OptimizeFlag)
326 return -1;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000327
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000328 *Py_OptimizeFlag = optimize_flag ? 1 : 0;
329 Py_SetProgramName(modulename);
330 Py_Initialize();
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000331
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000332 errors += do_compile_files(PyRun_SimpleString, optimize_flag);
333 Py_Finalize();
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000334
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000335 return errors;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000336}
337
338typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
339
340struct PyMethodDef {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000341 char *ml_name;
342 PyCFunction ml_meth;
343 int ml_flags;
344 char *ml_doc;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000345};
346typedef struct PyMethodDef PyMethodDef;
347
Mark Hammond7c5c8e62008-05-02 12:48:15 +0000348// XXX - all of these are potentially fragile! We load and unload
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000349// the Python DLL multiple times - so storing functions pointers
Mark Hammond7c5c8e62008-05-02 12:48:15 +0000350// is dangerous (although things *look* OK at present)
351// Better might be to roll prepare_script_environment() into
352// LoadPythonDll(), and create a new UnloadPythonDLL() which also
353// clears the global pointers.
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000354void *(*g_Py_BuildValue)(char *, ...);
355int (*g_PyArg_ParseTuple)(PyObject *, char *, ...);
Mark Hammond7c5c8e62008-05-02 12:48:15 +0000356PyObject * (*g_PyLong_FromVoidPtr)(void *);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000357
358PyObject *g_PyExc_ValueError;
359PyObject *g_PyExc_OSError;
360
361PyObject *(*g_PyErr_Format)(PyObject *, char *, ...);
362
363#define DEF_CSIDL(name) { name, #name }
364
365struct {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000366 int nFolder;
367 char *name;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000368} csidl_names[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000369 /* Startup menu for all users.
370 NT only */
371 DEF_CSIDL(CSIDL_COMMON_STARTMENU),
372 /* Startup menu. */
373 DEF_CSIDL(CSIDL_STARTMENU),
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000374
375/* DEF_CSIDL(CSIDL_COMMON_APPDATA), */
376/* DEF_CSIDL(CSIDL_LOCAL_APPDATA), */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000377 /* Repository for application-specific data.
378 Needs Internet Explorer 4.0 */
379 DEF_CSIDL(CSIDL_APPDATA),
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000380
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000381 /* The desktop for all users.
382 NT only */
383 DEF_CSIDL(CSIDL_COMMON_DESKTOPDIRECTORY),
384 /* The desktop. */
385 DEF_CSIDL(CSIDL_DESKTOPDIRECTORY),
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000386
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000387 /* Startup folder for all users.
388 NT only */
389 DEF_CSIDL(CSIDL_COMMON_STARTUP),
390 /* Startup folder. */
391 DEF_CSIDL(CSIDL_STARTUP),
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000392
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000393 /* Programs item in the start menu for all users.
394 NT only */
395 DEF_CSIDL(CSIDL_COMMON_PROGRAMS),
396 /* Program item in the user's start menu. */
397 DEF_CSIDL(CSIDL_PROGRAMS),
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000398
399/* DEF_CSIDL(CSIDL_PROGRAM_FILES_COMMON), */
400/* DEF_CSIDL(CSIDL_PROGRAM_FILES), */
401
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000402 /* Virtual folder containing fonts. */
403 DEF_CSIDL(CSIDL_FONTS),
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000404};
405
406#define DIM(a) (sizeof(a) / sizeof((a)[0]))
407
408static PyObject *FileCreated(PyObject *self, PyObject *args)
409{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000410 char *path;
411 if (!g_PyArg_ParseTuple(args, "s", &path))
412 return NULL;
413 notify(FILE_CREATED, path);
414 return g_Py_BuildValue("");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000415}
416
417static PyObject *DirectoryCreated(PyObject *self, PyObject *args)
418{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000419 char *path;
420 if (!g_PyArg_ParseTuple(args, "s", &path))
421 return NULL;
422 notify(DIR_CREATED, path);
423 return g_Py_BuildValue("");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000424}
425
426static PyObject *GetSpecialFolderPath(PyObject *self, PyObject *args)
427{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000428 char *name;
429 char lpszPath[MAX_PATH];
430 int i;
431 static HRESULT (WINAPI *My_SHGetSpecialFolderPath)(HWND hwnd,
432 LPTSTR lpszPath,
433 int nFolder,
434 BOOL fCreate);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000435
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000436 if (!My_SHGetSpecialFolderPath) {
437 HINSTANCE hLib = LoadLibrary("shell32.dll");
438 if (!hLib) {
439 g_PyErr_Format(g_PyExc_OSError,
440 "function not available");
441 return NULL;
442 }
443 My_SHGetSpecialFolderPath = (BOOL (WINAPI *)(HWND, LPTSTR,
444 int, BOOL))
445 GetProcAddress(hLib,
446 "SHGetSpecialFolderPathA");
447 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000448
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000449 if (!g_PyArg_ParseTuple(args, "s", &name))
450 return NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000451
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000452 if (!My_SHGetSpecialFolderPath) {
453 g_PyErr_Format(g_PyExc_OSError, "function not available");
454 return NULL;
455 }
456
457 for (i = 0; i < DIM(csidl_names); ++i) {
458 if (0 == strcmpi(csidl_names[i].name, name)) {
459 int nFolder;
460 nFolder = csidl_names[i].nFolder;
461 if (My_SHGetSpecialFolderPath(NULL, lpszPath,
462 nFolder, 0))
463 return g_Py_BuildValue("s", lpszPath);
464 else {
465 g_PyErr_Format(g_PyExc_OSError,
466 "no such folder (%s)", name);
467 return NULL;
468 }
469
470 }
471 };
472 g_PyErr_Format(g_PyExc_ValueError, "unknown CSIDL (%s)", name);
473 return NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000474}
475
476static PyObject *CreateShortcut(PyObject *self, PyObject *args)
477{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000478 char *path; /* path and filename */
479 char *description;
480 char *filename;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000481
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000482 char *arguments = NULL;
483 char *iconpath = NULL;
484 int iconindex = 0;
485 char *workdir = NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000486
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000487 WCHAR wszFilename[MAX_PATH];
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000488
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000489 IShellLink *ps1 = NULL;
490 IPersistFile *pPf = NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000491
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000492 HRESULT hr;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000493
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000494 hr = CoInitialize(NULL);
495 if (FAILED(hr)) {
496 g_PyErr_Format(g_PyExc_OSError,
497 "CoInitialize failed, error 0x%x", hr);
498 goto error;
499 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000500
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000501 if (!g_PyArg_ParseTuple(args, "sss|sssi",
502 &path, &description, &filename,
503 &arguments, &workdir, &iconpath, &iconindex))
504 return NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000505
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000506 hr = CoCreateInstance(&CLSID_ShellLink,
507 NULL,
508 CLSCTX_INPROC_SERVER,
509 &IID_IShellLink,
510 &ps1);
511 if (FAILED(hr)) {
512 g_PyErr_Format(g_PyExc_OSError,
513 "CoCreateInstance failed, error 0x%x", hr);
514 goto error;
515 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000516
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000517 hr = ps1->lpVtbl->QueryInterface(ps1, &IID_IPersistFile,
518 (void **)&pPf);
519 if (FAILED(hr)) {
520 g_PyErr_Format(g_PyExc_OSError,
521 "QueryInterface(IPersistFile) error 0x%x", hr);
522 goto error;
523 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000524
525
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000526 hr = ps1->lpVtbl->SetPath(ps1, path);
527 if (FAILED(hr)) {
528 g_PyErr_Format(g_PyExc_OSError,
529 "SetPath() failed, error 0x%x", hr);
530 goto error;
531 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000532
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000533 hr = ps1->lpVtbl->SetDescription(ps1, description);
534 if (FAILED(hr)) {
535 g_PyErr_Format(g_PyExc_OSError,
536 "SetDescription() failed, error 0x%x", hr);
537 goto error;
538 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000539
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000540 if (arguments) {
541 hr = ps1->lpVtbl->SetArguments(ps1, arguments);
542 if (FAILED(hr)) {
543 g_PyErr_Format(g_PyExc_OSError,
544 "SetArguments() error 0x%x", hr);
545 goto error;
546 }
547 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000548
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000549 if (iconpath) {
550 hr = ps1->lpVtbl->SetIconLocation(ps1, iconpath, iconindex);
551 if (FAILED(hr)) {
552 g_PyErr_Format(g_PyExc_OSError,
553 "SetIconLocation() error 0x%x", hr);
554 goto error;
555 }
556 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000557
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000558 if (workdir) {
559 hr = ps1->lpVtbl->SetWorkingDirectory(ps1, workdir);
560 if (FAILED(hr)) {
561 g_PyErr_Format(g_PyExc_OSError,
562 "SetWorkingDirectory() error 0x%x", hr);
563 goto error;
564 }
565 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000566
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000567 MultiByteToWideChar(CP_ACP, 0,
568 filename, -1,
569 wszFilename, MAX_PATH);
570
571 hr = pPf->lpVtbl->Save(pPf, wszFilename, TRUE);
572 if (FAILED(hr)) {
573 g_PyErr_Format(g_PyExc_OSError,
574 "Failed to create shortcut '%s' - error 0x%x", filename, hr);
575 goto error;
576 }
577
578 pPf->lpVtbl->Release(pPf);
579 ps1->lpVtbl->Release(ps1);
580 CoUninitialize();
581 return g_Py_BuildValue("");
582
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000583 error:
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000584 if (pPf)
585 pPf->lpVtbl->Release(pPf);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000586
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000587 if (ps1)
588 ps1->lpVtbl->Release(ps1);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000589
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000590 CoUninitialize();
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000591
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000592 return NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000593}
594
Thomas Hellera19cdad2004-02-20 14:43:21 +0000595static PyObject *PyMessageBox(PyObject *self, PyObject *args)
596{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000597 int rc;
598 char *text, *caption;
599 int flags;
600 if (!g_PyArg_ParseTuple(args, "ssi", &text, &caption, &flags))
601 return NULL;
602 rc = MessageBox(GetFocus(), text, caption, flags);
603 return g_Py_BuildValue("i", rc);
Thomas Hellera19cdad2004-02-20 14:43:21 +0000604}
605
Mark Hammondf9bfdd82004-07-02 23:53:16 +0000606static PyObject *GetRootHKey(PyObject *self)
607{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000608 return g_PyLong_FromVoidPtr(hkey_root);
Mark Hammondf9bfdd82004-07-02 23:53:16 +0000609}
610
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000611#define METH_VARARGS 0x0001
Mark Hammondf9bfdd82004-07-02 23:53:16 +0000612#define METH_NOARGS 0x0004
613typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000614
615PyMethodDef meth[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000616 {"create_shortcut", CreateShortcut, METH_VARARGS, NULL},
617 {"get_special_folder_path", GetSpecialFolderPath, METH_VARARGS, NULL},
618 {"get_root_hkey", (PyCFunction)GetRootHKey, METH_NOARGS, NULL},
619 {"file_created", FileCreated, METH_VARARGS, NULL},
620 {"directory_created", DirectoryCreated, METH_VARARGS, NULL},
621 {"message_box", PyMessageBox, METH_VARARGS, NULL},
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000622};
623
Thomas Heller48340392004-06-18 17:03:38 +0000624static HINSTANCE LoadPythonDll(char *fname)
625{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000626 char fullpath[_MAX_PATH];
627 LONG size = sizeof(fullpath);
628 char subkey_name[80];
629 char buffer[260 + 12];
630 HINSTANCE h;
Thomas Heller8abe7bf2005-02-03 20:11:28 +0000631
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000632 /* make sure PYTHONHOME is set, to that sys.path is initialized correctly */
633 wsprintf(buffer, "PYTHONHOME=%s", python_dir);
634 _putenv(buffer);
635 h = LoadLibrary(fname);
636 if (h)
637 return h;
638 wsprintf(subkey_name,
639 "SOFTWARE\\Python\\PythonCore\\%d.%d\\InstallPath",
640 py_major, py_minor);
641 if (ERROR_SUCCESS != RegQueryValue(HKEY_CURRENT_USER, subkey_name,
642 fullpath, &size) &&
643 ERROR_SUCCESS != RegQueryValue(HKEY_LOCAL_MACHINE, subkey_name,
644 fullpath, &size))
645 return NULL;
646 strcat(fullpath, "\\");
647 strcat(fullpath, fname);
648 return LoadLibrary(fullpath);
Thomas Heller48340392004-06-18 17:03:38 +0000649}
650
Thomas Hellera19cdad2004-02-20 14:43:21 +0000651static int prepare_script_environment(HINSTANCE hPython)
652{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000653 PyObject *mod;
654 DECLPROC(hPython, PyObject *, PyImport_ImportModule, (char *));
655 DECLPROC(hPython, int, PyObject_SetAttrString, (PyObject *, char *, PyObject *));
656 DECLPROC(hPython, PyObject *, PyObject_GetAttrString, (PyObject *, char *));
657 DECLPROC(hPython, PyObject *, PyCFunction_New, (PyMethodDef *, PyObject *));
658 DECLPROC(hPython, PyObject *, Py_BuildValue, (char *, ...));
659 DECLPROC(hPython, int, PyArg_ParseTuple, (PyObject *, char *, ...));
660 DECLPROC(hPython, PyObject *, PyErr_Format, (PyObject *, char *));
661 DECLPROC(hPython, PyObject *, PyLong_FromVoidPtr, (void *));
662 if (!PyImport_ImportModule || !PyObject_GetAttrString ||
663 !PyObject_SetAttrString || !PyCFunction_New)
664 return 1;
665 if (!Py_BuildValue || !PyArg_ParseTuple || !PyErr_Format)
666 return 1;
Thomas Hellera19cdad2004-02-20 14:43:21 +0000667
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000668 mod = PyImport_ImportModule("__builtin__");
669 if (mod) {
670 int i;
671 g_PyExc_ValueError = PyObject_GetAttrString(mod, "ValueError");
672 g_PyExc_OSError = PyObject_GetAttrString(mod, "OSError");
673 for (i = 0; i < DIM(meth); ++i) {
674 PyObject_SetAttrString(mod, meth[i].ml_name,
675 PyCFunction_New(&meth[i], NULL));
676 }
677 }
678 g_Py_BuildValue = Py_BuildValue;
679 g_PyArg_ParseTuple = PyArg_ParseTuple;
680 g_PyErr_Format = PyErr_Format;
681 g_PyLong_FromVoidPtr = PyLong_FromVoidPtr;
Thomas Hellera19cdad2004-02-20 14:43:21 +0000682
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000683 return 0;
Thomas Hellera19cdad2004-02-20 14:43:21 +0000684}
685
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000686/*
687 * This function returns one of the following error codes:
688 * 1 if the Python-dll does not export the functions we need
689 * 2 if no install-script is specified in pathname
690 * 3 if the install-script file could not be opened
Thomas Heller9f2e3be2005-02-03 20:35:10 +0000691 * the return value of PyRun_SimpleString() otherwise,
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000692 * which is 0 if everything is ok, -1 if an exception had occurred
693 * in the install-script.
694 */
695
696static int
Mark Hammond6ed1cb02009-01-29 12:13:31 +0000697do_run_installscript(HINSTANCE hPython, char *pathname, int argc, char **argv)
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000698{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000699 int fh, result;
700 DECLPROC(hPython, void, Py_Initialize, (void));
701 DECLPROC(hPython, int, PySys_SetArgv, (int, char **));
702 DECLPROC(hPython, int, PyRun_SimpleString, (char *));
703 DECLPROC(hPython, void, Py_Finalize, (void));
704 DECLPROC(hPython, PyObject *, Py_BuildValue, (char *, ...));
705 DECLPROC(hPython, PyObject *, PyCFunction_New,
706 (PyMethodDef *, PyObject *));
707 DECLPROC(hPython, int, PyArg_ParseTuple, (PyObject *, char *, ...));
708 DECLPROC(hPython, PyObject *, PyErr_Format, (PyObject *, char *));
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000709
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000710 if (!Py_Initialize || !PySys_SetArgv
711 || !PyRun_SimpleString || !Py_Finalize)
712 return 1;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000713
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000714 if (!Py_BuildValue || !PyArg_ParseTuple || !PyErr_Format)
715 return 1;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000716
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000717 if (!PyCFunction_New || !PyArg_ParseTuple || !PyErr_Format)
718 return 1;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000719
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000720 if (pathname == NULL || pathname[0] == '\0')
721 return 2;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000722
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000723 fh = open(pathname, _O_RDONLY);
724 if (-1 == fh) {
725 fprintf(stderr, "Could not open postinstall-script %s\n",
726 pathname);
727 return 3;
728 }
Mark Hammond6ed1cb02009-01-29 12:13:31 +0000729
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000730 SetDlgItemText(hDialog, IDC_INFO, "Running Script...");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000731
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000732 Py_Initialize();
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000733
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000734 prepare_script_environment(hPython);
735 PySys_SetArgv(argc, argv);
736 result = 3;
737 {
738 struct _stat statbuf;
739 if(0 == _fstat(fh, &statbuf)) {
740 char *script = alloca(statbuf.st_size + 5);
741 int n = read(fh, script, statbuf.st_size);
742 if (n > 0) {
743 script[n] = '\n';
744 script[n+1] = 0;
745 result = PyRun_SimpleString(script);
746 }
747 }
748 }
749 Py_Finalize();
750
751 close(fh);
752 return result;
Mark Hammond6ed1cb02009-01-29 12:13:31 +0000753}
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000754
Mark Hammond6ed1cb02009-01-29 12:13:31 +0000755static int
756run_installscript(char *pathname, int argc, char **argv, char **pOutput)
757{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000758 HINSTANCE hPython;
759 int result = 1;
760 int out_buf_size;
761 HANDLE redirected, old_stderr, old_stdout;
762 char *tempname;
Mark Hammond6ed1cb02009-01-29 12:13:31 +0000763
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000764 *pOutput = NULL;
Mark Hammond6ed1cb02009-01-29 12:13:31 +0000765
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000766 tempname = tempnam(NULL, NULL);
767 // We use a static CRT while the Python version we load uses
768 // the CRT from one of various possibile DLLs. As a result we
769 // need to redirect the standard handles using the API rather
770 // than the CRT.
771 redirected = CreateFile(
772 tempname,
773 GENERIC_WRITE | GENERIC_READ,
774 FILE_SHARE_READ,
775 NULL,
776 CREATE_ALWAYS,
777 FILE_ATTRIBUTE_NORMAL | FILE_FLAG_WRITE_THROUGH,
778 NULL);
779 old_stdout = GetStdHandle(STD_OUTPUT_HANDLE);
780 old_stderr = GetStdHandle(STD_ERROR_HANDLE);
781 SetStdHandle(STD_OUTPUT_HANDLE, redirected);
782 SetStdHandle(STD_ERROR_HANDLE, redirected);
Mark Hammond6ed1cb02009-01-29 12:13:31 +0000783
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000784 hPython = LoadPythonDll(pythondll);
785 if (hPython) {
786 result = do_run_installscript(hPython, pathname, argc, argv);
787 FreeLibrary(hPython);
788 } else {
789 fprintf(stderr, "*** Could not load Python ***");
790 }
791 SetStdHandle(STD_OUTPUT_HANDLE, old_stdout);
792 SetStdHandle(STD_ERROR_HANDLE, old_stderr);
793 out_buf_size = min(GetFileSize(redirected, NULL), 4096);
794 *pOutput = malloc(out_buf_size+1);
795 if (*pOutput) {
796 DWORD nread = 0;
797 SetFilePointer(redirected, 0, 0, FILE_BEGIN);
798 ReadFile(redirected, *pOutput, out_buf_size, &nread, NULL);
799 (*pOutput)[nread] = '\0';
800 }
801 CloseHandle(redirected);
802 DeleteFile(tempname);
803 return result;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000804}
805
Thomas Hellera19cdad2004-02-20 14:43:21 +0000806static int do_run_simple_script(HINSTANCE hPython, char *script)
807{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000808 int rc;
809 DECLPROC(hPython, void, Py_Initialize, (void));
810 DECLPROC(hPython, void, Py_SetProgramName, (char *));
811 DECLPROC(hPython, void, Py_Finalize, (void));
812 DECLPROC(hPython, int, PyRun_SimpleString, (char *));
813 DECLPROC(hPython, void, PyErr_Print, (void));
Thomas Hellera19cdad2004-02-20 14:43:21 +0000814
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000815 if (!Py_Initialize || !Py_SetProgramName || !Py_Finalize ||
816 !PyRun_SimpleString || !PyErr_Print)
817 return -1;
Thomas Hellera19cdad2004-02-20 14:43:21 +0000818
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000819 Py_SetProgramName(modulename);
820 Py_Initialize();
821 prepare_script_environment(hPython);
822 rc = PyRun_SimpleString(script);
823 if (rc)
824 PyErr_Print();
825 Py_Finalize();
826 return rc;
Thomas Hellera19cdad2004-02-20 14:43:21 +0000827}
828
829static int run_simple_script(char *script)
830{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000831 int rc;
832 HINSTANCE hPython;
833 char *tempname = tempnam(NULL, NULL);
834 // Redirect output using win32 API - see comments above...
835 HANDLE redirected = CreateFile(
836 tempname,
837 GENERIC_WRITE | GENERIC_READ,
838 FILE_SHARE_READ,
839 NULL,
840 CREATE_ALWAYS,
841 FILE_ATTRIBUTE_NORMAL | FILE_FLAG_WRITE_THROUGH,
842 NULL);
843 HANDLE old_stdout = GetStdHandle(STD_OUTPUT_HANDLE);
844 HANDLE old_stderr = GetStdHandle(STD_ERROR_HANDLE);
845 SetStdHandle(STD_OUTPUT_HANDLE, redirected);
846 SetStdHandle(STD_ERROR_HANDLE, redirected);
Thomas Hellera19cdad2004-02-20 14:43:21 +0000847
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000848 hPython = LoadPythonDll(pythondll);
849 if (!hPython) {
850 char reason[128];
851 wsprintf(reason, "Can't load Python for pre-install script (%d)", GetLastError());
852 set_failure_reason(reason);
853 return -1;
854 }
855 rc = do_run_simple_script(hPython, script);
856 FreeLibrary(hPython);
857 SetStdHandle(STD_OUTPUT_HANDLE, old_stdout);
858 SetStdHandle(STD_ERROR_HANDLE, old_stderr);
859 /* We only care about the output when we fail. If the script works
860 OK, then we discard it
861 */
862 if (rc) {
863 int err_buf_size;
864 char *err_buf;
865 const char *prefix = "Running the pre-installation script failed\r\n";
866 int prefix_len = strlen(prefix);
867 err_buf_size = GetFileSize(redirected, NULL);
868 if (err_buf_size==INVALID_FILE_SIZE) // an error - let's try anyway...
869 err_buf_size = 4096;
870 err_buf = malloc(prefix_len + err_buf_size + 1);
871 if (err_buf) {
872 DWORD n = 0;
873 strcpy(err_buf, prefix);
874 SetFilePointer(redirected, 0, 0, FILE_BEGIN);
875 ReadFile(redirected, err_buf+prefix_len, err_buf_size, &n, NULL);
876 err_buf[prefix_len+n] = '\0';
877 set_failure_reason(err_buf);
878 free(err_buf);
879 } else {
880 set_failure_reason("Out of memory!");
881 }
882 }
883 CloseHandle(redirected);
884 DeleteFile(tempname);
885 return rc;
Thomas Hellera19cdad2004-02-20 14:43:21 +0000886}
887
888
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000889static BOOL SystemError(int error, char *msg)
890{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000891 char Buffer[1024];
892 int n;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000893
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000894 if (error) {
895 LPVOID lpMsgBuf;
896 FormatMessage(
897 FORMAT_MESSAGE_ALLOCATE_BUFFER |
898 FORMAT_MESSAGE_FROM_SYSTEM,
899 NULL,
900 error,
901 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
902 (LPSTR)&lpMsgBuf,
903 0,
904 NULL
905 );
906 strncpy(Buffer, lpMsgBuf, sizeof(Buffer));
907 LocalFree(lpMsgBuf);
908 } else
909 Buffer[0] = '\0';
910 n = lstrlen(Buffer);
911 _snprintf(Buffer+n, sizeof(Buffer)-n, msg);
912 MessageBox(hwndMain, Buffer, "Runtime Error", MB_OK | MB_ICONSTOP);
913 return FALSE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000914}
915
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000916static BOOL notify (int code, char *fmt, ...)
917{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000918 char Buffer[1024];
919 va_list marker;
920 BOOL result = TRUE;
921 int a, b;
922 char *cp;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000923
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000924 va_start(marker, fmt);
925 _vsnprintf(Buffer, sizeof(Buffer), fmt, marker);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000926
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000927 switch (code) {
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000928/* Questions */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000929 case CAN_OVERWRITE:
930 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000931
932/* Information notification */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000933 case DIR_CREATED:
934 if (logfile)
935 fprintf(logfile, "100 Made Dir: %s\n", fmt);
936 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000937
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000938 case FILE_CREATED:
939 if (logfile)
940 fprintf(logfile, "200 File Copy: %s\n", fmt);
941 goto add_to_filelist_label;
942 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000943
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000944 case FILE_OVERWRITTEN:
945 if (logfile)
946 fprintf(logfile, "200 File Overwrite: %s\n", fmt);
947 add_to_filelist_label:
948 if ((cp = strrchr(fmt, '.')) && (0 == strcmp (cp, ".py")))
949 add_to_filelist(fmt);
950 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000951
952/* Error Messages */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000953 case ZLIB_ERROR:
954 MessageBox(GetFocus(), Buffer, "Error",
955 MB_OK | MB_ICONWARNING);
956 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000957
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000958 case SYSTEM_ERROR:
959 SystemError(GetLastError(), Buffer);
960 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000961
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000962 case NUM_FILES:
963 a = va_arg(marker, int);
964 b = va_arg(marker, int);
965 SendMessage(hDialog, WM_NUMFILES, 0, MAKELPARAM(0, a));
966 SendMessage(hDialog, WM_NEXTFILE, b,(LPARAM)fmt);
967 }
968 va_end(marker);
969
970 return result;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000971}
972
973static char *MapExistingFile(char *pathname, DWORD *psize)
974{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000975 HANDLE hFile, hFileMapping;
976 DWORD nSizeLow, nSizeHigh;
977 char *data;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000978
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000979 hFile = CreateFile(pathname,
980 GENERIC_READ, FILE_SHARE_READ, NULL,
981 OPEN_EXISTING,
982 FILE_ATTRIBUTE_NORMAL, NULL);
983 if (hFile == INVALID_HANDLE_VALUE)
984 return NULL;
985 nSizeLow = GetFileSize(hFile, &nSizeHigh);
986 hFileMapping = CreateFileMapping(hFile,
987 NULL, PAGE_READONLY, 0, 0, NULL);
988 CloseHandle(hFile);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000989
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000990 if (hFileMapping == INVALID_HANDLE_VALUE)
991 return NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000992
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000993 data = MapViewOfFile(hFileMapping,
994 FILE_MAP_READ, 0, 0, 0);
995
996 CloseHandle(hFileMapping);
997 *psize = nSizeLow;
998 return data;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +0000999}
1000
1001
1002static void create_bitmap(HWND hwnd)
1003{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001004 BITMAPFILEHEADER *bfh;
1005 BITMAPINFO *bi;
1006 HDC hdc;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001007
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001008 if (!bitmap_bytes)
1009 return;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001010
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001011 if (hBitmap)
1012 return;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001013
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001014 hdc = GetDC(hwnd);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001015
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001016 bfh = (BITMAPFILEHEADER *)bitmap_bytes;
1017 bi = (BITMAPINFO *)(bitmap_bytes + sizeof(BITMAPFILEHEADER));
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001018
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001019 hBitmap = CreateDIBitmap(hdc,
1020 &bi->bmiHeader,
1021 CBM_INIT,
1022 bitmap_bytes + bfh->bfOffBits,
1023 bi,
1024 DIB_RGB_COLORS);
1025 ReleaseDC(hwnd, hdc);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001026}
1027
Thomas Hellera19cdad2004-02-20 14:43:21 +00001028/* Extract everything we need to begin the installation. Currently this
1029 is the INI filename with install data, and the raw pre-install script
1030*/
1031static BOOL ExtractInstallData(char *data, DWORD size, int *pexe_size,
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001032 char **out_ini_file, char **out_preinstall_script)
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001033{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001034 /* read the end of central directory record */
1035 struct eof_cdir *pe = (struct eof_cdir *)&data[size - sizeof
1036 (struct eof_cdir)];
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001037
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001038 int arc_start = size - sizeof (struct eof_cdir) - pe->nBytesCDir -
1039 pe->ofsCDir;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001040
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001041 int ofs = arc_start - sizeof (struct meta_data_hdr);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001042
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001043 /* read meta_data info */
1044 struct meta_data_hdr *pmd = (struct meta_data_hdr *)&data[ofs];
1045 char *src, *dst;
1046 char *ini_file;
1047 char tempdir[MAX_PATH];
Thomas Hellera19cdad2004-02-20 14:43:21 +00001048
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001049 /* ensure that if we fail, we don't have garbage out pointers */
1050 *out_ini_file = *out_preinstall_script = NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001051
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001052 if (pe->tag != 0x06054b50) {
1053 return FALSE;
1054 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001055
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001056 if (pmd->tag != 0x1234567B) {
1057 return SystemError(0,
1058 "Invalid cfgdata magic number (see bdist_wininst.py)");
1059 }
1060 if (ofs < 0) {
1061 return FALSE;
1062 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001063
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001064 if (pmd->bitmap_size) {
1065 /* Store pointer to bitmap bytes */
1066 bitmap_bytes = (char *)pmd - pmd->uncomp_size - pmd->bitmap_size;
1067 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001068
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001069 *pexe_size = ofs - pmd->uncomp_size - pmd->bitmap_size;
1070
1071 src = ((char *)pmd) - pmd->uncomp_size;
1072 ini_file = malloc(MAX_PATH); /* will be returned, so do not free it */
1073 if (!ini_file)
1074 return FALSE;
1075 if (!GetTempPath(sizeof(tempdir), tempdir)
1076 || !GetTempFileName(tempdir, "~du", 0, ini_file)) {
1077 SystemError(GetLastError(),
1078 "Could not create temporary file");
1079 return FALSE;
1080 }
1081
1082 dst = map_new_file(CREATE_ALWAYS, ini_file, NULL, pmd->uncomp_size,
1083 0, 0, NULL/*notify*/);
1084 if (!dst)
1085 return FALSE;
1086 /* Up to the first \0 is the INI file data. */
1087 strncpy(dst, src, pmd->uncomp_size);
1088 src += strlen(dst) + 1;
1089 /* Up to next \0 is the pre-install script */
1090 *out_preinstall_script = strdup(src);
1091 *out_ini_file = ini_file;
1092 UnmapViewOfFile(dst);
1093 return TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001094}
1095
1096static void PumpMessages(void)
1097{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001098 MSG msg;
1099 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
1100 TranslateMessage(&msg);
1101 DispatchMessage(&msg);
1102 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001103}
1104
1105LRESULT CALLBACK
1106WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
1107{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001108 HDC hdc;
1109 HFONT hFont;
1110 int h;
1111 PAINTSTRUCT ps;
1112 switch (msg) {
1113 case WM_PAINT:
1114 hdc = BeginPaint(hwnd, &ps);
1115 h = GetSystemMetrics(SM_CYSCREEN) / 10;
1116 hFont = CreateFont(h, 0, 0, 0, 700, TRUE,
1117 0, 0, 0, 0, 0, 0, 0, "Times Roman");
1118 hFont = SelectObject(hdc, hFont);
1119 SetBkMode(hdc, TRANSPARENT);
1120 TextOut(hdc, 15, 15, title, strlen(title));
1121 SetTextColor(hdc, RGB(255, 255, 255));
1122 TextOut(hdc, 10, 10, title, strlen(title));
1123 DeleteObject(SelectObject(hdc, hFont));
1124 EndPaint(hwnd, &ps);
1125 return 0;
1126 }
1127 return DefWindowProc(hwnd, msg, wParam, lParam);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001128}
1129
1130static HWND CreateBackground(char *title)
1131{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001132 WNDCLASS wc;
1133 HWND hwnd;
1134 char buffer[4096];
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001135
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001136 wc.style = CS_VREDRAW | CS_HREDRAW;
1137 wc.lpfnWndProc = WindowProc;
1138 wc.cbWndExtra = 0;
1139 wc.cbClsExtra = 0;
1140 wc.hInstance = GetModuleHandle(NULL);
1141 wc.hIcon = NULL;
1142 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
1143 wc.hbrBackground = CreateSolidBrush(RGB(0, 0, 128));
1144 wc.lpszMenuName = NULL;
1145 wc.lpszClassName = "SetupWindowClass";
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001146
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001147 if (!RegisterClass(&wc))
1148 MessageBox(hwndMain,
1149 "Could not register window class",
1150 "Setup.exe", MB_OK);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001151
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001152 wsprintf(buffer, "Setup %s", title);
1153 hwnd = CreateWindow("SetupWindowClass",
1154 buffer,
1155 0,
1156 0, 0,
1157 GetSystemMetrics(SM_CXFULLSCREEN),
1158 GetSystemMetrics(SM_CYFULLSCREEN),
1159 NULL,
1160 NULL,
1161 GetModuleHandle(NULL),
1162 NULL);
1163 ShowWindow(hwnd, SW_SHOWMAXIMIZED);
1164 UpdateWindow(hwnd);
1165 return hwnd;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001166}
1167
1168/*
1169 * Center a window on the screen
1170 */
1171static void CenterWindow(HWND hwnd)
1172{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001173 RECT rc;
1174 int w, h;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001175
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001176 GetWindowRect(hwnd, &rc);
1177 w = GetSystemMetrics(SM_CXSCREEN);
1178 h = GetSystemMetrics(SM_CYSCREEN);
1179 MoveWindow(hwnd,
1180 (w - (rc.right-rc.left))/2,
1181 (h - (rc.bottom-rc.top))/2,
1182 rc.right-rc.left, rc.bottom-rc.top, FALSE);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001183}
1184
1185#include <prsht.h>
1186
1187BOOL CALLBACK
1188IntroDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
1189{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001190 LPNMHDR lpnm;
1191 char Buffer[4096];
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001192
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001193 switch (msg) {
1194 case WM_INITDIALOG:
1195 create_bitmap(hwnd);
1196 if(hBitmap)
1197 SendDlgItemMessage(hwnd, IDC_BITMAP, STM_SETIMAGE,
1198 IMAGE_BITMAP, (LPARAM)hBitmap);
1199 CenterWindow(GetParent(hwnd));
1200 wsprintf(Buffer,
1201 "This Wizard will install %s on your computer. "
1202 "Click Next to continue "
1203 "or Cancel to exit the Setup Wizard.",
1204 meta_name);
1205 SetDlgItemText(hwnd, IDC_TITLE, Buffer);
1206 SetDlgItemText(hwnd, IDC_INTRO_TEXT, info);
1207 SetDlgItemText(hwnd, IDC_BUILD_INFO, build_info);
1208 return FALSE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001209
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001210 case WM_NOTIFY:
1211 lpnm = (LPNMHDR) lParam;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001212
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001213 switch (lpnm->code) {
1214 case PSN_SETACTIVE:
1215 PropSheet_SetWizButtons(GetParent(hwnd), PSWIZB_NEXT);
1216 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001217
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001218 case PSN_WIZNEXT:
1219 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001220
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001221 case PSN_RESET:
1222 break;
1223
1224 default:
1225 break;
1226 }
1227 }
1228 return FALSE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001229}
1230
1231#ifdef USE_OTHER_PYTHON_VERSIONS
1232/* These are really private variables used to communicate
1233 * between StatusRoutine and CheckPythonExe
1234 */
1235char bound_image_dll[_MAX_PATH];
1236int bound_image_major;
1237int bound_image_minor;
1238
1239static BOOL __stdcall StatusRoutine(IMAGEHLP_STATUS_REASON reason,
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001240 PSTR ImageName,
1241 PSTR DllName,
1242 ULONG Va,
1243 ULONG Parameter)
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001244{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001245 char fname[_MAX_PATH];
1246 int int_version;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001247
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001248 switch(reason) {
1249 case BindOutOfMemory:
1250 case BindRvaToVaFailed:
1251 case BindNoRoomInImage:
1252 case BindImportProcedureFailed:
1253 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001254
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001255 case BindImportProcedure:
1256 case BindForwarder:
1257 case BindForwarderNOT:
1258 case BindImageModified:
1259 case BindExpandFileHeaders:
1260 case BindImageComplete:
1261 case BindSymbolsNotUpdated:
1262 case BindMismatchedSymbols:
1263 case BindImportModuleFailed:
1264 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001265
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001266 case BindImportModule:
1267 if (1 == sscanf(DllName, "python%d", &int_version)) {
1268 SearchPath(NULL, DllName, NULL, sizeof(fname),
1269 fname, NULL);
1270 strcpy(bound_image_dll, fname);
1271 bound_image_major = int_version / 10;
1272 bound_image_minor = int_version % 10;
1273 OutputDebugString("BOUND ");
1274 OutputDebugString(fname);
1275 OutputDebugString("\n");
1276 }
1277 break;
1278 }
1279 return TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001280}
1281
1282/*
1283 */
1284static LPSTR get_sys_prefix(LPSTR exe, LPSTR dll)
1285{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001286 void (__cdecl * Py_Initialize)(void);
1287 void (__cdecl * Py_SetProgramName)(char *);
1288 void (__cdecl * Py_Finalize)(void);
1289 void* (__cdecl * PySys_GetObject)(char *);
1290 void (__cdecl * PySys_SetArgv)(int, char **);
1291 char* (__cdecl * Py_GetPrefix)(void);
1292 char* (__cdecl * Py_GetPath)(void);
1293 HINSTANCE hPython;
1294 LPSTR prefix = NULL;
1295 int (__cdecl * PyRun_SimpleString)(char *);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001296
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001297 {
1298 char Buffer[256];
1299 wsprintf(Buffer, "PYTHONHOME=%s", exe);
1300 *strrchr(Buffer, '\\') = '\0';
1301// MessageBox(GetFocus(), Buffer, "PYTHONHOME", MB_OK);
1302 _putenv(Buffer);
1303 _putenv("PYTHONPATH=");
1304 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001305
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001306 hPython = LoadLibrary(dll);
1307 if (!hPython)
1308 return NULL;
1309 Py_Initialize = (void (*)(void))GetProcAddress
1310 (hPython,"Py_Initialize");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001311
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001312 PySys_SetArgv = (void (*)(int, char **))GetProcAddress
1313 (hPython,"PySys_SetArgv");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001314
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001315 PyRun_SimpleString = (int (*)(char *))GetProcAddress
1316 (hPython,"PyRun_SimpleString");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001317
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001318 Py_SetProgramName = (void (*)(char *))GetProcAddress
1319 (hPython,"Py_SetProgramName");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001320
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001321 PySys_GetObject = (void* (*)(char *))GetProcAddress
1322 (hPython,"PySys_GetObject");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001323
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001324 Py_GetPrefix = (char * (*)(void))GetProcAddress
1325 (hPython,"Py_GetPrefix");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001326
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001327 Py_GetPath = (char * (*)(void))GetProcAddress
1328 (hPython,"Py_GetPath");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001329
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001330 Py_Finalize = (void (*)(void))GetProcAddress(hPython,
1331 "Py_Finalize");
1332 Py_SetProgramName(exe);
1333 Py_Initialize();
1334 PySys_SetArgv(1, &exe);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001335
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001336 MessageBox(GetFocus(), Py_GetPrefix(), "PREFIX", MB_OK);
1337 MessageBox(GetFocus(), Py_GetPath(), "PATH", MB_OK);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001338
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001339 Py_Finalize();
1340 FreeLibrary(hPython);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001341
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001342 return prefix;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001343}
1344
1345static BOOL
1346CheckPythonExe(LPSTR pathname, LPSTR version, int *pmajor, int *pminor)
1347{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001348 bound_image_dll[0] = '\0';
1349 if (!BindImageEx(BIND_NO_BOUND_IMPORTS | BIND_NO_UPDATE | BIND_ALL_IMAGES,
1350 pathname,
1351 NULL,
1352 NULL,
1353 StatusRoutine))
1354 return SystemError(0, "Could not bind image");
1355 if (bound_image_dll[0] == '\0')
1356 return SystemError(0, "Does not seem to be a python executable");
1357 *pmajor = bound_image_major;
1358 *pminor = bound_image_minor;
1359 if (version && *version) {
1360 char core_version[12];
1361 wsprintf(core_version, "%d.%d", bound_image_major, bound_image_minor);
1362 if (strcmp(version, core_version))
1363 return SystemError(0, "Wrong Python version");
1364 }
1365 get_sys_prefix(pathname, bound_image_dll);
1366 return TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001367}
1368
1369/*
1370 * Browse for other python versions. Insert it into the listbox specified
1371 * by hwnd. version, if not NULL or empty, is the version required.
1372 */
1373static BOOL GetOtherPythonVersion(HWND hwnd, LPSTR version)
1374{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001375 char vers_name[_MAX_PATH + 80];
1376 DWORD itemindex;
1377 OPENFILENAME of;
1378 char pathname[_MAX_PATH];
1379 DWORD result;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001380
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001381 strcpy(pathname, "python.exe");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001382
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001383 memset(&of, 0, sizeof(of));
1384 of.lStructSize = sizeof(OPENFILENAME);
1385 of.hwndOwner = GetParent(hwnd);
1386 of.hInstance = NULL;
1387 of.lpstrFilter = "python.exe\0python.exe\0";
1388 of.lpstrCustomFilter = NULL;
1389 of.nMaxCustFilter = 0;
1390 of.nFilterIndex = 1;
1391 of.lpstrFile = pathname;
1392 of.nMaxFile = sizeof(pathname);
1393 of.lpstrFileTitle = NULL;
1394 of.nMaxFileTitle = 0;
1395 of.lpstrInitialDir = NULL;
1396 of.lpstrTitle = "Python executable";
1397 of.Flags = OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST;
1398 of.lpstrDefExt = "exe";
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001399
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001400 result = GetOpenFileName(&of);
1401 if (result) {
1402 int major, minor;
1403 if (!CheckPythonExe(pathname, version, &major, &minor)) {
1404 return FALSE;
1405 }
1406 *strrchr(pathname, '\\') = '\0';
1407 wsprintf(vers_name, "Python Version %d.%d in %s",
1408 major, minor, pathname);
1409 itemindex = SendMessage(hwnd, LB_INSERTSTRING, -1,
1410 (LPARAM)(LPSTR)vers_name);
1411 SendMessage(hwnd, LB_SETCURSEL, itemindex, 0);
1412 SendMessage(hwnd, LB_SETITEMDATA, itemindex,
1413 (LPARAM)(LPSTR)strdup(pathname));
1414 return TRUE;
1415 }
1416 return FALSE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001417}
1418#endif /* USE_OTHER_PYTHON_VERSIONS */
1419
Mark Hammondf9bfdd82004-07-02 23:53:16 +00001420typedef struct _InstalledVersionInfo {
1421 char prefix[MAX_PATH+1]; // sys.prefix directory.
1422 HKEY hkey; // Is this Python in HKCU or HKLM?
1423} InstalledVersionInfo;
1424
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001425
1426/*
1427 * Fill the listbox specified by hwnd with all python versions found
1428 * in the registry. version, if not NULL or empty, is the version
1429 * required.
1430 */
1431static BOOL GetPythonVersions(HWND hwnd, HKEY hkRoot, LPSTR version)
1432{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001433 DWORD index = 0;
1434 char core_version[80];
1435 HKEY hKey;
1436 BOOL result = TRUE;
1437 DWORD bufsize;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001438
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001439 if (ERROR_SUCCESS != RegOpenKeyEx(hkRoot,
1440 "Software\\Python\\PythonCore",
1441 0, KEY_READ, &hKey))
1442 return FALSE;
1443 bufsize = sizeof(core_version);
1444 while (ERROR_SUCCESS == RegEnumKeyEx(hKey, index,
1445 core_version, &bufsize, NULL,
1446 NULL, NULL, NULL)) {
1447 char subkey_name[80], vers_name[80];
1448 int itemindex;
1449 DWORD value_size;
1450 HKEY hk;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001451
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001452 bufsize = sizeof(core_version);
1453 ++index;
1454 if (version && *version && strcmp(version, core_version))
1455 continue;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001456
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001457 wsprintf(vers_name, "Python Version %s (found in registry)",
1458 core_version);
1459 wsprintf(subkey_name,
1460 "Software\\Python\\PythonCore\\%s\\InstallPath",
1461 core_version);
1462 if (ERROR_SUCCESS == RegOpenKeyEx(hkRoot, subkey_name, 0, KEY_READ, &hk)) {
1463 InstalledVersionInfo *ivi =
1464 (InstalledVersionInfo *)malloc(sizeof(InstalledVersionInfo));
1465 value_size = sizeof(ivi->prefix);
1466 if (ivi &&
1467 ERROR_SUCCESS == RegQueryValueEx(hk, NULL, NULL, NULL,
1468 ivi->prefix, &value_size)) {
1469 itemindex = SendMessage(hwnd, LB_ADDSTRING, 0,
1470 (LPARAM)(LPSTR)vers_name);
1471 ivi->hkey = hkRoot;
1472 SendMessage(hwnd, LB_SETITEMDATA, itemindex,
1473 (LPARAM)(LPSTR)ivi);
1474 }
1475 RegCloseKey(hk);
1476 }
1477 }
1478 RegCloseKey(hKey);
1479 return result;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001480}
1481
Mark Hammondf9bfdd82004-07-02 23:53:16 +00001482/* Determine if the current user can write to HKEY_LOCAL_MACHINE */
1483BOOL HasLocalMachinePrivs()
1484{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001485 HKEY hKey;
1486 DWORD result;
1487 static char KeyName[] =
1488 "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall";
Mark Hammondf9bfdd82004-07-02 23:53:16 +00001489
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001490 result = RegOpenKeyEx(HKEY_LOCAL_MACHINE,
1491 KeyName,
1492 0,
1493 KEY_CREATE_SUB_KEY,
1494 &hKey);
1495 if (result==0)
1496 RegCloseKey(hKey);
1497 return result==0;
Mark Hammondf9bfdd82004-07-02 23:53:16 +00001498}
1499
1500// Check the root registry key to use - either HKLM or HKCU.
1501// If Python is installed in HKCU, then our extension also must be installed
1502// in HKCU - as Python won't be available for other users, we shouldn't either
1503// (and will fail if we are!)
1504// If Python is installed in HKLM, then we will also prefer to use HKLM, but
1505// this may not be possible - so we silently fall back to HKCU.
1506//
1507// We assume hkey_root is already set to where Python itself is installed.
1508void CheckRootKey(HWND hwnd)
1509{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001510 if (hkey_root==HKEY_CURRENT_USER) {
1511 ; // as above, always install ourself in HKCU too.
1512 } else if (hkey_root==HKEY_LOCAL_MACHINE) {
1513 // Python in HKLM, but we may or may not have permissions there.
1514 // Open the uninstall key with 'create' permissions - if this fails,
1515 // we don't have permission.
1516 if (!HasLocalMachinePrivs())
1517 hkey_root = HKEY_CURRENT_USER;
1518 } else {
1519 MessageBox(hwnd, "Don't know Python's installation type",
1520 "Strange", MB_OK | MB_ICONSTOP);
1521 /* Default to wherever they can, but preferring HKLM */
1522 hkey_root = HasLocalMachinePrivs() ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER;
1523 }
Mark Hammondf9bfdd82004-07-02 23:53:16 +00001524}
1525
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001526/* Return the installation scheme depending on Python version number */
1527SCHEME *GetScheme(int major, int minor)
1528{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001529 if (major > 2)
1530 return new_scheme;
1531 else if((major == 2) && (minor >= 2))
1532 return new_scheme;
1533 return old_scheme;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001534}
1535
1536BOOL CALLBACK
1537SelectPythonDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
1538{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001539 LPNMHDR lpnm;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001540
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001541 switch (msg) {
1542 case WM_INITDIALOG:
1543 if (hBitmap)
1544 SendDlgItemMessage(hwnd, IDC_BITMAP, STM_SETIMAGE,
1545 IMAGE_BITMAP, (LPARAM)hBitmap);
1546 GetPythonVersions(GetDlgItem(hwnd, IDC_VERSIONS_LIST),
1547 HKEY_LOCAL_MACHINE, target_version);
1548 GetPythonVersions(GetDlgItem(hwnd, IDC_VERSIONS_LIST),
1549 HKEY_CURRENT_USER, target_version);
1550 { /* select the last entry which is the highest python
1551 version found */
1552 int count;
1553 count = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST,
1554 LB_GETCOUNT, 0, 0);
1555 if (count && count != LB_ERR)
1556 SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST, LB_SETCURSEL,
1557 count-1, 0);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001558
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001559 /* If a specific Python version is required,
1560 * display a prominent notice showing this fact.
1561 */
1562 if (target_version && target_version[0]) {
1563 char buffer[4096];
1564 wsprintf(buffer,
1565 "Python %s is required for this package. "
1566 "Select installation to use:",
1567 target_version);
1568 SetDlgItemText(hwnd, IDC_TITLE, buffer);
1569 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001570
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001571 if (count == 0) {
1572 char Buffer[4096];
1573 char *msg;
1574 if (target_version && target_version[0]) {
1575 wsprintf(Buffer,
1576 "Python version %s required, which was not found"
1577 " in the registry.", target_version);
1578 msg = Buffer;
1579 } else
1580 msg = "No Python installation found in the registry.";
1581 MessageBox(hwnd, msg, "Cannot install",
1582 MB_OK | MB_ICONSTOP);
1583 }
1584 }
1585 goto UpdateInstallDir;
1586 break;
1587
1588 case WM_COMMAND:
1589 switch (LOWORD(wParam)) {
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001590/*
1591 case IDC_OTHERPYTHON:
1592 if (GetOtherPythonVersion(GetDlgItem(hwnd, IDC_VERSIONS_LIST),
1593 target_version))
1594 goto UpdateInstallDir;
1595 break;
1596*/
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001597 case IDC_VERSIONS_LIST:
1598 switch (HIWORD(wParam)) {
1599 int id;
1600 case LBN_SELCHANGE:
1601 UpdateInstallDir:
1602 PropSheet_SetWizButtons(GetParent(hwnd),
1603 PSWIZB_BACK | PSWIZB_NEXT);
1604 id = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST,
1605 LB_GETCURSEL, 0, 0);
1606 if (id == LB_ERR) {
1607 PropSheet_SetWizButtons(GetParent(hwnd),
1608 PSWIZB_BACK);
1609 SetDlgItemText(hwnd, IDC_PATH, "");
1610 SetDlgItemText(hwnd, IDC_INSTALL_PATH, "");
1611 strcpy(python_dir, "");
1612 strcpy(pythondll, "");
1613 } else {
1614 char *pbuf;
1615 int result;
1616 InstalledVersionInfo *ivi;
1617 PropSheet_SetWizButtons(GetParent(hwnd),
1618 PSWIZB_BACK | PSWIZB_NEXT);
1619 /* Get the python directory */
1620 ivi = (InstalledVersionInfo *)
1621 SendDlgItemMessage(hwnd,
1622 IDC_VERSIONS_LIST,
1623 LB_GETITEMDATA,
1624 id,
1625 0);
1626 hkey_root = ivi->hkey;
1627 strcpy(python_dir, ivi->prefix);
1628 SetDlgItemText(hwnd, IDC_PATH, python_dir);
1629 /* retrieve the python version and pythondll to use */
1630 result = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST,
1631 LB_GETTEXTLEN, (WPARAM)id, 0);
1632 pbuf = (char *)malloc(result + 1);
1633 if (pbuf) {
1634 /* guess the name of the python-dll */
1635 SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST,
1636 LB_GETTEXT, (WPARAM)id,
1637 (LPARAM)pbuf);
1638 result = sscanf(pbuf, "Python Version %d.%d",
1639 &py_major, &py_minor);
1640 if (result == 2) {
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001641#ifdef _DEBUG
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001642 wsprintf(pythondll, "python%d%d_d.dll",
1643 py_major, py_minor);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001644#else
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001645 wsprintf(pythondll, "python%d%d.dll",
1646 py_major, py_minor);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001647#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001648 }
1649 free(pbuf);
1650 } else
1651 strcpy(pythondll, "");
1652 /* retrieve the scheme for this version */
1653 {
1654 char install_path[_MAX_PATH];
1655 SCHEME *scheme = GetScheme(py_major, py_minor);
1656 strcpy(install_path, python_dir);
1657 if (install_path[strlen(install_path)-1] != '\\')
1658 strcat(install_path, "\\");
1659 strcat(install_path, scheme[0].prefix);
1660 SetDlgItemText(hwnd, IDC_INSTALL_PATH, install_path);
1661 }
1662 }
1663 }
1664 break;
1665 }
1666 return 0;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001667
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001668 case WM_NOTIFY:
1669 lpnm = (LPNMHDR) lParam;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001670
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001671 switch (lpnm->code) {
1672 int id;
1673 case PSN_SETACTIVE:
1674 id = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST,
1675 LB_GETCURSEL, 0, 0);
1676 if (id == LB_ERR)
1677 PropSheet_SetWizButtons(GetParent(hwnd),
1678 PSWIZB_BACK);
1679 else
1680 PropSheet_SetWizButtons(GetParent(hwnd),
1681 PSWIZB_BACK | PSWIZB_NEXT);
1682 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001683
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001684 case PSN_WIZNEXT:
1685 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001686
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001687 case PSN_WIZFINISH:
1688 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001689
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001690 case PSN_RESET:
1691 break;
1692
1693 default:
1694 break;
1695 }
1696 }
1697 return 0;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001698}
1699
1700static BOOL OpenLogfile(char *dir)
1701{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001702 char buffer[_MAX_PATH+1];
1703 time_t ltime;
1704 struct tm *now;
1705 long result;
1706 HKEY hKey, hSubkey;
1707 char subkey_name[256];
1708 static char KeyName[] =
1709 "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall";
1710 const char *root_name = (hkey_root==HKEY_LOCAL_MACHINE ?
1711 "HKEY_LOCAL_MACHINE" : "HKEY_CURRENT_USER");
1712 DWORD disposition;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001713
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001714 /* Use Create, as the Uninstall subkey may not exist under HKCU.
1715 Use CreateKeyEx, so we can specify a SAM specifying write access
1716 */
1717 result = RegCreateKeyEx(hkey_root,
1718 KeyName,
1719 0, /* reserved */
1720 NULL, /* class */
1721 0, /* options */
1722 KEY_CREATE_SUB_KEY, /* sam */
1723 NULL, /* security */
1724 &hKey, /* result key */
1725 NULL); /* disposition */
1726 if (result != ERROR_SUCCESS) {
1727 if (result == ERROR_ACCESS_DENIED) {
1728 /* This should no longer be able to happen - we have already
1729 checked if they have permissions in HKLM, and all users
1730 should have write access to HKCU.
1731 */
1732 MessageBox(GetFocus(),
1733 "You do not seem to have sufficient access rights\n"
1734 "on this machine to install this software",
1735 NULL,
1736 MB_OK | MB_ICONSTOP);
1737 return FALSE;
1738 } else {
1739 MessageBox(GetFocus(), KeyName, "Could not open key", MB_OK);
1740 }
1741 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001742
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001743 sprintf(buffer, "%s\\%s-wininst.log", dir, meta_name);
1744 logfile = fopen(buffer, "a");
1745 time(&ltime);
1746 now = localtime(&ltime);
1747 strftime(buffer, sizeof(buffer),
1748 "*** Installation started %Y/%m/%d %H:%M ***\n",
1749 localtime(&ltime));
1750 fprintf(logfile, buffer);
1751 fprintf(logfile, "Source: %s\n", modulename);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001752
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001753 /* Root key must be first entry processed by uninstaller. */
1754 fprintf(logfile, "999 Root Key: %s\n", root_name);
Mark Hammondf9bfdd82004-07-02 23:53:16 +00001755
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001756 sprintf(subkey_name, "%s-py%d.%d", meta_name, py_major, py_minor);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001757
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001758 result = RegCreateKeyEx(hKey, subkey_name,
1759 0, NULL, 0,
1760 KEY_WRITE,
1761 NULL,
1762 &hSubkey,
1763 &disposition);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001764
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001765 if (result != ERROR_SUCCESS)
1766 MessageBox(GetFocus(), subkey_name, "Could not create key", MB_OK);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001767
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001768 RegCloseKey(hKey);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001769
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001770 if (disposition == REG_CREATED_NEW_KEY)
1771 fprintf(logfile, "020 Reg DB Key: [%s]%s\n", KeyName, subkey_name);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001772
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001773 sprintf(buffer, "Python %d.%d %s", py_major, py_minor, title);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001774
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001775 result = RegSetValueEx(hSubkey, "DisplayName",
1776 0,
1777 REG_SZ,
1778 buffer,
1779 strlen(buffer)+1);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001780
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001781 if (result != ERROR_SUCCESS)
1782 MessageBox(GetFocus(), buffer, "Could not set key value", MB_OK);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001783
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001784 fprintf(logfile, "040 Reg DB Value: [%s\\%s]%s=%s\n",
1785 KeyName, subkey_name, "DisplayName", buffer);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001786
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001787 {
1788 FILE *fp;
1789 sprintf(buffer, "%s\\Remove%s.exe", dir, meta_name);
1790 fp = fopen(buffer, "wb");
1791 fwrite(arc_data, exe_size, 1, fp);
1792 fclose(fp);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001793
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001794 sprintf(buffer, "\"%s\\Remove%s.exe\" -u \"%s\\%s-wininst.log\"",
1795 dir, meta_name, dir, meta_name);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001796
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001797 result = RegSetValueEx(hSubkey, "UninstallString",
1798 0,
1799 REG_SZ,
1800 buffer,
1801 strlen(buffer)+1);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001802
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001803 if (result != ERROR_SUCCESS)
1804 MessageBox(GetFocus(), buffer, "Could not set key value", MB_OK);
1805
1806 fprintf(logfile, "040 Reg DB Value: [%s\\%s]%s=%s\n",
1807 KeyName, subkey_name, "UninstallString", buffer);
1808 }
1809 return TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001810}
1811
1812static void CloseLogfile(void)
1813{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001814 char buffer[_MAX_PATH+1];
1815 time_t ltime;
1816 struct tm *now;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001817
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001818 time(&ltime);
1819 now = localtime(&ltime);
1820 strftime(buffer, sizeof(buffer),
1821 "*** Installation finished %Y/%m/%d %H:%M ***\n",
1822 localtime(&ltime));
1823 fprintf(logfile, buffer);
1824 if (logfile)
1825 fclose(logfile);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001826}
1827
1828BOOL CALLBACK
1829InstallFilesDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
1830{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001831 LPNMHDR lpnm;
1832 char Buffer[4096];
1833 SCHEME *scheme;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001834
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001835 switch (msg) {
1836 case WM_INITDIALOG:
1837 if (hBitmap)
1838 SendDlgItemMessage(hwnd, IDC_BITMAP, STM_SETIMAGE,
1839 IMAGE_BITMAP, (LPARAM)hBitmap);
1840 wsprintf(Buffer,
1841 "Click Next to begin the installation of %s. "
1842 "If you want to review or change any of your "
1843 " installation settings, click Back. "
1844 "Click Cancel to exit the wizard.",
1845 meta_name);
1846 SetDlgItemText(hwnd, IDC_TITLE, Buffer);
1847 SetDlgItemText(hwnd, IDC_INFO, "Ready to install");
1848 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001849
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001850 case WM_NUMFILES:
1851 SendDlgItemMessage(hwnd, IDC_PROGRESS, PBM_SETRANGE, 0, lParam);
1852 PumpMessages();
1853 return TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001854
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001855 case WM_NEXTFILE:
1856 SendDlgItemMessage(hwnd, IDC_PROGRESS, PBM_SETPOS, wParam,
1857 0);
1858 SetDlgItemText(hwnd, IDC_INFO, (LPSTR)lParam);
1859 PumpMessages();
1860 return TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001861
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001862 case WM_NOTIFY:
1863 lpnm = (LPNMHDR) lParam;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001864
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001865 switch (lpnm->code) {
1866 case PSN_SETACTIVE:
1867 PropSheet_SetWizButtons(GetParent(hwnd),
1868 PSWIZB_BACK | PSWIZB_NEXT);
1869 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001870
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001871 case PSN_WIZFINISH:
1872 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001873
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001874 case PSN_WIZNEXT:
1875 /* Handle a Next button click here */
1876 hDialog = hwnd;
1877 success = TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001878
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001879 /* Disable the buttons while we work. Sending CANCELTOCLOSE has
1880 the effect of disabling the cancel button, which is a) as we
1881 do everything synchronously we can't cancel, and b) the next
1882 step is 'finished', when it is too late to cancel anyway.
1883 The next step being 'Finished' means we also don't need to
1884 restore the button state back */
1885 PropSheet_SetWizButtons(GetParent(hwnd), 0);
1886 SendMessage(GetParent(hwnd), PSM_CANCELTOCLOSE, 0, 0);
1887 /* Make sure the installation directory name ends in a */
1888 /* backslash */
1889 if (python_dir[strlen(python_dir)-1] != '\\')
1890 strcat(python_dir, "\\");
1891 /* Strip the trailing backslash again */
1892 python_dir[strlen(python_dir)-1] = '\0';
1893
1894 CheckRootKey(hwnd);
1895
1896 if (!OpenLogfile(python_dir))
1897 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001898
1899/*
1900 * The scheme we have to use depends on the Python version...
1901 if sys.version < "2.2":
1902 WINDOWS_SCHEME = {
1903 'purelib': '$base',
1904 'platlib': '$base',
1905 'headers': '$base/Include/$dist_name',
1906 'scripts': '$base/Scripts',
1907 'data' : '$base',
1908 }
1909 else:
1910 WINDOWS_SCHEME = {
1911 'purelib': '$base/Lib/site-packages',
1912 'platlib': '$base/Lib/site-packages',
1913 'headers': '$base/Include/$dist_name',
1914 'scripts': '$base/Scripts',
1915 'data' : '$base',
1916 }
1917*/
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001918 scheme = GetScheme(py_major, py_minor);
1919 /* Run the pre-install script. */
1920 if (pre_install_script && *pre_install_script) {
1921 SetDlgItemText (hwnd, IDC_TITLE,
1922 "Running pre-installation script");
1923 run_simple_script(pre_install_script);
1924 }
1925 if (!success) {
1926 break;
1927 }
1928 /* Extract all files from the archive */
1929 SetDlgItemText(hwnd, IDC_TITLE, "Installing files...");
1930 if (!unzip_archive (scheme,
1931 python_dir, arc_data,
1932 arc_size, notify))
1933 set_failure_reason("Failed to unzip installation files");
1934 /* Compile the py-files */
1935 if (success && pyc_compile) {
1936 int errors;
1937 HINSTANCE hPython;
1938 SetDlgItemText(hwnd, IDC_TITLE,
1939 "Compiling files to .pyc...");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001940
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001941 SetDlgItemText(hDialog, IDC_INFO, "Loading python...");
1942 hPython = LoadPythonDll(pythondll);
1943 if (hPython) {
1944 errors = compile_filelist(hPython, FALSE);
1945 FreeLibrary(hPython);
1946 }
1947 /* Compilation errors are intentionally ignored:
1948 * Python2.0 contains a bug which will result
1949 * in sys.path containing garbage under certain
1950 * circumstances, and an error message will only
1951 * confuse the user.
1952 */
1953 }
1954 if (success && pyo_compile) {
1955 int errors;
1956 HINSTANCE hPython;
1957 SetDlgItemText(hwnd, IDC_TITLE,
1958 "Compiling files to .pyo...");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001959
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001960 SetDlgItemText(hDialog, IDC_INFO, "Loading python...");
1961 hPython = LoadPythonDll(pythondll);
1962 if (hPython) {
1963 errors = compile_filelist(hPython, TRUE);
1964 FreeLibrary(hPython);
1965 }
1966 /* Errors ignored: see above */
1967 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001968
1969
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001970 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001971
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001972 case PSN_RESET:
1973 break;
1974
1975 default:
1976 break;
1977 }
1978 }
1979 return 0;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001980}
1981
1982
1983BOOL CALLBACK
1984FinishedDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
1985{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001986 LPNMHDR lpnm;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001987
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001988 switch (msg) {
1989 case WM_INITDIALOG:
1990 if (hBitmap)
1991 SendDlgItemMessage(hwnd, IDC_BITMAP, STM_SETIMAGE,
1992 IMAGE_BITMAP, (LPARAM)hBitmap);
1993 if (!success)
1994 SetDlgItemText(hwnd, IDC_INFO, get_failure_reason());
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00001995
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001996 /* async delay: will show the dialog box completely before
1997 the install_script is started */
1998 PostMessage(hwnd, WM_USER, 0, 0L);
1999 return TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002000
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002001 case WM_USER:
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002002
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002003 if (success && install_script && install_script[0]) {
2004 char fname[MAX_PATH];
2005 char *buffer;
2006 HCURSOR hCursor;
2007 int result;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002008
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002009 char *argv[3] = {NULL, "-install", NULL};
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002010
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002011 SetDlgItemText(hwnd, IDC_TITLE,
2012 "Please wait while running postinstall script...");
2013 strcpy(fname, python_dir);
2014 strcat(fname, "\\Scripts\\");
2015 strcat(fname, install_script);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002016
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002017 if (logfile)
2018 fprintf(logfile, "300 Run Script: [%s]%s\n", pythondll, fname);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002019
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002020 hCursor = SetCursor(LoadCursor(NULL, IDC_WAIT));
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002021
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002022 argv[0] = fname;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002023
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002024 result = run_installscript(fname, 2, argv, &buffer);
2025 if (0 != result) {
2026 fprintf(stderr, "*** run_installscript: internal error 0x%X ***\n", result);
2027 }
2028 if (buffer)
2029 SetDlgItemText(hwnd, IDC_INFO, buffer);
2030 SetDlgItemText(hwnd, IDC_TITLE,
2031 "Postinstall script finished.\n"
2032 "Click the Finish button to exit the Setup wizard.");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002033
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002034 free(buffer);
2035 SetCursor(hCursor);
2036 CloseLogfile();
2037 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002038
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002039 return TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002040
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002041 case WM_NOTIFY:
2042 lpnm = (LPNMHDR) lParam;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002043
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002044 switch (lpnm->code) {
2045 case PSN_SETACTIVE: /* Enable the Finish button */
2046 PropSheet_SetWizButtons(GetParent(hwnd), PSWIZB_FINISH);
2047 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002048
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002049 case PSN_WIZNEXT:
2050 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002051
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002052 case PSN_WIZFINISH:
2053 break;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002054
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002055 case PSN_RESET:
2056 break;
2057
2058 default:
2059 break;
2060 }
2061 }
2062 return 0;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002063}
2064
2065void RunWizard(HWND hwnd)
2066{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002067 PROPSHEETPAGE psp = {0};
2068 HPROPSHEETPAGE ahpsp[4] = {0};
2069 PROPSHEETHEADER psh = {0};
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002070
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002071 /* Display module information */
2072 psp.dwSize = sizeof(psp);
2073 psp.dwFlags = PSP_DEFAULT|PSP_HIDEHEADER;
2074 psp.hInstance = GetModuleHandle (NULL);
2075 psp.lParam = 0;
2076 psp.pfnDlgProc = IntroDlgProc;
2077 psp.pszTemplate = MAKEINTRESOURCE(IDD_INTRO);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002078
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002079 ahpsp[0] = CreatePropertySheetPage(&psp);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002080
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002081 /* Select python version to use */
2082 psp.dwFlags = PSP_DEFAULT|PSP_HIDEHEADER;
2083 psp.pszTemplate = MAKEINTRESOURCE(IDD_SELECTPYTHON);
2084 psp.pfnDlgProc = SelectPythonDlgProc;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002085
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002086 ahpsp[1] = CreatePropertySheetPage(&psp);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002087
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002088 /* Install the files */
2089 psp.dwFlags = PSP_DEFAULT|PSP_HIDEHEADER;
2090 psp.pszTemplate = MAKEINTRESOURCE(IDD_INSTALLFILES);
2091 psp.pfnDlgProc = InstallFilesDlgProc;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002092
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002093 ahpsp[2] = CreatePropertySheetPage(&psp);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002094
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002095 /* Show success or failure */
2096 psp.dwFlags = PSP_DEFAULT|PSP_HIDEHEADER;
2097 psp.pszTemplate = MAKEINTRESOURCE(IDD_FINISHED);
2098 psp.pfnDlgProc = FinishedDlgProc;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002099
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002100 ahpsp[3] = CreatePropertySheetPage(&psp);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002101
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002102 /* Create the property sheet */
2103 psh.dwSize = sizeof(psh);
2104 psh.hInstance = GetModuleHandle(NULL);
2105 psh.hwndParent = hwnd;
2106 psh.phpage = ahpsp;
2107 psh.dwFlags = PSH_WIZARD/*97*//*|PSH_WATERMARK|PSH_HEADER*/;
2108 psh.pszbmWatermark = NULL;
2109 psh.pszbmHeader = NULL;
2110 psh.nStartPage = 0;
2111 psh.nPages = 4;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002112
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002113 PropertySheet(&psh);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002114}
2115
Mark Hammond7c5c8e62008-05-02 12:48:15 +00002116// subtly different from HasLocalMachinePrivs(), in that after executing
2117// an 'elevated' process, we expect this to return TRUE - but there is no
2118// such implication for HasLocalMachinePrivs
2119BOOL MyIsUserAnAdmin()
2120{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002121 typedef BOOL (WINAPI *PFNIsUserAnAdmin)();
2122 static PFNIsUserAnAdmin pfnIsUserAnAdmin = NULL;
2123 HMODULE shell32;
2124 // This function isn't guaranteed to be available (and it can't hurt
2125 // to leave the library loaded)
2126 if (0 == (shell32=LoadLibrary("shell32.dll")))
2127 return FALSE;
2128 if (0 == (pfnIsUserAnAdmin=(PFNIsUserAnAdmin)GetProcAddress(shell32, "IsUserAnAdmin")))
2129 return FALSE;
2130 return (*pfnIsUserAnAdmin)();
Mark Hammond7c5c8e62008-05-02 12:48:15 +00002131}
2132
2133// Some magic for Vista's UAC. If there is a target_version, and
2134// if that target version is installed in the registry under
2135// HKLM, and we are not current administrator, then
2136// re-execute ourselves requesting elevation.
2137// Split into 2 functions - "should we elevate" and "spawn elevated"
2138
2139// Returns TRUE if we should spawn an elevated child
2140BOOL NeedAutoUAC()
2141{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002142 HKEY hk;
2143 char key_name[80];
2144 // no Python version info == we can't know yet.
2145 if (target_version[0] == '\0')
2146 return FALSE;
2147 // see how python is current installed
2148 wsprintf(key_name,
2149 "Software\\Python\\PythonCore\\%s\\InstallPath",
2150 target_version);
2151 if (ERROR_SUCCESS != RegOpenKeyEx(HKEY_LOCAL_MACHINE,
2152 key_name, 0, KEY_READ, &hk))
2153 return FALSE;
2154 RegCloseKey(hk);
2155 // Python is installed in HKLM - we must elevate.
2156 return TRUE;
Mark Hammond7c5c8e62008-05-02 12:48:15 +00002157}
2158
Mark Hammond5bd88332008-05-31 05:11:07 +00002159// Returns TRUE if the platform supports UAC.
2160BOOL PlatformSupportsUAC()
2161{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002162 // Note that win2k does seem to support ShellExecute with 'runas',
2163 // but does *not* support IsUserAnAdmin - so we just pretend things
2164 // only work on XP and later.
2165 BOOL bIsWindowsXPorLater;
2166 OSVERSIONINFO winverinfo;
2167 winverinfo.dwOSVersionInfoSize = sizeof(winverinfo);
2168 if (!GetVersionEx(&winverinfo))
2169 return FALSE; // something bad has gone wrong
2170 bIsWindowsXPorLater =
Mark Hammond5bd88332008-05-31 05:11:07 +00002171 ( (winverinfo.dwMajorVersion > 5) ||
2172 ( (winverinfo.dwMajorVersion == 5) && (winverinfo.dwMinorVersion >= 1) ));
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002173 return bIsWindowsXPorLater;
Mark Hammond5bd88332008-05-31 05:11:07 +00002174}
2175
Mark Hammond7c5c8e62008-05-02 12:48:15 +00002176// Spawn ourself as an elevated application. On failure, a message is
2177// displayed to the user - but this app will always terminate, even
2178// on error.
2179void SpawnUAC()
2180{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002181 // interesting failure scenario that has been seen: initial executable
2182 // runs from a network drive - but once elevated, that network share
2183 // isn't seen, and ShellExecute fails with SE_ERR_ACCESSDENIED.
2184 int ret = (int)ShellExecute(0, "runas", modulename, "", NULL,
2185 SW_SHOWNORMAL);
2186 if (ret <= 32) {
2187 char msg[128];
2188 wsprintf(msg, "Failed to start elevated process (ShellExecute returned %d)", ret);
2189 MessageBox(0, msg, "Setup", MB_OK | MB_ICONERROR);
2190 }
Mark Hammond7c5c8e62008-05-02 12:48:15 +00002191}
2192
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002193int DoInstall(void)
2194{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002195 char ini_buffer[4096];
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002196
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002197 /* Read installation information */
2198 GetPrivateProfileString("Setup", "title", "", ini_buffer,
2199 sizeof(ini_buffer), ini_file);
2200 unescape(title, ini_buffer, sizeof(title));
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002201
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002202 GetPrivateProfileString("Setup", "info", "", ini_buffer,
2203 sizeof(ini_buffer), ini_file);
2204 unescape(info, ini_buffer, sizeof(info));
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002205
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002206 GetPrivateProfileString("Setup", "build_info", "", build_info,
2207 sizeof(build_info), ini_file);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002208
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002209 pyc_compile = GetPrivateProfileInt("Setup", "target_compile", 1,
2210 ini_file);
2211 pyo_compile = GetPrivateProfileInt("Setup", "target_optimize", 1,
2212 ini_file);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002213
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002214 GetPrivateProfileString("Setup", "target_version", "",
2215 target_version, sizeof(target_version),
2216 ini_file);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002217
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002218 GetPrivateProfileString("metadata", "name", "",
2219 meta_name, sizeof(meta_name),
2220 ini_file);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002221
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002222 GetPrivateProfileString("Setup", "install_script", "",
2223 install_script, sizeof(install_script),
2224 ini_file);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002225
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002226 GetPrivateProfileString("Setup", "user_access_control", "",
2227 user_access_control, sizeof(user_access_control), ini_file);
Mark Hammond7c5c8e62008-05-02 12:48:15 +00002228
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002229 // See if we need to do the Vista UAC magic.
2230 if (strcmp(user_access_control, "force")==0) {
2231 if (PlatformSupportsUAC() && !MyIsUserAnAdmin()) {
2232 SpawnUAC();
2233 return 0;
2234 }
2235 // already admin - keep going
2236 } else if (strcmp(user_access_control, "auto")==0) {
2237 // Check if it looks like we need UAC control, based
2238 // on how Python itself was installed.
2239 if (PlatformSupportsUAC() && !MyIsUserAnAdmin() && NeedAutoUAC()) {
2240 SpawnUAC();
2241 return 0;
2242 }
2243 } else {
2244 // display a warning about unknown values - only the developer
2245 // of the extension will see it (until they fix it!)
2246 if (user_access_control[0] && strcmp(user_access_control, "none") != 0) {
2247 MessageBox(GetFocus(), "Bad user_access_control value", "oops", MB_OK);
2248 // nothing to do.
2249 }
2250 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002251
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002252 hwndMain = CreateBackground(title);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002253
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002254 RunWizard(hwndMain);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002255
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002256 /* Clean up */
2257 UnmapViewOfFile(arc_data);
2258 if (ini_file)
2259 DeleteFile(ini_file);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002260
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002261 if (hBitmap)
2262 DeleteObject(hBitmap);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002263
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002264 return 0;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002265}
2266
2267/*********************** uninstall section ******************************/
2268
2269static int compare(const void *p1, const void *p2)
2270{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002271 return strcmp(*(char **)p2, *(char **)p1);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002272}
2273
2274/*
2275 * Commit suicide (remove the uninstaller itself).
2276 *
2277 * Create a batch file to first remove the uninstaller
2278 * (will succeed after it has finished), then the batch file itself.
2279 *
2280 * This technique has been demonstrated by Jeff Richter,
2281 * MSJ 1/1996
2282 */
2283void remove_exe(void)
2284{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002285 char exename[_MAX_PATH];
2286 char batname[_MAX_PATH];
2287 FILE *fp;
2288 STARTUPINFO si;
2289 PROCESS_INFORMATION pi;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002290
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002291 GetModuleFileName(NULL, exename, sizeof(exename));
2292 sprintf(batname, "%s.bat", exename);
2293 fp = fopen(batname, "w");
2294 fprintf(fp, ":Repeat\n");
2295 fprintf(fp, "del \"%s\"\n", exename);
2296 fprintf(fp, "if exist \"%s\" goto Repeat\n", exename);
2297 fprintf(fp, "del \"%s\"\n", batname);
2298 fclose(fp);
2299
2300 ZeroMemory(&si, sizeof(si));
2301 si.cb = sizeof(si);
2302 si.dwFlags = STARTF_USESHOWWINDOW;
2303 si.wShowWindow = SW_HIDE;
2304 if (CreateProcess(NULL,
2305 batname,
2306 NULL,
2307 NULL,
2308 FALSE,
2309 CREATE_SUSPENDED | IDLE_PRIORITY_CLASS,
2310 NULL,
2311 "\\",
2312 &si,
2313 &pi)) {
2314 SetThreadPriority(pi.hThread, THREAD_PRIORITY_IDLE);
2315 SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL);
2316 SetPriorityClass(GetCurrentProcess(), HIGH_PRIORITY_CLASS);
2317 CloseHandle(pi.hProcess);
2318 ResumeThread(pi.hThread);
2319 CloseHandle(pi.hThread);
2320 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002321}
2322
2323void DeleteRegistryKey(char *string)
2324{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002325 char *keyname;
2326 char *subkeyname;
2327 char *delim;
2328 HKEY hKey;
2329 long result;
2330 char *line;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002331
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002332 line = strdup(string); /* so we can change it */
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002333
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002334 keyname = strchr(line, '[');
2335 if (!keyname)
2336 return;
2337 ++keyname;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002338
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002339 subkeyname = strchr(keyname, ']');
2340 if (!subkeyname)
2341 return;
2342 *subkeyname++='\0';
2343 delim = strchr(subkeyname, '\n');
2344 if (delim)
2345 *delim = '\0';
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002346
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002347 result = RegOpenKeyEx(hkey_root,
2348 keyname,
2349 0,
2350 KEY_WRITE,
2351 &hKey);
2352
2353 if (result != ERROR_SUCCESS)
2354 MessageBox(GetFocus(), string, "Could not open key", MB_OK);
2355 else {
2356 result = RegDeleteKey(hKey, subkeyname);
2357 if (result != ERROR_SUCCESS && result != ERROR_FILE_NOT_FOUND)
2358 MessageBox(GetFocus(), string, "Could not delete key", MB_OK);
2359 RegCloseKey(hKey);
2360 }
2361 free(line);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002362}
2363
2364void DeleteRegistryValue(char *string)
2365{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002366 char *keyname;
2367 char *valuename;
2368 char *value;
2369 HKEY hKey;
2370 long result;
2371 char *line;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002372
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002373 line = strdup(string); /* so we can change it */
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002374
2375/* Format is 'Reg DB Value: [key]name=value' */
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002376 keyname = strchr(line, '[');
2377 if (!keyname)
2378 return;
2379 ++keyname;
2380 valuename = strchr(keyname, ']');
2381 if (!valuename)
2382 return;
2383 *valuename++ = '\0';
2384 value = strchr(valuename, '=');
2385 if (!value)
2386 return;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002387
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002388 *value++ = '\0';
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002389
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002390 result = RegOpenKeyEx(hkey_root,
2391 keyname,
2392 0,
2393 KEY_WRITE,
2394 &hKey);
2395 if (result != ERROR_SUCCESS)
2396 MessageBox(GetFocus(), string, "Could not open key", MB_OK);
2397 else {
2398 result = RegDeleteValue(hKey, valuename);
2399 if (result != ERROR_SUCCESS && result != ERROR_FILE_NOT_FOUND)
2400 MessageBox(GetFocus(), string, "Could not delete value", MB_OK);
2401 RegCloseKey(hKey);
2402 }
2403 free(line);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002404}
2405
2406BOOL MyDeleteFile(char *line)
2407{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002408 char *pathname = strchr(line, ':');
2409 if (!pathname)
2410 return FALSE;
2411 ++pathname;
2412 while (isspace(*pathname))
2413 ++pathname;
2414 return DeleteFile(pathname);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002415}
2416
2417BOOL MyRemoveDirectory(char *line)
2418{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002419 char *pathname = strchr(line, ':');
2420 if (!pathname)
2421 return FALSE;
2422 ++pathname;
2423 while (isspace(*pathname))
2424 ++pathname;
2425 return RemoveDirectory(pathname);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002426}
2427
2428BOOL Run_RemoveScript(char *line)
2429{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002430 char *dllname;
2431 char *scriptname;
2432 static char lastscript[MAX_PATH];
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002433
2434/* Format is 'Run Scripts: [pythondll]scriptname' */
2435/* XXX Currently, pythondll carries no path!!! */
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002436 dllname = strchr(line, '[');
2437 if (!dllname)
2438 return FALSE;
2439 ++dllname;
2440 scriptname = strchr(dllname, ']');
2441 if (!scriptname)
2442 return FALSE;
2443 *scriptname++ = '\0';
2444 /* this function may be called more than one time with the same
2445 script, only run it one time */
2446 if (strcmp(lastscript, scriptname)) {
2447 char *argv[3] = {NULL, "-remove", NULL};
2448 char *buffer = NULL;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002449
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002450 argv[0] = scriptname;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002451
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002452 if (0 != run_installscript(scriptname, 2, argv, &buffer))
2453 fprintf(stderr, "*** Could not run installation script ***");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002454
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002455 if (buffer && buffer[0])
2456 MessageBox(GetFocus(), buffer, "uninstall-script", MB_OK);
2457 free(buffer);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002458
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002459 strcpy(lastscript, scriptname);
2460 }
2461 return TRUE;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002462}
2463
2464int DoUninstall(int argc, char **argv)
2465{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002466 FILE *logfile;
2467 char buffer[4096];
2468 int nLines = 0;
2469 int i;
2470 char *cp;
2471 int nFiles = 0;
2472 int nDirs = 0;
2473 int nErrors = 0;
2474 char **lines;
2475 int lines_buffer_size = 10;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002476
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002477 if (argc != 3) {
2478 MessageBox(NULL,
2479 "Wrong number of args",
2480 NULL,
2481 MB_OK);
2482 return 1; /* Error */
2483 }
2484 if (strcmp(argv[1], "-u")) {
2485 MessageBox(NULL,
2486 "2. arg is not -u",
2487 NULL,
2488 MB_OK);
2489 return 1; /* Error */
2490 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002491
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002492 logfile = fopen(argv[2], "r");
2493 if (!logfile) {
2494 MessageBox(NULL,
2495 "could not open logfile",
2496 NULL,
2497 MB_OK);
2498 return 1; /* Error */
2499 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002500
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002501 lines = (char **)malloc(sizeof(char *) * lines_buffer_size);
2502 if (!lines)
2503 return SystemError(0, "Out of memory");
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002504
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002505 /* Read the whole logfile, realloacting the buffer */
2506 while (fgets(buffer, sizeof(buffer), logfile)) {
2507 int len = strlen(buffer);
2508 /* remove trailing white space */
2509 while (isspace(buffer[len-1]))
2510 len -= 1;
2511 buffer[len] = '\0';
2512 lines[nLines++] = strdup(buffer);
2513 if (nLines >= lines_buffer_size) {
2514 lines_buffer_size += 10;
2515 lines = (char **)realloc(lines,
2516 sizeof(char *) * lines_buffer_size);
2517 if (!lines)
2518 return SystemError(0, "Out of memory");
2519 }
2520 }
2521 fclose(logfile);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002522
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002523 /* Sort all the lines, so that highest 3-digit codes are first */
2524 qsort(&lines[0], nLines, sizeof(char *),
2525 compare);
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002526
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002527 if (IDYES != MessageBox(NULL,
2528 "Are you sure you want to remove\n"
2529 "this package from your computer?",
2530 "Please confirm",
2531 MB_YESNO | MB_ICONQUESTION))
2532 return 0;
2533
2534 hkey_root = HKEY_LOCAL_MACHINE;
2535 cp = "";
2536 for (i = 0; i < nLines; ++i) {
2537 /* Ignore duplicate lines */
2538 if (strcmp(cp, lines[i])) {
2539 int ign;
2540 cp = lines[i];
2541 /* Parse the lines */
2542 if (2 == sscanf(cp, "%d Root Key: %s", &ign, &buffer)) {
2543 if (strcmp(buffer, "HKEY_CURRENT_USER")==0)
2544 hkey_root = HKEY_CURRENT_USER;
2545 else {
2546 // HKLM - check they have permissions.
2547 if (!HasLocalMachinePrivs()) {
2548 MessageBox(GetFocus(),
2549 "You do not seem to have sufficient access rights\n"
2550 "on this machine to uninstall this software",
2551 NULL,
2552 MB_OK | MB_ICONSTOP);
2553 return 1; /* Error */
2554 }
2555 }
2556 } else if (2 == sscanf(cp, "%d Made Dir: %s", &ign, &buffer)) {
2557 if (MyRemoveDirectory(cp))
2558 ++nDirs;
2559 else {
2560 int code = GetLastError();
2561 if (code != 2 && code != 3) { /* file or path not found */
2562 ++nErrors;
2563 }
2564 }
2565 } else if (2 == sscanf(cp, "%d File Copy: %s", &ign, &buffer)) {
2566 if (MyDeleteFile(cp))
2567 ++nFiles;
2568 else {
2569 int code = GetLastError();
2570 if (code != 2 && code != 3) { /* file or path not found */
2571 ++nErrors;
2572 }
2573 }
2574 } else if (2 == sscanf(cp, "%d File Overwrite: %s", &ign, &buffer)) {
2575 if (MyDeleteFile(cp))
2576 ++nFiles;
2577 else {
2578 int code = GetLastError();
2579 if (code != 2 && code != 3) { /* file or path not found */
2580 ++nErrors;
2581 }
2582 }
2583 } else if (2 == sscanf(cp, "%d Reg DB Key: %s", &ign, &buffer)) {
2584 DeleteRegistryKey(cp);
2585 } else if (2 == sscanf(cp, "%d Reg DB Value: %s", &ign, &buffer)) {
2586 DeleteRegistryValue(cp);
2587 } else if (2 == sscanf(cp, "%d Run Script: %s", &ign, &buffer)) {
2588 Run_RemoveScript(cp);
2589 }
2590 }
2591 }
2592
2593 if (DeleteFile(argv[2])) {
2594 ++nFiles;
2595 } else {
2596 ++nErrors;
2597 SystemError(GetLastError(), argv[2]);
2598 }
2599 if (nErrors)
2600 wsprintf(buffer,
2601 "%d files and %d directories removed\n"
2602 "%d files or directories could not be removed",
2603 nFiles, nDirs, nErrors);
2604 else
2605 wsprintf(buffer, "%d files and %d directories removed",
2606 nFiles, nDirs);
2607 MessageBox(NULL, buffer, "Uninstall Finished!",
2608 MB_OK | MB_ICONINFORMATION);
2609 remove_exe();
2610 return 0;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002611}
2612
2613int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst,
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002614 LPSTR lpszCmdLine, INT nCmdShow)
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002615{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002616 extern int __argc;
2617 extern char **__argv;
2618 char *basename;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002619
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002620 GetModuleFileName(NULL, modulename, sizeof(modulename));
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002621
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002622 /* Map the executable file to memory */
2623 arc_data = MapExistingFile(modulename, &arc_size);
2624 if (!arc_data) {
2625 SystemError(GetLastError(), "Could not open archive");
2626 return 1;
2627 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002628
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002629 /* OK. So this program can act as installer (self-extracting
2630 * zip-file, or as uninstaller when started with '-u logfile'
2631 * command line flags.
2632 *
2633 * The installer is usually started without command line flags,
2634 * and the uninstaller is usually started with the '-u logfile'
2635 * flag. What to do if some innocent user double-clicks the
2636 * exe-file?
2637 * The following implements a defensive strategy...
2638 */
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002639
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002640 /* Try to extract the configuration data into a temporary file */
2641 if (ExtractInstallData(arc_data, arc_size, &exe_size,
2642 &ini_file, &pre_install_script))
2643 return DoInstall();
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002644
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002645 if (!ini_file && __argc > 1) {
2646 return DoUninstall(__argc, __argv);
2647 }
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002648
2649
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002650 basename = strrchr(modulename, '\\');
2651 if (basename)
2652 ++basename;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002653
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002654 /* Last guess about the purpose of this program */
2655 if (basename && (0 == strncmp(basename, "Remove", 6)))
2656 SystemError(0, "This program is normally started by windows");
2657 else
2658 SystemError(0, "Setup program invalid or damaged");
2659 return 1;
Thomas Hellerbb4b7d22002-11-22 20:39:33 +00002660}