uxtheme: Fix the system tests so they pass on Vista.
[wine/wine-kai.git] / dlls / msi / appsearch.c
bloba1e6045b32103b045e658f0d655095de164fa50c
1 /*
2 * Implementation of the AppSearch action of the Microsoft Installer (msi.dll)
4 * Copyright 2005 Juan Lang
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include <stdarg.h>
22 #define COBJMACROS
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winreg.h"
27 #include "msi.h"
28 #include "msiquery.h"
29 #include "msidefs.h"
30 #include "winver.h"
31 #include "shlwapi.h"
32 #include "wine/unicode.h"
33 #include "wine/debug.h"
34 #include "msipriv.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(msi);
38 typedef struct tagMSISIGNATURE
40 LPCWSTR Name; /* NOT owned by this structure */
41 LPWSTR File;
42 DWORD MinVersionMS;
43 DWORD MinVersionLS;
44 DWORD MaxVersionMS;
45 DWORD MaxVersionLS;
46 DWORD MinSize;
47 DWORD MaxSize;
48 FILETIME MinTime;
49 FILETIME MaxTime;
50 LPWSTR Languages;
51 }MSISIGNATURE;
53 static void ACTION_VerStrToInteger(LPCWSTR verStr, PDWORD ms, PDWORD ls)
55 const WCHAR *ptr;
56 int x1 = 0, x2 = 0, x3 = 0, x4 = 0;
58 x1 = atoiW(verStr);
59 ptr = strchrW(verStr, '.');
60 if (ptr)
62 x2 = atoiW(ptr + 1);
63 ptr = strchrW(ptr + 1, '.');
65 if (ptr)
67 x3 = atoiW(ptr + 1);
68 ptr = strchrW(ptr + 1, '.');
70 if (ptr)
71 x4 = atoiW(ptr + 1);
72 /* FIXME: byte-order dependent? */
73 *ms = x1 << 16 | x2;
74 *ls = x3 << 16 | x4;
77 /* Fills in sig with the values from the Signature table, where name is the
78 * signature to find. Upon return, sig->File will be NULL if the record is not
79 * found, and not NULL if it is found.
80 * Warning: clears all fields in sig!
81 * Returns ERROR_SUCCESS upon success (where not finding the record counts as
82 * success), something else on error.
84 static UINT ACTION_AppSearchGetSignature(MSIPACKAGE *package, MSISIGNATURE *sig, LPCWSTR name)
86 static const WCHAR query[] = {
87 's','e','l','e','c','t',' ','*',' ',
88 'f','r','o','m',' ',
89 'S','i','g','n','a','t','u','r','e',' ',
90 'w','h','e','r','e',' ','S','i','g','n','a','t','u','r','e',' ','=',' ',
91 '\'','%','s','\'',0};
92 LPWSTR minVersion, maxVersion;
93 MSIRECORD *row;
94 DWORD time;
96 TRACE("package %p, sig %p\n", package, sig);
98 memset(sig, 0, sizeof(*sig));
99 sig->Name = name;
100 row = MSI_QueryGetRecord( package->db, query, name );
101 if (!row)
103 TRACE("failed to query signature for %s\n", debugstr_w(name));
104 return ERROR_SUCCESS;
107 /* get properties */
108 sig->File = msi_dup_record_field(row,2);
109 minVersion = msi_dup_record_field(row,3);
110 if (minVersion)
112 ACTION_VerStrToInteger(minVersion, &sig->MinVersionMS, &sig->MinVersionLS);
113 msi_free( minVersion );
115 maxVersion = msi_dup_record_field(row,4);
116 if (maxVersion)
118 ACTION_VerStrToInteger(maxVersion, &sig->MaxVersionMS, &sig->MaxVersionLS);
119 msi_free( maxVersion );
121 sig->MinSize = MSI_RecordGetInteger(row,5);
122 if (sig->MinSize == MSI_NULL_INTEGER)
123 sig->MinSize = 0;
124 sig->MaxSize = MSI_RecordGetInteger(row,6);
125 if (sig->MaxSize == MSI_NULL_INTEGER)
126 sig->MaxSize = 0;
127 sig->Languages = msi_dup_record_field(row,9);
128 time = MSI_RecordGetInteger(row,7);
129 if (time != MSI_NULL_INTEGER)
130 DosDateTimeToFileTime(HIWORD(time), LOWORD(time), &sig->MinTime);
131 time = MSI_RecordGetInteger(row,8);
132 if (time != MSI_NULL_INTEGER)
133 DosDateTimeToFileTime(HIWORD(time), LOWORD(time), &sig->MaxTime);
135 TRACE("Found file name %s for Signature_ %s;\n",
136 debugstr_w(sig->File), debugstr_w(name));
137 TRACE("MinVersion is %d.%d.%d.%d\n", HIWORD(sig->MinVersionMS),
138 LOWORD(sig->MinVersionMS), HIWORD(sig->MinVersionLS),
139 LOWORD(sig->MinVersionLS));
140 TRACE("MaxVersion is %d.%d.%d.%d\n", HIWORD(sig->MaxVersionMS),
141 LOWORD(sig->MaxVersionMS), HIWORD(sig->MaxVersionLS),
142 LOWORD(sig->MaxVersionLS));
143 TRACE("MinSize is %d, MaxSize is %d;\n", sig->MinSize, sig->MaxSize);
144 TRACE("Languages is %s\n", debugstr_w(sig->Languages));
146 msiobj_release( &row->hdr );
148 return ERROR_SUCCESS;
151 /* Frees any memory allocated in sig */
152 static void ACTION_FreeSignature(MSISIGNATURE *sig)
154 msi_free(sig->File);
155 msi_free(sig->Languages);
158 static UINT ACTION_AppSearchComponents(MSIPACKAGE *package, LPWSTR *appValue, MSISIGNATURE *sig)
160 static const WCHAR query[] = {
161 'S','E','L','E','C','T',' ','*',' ',
162 'F','R','O','M',' ',
163 '`','C','o','m','p','L','o','c','a','t','o','r','`',' ',
164 'W','H','E','R','E',' ','`','S','i','g','n','a','t','u','r','e','_','`',' ','=',' ',
165 '\'','%','s','\'',0};
166 static const WCHAR sigquery[] = {
167 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
168 '`','S','i','g','n','a','t','u','r','e','`',' ',
169 'W','H','E','R','E',' ','`','S','i','g','n','a','t','u','r','e','`',' ','=',' ',
170 '\'','%','s','\'',0};
172 MSIRECORD *row, *rec;
173 LPCWSTR signature, guid;
174 BOOL sigpresent = TRUE;
175 BOOL isdir;
176 UINT type;
177 WCHAR path[MAX_PATH];
178 DWORD size = MAX_PATH;
179 LPWSTR ptr;
180 DWORD attr;
182 TRACE("%s\n", debugstr_w(sig->Name));
184 *appValue = NULL;
186 row = MSI_QueryGetRecord(package->db, query, sig->Name);
187 if (!row)
189 TRACE("failed to query CompLocator for %s\n", debugstr_w(sig->Name));
190 return ERROR_SUCCESS;
193 signature = MSI_RecordGetString(row, 1);
194 guid = MSI_RecordGetString(row, 2);
195 type = MSI_RecordGetInteger(row, 3);
197 rec = MSI_QueryGetRecord(package->db, sigquery, signature);
198 if (!rec)
199 sigpresent = FALSE;
201 *path = '\0';
202 MsiLocateComponentW(guid, path, &size);
203 if (!*path)
204 goto done;
206 attr = GetFileAttributesW(path);
207 if (attr == INVALID_FILE_ATTRIBUTES)
208 goto done;
210 isdir = (attr & FILE_ATTRIBUTE_DIRECTORY);
212 if (type != msidbLocatorTypeDirectory && sigpresent && !isdir)
214 *appValue = strdupW(path);
216 else if (!sigpresent && (type != msidbLocatorTypeDirectory || isdir))
218 if (type == msidbLocatorTypeFileName)
220 ptr = strrchrW(path, '\\');
221 *(ptr + 1) = '\0';
223 else
224 PathAddBackslashW(path);
226 *appValue = strdupW(path);
229 done:
230 if (rec) msiobj_release(&rec->hdr);
231 msiobj_release(&row->hdr);
232 return ERROR_SUCCESS;
235 static void ACTION_ConvertRegValue(DWORD regType, const BYTE *value, DWORD sz,
236 LPWSTR *appValue)
238 static const WCHAR dwordFmt[] = { '#','%','d','\0' };
239 static const WCHAR expandSzFmt[] = { '#','%','%','%','s','\0' };
240 static const WCHAR binFmt[] = { '#','x','%','x','\0' };
241 DWORD i;
243 switch (regType)
245 case REG_SZ:
246 if (*(LPCWSTR)value == '#')
248 /* escape leading pound with another */
249 *appValue = msi_alloc(sz + sizeof(WCHAR));
250 (*appValue)[0] = '#';
251 strcpyW(*appValue + 1, (LPCWSTR)value);
253 else
255 *appValue = msi_alloc(sz);
256 strcpyW(*appValue, (LPCWSTR)value);
258 break;
259 case REG_DWORD:
260 /* 7 chars for digits, 1 for NULL, 1 for #, and 1 for sign
261 * char if needed
263 *appValue = msi_alloc(10 * sizeof(WCHAR));
264 sprintfW(*appValue, dwordFmt, *(const DWORD *)value);
265 break;
266 case REG_EXPAND_SZ:
267 /* space for extra #% characters in front */
268 *appValue = msi_alloc(sz + 2 * sizeof(WCHAR));
269 sprintfW(*appValue, expandSzFmt, (LPCWSTR)value);
270 break;
271 case REG_BINARY:
272 /* 3 == length of "#x<nibble>" */
273 *appValue = msi_alloc((sz * 3 + 1) * sizeof(WCHAR));
274 for (i = 0; i < sz; i++)
275 sprintfW(*appValue + i * 3, binFmt, value[i]);
276 break;
277 default:
278 WARN("unimplemented for values of type %d\n", regType);
279 *appValue = NULL;
283 static UINT ACTION_SearchDirectory(MSIPACKAGE *package, MSISIGNATURE *sig,
284 LPCWSTR path, int depth, LPWSTR *appValue);
286 static UINT ACTION_AppSearchReg(MSIPACKAGE *package, LPWSTR *appValue, MSISIGNATURE *sig)
288 static const WCHAR query[] = {
289 's','e','l','e','c','t',' ','*',' ',
290 'f','r','o','m',' ',
291 'R','e','g','L','o','c','a','t','o','r',' ',
292 'w','h','e','r','e',' ',
293 'S','i','g','n','a','t','u','r','e','_',' ','=',' ', '\'','%','s','\'',0};
294 LPWSTR keyPath = NULL, valueName = NULL;
295 LPWSTR deformatted = NULL;
296 int root, type;
297 HKEY rootKey, key = NULL;
298 DWORD sz = 0, regType;
299 LPBYTE value = NULL;
300 MSIRECORD *row;
301 UINT rc;
303 TRACE("%s\n", debugstr_w(sig->Name));
305 *appValue = NULL;
307 row = MSI_QueryGetRecord( package->db, query, sig->Name );
308 if (!row)
310 TRACE("failed to query RegLocator for %s\n", debugstr_w(sig->Name));
311 return ERROR_SUCCESS;
314 root = MSI_RecordGetInteger(row,2);
315 keyPath = msi_dup_record_field(row,3);
316 valueName = msi_dup_record_field(row,4);
317 type = MSI_RecordGetInteger(row,5);
319 deformat_string(package, keyPath, &deformatted);
321 switch (root)
323 case msidbRegistryRootClassesRoot:
324 rootKey = HKEY_CLASSES_ROOT;
325 break;
326 case msidbRegistryRootCurrentUser:
327 rootKey = HKEY_CURRENT_USER;
328 break;
329 case msidbRegistryRootLocalMachine:
330 rootKey = HKEY_LOCAL_MACHINE;
331 break;
332 case msidbRegistryRootUsers:
333 rootKey = HKEY_USERS;
334 break;
335 default:
336 WARN("Unknown root key %d\n", root);
337 goto end;
340 rc = RegOpenKeyW(rootKey, deformatted, &key);
341 if (rc)
343 TRACE("RegOpenKeyW returned %d\n", rc);
344 goto end;
347 rc = RegQueryValueExW(key, valueName, NULL, NULL, NULL, &sz);
348 if (rc)
350 TRACE("RegQueryValueExW returned %d\n", rc);
351 goto end;
353 /* FIXME: sanity-check sz before allocating (is there an upper-limit
354 * on the value of a property?)
356 value = msi_alloc( sz );
357 rc = RegQueryValueExW(key, valueName, NULL, &regType, value, &sz);
358 if (rc)
360 TRACE("RegQueryValueExW returned %d\n", rc);
361 goto end;
364 /* bail out if the registry key is empty */
365 if (sz == 0)
366 goto end;
368 switch (type & 0x0f)
370 case msidbLocatorTypeDirectory:
371 rc = ACTION_SearchDirectory(package, sig, (LPWSTR)value, 0, appValue);
372 break;
373 case msidbLocatorTypeFileName:
374 *appValue = strdupW((LPWSTR)value);
375 break;
376 case msidbLocatorTypeRawValue:
377 ACTION_ConvertRegValue(regType, value, sz, appValue);
378 break;
379 default:
380 FIXME("AppSearch unimplemented for type %d (key path %s, value %s)\n",
381 type, debugstr_w(keyPath), debugstr_w(valueName));
383 end:
384 msi_free( value );
385 RegCloseKey( key );
387 msi_free( keyPath );
388 msi_free( valueName );
389 msi_free( deformatted );
391 msiobj_release(&row->hdr);
393 return ERROR_SUCCESS;
396 static UINT ACTION_AppSearchIni(MSIPACKAGE *package, LPWSTR *appValue,
397 MSISIGNATURE *sig)
399 static const WCHAR query[] = {
400 's','e','l','e','c','t',' ','*',' ',
401 'f','r','o','m',' ',
402 'I','n','i','L','o','c','a','t','o','r',' ',
403 'w','h','e','r','e',' ',
404 'S','i','g','n','a','t','u','r','e','_',' ','=',' ','\'','%','s','\'',0};
405 MSIRECORD *row;
406 LPWSTR fileName, section, key;
407 int field, type;
408 WCHAR buf[MAX_PATH];
410 TRACE("%s\n", debugstr_w(sig->Name));
412 *appValue = NULL;
414 row = MSI_QueryGetRecord( package->db, query, sig->Name );
415 if (!row)
417 TRACE("failed to query IniLocator for %s\n", debugstr_w(sig->Name));
418 return ERROR_SUCCESS;
421 fileName = msi_dup_record_field(row, 2);
422 section = msi_dup_record_field(row, 3);
423 key = msi_dup_record_field(row, 4);
424 field = MSI_RecordGetInteger(row, 5);
425 type = MSI_RecordGetInteger(row, 6);
426 if (field == MSI_NULL_INTEGER)
427 field = 0;
428 if (type == MSI_NULL_INTEGER)
429 type = 0;
431 GetPrivateProfileStringW(section, key, NULL, buf, MAX_PATH, fileName);
432 if (buf[0])
434 switch (type & 0x0f)
436 case msidbLocatorTypeDirectory:
437 FIXME("unimplemented for Directory (%s)\n", debugstr_w(buf));
438 break;
439 case msidbLocatorTypeFileName:
440 FIXME("unimplemented for File (%s)\n", debugstr_w(buf));
441 break;
442 case msidbLocatorTypeRawValue:
443 *appValue = strdupW(buf);
444 break;
448 msi_free(fileName);
449 msi_free(section);
450 msi_free(key);
452 msiobj_release(&row->hdr);
454 return ERROR_SUCCESS;
457 /* Expands the value in src into a path without property names and only
458 * containing long path names into dst. Replaces at most len characters of dst,
459 * and always NULL-terminates dst if dst is not NULL and len >= 1.
460 * May modify src.
461 * Assumes src and dst are non-overlapping.
462 * FIXME: return code probably needed:
463 * - what does AppSearch return if the table values are invalid?
464 * - what if dst is too small?
466 static void ACTION_ExpandAnyPath(MSIPACKAGE *package, WCHAR *src, WCHAR *dst,
467 size_t len)
469 WCHAR *ptr, *deformatted;
471 if (!src || !dst || !len)
473 if (dst) *dst = '\0';
474 return;
477 dst[0] = '\0';
479 /* Ignore the short portion of the path */
480 if ((ptr = strchrW(src, '|')))
481 ptr++;
482 else
483 ptr = src;
485 deformat_string(package, ptr, &deformatted);
486 if (!deformatted || lstrlenW(deformatted) > len - 1)
488 msi_free(deformatted);
489 return;
492 lstrcpyW(dst, deformatted);
493 dst[lstrlenW(deformatted)] = '\0';
494 msi_free(deformatted);
497 /* Sets *matches to whether the file (whose path is filePath) matches the
498 * versions set in sig.
499 * Return ERROR_SUCCESS in case of success (whether or not the file matches),
500 * something else if an install-halting error occurs.
502 static UINT ACTION_FileVersionMatches(const MSISIGNATURE *sig, LPCWSTR filePath,
503 BOOL *matches)
505 UINT rc = ERROR_SUCCESS;
507 *matches = FALSE;
508 if (sig->Languages)
510 FIXME(": need to check version for languages %s\n",
511 debugstr_w(sig->Languages));
513 else
515 DWORD zero, size = GetFileVersionInfoSizeW(filePath, &zero);
517 if (size)
519 LPVOID buf = msi_alloc( size);
521 if (buf)
523 static const WCHAR rootW[] = { '\\',0 };
524 UINT versionLen;
525 LPVOID subBlock = NULL;
527 if (GetFileVersionInfoW(filePath, 0, size, buf))
528 VerQueryValueW(buf, rootW, &subBlock, &versionLen);
529 if (subBlock)
531 VS_FIXEDFILEINFO *info =
532 (VS_FIXEDFILEINFO *)subBlock;
534 TRACE("Comparing file version %d.%d.%d.%d:\n",
535 HIWORD(info->dwFileVersionMS),
536 LOWORD(info->dwFileVersionMS),
537 HIWORD(info->dwFileVersionLS),
538 LOWORD(info->dwFileVersionLS));
539 if (info->dwFileVersionMS < sig->MinVersionMS
540 || (info->dwFileVersionMS == sig->MinVersionMS &&
541 info->dwFileVersionLS < sig->MinVersionLS))
543 TRACE("Less than minimum version %d.%d.%d.%d\n",
544 HIWORD(sig->MinVersionMS),
545 LOWORD(sig->MinVersionMS),
546 HIWORD(sig->MinVersionLS),
547 LOWORD(sig->MinVersionLS));
549 else if (info->dwFileVersionMS < sig->MinVersionMS
550 || (info->dwFileVersionMS == sig->MinVersionMS &&
551 info->dwFileVersionLS < sig->MinVersionLS))
553 TRACE("Greater than minimum version %d.%d.%d.%d\n",
554 HIWORD(sig->MaxVersionMS),
555 LOWORD(sig->MaxVersionMS),
556 HIWORD(sig->MaxVersionLS),
557 LOWORD(sig->MaxVersionLS));
559 else
560 *matches = TRUE;
562 msi_free( buf);
564 else
565 rc = ERROR_OUTOFMEMORY;
568 return rc;
571 /* Sets *matches to whether the file in findData matches that in sig.
572 * fullFilePath is assumed to be the full path of the file specified in
573 * findData, which may be necessary to compare the version.
574 * Return ERROR_SUCCESS in case of success (whether or not the file matches),
575 * something else if an install-halting error occurs.
577 static UINT ACTION_FileMatchesSig(const MSISIGNATURE *sig,
578 const WIN32_FIND_DATAW *findData, LPCWSTR fullFilePath, BOOL *matches)
580 UINT rc = ERROR_SUCCESS;
582 *matches = TRUE;
583 /* assumes the caller has already ensured the filenames match, so check
584 * the other fields..
586 if (sig->MinTime.dwLowDateTime || sig->MinTime.dwHighDateTime)
588 if (findData->ftCreationTime.dwHighDateTime <
589 sig->MinTime.dwHighDateTime ||
590 (findData->ftCreationTime.dwHighDateTime == sig->MinTime.dwHighDateTime
591 && findData->ftCreationTime.dwLowDateTime <
592 sig->MinTime.dwLowDateTime))
593 *matches = FALSE;
595 if (*matches && (sig->MaxTime.dwLowDateTime || sig->MaxTime.dwHighDateTime))
597 if (findData->ftCreationTime.dwHighDateTime >
598 sig->MaxTime.dwHighDateTime ||
599 (findData->ftCreationTime.dwHighDateTime == sig->MaxTime.dwHighDateTime
600 && findData->ftCreationTime.dwLowDateTime >
601 sig->MaxTime.dwLowDateTime))
602 *matches = FALSE;
604 if (*matches && sig->MinSize && findData->nFileSizeLow < sig->MinSize)
605 *matches = FALSE;
606 if (*matches && sig->MaxSize && findData->nFileSizeLow > sig->MaxSize)
607 *matches = FALSE;
608 if (*matches && (sig->MinVersionMS || sig->MinVersionLS ||
609 sig->MaxVersionMS || sig->MaxVersionLS))
610 rc = ACTION_FileVersionMatches(sig, fullFilePath, matches);
611 return rc;
614 /* Recursively searches the directory dir for files that match the signature
615 * sig, up to (depth + 1) levels deep. That is, if depth is 0, it searches dir
616 * (and only dir). If depth is 1, searches dir and its immediate
617 * subdirectories.
618 * Assumes sig->File is not NULL.
619 * Returns ERROR_SUCCESS on success (which may include non-critical errors),
620 * something else on failures which should halt the install.
622 static UINT ACTION_RecurseSearchDirectory(MSIPACKAGE *package, LPWSTR *appValue,
623 MSISIGNATURE *sig, LPCWSTR dir, int depth)
625 static const WCHAR starDotStarW[] = { '*','.','*',0 };
626 UINT rc = ERROR_SUCCESS;
627 size_t dirLen = lstrlenW(dir), fileLen = lstrlenW(sig->File);
628 WCHAR *buf;
630 TRACE("Searching directory %s for file %s, depth %d\n", debugstr_w(dir),
631 debugstr_w(sig->File), depth);
633 if (depth < 0)
634 return ERROR_INVALID_PARAMETER;
636 *appValue = NULL;
637 /* We need the buffer in both paths below, so go ahead and allocate it
638 * here. Add two because we might need to add a backslash if the dir name
639 * isn't backslash-terminated.
641 buf = msi_alloc( (dirLen + max(fileLen, lstrlenW(starDotStarW)) + 2) * sizeof(WCHAR));
642 if (buf)
644 /* a depth of 0 implies we should search dir, so go ahead and search */
645 HANDLE hFind;
646 WIN32_FIND_DATAW findData;
648 memcpy(buf, dir, dirLen * sizeof(WCHAR));
649 if (buf[dirLen - 1] != '\\')
650 buf[dirLen++ - 1] = '\\';
651 memcpy(buf + dirLen, sig->File, (fileLen + 1) * sizeof(WCHAR));
652 hFind = FindFirstFileW(buf, &findData);
653 if (hFind != INVALID_HANDLE_VALUE)
655 BOOL matches;
657 /* assuming Signature can't contain wildcards for the file name,
658 * so don't bother with FindNextFileW here.
660 if (!(rc = ACTION_FileMatchesSig(sig, &findData, buf, &matches))
661 && matches)
663 TRACE("found file, returning %s\n", debugstr_w(buf));
664 *appValue = buf;
666 FindClose(hFind);
668 if (rc == ERROR_SUCCESS && !*appValue && depth > 0)
670 HANDLE hFind;
671 WIN32_FIND_DATAW findData;
673 memcpy(buf, dir, dirLen * sizeof(WCHAR));
674 if (buf[dirLen - 1] != '\\')
675 buf[dirLen++ - 1] = '\\';
676 lstrcpyW(buf + dirLen, starDotStarW);
677 hFind = FindFirstFileW(buf, &findData);
678 if (hFind != INVALID_HANDLE_VALUE)
680 if (findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
681 rc = ACTION_RecurseSearchDirectory(package, appValue, sig,
682 findData.cFileName, depth - 1);
683 while (rc == ERROR_SUCCESS && !*appValue &&
684 FindNextFileW(hFind, &findData) != 0)
686 if (findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
687 rc = ACTION_RecurseSearchDirectory(package, appValue,
688 sig, findData.cFileName, depth - 1);
690 FindClose(hFind);
693 if (!*appValue)
694 msi_free(buf);
696 else
697 rc = ERROR_OUTOFMEMORY;
699 return rc;
702 static UINT ACTION_CheckDirectory(MSIPACKAGE *package, LPCWSTR dir,
703 LPWSTR *appValue)
705 DWORD attr = GetFileAttributesW(dir);
707 if (attr != INVALID_FILE_ATTRIBUTES && (attr & FILE_ATTRIBUTE_DIRECTORY))
709 TRACE("directory exists, returning %s\n", debugstr_w(dir));
710 *appValue = strdupW(dir);
713 return ERROR_SUCCESS;
716 static BOOL ACTION_IsFullPath(LPCWSTR path)
718 WCHAR first = toupperW(path[0]);
719 BOOL ret;
721 if (first >= 'A' && first <= 'Z' && path[1] == ':')
722 ret = TRUE;
723 else if (path[0] == '\\' && path[1] == '\\')
724 ret = TRUE;
725 else
726 ret = FALSE;
727 return ret;
730 static UINT ACTION_SearchDirectory(MSIPACKAGE *package, MSISIGNATURE *sig,
731 LPCWSTR path, int depth, LPWSTR *appValue)
733 UINT rc;
735 TRACE("%p, %p, %s, %d, %p\n", package, sig, debugstr_w(path), depth,
736 appValue);
737 if (ACTION_IsFullPath(path))
739 if (sig->File)
740 rc = ACTION_RecurseSearchDirectory(package, appValue, sig,
741 path, depth);
742 else
744 /* Recursively searching a directory makes no sense when the
745 * directory to search is the thing you're trying to find.
747 rc = ACTION_CheckDirectory(package, path, appValue);
750 else
752 WCHAR pathWithDrive[MAX_PATH] = { 'C',':','\\',0 };
753 DWORD drives = GetLogicalDrives();
754 int i;
756 rc = ERROR_SUCCESS;
757 *appValue = NULL;
758 for (i = 0; rc == ERROR_SUCCESS && !*appValue && i < 26; i++)
759 if (drives & (1 << i))
761 pathWithDrive[0] = 'A' + i;
762 if (GetDriveTypeW(pathWithDrive) == DRIVE_FIXED)
764 lstrcpynW(pathWithDrive + 3, path,
765 sizeof(pathWithDrive) / sizeof(pathWithDrive[0]) - 3);
766 if (sig->File)
767 rc = ACTION_RecurseSearchDirectory(package, appValue,
768 sig, pathWithDrive, depth);
769 else
770 rc = ACTION_CheckDirectory(package, pathWithDrive,
771 appValue);
775 TRACE("returning %d\n", rc);
776 return rc;
779 static UINT ACTION_AppSearchSigName(MSIPACKAGE *package, LPCWSTR sigName,
780 MSISIGNATURE *sig, LPWSTR *appValue);
782 static UINT ACTION_AppSearchDr(MSIPACKAGE *package, LPWSTR *appValue, MSISIGNATURE *sig)
784 static const WCHAR query[] = {
785 's','e','l','e','c','t',' ','*',' ',
786 'f','r','o','m',' ',
787 'D','r','L','o','c','a','t','o','r',' ',
788 'w','h','e','r','e',' ',
789 'S','i','g','n','a','t','u','r','e','_',' ','=',' ', '\'','%','s','\'',0};
790 LPWSTR parentName = NULL, path = NULL, parent = NULL;
791 WCHAR expanded[MAX_PATH];
792 MSIRECORD *row;
793 int depth;
794 UINT rc;
796 TRACE("%s\n", debugstr_w(sig->Name));
798 msi_free(sig->File);
799 sig->File = NULL;
801 *appValue = NULL;
803 row = MSI_QueryGetRecord( package->db, query, sig->Name );
804 if (!row)
806 TRACE("failed to query DrLocator for %s\n", debugstr_w(sig->Name));
807 return ERROR_SUCCESS;
810 /* check whether parent is set */
811 parentName = msi_dup_record_field(row,2);
812 if (parentName)
814 MSISIGNATURE parentSig;
816 rc = ACTION_AppSearchSigName(package, parentName, &parentSig, &parent);
817 ACTION_FreeSignature(&parentSig);
818 msi_free(parentName);
820 /* now look for path */
821 path = msi_dup_record_field(row,3);
822 if (MSI_RecordIsNull(row,4))
823 depth = 0;
824 else
825 depth = MSI_RecordGetInteger(row,4);
826 ACTION_ExpandAnyPath(package, path, expanded, MAX_PATH);
827 msi_free(path);
828 if (parent)
830 path = msi_alloc((strlenW(parent) + strlenW(expanded) + 1) * sizeof(WCHAR));
831 if (!path)
833 rc = ERROR_OUTOFMEMORY;
834 goto end;
836 strcpyW(path, parent);
837 strcatW(path, expanded);
839 else
840 path = expanded;
842 rc = ACTION_SearchDirectory(package, sig, path, depth, appValue);
844 end:
845 if (path != expanded)
846 msi_free(path);
847 msi_free(parent);
848 msiobj_release(&row->hdr);
850 TRACE("returning %d\n", rc);
851 return rc;
854 static UINT ACTION_AppSearchSigName(MSIPACKAGE *package, LPCWSTR sigName,
855 MSISIGNATURE *sig, LPWSTR *appValue)
857 UINT rc;
859 *appValue = NULL;
860 rc = ACTION_AppSearchGetSignature(package, sig, sigName);
861 if (rc == ERROR_SUCCESS)
863 rc = ACTION_AppSearchComponents(package, appValue, sig);
864 if (rc == ERROR_SUCCESS && !*appValue)
866 rc = ACTION_AppSearchReg(package, appValue, sig);
867 if (rc == ERROR_SUCCESS && !*appValue)
869 rc = ACTION_AppSearchIni(package, appValue, sig);
870 if (rc == ERROR_SUCCESS && !*appValue)
871 rc = ACTION_AppSearchDr(package, appValue, sig);
875 return rc;
878 static UINT iterate_appsearch(MSIRECORD *row, LPVOID param)
880 MSIPACKAGE *package = param;
881 LPWSTR propName, sigName, value = NULL;
882 MSISIGNATURE sig;
883 UINT r;
885 /* get property and signature */
886 propName = msi_dup_record_field(row,1);
887 sigName = msi_dup_record_field(row,2);
889 TRACE("%s %s\n", debugstr_w(propName), debugstr_w(sigName));
891 r = ACTION_AppSearchSigName(package, sigName, &sig, &value);
892 if (value)
894 MSI_SetPropertyW(package, propName, value);
895 msi_free(value);
897 ACTION_FreeSignature(&sig);
898 msi_free(propName);
899 msi_free(sigName);
901 return r;
904 /* http://msdn.microsoft.com/library/en-us/msi/setup/appsearch_table.asp
905 * is the best reference for the AppSearch table and how it's used.
907 UINT ACTION_AppSearch(MSIPACKAGE *package)
909 static const WCHAR query[] = {
910 's','e','l','e','c','t',' ','*',' ',
911 'f','r','o','m',' ',
912 'A','p','p','S','e','a','r','c','h',0};
913 MSIQUERY *view = NULL;
914 UINT r;
916 r = MSI_OpenQuery( package->db, &view, query );
917 if (r != ERROR_SUCCESS)
918 return ERROR_SUCCESS;
920 r = MSI_IterateRecords( view, NULL, iterate_appsearch, package );
921 msiobj_release( &view->hdr );
923 return r;
926 static UINT ITERATE_CCPSearch(MSIRECORD *row, LPVOID param)
928 MSIPACKAGE *package = param;
929 LPCWSTR signature;
930 LPWSTR value = NULL;
931 MSISIGNATURE sig;
932 UINT r = ERROR_SUCCESS;
934 static const WCHAR success[] = {'C','C','P','_','S','u','c','c','e','s','s',0};
935 static const WCHAR one[] = {'1',0};
937 signature = MSI_RecordGetString(row, 1);
939 TRACE("%s\n", debugstr_w(signature));
941 ACTION_AppSearchSigName(package, signature, &sig, &value);
942 if (value)
944 TRACE("Found signature %s\n", debugstr_w(signature));
945 MSI_SetPropertyW(package, success, one);
946 msi_free(value);
947 r = ERROR_NO_MORE_ITEMS;
950 ACTION_FreeSignature(&sig);
952 return r;
955 UINT ACTION_CCPSearch(MSIPACKAGE *package)
957 static const WCHAR query[] = {
958 's','e','l','e','c','t',' ','*',' ',
959 'f','r','o','m',' ',
960 'C','C','P','S','e','a','r','c','h',0};
961 MSIQUERY *view = NULL;
962 UINT r;
964 r = MSI_OpenQuery(package->db, &view, query);
965 if (r != ERROR_SUCCESS)
966 return ERROR_SUCCESS;
968 r = MSI_IterateRecords(view, NULL, ITERATE_CCPSearch, package);
969 msiobj_release(&view->hdr);
971 return r;