advpack.c 29 KB
Newer Older
1 2 3 4
/*
 * Advpack main
 *
 * Copyright 2004 Huw D M Davies
5
 * Copyright 2005 Sami Aario
6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * 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
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 21 22
 */

#include <stdarg.h>
23
#include <stdlib.h>
24

25 26
#include "windef.h"
#include "winbase.h"
27
#include "winuser.h"
28
#include "winreg.h"
29
#include "winternl.h"
30
#include "winnls.h"
31 32
#include "setupapi.h"
#include "advpub.h"
33
#include "wine/debug.h"
34
#include "advpack_private.h"
35 36 37

WINE_DEFAULT_DEBUG_CHANNEL(advpack);

38 39
typedef HRESULT (WINAPI *DLLREGISTER) (void);

40 41 42
#define MAX_FIELD_LENGTH    512
#define PREFIX_LEN          5

43
/* registry path of the Installed Components key for per-user stubs */
44
static const WCHAR setup_key[] = L"SOFTWARE\\Microsoft\\Active Setup\\Installed Components";
45

46 47 48 49 50 51 52 53 54 55 56
/* Strip single quotes from a token - note size includes NULL */
static void strip_quotes(WCHAR *buffer, DWORD *size)
{
    if (buffer[0] == '\'' && (*size > 1) && buffer[*size-2]=='\'')
    {
        *size -= 2;
        buffer[*size] = 0x00;
        memmove(buffer, buffer + 1, *size * sizeof(WCHAR));
    }
}

57 58 59 60 61
/* parses the destination directory parameters from pszSection
 * the parameters are of the form: root,key,value,unknown,fallback
 * we first read the reg value root\\key\\value and if that fails,
 * use fallback as the destination directory
 */
62
static void get_dest_dir(HINF hInf, PCWSTR pszSection, PWSTR pszBuffer, DWORD dwSize)
63 64
{
    INFCONTEXT context;
65 66
    WCHAR key[MAX_PATH + 2], value[MAX_PATH + 2];
    WCHAR prefix[PREFIX_LEN + 2];
67
    HKEY root, subkey = 0;
68 69 70
    DWORD size;

    /* load the destination parameters */
71
    SetupFindFirstLineW(hInf, pszSection, NULL, &context);
72
    SetupGetStringFieldW(&context, 1, prefix, PREFIX_LEN + 2, &size);
73
    strip_quotes(prefix, &size);
74
    SetupGetStringFieldW(&context, 2, key, MAX_PATH + 2, &size);
75
    strip_quotes(key, &size);
76
    SetupGetStringFieldW(&context, 3, value, MAX_PATH + 2, &size);
77
    strip_quotes(value, &size);
78

79
    if (!lstrcmpW(prefix, L"HKLM"))
80
        root = HKEY_LOCAL_MACHINE;
81
    else if (!lstrcmpW(prefix, L"HKCU"))
82 83 84 85
        root = HKEY_CURRENT_USER;
    else
        root = NULL;

86
    size = dwSize * sizeof(WCHAR);
87 88

    /* fallback to the default destination dir if reg fails */
89 90
    if (RegOpenKeyW(root, key, &subkey) ||
        RegQueryValueExW(subkey, value, NULL, NULL, (LPBYTE)pszBuffer, &size))
91
    {
92 93
        SetupGetStringFieldW(&context, 5, pszBuffer, dwSize, &size);
        strip_quotes(pszBuffer, &size);
94 95
    }

96
    if (subkey) RegCloseKey(subkey);
97 98 99
}

/* loads the LDIDs specified in the install section of an INF */
100
void set_ldids(HINF hInf, LPCWSTR pszInstallSection, LPCWSTR pszWorkingDir)
101
{
102
    WCHAR field[MAX_FIELD_LENGTH];
103
    WCHAR line[MAX_FIELD_LENGTH];
104
    WCHAR dest[MAX_PATH];
105 106 107 108
    INFCONTEXT context;
    DWORD size;
    int ldid;

109
    if (!SetupGetLineTextW(NULL, hInf, pszInstallSection, L"CustomDestination",
110 111 112
                           field, MAX_FIELD_LENGTH, &size))
        return;

113
    if (!SetupFindFirstLineW(hInf, field, NULL, &context))
114 115 116 117
        return;

    do
    {
118
        LPWSTR value, ptr, key, key_copy = NULL;
119
        DWORD flags = 0;
120

121 122 123 124 125 126
        SetupGetLineTextW(&context, NULL, NULL, NULL,
                          line, MAX_FIELD_LENGTH, &size);

        /* SetupGetLineTextW returns the value if there is only one key, but
         * returns the whole line if there is more than one key
         */
127
        if (!(value = wcschr(line, '=')))
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
        {
            SetupGetStringFieldW(&context, 0, NULL, 0, &size);
            key = HeapAlloc(GetProcessHeap(), 0, size * sizeof(WCHAR));
            key_copy = key;
            SetupGetStringFieldW(&context, 0, key, size, &size);
            value = line;
        }
        else
        {
            key = line;
            *(value++) = '\0';
        }

        /* remove leading whitespace from the value */
        while (*value == ' ')
            value++;

145
        /* Extract the flags */
146
        ptr = wcschr(value, ',');
147
        if (ptr) {
148
            *ptr = '\0';
149
            flags = wcstol(ptr+1, NULL, 10);
150
        }
151

152
        /* set dest to pszWorkingDir if key is SourceDir */
153
        if (pszWorkingDir && !lstrcmpiW(value, L"SourceDir"))
154 155 156
            lstrcpynW(dest, pszWorkingDir, MAX_PATH);
        else
            get_dest_dir(hInf, value, dest, MAX_PATH);
157

158 159 160 161
        /* If prompting required, provide dialog to request path */
        if (flags & 0x04)
            FIXME("Need to support changing paths - default will be used\n");

162
        /* set all ldids to dest */
163
        while ((ptr = get_parameter(&key, ',', FALSE)))
164
        {
165
            ldid = wcstol(ptr, NULL, 10);
166 167 168
            SetupSetDirectoryIdW(hInf, ldid, dest);
        }
        HeapFree(GetProcessHeap(), 0, key_copy);
169 170 171
    } while (SetupFindNextLine(&context, &context));
}

172 173 174
/***********************************************************************
 *           CloseINFEngine (ADVPACK.@)
 *
175
 * Closes a handle to an INF file opened with OpenINFEngine.
176 177
 *
 * PARAMS
178
 *   hInf [I] Handle to the INF file to close.
179 180 181 182 183 184 185
 *
 * RETURNS
 *   Success: S_OK.
 *   Failure: E_FAIL.
 */
HRESULT WINAPI CloseINFEngine(HINF hInf)
{
186
    TRACE("(%p)\n", hInf);
187

188 189 190
    if (!hInf)
        return E_INVALIDARG;

191 192
    SetupCloseInfFile(hInf);
    return S_OK;
193 194
}

195 196
/***********************************************************************
 *              IsNTAdmin	(ADVPACK.@)
197 198 199 200 201 202 203 204 205
 *
 * Checks if the user has admin privileges.
 *
 * PARAMS
 *   reserved  [I] Reserved.  Must be 0.
 *   pReserved [I] Reserved.  Must be NULL.
 *
 * RETURNS
 *   TRUE if user has admin rights, FALSE otherwise.
206
 */
207
BOOL WINAPI IsNTAdmin(DWORD reserved, LPDWORD pReserved)
208
{
209 210 211 212 213 214 215
    SID_IDENTIFIER_AUTHORITY SidAuthority = {SECURITY_NT_AUTHORITY};
    PTOKEN_GROUPS pTokenGroups;
    BOOL bSidFound = FALSE;
    DWORD dwSize, i;
    HANDLE hToken;
    PSID pSid;

216
    TRACE("(%ld, %p)\n", reserved, pReserved);
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265

    if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, &hToken))
        return FALSE;

    if (!GetTokenInformation(hToken, TokenGroups, NULL, 0, &dwSize))
    {
        if (GetLastError() != ERROR_INSUFFICIENT_BUFFER)
        {
            CloseHandle(hToken);
            return FALSE;
        }
    }

    pTokenGroups = HeapAlloc(GetProcessHeap(), 0, dwSize);
    if (!pTokenGroups)
    {
        CloseHandle(hToken);
        return FALSE;
    }

    if (!GetTokenInformation(hToken, TokenGroups, pTokenGroups, dwSize, &dwSize))
    {
        HeapFree(GetProcessHeap(), 0, pTokenGroups);
        CloseHandle(hToken);
        return FALSE;
    }

    CloseHandle(hToken);

    if (!AllocateAndInitializeSid(&SidAuthority, 2, SECURITY_BUILTIN_DOMAIN_RID,
                                  DOMAIN_ALIAS_RID_ADMINS, 0, 0, 0, 0, 0, 0, &pSid))
    {
        HeapFree(GetProcessHeap(), 0, pTokenGroups);
        return FALSE;
    }

    for (i = 0; i < pTokenGroups->GroupCount; i++)
    {
        if (EqualSid(pSid, pTokenGroups->Groups[i].Sid))
        {
            bSidFound = TRUE;
            break;
        }
    }

    HeapFree(GetProcessHeap(), 0, pTokenGroups);
    FreeSid(pSid);

    return bSidFound;
266 267
}

268 269
/***********************************************************************
 *             NeedRebootInit  (ADVPACK.@)
270 271 272 273 274
 *
 * Sets up conditions for reboot checking.
 *
 * RETURNS
 *   Value required by NeedReboot.
275 276 277
 */
DWORD WINAPI NeedRebootInit(VOID)
{
278
    FIXME("(VOID): stub\n");
279 280 281 282 283
    return 0;
}

/***********************************************************************
 *             NeedReboot      (ADVPACK.@)
284 285 286 287 288 289 290 291 292 293 294
 *
 * Determines whether a reboot is required.
 *
 * PARAMS
 *   dwRebootCheck [I] Value from NeedRebootInit.
 *
 * RETURNS
 *   TRUE if a reboot is needed, FALSE otherwise.
 *
 * BUGS
 *   Unimplemented.
295 296 297
 */
BOOL WINAPI NeedReboot(DWORD dwRebootCheck)
{
298
    FIXME("(%ld): stub\n", dwRebootCheck);
299 300 301
    return FALSE;
}

302
/***********************************************************************
303
 *             OpenINFEngineA   (ADVPACK.@)
304
 *
305 306 307 308 309 310 311 312
 * See OpenINFEngineW.
 */
HRESULT WINAPI OpenINFEngineA(LPCSTR pszInfFilename, LPCSTR pszInstallSection,
                              DWORD dwFlags, HINF *phInf, PVOID pvReserved)
{
    UNICODE_STRING filenameW, installW;
    HRESULT res;

313
    TRACE("(%s, %s, %ld, %p, %p)\n", debugstr_a(pszInfFilename),
314
          debugstr_a(pszInstallSection), dwFlags, phInf, pvReserved);
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333

    if (!pszInfFilename || !phInf)
        return E_INVALIDARG;

    RtlCreateUnicodeStringFromAsciiz(&filenameW, pszInfFilename);
    RtlCreateUnicodeStringFromAsciiz(&installW, pszInstallSection);

    res = OpenINFEngineW(filenameW.Buffer, installW.Buffer,
                         dwFlags, phInf, pvReserved);

    RtlFreeUnicodeString(&filenameW);
    RtlFreeUnicodeString(&installW);

    return res;
}

/***********************************************************************
 *             OpenINFEngineW   (ADVPACK.@)
 *
334 335 336 337 338 339 340 341 342 343 344 345 346 347
 * Opens and returns a handle to an INF file to be used by
 * TranslateInfStringEx to continuously translate the INF file.
 *
 * PARAMS
 *   pszInfFilename    [I] Filename of the INF to open.
 *   pszInstallSection [I] Name of the Install section in the INF.
 *   dwFlags           [I] See advpub.h.
 *   phInf             [O] Handle to the loaded INF file.
 *   pvReserved        [I] Reserved.  Must be NULL.
 *
 * RETURNS
 *   Success: S_OK.
 *   Failure: E_FAIL.
 */
348 349
HRESULT WINAPI OpenINFEngineW(LPCWSTR pszInfFilename, LPCWSTR pszInstallSection,
                              DWORD dwFlags, HINF *phInf, PVOID pvReserved)
350
{
351
    TRACE("(%s, %s, %ld, %p, %p)\n", debugstr_w(pszInfFilename),
352
          debugstr_w(pszInstallSection), dwFlags, phInf, pvReserved);
353

354
    if (!pszInfFilename || !phInf)
355 356
        return E_INVALIDARG;

357
    *phInf = SetupOpenInfFileW(pszInfFilename, NULL, INF_STYLE_WIN4, NULL);
358 359 360
    if (*phInf == INVALID_HANDLE_VALUE)
        return HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND);

361
    set_ldids(*phInf, pszInstallSection, NULL);
362 363
    
    return S_OK;
364 365
}

366
/***********************************************************************
367
 *             RebootCheckOnInstallA   (ADVPACK.@)
368
 *
369 370 371
 * See RebootCheckOnInstallW.
 */
HRESULT WINAPI RebootCheckOnInstallA(HWND hWnd, LPCSTR pszINF,
372
                                     LPCSTR pszSec, DWORD dwReserved)
373 374 375 376
{
    UNICODE_STRING infW, secW;
    HRESULT res;

377
    TRACE("(%p, %s, %s, %ld)\n", hWnd, debugstr_a(pszINF),
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
          debugstr_a(pszSec), dwReserved);

    if (!pszINF || !pszSec)
        return E_INVALIDARG;

    RtlCreateUnicodeStringFromAsciiz(&infW, pszINF);
    RtlCreateUnicodeStringFromAsciiz(&secW, pszSec);

    res = RebootCheckOnInstallW(hWnd, infW.Buffer, secW.Buffer, dwReserved);

    RtlFreeUnicodeString(&infW);
    RtlFreeUnicodeString(&secW);

    return res;
}

/***********************************************************************
 *             RebootCheckOnInstallW   (ADVPACK.@)
 *
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
 * Checks if a reboot is required for an installed INF section.
 *
 * PARAMS
 *   hWnd       [I] Handle to the window used for messages.
 *   pszINF     [I] Filename of the INF file.
 *   pszSec     [I] INF section to check.
 *   dwReserved [I] Reserved.  Must be 0.
 *
 * RETURNS
 *   Success: S_OK - Reboot is needed if the INF section is installed.
 *            S_FALSE - Reboot is not needed.
 *   Failure: HRESULT of GetLastError().
 *
 * NOTES
 *   if pszSec is NULL, RebootCheckOnInstall checks the DefaultInstall
 *   or DefaultInstall.NT section.
 *
 * BUGS
 *   Unimplemented.
 */
417
HRESULT WINAPI RebootCheckOnInstallW(HWND hWnd, LPCWSTR pszINF,
418
                                     LPCWSTR pszSec, DWORD dwReserved)
419
{
420
    FIXME("(%p, %s, %s, %ld): stub\n", hWnd, debugstr_w(pszINF),
421
          debugstr_w(pszSec), dwReserved);
422 423 424 425

    return E_FAIL;
}

426
/* registers the OCX if do_reg is TRUE, unregisters it otherwise */
427
HRESULT do_ocx_reg(HMODULE hocx, BOOL do_reg, const WCHAR *flags, const WCHAR *param)
428 429 430 431 432 433 434 435 436 437 438
{
    DLLREGISTER reg_func;

    if (do_reg)
        reg_func = (DLLREGISTER)GetProcAddress(hocx, "DllRegisterServer");
    else
        reg_func = (DLLREGISTER)GetProcAddress(hocx, "DllUnregisterServer");

    if (!reg_func)
        return E_FAIL;

439 440
    reg_func();
    return S_OK;
441 442
}

443 444
/***********************************************************************
 *             RegisterOCX    (ADVPACK.@)
445 446 447 448 449 450
 *
 * Registers an OCX.
 *
 * PARAMS
 *   hWnd    [I] Handle to the window used for the display.
 *   hInst   [I] Instance of the process.
451
 *   cmdline [I] Contains parameters in the order OCX,flags,param.
452 453 454
 *   show    [I] How the window should be shown.
 *
 * RETURNS
455 456
 *   Success: S_OK.
 *   Failure: E_FAIL.
457 458 459
 *
 * NOTES
 *   OCX - Filename of the OCX to register.
460 461 462 463
 *   flags - Controls the operation of RegisterOCX.
 *    'I' Call DllRegisterServer and DllInstall.
 *    'N' Only call DllInstall.
 *   param - Command line passed to DllInstall.
464
 */
465
HRESULT WINAPI RegisterOCX(HWND hWnd, HINSTANCE hInst, LPCSTR cmdline, INT show)
466
{
467 468 469 470 471 472
    LPWSTR ocx_filename, str_flags, param;
    LPWSTR cmdline_copy, cmdline_ptr;
    UNICODE_STRING cmdlineW;
    HRESULT hr = E_FAIL;
    HMODULE hm = NULL;
    DWORD size;
473

474
    TRACE("(%s)\n", debugstr_a(cmdline));
475

476 477 478 479 480 481
    RtlCreateUnicodeStringFromAsciiz(&cmdlineW, cmdline);

    size = (lstrlenW(cmdlineW.Buffer) + 1) * sizeof(WCHAR);
    cmdline_copy = HeapAlloc(GetProcessHeap(), 0, size);
    cmdline_ptr = cmdline_copy;
    lstrcpyW(cmdline_copy, cmdlineW.Buffer);
482

483
    ocx_filename = get_parameter(&cmdline_ptr, ',', TRUE);
484 485
    if (!ocx_filename || !*ocx_filename)
        goto done;
486

487 488
    str_flags = get_parameter(&cmdline_ptr, ',', TRUE);
    param = get_parameter(&cmdline_ptr, ',', TRUE);
489 490

    hm = LoadLibraryExW(ocx_filename, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
491
    if (!hm)
492
        goto done;
493

494
    hr = do_ocx_reg(hm, TRUE, str_flags, param);
495

496
done:
497
    FreeLibrary(hm);
498 499 500 501
    HeapFree(GetProcessHeap(), 0, cmdline_copy);
    RtlFreeUnicodeString(&cmdlineW);

    return hr;
502 503
}

504
/***********************************************************************
505
 *             SetPerUserSecValuesA   (ADVPACK.@)
506
 *
507 508 509 510 511 512 513 514 515 516 517
 * See SetPerUserSecValuesW.
 */
HRESULT WINAPI SetPerUserSecValuesA(PERUSERSECTIONA* pPerUser)
{
    PERUSERSECTIONW perUserW;

    TRACE("(%p)\n", pPerUser);

    if (!pPerUser)
        return E_INVALIDARG;

518 519 520 521 522 523
    MultiByteToWideChar(CP_ACP, 0, pPerUser->szGUID, -1, perUserW.szGUID, ARRAY_SIZE(perUserW.szGUID));
    MultiByteToWideChar(CP_ACP, 0, pPerUser->szDispName, -1, perUserW.szDispName, ARRAY_SIZE(perUserW.szDispName));
    MultiByteToWideChar(CP_ACP, 0, pPerUser->szLocale, -1, perUserW.szLocale, ARRAY_SIZE(perUserW.szLocale));
    MultiByteToWideChar(CP_ACP, 0, pPerUser->szStub, -1, perUserW.szStub, ARRAY_SIZE(perUserW.szStub));
    MultiByteToWideChar(CP_ACP, 0, pPerUser->szVersion, -1, perUserW.szVersion, ARRAY_SIZE(perUserW.szVersion));
    MultiByteToWideChar(CP_ACP, 0, pPerUser->szCompID, -1, perUserW.szCompID, ARRAY_SIZE(perUserW.szCompID));
524 525 526 527 528 529 530 531 532
    perUserW.dwIsInstalled = pPerUser->dwIsInstalled;
    perUserW.bRollback = pPerUser->bRollback;

    return SetPerUserSecValuesW(&perUserW);
}

/***********************************************************************
 *             SetPerUserSecValuesW   (ADVPACK.@)
 *
533 534 535 536 537 538 539 540 541 542
 * Prepares the per-user stub values under IsInstalled\{GUID} that
 * control the per-user installation.
 *
 * PARAMS
 *   pPerUser [I] Per-user stub values.
 *
 * RETURNS
 *   Success: S_OK.
 *   Failure: E_FAIL.
 */
543
HRESULT WINAPI SetPerUserSecValuesW(PERUSERSECTIONW* pPerUser)
544
{
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
    HKEY setup, guid;

    TRACE("(%p)\n", pPerUser);

    if (!pPerUser || !*pPerUser->szGUID)
        return S_OK;

    if (RegCreateKeyExW(HKEY_LOCAL_MACHINE, setup_key, 0, NULL, 0, KEY_WRITE,
                        NULL, &setup, NULL))
    {
        return E_FAIL;
    }

    if (RegCreateKeyExW(setup, pPerUser->szGUID, 0, NULL, 0, KEY_ALL_ACCESS,
                        NULL, &guid, NULL))
    {
        RegCloseKey(setup);
        return E_FAIL;
    }

    if (*pPerUser->szStub)
    {
567
        RegSetValueExW(guid, L"StubPath", 0, REG_SZ, (BYTE *)pPerUser->szStub,
568 569 570 571 572
                       (lstrlenW(pPerUser->szStub) + 1) * sizeof(WCHAR));
    }

    if (*pPerUser->szVersion)
    {
573
        RegSetValueExW(guid, L"Version", 0, REG_SZ, (BYTE *)pPerUser->szVersion,
574 575 576 577 578
                       (lstrlenW(pPerUser->szVersion) + 1) * sizeof(WCHAR));
    }

    if (*pPerUser->szLocale)
    {
579
        RegSetValueExW(guid, L"Locale", 0, REG_SZ, (BYTE *)pPerUser->szLocale,
580 581 582 583 584
                       (lstrlenW(pPerUser->szLocale) + 1) * sizeof(WCHAR));
    }

    if (*pPerUser->szCompID)
    {
585
        RegSetValueExW(guid, L"ComponentID", 0, REG_SZ, (BYTE *)pPerUser->szCompID,
586 587 588 589 590 591 592 593 594
                       (lstrlenW(pPerUser->szCompID) + 1) * sizeof(WCHAR));
    }

    if (*pPerUser->szDispName)
    {
        RegSetValueExW(guid, NULL, 0, REG_SZ, (LPBYTE)pPerUser->szDispName,
                       (lstrlenW(pPerUser->szDispName) + 1) * sizeof(WCHAR));
    }

595
    RegSetValueExW(guid, L"IsInstalled", 0, REG_DWORD,
596 597 598 599 600 601
                   (LPBYTE)&pPerUser->dwIsInstalled, sizeof(DWORD));

    RegCloseKey(guid);
    RegCloseKey(setup);

    return S_OK;
602 603
}

604
/***********************************************************************
605
 *             TranslateInfStringA   (ADVPACK.@)
606
 *
607 608 609 610 611 612 613 614 615 616 617 618
 * See TranslateInfStringW.
 */
HRESULT WINAPI TranslateInfStringA(LPCSTR pszInfFilename, LPCSTR pszInstallSection,
                LPCSTR pszTranslateSection, LPCSTR pszTranslateKey, LPSTR pszBuffer,
                DWORD dwBufferSize, PDWORD pdwRequiredSize, PVOID pvReserved)
{
    UNICODE_STRING filenameW, installW;
    UNICODE_STRING translateW, keyW;
    LPWSTR bufferW;
    HRESULT res;
    DWORD len = 0;

619
    TRACE("(%s, %s, %s, %s, %p, %ld, %p, %p)\n",
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
          debugstr_a(pszInfFilename), debugstr_a(pszInstallSection),
          debugstr_a(pszTranslateSection), debugstr_a(pszTranslateKey),
          pszBuffer, dwBufferSize,pdwRequiredSize, pvReserved);

    if (!pszInfFilename || !pszTranslateSection ||
        !pszTranslateKey || !pdwRequiredSize)
        return E_INVALIDARG;

    RtlCreateUnicodeStringFromAsciiz(&filenameW, pszInfFilename);
    RtlCreateUnicodeStringFromAsciiz(&installW, pszInstallSection);
    RtlCreateUnicodeStringFromAsciiz(&translateW, pszTranslateSection);
    RtlCreateUnicodeStringFromAsciiz(&keyW, pszTranslateKey);

    res = TranslateInfStringW(filenameW.Buffer, installW.Buffer,
                              translateW.Buffer, keyW.Buffer, NULL,
                              dwBufferSize, &len, NULL);

    if (res == S_OK)
    {
        bufferW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));

        res = TranslateInfStringW(filenameW.Buffer, installW.Buffer,
                                  translateW.Buffer, keyW.Buffer, bufferW,
                                  len, &len, NULL);
        if (res == S_OK)
        {
            *pdwRequiredSize = WideCharToMultiByte(CP_ACP, 0, bufferW, -1,
                                                   NULL, 0, NULL, NULL);

            if (dwBufferSize >= *pdwRequiredSize)
            {
                WideCharToMultiByte(CP_ACP, 0, bufferW, -1, pszBuffer,
                                    dwBufferSize, NULL, NULL);
            }
            else
655
                res = E_NOT_SUFFICIENT_BUFFER;
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
        }
        
        HeapFree(GetProcessHeap(), 0, bufferW);
    }

    RtlFreeUnicodeString(&filenameW);
    RtlFreeUnicodeString(&installW);
    RtlFreeUnicodeString(&translateW);
    RtlFreeUnicodeString(&keyW);

    return res;
}

/***********************************************************************
 *             TranslateInfStringW   (ADVPACK.@)
 *
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
 * Translates the value of a specified key in an inf file into the
 * current locale by expanding string macros.
 *
 * PARAMS
 *   pszInfFilename      [I] Filename of the inf file.
 *   pszInstallSection   [I]
 *   pszTranslateSection [I] Inf section where the key exists.
 *   pszTranslateKey     [I] Key to translate.
 *   pszBuffer           [O] Contains the translated string on exit.
 *   dwBufferSize        [I] Size on input of pszBuffer.
 *   pdwRequiredSize     [O] Length of the translated key.
 *   pvReserved          [I] Reserved, must be NULL.
 *
 * RETURNS
 *   Success: S_OK.
 *   Failure: An hresult error code.
688
 */
689 690
HRESULT WINAPI TranslateInfStringW(LPCWSTR pszInfFilename, LPCWSTR pszInstallSection,
                LPCWSTR pszTranslateSection, LPCWSTR pszTranslateKey, LPWSTR pszBuffer,
691 692
                DWORD dwBufferSize, PDWORD pdwRequiredSize, PVOID pvReserved)
{
693
    HINF hInf;
694
    HRESULT hret = S_OK;
695

696
    TRACE("(%s, %s, %s, %s, %p, %ld, %p, %p)\n",
697 698
          debugstr_w(pszInfFilename), debugstr_w(pszInstallSection),
          debugstr_w(pszTranslateSection), debugstr_w(pszTranslateKey),
699 700 701 702 703 704
          pszBuffer, dwBufferSize,pdwRequiredSize, pvReserved);

    if (!pszInfFilename || !pszTranslateSection ||
        !pszTranslateKey || !pdwRequiredSize)
        return E_INVALIDARG;

705
    hInf = SetupOpenInfFileW(pszInfFilename, NULL, INF_STYLE_WIN4, NULL);
706 707 708
    if (hInf == INVALID_HANDLE_VALUE)
        return HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND);

709
    set_ldids(hInf, pszInstallSection, NULL);
710

711
    if (!SetupGetLineTextW(NULL, hInf, pszTranslateSection, pszTranslateKey,
712 713 714
                           pszBuffer, dwBufferSize, pdwRequiredSize))
    {
        if (dwBufferSize < *pdwRequiredSize)
715
            hret = E_NOT_SUFFICIENT_BUFFER;
716 717
        else
            hret = SPAPI_E_LINE_NOT_FOUND;
718 719
    }

720
    SetupCloseInfFile(hInf);
721
    return hret;
722
}
723 724

/***********************************************************************
725
 *             TranslateInfStringExA   (ADVPACK.@)
726
 *
727 728 729 730 731 732 733 734 735 736 737 738
 * See TranslateInfStringExW.
 */
HRESULT WINAPI TranslateInfStringExA(HINF hInf, LPCSTR pszInfFilename,
                                    LPCSTR pszTranslateSection, LPCSTR pszTranslateKey,
                                    LPSTR pszBuffer, DWORD dwBufferSize,
                                    PDWORD pdwRequiredSize, PVOID pvReserved)
{
    UNICODE_STRING filenameW, sectionW, keyW;
    LPWSTR bufferW;
    HRESULT res;
    DWORD len = 0;

739
    TRACE("(%p, %s, %s, %s, %p, %ld, %p, %p)\n", hInf, debugstr_a(pszInfFilename),
740
          debugstr_a(pszTranslateSection), debugstr_a(pszTranslateKey),
741
          pszBuffer, dwBufferSize, pdwRequiredSize, pvReserved);
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771

    if (!pszInfFilename || !pszTranslateSection ||
        !pszTranslateKey || !pdwRequiredSize)
        return E_INVALIDARG;

    RtlCreateUnicodeStringFromAsciiz(&filenameW, pszInfFilename);
    RtlCreateUnicodeStringFromAsciiz(&sectionW, pszTranslateSection);
    RtlCreateUnicodeStringFromAsciiz(&keyW, pszTranslateKey);

    res = TranslateInfStringExW(hInf, filenameW.Buffer, sectionW.Buffer,
                                keyW.Buffer, NULL, 0, &len, NULL);

    if (res == S_OK)
    {
        bufferW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));

        res = TranslateInfStringExW(hInf, filenameW.Buffer, sectionW.Buffer,
                                keyW.Buffer, bufferW, len, &len, NULL);

        if (res == S_OK)
        {
            *pdwRequiredSize = WideCharToMultiByte(CP_ACP, 0, bufferW, -1,
                                                   NULL, 0, NULL, NULL);

            if (dwBufferSize >= *pdwRequiredSize)
            {
                WideCharToMultiByte(CP_ACP, 0, bufferW, -1, pszBuffer,
                                    dwBufferSize, NULL, NULL);
            }
            else
772
                res = E_NOT_SUFFICIENT_BUFFER;
773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
        }
        
        HeapFree(GetProcessHeap(), 0, bufferW);
    }

    RtlFreeUnicodeString(&filenameW);
    RtlFreeUnicodeString(&sectionW);
    RtlFreeUnicodeString(&keyW);

    return res;
}

/***********************************************************************
 *             TranslateInfStringExW   (ADVPACK.@)
 *
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
 * Using a handle to an INF file opened with OpenINFEngine, translates
 * the value of a specified key in an inf file into the current locale
 * by expanding string macros.
 *
 * PARAMS
 *   hInf                [I] Handle to the INF file.
 *   pszInfFilename      [I] Filename of the INF file.
 *   pszTranslateSection [I] Inf section where the key exists.
 *   pszTranslateKey     [I] Key to translate.
 *   pszBuffer           [O] Contains the translated string on exit.
 *   dwBufferSize        [I] Size on input of pszBuffer.
 *   pdwRequiredSize     [O] Length of the translated key.
 *   pvReserved          [I] Reserved.  Must be NULL.
 *
 * RETURNS
 *   Success: S_OK.
 *   Failure: E_FAIL.
 *
 * NOTES
 *   To use TranslateInfStringEx to translate an INF file continuously,
 *   open the INF file with OpenINFEngine, call TranslateInfStringEx as
 *   many times as needed, then release the handle with CloseINFEngine.
 *   When translating more than one keys, this method is more efficient
 *   than calling TranslateInfString, because the INF file is only
 *   opened once.
 */
814 815 816 817
HRESULT WINAPI TranslateInfStringExW(HINF hInf, LPCWSTR pszInfFilename,
                                     LPCWSTR pszTranslateSection, LPCWSTR pszTranslateKey,
                                     LPWSTR pszBuffer, DWORD dwBufferSize,
                                     PDWORD pdwRequiredSize, PVOID pvReserved)
818
{
819
    TRACE("(%p, %s, %s, %s, %p, %ld, %p, %p)\n", hInf, debugstr_w(pszInfFilename),
820
          debugstr_w(pszTranslateSection), debugstr_w(pszTranslateKey),
821
          pszBuffer, dwBufferSize, pdwRequiredSize, pvReserved);
822

823 824 825
    if (!hInf || !pszInfFilename || !pszTranslateSection || !pszTranslateKey)
        return E_INVALIDARG;

826
    if (!SetupGetLineTextW(NULL, hInf, pszTranslateSection, pszTranslateKey,
827 828 829
                           pszBuffer, dwBufferSize, pdwRequiredSize))
    {
        if (dwBufferSize < *pdwRequiredSize)
830
            return E_NOT_SUFFICIENT_BUFFER;
831 832 833 834

        return SPAPI_E_LINE_NOT_FOUND;
    }

835
    return S_OK;   
836
}
837 838

/***********************************************************************
839
 *             UserInstStubWrapperA   (ADVPACK.@)
840 841
 *
 * See UserInstStubWrapperW.
842
 */
843 844
HRESULT WINAPI UserInstStubWrapperA(HWND hWnd, HINSTANCE hInstance,
                                   LPSTR pszParms, INT nShow)
845 846 847 848
{
    UNICODE_STRING parmsW;
    HRESULT res;

849
    TRACE("(%p, %p, %s, %i)\n", hWnd, hInstance, debugstr_a(pszParms), nShow);
850 851 852 853 854 855 856 857 858 859 860 861 862 863 864

    if (!pszParms)
        return E_INVALIDARG;

    RtlCreateUnicodeStringFromAsciiz(&parmsW, pszParms);

    res = UserInstStubWrapperW(hWnd, hInstance, parmsW.Buffer, nShow);

    RtlFreeUnicodeString(&parmsW);

    return res;
}

/***********************************************************************
 *             UserInstStubWrapperW   (ADVPACK.@)
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
 *
 * Launches the user stub wrapper specified by the RealStubPath
 * registry value under Installed Components\szParms.
 *
 * PARAMS
 *   hWnd      [I] Handle to the window used for the display.
 *   hInstance [I] Instance of the process.
 *   szParms   [I] The GUID of the installation.
 *   show      [I] How the window should be shown.
 *
 * RETURNS
 *   Success: S_OK.
 *   Failure: E_FAIL.
 *
 * TODO
 *   If the type of the StubRealPath value is REG_EXPAND_SZ, then
 *   we should call ExpandEnvironmentStrings on the value and
 *   launch the result.
883 884 885
 */
HRESULT WINAPI UserInstStubWrapperW(HWND hWnd, HINSTANCE hInstance,
                                    LPWSTR pszParms, INT nShow)
886
{
887 888
    HKEY setup, guid;
    WCHAR stub[MAX_PATH];
889
    DWORD size = sizeof(stub);
890 891
    HRESULT hr = S_OK;
    BOOL res;
892

893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908
    TRACE("(%p, %p, %s, %i)\n", hWnd, hInstance, debugstr_w(pszParms), nShow);

    if (!pszParms || !*pszParms)
        return E_INVALIDARG;

    if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, setup_key, 0, KEY_READ, &setup))
    {
        return E_FAIL;
    }

    if (RegOpenKeyExW(setup, pszParms, 0, KEY_READ, &guid))
    {
        RegCloseKey(setup);
        return E_FAIL;
    }

909
    res = RegQueryValueExW(guid, L"RealStubPath", NULL, NULL, (BYTE *)stub, &size);
910 911 912 913 914 915 916 917 918 919 920
    if (res || !*stub)
        goto done;

    /* launch the user stub wrapper */
    hr = launch_exe(stub, NULL, NULL);

done:
    RegCloseKey(setup);
    RegCloseKey(guid);

    return hr;
921 922 923
}

/***********************************************************************
924
 *             UserUnInstStubWrapperA   (ADVPACK.@)
925 926
 *
 * See UserUnInstStubWrapperW.
927
 */
928
HRESULT WINAPI UserUnInstStubWrapperA(HWND hWnd, HINSTANCE hInstance,
929 930 931 932 933
                                      LPSTR pszParms, INT nShow)
{
    UNICODE_STRING parmsW;
    HRESULT res;

934
    TRACE("(%p, %p, %s, %i)\n", hWnd, hInstance, debugstr_a(pszParms), nShow);
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952

    if (!pszParms)
        return E_INVALIDARG;

    RtlCreateUnicodeStringFromAsciiz(&parmsW, pszParms);

    res = UserUnInstStubWrapperW(hWnd, hInstance, parmsW.Buffer, nShow);

    RtlFreeUnicodeString(&parmsW);

    return res;
}

/***********************************************************************
 *             UserUnInstStubWrapperW   (ADVPACK.@)
 */
HRESULT WINAPI UserUnInstStubWrapperW(HWND hWnd, HINSTANCE hInstance,
                                      LPWSTR pszParms, INT nShow)
953
{
954
    FIXME("(%p, %p, %s, %i): stub\n", hWnd, hInstance, debugstr_w(pszParms), nShow);
955 956 957

    return E_FAIL;
}