1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
#include "stdafx.h"
#include <msi.h>
#include <windows.h>
#include <nsis/pluginapi.h>
#include "../error.h"
#include <log/log.h>
#include <libcommon/string.h>
#include <libcommon/error.h>
namespace
{
std::wstring PopString()
{
//
// NSIS functions popstring() and popstringn() require that you definitely size the buffer
// before popping the string. Let's do it ourselves instead.
//
if (!g_stacktop || !*g_stacktop)
{
THROW_ERROR("NSIS variable stack is corrupted");
}
stack_t *th = *g_stacktop;
std::wstring copy(th->text);
*g_stacktop = th->next;
GlobalFree((HGLOBAL)th);
return copy;
}
EXTERN_C IMAGE_DOS_HEADER __ImageBase;
void PinDll()
{
//
// Apparently NSIS loads and unloads the plugin module for EVERY call it makes to the plugin.
// This makes it kind of difficult to maintain state.
//
// We can work around this by incrementing the module reference count.
// When NSIS calls FreeLibrary() the reference count decrements and becomes one.
//
wchar_t self[MAX_PATH];
if (0 == GetModuleFileNameW((HINSTANCE)&__ImageBase, self, _countof(self)))
{
THROW_ERROR("Failed to pin plugin module");
}
//
// For some reason, NSIS frees this particular DLL more times than it loads it
// so we have to up the reference count significantly.
//
for (int i = 0; i < 100; ++i)
{
LoadLibraryW(self);
}
}
int WINAPI InstallerHandler(
LPVOID context,
UINT type,
LPCWSTR message
)
{
// Do not log potentially sensitive information
if (0 == _wcsnicmp(message, L"Property", _countof(L"Property") - sizeof(L'\0')))
{
return 0;
}
PluginLog(message);
// return 0 to pass it on to the installer
return 0;
}
} // anonymous namespace
//
// SilentInstall "installer.msi"
//
// Performs a silent install and logs the results.
//
// Return: Empty string and NsisStatus::SUCCESS on success.
// Otherwise an error string and NsisStatus::GENERAL_ERROR.
//
void __declspec(dllexport) NSISCALL SilentInstall
(
HWND hwndParent,
int string_size,
LPTSTR variables,
stack_t **stacktop,
extra_parameters *extra,
...
)
{
EXDLL_INIT();
try
{
const auto msiFile = PopString();
MsiSetInternalUI(INSTALLUILEVEL_NONE, nullptr);
MsiSetExternalUIW(
InstallerHandler,
INSTALLLOGMODE_INFO |
INSTALLLOGMODE_WARNING |
INSTALLLOGMODE_ERROR |
INSTALLLOGMODE_FATALEXIT |
INSTALLLOGMODE_OUTOFDISKSPACE |
INSTALLLOGMODE_RMFILESINUSE |
INSTALLLOGMODE_FILESINUSE,
nullptr
);
const auto installResult = MsiInstallProductW(
msiFile.c_str(),
L"ACTION=INSTALL "
L"REBOOT=ReallySuppress"
);
if (ERROR_SUCCESS != installResult)
{
pushstring(common::string::ToWide(common::error::FormatWindowsError(installResult)).c_str());
pushint(NsisStatus::GENERAL_ERROR);
return;
}
pushstring(L"");
pushint(NsisStatus::SUCCESS);
}
catch (std::exception & err)
{
pushstring(common::string::ToWide(err.what()).c_str());
pushint(NsisStatus::GENERAL_ERROR);
}
catch (...)
{
pushstring(L"Unspecified error");
pushint(NsisStatus::GENERAL_ERROR);
}
}
//
// SilentUninstall "installer.msi"
//
// Performs a silent uninstall and logs the results.
//
// Return: Empty string and NsisStatus::SUCCESS on success.
// Otherwise an error string and NsisStatus::GENERAL_ERROR.
//
void __declspec(dllexport) NSISCALL SilentUninstall
(
HWND hwndParent,
int string_size,
LPTSTR variables,
stack_t **stacktop,
extra_parameters *extra,
...
)
{
EXDLL_INIT();
try
{
const auto msiFile = PopString();
MsiSetInternalUI(INSTALLUILEVEL_NONE, nullptr);
MsiSetExternalUIW(
InstallerHandler,
INSTALLLOGMODE_INFO |
INSTALLLOGMODE_WARNING |
INSTALLLOGMODE_ERROR |
INSTALLLOGMODE_FATALEXIT |
INSTALLLOGMODE_OUTOFDISKSPACE |
INSTALLLOGMODE_RMFILESINUSE |
INSTALLLOGMODE_FILESINUSE,
nullptr
);
const auto installResult = MsiInstallProductW(
msiFile.c_str(),
L"REMOVE=ALL "
L"REBOOT=ReallySuppress"
);
if (ERROR_SUCCESS != installResult)
{
pushstring(common::string::ToWide(common::error::FormatWindowsError(installResult)).c_str());
pushint(NsisStatus::GENERAL_ERROR);
return;
}
pushstring(L"");
pushint(NsisStatus::SUCCESS);
}
catch (std::exception & err)
{
pushstring(common::string::ToWide(err.what()).c_str());
pushint(NsisStatus::GENERAL_ERROR);
}
catch (...)
{
pushstring(L"Unspecified error");
pushint(NsisStatus::GENERAL_ERROR);
}
}
|