server: Added access rights mapping to token objects.
[wine/multimedia.git] / dlls / crypt32 / protectdata.c
blob9f9e0d18026dd4c531c343cb98bdd65d20843fde
1 /*
2 * Copyright 2005 Kees Cook <kees@outflux.net>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * The Win32 CryptProtectData and CryptUnprotectData functions are meant
22 * to provide a mechanism for encrypting data on a machine where other users
23 * of the system can't be trusted. It is used in many examples as a way
24 * to store username and password information to the registry, but store
25 * it not in the clear.
27 * The encryption is symmetric, but the method is unknown. However, since
28 * it is keyed to the machine and the user, it is unlikely that the values
29 * would be portable. Since programs must first call CryptProtectData to
30 * get a cipher text, the underlying system doesn't have to exactly
31 * match the real Windows version. However, attempts have been made to
32 * at least try to look like the Windows version, including guesses at the
33 * purpose of various portions of the "opaque data blob" that is used.
37 #include <stdarg.h>
38 #include <stdio.h>
39 #include <string.h>
40 #include <stdlib.h>
42 #include "windef.h"
43 #include "winbase.h"
44 #include "wincrypt.h"
45 #include "winreg.h"
46 #include "wine/debug.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
50 #define CRYPT32_PROTECTDATA_PROV PROV_RSA_FULL
51 #define CRYPT32_PROTECTDATA_HASH_CALG CALG_MD5
52 #define CRYPT32_PROTECTDATA_KEY_CALG CALG_RC2
53 #define CRYPT32_PROTECTDATA_SALT_LEN 16
55 static const BYTE crypt32_protectdata_secret[] = {
56 'I','\'','m',' ','h','u','n','t','i','n','g',' ',
57 'w','a','b','b','i','t','s',0
61 * The data format returned by the real Windows CryptProtectData seems
62 * to be something like this:
64 DWORD count0; - how many "info0_*[16]" blocks follow (was always 1)
65 BYTE info0_0[16]; - unknown information
66 ...
67 DWORD count1; - how many "info1_*[16]" blocks follow (was always 1)
68 BYTE info1_0[16]; - unknown information
69 ...
70 DWORD null0; - NULL "end of records"?
71 DWORD str_len; - length of WCHAR string including term
72 WCHAR str[str_len]; - The "dataDescription" value
73 DWORD unknown0; - unknown value (seems large, but only WORD large)
74 DWORD unknown1; - unknown value (seems small, less than a BYTE)
75 DWORD data_len; - length of data (was 16 in samples)
76 BYTE data[data_len]; - unknown data (fingerprint?)
77 DWORD null1; - NULL ?
78 DWORD unknown2; - unknown value (seems large, but only WORD large)
79 DWORD unknown3; - unknown value (seems small, less than a BYTE)
80 DWORD salt_len; - length of salt(?) data
81 BYTE salt[salt_len]; - salt(?) for symmetric encryption
82 DWORD cipher_len; - length of cipher(?) data - was close to plain len
83 BYTE cipher[cipher_len]; - cipher text?
84 DWORD crc_len; - length of fingerprint(?) data - was 20 byte==160b SHA1
85 BYTE crc[crc_len]; - fingerprint of record?
87 * The data structures used in Wine are modelled after this guess.
90 struct protect_data_t
92 DWORD count0;
93 DATA_BLOB info0; /* using this to hold crypt_magic_str */
94 DWORD count1;
95 DATA_BLOB info1;
96 DWORD null0;
97 WCHAR * szDataDescr; /* serialized differently than the DATA_BLOBs */
98 DWORD unknown0; /* perhaps the HASH alg const should go here? */
99 DWORD unknown1;
100 DATA_BLOB data0;
101 DWORD null1;
102 DWORD unknown2; /* perhaps the KEY alg const should go here? */
103 DWORD unknown3;
104 DATA_BLOB salt;
105 DATA_BLOB cipher;
106 DATA_BLOB fingerprint;
109 /* this is used to check if an incoming structure was built by Wine */
110 static const char * crypt_magic_str = "Wine Crypt32 ok";
112 /* debugging tool to print strings of hex chars */
113 static const char *
114 hex_str(unsigned char *p, int n)
116 const char * ptr;
117 char report[80];
118 int r=-1;
119 report[0]='\0';
120 ptr = wine_dbg_sprintf("%s","");
121 while (--n >= 0)
123 if (r++ % 20 == 19)
125 ptr = wine_dbg_sprintf("%s%s",ptr,report);
126 report[0]='\0';
128 sprintf(report+strlen(report),"%s%02x", r ? "," : "", *p++);
130 return wine_dbg_sprintf("%s%s",ptr,report);
133 #define TRACE_DATA_BLOB(blob) do { \
134 TRACE("%s cbData: %u\n", #blob ,(unsigned int)((blob)->cbData)); \
135 TRACE("%s pbData @ %p:%s\n", #blob ,(blob)->pbData, \
136 hex_str((blob)->pbData, (blob)->cbData)); \
137 } while (0)
139 static
140 void serialize_dword(DWORD value,BYTE ** ptr)
142 /*TRACE("called\n");*/
144 memcpy(*ptr,&value,sizeof(DWORD));
145 *ptr+=sizeof(DWORD);
148 static
149 void serialize_string(BYTE * str,BYTE ** ptr,DWORD len, DWORD width,
150 BOOL prepend_len)
152 /*TRACE("called %ux%u\n",(unsigned int)len,(unsigned int)width);*/
154 if (prepend_len)
156 serialize_dword(len,ptr);
158 memcpy(*ptr,str,len*width);
159 *ptr+=len*width;
162 static
163 BOOL unserialize_dword(BYTE * ptr, DWORD *index, DWORD size, DWORD * value)
165 /*TRACE("called\n");*/
167 if (!ptr || !index || !value) return FALSE;
169 if (*index+sizeof(DWORD)>size)
171 return FALSE;
174 memcpy(value,&(ptr[*index]),sizeof(DWORD));
175 *index+=sizeof(DWORD);
177 return TRUE;
180 static
181 BOOL unserialize_string(BYTE * ptr, DWORD *index, DWORD size,
182 DWORD len, DWORD width, BOOL inline_len,
183 BYTE ** data, DWORD * stored)
185 /*TRACE("called\n");*/
187 if (!ptr || !data) return FALSE;
189 if (inline_len) {
190 if (!unserialize_dword(ptr,index,size,&len))
191 return FALSE;
194 if (*index+len*width>size)
196 return FALSE;
199 if (!(*data = CryptMemAlloc( len*width)))
201 return FALSE;
204 memcpy(*data,&(ptr[*index]),len*width);
205 if (stored)
207 *stored = len;
209 *index+=len*width;
211 return TRUE;
214 static
215 BOOL serialize(struct protect_data_t * pInfo, DATA_BLOB * pSerial)
217 BYTE * ptr;
218 DWORD dwStrLen;
219 DWORD dwStruct;
221 TRACE("called\n");
223 if (!pInfo || !pInfo->szDataDescr || !pSerial ||
224 !pInfo->info0.pbData || !pInfo->info1.pbData ||
225 !pInfo->data0.pbData || !pInfo->salt.pbData ||
226 !pInfo->cipher.pbData || !pInfo->fingerprint.pbData)
228 return FALSE;
231 if (pInfo->info0.cbData!=16)
233 ERR("protect_data_t info0 not 16 bytes long\n");
236 if (pInfo->info1.cbData!=16)
238 ERR("protect_data_t info1 not 16 bytes long\n");
241 dwStrLen=lstrlenW(pInfo->szDataDescr);
243 pSerial->cbData=0;
244 pSerial->cbData+=sizeof(DWORD)*8; /* 8 raw DWORDs */
245 pSerial->cbData+=sizeof(DWORD)*4; /* 4 BLOBs with size */
246 pSerial->cbData+=pInfo->info0.cbData;
247 pSerial->cbData+=pInfo->info1.cbData;
248 pSerial->cbData+=(dwStrLen+1)*sizeof(WCHAR) + 4; /* str, null, size */
249 pSerial->cbData+=pInfo->data0.cbData;
250 pSerial->cbData+=pInfo->salt.cbData;
251 pSerial->cbData+=pInfo->cipher.cbData;
252 pSerial->cbData+=pInfo->fingerprint.cbData;
254 /* save the actual structure size */
255 dwStruct = pSerial->cbData;
256 /* There may be a 256 byte minimum, but I can't prove it. */
257 /*if (pSerial->cbData<256) pSerial->cbData=256;*/
259 pSerial->pbData=LocalAlloc(LPTR,pSerial->cbData);
260 if (!pSerial->pbData) return FALSE;
262 ptr=pSerial->pbData;
264 /* count0 */
265 serialize_dword(pInfo->count0,&ptr);
266 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
268 /* info0 */
269 serialize_string(pInfo->info0.pbData,&ptr,
270 pInfo->info0.cbData,sizeof(BYTE),FALSE);
271 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
273 /* count1 */
274 serialize_dword(pInfo->count1,&ptr);
275 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
277 /* info1 */
278 serialize_string(pInfo->info1.pbData,&ptr,
279 pInfo->info1.cbData,sizeof(BYTE),FALSE);
280 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
282 /* null0 */
283 serialize_dword(pInfo->null0,&ptr);
284 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
286 /* szDataDescr */
287 serialize_string((BYTE*)pInfo->szDataDescr,&ptr,
288 (dwStrLen+1)*sizeof(WCHAR),sizeof(BYTE),TRUE);
289 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
291 /* unknown0 */
292 serialize_dword(pInfo->unknown0,&ptr);
293 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
294 /* unknown1 */
295 serialize_dword(pInfo->unknown1,&ptr);
296 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
298 /* data0 */
299 serialize_string(pInfo->data0.pbData,&ptr,
300 pInfo->data0.cbData,sizeof(BYTE),TRUE);
301 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
303 /* null1 */
304 serialize_dword(pInfo->null1,&ptr);
305 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
307 /* unknown2 */
308 serialize_dword(pInfo->unknown2,&ptr);
309 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
310 /* unknown3 */
311 serialize_dword(pInfo->unknown3,&ptr);
312 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
314 /* salt */
315 serialize_string(pInfo->salt.pbData,&ptr,
316 pInfo->salt.cbData,sizeof(BYTE),TRUE);
317 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
319 /* cipher */
320 serialize_string(pInfo->cipher.pbData,&ptr,
321 pInfo->cipher.cbData,sizeof(BYTE),TRUE);
322 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
324 /* fingerprint */
325 serialize_string(pInfo->fingerprint.pbData,&ptr,
326 pInfo->fingerprint.cbData,sizeof(BYTE),TRUE);
327 /*TRACE("used %u\n",ptr-pSerial->pbData);*/
329 if (ptr - pSerial->pbData != dwStruct)
331 ERR("struct size changed!? %u != expected %u\n",
332 ptr - pSerial->pbData, (unsigned int)dwStruct);
333 LocalFree(pSerial->pbData);
334 pSerial->pbData=NULL;
335 pSerial->cbData=0;
336 return FALSE;
339 return TRUE;
342 static
343 BOOL unserialize(DATA_BLOB * pSerial, struct protect_data_t * pInfo)
345 BYTE * ptr;
346 DWORD index;
347 DWORD size;
348 BOOL status=TRUE;
350 TRACE("called\n");
352 if (!pInfo || !pSerial || !pSerial->pbData)
353 return FALSE;
355 index=0;
356 ptr=pSerial->pbData;
357 size=pSerial->cbData;
359 /* count0 */
360 if (!unserialize_dword(ptr,&index,size,&pInfo->count0))
362 ERR("reading count0 failed!\n");
363 return FALSE;
366 /* info0 */
367 if (!unserialize_string(ptr,&index,size,16,sizeof(BYTE),FALSE,
368 &pInfo->info0.pbData, &pInfo->info0.cbData))
370 ERR("reading info0 failed!\n");
371 return FALSE;
374 /* count1 */
375 if (!unserialize_dword(ptr,&index,size,&pInfo->count1))
377 ERR("reading count1 failed!\n");
378 return FALSE;
381 /* info1 */
382 if (!unserialize_string(ptr,&index,size,16,sizeof(BYTE),FALSE,
383 &pInfo->info1.pbData, &pInfo->info1.cbData))
385 ERR("reading info1 failed!\n");
386 return FALSE;
389 /* null0 */
390 if (!unserialize_dword(ptr,&index,size,&pInfo->null0))
392 ERR("reading null0 failed!\n");
393 return FALSE;
396 /* szDataDescr */
397 if (!unserialize_string(ptr,&index,size,0,sizeof(BYTE),TRUE,
398 (BYTE**)&pInfo->szDataDescr, NULL))
400 ERR("reading szDataDescr failed!\n");
401 return FALSE;
404 /* unknown0 */
405 if (!unserialize_dword(ptr,&index,size,&pInfo->unknown0))
407 ERR("reading unknown0 failed!\n");
408 return FALSE;
411 /* unknown1 */
412 if (!unserialize_dword(ptr,&index,size,&pInfo->unknown1))
414 ERR("reading unknown1 failed!\n");
415 return FALSE;
418 /* data0 */
419 if (!unserialize_string(ptr,&index,size,0,sizeof(BYTE),TRUE,
420 &pInfo->data0.pbData, &pInfo->data0.cbData))
422 ERR("reading data0 failed!\n");
423 return FALSE;
426 /* null1 */
427 if (!unserialize_dword(ptr,&index,size,&pInfo->null1))
429 ERR("reading null1 failed!\n");
430 return FALSE;
433 /* unknown2 */
434 if (!unserialize_dword(ptr,&index,size,&pInfo->unknown2))
436 ERR("reading unknown2 failed!\n");
437 return FALSE;
440 /* unknown3 */
441 if (!unserialize_dword(ptr,&index,size,&pInfo->unknown3))
443 ERR("reading unknown3 failed!\n");
444 return FALSE;
447 /* salt */
448 if (!unserialize_string(ptr,&index,size,0,sizeof(BYTE),TRUE,
449 &pInfo->salt.pbData, &pInfo->salt.cbData))
451 ERR("reading salt failed!\n");
452 return FALSE;
455 /* cipher */
456 if (!unserialize_string(ptr,&index,size,0,sizeof(BYTE),TRUE,
457 &pInfo->cipher.pbData, &pInfo->cipher.cbData))
459 ERR("reading cipher failed!\n");
460 return FALSE;
463 /* fingerprint */
464 if (!unserialize_string(ptr,&index,size,0,sizeof(BYTE),TRUE,
465 &pInfo->fingerprint.pbData, &pInfo->fingerprint.cbData))
467 ERR("reading fingerprint failed!\n");
468 return FALSE;
471 /* allow structure size to be too big (since some applications
472 * will pad this up to 256 bytes, it seems) */
473 if (index>size)
475 /* this is an impossible-to-reach test, but if the padding
476 * issue is ever understood, this may become more useful */
477 ERR("loaded corrupt structure! (used %u expected %u)\n",
478 (unsigned int)index, (unsigned int)size);
479 status=FALSE;
482 return status;
485 /* perform sanity checks */
486 static
487 BOOL valid_protect_data(struct protect_data_t * pInfo)
489 BOOL status=TRUE;
491 TRACE("called\n");
493 if (pInfo->count0 != 0x0001)
495 ERR("count0 != 0x0001 !\n");
496 status=FALSE;
498 if (pInfo->count1 != 0x0001)
500 ERR("count0 != 0x0001 !\n");
501 status=FALSE;
503 if (pInfo->null0 != 0x0000)
505 ERR("null0 != 0x0000 !\n");
506 status=FALSE;
508 if (pInfo->null1 != 0x0000)
510 ERR("null1 != 0x0000 !\n");
511 status=FALSE;
513 /* since we have no idea what info0 is used for, and it seems
514 * rather constant, we can test for a Wine-specific magic string
515 * there to be reasonably sure we're using data created by the Wine
516 * implementation of CryptProtectData.
518 if (pInfo->info0.cbData!=strlen(crypt_magic_str)+1 ||
519 strcmp( (LPCSTR)pInfo->info0.pbData,crypt_magic_str) != 0)
521 ERR("info0 magic value not matched !\n");
522 status=FALSE;
525 if (!status)
527 ERR("unrecognized CryptProtectData block\n");
530 return status;
533 static
534 void free_protect_data(struct protect_data_t * pInfo)
536 TRACE("called\n");
538 if (!pInfo) return;
540 if (pInfo->info0.pbData)
541 CryptMemFree(pInfo->info0.pbData);
542 if (pInfo->info1.pbData)
543 CryptMemFree(pInfo->info1.pbData);
544 if (pInfo->szDataDescr)
545 CryptMemFree(pInfo->szDataDescr);
546 if (pInfo->data0.pbData)
547 CryptMemFree(pInfo->data0.pbData);
548 if (pInfo->salt.pbData)
549 CryptMemFree(pInfo->salt.pbData);
550 if (pInfo->cipher.pbData)
551 CryptMemFree(pInfo->cipher.pbData);
552 if (pInfo->fingerprint.pbData)
553 CryptMemFree(pInfo->fingerprint.pbData);
556 /* copies a string into a data blob */
557 static
558 BYTE * convert_str_to_blob(char* str, DATA_BLOB* blob)
560 if (!str || !blob) return NULL;
562 blob->cbData=strlen(str)+1;
563 if (!(blob->pbData=CryptMemAlloc(blob->cbData)))
565 blob->cbData=0;
567 else {
568 strcpy((LPSTR)blob->pbData, str);
571 return blob->pbData;
575 * Populates everything except "cipher" and "fingerprint".
577 static
578 BOOL fill_protect_data(struct protect_data_t * pInfo, LPCWSTR szDataDescr,
579 HCRYPTPROV hProv)
581 DWORD dwStrLen;
583 TRACE("called\n");
585 if (!pInfo) return FALSE;
587 dwStrLen=lstrlenW(szDataDescr);
589 memset(pInfo,0,sizeof(*pInfo));
591 pInfo->count0=0x0001;
593 convert_str_to_blob((char*)crypt_magic_str,&pInfo->info0);
595 pInfo->count1=0x0001;
597 convert_str_to_blob((char*)crypt_magic_str,&pInfo->info1);
599 pInfo->null0=0x0000;
601 if ((pInfo->szDataDescr=CryptMemAlloc((dwStrLen+1)*sizeof(WCHAR))))
603 memcpy(pInfo->szDataDescr,szDataDescr,(dwStrLen+1)*sizeof(WCHAR));
606 pInfo->unknown0=0x0000;
607 pInfo->unknown1=0x0000;
609 convert_str_to_blob((char*)crypt_magic_str,&pInfo->data0);
611 pInfo->null1=0x0000;
612 pInfo->unknown2=0x0000;
613 pInfo->unknown3=0x0000;
615 /* allocate memory to hold a salt */
616 pInfo->salt.cbData=CRYPT32_PROTECTDATA_SALT_LEN;
617 if ((pInfo->salt.pbData=CryptMemAlloc(pInfo->salt.cbData)))
619 /* generate random salt */
620 if (!CryptGenRandom(hProv, pInfo->salt.cbData, pInfo->salt.pbData))
622 ERR("CryptGenRandom\n");
623 free_protect_data(pInfo);
624 return FALSE;
628 /* debug: show our salt */
629 TRACE_DATA_BLOB(&pInfo->salt);
631 pInfo->cipher.cbData=0;
632 pInfo->cipher.pbData=NULL;
634 pInfo->fingerprint.cbData=0;
635 pInfo->fingerprint.pbData=NULL;
637 /* check all the allocations at once */
638 if (!pInfo->info0.pbData ||
639 !pInfo->info1.pbData ||
640 !pInfo->szDataDescr ||
641 !pInfo->data0.pbData ||
642 !pInfo->salt.pbData
645 ERR("could not allocate protect_data structures\n");
646 free_protect_data(pInfo);
647 return FALSE;
650 return TRUE;
653 static
654 BOOL convert_hash_to_blob(HCRYPTHASH hHash, DATA_BLOB * blob)
656 DWORD dwSize;
658 TRACE("called\n");
660 if (!blob) return FALSE;
662 dwSize=sizeof(DWORD);
663 if (!CryptGetHashParam(hHash, HP_HASHSIZE, (BYTE*)&blob->cbData,
664 &dwSize, 0))
666 ERR("failed to get hash size\n");
667 return FALSE;
670 if (!(blob->pbData=CryptMemAlloc(blob->cbData)))
672 ERR("failed to allocate blob memory\n");
673 return FALSE;
676 dwSize=blob->cbData;
677 if (!CryptGetHashParam(hHash, HP_HASHVAL, blob->pbData, &dwSize, 0))
679 ERR("failed to get hash value\n");
680 CryptMemFree(blob->pbData);
681 blob->pbData=NULL;
682 blob->cbData=0;
683 return FALSE;
686 return TRUE;
689 /* test that a given hash matches an exported-to-blob hash value */
690 static
691 BOOL hash_matches_blob(HCRYPTHASH hHash, DATA_BLOB * two)
693 BOOL rc = FALSE;
694 DATA_BLOB one;
696 if (!two || !two->pbData) return FALSE;
698 if (!convert_hash_to_blob(hHash,&one)) {
699 return FALSE;
702 if ( one.cbData == two->cbData &&
703 memcmp( one.pbData, two->pbData, one.cbData ) == 0 )
705 rc = TRUE;
708 CryptMemFree(one.pbData);
709 return rc;
712 /* create an encryption key from a given salt and optional entropy */
713 static
714 BOOL load_encryption_key(HCRYPTPROV hProv, DATA_BLOB * salt,
715 DATA_BLOB * pOptionalEntropy, HCRYPTKEY * phKey)
717 BOOL rc = TRUE;
718 HCRYPTHASH hSaltHash;
719 char * szUsername = NULL;
720 DWORD dwUsernameLen;
721 DWORD dwError;
723 /* create hash for salt */
724 if (!salt || !phKey ||
725 !CryptCreateHash(hProv,CRYPT32_PROTECTDATA_HASH_CALG,0,0,&hSaltHash))
727 ERR("CryptCreateHash\n");
728 return FALSE;
731 /* This should be the "logon credentials" instead of username */
732 dwError=GetLastError();
733 dwUsernameLen = 0;
734 if (!GetUserNameA(NULL,&dwUsernameLen) &&
735 GetLastError()==ERROR_MORE_DATA && dwUsernameLen &&
736 (szUsername = CryptMemAlloc(dwUsernameLen)))
738 szUsername[0]='\0';
739 GetUserNameA( szUsername, &dwUsernameLen );
741 SetLastError(dwError);
743 /* salt the hash with:
744 * - the user id
745 * - an "internal secret"
746 * - randomness (from the salt)
747 * - user-supplied entropy
749 if ((szUsername && !CryptHashData(hSaltHash,(LPBYTE)szUsername,dwUsernameLen,0)) ||
750 !CryptHashData(hSaltHash,crypt32_protectdata_secret,
751 sizeof(crypt32_protectdata_secret)-1,0) ||
752 !CryptHashData(hSaltHash,salt->pbData,salt->cbData,0) ||
753 (pOptionalEntropy && !CryptHashData(hSaltHash,
754 pOptionalEntropy->pbData,
755 pOptionalEntropy->cbData,0)))
757 ERR("CryptHashData\n");
758 rc = FALSE;
761 /* produce a symmetric key */
762 if (rc && !CryptDeriveKey(hProv,CRYPT32_PROTECTDATA_KEY_CALG,
763 hSaltHash,CRYPT_EXPORTABLE,phKey))
765 ERR("CryptDeriveKey\n");
766 rc = FALSE;
769 /* clean up */
770 CryptDestroyHash(hSaltHash);
771 if (szUsername) CryptMemFree(szUsername);
773 return rc;
776 /* debugging tool to print the structures of a ProtectData call */
777 static void
778 report(DATA_BLOB* pDataIn, DATA_BLOB* pOptionalEntropy,
779 CRYPTPROTECT_PROMPTSTRUCT* pPromptStruct, DWORD dwFlags)
781 TRACE("pPromptStruct: %p\n", pPromptStruct);
782 if (pPromptStruct)
784 TRACE(" cbSize: 0x%x\n",(unsigned int)pPromptStruct->cbSize);
785 TRACE(" dwPromptFlags: 0x%x\n",(unsigned int)pPromptStruct->dwPromptFlags);
786 TRACE(" hwndApp: %p\n", pPromptStruct->hwndApp);
787 TRACE(" szPrompt: %p %s\n",
788 pPromptStruct->szPrompt,
789 pPromptStruct->szPrompt ? debugstr_w(pPromptStruct->szPrompt)
790 : "");
792 TRACE("dwFlags: 0x%04x\n",(unsigned int)dwFlags);
793 TRACE_DATA_BLOB(pDataIn);
794 if (pOptionalEntropy)
796 TRACE_DATA_BLOB(pOptionalEntropy);
797 TRACE(" %s\n",debugstr_an((LPCSTR)pOptionalEntropy->pbData,pOptionalEntropy->cbData));
803 /***************************************************************************
804 * CryptProtectData [CRYPT32.@]
806 * Generate Cipher data from given Plain and Entropy data.
808 * PARAMS
809 * pDataIn [I] Plain data to be enciphered
810 * szDataDescr [I] Optional Unicode string describing the Plain data
811 * pOptionalEntropy [I] Optional entropy data to adjust cipher, can be NULL
812 * pvReserved [I] Reserved, must be NULL
813 * pPromptStruct [I] Structure describing if/how to prompt during ciphering
814 * dwFlags [I] Flags describing options to the ciphering
815 * pDataOut [O] Resulting Cipher data, for calls to CryptUnprotectData
817 * RETURNS
818 * TRUE If a Cipher was generated.
819 * FALSE If something failed and no Cipher is available.
821 * FIXME
822 * The true Windows encryption and keying mechanisms are unknown.
824 * dwFlags and pPromptStruct are currently ignored.
826 * NOTES
827 * Memory allocated in pDataOut must be freed with LocalFree.
830 BOOL WINAPI CryptProtectData(DATA_BLOB* pDataIn,
831 LPCWSTR szDataDescr,
832 DATA_BLOB* pOptionalEntropy,
833 PVOID pvReserved,
834 CRYPTPROTECT_PROMPTSTRUCT* pPromptStruct,
835 DWORD dwFlags,
836 DATA_BLOB* pDataOut)
838 BOOL rc = FALSE;
840 HCRYPTPROV hProv;
841 struct protect_data_t protect_data;
842 HCRYPTHASH hHash;
843 HCRYPTKEY hKey;
844 DWORD dwLength;
846 TRACE("called\n");
848 SetLastError(ERROR_SUCCESS);
850 if (!pDataIn || !pDataOut)
852 SetLastError(ERROR_INVALID_PARAMETER);
853 goto finished;
856 /* debug: show our arguments */
857 report(pDataIn,pOptionalEntropy,pPromptStruct,dwFlags);
858 TRACE("\tszDataDescr: %p %s\n", szDataDescr,
859 szDataDescr ? debugstr_w(szDataDescr) : "");
861 /* Windows appears to create an empty szDataDescr instead of maintaining
862 * a NULL */
863 if (!szDataDescr)
864 szDataDescr=(WCHAR[]){'\0'};
866 /* get crypt context */
867 if (!CryptAcquireContextW(&hProv,NULL,NULL,CRYPT32_PROTECTDATA_PROV,CRYPT_VERIFYCONTEXT))
869 ERR("CryptAcquireContextW failed\n");
870 goto finished;
873 /* populate our structure */
874 if (!fill_protect_data(&protect_data,szDataDescr,hProv))
876 ERR("fill_protect_data\n");
877 goto free_context;
880 /* load key */
881 if (!load_encryption_key(hProv,&protect_data.salt,pOptionalEntropy,&hKey))
883 goto free_protect_data;
886 /* create a hash for the encryption validation */
887 if (!CryptCreateHash(hProv,CRYPT32_PROTECTDATA_HASH_CALG,0,0,&hHash))
889 ERR("CryptCreateHash\n");
890 goto free_key;
893 /* calculate storage required */
894 dwLength=pDataIn->cbData;
895 if (CryptEncrypt(hKey, 0, TRUE, 0, pDataIn->pbData, &dwLength, 0) ||
896 GetLastError()!=ERROR_MORE_DATA)
898 ERR("CryptEncrypt\n");
899 goto free_hash;
901 TRACE("required encrypted storage: %u\n",(unsigned int)dwLength);
903 /* copy plain text into cipher area for CryptEncrypt call */
904 protect_data.cipher.cbData=dwLength;
905 if (!(protect_data.cipher.pbData=CryptMemAlloc(
906 protect_data.cipher.cbData)))
908 ERR("CryptMemAlloc\n");
909 goto free_hash;
911 memcpy(protect_data.cipher.pbData,pDataIn->pbData,pDataIn->cbData);
913 /* encrypt! */
914 dwLength=pDataIn->cbData;
915 if (!CryptEncrypt(hKey, hHash, TRUE, 0, protect_data.cipher.pbData,
916 &dwLength, protect_data.cipher.cbData))
918 ERR("CryptEncrypt %u\n",(unsigned int)GetLastError());
919 goto free_hash;
921 protect_data.cipher.cbData=dwLength;
923 /* debug: show the cipher */
924 TRACE_DATA_BLOB(&protect_data.cipher);
926 /* attach our fingerprint */
927 if (!convert_hash_to_blob(hHash, &protect_data.fingerprint))
929 ERR("convert_hash_to_blob\n");
930 goto free_hash;
933 /* serialize into an opaque blob */
934 if (!serialize(&protect_data, pDataOut))
936 ERR("serialize\n");
937 goto free_hash;
940 /* success! */
941 rc=TRUE;
943 free_hash:
944 CryptDestroyHash(hHash);
945 free_key:
946 CryptDestroyKey(hKey);
947 free_protect_data:
948 free_protect_data(&protect_data);
949 free_context:
950 CryptReleaseContext(hProv,0);
951 finished:
952 /* If some error occurred, and no error code was set, force one. */
953 if (!rc && GetLastError()==ERROR_SUCCESS)
955 SetLastError(ERROR_INVALID_DATA);
958 if (rc)
960 SetLastError(ERROR_SUCCESS);
962 TRACE_DATA_BLOB(pDataOut);
965 TRACE("returning %s\n", rc ? "ok" : "FAIL");
967 return rc;
971 /***************************************************************************
972 * CryptUnprotectData [CRYPT32.@]
974 * Generate Plain data and Description from given Cipher and Entropy data.
976 * PARAMS
977 * pDataIn [I] Cipher data to be decoded
978 * ppszDataDescr [O] Optional Unicode string describing the Plain data
979 * pOptionalEntropy [I] Optional entropy data to adjust cipher, can be NULL
980 * pvReserved [I] Reserved, must be NULL
981 * pPromptStruct [I] Structure describing if/how to prompt during decoding
982 * dwFlags [I] Flags describing options to the decoding
983 * pDataOut [O] Resulting Plain data, from calls to CryptProtectData
985 * RETURNS
986 * TRUE If a Plain was generated.
987 * FALSE If something failed and no Plain is available.
989 * FIXME
990 * The true Windows encryption and keying mechanisms are unknown.
992 * dwFlags and pPromptStruct are currently ignored.
994 * NOTES
995 * Memory allocated in pDataOut and non-NULL ppszDataDescr must be freed
996 * with LocalFree.
999 BOOL WINAPI CryptUnprotectData(DATA_BLOB* pDataIn,
1000 LPWSTR * ppszDataDescr,
1001 DATA_BLOB* pOptionalEntropy,
1002 PVOID pvReserved,
1003 CRYPTPROTECT_PROMPTSTRUCT* pPromptStruct,
1004 DWORD dwFlags,
1005 DATA_BLOB* pDataOut)
1007 BOOL rc = FALSE;
1009 HCRYPTPROV hProv;
1010 struct protect_data_t protect_data;
1011 HCRYPTHASH hHash;
1012 HCRYPTKEY hKey;
1013 DWORD dwLength;
1015 const char * announce_bad_opaque_data = "CryptUnprotectData received a DATA_BLOB that seems to have NOT been generated by Wine. Please enable tracing ('export WINEDEBUG=crypt') to see details.";
1017 TRACE("called\n");
1019 SetLastError(ERROR_SUCCESS);
1021 if (!pDataIn || !pDataOut)
1023 SetLastError(ERROR_INVALID_PARAMETER);
1024 goto finished;
1027 /* debug: show our arguments */
1028 report(pDataIn,pOptionalEntropy,pPromptStruct,dwFlags);
1029 TRACE("\tppszDataDescr: %p\n", ppszDataDescr);
1031 /* take apart the opaque blob */
1032 if (!unserialize(pDataIn, &protect_data))
1034 SetLastError(ERROR_INVALID_DATA);
1035 FIXME("%s\n",announce_bad_opaque_data);
1036 goto finished;
1039 /* perform basic validation on the resulting structure */
1040 if (!valid_protect_data(&protect_data))
1042 SetLastError(ERROR_INVALID_DATA);
1043 FIXME("%s\n",announce_bad_opaque_data);
1044 goto free_protect_data;
1047 /* get a crypt context */
1048 if (!CryptAcquireContextW(&hProv,NULL,NULL,CRYPT32_PROTECTDATA_PROV,CRYPT_VERIFYCONTEXT))
1050 ERR("CryptAcquireContextW failed\n");
1051 goto free_protect_data;
1054 /* load key */
1055 if (!load_encryption_key(hProv,&protect_data.salt,pOptionalEntropy,&hKey))
1057 goto free_context;
1060 /* create a hash for the decryption validation */
1061 if (!CryptCreateHash(hProv,CRYPT32_PROTECTDATA_HASH_CALG,0,0,&hHash))
1063 ERR("CryptCreateHash\n");
1064 goto free_key;
1067 /* prepare for plaintext */
1068 pDataOut->cbData=protect_data.cipher.cbData;
1069 if (!(pDataOut->pbData=LocalAlloc( LPTR, pDataOut->cbData)))
1071 ERR("CryptMemAlloc\n");
1072 goto free_hash;
1074 memcpy(pDataOut->pbData,protect_data.cipher.pbData,protect_data.cipher.cbData);
1076 /* decrypt! */
1077 if (!CryptDecrypt(hKey, hHash, TRUE, 0, pDataOut->pbData,
1078 &pDataOut->cbData) ||
1079 /* check the hash fingerprint */
1080 pDataOut->cbData > protect_data.cipher.cbData ||
1081 !hash_matches_blob(hHash, &protect_data.fingerprint))
1083 SetLastError(ERROR_INVALID_DATA);
1085 LocalFree( pDataOut->pbData );
1086 pDataOut->pbData = NULL;
1087 pDataOut->cbData = 0;
1089 goto free_hash;
1092 /* Copy out the description */
1093 dwLength = (lstrlenW(protect_data.szDataDescr)+1) * sizeof(WCHAR);
1094 if (ppszDataDescr)
1096 if (!(*ppszDataDescr = LocalAlloc(LPTR,dwLength)))
1098 ERR("LocalAlloc (ppszDataDescr)\n");
1099 goto free_hash;
1101 else {
1102 memcpy(*ppszDataDescr,protect_data.szDataDescr,dwLength);
1106 /* success! */
1107 rc = TRUE;
1109 free_hash:
1110 CryptDestroyHash(hHash);
1111 free_key:
1112 CryptDestroyKey(hKey);
1113 free_context:
1114 CryptReleaseContext(hProv,0);
1115 free_protect_data:
1116 free_protect_data(&protect_data);
1117 finished:
1118 /* If some error occurred, and no error code was set, force one. */
1119 if (!rc && GetLastError()==ERROR_SUCCESS)
1121 SetLastError(ERROR_INVALID_DATA);
1124 if (rc) {
1125 SetLastError(ERROR_SUCCESS);
1127 if (ppszDataDescr)
1129 TRACE("szDataDescr: %s\n",debugstr_w(*ppszDataDescr));
1131 TRACE_DATA_BLOB(pDataOut);
1134 TRACE("returning %s\n", rc ? "ok" : "FAIL");
1136 return rc;