452 lines
14 KiB
C
452 lines
14 KiB
C
/*
|
|
* Copyright 2002 Mike McCormack for CodeWeavers
|
|
* Copyright 2005 Juan Lang
|
|
* Copyright 2006 Paul Vriens
|
|
*
|
|
* 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>
|
|
#include <stdio.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "wincrypt.h"
|
|
#include "winreg.h"
|
|
#include "winnls.h"
|
|
#include "mssip.h"
|
|
#include "winuser.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(crypt);
|
|
|
|
static const WCHAR szOID[] = {
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
'C','r','y','p','t','o','g','r','a','p','h','y','\\',
|
|
'O','I','D','\\',
|
|
'E','n','c','o','d','i','n','g','T','y','p','e',' ','0','\\',
|
|
'C','r','y','p','t','S','I','P','D','l','l', 0 };
|
|
|
|
static const WCHAR szPutSigned[] = {
|
|
'P','u','t','S','i','g','n','e','d','D','a','t','a','M','s','g','\\',0};
|
|
static const WCHAR szGetSigned[] = {
|
|
'G','e','t','S','i','g','n','e','d','D','a','t','a','M','s','g','\\',0};
|
|
static const WCHAR szRemoveSigned[] = {
|
|
'R','e','m','o','v','e','S','i','g','n','e','d','D','a','t','a','M','s','g','\\',0};
|
|
static const WCHAR szCreate[] = {
|
|
'C','r','e','a','t','e','I','n','d','i','r','e','c','t','D','a','t','a','\\',0};
|
|
static const WCHAR szVerify[] = {
|
|
'V','e','r','i','f','y','I','n','d','i','r','e','c','t','D','a','t','a','\\',0};
|
|
static const WCHAR szIsMyFile[] = {
|
|
'I','s','M','y','F','i','l','e','T','y','p','e','\\',0};
|
|
static const WCHAR szIsMyFile2[] = {
|
|
'I','s','M','y','F','i','l','e','T','y','p','e','2','\\',0};
|
|
|
|
static const WCHAR szDllName[] = { 'D','l','l',0 };
|
|
static const WCHAR szFuncName[] = { 'F','u','n','c','N','a','m','e',0 };
|
|
|
|
/* convert a guid to a wide character string */
|
|
static void CRYPT_guid2wstr( const GUID *guid, LPWSTR wstr )
|
|
{
|
|
char str[40];
|
|
|
|
sprintf(str, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
|
|
guid->Data1, guid->Data2, guid->Data3,
|
|
guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
|
|
guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7] );
|
|
MultiByteToWideChar( CP_ACP, 0, str, -1, wstr, 40 );
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CRYPT_SIPDeleteFunction
|
|
*
|
|
* Helper function for CryptSIPRemoveProvider
|
|
*/
|
|
static LONG CRYPT_SIPDeleteFunction( LPGUID guid, LPCWSTR szKey )
|
|
{
|
|
WCHAR szFullKey[ 0x100 ];
|
|
LONG r = ERROR_SUCCESS;
|
|
|
|
/* max length of szFullKey depends on our code only, so we won't overrun */
|
|
lstrcpyW( szFullKey, szOID );
|
|
lstrcatW( szFullKey, szKey );
|
|
CRYPT_guid2wstr( guid, &szFullKey[ lstrlenW( szFullKey ) ] );
|
|
|
|
r = RegDeleteKeyW(HKEY_LOCAL_MACHINE, szFullKey);
|
|
|
|
return r;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CryptSIPRemoveProvider (CRYPT32.@)
|
|
*
|
|
* Remove a SIP provider and its functions from the registry.
|
|
*
|
|
* PARAMS
|
|
* pgProv [I] Pointer to a GUID for this SIP provider
|
|
*
|
|
* RETURNS
|
|
* Success: TRUE.
|
|
* Failure: FALSE. (Look at GetLastError()).
|
|
*
|
|
* NOTES
|
|
* Registry errors are always reported via SetLastError(). Every registry
|
|
* deletion will be tried.
|
|
*/
|
|
BOOL WINAPI CryptSIPRemoveProvider(GUID *pgProv)
|
|
{
|
|
LONG r = ERROR_SUCCESS;
|
|
LONG remove_error = ERROR_SUCCESS;
|
|
|
|
TRACE("%s\n", debugstr_guid(pgProv));
|
|
|
|
if (!pgProv)
|
|
{
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
return FALSE;
|
|
}
|
|
|
|
|
|
#define CRYPT_SIPREMOVEPROV( key ) \
|
|
r = CRYPT_SIPDeleteFunction( pgProv, key); \
|
|
if (r != ERROR_SUCCESS) remove_error = r
|
|
|
|
CRYPT_SIPREMOVEPROV( szPutSigned);
|
|
CRYPT_SIPREMOVEPROV( szGetSigned);
|
|
CRYPT_SIPREMOVEPROV( szRemoveSigned);
|
|
CRYPT_SIPREMOVEPROV( szCreate);
|
|
CRYPT_SIPREMOVEPROV( szVerify);
|
|
CRYPT_SIPREMOVEPROV( szIsMyFile);
|
|
CRYPT_SIPREMOVEPROV( szIsMyFile2);
|
|
|
|
#undef CRYPT_SIPREMOVEPROV
|
|
|
|
if (remove_error != ERROR_SUCCESS)
|
|
{
|
|
SetLastError(remove_error);
|
|
return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Helper for CryptSIPAddProvider
|
|
*
|
|
* Add a registry key containing a dll name and function under
|
|
* "Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\<func>\\<guid>"
|
|
*/
|
|
static LONG CRYPT_SIPWriteFunction( LPGUID guid, LPCWSTR szKey,
|
|
LPCWSTR szDll, LPCWSTR szFunction )
|
|
{
|
|
WCHAR szFullKey[ 0x100 ];
|
|
LONG r = ERROR_SUCCESS;
|
|
HKEY hKey;
|
|
|
|
if( !szFunction )
|
|
return ERROR_SUCCESS;
|
|
|
|
/* max length of szFullKey depends on our code only, so we won't overrun */
|
|
lstrcpyW( szFullKey, szOID );
|
|
lstrcatW( szFullKey, szKey );
|
|
CRYPT_guid2wstr( guid, &szFullKey[ lstrlenW( szFullKey ) ] );
|
|
|
|
TRACE("key is %s\n", debugstr_w( szFullKey ) );
|
|
|
|
r = RegCreateKeyW( HKEY_LOCAL_MACHINE, szFullKey, &hKey );
|
|
if( r != ERROR_SUCCESS ) goto error_close_key;
|
|
|
|
/* write the values */
|
|
r = RegSetValueExW( hKey, szFuncName, 0, REG_SZ, (const BYTE*) szFunction,
|
|
( lstrlenW( szFunction ) + 1 ) * sizeof (WCHAR) );
|
|
if( r != ERROR_SUCCESS ) goto error_close_key;
|
|
r = RegSetValueExW( hKey, szDllName, 0, REG_SZ, (const BYTE*) szDll,
|
|
( lstrlenW( szDll ) + 1) * sizeof (WCHAR) );
|
|
|
|
error_close_key:
|
|
|
|
RegCloseKey( hKey );
|
|
|
|
return r;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CryptSIPAddProvider (CRYPT32.@)
|
|
*
|
|
* Add a SIP provider and its functions to the registry.
|
|
*
|
|
* PARAMS
|
|
* psNewProv [I] Pointer to a structure with information about
|
|
* the functions this SIP provider can perform.
|
|
*
|
|
* RETURNS
|
|
* Success: TRUE.
|
|
* Failure: FALSE. (Look at GetLastError()).
|
|
*
|
|
* NOTES
|
|
* Registry errors are always reported via SetLastError(). If a
|
|
* registry error occurs the rest of the registry write operations
|
|
* will be skipped.
|
|
*/
|
|
BOOL WINAPI CryptSIPAddProvider(SIP_ADD_NEWPROVIDER *psNewProv)
|
|
{
|
|
LONG r = ERROR_SUCCESS;
|
|
|
|
TRACE("%p\n", psNewProv);
|
|
|
|
if (!psNewProv ||
|
|
psNewProv->cbStruct != sizeof(SIP_ADD_NEWPROVIDER) ||
|
|
!psNewProv->pwszGetFuncName ||
|
|
!psNewProv->pwszPutFuncName ||
|
|
!psNewProv->pwszCreateFuncName ||
|
|
!psNewProv->pwszVerifyFuncName ||
|
|
!psNewProv->pwszRemoveFuncName)
|
|
{
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
return FALSE;
|
|
}
|
|
|
|
TRACE("%s %s %s %s %s\n",
|
|
debugstr_guid( psNewProv->pgSubject ),
|
|
debugstr_w( psNewProv->pwszDLLFileName ),
|
|
debugstr_w( psNewProv->pwszMagicNumber ),
|
|
debugstr_w( psNewProv->pwszIsFunctionName ),
|
|
debugstr_w( psNewProv->pwszIsFunctionNameFmt2 ) );
|
|
|
|
#define CRYPT_SIPADDPROV( key, field ) \
|
|
r = CRYPT_SIPWriteFunction( psNewProv->pgSubject, key, \
|
|
psNewProv->pwszDLLFileName, psNewProv->field); \
|
|
if (r != ERROR_SUCCESS) goto end_function
|
|
|
|
CRYPT_SIPADDPROV( szPutSigned, pwszPutFuncName );
|
|
CRYPT_SIPADDPROV( szGetSigned, pwszGetFuncName );
|
|
CRYPT_SIPADDPROV( szRemoveSigned, pwszRemoveFuncName );
|
|
CRYPT_SIPADDPROV( szCreate, pwszCreateFuncName );
|
|
CRYPT_SIPADDPROV( szVerify, pwszVerifyFuncName );
|
|
CRYPT_SIPADDPROV( szIsMyFile, pwszIsFunctionName );
|
|
CRYPT_SIPADDPROV( szIsMyFile2, pwszIsFunctionNameFmt2 );
|
|
|
|
#undef CRYPT_SIPADDPROV
|
|
|
|
end_function:
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
{
|
|
SetLastError(r);
|
|
return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CryptSIPRetrieveSubjectGuid (CRYPT32.@)
|
|
*
|
|
* Determine the right SIP GUID for the given file.
|
|
*
|
|
* PARAMS
|
|
* FileName [I] Filename.
|
|
* hFileIn [I] Optional handle to the file.
|
|
* pgSubject [O] The SIP's GUID.
|
|
*
|
|
* RETURNS
|
|
* Success: TRUE. pgSubject contains the SIP GUID.
|
|
* Failure: FALSE. (Look at GetLastError()).
|
|
*
|
|
* NOTES
|
|
* On failure pgSubject will contain a NULL GUID.
|
|
* The handle is always preferred above the filename.
|
|
*/
|
|
BOOL WINAPI CryptSIPRetrieveSubjectGuid
|
|
(LPCWSTR FileName, HANDLE hFileIn, GUID *pgSubject)
|
|
{
|
|
HANDLE hFile;
|
|
HANDLE hFilemapped;
|
|
LPVOID pMapped;
|
|
BOOL bRet = FALSE;
|
|
DWORD fileSize;
|
|
IMAGE_DOS_HEADER *dos;
|
|
/* FIXME, find out if there is a name for this GUID */
|
|
static const GUID unknown = { 0xC689AAB8, 0x8E78, 0x11D0, { 0x8C,0x47,0x00,0xC0,0x4F,0xC2,0x95,0xEE }};
|
|
|
|
TRACE("(%s %p %p)\n", wine_dbgstr_w(FileName), hFileIn, pgSubject);
|
|
|
|
if (!pgSubject || (!FileName && !hFileIn))
|
|
{
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
return FALSE;
|
|
}
|
|
|
|
/* Set pgSubject to zero's */
|
|
memset(pgSubject, 0 , sizeof(GUID));
|
|
|
|
if (hFileIn)
|
|
/* Use the given handle, make sure not to close this one ourselves */
|
|
hFile = hFileIn;
|
|
else
|
|
{
|
|
hFile = CreateFileW(FileName, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
/* Last error is set by CreateFile */
|
|
if (hFile == INVALID_HANDLE_VALUE) return FALSE;
|
|
}
|
|
|
|
hFilemapped = CreateFileMappingA(hFile, NULL, PAGE_READONLY, 0, 0, NULL);
|
|
/* Last error is set by CreateFileMapping */
|
|
if (!hFilemapped) goto cleanup3;
|
|
|
|
pMapped = MapViewOfFile(hFilemapped, FILE_MAP_READ, 0, 0, 0);
|
|
/* Last error is set by MapViewOfFile */
|
|
if (!pMapped) goto cleanup2;
|
|
|
|
/* Native checks it right here */
|
|
fileSize = GetFileSize(hFile, NULL);
|
|
if (fileSize < 4)
|
|
{
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
goto cleanup1;
|
|
}
|
|
|
|
/* As everything is in place now we start looking at the file header */
|
|
dos = (IMAGE_DOS_HEADER *)pMapped;
|
|
if (dos->e_magic == IMAGE_DOS_SIGNATURE)
|
|
{
|
|
memcpy(pgSubject, &unknown, sizeof(GUID));
|
|
SetLastError(S_OK);
|
|
bRet = TRUE;
|
|
goto cleanup1;
|
|
}
|
|
|
|
/* FIXME
|
|
* There is a lot more to be checked:
|
|
* - Check for MSFC in the header
|
|
* - Check for the keys CryptSIPDllIsMyFileType and CryptSIPDllIsMyFileType2
|
|
* under HKLM\Software\Microsoft\Cryptography\OID\EncodingType 0. Here are
|
|
* functions listed that need check if a SIP Provider can deal with the
|
|
* given file.
|
|
*/
|
|
|
|
/* Let's set the most common error for now */
|
|
SetLastError(TRUST_E_SUBJECT_FORM_UNKNOWN);
|
|
|
|
/* The 3 different cleanups are here because we shouldn't overwrite the last error */
|
|
cleanup1:
|
|
UnmapViewOfFile(pMapped);
|
|
cleanup2:
|
|
CloseHandle(hFilemapped);
|
|
cleanup3:
|
|
/* If we didn't open this one we shouldn't close it (hFile is a copy) */
|
|
if (!hFileIn) CloseHandle(hFile);
|
|
|
|
return bRet;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CryptSIPLoad (CRYPT32.@)
|
|
*
|
|
* Load some internal crypt32 functions into a SIP_DISPATCH_INFO structure.
|
|
*
|
|
* PARAMS
|
|
* pgSubject [I] The GUID.
|
|
* dwFlags [I] Flags.
|
|
* pSipDispatch [I] The loaded functions.
|
|
*
|
|
* RETURNS
|
|
* Success: TRUE. pSipDispatch contains the functions.
|
|
* Failure: FALSE. (Look at GetLastError()).
|
|
*
|
|
* NOTES
|
|
* CryptSIPLoad uses caching for the list of GUIDs and whether a SIP is
|
|
* already loaded.
|
|
*
|
|
* An application calls CryptSipLoad which will return a structure with the
|
|
* function addresses of some internal crypt32 functions. The application will
|
|
* then call these functions which will be forwarded to the appropriate SIP.
|
|
*
|
|
* CryptSIPLoad will load the needed SIP but doesn't unload this dll. The unloading
|
|
* is done when crypt32 is unloaded.
|
|
*/
|
|
BOOL WINAPI CryptSIPLoad
|
|
(const GUID *pgSubject, DWORD dwFlags, SIP_DISPATCH_INFO *pSipDispatch)
|
|
{
|
|
FIXME("(%s %d %p) stub!\n", debugstr_guid(pgSubject), dwFlags, pSipDispatch);
|
|
|
|
if (!pgSubject || dwFlags != 0 || !pSipDispatch)
|
|
{
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
return FALSE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CryptSIPCreateIndirectData (CRYPT32.@)
|
|
*/
|
|
BOOL WINAPI CryptSIPCreateIndirectData(SIP_SUBJECTINFO* pSubjectInfo, DWORD* pcbIndirectData,
|
|
SIP_INDIRECT_DATA* pIndirectData)
|
|
{
|
|
FIXME("(%p %p %p) stub\n", pSubjectInfo, pcbIndirectData, pIndirectData);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CryptSIPGetSignedDataMsg (CRYPT32.@)
|
|
*/
|
|
BOOL WINAPI CryptSIPGetSignedDataMsg(SIP_SUBJECTINFO* pSubjectInfo, DWORD* pdwEncodingType,
|
|
DWORD dwIndex, DWORD* pcbSignedDataMsg, BYTE* pbSignedDataMsg)
|
|
{
|
|
FIXME("(%p %p %d %p %p) stub\n", pSubjectInfo, pdwEncodingType, dwIndex,
|
|
pcbSignedDataMsg, pbSignedDataMsg);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CryptSIPPutSignedDataMsg (CRYPT32.@)
|
|
*/
|
|
BOOL WINAPI CryptSIPPutSignedDataMsg(SIP_SUBJECTINFO* pSubjectInfo, DWORD pdwEncodingType,
|
|
DWORD* pdwIndex, DWORD cbSignedDataMsg, BYTE* pbSignedDataMsg)
|
|
{
|
|
FIXME("(%p %d %p %d %p) stub\n", pSubjectInfo, pdwEncodingType, pdwIndex,
|
|
cbSignedDataMsg, pbSignedDataMsg);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CryptSIPRemoveSignedDataMsg (CRYPT32.@)
|
|
*/
|
|
BOOL WINAPI CryptSIPRemoveSignedDataMsg(SIP_SUBJECTINFO* pSubjectInfo,
|
|
DWORD dwIndex)
|
|
{
|
|
FIXME("(%p %d) stub\n", pSubjectInfo, dwIndex);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* CryptSIPVerifyIndirectData (CRYPT32.@)
|
|
*/
|
|
BOOL WINAPI CryptSIPVerifyIndirectData(SIP_SUBJECTINFO* pSubjectInfo,
|
|
SIP_INDIRECT_DATA* pIndirectData)
|
|
{
|
|
FIXME("(%p %p) stub\n", pSubjectInfo, pIndirectData);
|
|
|
|
return FALSE;
|
|
}
|