2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2005 Aric Stewart for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 /* Msi top level apis directly related to installs */
28 #include "wine/debug.h"
33 #include "wine/unicode.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(msi);
38 /***********************************************************************
39 * MsiDoActionA (MSI.@)
41 UINT WINAPI MsiDoActionA( MSIHANDLE hInstall, LPCSTR szAction )
46 TRACE(" exteral attempt at action %s\n",szAction);
49 return ERROR_FUNCTION_FAILED;
51 return ERROR_FUNCTION_FAILED;
53 szwAction = strdupAtoW(szAction);
56 return ERROR_FUNCTION_FAILED;
59 rc = MsiDoActionW(hInstall, szwAction);
60 HeapFree(GetProcessHeap(),0,szwAction);
64 /***********************************************************************
65 * MsiDoActionW (MSI.@)
67 UINT WINAPI MsiDoActionW( MSIHANDLE hInstall, LPCWSTR szAction )
70 UINT ret = ERROR_INVALID_HANDLE;
72 TRACE(" external attempt at action %s \n",debugstr_w(szAction));
74 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
77 ret = ACTION_PerformUIAction(package,szAction);
78 msiobj_release( &package->hdr );
83 /***********************************************************************
84 * MsiGetTargetPathA (MSI.@)
86 UINT WINAPI MsiGetTargetPathA( MSIHANDLE hInstall, LPCSTR szFolder,
87 LPSTR szPathBuf, DWORD* pcchPathBuf)
93 TRACE("getting folder %s %p %li\n",szFolder,szPathBuf, *pcchPathBuf);
96 return ERROR_FUNCTION_FAILED;
98 return ERROR_FUNCTION_FAILED;
100 szwFolder = strdupAtoW(szFolder);
103 return ERROR_FUNCTION_FAILED;
105 szwPathBuf = HeapAlloc( GetProcessHeap(), 0 , *pcchPathBuf * sizeof(WCHAR));
107 rc = MsiGetTargetPathW(hInstall, szwFolder, szwPathBuf,pcchPathBuf);
109 WideCharToMultiByte( CP_ACP, 0, szwPathBuf, *pcchPathBuf, szPathBuf,
110 *pcchPathBuf, NULL, NULL );
112 HeapFree(GetProcessHeap(),0,szwFolder);
113 HeapFree(GetProcessHeap(),0,szwPathBuf);
118 /***********************************************************************
119 * MsiGetTargetPathW (MSI.@)
121 UINT WINAPI MsiGetTargetPathW( MSIHANDLE hInstall, LPCWSTR szFolder, LPWSTR
122 szPathBuf, DWORD* pcchPathBuf)
125 UINT rc = ERROR_FUNCTION_FAILED;
128 TRACE("(%s %p %li)\n",debugstr_w(szFolder),szPathBuf,*pcchPathBuf);
130 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
132 return ERROR_INVALID_HANDLE;
133 path = resolve_folder(package, szFolder, FALSE, FALSE, NULL);
134 msiobj_release( &package->hdr );
136 if (path && (strlenW(path) > *pcchPathBuf))
138 *pcchPathBuf = strlenW(path)+1;
139 rc = ERROR_MORE_DATA;
143 *pcchPathBuf = strlenW(path)+1;
144 strcpyW(szPathBuf,path);
145 TRACE("Returning Path %s\n",debugstr_w(path));
148 HeapFree(GetProcessHeap(),0,path);
154 /***********************************************************************
155 * MsiGetSourcePathA (MSI.@)
157 UINT WINAPI MsiGetSourcePathA( MSIHANDLE hInstall, LPCSTR szFolder,
158 LPSTR szPathBuf, DWORD* pcchPathBuf)
164 TRACE("getting source %s %p %li\n",szFolder,szPathBuf, *pcchPathBuf);
167 return ERROR_FUNCTION_FAILED;
169 return ERROR_FUNCTION_FAILED;
171 szwFolder = strdupAtoW(szFolder);
173 return ERROR_FUNCTION_FAILED;
175 szwPathBuf = HeapAlloc( GetProcessHeap(), 0 , *pcchPathBuf * sizeof(WCHAR));
177 rc = MsiGetSourcePathW(hInstall, szwFolder, szwPathBuf,pcchPathBuf);
179 WideCharToMultiByte( CP_ACP, 0, szwPathBuf, *pcchPathBuf, szPathBuf,
180 *pcchPathBuf, NULL, NULL );
182 HeapFree(GetProcessHeap(),0,szwFolder);
183 HeapFree(GetProcessHeap(),0,szwPathBuf);
188 /***********************************************************************
189 * MsiGetSourcePathW (MSI.@)
191 UINT WINAPI MsiGetSourcePathW( MSIHANDLE hInstall, LPCWSTR szFolder, LPWSTR
192 szPathBuf, DWORD* pcchPathBuf)
195 UINT rc = ERROR_FUNCTION_FAILED;
198 TRACE("(%s %p %li)\n",debugstr_w(szFolder),szPathBuf,*pcchPathBuf);
200 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
202 return ERROR_INVALID_HANDLE;
203 path = resolve_folder(package, szFolder, TRUE, FALSE, NULL);
204 msiobj_release( &package->hdr );
206 if (path && strlenW(path) > *pcchPathBuf)
208 *pcchPathBuf = strlenW(path)+1;
209 rc = ERROR_MORE_DATA;
213 *pcchPathBuf = strlenW(path)+1;
214 strcpyW(szPathBuf,path);
215 TRACE("Returning Path %s\n",debugstr_w(path));
218 HeapFree(GetProcessHeap(),0,path);
224 /***********************************************************************
225 * MsiSetTargetPathA (MSI.@)
227 UINT WINAPI MsiSetTargetPathA(MSIHANDLE hInstall, LPCSTR szFolder,
231 LPWSTR szwFolderPath;
235 return ERROR_FUNCTION_FAILED;
237 return ERROR_FUNCTION_FAILED;
239 szwFolder = strdupAtoW(szFolder);
241 return ERROR_FUNCTION_FAILED;
243 szwFolderPath = strdupAtoW(szFolderPath);
246 HeapFree(GetProcessHeap(),0,szwFolder);
247 return ERROR_FUNCTION_FAILED;
250 rc = MsiSetTargetPathW(hInstall, szwFolder, szwFolderPath);
252 HeapFree(GetProcessHeap(),0,szwFolder);
253 HeapFree(GetProcessHeap(),0,szwFolderPath);
259 * Ok my original interpretation of this was wrong. And it looks like msdn has
260 * changed a bit also. The given folder path does not have to actually already
261 * exist, it just cannot be read only and must be a legal folder path.
263 UINT MSI_SetTargetPathW(MSIPACKAGE *package, LPCWSTR szFolder,
264 LPCWSTR szFolderPath)
272 TRACE("(%p %s %s)\n",package, debugstr_w(szFolder),debugstr_w(szFolderPath));
275 return ERROR_INVALID_HANDLE;
277 if (szFolderPath[0]==0)
278 return ERROR_FUNCTION_FAILED;
280 attrib = GetFileAttributesW(szFolderPath);
281 if ( attrib != INVALID_FILE_ATTRIBUTES &&
282 (!(attrib & FILE_ATTRIBUTE_DIRECTORY) ||
283 attrib & FILE_ATTRIBUTE_OFFLINE ||
284 attrib & FILE_ATTRIBUTE_READONLY))
285 return ERROR_FUNCTION_FAILED;
287 path = resolve_folder(package,szFolder,FALSE,FALSE,&folder);
290 return ERROR_INVALID_PARAMETER;
292 if (attrib == INVALID_FILE_ATTRIBUTES)
294 if (!CreateDirectoryW(szFolderPath,NULL))
295 return ERROR_FUNCTION_FAILED;
296 RemoveDirectoryW(szFolderPath);
299 HeapFree(GetProcessHeap(),0,folder->Property);
300 folder->Property = build_directory_name(2, szFolderPath, NULL);
302 if (lstrcmpiW(path, folder->Property) == 0)
305 * Resolved Target has not really changed, so just
306 * set this folder and do not recalculate everything.
308 HeapFree(GetProcessHeap(),0,folder->ResolvedTarget);
309 folder->ResolvedTarget = NULL;
310 path2 = resolve_folder(package,szFolder,FALSE,TRUE,NULL);
311 HeapFree(GetProcessHeap(),0,path2);
315 for (i = 0; i < package->loaded_folders; i++)
317 HeapFree(GetProcessHeap(),0,package->folders[i].ResolvedTarget);
318 package->folders[i].ResolvedTarget=NULL;
321 for (i = 0; i < package->loaded_folders; i++)
323 path2=resolve_folder(package, package->folders[i].Directory, FALSE,
325 HeapFree(GetProcessHeap(),0,path2);
328 HeapFree(GetProcessHeap(),0,path);
330 return ERROR_SUCCESS;
333 /***********************************************************************
334 * MsiSetTargetPathW (MSI.@)
336 UINT WINAPI MsiSetTargetPathW(MSIHANDLE hInstall, LPCWSTR szFolder,
337 LPCWSTR szFolderPath)
342 TRACE("(%s %s)\n",debugstr_w(szFolder),debugstr_w(szFolderPath));
344 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
345 ret = MSI_SetTargetPathW( package, szFolder, szFolderPath );
346 msiobj_release( &package->hdr );
350 /***********************************************************************
353 * Returns an internal installer state (if it is running in a mode iRunMode)
356 * hInstall [I] Handle to the installation
357 * hRunMode [I] Checking run mode
358 * MSIRUNMODE_ADMIN Administrative mode
359 * MSIRUNMODE_ADVERTISE Advertisement mode
360 * MSIRUNMODE_MAINTENANCE Maintenance mode
361 * MSIRUNMODE_ROLLBACKENABLED Rollback is enabled
362 * MSIRUNMODE_LOGENABLED Log file is writing
363 * MSIRUNMODE_OPERATIONS Operations in progress??
364 * MSIRUNMODE_REBOOTATEND We need to reboot after installation completed
365 * MSIRUNMODE_REBOOTNOW We need to reboot to continue the installation
366 * MSIRUNMODE_CABINET Files from cabinet are installed
367 * MSIRUNMODE_SOURCESHORTNAMES Long names in source files is suppressed
368 * MSIRUNMODE_TARGETSHORTNAMES Long names in destination files is suppressed
369 * MSIRUNMODE_RESERVED11 Reserved
370 * MSIRUNMODE_WINDOWS9X Running under Windows95/98
371 * MSIRUNMODE_ZAWENABLED Demand installation is supported
372 * MSIRUNMODE_RESERVED14 Reserved
373 * MSIRUNMODE_RESERVED15 Reserved
374 * MSIRUNMODE_SCHEDULED called from install script
375 * MSIRUNMODE_ROLLBACK called from rollback script
376 * MSIRUNMODE_COMMIT called from commit script
380 * Not in the state: FALSE
384 BOOL WINAPI MsiGetMode(MSIHANDLE hInstall, MSIRUNMODE iRunMode)
386 FIXME("STUB (iRunMode=%i)\n",iRunMode);
390 /***********************************************************************
391 * MsiSetFeatureStateA (MSI.@)
393 * According to the docs, when this is called it immediately recalculates
394 * all the component states as well
396 UINT WINAPI MsiSetFeatureStateA(MSIHANDLE hInstall, LPCSTR szFeature,
399 LPWSTR szwFeature = NULL;
402 szwFeature = strdupAtoW(szFeature);
405 return ERROR_FUNCTION_FAILED;
407 rc = MsiSetFeatureStateW(hInstall,szwFeature, iState);
409 HeapFree(GetProcessHeap(),0,szwFeature);
416 UINT WINAPI MSI_SetFeatureStateW(MSIPACKAGE* package, LPCWSTR szFeature,
420 UINT rc = ERROR_SUCCESS;
422 TRACE(" %s to %i\n",debugstr_w(szFeature), iState);
424 index = get_loaded_feature(package,szFeature);
426 return ERROR_UNKNOWN_FEATURE;
428 if (iState == INSTALLSTATE_ADVERTISED &&
429 package->features[index].Attributes &
430 msidbFeatureAttributesDisallowAdvertise)
431 return ERROR_FUNCTION_FAILED;
433 package->features[index].ActionRequest= iState;
434 package->features[index].Action= iState;
436 ACTION_UpdateComponentStates(package,szFeature);
438 /* update all the features that are children of this feature */
439 for (i = 0; i < package->loaded_features; i++)
441 if (strcmpW(szFeature, package->features[i].Feature_Parent) == 0)
442 MSI_SetFeatureStateW(package, package->features[i].Feature, iState);
448 /***********************************************************************
449 * MsiSetFeatureStateW (MSI.@)
451 UINT WINAPI MsiSetFeatureStateW(MSIHANDLE hInstall, LPCWSTR szFeature,
455 UINT rc = ERROR_SUCCESS;
457 TRACE(" %s to %i\n",debugstr_w(szFeature), iState);
459 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
461 return ERROR_INVALID_HANDLE;
463 rc = MSI_SetFeatureStateW(package,szFeature,iState);
465 msiobj_release( &package->hdr );
469 /***********************************************************************
470 * MsiGetFeatureStateA (MSI.@)
472 UINT WINAPI MsiGetFeatureStateA(MSIHANDLE hInstall, LPSTR szFeature,
473 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
475 LPWSTR szwFeature = NULL;
478 szwFeature = strdupAtoW(szFeature);
480 rc = MsiGetFeatureStateW(hInstall,szwFeature,piInstalled, piAction);
482 HeapFree( GetProcessHeap(), 0 , szwFeature);
487 UINT MSI_GetFeatureStateW(MSIPACKAGE *package, LPWSTR szFeature,
488 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
492 index = get_loaded_feature(package,szFeature);
494 return ERROR_UNKNOWN_FEATURE;
497 *piInstalled = package->features[index].Installed;
500 *piAction = package->features[index].Action;
502 TRACE("returning %i %i\n",*piInstalled,*piAction);
504 return ERROR_SUCCESS;
507 /***********************************************************************
508 * MsiGetFeatureStateW (MSI.@)
510 UINT WINAPI MsiGetFeatureStateW(MSIHANDLE hInstall, LPWSTR szFeature,
511 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
516 TRACE("%ld %s %p %p\n", hInstall, debugstr_w(szFeature), piInstalled,
519 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
521 return ERROR_INVALID_HANDLE;
522 ret = MSI_GetFeatureStateW(package, szFeature, piInstalled, piAction);
523 msiobj_release( &package->hdr );
527 /***********************************************************************
528 * MsiGetComponentStateA (MSI.@)
530 UINT WINAPI MsiGetComponentStateA(MSIHANDLE hInstall, LPSTR szComponent,
531 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
533 LPWSTR szwComponent= NULL;
536 szwComponent= strdupAtoW(szComponent);
538 rc = MsiGetComponentStateW(hInstall,szwComponent,piInstalled, piAction);
540 HeapFree( GetProcessHeap(), 0 , szwComponent);
545 UINT MSI_GetComponentStateW(MSIPACKAGE *package, LPWSTR szComponent,
546 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
550 TRACE("%p %s %p %p\n", package, debugstr_w(szComponent), piInstalled,
553 comp = get_loaded_component(package,szComponent);
555 return ERROR_UNKNOWN_COMPONENT;
558 *piInstalled = comp->Installed;
561 *piAction = comp->Action;
563 TRACE("states (%i, %i)\n",
564 (piInstalled)?*piInstalled:-1,(piAction)?*piAction:-1);
566 return ERROR_SUCCESS;
569 /***********************************************************************
570 * MsiGetComponentStateW (MSI.@)
572 UINT WINAPI MsiGetComponentStateW(MSIHANDLE hInstall, LPWSTR szComponent,
573 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
578 TRACE("%ld %s %p %p\n", hInstall, debugstr_w(szComponent),
579 piInstalled, piAction);
581 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
583 return ERROR_INVALID_HANDLE;
584 ret = MSI_GetComponentStateW( package, szComponent, piInstalled, piAction);
585 msiobj_release( &package->hdr );
589 /***********************************************************************
590 * MsiGetLanguage (MSI.@)
592 LANGID WINAPI MsiGetLanguage(MSIHANDLE hInstall)
597 static const WCHAR szProductLanguage[] =
598 {'P','r','o','d','u','c','t','L','a','n','g','u','a','g','e',0};
600 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
602 return ERROR_INVALID_HANDLE;
604 buffer = load_dynamic_property(package,szProductLanguage,NULL);
605 langid = atoiW(buffer);
607 HeapFree(GetProcessHeap(),0,buffer);
608 msiobj_release (&package->hdr);