2005-01-25 11:58:36 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the Microsoft Installer (msi.dll)
|
|
|
|
*
|
2005-01-26 20:41:13 +01:00
|
|
|
* Copyright 2005 Mike McCormack for CodeWeavers
|
2005-01-25 11:58:36 +01:00
|
|
|
* Copyright 2005 Aric Stewart for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-01-25 11:58:36 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winreg.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
#include "shlwapi.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "msi.h"
|
|
|
|
#include "msipriv.h"
|
|
|
|
#include "wincrypt.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "winver.h"
|
|
|
|
#include "winuser.h"
|
2007-06-27 04:01:03 +02:00
|
|
|
#include "sddl.h"
|
2005-01-25 11:58:36 +01:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msi);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This module will be all the helper functions for registry access by the
|
|
|
|
* installer bits.
|
|
|
|
*/
|
|
|
|
static const WCHAR szUserFeatures_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'F','e','a','t','u','r','e','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
2007-07-03 05:22:57 +02:00
|
|
|
static const WCHAR szUserDataFeatures_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'U','s','e','r','D','a','t','a','\\',
|
|
|
|
'%','s','\\','P','r','o','d','u','c','t','s','\\',
|
|
|
|
'%','s','\\','F','e','a','t','u','r','e','s',0};
|
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
static const WCHAR szInstaller_Features_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'F','e','a','t','u','r','e','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
|
|
|
static const WCHAR szInstaller_Components[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'C','o','m','p','o','n','e','n','t','s',0 };
|
|
|
|
|
2005-04-20 14:50:05 +02:00
|
|
|
static const WCHAR szUser_Components_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'C','o','m','p','o','n','e','n','t','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
2007-07-03 05:24:40 +02:00
|
|
|
static const WCHAR szUserDataComp_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'U','s','e','r','D','a','t','a','\\',
|
|
|
|
'%','s','\\','C','o','m','p','o','n','e','n','t','s','\\','%','s',0};
|
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
static const WCHAR szUninstall_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'U','n','i','n','s','t','a','l','l','\\',
|
|
|
|
'%','s',0 };
|
|
|
|
|
2010-10-05 16:37:33 +02:00
|
|
|
static const WCHAR szUninstall_32node_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'W','o','w','6','4','3','2','N','o','d','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'U','n','i','n','s','t','a','l','l','\\',
|
|
|
|
'%','s',0 };
|
|
|
|
|
2009-03-27 13:40:16 +01:00
|
|
|
static const WCHAR szUserProduct[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','r','o','d','u','c','t','s',0};
|
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
static const WCHAR szUserProduct_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','r','o','d','u','c','t','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
2007-07-03 05:18:34 +02:00
|
|
|
static const WCHAR szUserPatch_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','a','t','c','h','e','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
2007-05-20 21:31:54 +02:00
|
|
|
static const WCHAR szInstaller_Products[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','r','o','d','u','c','t','s',0};
|
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
static const WCHAR szInstaller_Products_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','r','o','d','u','c','t','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
2007-07-03 05:18:34 +02:00
|
|
|
static const WCHAR szInstaller_Patches_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','a','t','c','h','e','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
2005-03-10 18:24:05 +01:00
|
|
|
static const WCHAR szInstaller_UpgradeCodes_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'U','p','g','r','a','d','e','C','o','d','e','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
2005-06-07 22:02:27 +02:00
|
|
|
static const WCHAR szInstaller_UserUpgradeCodes_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'U','p','g','r','a','d','e','C','o','d','e','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
2007-06-27 04:01:03 +02:00
|
|
|
static const WCHAR szUserDataProd_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'U','s','e','r','D','a','t','a','\\',
|
|
|
|
'%','s','\\','P','r','o','d','u','c','t','s','\\','%','s',0};
|
|
|
|
|
2008-12-08 10:14:21 +01:00
|
|
|
static const WCHAR szUserDataPatch_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'U','s','e','r','D','a','t','a','\\',
|
|
|
|
'%','s','\\','P','a','t','c','h','e','s','\\','%','s',0};
|
|
|
|
|
2010-05-04 09:07:39 +02:00
|
|
|
static const WCHAR szUserDataProductPatches_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'U','s','e','r','D','a','t','a','\\',
|
|
|
|
'%','s','\\','P','r','o','d','u','c','t','s','\\','%','s','\\',
|
|
|
|
'P','a','t','c','h','e','s',0};
|
|
|
|
|
2007-07-03 05:21:58 +02:00
|
|
|
static const WCHAR szInstallProperties_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'U','s','e','r','D','a','t','a','\\',
|
|
|
|
'%','s','\\','P','r','o','d','u','c','t','s','\\','%','s','\\',
|
|
|
|
'I','n','s','t','a','l','l','P','r','o','p','e','r','t','i','e','s',0};
|
|
|
|
|
2009-03-27 13:40:16 +01:00
|
|
|
static const WCHAR szInstaller_LocalClassesProd[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'C','l','a','s','s','e','s','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','r','o','d','u','c','t','s',0};
|
|
|
|
|
2007-08-09 03:42:30 +02:00
|
|
|
static const WCHAR szInstaller_LocalClassesProd_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'C','l','a','s','s','e','s','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','r','o','d','u','c','t','s','\\','%','s',0};
|
|
|
|
|
2008-06-19 07:32:59 +02:00
|
|
|
static const WCHAR szInstaller_LocalClassesFeat_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'C','l','a','s','s','e','s','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'F','e','a','t','u','r','e','s','\\','%','s',0};
|
|
|
|
|
2009-03-27 13:40:16 +01:00
|
|
|
static const WCHAR szInstaller_LocalManaged_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'M','a','n','a','g','e','d','\\','%','s','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','r','o','d','u','c','t','s',0};
|
|
|
|
|
2007-08-09 03:42:30 +02:00
|
|
|
static const WCHAR szInstaller_LocalManagedProd_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'M','a','n','a','g','e','d','\\','%','s','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'P','r','o','d','u','c','t','s','\\','%','s',0};
|
2005-06-07 22:02:27 +02:00
|
|
|
|
2008-06-24 06:06:37 +02:00
|
|
|
static const WCHAR szInstaller_LocalManagedFeat_fmt[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'M','a','n','a','g','e','d','\\','%','s','\\',
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'F','e','a','t','u','r','e','s','\\','%','s',0};
|
|
|
|
|
2008-06-24 06:04:46 +02:00
|
|
|
static const WCHAR szInstaller_ClassesUpgrade_fmt[] = {
|
|
|
|
'I','n','s','t','a','l','l','e','r','\\',
|
|
|
|
'U','p','g','r','a','d','e','C','o','d','e','s','\\',
|
|
|
|
'%','s',0};
|
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
BOOL unsquash_guid(LPCWSTR in, LPWSTR out)
|
|
|
|
{
|
|
|
|
DWORD i,n=0;
|
|
|
|
|
2008-12-08 10:14:21 +01:00
|
|
|
if (lstrlenW(in) != 32)
|
|
|
|
return FALSE;
|
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
out[n++]='{';
|
|
|
|
for(i=0; i<8; i++)
|
|
|
|
out[n++] = in[7-i];
|
|
|
|
out[n++]='-';
|
|
|
|
for(i=0; i<4; i++)
|
|
|
|
out[n++] = in[11-i];
|
|
|
|
out[n++]='-';
|
|
|
|
for(i=0; i<4; i++)
|
|
|
|
out[n++] = in[15-i];
|
|
|
|
out[n++]='-';
|
|
|
|
for(i=0; i<2; i++)
|
|
|
|
{
|
|
|
|
out[n++] = in[17+i*2];
|
|
|
|
out[n++] = in[16+i*2];
|
|
|
|
}
|
|
|
|
out[n++]='-';
|
|
|
|
for( ; i<8; i++)
|
|
|
|
{
|
|
|
|
out[n++] = in[17+i*2];
|
|
|
|
out[n++] = in[16+i*2];
|
|
|
|
}
|
|
|
|
out[n++]='}';
|
|
|
|
out[n]=0;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL squash_guid(LPCWSTR in, LPWSTR out)
|
|
|
|
{
|
2006-07-24 13:34:05 +02:00
|
|
|
DWORD i,n=1;
|
|
|
|
GUID guid;
|
2005-01-25 11:58:36 +01:00
|
|
|
|
2007-07-30 20:13:04 +02:00
|
|
|
out[0] = 0;
|
|
|
|
|
2010-03-26 18:59:50 +01:00
|
|
|
if (FAILED(CLSIDFromString((LPCOLESTR)in, &guid)))
|
2005-01-25 11:58:36 +01:00
|
|
|
return FALSE;
|
2006-07-24 13:34:05 +02:00
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
for(i=0; i<8; i++)
|
|
|
|
out[7-i] = in[n++];
|
2006-07-24 13:34:05 +02:00
|
|
|
n++;
|
2005-01-25 11:58:36 +01:00
|
|
|
for(i=0; i<4; i++)
|
|
|
|
out[11-i] = in[n++];
|
2006-07-24 13:34:05 +02:00
|
|
|
n++;
|
2005-01-25 11:58:36 +01:00
|
|
|
for(i=0; i<4; i++)
|
|
|
|
out[15-i] = in[n++];
|
2006-07-24 13:34:05 +02:00
|
|
|
n++;
|
2005-01-25 11:58:36 +01:00
|
|
|
for(i=0; i<2; i++)
|
|
|
|
{
|
|
|
|
out[17+i*2] = in[n++];
|
|
|
|
out[16+i*2] = in[n++];
|
|
|
|
}
|
2006-07-24 13:34:05 +02:00
|
|
|
n++;
|
2005-01-25 11:58:36 +01:00
|
|
|
for( ; i<8; i++)
|
|
|
|
{
|
|
|
|
out[17+i*2] = in[n++];
|
|
|
|
out[16+i*2] = in[n++];
|
|
|
|
}
|
|
|
|
out[32]=0;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* tables for encoding and decoding base85 */
|
|
|
|
static const unsigned char table_dec85[0x80] = {
|
|
|
|
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
|
|
|
|
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
|
|
|
|
0xff,0x00,0xff,0xff,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0xff,
|
|
|
|
0x0c,0x0d,0x0e,0x0f,0x10,0x11,0x12,0x13,0x14,0x15,0xff,0xff,0xff,0x16,0xff,0x17,
|
|
|
|
0x18,0x19,0x1a,0x1b,0x1c,0x1d,0x1e,0x1f,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,
|
|
|
|
0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,0x30,0x31,0x32,0x33,0xff,0x34,0x35,0x36,
|
|
|
|
0x37,0x38,0x39,0x3a,0x3b,0x3c,0x3d,0x3e,0x3f,0x40,0x41,0x42,0x43,0x44,0x45,0x46,
|
|
|
|
0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0xff,0x53,0x54,0xff,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char table_enc85[] =
|
|
|
|
"!$%&'()*+,-.0123456789=?@ABCDEFGHIJKLMNO"
|
|
|
|
"PQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwx"
|
|
|
|
"yz{}~";
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Converts a base85 encoded guid into a GUID pointer
|
|
|
|
* Base85 encoded GUIDs should be 20 characters long.
|
|
|
|
*
|
|
|
|
* returns TRUE if successful, FALSE if not
|
|
|
|
*/
|
|
|
|
BOOL decode_base85_guid( LPCWSTR str, GUID *guid )
|
|
|
|
{
|
|
|
|
DWORD i, val = 0, base = 1, *p;
|
|
|
|
|
2005-11-09 11:59:20 +01:00
|
|
|
if (!str)
|
|
|
|
return FALSE;
|
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
p = (DWORD*) guid;
|
|
|
|
for( i=0; i<20; i++ )
|
|
|
|
{
|
|
|
|
if( (i%5) == 0 )
|
|
|
|
{
|
|
|
|
val = 0;
|
|
|
|
base = 1;
|
|
|
|
}
|
|
|
|
val += table_dec85[str[i]] * base;
|
|
|
|
if( str[i] >= 0x80 )
|
|
|
|
return FALSE;
|
|
|
|
if( table_dec85[str[i]] == 0xff )
|
|
|
|
return FALSE;
|
|
|
|
if( (i%5) == 4 )
|
|
|
|
p[i/5] = val;
|
|
|
|
base *= 85;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Encodes a base85 guid given a GUID pointer
|
|
|
|
* Caller should provide a 21 character buffer for the encoded string.
|
|
|
|
*
|
|
|
|
* returns TRUE if successful, FALSE if not
|
|
|
|
*/
|
|
|
|
BOOL encode_base85_guid( GUID *guid, LPWSTR str )
|
|
|
|
{
|
|
|
|
unsigned int x, *p, i;
|
|
|
|
|
|
|
|
p = (unsigned int*) guid;
|
|
|
|
for( i=0; i<4; i++ )
|
|
|
|
{
|
|
|
|
x = p[i];
|
|
|
|
*str++ = table_enc85[x%85];
|
|
|
|
x = x/85;
|
|
|
|
*str++ = table_enc85[x%85];
|
|
|
|
x = x/85;
|
|
|
|
*str++ = table_enc85[x%85];
|
|
|
|
x = x/85;
|
|
|
|
*str++ = table_enc85[x%85];
|
|
|
|
x = x/85;
|
|
|
|
*str++ = table_enc85[x%85];
|
|
|
|
}
|
|
|
|
*str = 0;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-07-14 08:19:08 +02:00
|
|
|
DWORD msi_version_str_to_dword(LPCWSTR p)
|
|
|
|
{
|
|
|
|
DWORD major, minor = 0, build = 0, version = 0;
|
|
|
|
|
|
|
|
if (!p)
|
|
|
|
return version;
|
|
|
|
|
|
|
|
major = atoiW(p);
|
|
|
|
|
|
|
|
p = strchrW(p, '.');
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
minor = atoiW(p+1);
|
|
|
|
p = strchrW(p+1, '.');
|
|
|
|
if (p)
|
|
|
|
build = atoiW(p+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return MAKELONG(build, MAKEWORD(minor, major));
|
|
|
|
}
|
|
|
|
|
2006-07-14 08:18:35 +02:00
|
|
|
LONG msi_reg_set_val_str( HKEY hkey, LPCWSTR name, LPCWSTR value )
|
|
|
|
{
|
2008-04-22 17:05:05 +02:00
|
|
|
DWORD len;
|
2009-10-15 12:46:27 +02:00
|
|
|
if (!value) value = szEmpty;
|
2008-04-22 17:05:05 +02:00
|
|
|
len = (lstrlenW(value) + 1) * sizeof (WCHAR);
|
2006-09-17 09:52:49 +02:00
|
|
|
return RegSetValueExW( hkey, name, 0, REG_SZ, (const BYTE *)value, len );
|
2006-07-14 08:18:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LONG msi_reg_set_val_multi_str( HKEY hkey, LPCWSTR name, LPCWSTR value )
|
|
|
|
{
|
|
|
|
LPCWSTR p = value;
|
|
|
|
while (*p) p += lstrlenW(p) + 1;
|
|
|
|
return RegSetValueExW( hkey, name, 0, REG_MULTI_SZ,
|
2006-09-17 09:52:49 +02:00
|
|
|
(const BYTE *)value, (p + 1 - value) * sizeof(WCHAR) );
|
2006-07-14 08:18:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LONG msi_reg_set_val_dword( HKEY hkey, LPCWSTR name, DWORD val )
|
|
|
|
{
|
|
|
|
return RegSetValueExW( hkey, name, 0, REG_DWORD, (LPBYTE)&val, sizeof (DWORD) );
|
|
|
|
}
|
|
|
|
|
|
|
|
LONG msi_reg_set_subkey_val( HKEY hkey, LPCWSTR path, LPCWSTR name, LPCWSTR val )
|
|
|
|
{
|
|
|
|
HKEY hsubkey = 0;
|
|
|
|
LONG r;
|
|
|
|
|
|
|
|
r = RegCreateKeyW( hkey, path, &hsubkey );
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
return r;
|
|
|
|
r = msi_reg_set_val_str( hsubkey, name, val );
|
|
|
|
RegCloseKey( hsubkey );
|
|
|
|
return r;
|
|
|
|
}
|
2005-01-25 11:58:36 +01:00
|
|
|
|
2006-07-14 08:19:32 +02:00
|
|
|
LPWSTR msi_reg_get_val_str( HKEY hkey, LPCWSTR name )
|
|
|
|
{
|
|
|
|
DWORD len = 0;
|
|
|
|
LPWSTR val;
|
|
|
|
LONG r;
|
|
|
|
|
|
|
|
r = RegQueryValueExW(hkey, name, NULL, NULL, NULL, &len);
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
len += sizeof (WCHAR);
|
|
|
|
val = msi_alloc( len );
|
|
|
|
if (!val)
|
|
|
|
return NULL;
|
|
|
|
val[0] = 0;
|
|
|
|
RegQueryValueExW(hkey, name, NULL, NULL, (LPBYTE) val, &len);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL msi_reg_get_val_dword( HKEY hkey, LPCWSTR name, DWORD *val)
|
|
|
|
{
|
|
|
|
DWORD type, len = sizeof (DWORD);
|
|
|
|
LONG r = RegQueryValueExW(hkey, name, NULL, &type, (LPBYTE) val, &len);
|
|
|
|
return r == ERROR_SUCCESS && type == REG_DWORD;
|
|
|
|
}
|
|
|
|
|
2007-07-03 05:22:57 +02:00
|
|
|
static UINT get_user_sid(LPWSTR *usersid)
|
|
|
|
{
|
|
|
|
HANDLE token;
|
|
|
|
BYTE buf[1024];
|
|
|
|
DWORD size;
|
|
|
|
PTOKEN_USER user;
|
|
|
|
|
|
|
|
if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, &token))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
|
|
|
size = sizeof(buf);
|
2009-01-15 09:46:57 +01:00
|
|
|
if (!GetTokenInformation(token, TokenUser, buf, size, &size)) {
|
2008-01-20 17:58:40 +01:00
|
|
|
CloseHandle(token);
|
2007-07-03 05:22:57 +02:00
|
|
|
return ERROR_FUNCTION_FAILED;
|
2008-01-20 17:58:40 +01:00
|
|
|
}
|
2007-07-03 05:22:57 +02:00
|
|
|
|
|
|
|
user = (PTOKEN_USER)buf;
|
2008-01-20 17:58:40 +01:00
|
|
|
if (!ConvertSidToStringSidW(user->User.Sid, usersid)) {
|
|
|
|
CloseHandle(token);
|
2007-07-03 05:22:57 +02:00
|
|
|
return ERROR_FUNCTION_FAILED;
|
2008-01-20 17:58:40 +01:00
|
|
|
}
|
|
|
|
CloseHandle(token);
|
2007-07-03 05:22:57 +02:00
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2010-10-05 16:37:33 +02:00
|
|
|
UINT MSIREG_OpenUninstallKey(MSIPACKAGE *package, HKEY *key, BOOL create)
|
2005-01-25 11:58:36 +01:00
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
2010-10-05 16:37:33 +02:00
|
|
|
TRACE("%s\n", debugstr_w(package->ProductCode));
|
|
|
|
|
|
|
|
if (is_64bit && package->platform == PLATFORM_INTEL)
|
|
|
|
sprintfW(keypath, szUninstall_32node_fmt, package->ProductCode);
|
|
|
|
else
|
|
|
|
sprintfW(keypath, szUninstall_fmt, package->ProductCode);
|
2005-01-25 11:58:36 +01:00
|
|
|
|
|
|
|
if (create)
|
2010-10-05 16:37:33 +02:00
|
|
|
rc = RegCreateKeyExW(HKEY_LOCAL_MACHINE, keypath, 0, NULL, 0, KEY_ALL_ACCESS, NULL, key, NULL);
|
2005-01-25 11:58:36 +01:00
|
|
|
else
|
2010-10-05 16:37:33 +02:00
|
|
|
rc = RegOpenKeyExW(HKEY_LOCAL_MACHINE, keypath, 0, KEY_ALL_ACCESS, key);
|
2005-01-25 11:58:36 +01:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2010-10-05 16:37:33 +02:00
|
|
|
UINT MSIREG_DeleteUninstallKey(MSIPACKAGE *package)
|
2007-11-13 07:47:21 +01:00
|
|
|
{
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
2010-10-05 16:37:33 +02:00
|
|
|
TRACE("%s\n", debugstr_w(package->ProductCode));
|
|
|
|
|
|
|
|
if (is_64bit && package->platform == PLATFORM_INTEL)
|
|
|
|
sprintfW(keypath, szUninstall_32node_fmt, package->ProductCode);
|
|
|
|
else
|
|
|
|
sprintfW(keypath, szUninstall_fmt, package->ProductCode);
|
2007-11-13 07:47:21 +01:00
|
|
|
|
|
|
|
return RegDeleteTreeW(HKEY_LOCAL_MACHINE, keypath);
|
|
|
|
}
|
|
|
|
|
2009-03-22 22:30:16 +01:00
|
|
|
UINT MSIREG_OpenProductKey(LPCWSTR szProduct, LPCWSTR szUserSid,
|
|
|
|
MSIINSTALLCONTEXT context, HKEY *key, BOOL create)
|
2005-01-25 11:58:36 +01:00
|
|
|
{
|
2008-11-04 05:16:43 +01:00
|
|
|
UINT r;
|
2009-03-22 22:30:16 +01:00
|
|
|
LPWSTR usersid = NULL;
|
2008-11-04 05:16:43 +01:00
|
|
|
HKEY root = HKEY_LOCAL_MACHINE;
|
2005-01-25 11:58:36 +01:00
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
2008-11-04 05:16:43 +01:00
|
|
|
WCHAR keypath[MAX_PATH];
|
2005-01-25 11:58:36 +01:00
|
|
|
|
2008-11-04 05:16:43 +01:00
|
|
|
TRACE("(%s, %d, %d)\n", debugstr_w(szProduct), context, create);
|
|
|
|
|
|
|
|
if (!squash_guid(szProduct, squished_pc))
|
2007-07-30 20:13:04 +02:00
|
|
|
return ERROR_FUNCTION_FAILED;
|
2008-11-04 05:16:43 +01:00
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
2008-11-04 05:16:43 +01:00
|
|
|
if (context == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
{
|
|
|
|
sprintfW(keypath, szInstaller_LocalClassesProd_fmt, squished_pc);
|
|
|
|
}
|
|
|
|
else if (context == MSIINSTALLCONTEXT_USERUNMANAGED)
|
|
|
|
{
|
|
|
|
root = HKEY_CURRENT_USER;
|
|
|
|
sprintfW(keypath, szUserProduct_fmt, squished_pc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-03-22 22:30:16 +01:00
|
|
|
if (!szUserSid)
|
2008-11-04 05:16:43 +01:00
|
|
|
{
|
2009-03-22 22:30:16 +01:00
|
|
|
r = get_user_sid(&usersid);
|
|
|
|
if (r != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", r);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
szUserSid = usersid;
|
2008-11-04 05:16:43 +01:00
|
|
|
}
|
|
|
|
|
2009-03-22 22:30:16 +01:00
|
|
|
sprintfW(keypath, szInstaller_LocalManagedProd_fmt,
|
|
|
|
szUserSid, squished_pc);
|
2008-11-04 05:16:43 +01:00
|
|
|
LocalFree(usersid);
|
|
|
|
}
|
2005-01-25 11:58:36 +01:00
|
|
|
|
|
|
|
if (create)
|
2008-11-04 05:16:43 +01:00
|
|
|
return RegCreateKeyW(root, keypath, key);
|
2005-01-25 11:58:36 +01:00
|
|
|
|
2008-11-04 05:16:43 +01:00
|
|
|
return RegOpenKeyW(root, keypath, key);
|
2005-01-25 11:58:36 +01:00
|
|
|
}
|
|
|
|
|
2007-07-03 05:20:54 +02:00
|
|
|
UINT MSIREG_DeleteUserProductKey(LPCWSTR szProduct)
|
|
|
|
{
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n",debugstr_w(szProduct));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szProduct,squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2007-07-03 05:20:54 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath,szUserProduct_fmt,squished_pc);
|
|
|
|
|
|
|
|
return RegDeleteTreeW(HKEY_CURRENT_USER, keypath);
|
|
|
|
}
|
|
|
|
|
2007-07-03 05:18:34 +02:00
|
|
|
UINT MSIREG_OpenUserPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n",debugstr_w(szPatch));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szPatch,squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2007-07-03 05:18:34 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath,szUserPatch_fmt,squished_pc);
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(HKEY_CURRENT_USER,keypath,key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(HKEY_CURRENT_USER,keypath,key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-11-04 05:16:50 +01:00
|
|
|
UINT MSIREG_OpenFeaturesKey(LPCWSTR szProduct, MSIINSTALLCONTEXT context,
|
|
|
|
HKEY *key, BOOL create)
|
2005-01-25 11:58:36 +01:00
|
|
|
{
|
2008-11-04 05:16:50 +01:00
|
|
|
UINT r;
|
|
|
|
LPWSTR usersid;
|
|
|
|
HKEY root = HKEY_LOCAL_MACHINE;
|
2005-01-25 11:58:36 +01:00
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
2008-11-04 05:16:50 +01:00
|
|
|
WCHAR keypath[MAX_PATH];
|
2005-01-25 11:58:36 +01:00
|
|
|
|
2008-11-04 05:16:50 +01:00
|
|
|
TRACE("(%s, %d, %d)\n", debugstr_w(szProduct), context, create);
|
|
|
|
|
|
|
|
if (!squash_guid(szProduct, squished_pc))
|
2007-07-30 20:13:04 +02:00
|
|
|
return ERROR_FUNCTION_FAILED;
|
2008-11-04 05:16:50 +01:00
|
|
|
|
2005-01-25 11:58:36 +01:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
2008-11-04 05:16:50 +01:00
|
|
|
if (context == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
{
|
|
|
|
sprintfW(keypath, szInstaller_LocalClassesFeat_fmt, squished_pc);
|
|
|
|
}
|
|
|
|
else if (context == MSIINSTALLCONTEXT_USERUNMANAGED)
|
|
|
|
{
|
|
|
|
root = HKEY_CURRENT_USER;
|
|
|
|
sprintfW(keypath, szUserFeatures_fmt, squished_pc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
r = get_user_sid(&usersid);
|
|
|
|
if (r != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", r);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintfW(keypath, szInstaller_LocalManagedFeat_fmt, usersid, squished_pc);
|
|
|
|
LocalFree(usersid);
|
|
|
|
}
|
2005-01-25 11:58:36 +01:00
|
|
|
|
|
|
|
if (create)
|
2008-11-04 05:16:50 +01:00
|
|
|
return RegCreateKeyW(root, keypath, key);
|
2005-01-25 11:58:36 +01:00
|
|
|
|
2008-11-04 05:16:50 +01:00
|
|
|
return RegOpenKeyW(root, keypath, key);
|
2005-01-25 11:58:36 +01:00
|
|
|
}
|
|
|
|
|
2007-08-09 20:38:48 +02:00
|
|
|
UINT MSIREG_DeleteUserFeaturesKey(LPCWSTR szProduct)
|
|
|
|
{
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n",debugstr_w(szProduct));
|
|
|
|
if (!squash_guid(szProduct,squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath,szUserFeatures_fmt,squished_pc);
|
|
|
|
return RegDeleteTreeW(HKEY_CURRENT_USER, keypath);
|
|
|
|
}
|
|
|
|
|
2009-01-10 15:20:03 +01:00
|
|
|
static UINT MSIREG_OpenInstallerFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create)
|
2005-01-25 11:58:36 +01:00
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n",debugstr_w(szProduct));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szProduct,squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2005-01-25 11:58:36 +01:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath,szInstaller_Features_fmt,squished_pc);
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(HKEY_LOCAL_MACHINE,keypath,key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(HKEY_LOCAL_MACHINE,keypath,key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-11-04 05:16:54 +01:00
|
|
|
UINT MSIREG_OpenUserDataFeaturesKey(LPCWSTR szProduct, MSIINSTALLCONTEXT context,
|
|
|
|
HKEY *key, BOOL create)
|
2007-07-03 05:22:57 +02:00
|
|
|
{
|
2008-11-04 05:16:54 +01:00
|
|
|
UINT r;
|
|
|
|
LPWSTR usersid;
|
2007-07-03 05:22:57 +02:00
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
2008-11-04 05:16:54 +01:00
|
|
|
TRACE("(%s, %d, %d)\n", debugstr_w(szProduct), context, create);
|
|
|
|
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szProduct, squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2008-11-04 05:16:54 +01:00
|
|
|
|
2007-07-03 05:22:57 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
2008-11-04 05:16:54 +01:00
|
|
|
if (context == MSIINSTALLCONTEXT_MACHINE)
|
2007-07-03 05:22:57 +02:00
|
|
|
{
|
2008-12-09 07:20:56 +01:00
|
|
|
sprintfW(keypath, szUserDataFeatures_fmt, szLocalSid, squished_pc);
|
2007-07-03 05:22:57 +02:00
|
|
|
}
|
|
|
|
else
|
2008-11-04 05:16:54 +01:00
|
|
|
{
|
|
|
|
r = get_user_sid(&usersid);
|
|
|
|
if (r != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", r);
|
|
|
|
return r;
|
|
|
|
}
|
2008-06-19 07:32:59 +02:00
|
|
|
|
2008-11-04 05:16:54 +01:00
|
|
|
sprintfW(keypath, szUserDataFeatures_fmt, usersid, squished_pc);
|
|
|
|
LocalFree(usersid);
|
|
|
|
}
|
2008-06-19 07:32:59 +02:00
|
|
|
|
|
|
|
if (create)
|
|
|
|
return RegCreateKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
|
|
|
|
|
|
|
return RegOpenKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
|
|
|
}
|
|
|
|
|
2005-04-20 14:50:05 +02:00
|
|
|
UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR squished_cc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n",debugstr_w(szComponent));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szComponent,squished_cc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2005-04-20 14:50:05 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_cc));
|
|
|
|
|
|
|
|
sprintfW(keypath,szUser_Components_fmt,squished_cc);
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(HKEY_CURRENT_USER,keypath,key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(HKEY_CURRENT_USER,keypath,key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-12-09 07:21:00 +01:00
|
|
|
UINT MSIREG_OpenUserDataComponentKey(LPCWSTR szComponent, LPCWSTR szUserSid,
|
|
|
|
HKEY *key, BOOL create)
|
2007-07-03 05:24:40 +02:00
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR comp[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
LPWSTR usersid;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(szComponent));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szComponent, comp))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2007-07-03 05:24:40 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(comp));
|
|
|
|
|
2008-12-09 07:21:00 +01:00
|
|
|
if (!szUserSid)
|
2007-07-03 05:24:40 +02:00
|
|
|
{
|
2008-12-09 07:21:00 +01:00
|
|
|
rc = get_user_sid(&usersid);
|
|
|
|
if (rc != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", rc);
|
|
|
|
return rc;
|
|
|
|
}
|
2007-07-03 05:24:40 +02:00
|
|
|
|
2008-12-09 07:21:00 +01:00
|
|
|
sprintfW(keypath, szUserDataComp_fmt, usersid, comp);
|
|
|
|
LocalFree(usersid);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sprintfW(keypath, szUserDataComp_fmt, szUserSid, comp);
|
2007-07-03 05:24:40 +02:00
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-12-09 07:21:19 +01:00
|
|
|
UINT MSIREG_DeleteUserDataComponentKey(LPCWSTR szComponent, LPCWSTR szUserSid)
|
2007-11-01 09:12:41 +01:00
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR comp[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
LPWSTR usersid;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(szComponent));
|
|
|
|
if (!squash_guid(szComponent, comp))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
TRACE("squished (%s)\n", debugstr_w(comp));
|
|
|
|
|
2008-12-09 07:21:19 +01:00
|
|
|
if (!szUserSid)
|
2007-11-01 09:12:41 +01:00
|
|
|
{
|
2008-12-09 07:21:19 +01:00
|
|
|
rc = get_user_sid(&usersid);
|
|
|
|
if (rc != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", rc);
|
|
|
|
return rc;
|
|
|
|
}
|
2007-11-01 09:12:41 +01:00
|
|
|
|
2008-12-09 07:21:19 +01:00
|
|
|
sprintfW(keypath, szUserDataComp_fmt, usersid, comp);
|
|
|
|
LocalFree(usersid);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sprintfW(keypath, szUserDataComp_fmt, szUserSid, comp);
|
2007-11-01 09:12:41 +01:00
|
|
|
|
|
|
|
return RegDeleteTreeW(HKEY_LOCAL_MACHINE, keypath);
|
|
|
|
}
|
|
|
|
|
2008-12-15 04:07:06 +01:00
|
|
|
UINT MSIREG_OpenUserDataProductKey(LPCWSTR szProduct, MSIINSTALLCONTEXT dwContext,
|
|
|
|
LPCWSTR szUserSid, HKEY *key, BOOL create)
|
2007-06-27 04:01:03 +02:00
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
LPWSTR usersid;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(szProduct));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szProduct, squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2007-06-27 04:01:03 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
2008-12-15 04:07:06 +01:00
|
|
|
if (dwContext == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
sprintfW(keypath, szUserDataProd_fmt, szLocalSid, squished_pc);
|
|
|
|
else if (szUserSid)
|
2009-03-22 22:29:51 +01:00
|
|
|
sprintfW(keypath, szUserDataProd_fmt, szUserSid, squished_pc);
|
2008-12-15 04:07:06 +01:00
|
|
|
else
|
2007-06-27 04:01:03 +02:00
|
|
|
{
|
2008-12-09 07:20:56 +01:00
|
|
|
rc = get_user_sid(&usersid);
|
|
|
|
if (rc != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", rc);
|
|
|
|
return rc;
|
|
|
|
}
|
2007-06-27 04:01:03 +02:00
|
|
|
|
2008-12-09 07:20:56 +01:00
|
|
|
sprintfW(keypath, szUserDataProd_fmt, usersid, squished_pc);
|
|
|
|
LocalFree(usersid);
|
|
|
|
}
|
2007-06-27 04:01:03 +02:00
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-12-15 04:07:09 +01:00
|
|
|
UINT MSIREG_OpenUserDataPatchKey(LPCWSTR szPatch, MSIINSTALLCONTEXT dwContext,
|
|
|
|
HKEY *key, BOOL create)
|
2008-12-08 10:14:21 +01:00
|
|
|
{
|
|
|
|
UINT rc;
|
2008-12-15 04:07:09 +01:00
|
|
|
WCHAR squished_patch[GUID_SIZE];
|
2008-12-08 10:14:21 +01:00
|
|
|
WCHAR keypath[0x200];
|
|
|
|
LPWSTR usersid;
|
|
|
|
|
2008-12-15 04:07:09 +01:00
|
|
|
TRACE("%s\n", debugstr_w(szPatch));
|
|
|
|
if (!squash_guid(szPatch, squished_patch))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_patch));
|
2008-12-08 10:14:21 +01:00
|
|
|
|
2008-12-15 04:07:09 +01:00
|
|
|
if (dwContext == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
sprintfW(keypath, szUserDataPatch_fmt, szLocalSid, squished_patch);
|
|
|
|
else
|
2008-12-08 10:14:21 +01:00
|
|
|
{
|
2008-12-15 04:07:09 +01:00
|
|
|
rc = get_user_sid(&usersid);
|
|
|
|
if (rc != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", rc);
|
|
|
|
return rc;
|
|
|
|
}
|
2008-12-08 10:14:21 +01:00
|
|
|
|
2008-12-15 04:07:09 +01:00
|
|
|
sprintfW(keypath, szUserDataPatch_fmt, usersid, squished_patch);
|
|
|
|
LocalFree(usersid);
|
|
|
|
}
|
2008-12-08 10:14:21 +01:00
|
|
|
|
|
|
|
if (create)
|
2008-12-15 04:07:09 +01:00
|
|
|
return RegCreateKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
2008-12-08 10:14:21 +01:00
|
|
|
|
2008-12-15 04:07:09 +01:00
|
|
|
return RegOpenKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
2008-12-08 10:14:21 +01:00
|
|
|
}
|
|
|
|
|
2010-05-04 09:07:39 +02:00
|
|
|
UINT MSIREG_DeleteUserDataPatchKey(LPCWSTR patch, MSIINSTALLCONTEXT context)
|
|
|
|
{
|
|
|
|
UINT r;
|
|
|
|
WCHAR squished_patch[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
LPWSTR usersid;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(patch));
|
|
|
|
if (!squash_guid(patch, squished_patch))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_patch));
|
|
|
|
|
|
|
|
if (context == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
sprintfW(keypath, szUserDataPatch_fmt, szLocalSid, squished_patch);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
r = get_user_sid(&usersid);
|
|
|
|
if (r != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", r);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintfW(keypath, szUserDataPatch_fmt, usersid, squished_patch);
|
|
|
|
LocalFree(usersid);
|
|
|
|
}
|
|
|
|
|
|
|
|
return RegDeleteTreeW(HKEY_LOCAL_MACHINE, keypath);
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT MSIREG_OpenUserDataProductPatchesKey(LPCWSTR product, MSIINSTALLCONTEXT context,
|
|
|
|
HKEY *key, BOOL create)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR squished_product[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
LPWSTR usersid;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(product));
|
|
|
|
if (!squash_guid(product, squished_product))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
|
|
|
if (context == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
sprintfW(keypath, szUserDataProductPatches_fmt, szLocalSid, squished_product);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rc = get_user_sid(&usersid);
|
|
|
|
if (rc != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintfW(keypath, szUserDataProductPatches_fmt, usersid, squished_product);
|
|
|
|
LocalFree(usersid);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
return RegCreateKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
|
|
|
|
|
|
|
return RegOpenKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
|
|
|
}
|
|
|
|
|
2008-12-15 04:07:14 +01:00
|
|
|
UINT MSIREG_OpenInstallProps(LPCWSTR szProduct, MSIINSTALLCONTEXT dwContext,
|
|
|
|
LPCWSTR szUserSid, HKEY *key, BOOL create)
|
2007-07-03 05:21:58 +02:00
|
|
|
{
|
|
|
|
UINT rc;
|
2008-12-15 04:07:14 +01:00
|
|
|
LPWSTR usersid;
|
2007-07-03 05:21:58 +02:00
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(szProduct));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szProduct, squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2007-07-03 05:21:58 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
2008-12-15 04:07:14 +01:00
|
|
|
if (dwContext == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
sprintfW(keypath, szInstallProperties_fmt, szLocalSid, squished_pc);
|
|
|
|
else if (szUserSid)
|
|
|
|
sprintfW(keypath, szInstallProperties_fmt, szUserSid, squished_pc);
|
2008-04-05 12:41:54 +02:00
|
|
|
else
|
2007-07-03 05:21:58 +02:00
|
|
|
{
|
2008-12-15 04:07:14 +01:00
|
|
|
rc = get_user_sid(&usersid);
|
|
|
|
if (rc != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintfW(keypath, szInstallProperties_fmt, usersid, squished_pc);
|
|
|
|
LocalFree(usersid);
|
2007-07-03 05:21:58 +02:00
|
|
|
}
|
|
|
|
|
2008-12-15 04:07:14 +01:00
|
|
|
if (create)
|
|
|
|
return RegCreateKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
2007-07-03 05:21:58 +02:00
|
|
|
|
2008-12-15 04:07:14 +01:00
|
|
|
return RegOpenKeyW(HKEY_LOCAL_MACHINE, keypath, key);
|
2007-07-03 05:21:58 +02:00
|
|
|
}
|
|
|
|
|
2007-07-03 05:20:54 +02:00
|
|
|
UINT MSIREG_DeleteUserDataProductKey(LPCWSTR szProduct)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
LPWSTR usersid;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(szProduct));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szProduct, squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2007-07-03 05:20:54 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
rc = get_user_sid(&usersid);
|
|
|
|
if (rc != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintfW(keypath, szUserDataProd_fmt, usersid, squished_pc);
|
|
|
|
|
2008-01-20 21:11:19 +01:00
|
|
|
LocalFree(usersid);
|
2007-07-03 05:20:54 +02:00
|
|
|
return RegDeleteTreeW(HKEY_LOCAL_MACHINE, keypath);
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT MSIREG_DeleteProductKey(LPCWSTR szProduct)
|
|
|
|
{
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(szProduct));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szProduct, squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2007-07-03 05:20:54 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath, szInstaller_Products_fmt, squished_pc);
|
|
|
|
|
|
|
|
return RegDeleteTreeW(HKEY_LOCAL_MACHINE, keypath);
|
|
|
|
}
|
|
|
|
|
2007-07-03 05:18:34 +02:00
|
|
|
UINT MSIREG_OpenPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n",debugstr_w(szPatch));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szPatch,squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2007-07-03 05:18:34 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath,szInstaller_Patches_fmt,squished_pc);
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(HKEY_LOCAL_MACHINE,keypath,key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(HKEY_LOCAL_MACHINE,keypath,key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2005-03-10 18:24:05 +01:00
|
|
|
UINT MSIREG_OpenUpgradeCodesKey(LPCWSTR szUpgradeCode, HKEY* key, BOOL create)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n",debugstr_w(szUpgradeCode));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szUpgradeCode,squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2005-03-10 18:24:05 +01:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath,szInstaller_UpgradeCodes_fmt,squished_pc);
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(HKEY_LOCAL_MACHINE,keypath,key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(HKEY_LOCAL_MACHINE,keypath,key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2005-06-07 22:02:27 +02:00
|
|
|
UINT MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szUpgradeCode, HKEY* key, BOOL create)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n",debugstr_w(szUpgradeCode));
|
2007-07-30 20:13:04 +02:00
|
|
|
if (!squash_guid(szUpgradeCode,squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2005-06-07 22:02:27 +02:00
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath,szInstaller_UserUpgradeCodes_fmt,squished_pc);
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(HKEY_CURRENT_USER,keypath,key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(HKEY_CURRENT_USER,keypath,key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-06-24 06:02:54 +02:00
|
|
|
UINT MSIREG_DeleteUserUpgradeCodesKey(LPCWSTR szUpgradeCode)
|
|
|
|
{
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n",debugstr_w(szUpgradeCode));
|
|
|
|
if (!squash_guid(szUpgradeCode,squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath,szInstaller_UserUpgradeCodes_fmt,squished_pc);
|
|
|
|
|
|
|
|
return RegDeleteTreeW(HKEY_CURRENT_USER, keypath);
|
|
|
|
}
|
|
|
|
|
2008-07-29 01:46:32 +02:00
|
|
|
UINT MSIREG_DeleteLocalClassesProductKey(LPCWSTR szProductCode)
|
|
|
|
{
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(szProductCode));
|
|
|
|
|
|
|
|
if (!squash_guid(szProductCode, squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath, szInstaller_LocalClassesProd_fmt, squished_pc);
|
|
|
|
|
|
|
|
return RegDeleteTreeW(HKEY_LOCAL_MACHINE, keypath);
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT MSIREG_DeleteLocalClassesFeaturesKey(LPCWSTR szProductCode)
|
|
|
|
{
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(szProductCode));
|
|
|
|
|
|
|
|
if (!squash_guid(szProductCode, squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath, szInstaller_LocalClassesFeat_fmt, squished_pc);
|
|
|
|
|
|
|
|
return RegDeleteTreeW(HKEY_LOCAL_MACHINE, keypath);
|
|
|
|
}
|
|
|
|
|
2008-06-24 06:04:46 +02:00
|
|
|
UINT MSIREG_OpenClassesUpgradeCodesKey(LPCWSTR szUpgradeCode, HKEY* key, BOOL create)
|
|
|
|
{
|
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
WCHAR keypath[0x200];
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(szUpgradeCode));
|
|
|
|
if (!squash_guid(szUpgradeCode, squished_pc))
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
TRACE("squished (%s)\n", debugstr_w(squished_pc));
|
|
|
|
|
|
|
|
sprintfW(keypath, szInstaller_ClassesUpgrade_fmt, squished_pc);
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
return RegCreateKeyW(HKEY_CLASSES_ROOT, keypath, key);
|
|
|
|
|
|
|
|
return RegOpenKeyW(HKEY_CLASSES_ROOT, keypath, key);
|
|
|
|
}
|
|
|
|
|
2005-01-25 17:41:33 +01:00
|
|
|
/*************************************************************************
|
|
|
|
* MsiDecomposeDescriptorW [MSI.@]
|
|
|
|
*
|
|
|
|
* Decomposes an MSI descriptor into product, feature and component parts.
|
|
|
|
* An MSI descriptor is a string of the form:
|
|
|
|
* [base 85 guid] [feature code] '>' [base 85 guid]
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* szDescriptor [I] the descriptor to decompose
|
2005-11-30 12:02:06 +01:00
|
|
|
* szProduct [O] buffer of MAX_FEATURE_CHARS+1 for the product guid
|
|
|
|
* szFeature [O] buffer of MAX_FEATURE_CHARS+1 for the feature code
|
|
|
|
* szComponent [O] buffer of MAX_FEATURE_CHARS+1 for the component guid
|
2005-01-25 17:41:33 +01:00
|
|
|
* pUsed [O] the length of the descriptor
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* ERROR_SUCCESS if everything worked correctly
|
|
|
|
* ERROR_INVALID_PARAMETER if the descriptor was invalid
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
UINT WINAPI MsiDecomposeDescriptorW( LPCWSTR szDescriptor, LPWSTR szProduct,
|
2007-08-09 10:41:41 +02:00
|
|
|
LPWSTR szFeature, LPWSTR szComponent, LPDWORD pUsed )
|
2005-01-25 17:41:33 +01:00
|
|
|
{
|
|
|
|
UINT r, len;
|
|
|
|
LPWSTR p;
|
|
|
|
GUID product, component;
|
|
|
|
|
|
|
|
TRACE("%s %p %p %p %p\n", debugstr_w(szDescriptor), szProduct,
|
|
|
|
szFeature, szComponent, pUsed);
|
|
|
|
|
|
|
|
r = decode_base85_guid( szDescriptor, &product );
|
|
|
|
if( !r )
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
TRACE("product %s\n", debugstr_guid( &product ));
|
|
|
|
|
|
|
|
p = strchrW(&szDescriptor[20],'>');
|
|
|
|
if( !p )
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
len = (p - &szDescriptor[20]);
|
|
|
|
if( len > MAX_FEATURE_CHARS )
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2006-11-08 21:47:04 +01:00
|
|
|
TRACE("feature %s\n", debugstr_wn( &szDescriptor[20], len ));
|
2005-01-25 17:41:33 +01:00
|
|
|
|
|
|
|
r = decode_base85_guid( p+1, &component );
|
|
|
|
if( !r )
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
TRACE("component %s\n", debugstr_guid( &component ));
|
|
|
|
|
2005-11-09 11:59:20 +01:00
|
|
|
if (szProduct)
|
|
|
|
StringFromGUID2( &product, szProduct, MAX_FEATURE_CHARS+1 );
|
|
|
|
if (szComponent)
|
|
|
|
StringFromGUID2( &component, szComponent, MAX_FEATURE_CHARS+1 );
|
2006-11-08 21:47:04 +01:00
|
|
|
if (szFeature)
|
|
|
|
{
|
|
|
|
memcpy( szFeature, &szDescriptor[20], len*sizeof(WCHAR) );
|
|
|
|
szFeature[len] = 0;
|
|
|
|
}
|
2005-01-25 17:41:33 +01:00
|
|
|
len = ( &p[21] - szDescriptor );
|
|
|
|
|
|
|
|
TRACE("length = %d\n", len);
|
2010-03-23 11:48:02 +01:00
|
|
|
if (pUsed) *pUsed = len;
|
2005-01-25 17:41:33 +01:00
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI MsiDecomposeDescriptorA( LPCSTR szDescriptor, LPSTR szProduct,
|
2007-08-09 10:41:41 +02:00
|
|
|
LPSTR szFeature, LPSTR szComponent, LPDWORD pUsed )
|
2005-01-25 17:41:33 +01:00
|
|
|
{
|
|
|
|
WCHAR product[MAX_FEATURE_CHARS+1];
|
|
|
|
WCHAR feature[MAX_FEATURE_CHARS+1];
|
|
|
|
WCHAR component[MAX_FEATURE_CHARS+1];
|
2005-11-09 11:59:20 +01:00
|
|
|
LPWSTR str = NULL, p = NULL, f = NULL, c = NULL;
|
2005-03-24 16:09:18 +01:00
|
|
|
UINT r;
|
2005-01-25 17:41:33 +01:00
|
|
|
|
|
|
|
TRACE("%s %p %p %p %p\n", debugstr_a(szDescriptor), szProduct,
|
|
|
|
szFeature, szComponent, pUsed);
|
|
|
|
|
2005-11-09 11:59:20 +01:00
|
|
|
str = strdupAtoW( szDescriptor );
|
|
|
|
if( szDescriptor && !str )
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
|
|
|
|
if (szProduct)
|
|
|
|
p = product;
|
|
|
|
if (szFeature)
|
|
|
|
f = feature;
|
|
|
|
if (szComponent)
|
|
|
|
c = component;
|
2005-01-25 17:41:33 +01:00
|
|
|
|
2005-11-09 11:59:20 +01:00
|
|
|
r = MsiDecomposeDescriptorW( str, p, f, c, pUsed );
|
2005-01-25 17:41:33 +01:00
|
|
|
|
2006-11-08 21:47:04 +01:00
|
|
|
if (r == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, p, -1,
|
|
|
|
szProduct, MAX_FEATURE_CHARS+1, NULL, NULL );
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, f, -1,
|
|
|
|
szFeature, MAX_FEATURE_CHARS+1, NULL, NULL );
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, c, -1,
|
|
|
|
szComponent, MAX_FEATURE_CHARS+1, NULL, NULL );
|
|
|
|
}
|
2005-01-25 17:41:33 +01:00
|
|
|
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free( str );
|
2005-01-25 17:41:33 +01:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
UINT WINAPI MsiEnumProductsA(DWORD index, LPSTR lpguid)
|
|
|
|
{
|
|
|
|
DWORD r;
|
|
|
|
WCHAR szwGuid[GUID_SIZE];
|
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%d %p\n", index, lpguid);
|
|
|
|
|
2005-02-16 18:52:53 +01:00
|
|
|
if (NULL == lpguid)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
r = MsiEnumProductsW(index, szwGuid);
|
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, szwGuid, -1, lpguid, GUID_SIZE, NULL, NULL);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI MsiEnumProductsW(DWORD index, LPWSTR lpguid)
|
|
|
|
{
|
2009-03-27 13:40:16 +01:00
|
|
|
UINT r;
|
2005-03-24 16:09:18 +01:00
|
|
|
WCHAR szKeyName[SQUISH_GUID_SIZE];
|
2009-03-27 13:40:16 +01:00
|
|
|
HKEY key;
|
|
|
|
DWORD machine_count, managed_count, unmanaged_count;
|
|
|
|
WCHAR keypath[MAX_PATH];
|
|
|
|
LPWSTR usersid = NULL;
|
|
|
|
|
|
|
|
static DWORD last_index;
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%d %p\n", index, lpguid);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
if (NULL == lpguid)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2009-03-27 13:40:16 +01:00
|
|
|
if (index && index - last_index != 1)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2010-03-26 15:34:48 +01:00
|
|
|
key = 0;
|
2009-03-27 13:40:16 +01:00
|
|
|
r = RegCreateKeyW(HKEY_LOCAL_MACHINE, szInstaller_LocalClassesProd, &key);
|
2010-03-26 15:34:48 +01:00
|
|
|
if( r != ERROR_SUCCESS ) goto failed;
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2009-03-27 13:40:16 +01:00
|
|
|
r = RegQueryInfoKeyW(key, NULL, NULL, NULL, &machine_count, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL, NULL);
|
2010-03-26 15:34:48 +01:00
|
|
|
if( r != ERROR_SUCCESS ) goto failed;
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2009-03-27 13:40:16 +01:00
|
|
|
if (machine_count && index <= machine_count)
|
|
|
|
{
|
|
|
|
r = RegEnumKeyW(key, index, szKeyName, SQUISH_GUID_SIZE);
|
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
{
|
|
|
|
unsquash_guid(szKeyName, lpguid);
|
|
|
|
last_index = index;
|
|
|
|
RegCloseKey(key);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RegCloseKey(key);
|
|
|
|
|
2010-03-26 15:34:48 +01:00
|
|
|
key = 0;
|
2009-03-27 13:40:16 +01:00
|
|
|
r = get_user_sid(&usersid);
|
|
|
|
if (r != ERROR_SUCCESS || !usersid)
|
|
|
|
{
|
|
|
|
ERR("Failed to retrieve user SID: %d\n", r);
|
2010-03-26 15:34:48 +01:00
|
|
|
last_index = 0;
|
2009-03-27 13:40:16 +01:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
sprintfW(keypath, szInstaller_LocalManaged_fmt, usersid);
|
|
|
|
LocalFree(usersid);
|
|
|
|
|
|
|
|
r = RegCreateKeyW(HKEY_LOCAL_MACHINE, keypath, &key);
|
2010-03-26 15:34:48 +01:00
|
|
|
if( r != ERROR_SUCCESS ) goto failed;
|
2009-03-27 13:40:16 +01:00
|
|
|
|
|
|
|
r = RegQueryInfoKeyW(key, NULL, NULL, NULL, &managed_count, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL, NULL);
|
2010-03-26 15:34:48 +01:00
|
|
|
if( r != ERROR_SUCCESS ) goto failed;
|
2009-03-27 13:40:16 +01:00
|
|
|
|
|
|
|
if (managed_count && index <= machine_count + managed_count)
|
|
|
|
{
|
|
|
|
r = RegEnumKeyW(key, index - machine_count, szKeyName, SQUISH_GUID_SIZE);
|
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
{
|
|
|
|
unsquash_guid(szKeyName, lpguid);
|
|
|
|
last_index = index;
|
|
|
|
RegCloseKey(key);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RegCloseKey(key);
|
|
|
|
|
2010-03-26 15:34:48 +01:00
|
|
|
key = 0;
|
2009-03-27 13:40:16 +01:00
|
|
|
r = RegCreateKeyW(HKEY_CURRENT_USER, szUserProduct, &key);
|
2010-03-26 15:34:48 +01:00
|
|
|
if( r != ERROR_SUCCESS ) goto failed;
|
2009-03-27 13:40:16 +01:00
|
|
|
|
|
|
|
r = RegQueryInfoKeyW(key, NULL, NULL, NULL, &unmanaged_count, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL, NULL);
|
2010-03-26 15:34:48 +01:00
|
|
|
if( r != ERROR_SUCCESS ) goto failed;
|
2009-03-27 13:40:16 +01:00
|
|
|
|
|
|
|
if (unmanaged_count && index <= machine_count + managed_count + unmanaged_count)
|
|
|
|
{
|
|
|
|
r = RegEnumKeyW(key, index - machine_count - managed_count, szKeyName, SQUISH_GUID_SIZE);
|
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
{
|
|
|
|
unsquash_guid(szKeyName, lpguid);
|
|
|
|
last_index = index;
|
|
|
|
RegCloseKey(key);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
2010-03-26 15:34:48 +01:00
|
|
|
failed:
|
2009-03-27 13:40:16 +01:00
|
|
|
RegCloseKey(key);
|
2010-03-26 15:34:48 +01:00
|
|
|
last_index = 0;
|
2009-03-27 13:40:16 +01:00
|
|
|
return ERROR_NO_MORE_ITEMS;
|
2005-02-16 18:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI MsiEnumFeaturesA(LPCSTR szProduct, DWORD index,
|
|
|
|
LPSTR szFeature, LPSTR szParent)
|
|
|
|
{
|
|
|
|
DWORD r;
|
|
|
|
WCHAR szwFeature[GUID_SIZE], szwParent[GUID_SIZE];
|
|
|
|
LPWSTR szwProduct = NULL;
|
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%s %d %p %p\n", debugstr_a(szProduct), index, szFeature, szParent);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
if( szProduct )
|
|
|
|
{
|
2005-03-24 16:09:18 +01:00
|
|
|
szwProduct = strdupAtoW( szProduct );
|
|
|
|
if( !szwProduct )
|
|
|
|
return ERROR_OUTOFMEMORY;
|
2005-02-16 18:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
r = MsiEnumFeaturesW(szwProduct, index, szwFeature, szwParent);
|
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
{
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, szwFeature, -1,
|
|
|
|
szFeature, GUID_SIZE, NULL, NULL);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, szwParent, -1,
|
|
|
|
szParent, GUID_SIZE, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free( szwProduct);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI MsiEnumFeaturesW(LPCWSTR szProduct, DWORD index,
|
|
|
|
LPWSTR szFeature, LPWSTR szParent)
|
|
|
|
{
|
|
|
|
HKEY hkeyProduct = 0;
|
|
|
|
DWORD r, sz;
|
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%s %d %p %p\n", debugstr_w(szProduct), index, szFeature, szParent);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2006-04-17 11:17:52 +02:00
|
|
|
if( !szProduct )
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2008-11-04 05:16:50 +01:00
|
|
|
r = MSIREG_OpenInstallerFeaturesKey(szProduct,&hkeyProduct,FALSE);
|
2005-02-16 18:52:53 +01:00
|
|
|
if( r != ERROR_SUCCESS )
|
2005-03-24 16:09:18 +01:00
|
|
|
return ERROR_NO_MORE_ITEMS;
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
sz = GUID_SIZE;
|
|
|
|
r = RegEnumValueW(hkeyProduct, index, szFeature, &sz, NULL, NULL, NULL, NULL);
|
2005-03-24 16:09:18 +01:00
|
|
|
RegCloseKey(hkeyProduct);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI MsiEnumComponentsA(DWORD index, LPSTR lpguid)
|
|
|
|
{
|
|
|
|
DWORD r;
|
|
|
|
WCHAR szwGuid[GUID_SIZE];
|
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%d %p\n", index, lpguid);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
r = MsiEnumComponentsW(index, szwGuid);
|
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, szwGuid, -1, lpguid, GUID_SIZE, NULL, NULL);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI MsiEnumComponentsW(DWORD index, LPWSTR lpguid)
|
|
|
|
{
|
|
|
|
HKEY hkeyComponents = 0;
|
|
|
|
DWORD r;
|
2005-03-24 16:09:18 +01:00
|
|
|
WCHAR szKeyName[SQUISH_GUID_SIZE];
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%d %p\n", index, lpguid);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2008-06-18 07:49:42 +02:00
|
|
|
r = RegCreateKeyW(HKEY_LOCAL_MACHINE, szInstaller_Components, &hkeyComponents);
|
2005-02-16 18:52:53 +01:00
|
|
|
if( r != ERROR_SUCCESS )
|
2005-03-24 16:09:18 +01:00
|
|
|
return ERROR_NO_MORE_ITEMS;
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2005-03-24 16:09:18 +01:00
|
|
|
r = RegEnumKeyW(hkeyComponents, index, szKeyName, SQUISH_GUID_SIZE);
|
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
unsquash_guid(szKeyName, lpguid);
|
|
|
|
RegCloseKey(hkeyComponents);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI MsiEnumClientsA(LPCSTR szComponent, DWORD index, LPSTR szProduct)
|
|
|
|
{
|
|
|
|
DWORD r;
|
|
|
|
WCHAR szwProduct[GUID_SIZE];
|
|
|
|
LPWSTR szwComponent = NULL;
|
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%s %d %p\n", debugstr_a(szComponent), index, szProduct);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2007-12-17 03:27:22 +01:00
|
|
|
if ( !szProduct )
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2005-02-16 18:52:53 +01:00
|
|
|
if( szComponent )
|
|
|
|
{
|
2005-03-24 16:09:18 +01:00
|
|
|
szwComponent = strdupAtoW( szComponent );
|
|
|
|
if( !szwComponent )
|
|
|
|
return ERROR_OUTOFMEMORY;
|
2005-02-16 18:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
r = MsiEnumClientsW(szComponent?szwComponent:NULL, index, szwProduct);
|
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
{
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, szwProduct, -1,
|
|
|
|
szProduct, GUID_SIZE, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free( szwComponent);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI MsiEnumClientsW(LPCWSTR szComponent, DWORD index, LPWSTR szProduct)
|
|
|
|
{
|
|
|
|
HKEY hkeyComp = 0;
|
|
|
|
DWORD r, sz;
|
2005-03-24 16:09:18 +01:00
|
|
|
WCHAR szValName[SQUISH_GUID_SIZE];
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%s %d %p\n", debugstr_w(szComponent), index, szProduct);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2007-12-17 03:27:22 +01:00
|
|
|
if (!szComponent || !*szComponent || !szProduct)
|
2007-12-17 03:26:42 +01:00
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2008-12-09 07:21:00 +01:00
|
|
|
if (MSIREG_OpenUserDataComponentKey(szComponent, NULL, &hkeyComp, FALSE) != ERROR_SUCCESS &&
|
2008-12-09 07:21:15 +01:00
|
|
|
MSIREG_OpenUserDataComponentKey(szComponent, szLocalSid, &hkeyComp, FALSE) != ERROR_SUCCESS)
|
2007-12-17 03:28:09 +01:00
|
|
|
return ERROR_UNKNOWN_COMPONENT;
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2007-12-17 03:29:36 +01:00
|
|
|
/* see if there are any products at all */
|
|
|
|
sz = SQUISH_GUID_SIZE;
|
|
|
|
r = RegEnumValueW(hkeyComp, 0, szValName, &sz, NULL, NULL, NULL, NULL);
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
RegCloseKey(hkeyComp);
|
2007-12-17 03:30:14 +01:00
|
|
|
|
|
|
|
if (index != 0)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2007-12-17 03:29:36 +01:00
|
|
|
return ERROR_UNKNOWN_COMPONENT;
|
|
|
|
}
|
|
|
|
|
2005-03-24 16:09:18 +01:00
|
|
|
sz = SQUISH_GUID_SIZE;
|
2005-02-16 18:52:53 +01:00
|
|
|
r = RegEnumValueW(hkeyComp, index, szValName, &sz, NULL, NULL, NULL, NULL);
|
2005-03-24 16:09:18 +01:00
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
unsquash_guid(szValName, szProduct);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
2005-03-24 16:09:18 +01:00
|
|
|
RegCloseKey(hkeyComp);
|
2005-02-16 18:52:53 +01:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2008-11-26 17:15:59 +01:00
|
|
|
static UINT MSI_EnumComponentQualifiers( LPCWSTR szComponent, DWORD iIndex,
|
2007-08-09 10:41:41 +02:00
|
|
|
awstring *lpQualBuf, LPDWORD pcchQual,
|
|
|
|
awstring *lpAppBuf, LPDWORD pcchAppBuf )
|
2005-11-15 19:12:21 +01:00
|
|
|
{
|
2005-11-21 12:59:54 +01:00
|
|
|
DWORD name_sz, val_sz, name_max, val_max, type, ofs;
|
2005-11-15 19:12:21 +01:00
|
|
|
LPWSTR name = NULL, val = NULL;
|
|
|
|
UINT r, r2;
|
|
|
|
HKEY key;
|
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%s %08x %p %p %p %p\n", debugstr_w(szComponent), iIndex,
|
2005-11-15 19:12:21 +01:00
|
|
|
lpQualBuf, pcchQual, lpAppBuf, pcchAppBuf);
|
|
|
|
|
|
|
|
if (!szComponent)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
r = MSIREG_OpenUserComponentsKey( szComponent, &key, FALSE );
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
return ERROR_UNKNOWN_COMPONENT;
|
|
|
|
|
|
|
|
/* figure out how big the name is we want to return */
|
2005-11-21 12:59:54 +01:00
|
|
|
name_max = 0x10;
|
|
|
|
r = ERROR_OUTOFMEMORY;
|
|
|
|
name = msi_alloc( name_max * sizeof(WCHAR) );
|
|
|
|
if (!name)
|
2005-11-15 19:12:21 +01:00
|
|
|
goto end;
|
|
|
|
|
2005-11-21 12:59:54 +01:00
|
|
|
val_max = 0x10;
|
|
|
|
r = ERROR_OUTOFMEMORY;
|
|
|
|
val = msi_alloc( val_max );
|
2005-11-15 19:12:21 +01:00
|
|
|
if (!val)
|
|
|
|
goto end;
|
|
|
|
|
2005-11-21 12:59:54 +01:00
|
|
|
/* loop until we allocate enough memory */
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
name_sz = name_max;
|
|
|
|
val_sz = val_max;
|
|
|
|
r = RegEnumValueW( key, iIndex, name, &name_sz,
|
|
|
|
NULL, &type, (LPBYTE)val, &val_sz );
|
|
|
|
if (r == ERROR_SUCCESS)
|
|
|
|
break;
|
|
|
|
if (r != ERROR_MORE_DATA)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
if (type != REG_MULTI_SZ)
|
|
|
|
{
|
2006-10-05 06:41:22 +02:00
|
|
|
ERR("component data has wrong type (%d)\n", type);
|
2005-11-21 12:59:54 +01:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = ERROR_OUTOFMEMORY;
|
|
|
|
if ((name_sz+1) >= name_max)
|
|
|
|
{
|
|
|
|
name_max *= 2;
|
|
|
|
msi_free( name );
|
|
|
|
name = msi_alloc( name_max * sizeof (WCHAR) );
|
|
|
|
if (!name)
|
|
|
|
goto end;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (val_sz > val_max)
|
|
|
|
{
|
|
|
|
val_max = val_sz + sizeof (WCHAR);
|
2006-07-27 16:17:57 +02:00
|
|
|
msi_free( val );
|
2005-11-21 12:59:54 +01:00
|
|
|
val = msi_alloc( val_max * sizeof (WCHAR) );
|
|
|
|
if (!val)
|
|
|
|
goto end;
|
|
|
|
continue;
|
|
|
|
}
|
2006-10-05 06:41:22 +02:00
|
|
|
ERR("should be enough data, but isn't %d %d\n", name_sz, val_sz );
|
2005-11-15 19:12:21 +01:00
|
|
|
goto end;
|
2005-11-21 12:59:54 +01:00
|
|
|
}
|
2005-11-15 19:12:21 +01:00
|
|
|
|
|
|
|
ofs = 0;
|
|
|
|
r = MsiDecomposeDescriptorW( val, NULL, NULL, NULL, &ofs );
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
TRACE("Providing %s and %s\n", debugstr_w(name), debugstr_w(val+ofs));
|
|
|
|
|
|
|
|
r = msi_strcpy_to_awstring( name, lpQualBuf, pcchQual );
|
|
|
|
r2 = msi_strcpy_to_awstring( val+ofs, lpAppBuf, pcchAppBuf );
|
|
|
|
|
|
|
|
if (r2 != ERROR_SUCCESS)
|
|
|
|
r = r2;
|
|
|
|
|
|
|
|
end:
|
|
|
|
msi_free(val);
|
|
|
|
msi_free(name);
|
|
|
|
RegCloseKey(key);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2005-05-06 16:33:02 +02:00
|
|
|
/*************************************************************************
|
|
|
|
* MsiEnumComponentQualifiersA [MSI.@]
|
|
|
|
*/
|
2005-11-15 17:55:04 +01:00
|
|
|
UINT WINAPI MsiEnumComponentQualifiersA( LPCSTR szComponent, DWORD iIndex,
|
2007-08-09 10:41:41 +02:00
|
|
|
LPSTR lpQualifierBuf, LPDWORD pcchQualifierBuf,
|
|
|
|
LPSTR lpApplicationDataBuf, LPDWORD pcchApplicationDataBuf )
|
2005-02-16 18:52:53 +01:00
|
|
|
{
|
2005-11-15 19:12:21 +01:00
|
|
|
awstring qual, appdata;
|
|
|
|
LPWSTR comp;
|
|
|
|
UINT r;
|
2005-04-28 20:28:11 +02:00
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%s %08x %p %p %p %p\n", debugstr_a(szComponent), iIndex,
|
2005-02-16 18:52:53 +01:00
|
|
|
lpQualifierBuf, pcchQualifierBuf, lpApplicationDataBuf,
|
|
|
|
pcchApplicationDataBuf);
|
2005-04-28 20:28:11 +02:00
|
|
|
|
2005-11-15 19:12:21 +01:00
|
|
|
comp = strdupAtoW( szComponent );
|
|
|
|
if (szComponent && !comp)
|
|
|
|
return ERROR_OUTOFMEMORY;
|
2005-04-28 20:28:11 +02:00
|
|
|
|
2005-11-15 19:12:21 +01:00
|
|
|
qual.unicode = FALSE;
|
|
|
|
qual.str.a = lpQualifierBuf;
|
2005-04-28 20:28:11 +02:00
|
|
|
|
2005-11-15 19:12:21 +01:00
|
|
|
appdata.unicode = FALSE;
|
|
|
|
appdata.str.a = lpApplicationDataBuf;
|
2005-04-28 20:28:11 +02:00
|
|
|
|
2005-11-15 19:12:21 +01:00
|
|
|
r = MSI_EnumComponentQualifiers( comp, iIndex,
|
|
|
|
&qual, pcchQualifierBuf, &appdata, pcchApplicationDataBuf );
|
|
|
|
msi_free( comp );
|
|
|
|
return r;
|
2005-02-16 18:52:53 +01:00
|
|
|
}
|
|
|
|
|
2005-05-06 16:33:02 +02:00
|
|
|
/*************************************************************************
|
|
|
|
* MsiEnumComponentQualifiersW [MSI.@]
|
|
|
|
*/
|
2005-11-15 17:55:04 +01:00
|
|
|
UINT WINAPI MsiEnumComponentQualifiersW( LPCWSTR szComponent, DWORD iIndex,
|
2007-08-09 10:41:41 +02:00
|
|
|
LPWSTR lpQualifierBuf, LPDWORD pcchQualifierBuf,
|
|
|
|
LPWSTR lpApplicationDataBuf, LPDWORD pcchApplicationDataBuf )
|
2005-02-16 18:52:53 +01:00
|
|
|
{
|
2005-11-15 19:12:21 +01:00
|
|
|
awstring qual, appdata;
|
2005-04-28 20:28:11 +02:00
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%s %08x %p %p %p %p\n", debugstr_w(szComponent), iIndex,
|
2005-02-16 18:52:53 +01:00
|
|
|
lpQualifierBuf, pcchQualifierBuf, lpApplicationDataBuf,
|
|
|
|
pcchApplicationDataBuf);
|
2005-04-28 20:28:11 +02:00
|
|
|
|
2005-11-15 19:12:21 +01:00
|
|
|
qual.unicode = TRUE;
|
|
|
|
qual.str.w = lpQualifierBuf;
|
2005-04-28 20:28:11 +02:00
|
|
|
|
2005-11-15 19:12:21 +01:00
|
|
|
appdata.unicode = TRUE;
|
|
|
|
appdata.str.w = lpApplicationDataBuf;
|
2005-04-28 20:28:11 +02:00
|
|
|
|
2005-11-15 19:12:21 +01:00
|
|
|
return MSI_EnumComponentQualifiers( szComponent, iIndex,
|
|
|
|
&qual, pcchQualifierBuf, &appdata, pcchApplicationDataBuf );
|
2005-02-16 18:52:53 +01:00
|
|
|
}
|
|
|
|
|
2005-05-06 16:33:02 +02:00
|
|
|
/*************************************************************************
|
|
|
|
* MsiEnumRelatedProductsW [MSI.@]
|
|
|
|
*
|
|
|
|
*/
|
2005-02-16 18:52:53 +01:00
|
|
|
UINT WINAPI MsiEnumRelatedProductsW(LPCWSTR szUpgradeCode, DWORD dwReserved,
|
|
|
|
DWORD iProductIndex, LPWSTR lpProductBuf)
|
|
|
|
{
|
2005-03-24 16:09:18 +01:00
|
|
|
UINT r;
|
2005-03-10 18:24:05 +01:00
|
|
|
HKEY hkey;
|
2007-05-14 19:15:46 +02:00
|
|
|
DWORD dwSize = SQUISH_GUID_SIZE;
|
2005-03-24 16:09:18 +01:00
|
|
|
WCHAR szKeyName[SQUISH_GUID_SIZE];
|
2005-03-10 18:24:05 +01:00
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%s %u %u %p\n", debugstr_w(szUpgradeCode), dwReserved,
|
2005-02-16 18:52:53 +01:00
|
|
|
iProductIndex, lpProductBuf);
|
2005-03-10 18:24:05 +01:00
|
|
|
|
|
|
|
if (NULL == szUpgradeCode)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
if (NULL == lpProductBuf)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2005-03-24 16:09:18 +01:00
|
|
|
r = MSIREG_OpenUpgradeCodesKey(szUpgradeCode, &hkey, FALSE);
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
return ERROR_NO_MORE_ITEMS;
|
2005-03-10 18:24:05 +01:00
|
|
|
|
2007-05-14 19:15:46 +02:00
|
|
|
r = RegEnumValueW(hkey, iProductIndex, szKeyName, &dwSize, NULL, NULL, NULL, NULL);
|
2005-03-24 16:09:18 +01:00
|
|
|
if( r == ERROR_SUCCESS )
|
|
|
|
unsquash_guid(szKeyName, lpProductBuf);
|
2005-03-10 18:24:05 +01:00
|
|
|
RegCloseKey(hkey);
|
|
|
|
|
2005-03-24 16:09:18 +01:00
|
|
|
return r;
|
2005-02-16 18:52:53 +01:00
|
|
|
}
|
|
|
|
|
2005-05-06 16:33:02 +02:00
|
|
|
/*************************************************************************
|
|
|
|
* MsiEnumRelatedProductsA [MSI.@]
|
|
|
|
*
|
|
|
|
*/
|
2005-02-16 18:52:53 +01:00
|
|
|
UINT WINAPI MsiEnumRelatedProductsA(LPCSTR szUpgradeCode, DWORD dwReserved,
|
|
|
|
DWORD iProductIndex, LPSTR lpProductBuf)
|
|
|
|
{
|
2005-03-24 16:09:18 +01:00
|
|
|
LPWSTR szwUpgradeCode = NULL;
|
|
|
|
WCHAR productW[GUID_SIZE];
|
|
|
|
UINT r;
|
2005-03-10 18:24:05 +01:00
|
|
|
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("%s %u %u %p\n", debugstr_a(szUpgradeCode), dwReserved,
|
2005-02-16 18:52:53 +01:00
|
|
|
iProductIndex, lpProductBuf);
|
2005-03-10 18:24:05 +01:00
|
|
|
|
2005-03-24 16:09:18 +01:00
|
|
|
if (szUpgradeCode)
|
|
|
|
{
|
|
|
|
szwUpgradeCode = strdupAtoW( szUpgradeCode );
|
|
|
|
if( !szwUpgradeCode )
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
2005-03-10 18:24:05 +01:00
|
|
|
|
2005-03-24 16:09:18 +01:00
|
|
|
r = MsiEnumRelatedProductsW( szwUpgradeCode, dwReserved,
|
|
|
|
iProductIndex, productW );
|
|
|
|
if (r == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, productW, GUID_SIZE,
|
|
|
|
lpProductBuf, GUID_SIZE, NULL, NULL );
|
2005-03-10 18:24:05 +01:00
|
|
|
}
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free( szwUpgradeCode);
|
2005-03-24 16:09:18 +01:00
|
|
|
return r;
|
2005-02-16 18:52:53 +01:00
|
|
|
}
|
2006-07-24 08:24:53 +02:00
|
|
|
|
2008-08-04 06:53:45 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* MsiEnumPatchesExA [MSI.@]
|
|
|
|
*/
|
|
|
|
UINT WINAPI MsiEnumPatchesExA(LPCSTR szProductCode, LPCSTR szUserSid,
|
|
|
|
DWORD dwContext, DWORD dwFilter, DWORD dwIndex, LPSTR szPatchCode,
|
|
|
|
LPSTR szTargetProductCode, MSIINSTALLCONTEXT *pdwTargetProductContext,
|
2008-12-08 10:13:13 +01:00
|
|
|
LPSTR szTargetUserSid, LPDWORD pcchTargetUserSid)
|
2008-08-04 06:53:45 +02:00
|
|
|
{
|
2008-12-08 10:14:00 +01:00
|
|
|
LPWSTR prodcode = NULL;
|
|
|
|
LPWSTR usersid = NULL;
|
|
|
|
LPWSTR targsid = NULL;
|
|
|
|
WCHAR patch[GUID_SIZE];
|
|
|
|
WCHAR targprod[GUID_SIZE];
|
|
|
|
DWORD len;
|
|
|
|
UINT r;
|
|
|
|
|
|
|
|
TRACE("(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p)\n",
|
2008-08-04 06:53:45 +02:00
|
|
|
debugstr_a(szProductCode), debugstr_a(szUserSid), dwContext, dwFilter,
|
|
|
|
dwIndex, szPatchCode, szTargetProductCode, pdwTargetProductContext,
|
|
|
|
szTargetUserSid, pcchTargetUserSid);
|
2008-12-08 10:14:00 +01:00
|
|
|
|
|
|
|
if (szTargetUserSid && !pcchTargetUserSid)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (szProductCode) prodcode = strdupAtoW(szProductCode);
|
|
|
|
if (szUserSid) usersid = strdupAtoW(szUserSid);
|
|
|
|
|
|
|
|
r = MsiEnumPatchesExW(prodcode, usersid, dwContext, dwFilter, dwIndex,
|
|
|
|
patch, targprod, pdwTargetProductContext,
|
|
|
|
NULL, &len);
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, patch, -1, szPatchCode,
|
|
|
|
GUID_SIZE, NULL, NULL);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, targprod, -1, szTargetProductCode,
|
|
|
|
GUID_SIZE, NULL, NULL);
|
|
|
|
|
|
|
|
if (!szTargetUserSid)
|
|
|
|
{
|
|
|
|
if (pcchTargetUserSid)
|
|
|
|
*pcchTargetUserSid = len;
|
|
|
|
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
targsid = msi_alloc(++len * sizeof(WCHAR));
|
|
|
|
if (!targsid)
|
|
|
|
{
|
|
|
|
r = ERROR_OUTOFMEMORY;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = MsiEnumPatchesExW(prodcode, usersid, dwContext, dwFilter, dwIndex,
|
|
|
|
patch, targprod, pdwTargetProductContext,
|
|
|
|
targsid, &len);
|
|
|
|
if (r != ERROR_SUCCESS || !szTargetUserSid)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, targsid, -1, szTargetUserSid,
|
|
|
|
*pcchTargetUserSid, NULL, NULL);
|
|
|
|
|
|
|
|
len = lstrlenW(targsid);
|
|
|
|
if (*pcchTargetUserSid < len + 1)
|
|
|
|
{
|
|
|
|
r = ERROR_MORE_DATA;
|
|
|
|
*pcchTargetUserSid = len * sizeof(WCHAR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*pcchTargetUserSid = len;
|
|
|
|
|
|
|
|
done:
|
|
|
|
msi_free(prodcode);
|
|
|
|
msi_free(usersid);
|
|
|
|
msi_free(targsid);
|
|
|
|
|
|
|
|
return r;
|
2008-08-04 06:53:45 +02:00
|
|
|
}
|
|
|
|
|
2008-12-08 10:14:21 +01:00
|
|
|
static UINT msi_get_patch_state(LPCWSTR prodcode, LPCWSTR usersid,
|
2009-03-22 22:30:16 +01:00
|
|
|
MSIINSTALLCONTEXT context,
|
2008-12-08 10:14:21 +01:00
|
|
|
LPWSTR patch, MSIPATCHSTATE *state)
|
|
|
|
{
|
|
|
|
DWORD type, val, size;
|
|
|
|
HKEY prod, hkey = 0;
|
|
|
|
HKEY udpatch = 0;
|
|
|
|
LONG res;
|
|
|
|
UINT r = ERROR_NO_MORE_ITEMS;
|
|
|
|
|
2008-12-09 07:20:29 +01:00
|
|
|
*state = MSIPATCHSTATE_INVALID;
|
|
|
|
|
2009-03-22 22:30:16 +01:00
|
|
|
r = MSIREG_OpenUserDataProductKey(prodcode, context,
|
|
|
|
usersid, &prod, FALSE);
|
2008-12-08 10:14:21 +01:00
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
return ERROR_NO_MORE_ITEMS;
|
|
|
|
|
|
|
|
res = RegOpenKeyExW(prod, szPatches, 0, KEY_READ, &hkey);
|
|
|
|
if (res != ERROR_SUCCESS)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
res = RegOpenKeyExW(hkey, patch, 0, KEY_READ, &udpatch);
|
|
|
|
if (res != ERROR_SUCCESS)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
size = sizeof(DWORD);
|
|
|
|
res = RegGetValueW(udpatch, NULL, szState, RRF_RT_DWORD, &type, &val, &size);
|
|
|
|
if (res != ERROR_SUCCESS ||
|
|
|
|
val < MSIPATCHSTATE_APPLIED || val > MSIPATCHSTATE_REGISTERED)
|
|
|
|
{
|
|
|
|
r = ERROR_BAD_CONFIGURATION;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
*state = val;
|
|
|
|
r = ERROR_SUCCESS;
|
|
|
|
|
|
|
|
done:
|
|
|
|
RegCloseKey(udpatch);
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
RegCloseKey(prod);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT msi_check_product_patches(LPCWSTR prodcode, LPCWSTR usersid,
|
|
|
|
MSIINSTALLCONTEXT context, DWORD filter, DWORD index, DWORD *idx,
|
|
|
|
LPWSTR patch, LPWSTR targetprod, MSIINSTALLCONTEXT *targetctx,
|
2008-12-09 07:21:28 +01:00
|
|
|
LPWSTR targetsid, DWORD *sidsize, LPWSTR *transforms)
|
2008-12-08 10:14:21 +01:00
|
|
|
{
|
2009-06-04 10:12:56 +02:00
|
|
|
MSIPATCHSTATE state = MSIPATCHSTATE_INVALID;
|
2008-12-08 10:14:21 +01:00
|
|
|
LPWSTR ptr, patches = NULL;
|
|
|
|
HKEY prod, patchkey = 0;
|
|
|
|
HKEY localprod = 0, localpatch = 0;
|
|
|
|
DWORD type, size;
|
|
|
|
LONG res;
|
|
|
|
UINT temp, r = ERROR_NO_MORE_ITEMS;
|
|
|
|
|
2009-03-22 22:30:16 +01:00
|
|
|
if (MSIREG_OpenProductKey(prodcode, usersid, context,
|
|
|
|
&prod, FALSE) != ERROR_SUCCESS)
|
2008-12-08 10:14:21 +01:00
|
|
|
return ERROR_NO_MORE_ITEMS;
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
res = RegGetValueW(prod, szPatches, szPatches, RRF_RT_ANY, &type, NULL,
|
|
|
|
&size);
|
|
|
|
if (res != ERROR_SUCCESS)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (type != REG_MULTI_SZ)
|
|
|
|
{
|
|
|
|
r = ERROR_BAD_CONFIGURATION;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
patches = msi_alloc(size);
|
|
|
|
if (!patches)
|
|
|
|
{
|
|
|
|
r = ERROR_OUTOFMEMORY;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = RegGetValueW(prod, szPatches, szPatches, RRF_RT_ANY, &type,
|
|
|
|
patches, &size);
|
|
|
|
if (res != ERROR_SUCCESS)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
ptr = patches;
|
2010-07-21 09:48:27 +02:00
|
|
|
for (ptr = patches; *ptr && r == ERROR_NO_MORE_ITEMS; ptr += lstrlenW(ptr) + 1)
|
2008-12-08 10:14:21 +01:00
|
|
|
{
|
|
|
|
if (!unsquash_guid(ptr, patch))
|
|
|
|
{
|
|
|
|
r = ERROR_BAD_CONFIGURATION;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
res = RegGetValueW(prod, szPatches, ptr, RRF_RT_REG_SZ,
|
|
|
|
&type, NULL, &size);
|
|
|
|
if (res != ERROR_SUCCESS)
|
|
|
|
continue;
|
|
|
|
|
2008-12-09 07:21:28 +01:00
|
|
|
if (transforms)
|
|
|
|
{
|
|
|
|
*transforms = msi_alloc(size);
|
|
|
|
if (!*transforms)
|
|
|
|
{
|
|
|
|
r = ERROR_OUTOFMEMORY;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = RegGetValueW(prod, szPatches, ptr, RRF_RT_REG_SZ,
|
|
|
|
&type, *transforms, &size);
|
|
|
|
if (res != ERROR_SUCCESS)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-12-08 10:14:21 +01:00
|
|
|
if (context == MSIINSTALLCONTEXT_USERMANAGED)
|
|
|
|
{
|
|
|
|
if (!(filter & MSIPATCHSTATE_APPLIED))
|
|
|
|
{
|
2009-03-22 22:30:16 +01:00
|
|
|
temp = msi_get_patch_state(prodcode, usersid, context,
|
|
|
|
ptr, &state);
|
2008-12-08 10:14:21 +01:00
|
|
|
if (temp == ERROR_BAD_CONFIGURATION)
|
|
|
|
{
|
|
|
|
r = ERROR_BAD_CONFIGURATION;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (temp != ERROR_SUCCESS || !(filter & state))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (context == MSIINSTALLCONTEXT_USERUNMANAGED)
|
|
|
|
{
|
|
|
|
if (!(filter & MSIPATCHSTATE_APPLIED))
|
|
|
|
{
|
2009-03-22 22:30:16 +01:00
|
|
|
temp = msi_get_patch_state(prodcode, usersid, context,
|
|
|
|
ptr, &state);
|
2008-12-08 10:14:21 +01:00
|
|
|
if (temp == ERROR_BAD_CONFIGURATION)
|
|
|
|
{
|
|
|
|
r = ERROR_BAD_CONFIGURATION;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (temp != ERROR_SUCCESS || !(filter & state))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-12-15 04:07:09 +01:00
|
|
|
temp = MSIREG_OpenUserDataPatchKey(patch, context,
|
|
|
|
&patchkey, FALSE);
|
2008-12-08 10:14:21 +01:00
|
|
|
RegCloseKey(patchkey);
|
|
|
|
if (temp != ERROR_SUCCESS)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (context == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
{
|
|
|
|
usersid = szEmpty;
|
|
|
|
|
2008-12-15 04:07:06 +01:00
|
|
|
if (MSIREG_OpenUserDataProductKey(prodcode, context, NULL, &localprod, FALSE) == ERROR_SUCCESS &&
|
2008-12-08 10:14:21 +01:00
|
|
|
RegOpenKeyExW(localprod, szPatches, 0, KEY_READ, &localpatch) == ERROR_SUCCESS &&
|
|
|
|
RegOpenKeyExW(localpatch, ptr, 0, KEY_READ, &patchkey) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
res = RegGetValueW(patchkey, NULL, szState, RRF_RT_REG_DWORD,
|
|
|
|
&type, &state, &size);
|
|
|
|
|
|
|
|
if (!(filter & state))
|
|
|
|
res = ERROR_NO_MORE_ITEMS;
|
|
|
|
|
|
|
|
RegCloseKey(patchkey);
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(localpatch);
|
|
|
|
RegCloseKey(localprod);
|
|
|
|
|
|
|
|
if (res != ERROR_SUCCESS)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*idx < index)
|
|
|
|
{
|
|
|
|
(*idx)++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = ERROR_SUCCESS;
|
2008-12-09 07:21:28 +01:00
|
|
|
if (targetprod)
|
|
|
|
lstrcpyW(targetprod, prodcode);
|
2008-12-08 10:14:21 +01:00
|
|
|
|
|
|
|
if (targetctx)
|
|
|
|
*targetctx = context;
|
|
|
|
|
|
|
|
if (targetsid)
|
|
|
|
{
|
|
|
|
lstrcpynW(targetsid, usersid, *sidsize);
|
|
|
|
if (lstrlenW(usersid) >= *sidsize)
|
|
|
|
r = ERROR_MORE_DATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sidsize)
|
|
|
|
{
|
|
|
|
*sidsize = lstrlenW(usersid);
|
|
|
|
if (!targetsid)
|
|
|
|
*sidsize *= sizeof(WCHAR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
RegCloseKey(prod);
|
|
|
|
msi_free(patches);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2008-12-09 07:21:28 +01:00
|
|
|
static UINT msi_enum_patches(LPCWSTR szProductCode, LPCWSTR szUserSid,
|
|
|
|
DWORD dwContext, DWORD dwFilter, DWORD dwIndex, DWORD *idx,
|
|
|
|
LPWSTR szPatchCode, LPWSTR szTargetProductCode,
|
|
|
|
MSIINSTALLCONTEXT *pdwTargetProductContext, LPWSTR szTargetUserSid,
|
|
|
|
LPDWORD pcchTargetUserSid, LPWSTR *szTransforms)
|
|
|
|
{
|
2009-03-22 22:30:03 +01:00
|
|
|
LPWSTR usersid = NULL;
|
2009-01-30 13:44:06 +01:00
|
|
|
UINT r = ERROR_INVALID_PARAMETER;
|
2008-12-09 07:21:28 +01:00
|
|
|
|
2009-03-22 22:30:03 +01:00
|
|
|
if (!szUserSid)
|
|
|
|
{
|
|
|
|
get_user_sid(&usersid);
|
|
|
|
szUserSid = usersid;
|
|
|
|
}
|
|
|
|
|
2008-12-09 07:21:28 +01:00
|
|
|
if (dwContext & MSIINSTALLCONTEXT_USERMANAGED)
|
|
|
|
{
|
|
|
|
r = msi_check_product_patches(szProductCode, szUserSid,
|
|
|
|
MSIINSTALLCONTEXT_USERMANAGED, dwFilter,
|
|
|
|
dwIndex, idx, szPatchCode,
|
|
|
|
szTargetProductCode,
|
|
|
|
pdwTargetProductContext, szTargetUserSid,
|
|
|
|
pcchTargetUserSid, szTransforms);
|
|
|
|
if (r != ERROR_NO_MORE_ITEMS)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dwContext & MSIINSTALLCONTEXT_USERUNMANAGED)
|
|
|
|
{
|
|
|
|
r = msi_check_product_patches(szProductCode, szUserSid,
|
|
|
|
MSIINSTALLCONTEXT_USERUNMANAGED, dwFilter,
|
|
|
|
dwIndex, idx, szPatchCode,
|
|
|
|
szTargetProductCode,
|
|
|
|
pdwTargetProductContext, szTargetUserSid,
|
|
|
|
pcchTargetUserSid, szTransforms);
|
|
|
|
if (r != ERROR_NO_MORE_ITEMS)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dwContext & MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
{
|
|
|
|
r = msi_check_product_patches(szProductCode, szUserSid,
|
|
|
|
MSIINSTALLCONTEXT_MACHINE, dwFilter,
|
|
|
|
dwIndex, idx, szPatchCode,
|
|
|
|
szTargetProductCode,
|
|
|
|
pdwTargetProductContext, szTargetUserSid,
|
|
|
|
pcchTargetUserSid, szTransforms);
|
|
|
|
if (r != ERROR_NO_MORE_ITEMS)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
2009-03-22 22:30:03 +01:00
|
|
|
LocalFree(usersid);
|
2008-12-09 07:21:28 +01:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2008-08-04 06:53:45 +02:00
|
|
|
/***********************************************************************
|
2008-12-08 10:14:21 +01:00
|
|
|
* MsiEnumPatchesExW [MSI.@]
|
2008-08-04 06:53:45 +02:00
|
|
|
*/
|
|
|
|
UINT WINAPI MsiEnumPatchesExW(LPCWSTR szProductCode, LPCWSTR szUserSid,
|
|
|
|
DWORD dwContext, DWORD dwFilter, DWORD dwIndex, LPWSTR szPatchCode,
|
|
|
|
LPWSTR szTargetProductCode, MSIINSTALLCONTEXT *pdwTargetProductContext,
|
2008-12-08 10:13:13 +01:00
|
|
|
LPWSTR szTargetUserSid, LPDWORD pcchTargetUserSid)
|
2008-08-04 06:53:45 +02:00
|
|
|
{
|
2008-12-08 10:14:21 +01:00
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
DWORD idx = 0;
|
|
|
|
UINT r;
|
|
|
|
|
2010-04-02 10:43:08 +02:00
|
|
|
static DWORD last_index;
|
2008-12-08 10:14:21 +01:00
|
|
|
|
|
|
|
TRACE("(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p)\n",
|
2008-08-04 06:53:45 +02:00
|
|
|
debugstr_w(szProductCode), debugstr_w(szUserSid), dwContext, dwFilter,
|
|
|
|
dwIndex, szPatchCode, szTargetProductCode, pdwTargetProductContext,
|
|
|
|
szTargetUserSid, pcchTargetUserSid);
|
2008-12-08 10:14:21 +01:00
|
|
|
|
|
|
|
if (!szProductCode || !squash_guid(szProductCode, squished_pc))
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2010-10-19 11:27:44 +02:00
|
|
|
if (szUserSid && !strcmpW( szUserSid, szLocalSid ))
|
2008-12-08 10:14:21 +01:00
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (dwContext & MSIINSTALLCONTEXT_MACHINE && szUserSid)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (dwContext <= MSIINSTALLCONTEXT_NONE ||
|
|
|
|
dwContext > MSIINSTALLCONTEXT_ALL)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (dwFilter <= MSIPATCHSTATE_INVALID || dwFilter > MSIPATCHSTATE_ALL)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (dwIndex && dwIndex - last_index != 1)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (dwIndex == 0)
|
|
|
|
last_index = 0;
|
|
|
|
|
2008-12-09 07:21:28 +01:00
|
|
|
r = msi_enum_patches(szProductCode, szUserSid, dwContext, dwFilter,
|
|
|
|
dwIndex, &idx, szPatchCode, szTargetProductCode,
|
|
|
|
pdwTargetProductContext, szTargetUserSid,
|
|
|
|
pcchTargetUserSid, NULL);
|
2008-12-08 10:14:21 +01:00
|
|
|
|
|
|
|
if (r == ERROR_SUCCESS)
|
|
|
|
last_index = dwIndex;
|
2010-04-02 10:43:08 +02:00
|
|
|
else
|
|
|
|
last_index = 0;
|
2008-12-08 10:14:21 +01:00
|
|
|
|
|
|
|
return r;
|
2008-08-04 06:53:45 +02:00
|
|
|
}
|
|
|
|
|
2006-07-24 08:24:53 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* MsiEnumPatchesA [MSI.@]
|
|
|
|
*/
|
2008-12-09 07:21:23 +01:00
|
|
|
UINT WINAPI MsiEnumPatchesA(LPCSTR szProduct, DWORD iPatchIndex,
|
2007-08-09 10:41:41 +02:00
|
|
|
LPSTR lpPatchBuf, LPSTR lpTransformsBuf, LPDWORD pcchTransformsBuf)
|
2006-07-24 08:24:53 +02:00
|
|
|
{
|
2009-02-25 15:04:31 +01:00
|
|
|
LPWSTR product, transforms;
|
2008-12-09 07:21:23 +01:00
|
|
|
WCHAR patch[GUID_SIZE];
|
|
|
|
DWORD len;
|
|
|
|
UINT r;
|
|
|
|
|
|
|
|
TRACE("(%s %d %p %p %p)\n", debugstr_a(szProduct), iPatchIndex,
|
|
|
|
lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
|
|
|
|
|
|
|
|
if (!szProduct || !lpPatchBuf || !lpTransformsBuf || !pcchTransformsBuf)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
product = strdupAtoW(szProduct);
|
|
|
|
if (!product)
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
|
2009-02-25 15:04:31 +01:00
|
|
|
len = *pcchTransformsBuf;
|
|
|
|
transforms = msi_alloc( len * sizeof(WCHAR) );
|
2008-12-09 07:21:23 +01:00
|
|
|
if (!transforms)
|
|
|
|
{
|
|
|
|
r = ERROR_OUTOFMEMORY;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = MsiEnumPatchesW(product, iPatchIndex, patch, transforms, &len);
|
2009-02-25 15:04:31 +01:00
|
|
|
if (r != ERROR_SUCCESS && r != ERROR_MORE_DATA)
|
2008-12-09 07:21:23 +01:00
|
|
|
goto done;
|
|
|
|
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, patch, -1, lpPatchBuf,
|
|
|
|
GUID_SIZE, NULL, NULL);
|
|
|
|
|
2009-02-25 15:04:31 +01:00
|
|
|
if (!WideCharToMultiByte(CP_ACP, 0, transforms, -1, lpTransformsBuf,
|
|
|
|
*pcchTransformsBuf, NULL, NULL))
|
|
|
|
r = ERROR_MORE_DATA;
|
2008-12-09 07:21:23 +01:00
|
|
|
|
2009-02-25 15:04:31 +01:00
|
|
|
if (r == ERROR_MORE_DATA)
|
2008-12-09 07:21:23 +01:00
|
|
|
{
|
|
|
|
lpTransformsBuf[*pcchTransformsBuf - 1] = '\0';
|
2009-02-25 15:04:31 +01:00
|
|
|
*pcchTransformsBuf = len * 2;
|
2008-12-09 07:21:23 +01:00
|
|
|
}
|
|
|
|
else
|
2009-02-25 15:04:31 +01:00
|
|
|
*pcchTransformsBuf = strlen( lpTransformsBuf );
|
2008-12-09 07:21:23 +01:00
|
|
|
|
|
|
|
done:
|
|
|
|
msi_free(transforms);
|
|
|
|
msi_free(product);
|
|
|
|
|
|
|
|
return r;
|
2006-07-24 08:24:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* MsiEnumPatchesW [MSI.@]
|
|
|
|
*/
|
2008-12-09 07:21:28 +01:00
|
|
|
UINT WINAPI MsiEnumPatchesW(LPCWSTR szProduct, DWORD iPatchIndex,
|
2007-08-09 10:41:41 +02:00
|
|
|
LPWSTR lpPatchBuf, LPWSTR lpTransformsBuf, LPDWORD pcchTransformsBuf)
|
2006-07-24 08:24:53 +02:00
|
|
|
{
|
2008-12-09 07:21:28 +01:00
|
|
|
WCHAR squished_pc[GUID_SIZE];
|
|
|
|
LPWSTR transforms = NULL;
|
|
|
|
HKEY prod;
|
|
|
|
DWORD idx = 0;
|
|
|
|
UINT r;
|
|
|
|
|
|
|
|
TRACE("(%s %d %p %p %p)\n", debugstr_w(szProduct), iPatchIndex,
|
|
|
|
lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
|
|
|
|
|
|
|
|
if (!szProduct || !squash_guid(szProduct, squished_pc))
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (!lpPatchBuf || !lpTransformsBuf || !pcchTransformsBuf)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2009-03-22 22:30:16 +01:00
|
|
|
if (MSIREG_OpenProductKey(szProduct, NULL, MSIINSTALLCONTEXT_USERMANAGED,
|
2008-12-09 07:21:28 +01:00
|
|
|
&prod, FALSE) != ERROR_SUCCESS &&
|
2009-03-22 22:30:16 +01:00
|
|
|
MSIREG_OpenProductKey(szProduct, NULL, MSIINSTALLCONTEXT_USERUNMANAGED,
|
2008-12-09 07:21:28 +01:00
|
|
|
&prod, FALSE) != ERROR_SUCCESS &&
|
2009-03-22 22:30:16 +01:00
|
|
|
MSIREG_OpenProductKey(szProduct, NULL, MSIINSTALLCONTEXT_MACHINE,
|
2008-12-09 07:21:28 +01:00
|
|
|
&prod, FALSE) != ERROR_SUCCESS)
|
|
|
|
return ERROR_UNKNOWN_PRODUCT;
|
|
|
|
|
|
|
|
RegCloseKey(prod);
|
|
|
|
|
|
|
|
r = msi_enum_patches(szProduct, NULL, MSIINSTALLCONTEXT_ALL,
|
|
|
|
MSIPATCHSTATE_ALL, iPatchIndex, &idx, lpPatchBuf,
|
|
|
|
NULL, NULL, NULL, NULL, &transforms);
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
lstrcpynW(lpTransformsBuf, transforms, *pcchTransformsBuf);
|
|
|
|
if (*pcchTransformsBuf <= lstrlenW(transforms))
|
|
|
|
{
|
|
|
|
r = ERROR_MORE_DATA;
|
2009-02-25 15:04:31 +01:00
|
|
|
*pcchTransformsBuf = lstrlenW(transforms);
|
2008-12-09 07:21:28 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
*pcchTransformsBuf = lstrlenW(transforms);
|
|
|
|
|
|
|
|
done:
|
|
|
|
msi_free(transforms);
|
|
|
|
return r;
|
2006-07-24 08:24:53 +02:00
|
|
|
}
|
2007-04-25 20:49:43 +02:00
|
|
|
|
|
|
|
UINT WINAPI MsiEnumProductsExA( LPCSTR szProductCode, LPCSTR szUserSid,
|
2007-08-04 03:14:53 +02:00
|
|
|
DWORD dwContext, DWORD dwIndex, CHAR szInstalledProductCode[39],
|
2007-04-25 20:49:43 +02:00
|
|
|
MSIINSTALLCONTEXT* pdwInstalledContext, LPSTR szSid, LPDWORD pcchSid)
|
|
|
|
{
|
|
|
|
FIXME("%s %s %d %d %p %p %p %p\n", debugstr_a(szProductCode), debugstr_a(szUserSid),
|
|
|
|
dwContext, dwIndex, szInstalledProductCode, pdwInstalledContext,
|
|
|
|
szSid, pcchSid);
|
|
|
|
return ERROR_NO_MORE_ITEMS;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI MsiEnumProductsExW( LPCWSTR szProductCode, LPCWSTR szUserSid,
|
2007-08-04 03:14:53 +02:00
|
|
|
DWORD dwContext, DWORD dwIndex, WCHAR szInstalledProductCode[39],
|
2007-04-25 20:49:43 +02:00
|
|
|
MSIINSTALLCONTEXT* pdwInstalledContext, LPWSTR szSid, LPDWORD pcchSid)
|
|
|
|
{
|
|
|
|
FIXME("%s %s %d %d %p %p %p %p\n", debugstr_w(szProductCode), debugstr_w(szUserSid),
|
|
|
|
dwContext, dwIndex, szInstalledProductCode, pdwInstalledContext,
|
|
|
|
szSid, pcchSid);
|
|
|
|
return ERROR_NO_MORE_ITEMS;
|
|
|
|
}
|