2004-03-17 21:49:59 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the Microsoft Installer (msi.dll)
|
|
|
|
*
|
2004-03-19 02:16:36 +01:00
|
|
|
* Copyright 2002-2004, Mike McCormack for CodeWeavers
|
2004-03-17 21:49:59 +01:00
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "msi.h"
|
|
|
|
#include "msiquery.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
#include "objidl.h"
|
|
|
|
#include "msipriv.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
|
|
|
|
#include "query.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msi);
|
|
|
|
|
|
|
|
typedef struct _msistring
|
|
|
|
{
|
|
|
|
UINT hash;
|
|
|
|
UINT refcount;
|
|
|
|
LPSTR str;
|
|
|
|
} msistring;
|
|
|
|
|
|
|
|
struct string_table
|
|
|
|
{
|
|
|
|
UINT count; /* the number of strings */
|
|
|
|
UINT freeslot;
|
|
|
|
msistring *strings; /* an array of strings (in the tree) */
|
|
|
|
};
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
static int msistring_makehash( const char *str )
|
2004-03-17 21:49:59 +01:00
|
|
|
{
|
|
|
|
int hash = 0;
|
|
|
|
|
|
|
|
while( *str )
|
|
|
|
{
|
|
|
|
hash ^= *str++;
|
|
|
|
hash *= 53;
|
|
|
|
hash = (hash<<5) || (hash>>27);
|
|
|
|
}
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
string_table *msi_init_stringtable( int entries )
|
|
|
|
{
|
|
|
|
string_table *st;
|
|
|
|
|
|
|
|
st = HeapAlloc( GetProcessHeap(), 0, sizeof (string_table) );
|
|
|
|
if( !st )
|
|
|
|
return NULL;
|
|
|
|
st->strings = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
sizeof (msistring) * entries );
|
|
|
|
if( !st )
|
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, st );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
st->count = entries;
|
2004-03-19 02:16:36 +01:00
|
|
|
st->freeslot = 1;
|
2004-03-17 21:49:59 +01:00
|
|
|
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID msi_destroy_stringtable( string_table *st )
|
|
|
|
{
|
|
|
|
UINT i;
|
|
|
|
|
|
|
|
for( i=0; i<st->count; i++ )
|
|
|
|
{
|
|
|
|
if( st->strings[i].refcount )
|
|
|
|
HeapFree( GetProcessHeap(), 0, st->strings[i].str );
|
|
|
|
}
|
|
|
|
HeapFree( GetProcessHeap(), 0, st->strings );
|
|
|
|
HeapFree( GetProcessHeap(), 0, st );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int st_find_free_entry( string_table *st )
|
|
|
|
{
|
2004-03-19 02:16:36 +01:00
|
|
|
int i, sz;
|
|
|
|
msistring *p;
|
2004-03-17 21:49:59 +01:00
|
|
|
|
|
|
|
for( i = st->freeslot; i < st->count; i++ )
|
|
|
|
if( !st->strings[i].refcount )
|
|
|
|
return i;
|
2004-03-19 02:16:36 +01:00
|
|
|
for( i = 1; i < st->freeslot; i++ )
|
2004-03-17 21:49:59 +01:00
|
|
|
if( !st->strings[i].refcount )
|
|
|
|
return i;
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
/* dynamically resize */
|
|
|
|
sz = st->count + 1 + st->count/2;
|
|
|
|
p = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
st->strings, sz*sizeof(msistring) );
|
|
|
|
if( !p )
|
|
|
|
return -1;
|
|
|
|
st->strings = p;
|
|
|
|
st->freeslot = st->count;
|
|
|
|
st->count = sz;
|
|
|
|
if( st->strings[st->freeslot].refcount )
|
|
|
|
ERR("oops. expected freeslot to be free...\n");
|
|
|
|
return st->freeslot;
|
2004-03-17 21:49:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void st_mark_entry_used( string_table *st, int n )
|
|
|
|
{
|
|
|
|
if( n >= st->count )
|
|
|
|
return;
|
|
|
|
st->freeslot = n + 1;
|
|
|
|
}
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
int msi_addstring( string_table *st, UINT n, const CHAR *data, UINT len, UINT refcount )
|
2004-03-17 21:49:59 +01:00
|
|
|
{
|
2004-03-19 02:16:36 +01:00
|
|
|
if( !data[0] )
|
|
|
|
return 0;
|
|
|
|
if( n > 0 )
|
|
|
|
{
|
|
|
|
if( st->strings[n].refcount )
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( ERROR_SUCCESS == msi_string2idA( st, data, &n ) )
|
|
|
|
{
|
|
|
|
st->strings[n].refcount++;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
n = st_find_free_entry( st );
|
|
|
|
if( n < 0 )
|
|
|
|
return -1;
|
|
|
|
}
|
2004-03-17 21:49:59 +01:00
|
|
|
|
|
|
|
/* allocate a new string */
|
|
|
|
if( len < 0 )
|
|
|
|
len = strlen( data );
|
|
|
|
st->strings[n].str = HeapAlloc( GetProcessHeap(), 0, len + 1 );
|
|
|
|
if( !st->strings[n].str )
|
|
|
|
return -1;
|
|
|
|
memcpy( st->strings[n].str, data, len );
|
|
|
|
st->strings[n].str[len] = 0;
|
|
|
|
st->strings[n].refcount = 1;
|
|
|
|
st->strings[n].hash = msistring_makehash( st->strings[n].str );
|
|
|
|
|
|
|
|
st_mark_entry_used( st, n );
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
int msi_addstringW( string_table *st, UINT n, const WCHAR *data, UINT len, UINT refcount )
|
|
|
|
{
|
|
|
|
int sz;
|
|
|
|
|
|
|
|
/* TRACE("[%2d] = %s\n", string_no, debugstr_an(data,len) ); */
|
|
|
|
|
|
|
|
if( !data[0] )
|
|
|
|
return 0;
|
|
|
|
if( n > 0 )
|
|
|
|
{
|
|
|
|
if( st->strings[n].refcount )
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( ERROR_SUCCESS == msi_string2id( st, data, &n ) )
|
|
|
|
{
|
|
|
|
st->strings[n].refcount++;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
n = st_find_free_entry( st );
|
|
|
|
if( n < 0 )
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate a new string */
|
|
|
|
sz = WideCharToMultiByte( CP_UTF8, 0, data, len, NULL, 0, NULL, NULL );
|
|
|
|
st->strings[n].str = HeapAlloc( GetProcessHeap(), 0, sz + 1 );
|
|
|
|
if( !st->strings[n].str )
|
|
|
|
return -1;
|
|
|
|
WideCharToMultiByte( CP_UTF8, 0, data, len,
|
|
|
|
st->strings[n].str, sz, NULL, NULL );
|
|
|
|
st->strings[n].str[sz] = 0;
|
|
|
|
st->strings[n].refcount = 1;
|
|
|
|
st->strings[n].hash = msistring_makehash( st->strings[n].str );
|
|
|
|
|
|
|
|
st_mark_entry_used( st, n );
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
/* find the string identified by an id - return null if there's none */
|
|
|
|
static const char *string_lookup_id( string_table *st, UINT id )
|
|
|
|
{
|
|
|
|
if( id == 0 )
|
|
|
|
return "";
|
|
|
|
|
|
|
|
if( id >= st->count )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if( id && !st->strings[id].refcount )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return st->strings[id].str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* msi_id2stringW
|
|
|
|
*
|
|
|
|
* [in] st - pointer to the string table
|
|
|
|
* [in] id - id of the string to retreive
|
|
|
|
* [out] buffer - destination of the string
|
|
|
|
* [in/out] sz - number of bytes available in the buffer on input
|
|
|
|
* number of bytes used on output
|
|
|
|
*
|
|
|
|
* The size includes the terminating nul character. Short buffers
|
|
|
|
* will be filled, but not nul terminated.
|
|
|
|
*/
|
|
|
|
UINT msi_id2stringW( string_table *st, UINT id, LPWSTR buffer, UINT *sz )
|
2004-03-18 05:04:08 +01:00
|
|
|
{
|
|
|
|
UINT len;
|
2004-03-19 20:14:12 +01:00
|
|
|
const char *str;
|
2004-03-18 05:04:08 +01:00
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
TRACE("Finding string %d of %d\n", id, st->count);
|
2004-03-18 05:04:08 +01:00
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
str = string_lookup_id( st, id );
|
|
|
|
if( !str )
|
2004-03-18 05:04:08 +01:00
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
len = MultiByteToWideChar(CP_UTF8,0,str,-1,NULL,0);
|
2004-03-18 05:04:08 +01:00
|
|
|
|
|
|
|
if( !buffer )
|
|
|
|
{
|
2004-03-19 20:14:12 +01:00
|
|
|
*sz = len;
|
2004-03-18 05:04:08 +01:00
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
*sz = MultiByteToWideChar(CP_UTF8,0,str,-1,buffer,*sz);
|
2004-03-18 05:04:08 +01:00
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
/*
|
|
|
|
* msi_id2stringA
|
|
|
|
*
|
|
|
|
* [in] st - pointer to the string table
|
|
|
|
* [in] id - id of the string to retreive
|
|
|
|
* [out] buffer - destination of the UTF8 string
|
|
|
|
* [in/out] sz - number of bytes available in the buffer on input
|
|
|
|
* number of bytes used on output
|
|
|
|
*
|
|
|
|
* The size includes the terminating nul character. Short buffers
|
|
|
|
* will be filled, but not nul terminated.
|
|
|
|
*/
|
|
|
|
UINT msi_id2stringA( string_table *st, UINT id, LPSTR buffer, UINT *sz )
|
2004-03-17 21:49:59 +01:00
|
|
|
{
|
|
|
|
UINT len;
|
2004-03-19 20:14:12 +01:00
|
|
|
const char *str;
|
2004-03-17 21:49:59 +01:00
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
TRACE("Finding string %d of %d\n", id, st->count);
|
2004-03-17 21:49:59 +01:00
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
str = string_lookup_id( st, id );
|
|
|
|
if( !str )
|
2004-03-17 21:49:59 +01:00
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
len = strlen( str ) + 1;
|
2004-03-17 21:49:59 +01:00
|
|
|
|
|
|
|
if( !buffer )
|
|
|
|
{
|
|
|
|
*sz = len;
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
if( *sz < len )
|
|
|
|
*sz = len;
|
|
|
|
memcpy( buffer, str, *sz );
|
|
|
|
*sz = len;
|
2004-03-17 21:49:59 +01:00
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
/*
|
|
|
|
* msi_string2idA
|
|
|
|
*
|
|
|
|
* [in] st - pointer to the string table
|
|
|
|
* [in] str - UTF8 string to find in the string table
|
|
|
|
* [out] id - id of the string, if found
|
|
|
|
*/
|
2004-03-19 02:16:36 +01:00
|
|
|
UINT msi_string2idA( string_table *st, LPCSTR str, UINT *id )
|
2004-03-17 21:49:59 +01:00
|
|
|
{
|
|
|
|
int hash;
|
2004-03-19 02:16:36 +01:00
|
|
|
UINT i, r = ERROR_INVALID_PARAMETER;
|
2004-03-17 21:49:59 +01:00
|
|
|
|
|
|
|
hash = msistring_makehash( str );
|
2004-03-19 02:16:36 +01:00
|
|
|
for( i=0; i<st->count; i++ )
|
2004-03-17 21:49:59 +01:00
|
|
|
{
|
|
|
|
if( ( st->strings[i].hash == hash ) &&
|
|
|
|
!strcmp( st->strings[i].str, str ) )
|
|
|
|
{
|
|
|
|
r = ERROR_SUCCESS;
|
|
|
|
*id = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT msi_string2id( string_table *st, LPCWSTR buffer, UINT *id )
|
|
|
|
{
|
|
|
|
DWORD sz;
|
|
|
|
UINT r = ERROR_INVALID_PARAMETER;
|
|
|
|
LPSTR str;
|
|
|
|
|
|
|
|
TRACE("Finding string %s in string table\n", debugstr_w(buffer) );
|
|
|
|
|
2004-03-19 20:14:12 +01:00
|
|
|
if( buffer[0] == 0 )
|
|
|
|
{
|
|
|
|
*id = 0;
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
sz = WideCharToMultiByte( CP_UTF8, 0, buffer, -1, NULL, 0, NULL, NULL );
|
|
|
|
if( sz <= 0 )
|
|
|
|
return r;
|
|
|
|
str = HeapAlloc( GetProcessHeap(), 0, sz );
|
|
|
|
if( !str )
|
|
|
|
return ERROR_NOT_ENOUGH_MEMORY;
|
|
|
|
WideCharToMultiByte( CP_UTF8, 0, buffer, -1, str, sz, NULL, NULL );
|
|
|
|
|
|
|
|
r = msi_string2idA( st, str, id );
|
2004-03-17 21:49:59 +01:00
|
|
|
if( str )
|
|
|
|
HeapFree( GetProcessHeap(), 0, str );
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2004-03-18 05:04:08 +01:00
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
|
2004-03-18 05:04:08 +01:00
|
|
|
UINT msi_string_count( string_table *st )
|
|
|
|
{
|
|
|
|
return st->count;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT msi_id_refcount( string_table *st, UINT i )
|
|
|
|
{
|
|
|
|
if( i >= st->count )
|
|
|
|
return 0;
|
|
|
|
return st->strings[i].refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT msi_string_totalsize( string_table *st )
|
|
|
|
{
|
|
|
|
UINT size = 0, i;
|
|
|
|
|
|
|
|
for( i=0; i<st->count; i++)
|
|
|
|
{
|
|
|
|
if( st->strings[i].str )
|
|
|
|
size += strlen( st->strings[i].str );
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|