main.c 6.15 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
#include "winreg.h"
28
#include "winuser.h"
29
#include "i_cryptasn1tls.h"
30
#include "crypt32_private.h"
31 32 33
#include "wine/debug.h"

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

35
static HCRYPTPROV hDefProv;
36
HINSTANCE hInstance;
37

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

HCRYPTPROV CRYPT_GetDefaultProvider(void)
{
    if (!hDefProv)
63 64 65
    {
        HCRYPTPROV prov;

66 67
        if (!CryptAcquireContextW(&prov, NULL, MS_ENH_RSA_AES_PROV_W,
         PROV_RSA_AES, CRYPT_VERIFYCONTEXT))
68
            return hDefProv;
69 70 71 72 73
        InterlockedCompareExchangePointer((PVOID *)&hDefProv, (PVOID)prov,
         NULL);
        if (hDefProv != prov)
            CryptReleaseContext(prov, 0);
    }
74 75 76
    return hDefProv;
}

77 78 79 80 81 82 83 84 85
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
86
{
87 88 89
    FIXME("(%p, %p): stub!\n", unknown, out);
    *out = (void *)0xbaadf00d;
    return TRUE;
Mike McCormack's avatar
Mike McCormack committed
90 91
}

92 93 94 95 96 97
BOOL WINAPI I_CryptFindLruEntry(DWORD unk0, DWORD unk1)
{
    FIXME("(%08x, %08x): stub!\n", unk0, unk1);
    return FALSE;
}

98
BOOL WINAPI I_CryptFindLruEntryData(DWORD unk0, DWORD unk1, DWORD unk2)
Mike McCormack's avatar
Mike McCormack committed
99
{
100
    FIXME("(%08x, %08x, %08x): stub!\n", unk0, unk1, unk2);
Mike McCormack's avatar
Mike McCormack committed
101 102 103
    return FALSE;
}

104 105 106 107 108 109
BOOL WINAPI I_CryptCreateLruEntry(HLRUCACHE h, DWORD unk0, DWORD unk1)
{
    FIXME("(%p, %08x, %08x): stub!\n", h, unk0, unk1);
    return FALSE;
}

110
DWORD WINAPI I_CryptFlushLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1)
Mike McCormack's avatar
Mike McCormack committed
111
{
112
    FIXME("(%p, %08x, %08x): stub!\n", h, unk0, unk1);
113
    return 0;
Mike McCormack's avatar
Mike McCormack committed
114 115
}

116
HLRUCACHE WINAPI I_CryptFreeLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1)
Mike McCormack's avatar
Mike McCormack committed
117
{
118
    FIXME("(%p, %08x, %08x): stub!\n", h, unk0, unk1);
119
    return h;
Mike McCormack's avatar
Mike McCormack committed
120
}
Mike McCormack's avatar
Mike McCormack committed
121

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
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)
{
163 164
    BOOL ret;

165
    TRACE("(%d, %d)\n", dwTlsIndex, unknown);
166 167 168 169

    ret = TlsFree(dwTlsIndex);
    if (!ret) SetLastError( E_INVALIDARG );
    return ret;
170
}
171 172 173

BOOL WINAPI I_CryptGetOssGlobal(DWORD x)
{
174
    FIXME("%08x\n", x);
175 176 177
    return FALSE;
}

178
HCRYPTPROV WINAPI I_CryptGetDefaultCryptProv(DWORD reserved)
179
{
180 181
    HCRYPTPROV ret;

182
    TRACE("(%08x)\n", reserved);
183 184 185 186

    if (reserved)
    {
        SetLastError(E_INVALIDARG);
187
        return 0;
188 189 190 191
    }
    ret = CRYPT_GetDefaultProvider();
    CryptContextAddRef(ret, NULL, 0);
    return ret;
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
}

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);

209
    *value = 0;
210 211 212 213 214 215 216 217 218 219 220 221
    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;
}

222
DWORD WINAPI I_CryptInstallOssGlobal(DWORD x, DWORD y, DWORD z)
223
{
224 225 226 227
    static int ret = 8;
    ret++;
    FIXME("%08x %08x %08x, return value %d\n", x, y, z,ret);
    return ret;
228
}
229

230
BOOL WINAPI I_CryptInstallAsn1Module(ASN1module_t x, DWORD y, void* z)
231
{
232
    FIXME("(%p %08x %p): stub\n", x, y, z);
233 234 235
    return TRUE;
}

236
BOOL WINAPI I_CryptUninstallAsn1Module(HCRYPTASN1MODULE x)
237
{
238
    FIXME("(%08x): stub\n", x);
239 240 241
    return TRUE;
}

242
ASN1decoding_t WINAPI I_CryptGetAsn1Decoder(HCRYPTASN1MODULE x)
243
{
244 245 246 247 248 249 250
    FIXME("(%08x): stub\n", x);
    return NULL;
}

ASN1encoding_t WINAPI I_CryptGetAsn1Encoder(HCRYPTASN1MODULE x)
{
    FIXME("(%08x): stub\n", x);
251 252
    return NULL;
}