2005-07-05 23:00:06 +02:00
|
|
|
/*
|
|
|
|
* Implementation of the Microsoft Installer (msi.dll)
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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 "msiquery.h"
|
|
|
|
#include "msipriv.h"
|
|
|
|
#include "wincrypt.h"
|
|
|
|
#include "winver.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "action.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msi);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These apis are defined in MSI 3.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct tagMediaInfo
|
|
|
|
{
|
|
|
|
LPWSTR path;
|
|
|
|
WCHAR szIndex[10];
|
|
|
|
WCHAR type;
|
|
|
|
} media_info;
|
|
|
|
|
|
|
|
static UINT OpenSourceKey(LPCWSTR szProduct, HKEY* key, BOOL user, BOOL create)
|
|
|
|
{
|
|
|
|
HKEY rootkey = 0;
|
|
|
|
UINT rc;
|
|
|
|
static const WCHAR szSourceList[] = {'S','o','u','r','c','e','L','i','s','t',0};
|
|
|
|
|
|
|
|
if (user)
|
|
|
|
rc = MSIREG_OpenUserProductsKey(szProduct, &rootkey, create);
|
|
|
|
else
|
|
|
|
rc = MSIREG_OpenProductsKey(szProduct, &rootkey, create);
|
|
|
|
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(rootkey, szSourceList, key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(rootkey,szSourceList, key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT OpenMediaSubkey(HKEY rootkey, HKEY *key, BOOL create)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
static const WCHAR media[] = {'M','e','d','i','a',0};
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(rootkey, media, key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(rootkey,media, key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT OpenNetworkSubkey(HKEY rootkey, HKEY *key, BOOL create)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
static const WCHAR net[] = {'N','e','t',0};
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(rootkey, net, key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(rootkey, net, key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT OpenURLSubkey(HKEY rootkey, HKEY *key, BOOL create)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
static const WCHAR URL[] = {'U','R','L',0};
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
rc = RegCreateKeyW(rootkey, URL, key);
|
|
|
|
else
|
|
|
|
rc = RegOpenKeyW(rootkey, URL, key);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static UINT find_given_source(HKEY key, LPCWSTR szSource, media_info *ss)
|
|
|
|
{
|
|
|
|
DWORD index = 0;
|
|
|
|
WCHAR szIndex[10];
|
|
|
|
DWORD size;
|
|
|
|
DWORD val_size;
|
|
|
|
LPWSTR val;
|
|
|
|
UINT rc = ERROR_SUCCESS;
|
|
|
|
|
|
|
|
while (rc == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
val = NULL;
|
|
|
|
val_size = 0;
|
|
|
|
rc = RegEnumValueW(key, index, szIndex, &size, NULL, NULL, NULL, &val_size);
|
|
|
|
if (rc != ERROR_NO_MORE_ITEMS)
|
|
|
|
{
|
2005-09-20 13:57:19 +02:00
|
|
|
val = msi_alloc(val_size);
|
2005-07-05 23:00:06 +02:00
|
|
|
RegEnumValueW(key, index, szIndex, &size, NULL, NULL, (LPBYTE)val,
|
|
|
|
&val_size);
|
|
|
|
if (lstrcmpiW(szSource,val)==0)
|
|
|
|
{
|
|
|
|
ss->path = val;
|
|
|
|
strcpyW(ss->szIndex,szIndex);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
strcpyW(ss->szIndex,szIndex);
|
|
|
|
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free(val);
|
2005-07-05 23:00:06 +02:00
|
|
|
index ++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* MsiSourceListGetInfoW (MSI.@)
|
|
|
|
*/
|
|
|
|
UINT WINAPI MsiSourceListGetInfoW( LPCWSTR szProduct, LPCWSTR szUserSid,
|
|
|
|
MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
|
|
|
|
LPCWSTR szProperty, LPWSTR szValue,
|
|
|
|
LPDWORD pcchValue)
|
|
|
|
{
|
|
|
|
HKEY sourcekey;
|
|
|
|
UINT rc;
|
|
|
|
|
|
|
|
TRACE("%s %s\n", debugstr_w(szProduct), debugstr_w(szProperty));
|
|
|
|
|
|
|
|
if (!szProduct || lstrlenW(szProduct) > 39)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (szValue && !pcchValue)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (dwOptions == MSICODE_PATCH)
|
|
|
|
{
|
|
|
|
FIXME("Unhandled options MSICODE_PATCH\n");
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (szUserSid)
|
|
|
|
FIXME("Unhandled UserSid %s\n",debugstr_w(szUserSid));
|
|
|
|
|
|
|
|
if (dwContext == MSIINSTALLCONTEXT_USERUNMANAGED)
|
|
|
|
FIXME("Unknown context MSIINSTALLCONTEXT_USERUNMANAGED\n");
|
|
|
|
|
|
|
|
if (dwContext == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
rc = OpenSourceKey(szProduct, &sourcekey, FALSE, FALSE);
|
|
|
|
else
|
|
|
|
rc = OpenSourceKey(szProduct, &sourcekey, TRUE, FALSE);
|
|
|
|
|
|
|
|
if (rc != ERROR_SUCCESS)
|
|
|
|
return ERROR_UNKNOWN_PRODUCT;
|
|
|
|
|
2005-07-13 14:07:41 +02:00
|
|
|
if (strcmpW(szProperty, INSTALLPROPERTY_MEDIAPACKAGEPATHW) == 0)
|
2005-07-05 23:00:06 +02:00
|
|
|
{
|
|
|
|
HKEY key;
|
|
|
|
rc = OpenMediaSubkey(sourcekey, &key, FALSE);
|
|
|
|
if (rc == ERROR_SUCCESS)
|
2005-07-13 14:07:41 +02:00
|
|
|
rc = RegQueryValueExW(key, INSTALLPROPERTY_MEDIAPACKAGEPATHW,
|
2005-07-11 15:22:24 +02:00
|
|
|
0, 0, (LPBYTE)szValue, pcchValue);
|
2005-07-05 23:00:06 +02:00
|
|
|
if (rc != ERROR_SUCCESS && rc != ERROR_MORE_DATA)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
RegCloseKey(key);
|
|
|
|
}
|
2005-07-13 14:07:41 +02:00
|
|
|
else if (strcmpW(szProperty, INSTALLPROPERTY_DISKPROMPTW) ==0)
|
2005-07-05 23:00:06 +02:00
|
|
|
{
|
|
|
|
HKEY key;
|
|
|
|
rc = OpenMediaSubkey(sourcekey, &key, FALSE);
|
|
|
|
if (rc == ERROR_SUCCESS)
|
2005-07-13 14:07:41 +02:00
|
|
|
rc = RegQueryValueExW(key, INSTALLPROPERTY_DISKPROMPTW, 0, 0,
|
2005-07-05 23:00:06 +02:00
|
|
|
(LPBYTE)szValue, pcchValue);
|
|
|
|
if (rc != ERROR_SUCCESS && rc != ERROR_MORE_DATA)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
RegCloseKey(key);
|
|
|
|
}
|
2005-07-13 14:07:41 +02:00
|
|
|
else if (strcmpW(szProperty, INSTALLPROPERTY_LASTUSEDSOURCEW)==0)
|
2005-07-05 23:00:06 +02:00
|
|
|
{
|
|
|
|
LPWSTR buffer;
|
|
|
|
DWORD size = 0;
|
|
|
|
|
2005-07-13 14:07:41 +02:00
|
|
|
RegQueryValueExW(sourcekey, INSTALLPROPERTY_LASTUSEDSOURCEW, 0, 0,
|
2005-07-11 15:22:24 +02:00
|
|
|
NULL, &size);
|
2005-07-05 23:00:06 +02:00
|
|
|
if (size == 0)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LPWSTR ptr;
|
2005-09-20 13:57:19 +02:00
|
|
|
buffer = msi_alloc(size);
|
2005-07-13 14:07:41 +02:00
|
|
|
rc = RegQueryValueExW(sourcekey, INSTALLPROPERTY_LASTUSEDSOURCEW,
|
2005-07-11 15:22:24 +02:00
|
|
|
0, 0, (LPBYTE)buffer,&size);
|
2005-07-05 23:00:06 +02:00
|
|
|
ptr = strchrW(buffer,';');
|
2005-07-11 20:00:36 +02:00
|
|
|
if (ptr) ptr = strchrW(ptr+1,';');
|
2005-07-05 23:00:06 +02:00
|
|
|
if (!ptr)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ptr ++;
|
|
|
|
lstrcpynW(szValue, ptr, *pcchValue);
|
|
|
|
if (lstrlenW(ptr) > *pcchValue)
|
|
|
|
{
|
|
|
|
*pcchValue = lstrlenW(ptr)+1;
|
|
|
|
rc = ERROR_MORE_DATA;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rc = ERROR_SUCCESS;
|
|
|
|
}
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free(buffer);
|
2005-07-05 23:00:06 +02:00
|
|
|
}
|
|
|
|
}
|
2005-07-13 14:07:41 +02:00
|
|
|
else if (strcmpW(INSTALLPROPERTY_LASTUSEDTYPEW, szProperty)==0)
|
2005-07-05 23:00:06 +02:00
|
|
|
{
|
|
|
|
LPWSTR buffer;
|
|
|
|
DWORD size = 0;
|
|
|
|
|
2005-07-13 14:07:41 +02:00
|
|
|
RegQueryValueExW(sourcekey, INSTALLPROPERTY_LASTUSEDSOURCEW, 0, 0,
|
2005-07-11 15:22:24 +02:00
|
|
|
NULL, &size);
|
2005-07-05 23:00:06 +02:00
|
|
|
if (size == 0)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
else
|
|
|
|
{
|
2005-09-20 13:57:19 +02:00
|
|
|
buffer = msi_alloc(size);
|
2005-07-13 14:07:41 +02:00
|
|
|
rc = RegQueryValueExW(sourcekey, INSTALLPROPERTY_LASTUSEDSOURCEW,
|
2005-07-11 15:22:24 +02:00
|
|
|
0, 0, (LPBYTE)buffer,&size);
|
2005-07-05 23:00:06 +02:00
|
|
|
if (*pcchValue < 1)
|
|
|
|
{
|
|
|
|
rc = ERROR_MORE_DATA;
|
|
|
|
*pcchValue = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
szValue[0] = buffer[0];
|
|
|
|
rc = ERROR_SUCCESS;
|
|
|
|
}
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free(buffer);
|
2005-07-05 23:00:06 +02:00
|
|
|
}
|
|
|
|
}
|
2005-07-13 14:07:41 +02:00
|
|
|
else if (strcmpW(INSTALLPROPERTY_PACKAGENAMEW, szProperty)==0)
|
2005-07-05 23:00:06 +02:00
|
|
|
{
|
2005-07-13 14:07:41 +02:00
|
|
|
rc = RegQueryValueExW(sourcekey, INSTALLPROPERTY_PACKAGENAMEW, 0, 0,
|
2005-07-05 23:00:06 +02:00
|
|
|
(LPBYTE)szValue, pcchValue);
|
|
|
|
if (rc != ERROR_SUCCESS && rc != ERROR_MORE_DATA)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("Unknown property %s\n",debugstr_w(szProperty));
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(sourcekey);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* MsiSourceListSetInfoW (MSI.@)
|
|
|
|
*/
|
|
|
|
UINT WINAPI MsiSourceListSetInfoW( LPCWSTR szProduct, LPCWSTR szUserSid,
|
|
|
|
MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
|
|
|
|
LPCWSTR szProperty, LPCWSTR szValue)
|
|
|
|
{
|
|
|
|
HKEY sourcekey;
|
|
|
|
UINT rc;
|
|
|
|
|
|
|
|
TRACE("%s %s %x %lx %s %s\n", debugstr_w(szProduct), debugstr_w(szUserSid),
|
|
|
|
dwContext, dwOptions, debugstr_w(szProperty), debugstr_w(szValue));
|
|
|
|
|
|
|
|
if (!szProduct || lstrlenW(szProduct) > 39)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (dwOptions & MSICODE_PATCH)
|
|
|
|
{
|
|
|
|
FIXME("Unhandled options MSICODE_PATCH\n");
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (szUserSid)
|
|
|
|
FIXME("Unhandled UserSid %s\n",debugstr_w(szUserSid));
|
|
|
|
|
|
|
|
if (dwContext == MSIINSTALLCONTEXT_USERUNMANAGED)
|
|
|
|
FIXME("Unknown context MSIINSTALLCONTEXT_USERUNMANAGED\n");
|
|
|
|
|
|
|
|
if (dwContext == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
rc = OpenSourceKey(szProduct, &sourcekey, FALSE, TRUE);
|
|
|
|
else
|
|
|
|
rc = OpenSourceKey(szProduct, &sourcekey, TRUE, TRUE);
|
|
|
|
|
|
|
|
if (rc != ERROR_SUCCESS)
|
|
|
|
return ERROR_UNKNOWN_PRODUCT;
|
|
|
|
|
|
|
|
|
2005-07-13 14:07:41 +02:00
|
|
|
if (strcmpW(szProperty, INSTALLPROPERTY_MEDIAPACKAGEPATHW) == 0)
|
2005-07-05 23:00:06 +02:00
|
|
|
{
|
|
|
|
HKEY key;
|
|
|
|
DWORD size = lstrlenW(szValue)*sizeof(WCHAR);
|
|
|
|
rc = OpenMediaSubkey(sourcekey, &key, FALSE);
|
|
|
|
if (rc == ERROR_SUCCESS)
|
2005-07-13 14:07:41 +02:00
|
|
|
rc = RegSetValueExW(key, INSTALLPROPERTY_MEDIAPACKAGEPATHW, 0,
|
2005-07-05 23:00:06 +02:00
|
|
|
REG_SZ, (LPBYTE)szValue, size);
|
|
|
|
if (rc != ERROR_SUCCESS)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
RegCloseKey(key);
|
|
|
|
}
|
2005-07-13 14:07:41 +02:00
|
|
|
else if (strcmpW(szProperty, INSTALLPROPERTY_DISKPROMPTW) == 0)
|
2005-07-05 23:00:06 +02:00
|
|
|
{
|
|
|
|
HKEY key;
|
|
|
|
DWORD size = lstrlenW(szValue)*sizeof(WCHAR);
|
|
|
|
rc = OpenMediaSubkey(sourcekey, &key, FALSE);
|
|
|
|
if (rc == ERROR_SUCCESS)
|
2005-07-13 14:07:41 +02:00
|
|
|
rc = RegSetValueExW(key, INSTALLPROPERTY_DISKPROMPTW, 0,
|
2005-07-11 15:22:24 +02:00
|
|
|
REG_SZ, (LPBYTE)szValue, size);
|
2005-07-05 23:00:06 +02:00
|
|
|
if (rc != ERROR_SUCCESS)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
RegCloseKey(key);
|
|
|
|
}
|
2005-07-13 14:07:41 +02:00
|
|
|
else if (strcmpW(szProperty, INSTALLPROPERTY_LASTUSEDSOURCEW)==0)
|
2005-07-05 23:00:06 +02:00
|
|
|
{
|
|
|
|
LPWSTR buffer = NULL;
|
|
|
|
DWORD size;
|
|
|
|
WCHAR typechar = 'n';
|
|
|
|
static const WCHAR LastUsedSource_Fmt[] = {'%','c',';','%','i',';','%','s',0};
|
|
|
|
|
|
|
|
/* make sure the source is registered */
|
|
|
|
MsiSourceListAddSourceExW(szProduct, szUserSid, dwContext,
|
|
|
|
dwOptions, szValue, 0);
|
|
|
|
|
|
|
|
if (dwOptions & MSISOURCETYPE_NETWORK)
|
|
|
|
typechar = 'n';
|
|
|
|
else if (dwOptions & MSISOURCETYPE_URL)
|
|
|
|
typechar = 'u';
|
|
|
|
else if (dwOptions & MSISOURCETYPE_MEDIA)
|
|
|
|
typechar = 'm';
|
|
|
|
else
|
|
|
|
ERR("Unknown source type! 0x%lx\n",dwOptions);
|
|
|
|
|
|
|
|
size = (lstrlenW(szValue)+5)*sizeof(WCHAR);
|
2005-09-20 13:57:19 +02:00
|
|
|
buffer = msi_alloc(size);
|
2005-07-05 23:00:06 +02:00
|
|
|
sprintfW(buffer, LastUsedSource_Fmt, typechar, 1, szValue);
|
2005-07-13 14:07:41 +02:00
|
|
|
rc = RegSetValueExW(sourcekey, INSTALLPROPERTY_LASTUSEDSOURCEW, 0,
|
2005-07-05 23:00:06 +02:00
|
|
|
REG_EXPAND_SZ, (LPBYTE)buffer, size);
|
|
|
|
if (rc != ERROR_SUCCESS)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free( buffer );
|
2005-07-05 23:00:06 +02:00
|
|
|
}
|
2005-07-13 14:07:41 +02:00
|
|
|
else if (strcmpW(INSTALLPROPERTY_PACKAGENAMEW, szProperty)==0)
|
2005-07-05 23:00:06 +02:00
|
|
|
{
|
|
|
|
DWORD size = lstrlenW(szValue)*sizeof(WCHAR);
|
2005-07-13 14:07:41 +02:00
|
|
|
rc = RegSetValueExW(sourcekey, INSTALLPROPERTY_PACKAGENAMEW, 0,
|
2005-07-11 15:22:24 +02:00
|
|
|
REG_SZ, (LPBYTE)szValue, size);
|
2005-07-05 23:00:06 +02:00
|
|
|
if (rc != ERROR_SUCCESS)
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("Unknown property %s\n",debugstr_w(szProperty));
|
|
|
|
rc = ERROR_UNKNOWN_PROPERTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(sourcekey);
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* MsiSourceListAddSourceExW (MSI.@)
|
|
|
|
*/
|
|
|
|
UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
|
|
|
|
MSIINSTALLCONTEXT dwContext, DWORD dwOptions, LPCWSTR szSource,
|
|
|
|
DWORD dwIndex)
|
|
|
|
{
|
|
|
|
HKEY sourcekey;
|
|
|
|
HKEY typekey;
|
|
|
|
UINT rc;
|
|
|
|
media_info source_struct;
|
|
|
|
|
|
|
|
TRACE("%s, %s, %x, %lx, %s, %li\n", debugstr_w(szProduct),
|
|
|
|
debugstr_w(szUserSid), dwContext, dwOptions, debugstr_w(szSource),
|
|
|
|
dwIndex);
|
|
|
|
|
|
|
|
if (!szProduct)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (!szSource)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (dwOptions & MSICODE_PATCH)
|
|
|
|
{
|
|
|
|
FIXME("Unhandled options MSICODE_PATCH\n");
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (szUserSid)
|
|
|
|
FIXME("Unhandled UserSid %s\n",debugstr_w(szUserSid));
|
|
|
|
|
|
|
|
if (dwContext == MSIINSTALLCONTEXT_USERUNMANAGED)
|
|
|
|
FIXME("Unknown context MSIINSTALLCONTEXT_USERUNMANAGED\n");
|
|
|
|
|
|
|
|
if (dwContext == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
rc = OpenSourceKey(szProduct, &sourcekey, FALSE, TRUE);
|
|
|
|
else
|
|
|
|
rc = OpenSourceKey(szProduct, &sourcekey, TRUE, TRUE);
|
|
|
|
|
|
|
|
if (rc != ERROR_SUCCESS)
|
|
|
|
return ERROR_UNKNOWN_PRODUCT;
|
|
|
|
|
|
|
|
if (dwOptions & MSISOURCETYPE_NETWORK)
|
|
|
|
rc = OpenNetworkSubkey(sourcekey, &typekey, TRUE);
|
|
|
|
else if (dwOptions & MSISOURCETYPE_URL)
|
|
|
|
rc = OpenURLSubkey(sourcekey, &typekey, TRUE);
|
|
|
|
else
|
|
|
|
{
|
2005-09-06 11:23:18 +02:00
|
|
|
ERR("unknown media type: %08lx\n", dwOptions);
|
2005-07-05 23:00:06 +02:00
|
|
|
RegCloseKey(sourcekey);
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
source_struct.szIndex[0] = 0;
|
|
|
|
if (find_given_source(typekey, szSource, &source_struct)==ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
DWORD current_index = atoiW(source_struct.szIndex);
|
|
|
|
/* found the source */
|
|
|
|
if (dwIndex > 0 && current_index != dwIndex)
|
2005-09-06 11:23:18 +02:00
|
|
|
FIXME("Need to reorder the sources!\n");
|
2005-07-05 23:00:06 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DWORD current_index = 0;
|
|
|
|
static const WCHAR fmt[] = {'%','i',0};
|
|
|
|
DWORD size = lstrlenW(szSource)*sizeof(WCHAR);
|
|
|
|
|
|
|
|
if (source_struct.szIndex[0])
|
|
|
|
current_index = atoiW(source_struct.szIndex);
|
|
|
|
/* new source */
|
|
|
|
if (dwIndex > 0 && dwIndex < current_index)
|
2005-09-06 11:23:18 +02:00
|
|
|
FIXME("Need to reorder the sources!\n");
|
2005-07-05 23:00:06 +02:00
|
|
|
|
|
|
|
current_index ++;
|
|
|
|
sprintfW(source_struct.szIndex,fmt,current_index);
|
|
|
|
rc = RegSetValueExW(typekey, source_struct.szIndex, 0, REG_EXPAND_SZ,
|
|
|
|
(LPBYTE)szSource, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(typekey);
|
|
|
|
RegCloseKey(sourcekey);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* MsiSourceListAddMediaDisk(MSI.@)
|
|
|
|
*/
|
|
|
|
UINT WINAPI MsiSourceListAddMediaDiskW(LPCWSTR szProduct, LPCWSTR szUserSid,
|
|
|
|
MSIINSTALLCONTEXT dwContext, DWORD dwOptions, DWORD dwDiskId,
|
|
|
|
LPCWSTR szVolumeLabel, LPCWSTR szDiskPrompt)
|
|
|
|
{
|
|
|
|
HKEY sourcekey;
|
|
|
|
HKEY mediakey;
|
|
|
|
UINT rc;
|
|
|
|
WCHAR szIndex[10];
|
|
|
|
static const WCHAR fmt[] = {'%','i',0};
|
|
|
|
static const WCHAR disk_fmt[] = {'%','s',';','%','s',0};
|
|
|
|
static const WCHAR empty[1] = {0};
|
|
|
|
LPCWSTR pt1,pt2;
|
|
|
|
LPWSTR buffer;
|
|
|
|
DWORD size;
|
|
|
|
|
|
|
|
TRACE("%s %s %x %lx %li %s %s\n", debugstr_w(szProduct),
|
|
|
|
debugstr_w(szUserSid), dwContext, dwOptions, dwDiskId,
|
|
|
|
debugstr_w(szVolumeLabel), debugstr_w(szDiskPrompt));
|
|
|
|
|
|
|
|
if (!szProduct || lstrlenW(szProduct) > 39)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (dwOptions & MSICODE_PATCH)
|
|
|
|
{
|
|
|
|
FIXME("Unhandled options MSICODE_PATCH\n");
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (szUserSid)
|
|
|
|
FIXME("Unhandled UserSid %s\n",debugstr_w(szUserSid));
|
|
|
|
|
|
|
|
if (dwContext == MSIINSTALLCONTEXT_USERUNMANAGED)
|
|
|
|
FIXME("Unknown context MSIINSTALLCONTEXT_USERUNMANAGED\n");
|
|
|
|
|
|
|
|
if (dwContext == MSIINSTALLCONTEXT_MACHINE)
|
|
|
|
rc = OpenSourceKey(szProduct, &sourcekey, FALSE, TRUE);
|
|
|
|
else
|
|
|
|
rc = OpenSourceKey(szProduct, &sourcekey, TRUE, TRUE);
|
|
|
|
|
|
|
|
if (rc != ERROR_SUCCESS)
|
|
|
|
return ERROR_UNKNOWN_PRODUCT;
|
|
|
|
|
|
|
|
OpenMediaSubkey(sourcekey,&mediakey,TRUE);
|
|
|
|
|
|
|
|
sprintfW(szIndex,fmt,dwDiskId);
|
|
|
|
|
|
|
|
size = 2;
|
|
|
|
if (szVolumeLabel)
|
|
|
|
{
|
|
|
|
size +=lstrlenW(szVolumeLabel);
|
|
|
|
pt1 = szVolumeLabel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pt1 = empty;
|
|
|
|
if (szDiskPrompt)
|
|
|
|
{
|
|
|
|
size +=lstrlenW(szDiskPrompt);
|
|
|
|
pt2 = szDiskPrompt;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pt2 = empty;
|
|
|
|
|
|
|
|
size *=sizeof(WCHAR);
|
|
|
|
|
2005-09-20 13:57:19 +02:00
|
|
|
buffer = msi_alloc(size);
|
2005-07-05 23:00:06 +02:00
|
|
|
sprintfW(buffer,disk_fmt,pt1,pt2);
|
|
|
|
|
|
|
|
RegSetValueExW(mediakey, szIndex, 0, REG_SZ, (LPBYTE)buffer, size);
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free( buffer );
|
2005-07-05 23:00:06 +02:00
|
|
|
|
|
|
|
RegCloseKey(sourcekey);
|
|
|
|
RegCloseKey(mediakey);
|
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|