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
32 #include "wine/unicode.h"
33 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(msi);
38 typedef struct tagMSISIGNATURE
40 LPCWSTR Name; /* NOT owned by this structure */
53 static void ACTION_VerStrToInteger(LPCWSTR verStr, PDWORD ms, PDWORD ls)
56 int x1 = 0, x2 = 0, x3 = 0, x4 = 0;
59 ptr = strchrW(verStr, '.');
63 ptr = strchrW(ptr + 1, '.');
68 ptr = strchrW(ptr + 1, '.');
72 /* FIXME: byte-order dependent? */
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',' ','*',' ',
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',' ','=',' ',
92 LPWSTR minVersion, maxVersion;
96 TRACE("package %p, sig %p\n", package, sig);
98 memset(sig, 0, sizeof(*sig));
100 row = MSI_QueryGetRecord( package->db, query, name );
103 TRACE("failed to query signature for %s\n", debugstr_w(name));
104 return ERROR_SUCCESS;
108 sig->File = msi_dup_record_field(row,2);
109 minVersion = msi_dup_record_field(row,3);
112 ACTION_VerStrToInteger(minVersion, &sig->MinVersionMS, &sig->MinVersionLS);
113 msi_free( minVersion );
115 maxVersion = msi_dup_record_field(row,4);
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)
124 sig->MaxSize = MSI_RecordGetInteger(row,6);
125 if (sig->MaxSize == MSI_NULL_INTEGER)
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)
155 msi_free(sig->Languages);
158 static LPWSTR app_search_file(LPWSTR path, MSISIGNATURE *sig)
160 VS_FIXEDFILEINFO *info;
161 DWORD attr, handle, size;
167 PathRemoveFileSpecW(path);
168 PathAddBackslashW(path);
170 attr = GetFileAttributesW(path);
171 if (attr != INVALID_FILE_ATTRIBUTES &&
172 (attr & FILE_ATTRIBUTE_DIRECTORY))
173 return strdupW(path);
178 attr = GetFileAttributesW(path);
179 if (attr == INVALID_FILE_ATTRIBUTES ||
180 (attr & FILE_ATTRIBUTE_DIRECTORY))
183 size = GetFileVersionInfoSizeW(path, &handle);
185 return strdupW(path);
187 buffer = msi_alloc(size);
191 if (!GetFileVersionInfoW(path, 0, size, buffer))
194 if (!VerQueryValueW(buffer, szBackSlash, (LPVOID)&info, &size) || !info)
197 if (sig->MinVersionLS || sig->MinVersionMS)
199 if (info->dwFileVersionMS < sig->MinVersionMS)
202 if (info->dwFileVersionMS == sig->MinVersionMS &&
203 info->dwFileVersionLS < sig->MinVersionLS)
207 if (sig->MaxVersionLS || sig->MaxVersionMS)
209 if (info->dwFileVersionMS > sig->MaxVersionMS)
212 if (info->dwFileVersionMS == sig->MaxVersionMS &&
213 info->dwFileVersionLS > sig->MaxVersionLS)
224 static UINT ACTION_AppSearchComponents(MSIPACKAGE *package, LPWSTR *appValue, MSISIGNATURE *sig)
226 static const WCHAR query[] = {
227 'S','E','L','E','C','T',' ','*',' ',
229 '`','C','o','m','p','L','o','c','a','t','o','r','`',' ',
230 'W','H','E','R','E',' ','`','S','i','g','n','a','t','u','r','e','_','`',' ','=',' ',
231 '\'','%','s','\'',0};
232 static const WCHAR sigquery[] = {
233 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
234 '`','S','i','g','n','a','t','u','r','e','`',' ',
235 'W','H','E','R','E',' ','`','S','i','g','n','a','t','u','r','e','`',' ','=',' ',
236 '\'','%','s','\'',0};
238 MSIRECORD *row, *rec;
239 LPCWSTR signature, guid;
240 BOOL sigpresent = TRUE;
243 WCHAR path[MAX_PATH];
244 DWORD size = MAX_PATH;
248 TRACE("%s\n", debugstr_w(sig->Name));
252 row = MSI_QueryGetRecord(package->db, query, sig->Name);
255 TRACE("failed to query CompLocator for %s\n", debugstr_w(sig->Name));
256 return ERROR_SUCCESS;
259 signature = MSI_RecordGetString(row, 1);
260 guid = MSI_RecordGetString(row, 2);
261 type = MSI_RecordGetInteger(row, 3);
263 rec = MSI_QueryGetRecord(package->db, sigquery, signature);
268 MsiLocateComponentW(guid, path, &size);
272 attr = GetFileAttributesW(path);
273 if (attr == INVALID_FILE_ATTRIBUTES)
276 isdir = (attr & FILE_ATTRIBUTE_DIRECTORY);
278 if (type != msidbLocatorTypeDirectory && sigpresent && !isdir)
280 *appValue = app_search_file(path, sig);
282 else if (!sigpresent && (type != msidbLocatorTypeDirectory || isdir))
284 if (type == msidbLocatorTypeFileName)
286 ptr = strrchrW(path, '\\');
290 PathAddBackslashW(path);
292 *appValue = strdupW(path);
296 PathAddBackslashW(path);
297 lstrcatW(path, MSI_RecordGetString(rec, 2));
299 attr = GetFileAttributesW(path);
300 if (attr != INVALID_FILE_ATTRIBUTES &&
301 !(attr & FILE_ATTRIBUTE_DIRECTORY))
302 *appValue = strdupW(path);
306 if (rec) msiobj_release(&rec->hdr);
307 msiobj_release(&row->hdr);
308 return ERROR_SUCCESS;
311 static void ACTION_ConvertRegValue(DWORD regType, const BYTE *value, DWORD sz,
314 static const WCHAR dwordFmt[] = { '#','%','d','\0' };
315 static const WCHAR binPre[] = { '#','x','\0' };
316 static const WCHAR binFmt[] = { '%','0','2','X','\0' };
323 if (*(LPCWSTR)value == '#')
325 /* escape leading pound with another */
326 *appValue = msi_alloc(sz + sizeof(WCHAR));
327 (*appValue)[0] = '#';
328 strcpyW(*appValue + 1, (LPCWSTR)value);
332 *appValue = msi_alloc(sz);
333 strcpyW(*appValue, (LPCWSTR)value);
337 /* 7 chars for digits, 1 for NULL, 1 for #, and 1 for sign
340 *appValue = msi_alloc(10 * sizeof(WCHAR));
341 sprintfW(*appValue, dwordFmt, *(const DWORD *)value);
344 sz = ExpandEnvironmentStringsW((LPCWSTR)value, NULL, 0);
345 *appValue = msi_alloc(sz * sizeof(WCHAR));
346 ExpandEnvironmentStringsW((LPCWSTR)value, *appValue, sz);
350 *appValue = msi_alloc((sz * 2 + 3) * sizeof(WCHAR));
351 lstrcpyW(*appValue, binPre);
352 ptr = *appValue + lstrlenW(binPre);
353 for (i = 0; i < sz; i++, ptr += 2)
354 sprintfW(ptr, binFmt, value[i]);
357 WARN("unimplemented for values of type %d\n", regType);
362 static UINT ACTION_SearchDirectory(MSIPACKAGE *package, MSISIGNATURE *sig,
363 LPCWSTR path, int depth, LPWSTR *appValue);
365 static UINT ACTION_AppSearchReg(MSIPACKAGE *package, LPWSTR *appValue, MSISIGNATURE *sig)
367 static const WCHAR query[] = {
368 's','e','l','e','c','t',' ','*',' ',
370 'R','e','g','L','o','c','a','t','o','r',' ',
371 'w','h','e','r','e',' ',
372 'S','i','g','n','a','t','u','r','e','_',' ','=',' ', '\'','%','s','\'',0};
373 LPWSTR keyPath = NULL, valueName = NULL;
374 LPWSTR deformatted = NULL;
375 LPWSTR ptr = NULL, end;
377 HKEY rootKey, key = NULL;
378 DWORD sz = 0, regType;
383 TRACE("%s\n", debugstr_w(sig->Name));
387 row = MSI_QueryGetRecord( package->db, query, sig->Name );
390 TRACE("failed to query RegLocator for %s\n", debugstr_w(sig->Name));
391 return ERROR_SUCCESS;
394 root = MSI_RecordGetInteger(row,2);
395 keyPath = msi_dup_record_field(row,3);
396 valueName = msi_dup_record_field(row,4);
397 type = MSI_RecordGetInteger(row,5);
399 deformat_string(package, keyPath, &deformatted);
403 case msidbRegistryRootClassesRoot:
404 rootKey = HKEY_CLASSES_ROOT;
406 case msidbRegistryRootCurrentUser:
407 rootKey = HKEY_CURRENT_USER;
409 case msidbRegistryRootLocalMachine:
410 rootKey = HKEY_LOCAL_MACHINE;
412 case msidbRegistryRootUsers:
413 rootKey = HKEY_USERS;
416 WARN("Unknown root key %d\n", root);
420 rc = RegOpenKeyW(rootKey, deformatted, &key);
423 TRACE("RegOpenKeyW returned %d\n", rc);
427 rc = RegQueryValueExW(key, valueName, NULL, NULL, NULL, &sz);
430 TRACE("RegQueryValueExW returned %d\n", rc);
433 /* FIXME: sanity-check sz before allocating (is there an upper-limit
434 * on the value of a property?)
436 value = msi_alloc( sz );
437 rc = RegQueryValueExW(key, valueName, NULL, ®Type, value, &sz);
440 TRACE("RegQueryValueExW returned %d\n", rc);
444 /* bail out if the registry key is empty */
448 if ((regType == REG_SZ || regType == REG_EXPAND_SZ) &&
449 (ptr = strchrW((LPWSTR)value, '"')) && (end = strchrW(++ptr, '"')))
456 case msidbLocatorTypeDirectory:
457 rc = ACTION_SearchDirectory(package, sig, ptr, 0, appValue);
459 case msidbLocatorTypeFileName:
460 *appValue = app_search_file(ptr, sig);
462 case msidbLocatorTypeRawValue:
463 ACTION_ConvertRegValue(regType, value, sz, appValue);
466 FIXME("AppSearch unimplemented for type %d (key path %s, value %s)\n",
467 type, debugstr_w(keyPath), debugstr_w(valueName));
474 msi_free( valueName );
475 msi_free( deformatted );
477 msiobj_release(&row->hdr);
479 return ERROR_SUCCESS;
482 static LPWSTR get_ini_field(LPWSTR buf, int field)
491 while ((end = strchrW(beg, ',')) && i < field)
494 while (*beg && *beg == ' ')
500 end = strchrW(beg, ',');
502 end = beg + lstrlenW(beg);
508 static UINT ACTION_AppSearchIni(MSIPACKAGE *package, LPWSTR *appValue,
511 static const WCHAR query[] = {
512 's','e','l','e','c','t',' ','*',' ',
514 'I','n','i','L','o','c','a','t','o','r',' ',
515 'w','h','e','r','e',' ',
516 'S','i','g','n','a','t','u','r','e','_',' ','=',' ','\'','%','s','\'',0};
518 LPWSTR fileName, section, key;
522 TRACE("%s\n", debugstr_w(sig->Name));
526 row = MSI_QueryGetRecord( package->db, query, sig->Name );
529 TRACE("failed to query IniLocator for %s\n", debugstr_w(sig->Name));
530 return ERROR_SUCCESS;
533 fileName = msi_dup_record_field(row, 2);
534 section = msi_dup_record_field(row, 3);
535 key = msi_dup_record_field(row, 4);
536 field = MSI_RecordGetInteger(row, 5);
537 type = MSI_RecordGetInteger(row, 6);
538 if (field == MSI_NULL_INTEGER)
540 if (type == MSI_NULL_INTEGER)
543 GetPrivateProfileStringW(section, key, NULL, buf, MAX_PATH, fileName);
548 case msidbLocatorTypeDirectory:
549 ACTION_SearchDirectory(package, sig, buf, 0, appValue);
551 case msidbLocatorTypeFileName:
552 *appValue = app_search_file(buf, sig);
554 case msidbLocatorTypeRawValue:
555 *appValue = get_ini_field(buf, field);
564 msiobj_release(&row->hdr);
566 return ERROR_SUCCESS;
569 /* Expands the value in src into a path without property names and only
570 * containing long path names into dst. Replaces at most len characters of dst,
571 * and always NULL-terminates dst if dst is not NULL and len >= 1.
573 * Assumes src and dst are non-overlapping.
574 * FIXME: return code probably needed:
575 * - what does AppSearch return if the table values are invalid?
576 * - what if dst is too small?
578 static void ACTION_ExpandAnyPath(MSIPACKAGE *package, WCHAR *src, WCHAR *dst,
581 WCHAR *ptr, *deformatted;
583 if (!src || !dst || !len)
585 if (dst) *dst = '\0';
591 /* Ignore the short portion of the path */
592 if ((ptr = strchrW(src, '|')))
597 deformat_string(package, ptr, &deformatted);
598 if (!deformatted || strlenW(deformatted) > len - 1)
600 msi_free(deformatted);
604 lstrcpyW(dst, deformatted);
605 dst[lstrlenW(deformatted)] = '\0';
606 msi_free(deformatted);
609 /* Sets *matches to whether the file (whose path is filePath) matches the
610 * versions set in sig.
611 * Return ERROR_SUCCESS in case of success (whether or not the file matches),
612 * something else if an install-halting error occurs.
614 static UINT ACTION_FileVersionMatches(const MSISIGNATURE *sig, LPCWSTR filePath,
617 UINT rc = ERROR_SUCCESS;
622 FIXME(": need to check version for languages %s\n",
623 debugstr_w(sig->Languages));
627 DWORD zero, size = GetFileVersionInfoSizeW(filePath, &zero);
631 LPVOID buf = msi_alloc( size);
636 LPVOID subBlock = NULL;
638 if (GetFileVersionInfoW(filePath, 0, size, buf))
639 VerQueryValueW(buf, szBackSlash, &subBlock, &versionLen);
642 VS_FIXEDFILEINFO *info = subBlock;
644 TRACE("Comparing file version %d.%d.%d.%d:\n",
645 HIWORD(info->dwFileVersionMS),
646 LOWORD(info->dwFileVersionMS),
647 HIWORD(info->dwFileVersionLS),
648 LOWORD(info->dwFileVersionLS));
649 if (info->dwFileVersionMS < sig->MinVersionMS
650 || (info->dwFileVersionMS == sig->MinVersionMS &&
651 info->dwFileVersionLS < sig->MinVersionLS))
653 TRACE("Less than minimum version %d.%d.%d.%d\n",
654 HIWORD(sig->MinVersionMS),
655 LOWORD(sig->MinVersionMS),
656 HIWORD(sig->MinVersionLS),
657 LOWORD(sig->MinVersionLS));
659 else if ((sig->MaxVersionMS || sig->MaxVersionLS) &&
660 (info->dwFileVersionMS > sig->MaxVersionMS ||
661 (info->dwFileVersionMS == sig->MaxVersionMS &&
662 info->dwFileVersionLS > sig->MaxVersionLS)))
664 TRACE("Greater than maximum version %d.%d.%d.%d\n",
665 HIWORD(sig->MaxVersionMS),
666 LOWORD(sig->MaxVersionMS),
667 HIWORD(sig->MaxVersionLS),
668 LOWORD(sig->MaxVersionLS));
676 rc = ERROR_OUTOFMEMORY;
682 /* Sets *matches to whether the file in findData matches that in sig.
683 * fullFilePath is assumed to be the full path of the file specified in
684 * findData, which may be necessary to compare the version.
685 * Return ERROR_SUCCESS in case of success (whether or not the file matches),
686 * something else if an install-halting error occurs.
688 static UINT ACTION_FileMatchesSig(const MSISIGNATURE *sig,
689 const WIN32_FIND_DATAW *findData, LPCWSTR fullFilePath, BOOL *matches)
691 UINT rc = ERROR_SUCCESS;
694 /* assumes the caller has already ensured the filenames match, so check
697 if (sig->MinTime.dwLowDateTime || sig->MinTime.dwHighDateTime)
699 if (findData->ftCreationTime.dwHighDateTime <
700 sig->MinTime.dwHighDateTime ||
701 (findData->ftCreationTime.dwHighDateTime == sig->MinTime.dwHighDateTime
702 && findData->ftCreationTime.dwLowDateTime <
703 sig->MinTime.dwLowDateTime))
706 if (*matches && (sig->MaxTime.dwLowDateTime || sig->MaxTime.dwHighDateTime))
708 if (findData->ftCreationTime.dwHighDateTime >
709 sig->MaxTime.dwHighDateTime ||
710 (findData->ftCreationTime.dwHighDateTime == sig->MaxTime.dwHighDateTime
711 && findData->ftCreationTime.dwLowDateTime >
712 sig->MaxTime.dwLowDateTime))
715 if (*matches && sig->MinSize && findData->nFileSizeLow < sig->MinSize)
717 if (*matches && sig->MaxSize && findData->nFileSizeLow > sig->MaxSize)
719 if (*matches && (sig->MinVersionMS || sig->MinVersionLS ||
720 sig->MaxVersionMS || sig->MaxVersionLS))
721 rc = ACTION_FileVersionMatches(sig, fullFilePath, matches);
725 /* Recursively searches the directory dir for files that match the signature
726 * sig, up to (depth + 1) levels deep. That is, if depth is 0, it searches dir
727 * (and only dir). If depth is 1, searches dir and its immediate
729 * Assumes sig->File is not NULL.
730 * Returns ERROR_SUCCESS on success (which may include non-critical errors),
731 * something else on failures which should halt the install.
733 static UINT ACTION_RecurseSearchDirectory(MSIPACKAGE *package, LPWSTR *appValue,
734 MSISIGNATURE *sig, LPCWSTR dir, int depth)
737 WIN32_FIND_DATAW findData;
738 UINT rc = ERROR_SUCCESS;
739 size_t dirLen = lstrlenW(dir), fileLen = lstrlenW(sig->File);
740 WCHAR subpath[MAX_PATH];
743 static const WCHAR starDotStarW[] = { '*','.','*',0 };
745 TRACE("Searching directory %s for file %s, depth %d\n", debugstr_w(dir),
746 debugstr_w(sig->File), depth);
749 return ERROR_SUCCESS;
752 /* We need the buffer in both paths below, so go ahead and allocate it
753 * here. Add two because we might need to add a backslash if the dir name
754 * isn't backslash-terminated.
756 buf = msi_alloc( (dirLen + max(fileLen, strlenW(starDotStarW)) + 2) * sizeof(WCHAR));
758 return ERROR_OUTOFMEMORY;
761 PathAddBackslashW(buf);
762 lstrcatW(buf, sig->File);
764 hFind = FindFirstFileW(buf, &findData);
765 if (hFind != INVALID_HANDLE_VALUE)
767 if (!(findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
771 rc = ACTION_FileMatchesSig(sig, &findData, buf, &matches);
772 if (rc == ERROR_SUCCESS && matches)
774 TRACE("found file, returning %s\n", debugstr_w(buf));
781 if (rc == ERROR_SUCCESS && !*appValue)
784 PathAddBackslashW(buf);
785 lstrcatW(buf, starDotStarW);
787 hFind = FindFirstFileW(buf, &findData);
788 if (hFind != INVALID_HANDLE_VALUE)
790 if (findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY &&
791 lstrcmpW(findData.cFileName, szDot) &&
792 lstrcmpW(findData.cFileName, szDotDot))
794 lstrcpyW(subpath, dir);
795 PathAppendW(subpath, findData.cFileName);
796 rc = ACTION_RecurseSearchDirectory(package, appValue, sig,
800 while (rc == ERROR_SUCCESS && !*appValue &&
801 FindNextFileW(hFind, &findData) != 0)
803 if (!lstrcmpW(findData.cFileName, szDot) ||
804 !lstrcmpW(findData.cFileName, szDotDot))
807 lstrcpyW(subpath, dir);
808 PathAppendW(subpath, findData.cFileName);
809 if (findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
810 rc = ACTION_RecurseSearchDirectory(package, appValue,
811 sig, subpath, depth - 1);
824 static UINT ACTION_CheckDirectory(MSIPACKAGE *package, LPCWSTR dir,
827 DWORD attr = GetFileAttributesW(dir);
829 if (attr != INVALID_FILE_ATTRIBUTES && (attr & FILE_ATTRIBUTE_DIRECTORY))
831 TRACE("directory exists, returning %s\n", debugstr_w(dir));
832 *appValue = strdupW(dir);
835 return ERROR_SUCCESS;
838 static BOOL ACTION_IsFullPath(LPCWSTR path)
840 WCHAR first = toupperW(path[0]);
843 if (first >= 'A' && first <= 'Z' && path[1] == ':')
845 else if (path[0] == '\\' && path[1] == '\\')
852 static UINT ACTION_SearchDirectory(MSIPACKAGE *package, MSISIGNATURE *sig,
853 LPCWSTR path, int depth, LPWSTR *appValue)
859 TRACE("%p, %p, %s, %d, %p\n", package, sig, debugstr_w(path), depth,
862 if (ACTION_IsFullPath(path))
865 rc = ACTION_RecurseSearchDirectory(package, &val, sig, path, depth);
868 /* Recursively searching a directory makes no sense when the
869 * directory to search is the thing you're trying to find.
871 rc = ACTION_CheckDirectory(package, path, &val);
876 WCHAR pathWithDrive[MAX_PATH] = { 'C',':','\\',0 };
877 DWORD drives = GetLogicalDrives();
881 for (i = 0; rc == ERROR_SUCCESS && !val && i < 26; i++)
883 if (!(drives & (1 << i)))
886 pathWithDrive[0] = 'A' + i;
887 if (GetDriveTypeW(pathWithDrive) != DRIVE_FIXED)
890 lstrcpynW(pathWithDrive + 3, path,
891 sizeof(pathWithDrive) / sizeof(pathWithDrive[0]) - 3);
894 rc = ACTION_RecurseSearchDirectory(package, &val, sig,
895 pathWithDrive, depth);
897 rc = ACTION_CheckDirectory(package, pathWithDrive, &val);
901 attr = GetFileAttributesW(val);
902 if (attr != INVALID_FILE_ATTRIBUTES &&
903 (attr & FILE_ATTRIBUTE_DIRECTORY) &&
904 val && val[lstrlenW(val) - 1] != '\\')
906 val = msi_realloc(val, (lstrlenW(val) + 2) * sizeof(WCHAR));
908 rc = ERROR_OUTOFMEMORY;
910 PathAddBackslashW(val);
915 TRACE("returning %d\n", rc);
919 static UINT ACTION_AppSearchSigName(MSIPACKAGE *package, LPCWSTR sigName,
920 MSISIGNATURE *sig, LPWSTR *appValue);
922 static UINT ACTION_AppSearchDr(MSIPACKAGE *package, LPWSTR *appValue, MSISIGNATURE *sig)
924 static const WCHAR query[] = {
925 's','e','l','e','c','t',' ','*',' ',
927 'D','r','L','o','c','a','t','o','r',' ',
928 'w','h','e','r','e',' ',
929 'S','i','g','n','a','t','u','r','e','_',' ','=',' ', '\'','%','s','\'',0};
930 LPWSTR parentName = NULL, parent = NULL;
931 WCHAR path[MAX_PATH];
932 WCHAR expanded[MAX_PATH];
938 TRACE("%s\n", debugstr_w(sig->Name));
942 row = MSI_QueryGetRecord( package->db, query, sig->Name );
945 TRACE("failed to query DrLocator for %s\n", debugstr_w(sig->Name));
946 return ERROR_SUCCESS;
949 /* check whether parent is set */
950 parentName = msi_dup_record_field(row,2);
953 MSISIGNATURE parentSig;
955 rc = ACTION_AppSearchSigName(package, parentName, &parentSig, &parent);
956 ACTION_FreeSignature(&parentSig);
957 msi_free(parentName);
961 MSI_RecordGetStringW(row, 3, path, &sz);
963 if (MSI_RecordIsNull(row,4))
966 depth = MSI_RecordGetInteger(row,4);
969 ACTION_ExpandAnyPath(package, path, expanded, MAX_PATH);
971 strcpyW(expanded, path);
975 attr = GetFileAttributesW(parent);
976 if (attr != INVALID_FILE_ATTRIBUTES &&
977 !(attr & FILE_ATTRIBUTE_DIRECTORY))
979 PathRemoveFileSpecW(parent);
980 PathAddBackslashW(parent);
983 strcpyW(path, parent);
984 strcatW(path, expanded);
987 strcpyW(path, expanded);
989 PathAddBackslashW(path);
991 rc = ACTION_SearchDirectory(package, sig, path, depth, appValue);
994 msiobj_release(&row->hdr);
996 TRACE("returning %d\n", rc);
1000 static UINT ACTION_AppSearchSigName(MSIPACKAGE *package, LPCWSTR sigName,
1001 MSISIGNATURE *sig, LPWSTR *appValue)
1006 rc = ACTION_AppSearchGetSignature(package, sig, sigName);
1007 if (rc == ERROR_SUCCESS)
1009 rc = ACTION_AppSearchComponents(package, appValue, sig);
1010 if (rc == ERROR_SUCCESS && !*appValue)
1012 rc = ACTION_AppSearchReg(package, appValue, sig);
1013 if (rc == ERROR_SUCCESS && !*appValue)
1015 rc = ACTION_AppSearchIni(package, appValue, sig);
1016 if (rc == ERROR_SUCCESS && !*appValue)
1017 rc = ACTION_AppSearchDr(package, appValue, sig);
1024 static UINT iterate_appsearch(MSIRECORD *row, LPVOID param)
1026 MSIPACKAGE *package = param;
1027 LPWSTR propName, sigName, value = NULL;
1031 /* get property and signature */
1032 propName = msi_dup_record_field(row,1);
1033 sigName = msi_dup_record_field(row,2);
1035 TRACE("%s %s\n", debugstr_w(propName), debugstr_w(sigName));
1037 r = ACTION_AppSearchSigName(package, sigName, &sig, &value);
1040 MSI_SetPropertyW(package, propName, value);
1043 ACTION_FreeSignature(&sig);
1050 UINT ACTION_AppSearch(MSIPACKAGE *package)
1052 static const WCHAR query[] = {
1053 's','e','l','e','c','t',' ','*',' ',
1054 'f','r','o','m',' ',
1055 'A','p','p','S','e','a','r','c','h',0};
1056 MSIQUERY *view = NULL;
1059 r = MSI_OpenQuery( package->db, &view, query );
1060 if (r != ERROR_SUCCESS)
1061 return ERROR_SUCCESS;
1063 r = MSI_IterateRecords( view, NULL, iterate_appsearch, package );
1064 msiobj_release( &view->hdr );
1069 static UINT ITERATE_CCPSearch(MSIRECORD *row, LPVOID param)
1071 MSIPACKAGE *package = param;
1073 LPWSTR value = NULL;
1075 UINT r = ERROR_SUCCESS;
1077 static const WCHAR success[] = {'C','C','P','_','S','u','c','c','e','s','s',0};
1079 signature = MSI_RecordGetString(row, 1);
1081 TRACE("%s\n", debugstr_w(signature));
1083 ACTION_AppSearchSigName(package, signature, &sig, &value);
1086 TRACE("Found signature %s\n", debugstr_w(signature));
1087 MSI_SetPropertyW(package, success, szOne);
1089 r = ERROR_NO_MORE_ITEMS;
1092 ACTION_FreeSignature(&sig);
1097 UINT ACTION_CCPSearch(MSIPACKAGE *package)
1099 static const WCHAR query[] = {
1100 's','e','l','e','c','t',' ','*',' ',
1101 'f','r','o','m',' ',
1102 'C','C','P','S','e','a','r','c','h',0};
1103 MSIQUERY *view = NULL;
1106 r = MSI_OpenQuery(package->db, &view, query);
1107 if (r != ERROR_SUCCESS)
1108 return ERROR_SUCCESS;
1110 r = MSI_IterateRecords(view, NULL, ITERATE_CCPSearch, package);
1111 msiobj_release(&view->hdr);