Sweden-Number/dlls/wintrust/register.c

227 lines
7.6 KiB
C
Raw Normal View History

/*
* Register related wintrust functions
*
* 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 "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "winuser.h"
#include "winreg.h"
#include "guiddef.h"
#include "wintrust.h"
#include "softpub.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(wintrust);
static const WCHAR Trust[] = {'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','\\',
'P','r','o','v','i','d','e','r','s','\\',
'T','r','u','s','t','\\', 0 };
static const WCHAR Initialization[] = {'I','n','i','t','i','a','l','i','z','a','t','i','o','n','\\', 0};
static const WCHAR Message[] = {'M','e','s','s','a','g','e','\\', 0};
static const WCHAR Signature[] = {'S','i','g','n','a','t','u','r','e','\\', 0};
static const WCHAR Certificate[] = {'C','e','r','t','i','f','i','c','a','t','e','\\', 0};
static const WCHAR CertCheck[] = {'C','e','r','t','C','h','e','c','k','\\', 0};
static const WCHAR FinalPolicy[] = {'F','i','n','a','l','P','o','l','i','c','y','\\', 0};
static const WCHAR DiagnosticPolicy[] = {'D','i','a','g','n','o','s','t','i','c','P','o','l','i','c','y','\\', 0};
static const WCHAR Cleanup[] = {'C','l','e','a','n','u','p','\\', 0};
/***********************************************************************
* WintrustAddActionID (WINTRUST.@)
2006-08-29 19:33:00 +02:00
*
* Add the definitions of the actions a Trust provider can perform to
* the registry.
*
* PARAMS
* pgActionID [I] Pointer to a GUID for the Trust provider.
* fdwFlags [I] Flag to indicate whether registry errors are passed on.
* psProvInfo [I] Pointer to a structure with information about DLL
* name and functions.
*
* RETURNS
* Success: TRUE.
* Failure: FALSE. (Use GetLastError() for more information)
*
* NOTES
* Adding definitions is basically only adding relevant information
2006-08-29 19:33:00 +02:00
* to the registry. No verification takes place whether a DLL or it's
* entrypoints exist.
* Information in the registry will always be overwritten.
*/
BOOL WINAPI WintrustAddActionID( GUID* pgActionID, DWORD fdwFlags,
CRYPT_REGISTER_ACTIONID* psProvInfo)
{
FIXME("%p %lx %p\n", pgActionID, fdwFlags, psProvInfo);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* WINTRUST_RemoveProviderFromReg (WINTRUST.@)
*
* Helper function for WintrustRemoveActionID
*
*/
static void WINTRUST_RemoveProviderFromReg(WCHAR* GuidString,
const WCHAR* FunctionType)
{
WCHAR ProvKey[MAX_PATH];
/* Create the needed key string */
ProvKey[0]='\0';
lstrcatW(ProvKey, Trust);
lstrcatW(ProvKey, FunctionType);
lstrcatW(ProvKey, GuidString);
/* We don't care about success or failure */
RegDeleteKeyW(HKEY_LOCAL_MACHINE, ProvKey);
}
/***********************************************************************
* WintrustRemoveActionID (WINTRUST.@)
2006-08-29 19:33:00 +02:00
*
* Remove the definitions of the actions a Trust provider can perform
* from the registry.
*
* PARAMS
* pgActionID [I] Pointer to a GUID for the Trust provider.
*
* RETURNS
* Success: TRUE. (Use GetLastError() for more information)
* Failure: FALSE. (Use GetLastError() for more information)
*
* NOTES
* Testing shows that WintrustRemoveActionID always returns TRUE and
* that a possible error should be retrieved via GetLastError().
* There are no checks if the definitions are in the registry.
*/
BOOL WINAPI WintrustRemoveActionID( GUID* pgActionID )
{
static const WCHAR wszFormat[] = {'{','%','0','8','l','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};
WCHAR GuidString[39];
TRACE("(%s)\n", debugstr_guid(pgActionID));
if (!pgActionID)
{
SetLastError(ERROR_INVALID_PARAMETER);
return TRUE;
}
/* Create this string only once, instead of in the helper function */
wsprintfW(GuidString, wszFormat, pgActionID->Data1, pgActionID->Data2, pgActionID->Data3,
pgActionID->Data4[0], pgActionID->Data4[1], pgActionID->Data4[2], pgActionID->Data4[3],
pgActionID->Data4[4], pgActionID->Data4[5], pgActionID->Data4[6], pgActionID->Data4[7]);
/* We don't care about success or failure */
WINTRUST_RemoveProviderFromReg(GuidString, Initialization);
WINTRUST_RemoveProviderFromReg(GuidString, Message);
WINTRUST_RemoveProviderFromReg(GuidString, Signature);
WINTRUST_RemoveProviderFromReg(GuidString, Certificate);
WINTRUST_RemoveProviderFromReg(GuidString, CertCheck);
WINTRUST_RemoveProviderFromReg(GuidString, FinalPolicy);
WINTRUST_RemoveProviderFromReg(GuidString, DiagnosticPolicy);
WINTRUST_RemoveProviderFromReg(GuidString, Cleanup);
return TRUE;
}
/***********************************************************************
2006-08-28 16:53:01 +02:00
* DllRegisterServer (WINTRUST.@)
*/
HRESULT WINAPI DllRegisterServer(void)
{
FIXME("stub\n");
return S_OK;
}
/***********************************************************************
2006-08-28 16:53:01 +02:00
* DllUnregisterServer (WINTRUST.@)
*/
HRESULT WINAPI DllUnregisterServer(void)
{
FIXME("stub\n");
return S_OK;
}
2006-08-28 16:53:01 +02:00
/***********************************************************************
* SoftpubDllRegisterServer (WINTRUST.@)
*/
HRESULT WINAPI SoftpubDllRegisterServer(void)
{
FIXME("stub\n");
return S_OK;
}
/***********************************************************************
* SoftpubDllUnregisterServer (WINTRUST.@)
*/
HRESULT WINAPI SoftpubDllUnregisterServer(void)
{
FIXME("stub\n");
return S_OK;
}
/***********************************************************************
* mscat32DllRegisterServer (WINTRUST.@)
*/
HRESULT WINAPI mscat32DllRegisterServer(void)
{
FIXME("stub\n");
return S_OK;
}
/***********************************************************************
* mscat32DllUnregisterServer (WINTRUST.@)
*/
HRESULT WINAPI mscat32DllUnregisterServer(void)
{
FIXME("stub\n");
return S_OK;
}
/***********************************************************************
* mssip32DllRegisterServer (WINTRUST.@)
*/
HRESULT WINAPI mssip32DllRegisterServer(void)
{
FIXME("stub\n");
return S_OK;
}
/***********************************************************************
* mssip32DllUnregisterServer (WINTRUST.@)
*/
HRESULT WINAPI mssip32DllUnregisterServer(void)
{
FIXME("stub\n");
return S_OK;
}