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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#include "precomp.h"
#include "butil.h"
// constants
// From engine/registration.h
const LPCWSTR BUNDLE_REGISTRATION_REGISTRY_UNINSTALL_KEY = L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall";
const LPCWSTR BUNDLE_REGISTRATION_REGISTRY_BUNDLE_UPGRADE_CODE = L"BundleUpgradeCode";
const LPCWSTR BUNDLE_REGISTRATION_REGISTRY_BUNDLE_PROVIDER_KEY = L"BundleProviderKey";
// Forward declarations.
static HRESULT OpenBundleKey(
__in LPCWSTR wzBundleId,
__in BUNDLE_INSTALL_CONTEXT context,
__inout HKEY *key);
/********************************************************************
BundleGetBundleInfo - Queries the bundle installation metadata for a given property
RETURNS:
E_INVALIDARG
An invalid parameter was passed to the function.
HRESULT_FROM_WIN32(ERROR_UNKNOWN_PRODUCT)
The bundle is not installed
HRESULT_FROM_WIN32(ERROR_UNKNOWN_PROPERTY)
The property is unrecognized
HRESULT_FROM_WIN32(ERROR_MORE_DATA)
A buffer is too small to hold the requested data.
E_NOTIMPL:
Tried to read a bundle attribute for a type which has not been implemented
All other returns are unexpected returns from other dutil methods.
********************************************************************/
extern "C" HRESULT DAPI BundleGetBundleInfo(
__in LPCWSTR wzBundleId,
__in LPCWSTR wzAttribute,
__out_ecount_opt(*pcchValueBuf) LPWSTR lpValueBuf,
__inout_opt LPDWORD pcchValueBuf
)
{
Assert(wzBundleId && wzAttribute);
HRESULT hr = S_OK;
BUNDLE_INSTALL_CONTEXT context = BUNDLE_INSTALL_CONTEXT_MACHINE;
LPWSTR sczValue = NULL;
HKEY hkBundle = NULL;
DWORD cchSource = 0;
DWORD dwType = 0;
DWORD dwValue = 0;
if ((lpValueBuf && !pcchValueBuf) || !wzBundleId || !wzAttribute)
{
ExitOnFailure(hr = E_INVALIDARG, "An invalid parameter was passed to the function.");
}
if (FAILED(hr = OpenBundleKey(wzBundleId, context = BUNDLE_INSTALL_CONTEXT_MACHINE, &hkBundle)) &&
FAILED(hr = OpenBundleKey(wzBundleId, context = BUNDLE_INSTALL_CONTEXT_USER, &hkBundle)))
{
ExitOnFailure(E_FILENOTFOUND == hr ? HRESULT_FROM_WIN32(ERROR_UNKNOWN_PRODUCT) : hr, "Failed to locate bundle uninstall key path.");
}
// If the bundle doesn't have the property defined, return ERROR_UNKNOWN_PROPERTY
hr = RegGetType(hkBundle, wzAttribute, &dwType);
ExitOnFailure(E_FILENOTFOUND == hr ? HRESULT_FROM_WIN32(ERROR_UNKNOWN_PROPERTY) : hr, "Failed to locate bundle property.");
switch (dwType)
{
case REG_SZ:
hr = RegReadString(hkBundle, wzAttribute, &sczValue);
ExitOnFailure(hr, "Failed to read string property.");
break;
case REG_DWORD:
hr = RegReadNumber(hkBundle, wzAttribute, &dwValue);
ExitOnFailure(hr, "Failed to read dword property.");
hr = StrAllocFormatted(&sczValue, L"%d", dwValue);
ExitOnFailure(hr, "Failed to format dword property as string.");
break;
default:
ExitOnFailure(hr = E_NOTIMPL, "Reading bundle info of type 0x%x not implemented.", dwType);
}
hr = ::StringCchLengthW(sczValue, STRSAFE_MAX_CCH, reinterpret_cast<UINT_PTR*>(&cchSource));
ExitOnFailure(hr, "Failed to calculate length of string");
if (lpValueBuf)
{
// cchSource is the length of the string not including the terminating null character
if (*pcchValueBuf <= cchSource)
{
*pcchValueBuf = ++cchSource;
ExitOnFailure(hr = HRESULT_FROM_WIN32(ERROR_MORE_DATA), "A buffer is too small to hold the requested data.");
}
hr = ::StringCchCatNExW(lpValueBuf, *pcchValueBuf, sczValue, cchSource, NULL, NULL, STRSAFE_FILL_BEHIND_NULL);
ExitOnFailure(hr, "Failed to copy the property value to the output buffer.");
*pcchValueBuf = cchSource++;
}
LExit:
ReleaseRegKey(hkBundle);
ReleaseStr(sczValue);
return hr;
}
/********************************************************************
BundleEnumRelatedBundle - Queries the bundle installation metadata for installs with the given upgrade code
NOTE: lpBundleIdBuff is a buffer to receive the bundle GUID. This buffer must be 39 characters long.
The first 38 characters are for the GUID, and the last character is for the terminating null character.
RETURNS:
E_INVALIDARG
An invalid parameter was passed to the function.
All other returns are unexpected returns from other dutil methods.
********************************************************************/
HRESULT DAPI BundleEnumRelatedBundle(
__in LPCWSTR wzUpgradeCode,
__in BUNDLE_INSTALL_CONTEXT context,
__inout PDWORD pdwStartIndex,
__out_ecount(MAX_GUID_CHARS+1) LPWSTR lpBundleIdBuf
)
{
HRESULT hr = S_OK;
HKEY hkRoot = BUNDLE_INSTALL_CONTEXT_USER == context ? HKEY_CURRENT_USER : HKEY_LOCAL_MACHINE;
HKEY hkUninstall = NULL;
HKEY hkBundle = NULL;
LPWSTR sczUninstallSubKey = NULL;
DWORD cchUninstallSubKey = 0;
LPWSTR sczUninstallSubKeyPath = NULL;
LPWSTR sczValue = NULL;
DWORD dwType = 0;
LPWSTR* rgsczBundleUpgradeCodes = NULL;
DWORD cBundleUpgradeCodes = 0;
BOOL fUpgradeCodeFound = FALSE;
if (!wzUpgradeCode || !lpBundleIdBuf || !pdwStartIndex)
{
ExitOnFailure(hr = E_INVALIDARG, "An invalid parameter was passed to the function.");
}
hr = RegOpen(hkRoot, BUNDLE_REGISTRATION_REGISTRY_UNINSTALL_KEY, KEY_READ, &hkUninstall);
ExitOnFailure(hr, "Failed to open bundle uninstall key path.");
for (DWORD dwIndex = *pdwStartIndex; !fUpgradeCodeFound; dwIndex++)
{
hr = RegKeyEnum(hkUninstall, dwIndex, &sczUninstallSubKey);
ExitOnFailure(hr, "Failed to enumerate bundle uninstall key path.");
hr = StrAllocFormatted(&sczUninstallSubKeyPath, L"%ls\\%ls", BUNDLE_REGISTRATION_REGISTRY_UNINSTALL_KEY, sczUninstallSubKey);
ExitOnFailure(hr, "Failed to allocate bundle uninstall key path.");
hr = RegOpen(hkRoot, sczUninstallSubKeyPath, KEY_READ, &hkBundle);
ExitOnFailure(hr, "Failed to open uninstall key path.");
// If it's a bundle, it should have a BundleUpgradeCode value of type REG_SZ (old) or REG_MULTI_SZ
hr = RegGetType(hkBundle, BUNDLE_REGISTRATION_REGISTRY_BUNDLE_UPGRADE_CODE, &dwType);
if (FAILED(hr))
{
ReleaseRegKey(hkBundle);
ReleaseNullStr(sczUninstallSubKey);
ReleaseNullStr(sczUninstallSubKeyPath);
// Not a bundle
continue;
}
switch (dwType)
{
case REG_SZ:
hr = RegReadString(hkBundle, BUNDLE_REGISTRATION_REGISTRY_BUNDLE_UPGRADE_CODE, &sczValue);
ExitOnFailure(hr, "Failed to read BundleUpgradeCode string property.");
if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, NORM_IGNORECASE, sczValue, -1, wzUpgradeCode, -1))
{
*pdwStartIndex = dwIndex;
fUpgradeCodeFound = TRUE;
break;
}
ReleaseNullStr(sczValue);
break;
case REG_MULTI_SZ:
hr = RegReadStringArray(hkBundle, BUNDLE_REGISTRATION_REGISTRY_BUNDLE_UPGRADE_CODE, &rgsczBundleUpgradeCodes, &cBundleUpgradeCodes);
ExitOnFailure(hr, "Failed to read BundleUpgradeCode multi-string property.");
for (DWORD i = 0; i < cBundleUpgradeCodes; i++)
{
LPWSTR wzBundleUpgradeCode = rgsczBundleUpgradeCodes[i];
if (wzBundleUpgradeCode && *wzBundleUpgradeCode)
{
if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, NORM_IGNORECASE, wzBundleUpgradeCode, -1, wzUpgradeCode, -1))
{
*pdwStartIndex = dwIndex;
fUpgradeCodeFound = TRUE;
break;
}
}
}
ReleaseNullStrArray(rgsczBundleUpgradeCodes, cBundleUpgradeCodes);
break;
default:
ExitOnFailure(hr = E_NOTIMPL, "BundleUpgradeCode of type 0x%x not implemented.", dwType);
}
if (fUpgradeCodeFound)
{
if (lpBundleIdBuf)
{
hr = ::StringCchLengthW(sczUninstallSubKey, STRSAFE_MAX_CCH, reinterpret_cast<UINT_PTR*>(&cchUninstallSubKey));
ExitOnFailure(hr, "Failed to calculate length of string");
hr = ::StringCchCopyNExW(lpBundleIdBuf, MAX_GUID_CHARS + 1, sczUninstallSubKey, cchUninstallSubKey, NULL, NULL, STRSAFE_FILL_BEHIND_NULL);
ExitOnFailure(hr, "Failed to copy the property value to the output buffer.");
}
break;
}
// Cleanup before next iteration
ReleaseRegKey(hkBundle);
ReleaseNullStr(sczUninstallSubKey);
ReleaseNullStr(sczUninstallSubKeyPath);
}
LExit:
ReleaseStr(sczValue);
ReleaseStr(sczUninstallSubKey);
ReleaseStr(sczUninstallSubKeyPath);
ReleaseRegKey(hkBundle);
ReleaseRegKey(hkUninstall);
ReleaseStrArray(rgsczBundleUpgradeCodes, cBundleUpgradeCodes);
return hr;
}
/********************************************************************
OpenBundleKey - Opens the bundle uninstallation key for a given bundle
NOTE: caller is responsible for closing key
********************************************************************/
HRESULT OpenBundleKey(
__in LPCWSTR wzBundleId,
__in BUNDLE_INSTALL_CONTEXT context,
__inout HKEY *key)
{
Assert(key && wzBundleId);
AssertSz(NULL == *key, "*key should be null");
HRESULT hr = S_OK;
HKEY hkRoot = BUNDLE_INSTALL_CONTEXT_USER == context ? HKEY_CURRENT_USER : HKEY_LOCAL_MACHINE;
LPWSTR sczKeypath = NULL;
hr = StrAllocFormatted(&sczKeypath, L"%ls\\%ls", BUNDLE_REGISTRATION_REGISTRY_UNINSTALL_KEY, wzBundleId);
ExitOnFailure(hr, "Failed to allocate bundle uninstall key path.");
hr = RegOpen(hkRoot, sczKeypath, KEY_READ, key);
ExitOnFailure(hr, "Failed to open bundle uninstall key path.");
LExit:
ReleaseStr(sczKeypath);
return hr;
}
|