2006-09-14 02:11:24 +02:00
|
|
|
/*
|
|
|
|
* WinTrust Cryptography functions
|
|
|
|
*
|
|
|
|
* Copyright 2006 James Hawkins
|
2008-07-24 02:42:32 +02:00
|
|
|
* Copyright 2000-2002 Stuart Caie
|
|
|
|
* Copyright 2002 Patrik Stridvall
|
|
|
|
* Copyright 2003 Greg Turner
|
|
|
|
* Copyright 2008 Juan Lang
|
2006-09-14 02:11:24 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
2008-07-24 02:42:32 +02:00
|
|
|
#include <stdio.h>
|
2006-09-14 02:11:24 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wintrust.h"
|
2006-09-14 02:12:39 +02:00
|
|
|
#include "mscat.h"
|
2006-09-27 14:36:42 +02:00
|
|
|
#include "mssip.h"
|
2007-08-10 19:53:00 +02:00
|
|
|
#include "imagehlp.h"
|
2008-12-23 11:50:37 +01:00
|
|
|
#include "winternl.h"
|
2006-09-14 02:11:24 +02:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
2008-12-17 14:33:07 +01:00
|
|
|
#include "wine/unicode.h"
|
2006-09-14 02:11:24 +02:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wintrust);
|
|
|
|
|
2008-12-17 14:33:07 +01:00
|
|
|
#define CATADMIN_MAGIC 0x43415441 /* 'CATA' */
|
2008-12-22 14:19:50 +01:00
|
|
|
#define CRYPTCAT_MAGIC 0x43415443 /* 'CATC' */
|
2008-12-18 14:22:26 +01:00
|
|
|
#define CATINFO_MAGIC 0x43415449 /* 'CATI' */
|
2008-12-17 14:33:07 +01:00
|
|
|
|
2008-12-22 14:19:50 +01:00
|
|
|
struct cryptcat
|
|
|
|
{
|
|
|
|
DWORD magic;
|
2008-12-23 11:51:14 +01:00
|
|
|
HCRYPTMSG msg;
|
2008-12-22 14:19:50 +01:00
|
|
|
DWORD encoding;
|
|
|
|
CTL_INFO *inner;
|
|
|
|
DWORD inner_len;
|
|
|
|
GUID subject;
|
|
|
|
DWORD attr_count;
|
|
|
|
CRYPTCATATTRIBUTE *attr;
|
|
|
|
};
|
|
|
|
|
2008-12-17 14:33:07 +01:00
|
|
|
struct catadmin
|
|
|
|
{
|
|
|
|
DWORD magic;
|
|
|
|
WCHAR path[MAX_PATH];
|
2008-12-22 14:19:35 +01:00
|
|
|
HANDLE find;
|
2008-12-17 14:33:07 +01:00
|
|
|
};
|
|
|
|
|
2008-12-18 14:22:26 +01:00
|
|
|
struct catinfo
|
|
|
|
{
|
|
|
|
DWORD magic;
|
|
|
|
WCHAR file[MAX_PATH];
|
|
|
|
};
|
|
|
|
|
2008-12-22 14:19:35 +01:00
|
|
|
static HCATINFO create_catinfo(const WCHAR *filename)
|
|
|
|
{
|
|
|
|
struct catinfo *ci;
|
|
|
|
|
|
|
|
if (!(ci = HeapAlloc(GetProcessHeap(), 0, sizeof(*ci))))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
strcpyW(ci->file, filename);
|
|
|
|
ci->magic = CATINFO_MAGIC;
|
|
|
|
return ci;
|
|
|
|
}
|
|
|
|
|
2006-09-14 02:12:39 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATAdminAcquireContext (WINTRUST.@)
|
|
|
|
*
|
|
|
|
* Get a catalog administrator context handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* catAdmin [O] Pointer to the context handle.
|
2008-12-17 14:33:07 +01:00
|
|
|
* sys [I] Pointer to a GUID for the needed subsystem.
|
2006-09-14 02:12:39 +02:00
|
|
|
* dwFlags [I] Reserved.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE. catAdmin contains the context handle.
|
2007-04-05 16:16:56 +02:00
|
|
|
* Failure: FALSE.
|
2006-09-14 02:12:39 +02:00
|
|
|
*
|
|
|
|
*/
|
2008-12-17 14:33:07 +01:00
|
|
|
BOOL WINAPI CryptCATAdminAcquireContext(HCATADMIN *catAdmin,
|
|
|
|
const GUID *sys, DWORD dwFlags)
|
2006-09-14 02:12:39 +02:00
|
|
|
{
|
2008-12-17 14:33:07 +01:00
|
|
|
static const WCHAR catroot[] =
|
|
|
|
{'\\','c','a','t','r','o','o','t',0};
|
|
|
|
static const WCHAR fmt[] =
|
|
|
|
{'%','s','\\','{','%','0','8','x','-','%','0','4','x','-','%','0',
|
|
|
|
'4','x','-','%','0','2','x','%','0','2','x','-','%','0','2','x',
|
|
|
|
'%','0','2','x','%','0','2','x','%','0','2','x','%','0','2','x',
|
|
|
|
'%','0','2','x','}',0};
|
|
|
|
static const GUID defsys =
|
|
|
|
{0x127d0a1d,0x4ef2,0x11d1,{0x86,0x08,0x00,0xc0,0x4f,0xc2,0x95,0xee}};
|
|
|
|
|
|
|
|
WCHAR catroot_dir[MAX_PATH];
|
|
|
|
struct catadmin *ca;
|
|
|
|
|
|
|
|
TRACE("%p %s %x\n", catAdmin, debugstr_guid(sys), dwFlags);
|
2007-04-05 16:16:56 +02:00
|
|
|
|
2008-02-11 14:25:20 +01:00
|
|
|
if (!catAdmin)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-12-17 14:33:07 +01:00
|
|
|
if (!(ca = HeapAlloc(GetProcessHeap(), 0, sizeof(*ca))))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetSystemDirectoryW(catroot_dir, MAX_PATH);
|
|
|
|
strcatW(catroot_dir, catroot);
|
|
|
|
|
|
|
|
/* create the directory if it doesn't exist */
|
|
|
|
CreateDirectoryW(catroot_dir, NULL);
|
|
|
|
|
|
|
|
if (!sys) sys = &defsys;
|
|
|
|
sprintfW(ca->path, fmt, catroot_dir, sys->Data1, sys->Data2,
|
|
|
|
sys->Data3, sys->Data4[0], sys->Data4[1], sys->Data4[2],
|
|
|
|
sys->Data4[3], sys->Data4[4], sys->Data4[5], sys->Data4[6],
|
|
|
|
sys->Data4[7]);
|
2008-02-11 14:25:20 +01:00
|
|
|
|
2008-12-17 14:33:07 +01:00
|
|
|
/* create the directory if it doesn't exist */
|
|
|
|
CreateDirectoryW(ca->path, NULL);
|
2008-02-11 14:25:20 +01:00
|
|
|
|
2008-12-17 14:33:07 +01:00
|
|
|
ca->magic = CATADMIN_MAGIC;
|
2008-12-23 11:50:26 +01:00
|
|
|
ca->find = INVALID_HANDLE_VALUE;
|
2008-12-22 14:19:35 +01:00
|
|
|
|
2008-12-17 14:33:07 +01:00
|
|
|
*catAdmin = ca;
|
2007-04-05 16:16:56 +02:00
|
|
|
return TRUE;
|
2006-09-14 02:12:39 +02:00
|
|
|
}
|
|
|
|
|
2007-05-31 00:44:43 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATAdminAddCatalog (WINTRUST.@)
|
|
|
|
*/
|
2008-10-14 19:56:17 +02:00
|
|
|
HCATINFO WINAPI CryptCATAdminAddCatalog(HCATADMIN catAdmin, PWSTR catalogFile,
|
|
|
|
PWSTR selectBaseName, DWORD flags)
|
2007-05-31 00:44:43 +02:00
|
|
|
{
|
2008-12-18 14:22:26 +01:00
|
|
|
static const WCHAR slashW[] = {'\\',0};
|
|
|
|
struct catadmin *ca = catAdmin;
|
|
|
|
struct catinfo *ci;
|
|
|
|
WCHAR *target;
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
TRACE("%p %s %s %d\n", catAdmin, debugstr_w(catalogFile),
|
2007-05-31 00:44:43 +02:00
|
|
|
debugstr_w(selectBaseName), flags);
|
2008-12-18 14:22:26 +01:00
|
|
|
|
|
|
|
if (!selectBaseName)
|
|
|
|
{
|
|
|
|
FIXME("NULL basename not handled\n");
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
2008-12-22 14:19:14 +01:00
|
|
|
return NULL;
|
2008-12-18 14:22:26 +01:00
|
|
|
}
|
|
|
|
if (!ca || ca->magic != CATADMIN_MAGIC || !catalogFile || flags)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
2008-12-22 14:19:14 +01:00
|
|
|
return NULL;
|
2008-12-18 14:22:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
len = strlenW(ca->path) + strlenW(selectBaseName) + 2;
|
|
|
|
if (!(target = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR))))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
2008-12-22 14:19:14 +01:00
|
|
|
return NULL;
|
2008-12-18 14:22:26 +01:00
|
|
|
}
|
|
|
|
strcpyW(target, ca->path);
|
|
|
|
strcatW(target, slashW);
|
|
|
|
strcatW(target, selectBaseName);
|
|
|
|
|
|
|
|
if (!CopyFileW(catalogFile, target, FALSE))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, target);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-01-20 17:12:09 +01:00
|
|
|
SetFileAttributesW(target, FILE_ATTRIBUTE_SYSTEM);
|
|
|
|
|
2008-12-18 14:22:26 +01:00
|
|
|
if (!(ci = HeapAlloc(GetProcessHeap(), 0, sizeof(*ci))))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, target);
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
2008-12-22 14:19:14 +01:00
|
|
|
return NULL;
|
2008-12-18 14:22:26 +01:00
|
|
|
}
|
|
|
|
ci->magic = CATINFO_MAGIC;
|
2008-12-22 14:19:14 +01:00
|
|
|
strcpyW(ci->file, target);
|
2008-12-18 14:22:26 +01:00
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, target);
|
|
|
|
return ci;
|
2007-05-31 00:44:43 +02:00
|
|
|
}
|
|
|
|
|
2006-09-14 02:12:39 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATAdminCalcHashFromFileHandle (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptCATAdminCalcHashFromFileHandle(HANDLE hFile, DWORD* pcbHash,
|
|
|
|
BYTE* pbHash, DWORD dwFlags )
|
|
|
|
{
|
2008-12-18 15:53:42 +01:00
|
|
|
BOOL ret = FALSE;
|
2007-04-05 16:16:56 +02:00
|
|
|
|
2008-12-18 15:53:42 +01:00
|
|
|
TRACE("%p %p %p %x\n", hFile, pcbHash, pbHash, dwFlags);
|
|
|
|
|
|
|
|
if (!hFile || !pcbHash || dwFlags)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (*pcbHash < 20)
|
|
|
|
{
|
|
|
|
*pcbHash = 20;
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pcbHash = 20;
|
|
|
|
if (pbHash)
|
|
|
|
{
|
|
|
|
HCRYPTPROV prov;
|
|
|
|
HCRYPTHASH hash;
|
|
|
|
DWORD bytes_read;
|
|
|
|
BYTE *buffer;
|
|
|
|
|
|
|
|
if (!(buffer = HeapAlloc(GetProcessHeap(), 0, 4096)))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
ret = CryptAcquireContextW(&prov, NULL, MS_DEF_PROV_W, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
ret = CryptCreateHash(prov, CALG_SHA1, 0, 0, &hash);
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
CryptReleaseContext(prov, 0);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
while ((ret = ReadFile(hFile, buffer, 4096, &bytes_read, NULL)) && bytes_read)
|
|
|
|
{
|
|
|
|
CryptHashData(hash, buffer, bytes_read, 0);
|
|
|
|
}
|
|
|
|
if (ret) ret = CryptGetHashParam(hash, HP_HASHVAL, pbHash, pcbHash, 0);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
CryptDestroyHash(hash);
|
|
|
|
CryptReleaseContext(prov, 0);
|
|
|
|
}
|
|
|
|
return ret;
|
2006-09-14 02:12:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATAdminEnumCatalogFromHash (WINTRUST.@)
|
|
|
|
*/
|
2008-12-22 14:19:35 +01:00
|
|
|
HCATINFO WINAPI CryptCATAdminEnumCatalogFromHash(HCATADMIN hCatAdmin, BYTE* pbHash,
|
|
|
|
DWORD cbHash, DWORD dwFlags,
|
2006-09-14 02:12:39 +02:00
|
|
|
HCATINFO* phPrevCatInfo )
|
|
|
|
{
|
2008-12-22 14:19:35 +01:00
|
|
|
static const WCHAR slashW[] = {'\\',0};
|
|
|
|
static const WCHAR globW[] = {'\\','*','.','c','a','t',0};
|
|
|
|
|
|
|
|
struct catadmin *ca = hCatAdmin;
|
|
|
|
WIN32_FIND_DATAW data;
|
|
|
|
HCATINFO prev = NULL;
|
|
|
|
HCRYPTPROV prov;
|
|
|
|
DWORD size;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
TRACE("%p %p %d %x %p\n", hCatAdmin, pbHash, cbHash, dwFlags, phPrevCatInfo);
|
|
|
|
|
|
|
|
if (!ca || ca->magic != CATADMIN_MAGIC || !pbHash || cbHash != 20 || dwFlags)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (phPrevCatInfo) prev = *phPrevCatInfo;
|
|
|
|
|
|
|
|
ret = CryptAcquireContextW(&prov, NULL, MS_DEF_PROV_W, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
|
|
|
|
if (!ret) return NULL;
|
|
|
|
|
|
|
|
if (!prev)
|
|
|
|
{
|
|
|
|
WCHAR *path;
|
|
|
|
|
|
|
|
size = strlenW(ca->path) * sizeof(WCHAR) + sizeof(globW);
|
|
|
|
if (!(path = HeapAlloc(GetProcessHeap(), 0, size)))
|
|
|
|
{
|
|
|
|
CryptReleaseContext(prov, 0);
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
strcpyW(path, ca->path);
|
|
|
|
strcatW(path, globW);
|
|
|
|
|
2008-12-23 11:50:26 +01:00
|
|
|
FindClose(ca->find);
|
2008-12-22 14:19:35 +01:00
|
|
|
ca->find = FindFirstFileW(path, &data);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, path);
|
2008-12-23 11:50:26 +01:00
|
|
|
if (ca->find == INVALID_HANDLE_VALUE)
|
2008-12-22 14:19:35 +01:00
|
|
|
{
|
|
|
|
CryptReleaseContext(prov, 0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!FindNextFileW(ca->find, &data))
|
|
|
|
{
|
|
|
|
CryptCATAdminReleaseCatalogContext(hCatAdmin, prev, 0);
|
|
|
|
CryptReleaseContext(prov, 0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
WCHAR *filename;
|
|
|
|
CRYPTCATMEMBER *member = NULL;
|
|
|
|
struct catinfo *ci;
|
|
|
|
HANDLE hcat;
|
|
|
|
|
|
|
|
size = (strlenW(ca->path) + strlenW(data.cFileName) + 2) * sizeof(WCHAR);
|
|
|
|
if (!(filename = HeapAlloc(GetProcessHeap(), 0, size)))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
strcpyW(filename, ca->path);
|
|
|
|
strcatW(filename, slashW);
|
|
|
|
strcatW(filename, data.cFileName);
|
|
|
|
|
|
|
|
hcat = CryptCATOpen(filename, CRYPTCAT_OPEN_EXISTING, prov, 0, 0);
|
|
|
|
if (hcat == INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
WARN("couldn't open %s (%u)\n", debugstr_w(filename), GetLastError());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
while ((member = CryptCATEnumerateMember(hcat, member)))
|
|
|
|
{
|
|
|
|
if (member->pIndirectData->Digest.cbData != cbHash)
|
|
|
|
{
|
|
|
|
WARN("amount of hash bytes differs: %u/%u\n", member->pIndirectData->Digest.cbData, cbHash);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!memcmp(member->pIndirectData->Digest.pbData, pbHash, cbHash))
|
|
|
|
{
|
|
|
|
TRACE("file %s matches\n", debugstr_w(data.cFileName));
|
|
|
|
|
|
|
|
CryptCATClose(hcat);
|
|
|
|
CryptReleaseContext(prov, 0);
|
|
|
|
if (!phPrevCatInfo)
|
|
|
|
{
|
|
|
|
FindClose(ca->find);
|
2008-12-23 11:50:26 +01:00
|
|
|
ca->find = INVALID_HANDLE_VALUE;
|
2008-12-22 14:19:35 +01:00
|
|
|
}
|
|
|
|
ci = create_catinfo(filename);
|
|
|
|
HeapFree(GetProcessHeap(), 0, filename);
|
|
|
|
return ci;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CryptCATClose(hcat);
|
|
|
|
HeapFree(GetProcessHeap(), 0, filename);
|
|
|
|
|
|
|
|
if (!FindNextFileW(ca->find, &data))
|
|
|
|
{
|
|
|
|
FindClose(ca->find);
|
2008-12-23 11:50:26 +01:00
|
|
|
ca->find = INVALID_HANDLE_VALUE;
|
2008-12-22 14:19:35 +01:00
|
|
|
CryptReleaseContext(prov, 0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2006-09-14 02:12:39 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-05-31 00:44:43 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATAdminReleaseCatalogContext (WINTRUST.@)
|
|
|
|
*
|
|
|
|
* Release a catalog context handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* hCatAdmin [I] Context handle.
|
|
|
|
* hCatInfo [I] Catalog handle.
|
|
|
|
* dwFlags [I] Reserved.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE.
|
2008-12-18 14:22:26 +01:00
|
|
|
* Failure: FALSE.
|
2007-05-31 00:44:43 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptCATAdminReleaseCatalogContext(HCATADMIN hCatAdmin,
|
2007-08-08 10:49:27 +02:00
|
|
|
HCATINFO hCatInfo,
|
2007-05-31 00:44:43 +02:00
|
|
|
DWORD dwFlags)
|
|
|
|
{
|
2008-12-18 14:22:26 +01:00
|
|
|
struct catinfo *ci = hCatInfo;
|
|
|
|
struct catadmin *ca = hCatAdmin;
|
|
|
|
|
|
|
|
TRACE("%p %p %x\n", hCatAdmin, hCatInfo, dwFlags);
|
|
|
|
|
|
|
|
if (!ca || ca->magic != CATADMIN_MAGIC || !ci || ci->magic != CATINFO_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
ci->magic = 0;
|
|
|
|
return HeapFree(GetProcessHeap(), 0, ci);
|
2007-05-31 00:44:43 +02:00
|
|
|
}
|
|
|
|
|
2006-09-14 02:12:39 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATAdminReleaseContext (WINTRUST.@)
|
|
|
|
*
|
|
|
|
* Release a catalog administrator context handle.
|
|
|
|
*
|
|
|
|
* PARAMS
|
2007-04-05 16:16:56 +02:00
|
|
|
* catAdmin [I] Context handle.
|
2006-09-14 02:12:39 +02:00
|
|
|
* dwFlags [I] Reserved.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE.
|
2008-12-18 14:22:26 +01:00
|
|
|
* Failure: FALSE.
|
2006-09-14 02:12:39 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptCATAdminReleaseContext(HCATADMIN hCatAdmin, DWORD dwFlags )
|
|
|
|
{
|
2008-12-17 14:33:29 +01:00
|
|
|
struct catadmin *ca = hCatAdmin;
|
|
|
|
|
|
|
|
TRACE("%p %x\n", hCatAdmin, dwFlags);
|
|
|
|
|
|
|
|
if (!ca || ca->magic != CATADMIN_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-12-23 11:50:26 +01:00
|
|
|
if (ca->find != INVALID_HANDLE_VALUE) FindClose(ca->find);
|
2008-12-17 14:33:29 +01:00
|
|
|
ca->magic = 0;
|
|
|
|
return HeapFree(GetProcessHeap(), 0, ca);
|
2007-04-05 16:16:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATAdminRemoveCatalog (WINTRUST.@)
|
|
|
|
*
|
|
|
|
* Remove a catalog file.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* catAdmin [I] Context handle.
|
|
|
|
* pwszCatalogFile [I] Catalog file.
|
|
|
|
* dwFlags [I] Reserved.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE.
|
|
|
|
* Failure: FALSE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptCATAdminRemoveCatalog(HCATADMIN hCatAdmin, LPCWSTR pwszCatalogFile, DWORD dwFlags)
|
|
|
|
{
|
2008-12-18 14:22:26 +01:00
|
|
|
struct catadmin *ca = hCatAdmin;
|
|
|
|
|
|
|
|
TRACE("%p %s %x\n", hCatAdmin, debugstr_w(pwszCatalogFile), dwFlags);
|
|
|
|
|
|
|
|
if (!ca || ca->magic != CATADMIN_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-08 13:36:42 +01:00
|
|
|
|
|
|
|
/* Only delete when there is a filename and no path */
|
|
|
|
if (pwszCatalogFile && pwszCatalogFile[0] != 0 &&
|
|
|
|
!strchrW(pwszCatalogFile, '\\') && !strchrW(pwszCatalogFile, '/') &&
|
|
|
|
!strchrW(pwszCatalogFile, ':'))
|
|
|
|
{
|
|
|
|
static const WCHAR slashW[] = {'\\',0};
|
|
|
|
WCHAR *target;
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
len = strlenW(ca->path) + strlenW(pwszCatalogFile) + 2;
|
|
|
|
if (!(target = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR))))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
strcpyW(target, ca->path);
|
|
|
|
strcatW(target, slashW);
|
|
|
|
strcatW(target, pwszCatalogFile);
|
|
|
|
|
|
|
|
DeleteFileW(target);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, target);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
2006-09-14 02:12:39 +02:00
|
|
|
}
|
|
|
|
|
2008-12-23 11:50:46 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATAdminResolveCatalogPath (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptCATAdminResolveCatalogPath(HCATADMIN hcatadmin, WCHAR *catalog_file,
|
|
|
|
CATALOG_INFO *info, DWORD flags)
|
|
|
|
{
|
|
|
|
static const WCHAR slashW[] = {'\\',0};
|
|
|
|
struct catadmin *ca = hcatadmin;
|
|
|
|
|
|
|
|
TRACE("%p %s %p %x\n", hcatadmin, debugstr_w(catalog_file), info, flags);
|
|
|
|
|
|
|
|
if (!ca || ca->magic != CATADMIN_MAGIC || !info || info->cbStruct != sizeof(*info) || flags)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
strcpyW(info->wszCatalogFile, ca->path);
|
|
|
|
strcatW(info->wszCatalogFile, slashW);
|
|
|
|
strcatW(info->wszCatalogFile, catalog_file);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-09-14 02:15:56 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATClose (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptCATClose(HANDLE hCatalog)
|
|
|
|
{
|
2008-12-22 14:19:50 +01:00
|
|
|
struct cryptcat *cc = hCatalog;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", hCatalog);
|
|
|
|
|
|
|
|
if (!hCatalog || hCatalog == INVALID_HANDLE_VALUE || cc->magic != CRYPTCAT_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, cc->attr);
|
|
|
|
HeapFree(GetProcessHeap(), 0, cc->inner);
|
|
|
|
CryptMsgClose(cc->msg);
|
|
|
|
|
|
|
|
cc->magic = 0;
|
|
|
|
HeapFree(GetProcessHeap(), 0, cc);
|
2006-09-14 02:15:56 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-12-23 11:50:58 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATGetAttrInfo (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
CRYPTCATATTRIBUTE * WINAPI CryptCATGetAttrInfo(HANDLE hCatalog, CRYPTCATMEMBER *member, LPWSTR tag)
|
|
|
|
{
|
|
|
|
struct cryptcat *cc = hCatalog;
|
|
|
|
|
|
|
|
FIXME("%p, %p, %s\n", hCatalog, member, debugstr_w(tag));
|
|
|
|
|
|
|
|
if (!hCatalog || hCatalog == INVALID_HANDLE_VALUE || cc->magic != CRYPTCAT_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SetLastError(CRYPT_E_NOT_FOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATGetCatAttrInfo (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
CRYPTCATATTRIBUTE * WINAPI CryptCATGetCatAttrInfo(HANDLE hCatalog, LPWSTR tag)
|
|
|
|
{
|
|
|
|
struct cryptcat *cc = hCatalog;
|
|
|
|
|
|
|
|
FIXME("%p, %s\n", hCatalog, debugstr_w(tag));
|
|
|
|
|
|
|
|
if (!hCatalog || hCatalog == INVALID_HANDLE_VALUE || cc->magic != CRYPTCAT_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SetLastError(CRYPT_E_NOT_FOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CRYPTCATMEMBER * WINAPI CryptCATGetMemberInfo(HANDLE hCatalog, LPWSTR tag)
|
|
|
|
{
|
|
|
|
struct cryptcat *cc = hCatalog;
|
|
|
|
|
|
|
|
FIXME("%p, %s\n", hCatalog, debugstr_w(tag));
|
|
|
|
|
|
|
|
if (!hCatalog || hCatalog == INVALID_HANDLE_VALUE || cc->magic != CRYPTCAT_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SetLastError(CRYPT_E_NOT_FOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATEnumerateAttr (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
CRYPTCATATTRIBUTE * WINAPI CryptCATEnumerateAttr(HANDLE hCatalog, CRYPTCATMEMBER *member, CRYPTCATATTRIBUTE *prev)
|
|
|
|
{
|
|
|
|
struct cryptcat *cc = hCatalog;
|
|
|
|
|
|
|
|
FIXME("%p, %p, %p\n", hCatalog, member, prev);
|
|
|
|
|
|
|
|
if (!hCatalog || hCatalog == INVALID_HANDLE_VALUE || cc->magic != CRYPTCAT_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SetLastError(CRYPT_E_NOT_FOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATEnumerateCatAttr (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
CRYPTCATATTRIBUTE * WINAPI CryptCATEnumerateCatAttr(HANDLE hCatalog, CRYPTCATATTRIBUTE *prev)
|
|
|
|
{
|
|
|
|
struct cryptcat *cc = hCatalog;
|
|
|
|
|
|
|
|
FIXME("%p, %p\n", hCatalog, prev);
|
|
|
|
|
|
|
|
if (!hCatalog || hCatalog == INVALID_HANDLE_VALUE || cc->magic != CRYPTCAT_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SetLastError(CRYPT_E_NOT_FOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-09-14 02:15:00 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATEnumerateMember (WINTRUST.@)
|
|
|
|
*/
|
2008-12-23 11:50:37 +01:00
|
|
|
CRYPTCATMEMBER * WINAPI CryptCATEnumerateMember(HANDLE hCatalog, CRYPTCATMEMBER *prev)
|
2006-09-14 02:15:00 +02:00
|
|
|
{
|
2008-12-23 11:50:37 +01:00
|
|
|
struct cryptcat *cc = hCatalog;
|
|
|
|
CRYPTCATMEMBER *member = prev;
|
|
|
|
CTL_ENTRY *entry;
|
|
|
|
DWORD size, i;
|
|
|
|
|
|
|
|
TRACE("%p, %p\n", hCatalog, prev);
|
|
|
|
|
|
|
|
if (!hCatalog || hCatalog == INVALID_HANDLE_VALUE || cc->magic != CRYPTCAT_MAGIC)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* dumping the contents makes me think that dwReserved is the iteration number */
|
|
|
|
if (!member)
|
|
|
|
{
|
|
|
|
if (!(member = HeapAlloc(GetProcessHeap(), 0, sizeof(*member))))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
member->cbStruct = sizeof(*member);
|
|
|
|
member->pwszFileName = member->pwszReferenceTag = NULL;
|
|
|
|
member->dwReserved = 0;
|
|
|
|
member->hReserved = NULL;
|
|
|
|
member->gSubjectType = cc->subject;
|
|
|
|
member->fdwMemberFlags = 0;
|
|
|
|
member->pIndirectData = NULL;
|
|
|
|
member->dwCertVersion = cc->inner->dwVersion;
|
|
|
|
}
|
|
|
|
else member->dwReserved++;
|
|
|
|
|
|
|
|
if (member->dwReserved >= cc->inner->cCTLEntry)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* list them backwards, like native */
|
|
|
|
entry = &cc->inner->rgCTLEntry[cc->inner->cCTLEntry - member->dwReserved - 1];
|
|
|
|
|
|
|
|
member->sEncodedIndirectData.cbData = member->sEncodedMemberInfo.cbData = 0;
|
|
|
|
member->sEncodedIndirectData.pbData = member->sEncodedMemberInfo.pbData = NULL;
|
|
|
|
HeapFree(GetProcessHeap(), 0, member->pIndirectData);
|
|
|
|
member->pIndirectData = NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < entry->cAttribute; i++)
|
|
|
|
{
|
|
|
|
CRYPT_ATTRIBUTE *attr = entry->rgAttribute + i;
|
|
|
|
|
|
|
|
if (attr->cValue != 1)
|
|
|
|
{
|
|
|
|
ERR("Can't handle attr->cValue of %u\n", attr->cValue);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!strcmp(attr->pszObjId, CAT_MEMBERINFO_OBJID))
|
|
|
|
{
|
|
|
|
CAT_MEMBERINFO *mi;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
member->sEncodedMemberInfo.cbData = attr->rgValue->cbData;
|
|
|
|
member->sEncodedMemberInfo.pbData = attr->rgValue->pbData;
|
|
|
|
|
|
|
|
CryptDecodeObject(cc->encoding, CAT_MEMBERINFO_OBJID, attr->rgValue->pbData, attr->rgValue->cbData, 0, NULL, &size);
|
|
|
|
|
|
|
|
if (!(mi = HeapAlloc(GetProcessHeap(), 0, size)))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
ret = CryptDecodeObject(cc->encoding, CAT_MEMBERINFO_OBJID, attr->rgValue->pbData, attr->rgValue->cbData, 0, mi, &size);
|
|
|
|
if (ret)
|
|
|
|
{
|
|
|
|
UNICODE_STRING guid;
|
|
|
|
|
|
|
|
member->dwCertVersion = mi->dwCertVersion;
|
|
|
|
RtlInitUnicodeString(&guid, mi->pwszSubjGuid);
|
|
|
|
if (RtlGUIDFromString(&guid, &member->gSubjectType))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, mi);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, mi);
|
|
|
|
if (!ret) goto error;
|
|
|
|
}
|
|
|
|
else if (!strcmp(attr->pszObjId, SPC_INDIRECT_DATA_OBJID))
|
|
|
|
{
|
|
|
|
/* SPC_INDIRECT_DATA_CONTENT is equal to SIP_INDIRECT_DATA */
|
|
|
|
|
|
|
|
member->sEncodedIndirectData.cbData = attr->rgValue->cbData;
|
|
|
|
member->sEncodedIndirectData.pbData = attr->rgValue->pbData;
|
|
|
|
|
|
|
|
CryptDecodeObject(cc->encoding, SPC_INDIRECT_DATA_OBJID, attr->rgValue->pbData, attr->rgValue->cbData, 0, NULL, &size);
|
|
|
|
|
|
|
|
if (!(member->pIndirectData = HeapAlloc(GetProcessHeap(), 0, size)))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
CryptDecodeObject(cc->encoding, SPC_INDIRECT_DATA_OBJID, attr->rgValue->pbData, attr->rgValue->cbData, 0, member->pIndirectData, &size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* this object id should probably be handled in CryptCATEnumerateAttr */
|
|
|
|
FIXME("unhandled object id \"%s\"\n", attr->pszObjId);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!member->sEncodedMemberInfo.cbData || !member->sEncodedIndirectData.cbData)
|
|
|
|
{
|
|
|
|
ERR("Corrupted catalog entry?\n");
|
|
|
|
SetLastError(CRYPT_E_ATTRIBUTES_MISSING);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
size = (2 * member->pIndirectData->Digest.cbData + 1) * sizeof(WCHAR);
|
|
|
|
if (member->pwszReferenceTag)
|
|
|
|
member->pwszReferenceTag = HeapReAlloc(GetProcessHeap(), 0, member->pwszReferenceTag, size);
|
|
|
|
else
|
|
|
|
member->pwszReferenceTag = HeapAlloc(GetProcessHeap(), 0, size);
|
|
|
|
|
|
|
|
if (!member->pwszReferenceTag)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
/* FIXME: reference tag is usually the file hash but doesn't have to be */
|
|
|
|
for (i = 0; i < member->pIndirectData->Digest.cbData; i++)
|
|
|
|
{
|
|
|
|
DWORD sub;
|
|
|
|
|
|
|
|
sub = member->pIndirectData->Digest.pbData[i] >> 4;
|
|
|
|
member->pwszReferenceTag[i * 2] = (sub < 10 ? '0' + sub : 'A' + sub - 10);
|
|
|
|
sub = member->pIndirectData->Digest.pbData[i] & 0xf;
|
|
|
|
member->pwszReferenceTag[i * 2 + 1] = (sub < 10 ? '0' + sub : 'A' + sub - 10);
|
|
|
|
}
|
|
|
|
member->pwszReferenceTag[i * 2] = 0;
|
|
|
|
return member;
|
|
|
|
|
|
|
|
error:
|
|
|
|
HeapFree(GetProcessHeap(), 0, member->pIndirectData);
|
|
|
|
HeapFree(GetProcessHeap(), 0, member->pwszReferenceTag);
|
|
|
|
HeapFree(GetProcessHeap(), 0, member);
|
2006-09-14 02:15:00 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-12-22 14:19:50 +01:00
|
|
|
static CTL_INFO *decode_inner_content(HANDLE hmsg, DWORD encoding, DWORD *len)
|
|
|
|
{
|
|
|
|
DWORD size;
|
|
|
|
LPSTR oid = NULL;
|
|
|
|
BYTE *buffer = NULL;
|
|
|
|
CTL_INFO *inner = NULL;
|
|
|
|
|
|
|
|
if (!CryptMsgGetParam(hmsg, CMSG_INNER_CONTENT_TYPE_PARAM, 0, NULL, &size)) return NULL;
|
|
|
|
if (!(oid = HeapAlloc(GetProcessHeap(), 0, size)))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (!CryptMsgGetParam(hmsg, CMSG_INNER_CONTENT_TYPE_PARAM, 0, oid, &size)) goto out;
|
|
|
|
if (!CryptMsgGetParam(hmsg, CMSG_CONTENT_PARAM, 0, NULL, &size)) goto out;
|
|
|
|
if (!(buffer = HeapAlloc(GetProcessHeap(), 0, size)))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (!CryptMsgGetParam(hmsg, CMSG_CONTENT_PARAM, 0, buffer, &size)) goto out;
|
|
|
|
if (!CryptDecodeObject(encoding, oid, buffer, size, 0, NULL, &size)) goto out;
|
|
|
|
if (!(inner = HeapAlloc(GetProcessHeap(), 0, size)))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (!CryptDecodeObject(encoding, oid, buffer, size, 0, inner, &size)) goto out;
|
|
|
|
*len = size;
|
|
|
|
|
|
|
|
out:
|
|
|
|
HeapFree(GetProcessHeap(), 0, oid);
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
return inner;
|
|
|
|
}
|
|
|
|
|
2008-12-23 11:50:46 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATCatalogInfoFromContext (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptCATCatalogInfoFromContext(HCATINFO hcatinfo, CATALOG_INFO *info, DWORD flags)
|
|
|
|
{
|
|
|
|
struct catinfo *ci = hcatinfo;
|
|
|
|
|
|
|
|
TRACE("%p, %p, %x\n", hcatinfo, info, flags);
|
|
|
|
|
|
|
|
if (!hcatinfo || hcatinfo == INVALID_HANDLE_VALUE || ci->magic != CATINFO_MAGIC ||
|
|
|
|
flags || !info || info->cbStruct != sizeof(*info))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
strcpyW(info->wszCatalogFile, ci->file);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-09-14 02:11:24 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATOpen (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
HANDLE WINAPI CryptCATOpen(LPWSTR pwszFileName, DWORD fdwOpenFlags, HCRYPTPROV hProv,
|
|
|
|
DWORD dwPublicVersion, DWORD dwEncodingType)
|
|
|
|
{
|
2008-12-22 14:19:50 +01:00
|
|
|
HANDLE file, hmsg;
|
|
|
|
BYTE *buffer = NULL;
|
|
|
|
DWORD size, flags = OPEN_EXISTING;
|
|
|
|
struct cryptcat *cc;
|
|
|
|
|
|
|
|
TRACE("%s, %x, %lx, %x, %x\n", debugstr_w(pwszFileName), fdwOpenFlags,
|
2006-09-14 02:11:24 +02:00
|
|
|
hProv, dwPublicVersion, dwEncodingType);
|
2008-12-22 14:19:50 +01:00
|
|
|
|
|
|
|
if (!pwszFileName)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dwPublicVersion) dwPublicVersion = 0x00000100;
|
|
|
|
if (!dwEncodingType) dwEncodingType = X509_ASN_ENCODING | PKCS_7_ASN_ENCODING;
|
|
|
|
|
|
|
|
if (fdwOpenFlags & CRYPTCAT_OPEN_ALWAYS) flags |= OPEN_ALWAYS;
|
|
|
|
if (fdwOpenFlags & CRYPTCAT_OPEN_CREATENEW) flags |= CREATE_NEW;
|
|
|
|
|
|
|
|
file = CreateFileW(pwszFileName, GENERIC_READ, FILE_SHARE_READ, NULL, flags, 0, NULL);
|
|
|
|
if (file == INVALID_HANDLE_VALUE) return INVALID_HANDLE_VALUE;
|
|
|
|
|
|
|
|
size = GetFileSize(file, NULL);
|
|
|
|
if (!(buffer = HeapAlloc(GetProcessHeap(), 0, size)))
|
|
|
|
{
|
|
|
|
CloseHandle(file);
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
if (!(hmsg = CryptMsgOpenToDecode(dwEncodingType, 0, 0, hProv, NULL, NULL)))
|
|
|
|
{
|
|
|
|
CloseHandle(file);
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
if (!ReadFile(file, buffer, size, &size, NULL) || !CryptMsgUpdate(hmsg, buffer, size, TRUE))
|
|
|
|
{
|
|
|
|
CloseHandle(file);
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
CryptMsgClose(hmsg);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
CloseHandle(file);
|
|
|
|
|
|
|
|
size = sizeof(DWORD);
|
|
|
|
if (!(cc = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*cc))))
|
|
|
|
{
|
|
|
|
CryptMsgClose(hmsg);
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
cc->msg = hmsg;
|
|
|
|
cc->encoding = dwEncodingType;
|
|
|
|
if (CryptMsgGetParam(hmsg, CMSG_ATTR_CERT_COUNT_PARAM, 0, &cc->attr_count, &size))
|
|
|
|
{
|
|
|
|
DWORD i, sum = 0;
|
|
|
|
BYTE *p;
|
|
|
|
|
|
|
|
for (i = 0; i < cc->attr_count; i++)
|
|
|
|
{
|
|
|
|
if (!CryptMsgGetParam(hmsg, CMSG_ATTR_CERT_PARAM, i, NULL, &size))
|
|
|
|
{
|
|
|
|
CryptMsgClose(hmsg);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
sum += size;
|
|
|
|
}
|
|
|
|
if (!(cc->attr = HeapAlloc(GetProcessHeap(), 0, sizeof(*cc->attr) * cc->attr_count + sum)))
|
|
|
|
{
|
|
|
|
CryptMsgClose(hmsg);
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
p = (BYTE *)(cc->attr + cc->attr_count);
|
|
|
|
for (i = 0; i < cc->attr_count; i++)
|
|
|
|
{
|
|
|
|
if (!CryptMsgGetParam(hmsg, CMSG_ATTR_CERT_PARAM, i, NULL, &size))
|
|
|
|
{
|
|
|
|
CryptMsgClose(hmsg);
|
|
|
|
HeapFree(GetProcessHeap(), 0, cc->attr);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
if (!CryptMsgGetParam(hmsg, CMSG_ATTR_CERT_PARAM, i, p, &size))
|
|
|
|
{
|
|
|
|
CryptMsgClose(hmsg);
|
|
|
|
HeapFree(GetProcessHeap(), 0, cc->attr);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
p += size;
|
|
|
|
}
|
|
|
|
cc->inner = decode_inner_content(hmsg, dwEncodingType, &cc->inner_len);
|
|
|
|
if (!cc->inner || !CryptSIPRetrieveSubjectGuid(pwszFileName, NULL, &cc->subject))
|
|
|
|
{
|
|
|
|
CryptMsgClose(hmsg);
|
|
|
|
HeapFree(GetProcessHeap(), 0, cc->attr);
|
|
|
|
HeapFree(GetProcessHeap(), 0, cc->inner);
|
|
|
|
HeapFree(GetProcessHeap(), 0, cc);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
cc->magic = CRYPTCAT_MAGIC;
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
return INVALID_HANDLE_VALUE;
|
2006-09-14 02:11:24 +02:00
|
|
|
}
|
2006-09-27 14:36:42 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptSIPCreateIndirectData (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptSIPCreateIndirectData(SIP_SUBJECTINFO* pSubjectInfo, DWORD* pcbIndirectData,
|
|
|
|
SIP_INDIRECT_DATA* pIndirectData)
|
|
|
|
{
|
|
|
|
FIXME("(%p %p %p) stub\n", pSubjectInfo, pcbIndirectData, pIndirectData);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-01-17 16:02:36 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATCDFClose (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptCATCDFClose(CRYPTCATCDF *pCDF)
|
|
|
|
{
|
|
|
|
FIXME("(%p) stub\n", pCDF);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATCDFEnumCatAttributes (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
CRYPTCATATTRIBUTE * WINAPI CryptCATCDFEnumCatAttributes(CRYPTCATCDF *pCDF,
|
|
|
|
CRYPTCATATTRIBUTE *pPrevAttr,
|
|
|
|
PFN_CDF_PARSE_ERROR_CALLBACK pfnParseError)
|
|
|
|
{
|
|
|
|
FIXME("(%p %p %p) stub\n", pCDF, pPrevAttr, pfnParseError);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATCDFEnumMembersByCDFTagEx (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
LPWSTR WINAPI CryptCATCDFEnumMembersByCDFTagEx(CRYPTCATCDF *pCDF, LPWSTR pwszPrevCDFTag,
|
|
|
|
PFN_CDF_PARSE_ERROR_CALLBACK pfnParseError,
|
|
|
|
CRYPTCATMEMBER **ppMember, BOOL fContinueOnError,
|
|
|
|
LPVOID pvReserved)
|
|
|
|
{
|
|
|
|
FIXME("(%p %s %p %p %d %p) stub\n", pCDF, debugstr_w(pwszPrevCDFTag), pfnParseError,
|
|
|
|
ppMember, fContinueOnError, pvReserved);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptCATCDFOpen (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
CRYPTCATCDF * WINAPI CryptCATCDFOpen(LPWSTR pwszFilePath,
|
|
|
|
PFN_CDF_PARSE_ERROR_CALLBACK pfnParseError)
|
|
|
|
{
|
|
|
|
FIXME("(%s %p) stub\n", debugstr_w(pwszFilePath), pfnParseError);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-07-24 02:42:09 +02:00
|
|
|
static BOOL WINTRUST_GetSignedMsgFromPEFile(SIP_SUBJECTINFO *pSubjectInfo,
|
|
|
|
DWORD *pdwEncodingType, DWORD dwIndex, DWORD *pcbSignedDataMsg,
|
|
|
|
BYTE *pbSignedDataMsg)
|
2006-09-27 14:36:42 +02:00
|
|
|
{
|
2007-08-10 19:53:00 +02:00
|
|
|
BOOL ret;
|
|
|
|
WIN_CERTIFICATE *pCert = NULL;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d %p %p)\n", pSubjectInfo, pdwEncodingType, dwIndex,
|
2006-09-27 14:36:42 +02:00
|
|
|
pcbSignedDataMsg, pbSignedDataMsg);
|
|
|
|
|
2007-08-10 19:53:00 +02:00
|
|
|
if (!pbSignedDataMsg)
|
|
|
|
{
|
|
|
|
WIN_CERTIFICATE cert;
|
|
|
|
|
|
|
|
/* app hasn't passed buffer, just get the length */
|
|
|
|
ret = ImageGetCertificateHeader(pSubjectInfo->hFile, dwIndex, &cert);
|
|
|
|
if (ret)
|
|
|
|
*pcbSignedDataMsg = cert.dwLength;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-01-08 20:40:27 +01:00
|
|
|
DWORD len = 0;
|
2007-08-10 19:53:00 +02:00
|
|
|
|
|
|
|
ret = ImageGetCertificateData(pSubjectInfo->hFile, dwIndex, NULL, &len);
|
2008-01-08 20:40:27 +01:00
|
|
|
if (GetLastError() != ERROR_INSUFFICIENT_BUFFER)
|
2007-08-10 19:53:00 +02:00
|
|
|
goto error;
|
|
|
|
pCert = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
if (!pCert)
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
ret = ImageGetCertificateData(pSubjectInfo->hFile, dwIndex, pCert,
|
|
|
|
&len);
|
|
|
|
if (!ret)
|
|
|
|
goto error;
|
2007-08-16 01:41:32 +02:00
|
|
|
if (*pcbSignedDataMsg < pCert->dwLength)
|
2007-08-10 19:53:00 +02:00
|
|
|
{
|
|
|
|
*pcbSignedDataMsg = pCert->dwLength;
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy(pbSignedDataMsg, pCert->bCertificate, pCert->dwLength);
|
|
|
|
switch (pCert->wCertificateType)
|
|
|
|
{
|
|
|
|
case WIN_CERT_TYPE_X509:
|
|
|
|
*pdwEncodingType = X509_ASN_ENCODING;
|
|
|
|
break;
|
|
|
|
case WIN_CERT_TYPE_PKCS_SIGNED_DATA:
|
|
|
|
*pdwEncodingType = X509_ASN_ENCODING | PKCS_7_ASN_ENCODING;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("don't know what to do for encoding type %d\n",
|
|
|
|
pCert->wCertificateType);
|
|
|
|
*pdwEncodingType = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
error:
|
|
|
|
HeapFree(GetProcessHeap(), 0, pCert);
|
2008-07-24 02:42:09 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-07-24 02:42:32 +02:00
|
|
|
/* structure offsets */
|
|
|
|
#define cfhead_Signature (0x00)
|
|
|
|
#define cfhead_CabinetSize (0x08)
|
|
|
|
#define cfhead_MinorVersion (0x18)
|
|
|
|
#define cfhead_MajorVersion (0x19)
|
|
|
|
#define cfhead_Flags (0x1E)
|
|
|
|
#define cfhead_SIZEOF (0x24)
|
|
|
|
#define cfheadext_HeaderReserved (0x00)
|
|
|
|
#define cfheadext_SIZEOF (0x04)
|
|
|
|
#define cfsigninfo_CertOffset (0x04)
|
|
|
|
#define cfsigninfo_CertSize (0x08)
|
|
|
|
#define cfsigninfo_SIZEOF (0x0C)
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
#define cfheadRESERVE_PRESENT (0x0004)
|
|
|
|
|
|
|
|
/* endian-neutral reading of little-endian data */
|
|
|
|
#define EndGetI32(a) ((((a)[3])<<24)|(((a)[2])<<16)|(((a)[1])<<8)|((a)[0]))
|
|
|
|
#define EndGetI16(a) ((((a)[1])<<8)|((a)[0]))
|
|
|
|
|
|
|
|
/* For documentation purposes only: this is the structure in the reserved
|
|
|
|
* area of a signed cabinet file. The cert offset indicates where in the
|
|
|
|
* cabinet file the signature resides, and the count indicates its size.
|
|
|
|
*/
|
|
|
|
typedef struct _CAB_SIGNINFO
|
|
|
|
{
|
|
|
|
WORD unk0; /* always 0? */
|
|
|
|
WORD unk1; /* always 0x0010? */
|
|
|
|
DWORD dwCertOffset;
|
|
|
|
DWORD cbCertBlock;
|
|
|
|
} CAB_SIGNINFO, *PCAB_SIGNINFO;
|
|
|
|
|
|
|
|
static BOOL WINTRUST_GetSignedMsgFromCabFile(SIP_SUBJECTINFO *pSubjectInfo,
|
|
|
|
DWORD *pdwEncodingType, DWORD dwIndex, DWORD *pcbSignedDataMsg,
|
|
|
|
BYTE *pbSignedDataMsg)
|
|
|
|
{
|
|
|
|
int header_resv;
|
|
|
|
LONG base_offset, cabsize;
|
|
|
|
USHORT flags;
|
|
|
|
BYTE buf[64];
|
|
|
|
DWORD cert_offset, cert_size, dwRead;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d %p %p)\n", pSubjectInfo, pdwEncodingType, dwIndex,
|
|
|
|
pcbSignedDataMsg, pbSignedDataMsg);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: I just noticed that I am memorizing the initial file pointer
|
|
|
|
* offset and restoring it before reading in the rest of the header
|
|
|
|
* information in the cabinet. Perhaps that's correct -- that is, perhaps
|
|
|
|
* this API is supposed to support "streaming" cabinets which are embedded
|
|
|
|
* in other files, or cabinets which begin at file offsets other than zero.
|
|
|
|
* Otherwise, I should instead go to the absolute beginning of the file.
|
|
|
|
* (Either way, the semantics of wine's FDICopy require me to leave the
|
|
|
|
* file pointer where it is afterwards -- If Windows does not do so, we
|
|
|
|
* ought to duplicate the native behavior in the FDIIsCabinet API, not here.
|
|
|
|
*
|
|
|
|
* So, the answer lies in Windows; will native cabinet.dll recognize a
|
|
|
|
* cabinet "file" embedded in another file? Note that cabextract.c does
|
|
|
|
* support this, which implies that Microsoft's might. I haven't tried it
|
|
|
|
* yet so I don't know. ATM, most of wine's FDI cabinet routines (except
|
|
|
|
* this one) would not work in this way. To fix it, we could just make the
|
|
|
|
* various references to absolute file positions in the code relative to an
|
|
|
|
* initial "beginning" offset. Because the FDICopy API doesn't take a
|
|
|
|
* file-handle like this one, we would therein need to search through the
|
|
|
|
* file for the beginning of the cabinet (as we also do in cabextract.c).
|
|
|
|
* Note that this limits us to a maximum of one cabinet per. file: the first.
|
|
|
|
*
|
|
|
|
* So, in summary: either the code below is wrong, or the rest of fdi.c is
|
|
|
|
* wrong... I cannot imagine that both are correct ;) One of these flaws
|
|
|
|
* should be fixed after determining the behavior on Windows. We ought
|
|
|
|
* to check both FDIIsCabinet and FDICopy for the right behavior.
|
|
|
|
*
|
|
|
|
* -gmt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* get basic offset & size info */
|
|
|
|
base_offset = SetFilePointer(pSubjectInfo->hFile, 0L, NULL, SEEK_CUR);
|
|
|
|
|
2008-12-10 22:55:31 +01:00
|
|
|
if (SetFilePointer(pSubjectInfo->hFile, 0, NULL, SEEK_END) == INVALID_SET_FILE_POINTER)
|
2008-07-24 02:42:32 +02:00
|
|
|
{
|
|
|
|
TRACE("seek error\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
cabsize = SetFilePointer(pSubjectInfo->hFile, 0L, NULL, SEEK_CUR);
|
|
|
|
if ((cabsize == -1) || (base_offset == -1) ||
|
2008-12-10 22:55:31 +01:00
|
|
|
(SetFilePointer(pSubjectInfo->hFile, base_offset, NULL, SEEK_SET) == INVALID_SET_FILE_POINTER))
|
2008-07-24 02:42:32 +02:00
|
|
|
{
|
|
|
|
TRACE("seek error\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* read in the CFHEADER */
|
|
|
|
if (!ReadFile(pSubjectInfo->hFile, buf, cfhead_SIZEOF, &dwRead, NULL) ||
|
|
|
|
dwRead != cfhead_SIZEOF)
|
|
|
|
{
|
|
|
|
TRACE("reading header failed\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check basic MSCF signature */
|
|
|
|
if (EndGetI32(buf+cfhead_Signature) != 0x4643534d)
|
|
|
|
{
|
|
|
|
WARN("cabinet signature not present\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ignore the number of folders and files and the set and cabinet IDs */
|
|
|
|
|
|
|
|
/* check the header revision */
|
|
|
|
if ((buf[cfhead_MajorVersion] > 1) ||
|
|
|
|
(buf[cfhead_MajorVersion] == 1 && buf[cfhead_MinorVersion] > 3))
|
|
|
|
{
|
|
|
|
WARN("cabinet format version > 1.3\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pull the flags out */
|
|
|
|
flags = EndGetI16(buf+cfhead_Flags);
|
|
|
|
|
|
|
|
if (!(flags & cfheadRESERVE_PRESENT))
|
|
|
|
{
|
|
|
|
TRACE("no header present, not signed\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ReadFile(pSubjectInfo->hFile, buf, cfheadext_SIZEOF, &dwRead, NULL) ||
|
|
|
|
dwRead != cfheadext_SIZEOF)
|
|
|
|
{
|
|
|
|
ERR("bunk reserve-sizes?\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
header_resv = EndGetI16(buf+cfheadext_HeaderReserved);
|
|
|
|
if (!header_resv)
|
|
|
|
{
|
|
|
|
TRACE("no header_resv, not signed\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else if (header_resv < cfsigninfo_SIZEOF)
|
|
|
|
{
|
|
|
|
TRACE("header_resv too small, not signed\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (header_resv > 60000)
|
|
|
|
{
|
|
|
|
WARN("WARNING; header reserved space > 60000\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ReadFile(pSubjectInfo->hFile, buf, cfsigninfo_SIZEOF, &dwRead, NULL) ||
|
|
|
|
dwRead != cfsigninfo_SIZEOF)
|
|
|
|
{
|
|
|
|
ERR("couldn't read reserve\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
cert_offset = EndGetI32(buf+cfsigninfo_CertOffset);
|
|
|
|
TRACE("cert_offset: %d\n", cert_offset);
|
|
|
|
cert_size = EndGetI32(buf+cfsigninfo_CertSize);
|
|
|
|
TRACE("cert_size: %d\n", cert_size);
|
|
|
|
|
|
|
|
/* The redundant checks are to avoid wraparound */
|
|
|
|
if (cert_offset > cabsize || cert_size > cabsize ||
|
|
|
|
cert_offset + cert_size > cabsize)
|
|
|
|
{
|
|
|
|
WARN("offset beyond file, not attempting to read\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetFilePointer(pSubjectInfo->hFile, base_offset, NULL, SEEK_SET);
|
|
|
|
if (!pbSignedDataMsg)
|
|
|
|
{
|
|
|
|
*pcbSignedDataMsg = cert_size;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
if (*pcbSignedDataMsg < cert_size)
|
|
|
|
{
|
|
|
|
*pcbSignedDataMsg = cert_size;
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-12-10 22:55:31 +01:00
|
|
|
if (SetFilePointer(pSubjectInfo->hFile, cert_offset, NULL, SEEK_SET) == INVALID_SET_FILE_POINTER)
|
2008-07-24 02:42:32 +02:00
|
|
|
{
|
|
|
|
ERR("couldn't seek to cert location\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (!ReadFile(pSubjectInfo->hFile, pbSignedDataMsg, cert_size, &dwRead,
|
|
|
|
NULL) || dwRead != cert_size)
|
|
|
|
{
|
|
|
|
ERR("couldn't read cert\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
/* The encoding of the files I've seen appears to be in ASN.1
|
|
|
|
* format, and there isn't a field indicating the type, so assume it
|
|
|
|
* always is.
|
|
|
|
*/
|
|
|
|
*pdwEncodingType = X509_ASN_ENCODING | PKCS_7_ASN_ENCODING;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-10-08 17:57:39 +02:00
|
|
|
static BOOL WINTRUST_GetSignedMsgFromCatFile(SIP_SUBJECTINFO *pSubjectInfo,
|
|
|
|
DWORD *pdwEncodingType, DWORD dwIndex, DWORD *pcbSignedDataMsg,
|
|
|
|
BYTE *pbSignedDataMsg)
|
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d %p %p)\n", pSubjectInfo, pdwEncodingType, dwIndex,
|
|
|
|
pcbSignedDataMsg, pbSignedDataMsg);
|
|
|
|
|
|
|
|
if (!pbSignedDataMsg)
|
|
|
|
{
|
|
|
|
*pcbSignedDataMsg = GetFileSize(pSubjectInfo->hFile, NULL);
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DWORD len = GetFileSize(pSubjectInfo->hFile, NULL);
|
|
|
|
|
|
|
|
if (*pcbSignedDataMsg < len)
|
|
|
|
{
|
|
|
|
*pcbSignedDataMsg = len;
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = ReadFile(pSubjectInfo->hFile, pbSignedDataMsg, len,
|
|
|
|
pcbSignedDataMsg, NULL);
|
|
|
|
if (ret)
|
|
|
|
*pdwEncodingType = X509_ASN_ENCODING | PKCS_7_ASN_ENCODING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-07-24 02:42:09 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* CryptSIPGetSignedDataMsg (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptSIPGetSignedDataMsg(SIP_SUBJECTINFO* pSubjectInfo, DWORD* pdwEncodingType,
|
|
|
|
DWORD dwIndex, DWORD* pcbSignedDataMsg, BYTE* pbSignedDataMsg)
|
|
|
|
{
|
|
|
|
static const GUID unknown = { 0xC689AAB8, 0x8E78, 0x11D0, { 0x8C,0x47,
|
|
|
|
0x00,0xC0,0x4F,0xC2,0x95,0xEE } };
|
2008-07-24 02:42:32 +02:00
|
|
|
static const GUID cabGUID = { 0xC689AABA, 0x8E78, 0x11D0, { 0x8C,0x47,
|
|
|
|
0x00,0xC0,0x4F,0xC2,0x95,0xEE } };
|
2008-10-08 17:57:39 +02:00
|
|
|
static const GUID catGUID = { 0xDE351A43, 0x8E59, 0x11D0, { 0x8C,0x47,
|
|
|
|
0x00,0xC0,0x4F,0xC2,0x95,0xEE }};
|
2008-07-24 02:42:09 +02:00
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d %p %p)\n", pSubjectInfo, pdwEncodingType, dwIndex,
|
|
|
|
pcbSignedDataMsg, pbSignedDataMsg);
|
|
|
|
|
|
|
|
if (!memcmp(pSubjectInfo->pgSubjectType, &unknown, sizeof(unknown)))
|
|
|
|
ret = WINTRUST_GetSignedMsgFromPEFile(pSubjectInfo, pdwEncodingType,
|
|
|
|
dwIndex, pcbSignedDataMsg, pbSignedDataMsg);
|
2008-07-24 02:42:32 +02:00
|
|
|
else if (!memcmp(pSubjectInfo->pgSubjectType, &cabGUID, sizeof(cabGUID)))
|
|
|
|
ret = WINTRUST_GetSignedMsgFromCabFile(pSubjectInfo, pdwEncodingType,
|
|
|
|
dwIndex, pcbSignedDataMsg, pbSignedDataMsg);
|
2008-10-08 17:57:39 +02:00
|
|
|
else if (!memcmp(pSubjectInfo->pgSubjectType, &catGUID, sizeof(catGUID)))
|
|
|
|
ret = WINTRUST_GetSignedMsgFromCatFile(pSubjectInfo, pdwEncodingType,
|
|
|
|
dwIndex, pcbSignedDataMsg, pbSignedDataMsg);
|
2008-07-24 02:42:09 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("unimplemented for subject type %s\n",
|
|
|
|
debugstr_guid(pSubjectInfo->pgSubjectType));
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
|
|
|
|
2007-08-10 19:53:00 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
|
|
|
return ret;
|
2006-09-27 14:36:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptSIPPutSignedDataMsg (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptSIPPutSignedDataMsg(SIP_SUBJECTINFO* pSubjectInfo, DWORD pdwEncodingType,
|
|
|
|
DWORD* pdwIndex, DWORD cbSignedDataMsg, BYTE* pbSignedDataMsg)
|
|
|
|
{
|
2006-10-04 12:22:58 +02:00
|
|
|
FIXME("(%p %d %p %d %p) stub\n", pSubjectInfo, pdwEncodingType, pdwIndex,
|
2006-09-27 14:36:42 +02:00
|
|
|
cbSignedDataMsg, pbSignedDataMsg);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptSIPRemoveSignedDataMsg (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptSIPRemoveSignedDataMsg(SIP_SUBJECTINFO* pSubjectInfo,
|
|
|
|
DWORD dwIndex)
|
|
|
|
{
|
2006-10-04 12:22:58 +02:00
|
|
|
FIXME("(%p %d) stub\n", pSubjectInfo, dwIndex);
|
2006-09-27 14:36:42 +02:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CryptSIPVerifyIndirectData (WINTRUST.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CryptSIPVerifyIndirectData(SIP_SUBJECTINFO* pSubjectInfo,
|
|
|
|
SIP_INDIRECT_DATA* pIndirectData)
|
|
|
|
{
|
|
|
|
FIXME("(%p %p) stub\n", pSubjectInfo, pIndirectData);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|