main.c 6.6 KB
Newer Older
Mike McCormack's avatar
Mike McCormack committed
1
/*
2
 * Copyright 2002 Mike McCormack for CodeWeavers
3
 * Copyright 2005 Juan Lang
Mike McCormack's avatar
Mike McCormack committed
4 5 6 7 8 9 10 11 12 13 14 15 16
 *
 * 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
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Mike McCormack's avatar
Mike McCormack committed
18 19 20
 */

#include "config.h"
21
#include <stdarg.h>
22
#include <stdio.h>
23 24

#include "windef.h"
Mike McCormack's avatar
Mike McCormack committed
25
#include "winbase.h"
Mike McCormack's avatar
Mike McCormack committed
26
#include "wincrypt.h"
27 28
#include "winreg.h"
#include "winnls.h"
29
#include "mssip.h"
30 31
#include "winuser.h"
#include "advpub.h"
32
#include "crypt32_private.h"
33 34 35
#include "wine/debug.h"

WINE_DEFAULT_DEBUG_CHANNEL(crypt);
Mike McCormack's avatar
Mike McCormack committed
36

37 38 39 40 41 42
static HCRYPTPROV hDefProv;

BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved)
{
    switch (fdwReason)
    {
43
        case DLL_PROCESS_ATTACH:
44
            DisableThreadLibraryCalls(hInstance);
45
            crypt_oid_init(hInstance);
46
            break;
47
        case DLL_PROCESS_DETACH:
48
            crypt_oid_free();
49 50 51 52 53 54 55 56 57 58 59 60 61 62
            if (hDefProv) CryptReleaseContext(hDefProv, 0);
            break;
    }
    return TRUE;
}

HCRYPTPROV CRYPT_GetDefaultProvider(void)
{
    if (!hDefProv)
        CryptAcquireContextW(&hDefProv, NULL, MS_ENHANCED_PROV_W,
         PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
    return hDefProv;
}

63 64 65 66 67 68 69 70 71
typedef void * HLRUCACHE;

/* this function is called by Internet Explorer when it is about to verify a
 * downloaded component.  The first parameter appears to be a pointer to an
 * unknown type, native fails unless it points to a buffer of at least 20 bytes.
 * The second parameter appears to be an out parameter, whatever it's set to is
 * passed (by cryptnet.dll) to I_CryptFlushLruCache.
 */
BOOL WINAPI I_CryptCreateLruCache(void *unknown, HLRUCACHE *out)
Mike McCormack's avatar
Mike McCormack committed
72
{
73 74 75
    FIXME("(%p, %p): stub!\n", unknown, out);
    *out = (void *)0xbaadf00d;
    return TRUE;
Mike McCormack's avatar
Mike McCormack committed
76 77
}

78
BOOL WINAPI I_CryptFindLruEntryData(DWORD unk0, DWORD unk1, DWORD unk2)
Mike McCormack's avatar
Mike McCormack committed
79
{
80
    FIXME("(%08x, %08x, %08x): stub!\n", unk0, unk1, unk2);
Mike McCormack's avatar
Mike McCormack committed
81 82 83
    return FALSE;
}

84
DWORD WINAPI I_CryptFlushLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1)
Mike McCormack's avatar
Mike McCormack committed
85
{
86
    FIXME("(%p, %08x, %08x): stub!\n", h, unk0, unk1);
87
    return 0;
Mike McCormack's avatar
Mike McCormack committed
88 89
}

90
HLRUCACHE WINAPI I_CryptFreeLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1)
Mike McCormack's avatar
Mike McCormack committed
91
{
92
    FIXME("(%p, %08x, %08x): stub!\n", h, unk0, unk1);
93
    return h;
Mike McCormack's avatar
Mike McCormack committed
94
}
Mike McCormack's avatar
Mike McCormack committed
95

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
LPVOID WINAPI CryptMemAlloc(ULONG cbSize)
{
    return HeapAlloc(GetProcessHeap(), 0, cbSize);
}

LPVOID WINAPI CryptMemRealloc(LPVOID pv, ULONG cbSize)
{
    return HeapReAlloc(GetProcessHeap(), 0, pv, cbSize);
}

VOID WINAPI CryptMemFree(LPVOID pv)
{
    HeapFree(GetProcessHeap(), 0, pv);
}

DWORD WINAPI I_CryptAllocTls(void)
{
    return TlsAlloc();
}

LPVOID WINAPI I_CryptDetachTls(DWORD dwTlsIndex)
{
    LPVOID ret;

    ret = TlsGetValue(dwTlsIndex);
    TlsSetValue(dwTlsIndex, NULL);
    return ret;
}

LPVOID WINAPI I_CryptGetTls(DWORD dwTlsIndex)
{
    return TlsGetValue(dwTlsIndex);
}

BOOL WINAPI I_CryptSetTls(DWORD dwTlsIndex, LPVOID lpTlsValue)
{
    return TlsSetValue(dwTlsIndex, lpTlsValue);
}

BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown)
{
137
    TRACE("(%d, %d)\n", dwTlsIndex, unknown);
138 139
    return TlsFree(dwTlsIndex);
}
140 141 142

BOOL WINAPI I_CryptGetOssGlobal(DWORD x)
{
143
    FIXME("%08x\n", x);
144 145 146
    return FALSE;
}

147
HCRYPTPROV WINAPI I_CryptGetDefaultCryptProv(DWORD reserved)
148
{
149 150
    HCRYPTPROV ret;

151
    TRACE("(%08x)\n", reserved);
152 153 154 155 156 157 158 159 160

    if (reserved)
    {
        SetLastError(E_INVALIDARG);
        return (HCRYPTPROV)0;
    }
    ret = CRYPT_GetDefaultProvider();
    CryptContextAddRef(ret, NULL, 0);
    return ret;
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
}

BOOL WINAPI I_CryptReadTrustedPublisherDWORDValueFromRegistry(LPCWSTR name,
 DWORD *value)
{
    static const WCHAR safer[] = { 
     'S','o','f','t','w','a','r','e','\\','P','o','l','i','c','i','e','s','\\',
     'M','i','c','r','o','s','o','f','t','\\','S','y','s','t','e','m',
     'C','e','r','t','i','f','i','c','a','t','e','s','\\',
     'T','r','u','s','t','e','d','P','u','b','l','i','s','h','e','r','\\',
     'S','a','f','e','r',0 };
    HKEY key;
    LONG rc;
    BOOL ret = FALSE;

    TRACE("(%s, %p)\n", debugstr_w(name), value);

178
    *value = 0;
179 180 181 182 183 184 185 186 187 188 189 190
    rc = RegCreateKeyW(HKEY_LOCAL_MACHINE, safer, &key);
    if (rc == ERROR_SUCCESS)
    {
        DWORD size = sizeof(DWORD);

        if (!RegQueryValueExW(key, name, NULL, NULL, (LPBYTE)value, &size))
            ret = TRUE;
        RegCloseKey(key);
    }
    return ret;
}

191
int WINAPI I_CryptInstallOssGlobal(DWORD x, DWORD y, DWORD z)
192
{
193 194 195 196
    static int ret = 8;
    ret++;
    FIXME("%08x %08x %08x, return value %d\n", x, y, z,ret);
    return ret;
197
}
198

199 200
BOOL WINAPI I_CryptInstallAsn1Module(void *x, DWORD y, DWORD z)
{
201
    FIXME("%p %08x %08x\n", x, y, z);
202 203 204
    return TRUE;
}

205 206 207 208 209 210
BOOL WINAPI I_CryptUninstallAsn1Module(void *x)
{
    FIXME("%p\n", x);
    return TRUE;
}

211 212 213 214
BOOL WINAPI CryptFormatObject(DWORD dwCertEncodingType, DWORD dwFormatType,
 DWORD dwFormatStrType, void *pFormatStruct, LPCSTR lpszStructType,
 const BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat, DWORD *pcbFormat)
{
215
    FIXME("(%08x, %d, %d, %p, %s, %p, %d, %p, %p): stub\n",
216 217 218 219 220
     dwCertEncodingType, dwFormatType, dwFormatStrType, pFormatStruct,
     debugstr_a(lpszStructType), pbEncoded, cbEncoded, pbFormat, pcbFormat);
    return FALSE;
}

221 222 223 224 225 226
BOOL WINAPI CryptQueryObject(DWORD dwObjectType, const void* pvObject,
    DWORD dwExpectedContentTypeFlags, DWORD dwExpectedFormatTypeFlags,
    DWORD dwFlags, DWORD* pdwMsgAndCertEncodingType, DWORD* pdwContentType,
    DWORD* pdwFormatType, HCERTSTORE* phCertStore, HCRYPTMSG* phMsg,
    const void** ppvContext)
{
227
    FIXME( "%08x %p %08x %08x %08x %p %p %p %p %p %p\n", dwObjectType,
228 229 230 231 232
           pvObject, dwExpectedContentTypeFlags, dwExpectedFormatTypeFlags,
           dwFlags, pdwMsgAndCertEncodingType, pdwContentType, pdwFormatType,
           phCertStore, phMsg, ppvContext);
    return FALSE;
}
233

234
BOOL WINAPI CryptVerifyMessageSignature(PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara,
235 236 237
          DWORD dwSignerIndex, const BYTE* pbSignedBlob, DWORD cbSignedBlob,
          BYTE* pbDecoded, DWORD* pcbDecoded, PCCERT_CONTEXT* ppSignerCert)
{
238
    FIXME("stub: %p, %d, %p, %d, %p, %p, %p\n",
239 240 241 242
        pVerifyPara, dwSignerIndex, pbSignedBlob, cbSignedBlob,
        pbDecoded, pcbDecoded, ppSignerCert);
    return FALSE;
}