crypt32: Implement CryptFormatObject for szOID_ENHANCED_KEY_USAGE.
[wine/multimedia.git] / dlls / crypt32 / object.c
blobcdbe8db941200e17950f8b98e9518e8971f44303
1 /*
2 * crypt32 Crypt*Object functions
4 * Copyright 2007 Juan Lang
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include <stdarg.h>
21 #define NONAMELESSUNION
22 #include "windef.h"
23 #include "winbase.h"
24 #include "wincrypt.h"
25 #include "mssip.h"
26 #include "winuser.h"
27 #include "crypt32_private.h"
28 #include "cryptres.h"
29 #include "wine/unicode.h"
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
34 static BOOL CRYPT_ReadBlobFromFile(LPCWSTR fileName, PCERT_BLOB blob)
36 BOOL ret = FALSE;
37 HANDLE file;
39 TRACE("%s\n", debugstr_w(fileName));
41 file = CreateFileW(fileName, GENERIC_READ, FILE_SHARE_READ, NULL,
42 OPEN_EXISTING, 0, NULL);
43 if (file != INVALID_HANDLE_VALUE)
45 ret = TRUE;
46 blob->cbData = GetFileSize(file, NULL);
47 if (blob->cbData)
49 blob->pbData = CryptMemAlloc(blob->cbData);
50 if (blob->pbData)
52 DWORD read;
54 ret = ReadFile(file, blob->pbData, blob->cbData, &read, NULL);
57 CloseHandle(file);
59 TRACE("returning %d\n", ret);
60 return ret;
63 static BOOL CRYPT_QueryContextObject(DWORD dwObjectType, const void *pvObject,
64 DWORD dwExpectedContentTypeFlags, DWORD *pdwMsgAndCertEncodingType,
65 DWORD *pdwContentType, HCERTSTORE *phCertStore, const void **ppvContext)
67 CERT_BLOB fileBlob;
68 const CERT_BLOB *blob;
69 HCERTSTORE store;
70 DWORD contentType;
71 BOOL ret;
73 switch (dwObjectType)
75 case CERT_QUERY_OBJECT_FILE:
76 /* Cert, CRL, and CTL contexts can't be "embedded" in a file, so
77 * just read the file directly
79 ret = CRYPT_ReadBlobFromFile((LPCWSTR)pvObject, &fileBlob);
80 blob = &fileBlob;
81 break;
82 case CERT_QUERY_OBJECT_BLOB:
83 blob = (const CERT_BLOB *)pvObject;
84 ret = TRUE;
85 break;
86 default:
87 SetLastError(E_INVALIDARG); /* FIXME: is this the correct error? */
88 ret = FALSE;
90 if (!ret)
91 return FALSE;
93 store = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, 0,
94 CERT_STORE_CREATE_NEW_FLAG, NULL);
95 ret = FALSE;
96 if (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_CERT)
98 ret = pCertInterface->addEncodedToStore(store, X509_ASN_ENCODING,
99 blob->pbData, blob->cbData, CERT_STORE_ADD_ALWAYS, ppvContext);
100 if (ret)
101 contentType = CERT_QUERY_CONTENT_CERT;
103 if (!ret && (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_CRL))
105 ret = pCRLInterface->addEncodedToStore(store, X509_ASN_ENCODING,
106 blob->pbData, blob->cbData, CERT_STORE_ADD_ALWAYS, ppvContext);
107 if (ret)
108 contentType = CERT_QUERY_CONTENT_CRL;
110 if (!ret && (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_CTL))
112 ret = pCTLInterface->addEncodedToStore(store, X509_ASN_ENCODING,
113 blob->pbData, blob->cbData, CERT_STORE_ADD_ALWAYS, ppvContext);
114 if (ret)
115 contentType = CERT_QUERY_CONTENT_CTL;
117 if (ret)
119 if (pdwMsgAndCertEncodingType)
120 *pdwMsgAndCertEncodingType = X509_ASN_ENCODING;
121 if (pdwContentType)
122 *pdwContentType = contentType;
123 if (phCertStore)
124 *phCertStore = CertDuplicateStore(store);
126 CertCloseStore(store, 0);
127 if (blob == &fileBlob)
128 CryptMemFree(blob->pbData);
129 TRACE("returning %d\n", ret);
130 return ret;
133 static BOOL CRYPT_QuerySerializedContextObject(DWORD dwObjectType,
134 const void *pvObject, DWORD dwExpectedContentTypeFlags,
135 DWORD *pdwMsgAndCertEncodingType, DWORD *pdwContentType,
136 HCERTSTORE *phCertStore, const void **ppvContext)
138 CERT_BLOB fileBlob;
139 const CERT_BLOB *blob;
140 const WINE_CONTEXT_INTERFACE *contextInterface = NULL;
141 const void *context;
142 DWORD contextType;
143 BOOL ret;
145 switch (dwObjectType)
147 case CERT_QUERY_OBJECT_FILE:
148 /* Cert, CRL, and CTL contexts can't be "embedded" in a file, so
149 * just read the file directly
151 ret = CRYPT_ReadBlobFromFile((LPCWSTR)pvObject, &fileBlob);
152 blob = &fileBlob;
153 break;
154 case CERT_QUERY_OBJECT_BLOB:
155 blob = (const CERT_BLOB *)pvObject;
156 ret = TRUE;
157 break;
158 default:
159 SetLastError(E_INVALIDARG); /* FIXME: is this the correct error? */
160 ret = FALSE;
162 if (!ret)
163 return FALSE;
165 context = CRYPT_ReadSerializedElement(blob->pbData, blob->cbData,
166 CERT_STORE_ALL_CONTEXT_FLAG, &contextType);
167 if (context)
169 DWORD contentType, certStoreOffset;
171 ret = TRUE;
172 switch (contextType)
174 case CERT_STORE_CERTIFICATE_CONTEXT:
175 contextInterface = pCertInterface;
176 contentType = CERT_QUERY_CONTENT_SERIALIZED_CERT;
177 certStoreOffset = offsetof(CERT_CONTEXT, hCertStore);
178 if (!(dwExpectedContentTypeFlags &
179 CERT_QUERY_CONTENT_FLAG_SERIALIZED_CERT))
181 SetLastError(ERROR_INVALID_DATA);
182 ret = FALSE;
183 goto end;
185 break;
186 case CERT_STORE_CRL_CONTEXT:
187 contextInterface = pCRLInterface;
188 contentType = CERT_QUERY_CONTENT_SERIALIZED_CRL;
189 certStoreOffset = offsetof(CRL_CONTEXT, hCertStore);
190 if (!(dwExpectedContentTypeFlags &
191 CERT_QUERY_CONTENT_FLAG_SERIALIZED_CRL))
193 SetLastError(ERROR_INVALID_DATA);
194 ret = FALSE;
195 goto end;
197 break;
198 case CERT_STORE_CTL_CONTEXT:
199 contextInterface = pCTLInterface;
200 contentType = CERT_QUERY_CONTENT_SERIALIZED_CTL;
201 certStoreOffset = offsetof(CTL_CONTEXT, hCertStore);
202 if (!(dwExpectedContentTypeFlags &
203 CERT_QUERY_CONTENT_FLAG_SERIALIZED_CTL))
205 SetLastError(ERROR_INVALID_DATA);
206 ret = FALSE;
207 goto end;
209 break;
210 default:
211 SetLastError(ERROR_INVALID_DATA);
212 ret = FALSE;
213 goto end;
215 if (pdwMsgAndCertEncodingType)
216 *pdwMsgAndCertEncodingType = X509_ASN_ENCODING;
217 if (pdwContentType)
218 *pdwContentType = contentType;
219 if (phCertStore)
220 *phCertStore = CertDuplicateStore(
221 *(HCERTSTORE *)((const BYTE *)context + certStoreOffset));
222 if (ppvContext)
223 *ppvContext = contextInterface->duplicate(context);
226 end:
227 if (contextInterface && context)
228 contextInterface->free(context);
229 if (blob == &fileBlob)
230 CryptMemFree(blob->pbData);
231 TRACE("returning %d\n", ret);
232 return ret;
235 static BOOL CRYPT_QuerySerializedStoreObject(DWORD dwObjectType,
236 const void *pvObject, DWORD *pdwMsgAndCertEncodingType, DWORD *pdwContentType,
237 HCERTSTORE *phCertStore, HCRYPTMSG *phMsg)
239 LPCWSTR fileName = (LPCWSTR)pvObject;
240 HANDLE file;
241 BOOL ret = FALSE;
243 if (dwObjectType != CERT_QUERY_OBJECT_FILE)
245 FIXME("unimplemented for non-file type %d\n", dwObjectType);
246 SetLastError(E_INVALIDARG); /* FIXME: is this the correct error? */
247 return FALSE;
249 TRACE("%s\n", debugstr_w(fileName));
250 file = CreateFileW(fileName, GENERIC_READ, FILE_SHARE_READ, NULL,
251 OPEN_EXISTING, 0, NULL);
252 if (file != INVALID_HANDLE_VALUE)
254 HCERTSTORE store = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, 0,
255 CERT_STORE_CREATE_NEW_FLAG, NULL);
257 ret = CRYPT_ReadSerializedStoreFromFile(file, store);
258 if (ret)
260 if (pdwMsgAndCertEncodingType)
261 *pdwMsgAndCertEncodingType = X509_ASN_ENCODING;
262 if (pdwContentType)
263 *pdwContentType = CERT_QUERY_CONTENT_SERIALIZED_STORE;
264 if (phCertStore)
265 *phCertStore = CertDuplicateStore(store);
267 CertCloseStore(store, 0);
268 CloseHandle(file);
270 TRACE("returning %d\n", ret);
271 return ret;
274 /* Used to decode non-embedded messages */
275 static BOOL CRYPT_QueryMessageObject(DWORD dwObjectType, const void *pvObject,
276 DWORD dwExpectedContentTypeFlags, DWORD *pdwMsgAndCertEncodingType,
277 DWORD *pdwContentType, HCERTSTORE *phCertStore, HCRYPTMSG *phMsg)
279 CERT_BLOB fileBlob;
280 const CERT_BLOB *blob;
281 BOOL ret;
282 HCRYPTMSG msg = NULL;
283 DWORD encodingType = X509_ASN_ENCODING | PKCS_7_ASN_ENCODING;
285 switch (dwObjectType)
287 case CERT_QUERY_OBJECT_FILE:
288 /* This isn't an embedded PKCS7 message, so just read the file
289 * directly
291 ret = CRYPT_ReadBlobFromFile((LPCWSTR)pvObject, &fileBlob);
292 blob = &fileBlob;
293 break;
294 case CERT_QUERY_OBJECT_BLOB:
295 blob = (const CERT_BLOB *)pvObject;
296 ret = TRUE;
297 break;
298 default:
299 SetLastError(E_INVALIDARG); /* FIXME: is this the correct error? */
300 ret = FALSE;
302 if (!ret)
303 return FALSE;
305 ret = FALSE;
306 /* Try it first as a PKCS content info */
307 if ((dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED) ||
308 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_PKCS7_UNSIGNED))
310 msg = CryptMsgOpenToDecode(encodingType, 0, 0, 0, NULL, NULL);
311 if (msg)
313 ret = CryptMsgUpdate(msg, blob->pbData, blob->cbData, TRUE);
314 if (ret)
316 DWORD type, len = sizeof(type);
318 ret = CryptMsgGetParam(msg, CMSG_TYPE_PARAM, 0, &type, &len);
319 if (ret)
321 if ((dwExpectedContentTypeFlags &
322 CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED))
324 if (type != CMSG_SIGNED)
326 SetLastError(ERROR_INVALID_DATA);
327 ret = FALSE;
329 else if (pdwContentType)
330 *pdwContentType = CERT_QUERY_CONTENT_PKCS7_SIGNED;
332 else if ((dwExpectedContentTypeFlags &
333 CERT_QUERY_CONTENT_FLAG_PKCS7_UNSIGNED))
335 if (type != CMSG_DATA)
337 SetLastError(ERROR_INVALID_DATA);
338 ret = FALSE;
340 else if (pdwContentType)
341 *pdwContentType = CERT_QUERY_CONTENT_PKCS7_UNSIGNED;
345 if (!ret)
347 CryptMsgClose(msg);
348 msg = NULL;
352 /* Failing that, try explicitly typed messages */
353 if (!ret &&
354 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED))
356 msg = CryptMsgOpenToDecode(encodingType, 0, CMSG_SIGNED, 0, NULL, NULL);
357 if (msg)
359 ret = CryptMsgUpdate(msg, blob->pbData, blob->cbData, TRUE);
360 if (!ret)
362 CryptMsgClose(msg);
363 msg = NULL;
366 if (msg && pdwContentType)
367 *pdwContentType = CERT_QUERY_CONTENT_PKCS7_SIGNED;
369 if (!ret &&
370 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_PKCS7_UNSIGNED))
372 msg = CryptMsgOpenToDecode(encodingType, 0, CMSG_DATA, 0, NULL, NULL);
373 if (msg)
375 ret = CryptMsgUpdate(msg, blob->pbData, blob->cbData, TRUE);
376 if (!ret)
378 CryptMsgClose(msg);
379 msg = NULL;
382 if (msg && pdwContentType)
383 *pdwContentType = CERT_QUERY_CONTENT_PKCS7_UNSIGNED;
385 if (pdwMsgAndCertEncodingType)
386 *pdwMsgAndCertEncodingType = encodingType;
387 if (msg)
389 if (phMsg)
390 *phMsg = msg;
391 if (phCertStore)
392 *phCertStore = CertOpenStore(CERT_STORE_PROV_MSG, encodingType, 0,
393 0, msg);
395 if (blob == &fileBlob)
396 CryptMemFree(blob->pbData);
397 TRACE("returning %d\n", ret);
398 return ret;
401 static BOOL CRYPT_QueryEmbeddedMessageObject(DWORD dwObjectType,
402 const void *pvObject, DWORD dwExpectedContentTypeFlags,
403 DWORD *pdwMsgAndCertEncodingType, DWORD *pdwContentType,
404 HCERTSTORE *phCertStore, HCRYPTMSG *phMsg)
406 HANDLE file;
407 GUID subject;
408 BOOL ret = FALSE;
410 TRACE("%s\n", debugstr_w((LPCWSTR)pvObject));
412 if (dwObjectType != CERT_QUERY_OBJECT_FILE)
414 FIXME("don't know what to do for type %d embedded signed messages\n",
415 dwObjectType);
416 SetLastError(E_INVALIDARG);
417 return FALSE;
419 file = CreateFileW((LPCWSTR)pvObject, GENERIC_READ, FILE_SHARE_READ,
420 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
421 if (file != INVALID_HANDLE_VALUE)
423 ret = CryptSIPRetrieveSubjectGuid((LPCWSTR)pvObject, file, &subject);
424 if (ret)
426 SIP_DISPATCH_INFO sip;
428 memset(&sip, 0, sizeof(sip));
429 sip.cbSize = sizeof(sip);
430 ret = CryptSIPLoad(&subject, 0, &sip);
431 if (ret)
433 SIP_SUBJECTINFO subjectInfo;
434 CERT_BLOB blob;
435 DWORD encodingType;
437 memset(&subjectInfo, 0, sizeof(subjectInfo));
438 subjectInfo.cbSize = sizeof(subjectInfo);
439 subjectInfo.pgSubjectType = &subject;
440 subjectInfo.hFile = file;
441 subjectInfo.pwsFileName = (LPCWSTR)pvObject;
442 ret = sip.pfGet(&subjectInfo, &encodingType, 0, &blob.cbData,
443 NULL);
444 if (ret)
446 blob.pbData = CryptMemAlloc(blob.cbData);
447 if (blob.pbData)
449 ret = sip.pfGet(&subjectInfo, &encodingType, 0,
450 &blob.cbData, blob.pbData);
451 if (ret)
453 ret = CRYPT_QueryMessageObject(
454 CERT_QUERY_OBJECT_BLOB, &blob,
455 CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED,
456 pdwMsgAndCertEncodingType, NULL, phCertStore,
457 phMsg);
458 if (ret && pdwContentType)
459 *pdwContentType =
460 CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED;
462 CryptMemFree(blob.pbData);
464 else
466 SetLastError(ERROR_OUTOFMEMORY);
467 ret = FALSE;
472 CloseHandle(file);
474 TRACE("returning %d\n", ret);
475 return ret;
478 BOOL WINAPI CryptQueryObject(DWORD dwObjectType, const void *pvObject,
479 DWORD dwExpectedContentTypeFlags, DWORD dwExpectedFormatTypeFlags,
480 DWORD dwFlags, DWORD *pdwMsgAndCertEncodingType, DWORD *pdwContentType,
481 DWORD *pdwFormatType, HCERTSTORE *phCertStore, HCRYPTMSG *phMsg,
482 const void **ppvContext)
484 static const DWORD unimplementedTypes =
485 CERT_QUERY_CONTENT_FLAG_PKCS10 | CERT_QUERY_CONTENT_FLAG_PFX |
486 CERT_QUERY_CONTENT_FLAG_CERT_PAIR;
487 BOOL ret = TRUE;
489 TRACE("(%08x, %p, %08x, %08x, %08x, %p, %p, %p, %p, %p, %p)\n",
490 dwObjectType, pvObject, dwExpectedContentTypeFlags,
491 dwExpectedFormatTypeFlags, dwFlags, pdwMsgAndCertEncodingType,
492 pdwContentType, pdwFormatType, phCertStore, phMsg, ppvContext);
494 if (dwExpectedContentTypeFlags & unimplementedTypes)
495 WARN("unimplemented for types %08x\n",
496 dwExpectedContentTypeFlags & unimplementedTypes);
497 if (!(dwExpectedFormatTypeFlags & CERT_QUERY_FORMAT_FLAG_BINARY))
499 FIXME("unimplemented for anything but binary\n");
500 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
501 return FALSE;
503 if (pdwFormatType)
504 *pdwFormatType = CERT_QUERY_FORMAT_BINARY;
506 if (phCertStore)
507 *phCertStore = NULL;
508 if (phMsg)
509 *phMsg = NULL;
510 if (ppvContext)
511 *ppvContext = NULL;
513 ret = FALSE;
514 if ((dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_CERT) ||
515 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_CRL) ||
516 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_CTL))
518 ret = CRYPT_QueryContextObject(dwObjectType, pvObject,
519 dwExpectedContentTypeFlags, pdwMsgAndCertEncodingType, pdwContentType,
520 phCertStore, ppvContext);
522 if (!ret &&
523 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_SERIALIZED_STORE))
525 ret = CRYPT_QuerySerializedStoreObject(dwObjectType, pvObject,
526 pdwMsgAndCertEncodingType, pdwContentType, phCertStore, phMsg);
528 if (!ret &&
529 ((dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_SERIALIZED_CERT) ||
530 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_SERIALIZED_CRL) ||
531 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_SERIALIZED_CTL)))
533 ret = CRYPT_QuerySerializedContextObject(dwObjectType, pvObject,
534 dwExpectedContentTypeFlags, pdwMsgAndCertEncodingType, pdwContentType,
535 phCertStore, ppvContext);
537 if (!ret &&
538 ((dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED) ||
539 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_PKCS7_UNSIGNED)))
541 ret = CRYPT_QueryMessageObject(dwObjectType, pvObject,
542 dwExpectedContentTypeFlags, pdwMsgAndCertEncodingType, pdwContentType,
543 phCertStore, phMsg);
545 if (!ret &&
546 (dwExpectedContentTypeFlags & CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED_EMBED))
548 ret = CRYPT_QueryEmbeddedMessageObject(dwObjectType, pvObject,
549 dwExpectedContentTypeFlags, pdwMsgAndCertEncodingType, pdwContentType,
550 phCertStore, phMsg);
552 TRACE("returning %d\n", ret);
553 return ret;
556 static BOOL WINAPI CRYPT_FormatHexString(DWORD dwCertEncodingType,
557 DWORD dwFormatType, DWORD dwFormatStrType, void *pFormatStruct,
558 LPCSTR lpszStructType, const BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat,
559 DWORD *pcbFormat)
561 BOOL ret;
562 DWORD bytesNeeded;
564 if (cbEncoded)
565 bytesNeeded = (cbEncoded * 3) * sizeof(WCHAR);
566 else
567 bytesNeeded = sizeof(WCHAR);
568 if (!pbFormat)
570 *pcbFormat = bytesNeeded;
571 ret = TRUE;
573 else if (*pcbFormat < bytesNeeded)
575 *pcbFormat = bytesNeeded;
576 SetLastError(ERROR_MORE_DATA);
577 ret = FALSE;
579 else
581 static const WCHAR fmt[] = { '%','0','2','x',' ',0 };
582 static const WCHAR endFmt[] = { '%','0','2','x',0 };
583 DWORD i;
584 LPWSTR ptr = pbFormat;
586 *pcbFormat = bytesNeeded;
587 if (cbEncoded)
589 for (i = 0; i < cbEncoded; i++)
591 if (i < cbEncoded - 1)
592 ptr += sprintfW(ptr, fmt, pbEncoded[i]);
593 else
594 ptr += sprintfW(ptr, endFmt, pbEncoded[i]);
597 else
598 *ptr = 0;
599 ret = TRUE;
601 return ret;
604 #define MAX_STRING_RESOURCE_LEN 128
606 static BOOL CRYPT_FormatHexStringWithPrefix(CRYPT_DATA_BLOB *blob, int id,
607 LPWSTR str, DWORD *pcbStr)
609 WCHAR buf[MAX_STRING_RESOURCE_LEN];
610 DWORD bytesNeeded;
611 BOOL ret;
613 LoadStringW(hInstance, id, buf, sizeof(buf) / sizeof(buf[0]));
614 CRYPT_FormatHexString(X509_ASN_ENCODING, 0, 0, NULL, NULL,
615 blob->pbData, blob->cbData, NULL, &bytesNeeded);
616 bytesNeeded += strlenW(buf) * sizeof(WCHAR);
617 if (!str)
619 *pcbStr = bytesNeeded;
620 ret = TRUE;
622 else if (*pcbStr < bytesNeeded)
624 *pcbStr = bytesNeeded;
625 SetLastError(ERROR_MORE_DATA);
626 ret = FALSE;
628 else
630 *pcbStr = bytesNeeded;
631 strcpyW(str, buf);
632 str += strlenW(str);
633 bytesNeeded -= strlenW(str) * sizeof(WCHAR);
634 ret = CRYPT_FormatHexString(X509_ASN_ENCODING, 0, 0, NULL, NULL,
635 blob->pbData, blob->cbData, str, &bytesNeeded);
637 return ret;
640 static BOOL CRYPT_FormatKeyId(CRYPT_DATA_BLOB *keyId, LPWSTR str,
641 DWORD *pcbStr)
643 return CRYPT_FormatHexStringWithPrefix(keyId, IDS_KEY_ID, str, pcbStr);
646 static BOOL CRYPT_FormatCertSerialNumber(CRYPT_DATA_BLOB *serialNum, LPWSTR str,
647 DWORD *pcbStr)
649 return CRYPT_FormatHexStringWithPrefix(serialNum, IDS_CERT_SERIAL_NUMBER,
650 str, pcbStr);
653 static const WCHAR crlf[] = { '\r','\n',0 };
655 static BOOL CRYPT_FormatAltNameEntry(DWORD dwFormatStrType,
656 CERT_ALT_NAME_ENTRY *entry, LPWSTR str, DWORD *pcbStr)
658 BOOL ret;
659 WCHAR buf[MAX_STRING_RESOURCE_LEN];
660 WCHAR mask[MAX_STRING_RESOURCE_LEN];
661 WCHAR ipAddrBuf[32];
662 WCHAR maskBuf[16];
663 DWORD bytesNeeded = sizeof(WCHAR);
665 switch (entry->dwAltNameChoice)
667 case CERT_ALT_NAME_RFC822_NAME:
668 LoadStringW(hInstance, IDS_ALT_NAME_RFC822_NAME, buf,
669 sizeof(buf) / sizeof(buf[0]));
670 bytesNeeded += strlenW(entry->u.pwszRfc822Name) * sizeof(WCHAR);
671 ret = TRUE;
672 break;
673 case CERT_ALT_NAME_DNS_NAME:
674 LoadStringW(hInstance, IDS_ALT_NAME_DNS_NAME, buf,
675 sizeof(buf) / sizeof(buf[0]));
676 bytesNeeded += strlenW(entry->u.pwszDNSName) * sizeof(WCHAR);
677 ret = TRUE;
678 break;
679 case CERT_ALT_NAME_URL:
680 LoadStringW(hInstance, IDS_ALT_NAME_URL, buf,
681 sizeof(buf) / sizeof(buf[0]));
682 bytesNeeded += strlenW(entry->u.pwszURL) * sizeof(WCHAR);
683 ret = TRUE;
684 break;
685 case CERT_ALT_NAME_IP_ADDRESS:
687 static const WCHAR ipAddrWithMaskFmt[] = { '%','d','.','%','d','.',
688 '%','d','.','%','d','/','%','d','.','%','d','.','%','d','.','%','d',0
690 static const WCHAR ipAddrFmt[] = { '%','d','.','%','d','.','%','d',
691 '.','%','d',0 };
693 LoadStringW(hInstance, IDS_ALT_NAME_IP_ADDRESS, buf,
694 sizeof(buf) / sizeof(buf[0]));
695 if (entry->u.IPAddress.cbData == 8)
697 if (dwFormatStrType & CRYPT_FORMAT_STR_MULTI_LINE)
699 LoadStringW(hInstance, IDS_ALT_NAME_MASK, mask,
700 sizeof(mask) / sizeof(mask[0]));
701 bytesNeeded += strlenW(mask) * sizeof(WCHAR);
702 sprintfW(ipAddrBuf, ipAddrFmt,
703 entry->u.IPAddress.pbData[0],
704 entry->u.IPAddress.pbData[1],
705 entry->u.IPAddress.pbData[2],
706 entry->u.IPAddress.pbData[3]);
707 bytesNeeded += strlenW(ipAddrBuf) * sizeof(WCHAR);
708 sprintfW(maskBuf, ipAddrFmt,
709 entry->u.IPAddress.pbData[4],
710 entry->u.IPAddress.pbData[5],
711 entry->u.IPAddress.pbData[6],
712 entry->u.IPAddress.pbData[7]);
713 bytesNeeded += strlenW(maskBuf) * sizeof(WCHAR);
714 bytesNeeded += strlenW(crlf) * sizeof(WCHAR);
716 else
718 sprintfW(ipAddrBuf, ipAddrWithMaskFmt,
719 entry->u.IPAddress.pbData[0],
720 entry->u.IPAddress.pbData[1],
721 entry->u.IPAddress.pbData[2],
722 entry->u.IPAddress.pbData[3],
723 entry->u.IPAddress.pbData[4],
724 entry->u.IPAddress.pbData[5],
725 entry->u.IPAddress.pbData[6],
726 entry->u.IPAddress.pbData[7]);
727 bytesNeeded += (strlenW(ipAddrBuf) + 1) * sizeof(WCHAR);
729 ret = TRUE;
731 else
733 FIXME("unknown IP address format (%d bytes)\n",
734 entry->u.IPAddress.cbData);
735 ret = FALSE;
737 break;
739 default:
740 FIXME("unimplemented for %d\n", entry->dwAltNameChoice);
741 ret = FALSE;
743 if (ret)
745 bytesNeeded += strlenW(buf) * sizeof(WCHAR);
746 if (!str)
747 *pcbStr = bytesNeeded;
748 else if (*pcbStr < bytesNeeded)
750 *pcbStr = bytesNeeded;
751 SetLastError(ERROR_MORE_DATA);
752 ret = FALSE;
754 else
756 *pcbStr = bytesNeeded;
757 strcpyW(str, buf);
758 str += strlenW(str);
759 switch (entry->dwAltNameChoice)
761 case CERT_ALT_NAME_RFC822_NAME:
762 case CERT_ALT_NAME_DNS_NAME:
763 case CERT_ALT_NAME_URL:
764 strcpyW(str, entry->u.pwszURL);
765 break;
766 case CERT_ALT_NAME_IP_ADDRESS:
767 if (dwFormatStrType & CRYPT_FORMAT_STR_MULTI_LINE)
769 strcpyW(str, ipAddrBuf);
770 str += strlenW(ipAddrBuf);
771 strcpyW(str, crlf);
772 str += strlenW(crlf);
773 strcpyW(str, mask);
774 str += strlenW(mask);
775 strcpyW(str, maskBuf);
777 else
778 strcpyW(str, ipAddrBuf);
779 break;
783 return ret;
786 static const WCHAR commaSpace[] = { ',',' ',0 };
788 static BOOL CRYPT_FormatAltNameInfo(DWORD dwFormatStrType,
789 CERT_ALT_NAME_INFO *name, LPWSTR str, DWORD *pcbStr)
791 DWORD i, size, bytesNeeded = 0;
792 BOOL ret = TRUE;
793 LPCWSTR sep;
794 DWORD sepLen;
796 if (dwFormatStrType & CRYPT_FORMAT_STR_MULTI_LINE)
798 sep = crlf;
799 sepLen = strlenW(crlf) * sizeof(WCHAR);
801 else
803 sep = commaSpace;
804 sepLen = strlenW(commaSpace) * sizeof(WCHAR);
807 for (i = 0; ret && i < name->cAltEntry; i++)
809 ret = CRYPT_FormatAltNameEntry(dwFormatStrType, &name->rgAltEntry[i],
810 NULL, &size);
811 if (ret)
813 bytesNeeded += size - sizeof(WCHAR);
814 if (i < name->cAltEntry - 1)
815 bytesNeeded += sepLen;
818 if (ret)
820 bytesNeeded += sizeof(WCHAR);
821 if (!str)
822 *pcbStr = bytesNeeded;
823 else if (*pcbStr < bytesNeeded)
825 *pcbStr = bytesNeeded;
826 SetLastError(ERROR_MORE_DATA);
827 ret = FALSE;
829 else
831 *pcbStr = bytesNeeded;
832 for (i = 0; ret && i < name->cAltEntry; i++)
834 ret = CRYPT_FormatAltNameEntry(dwFormatStrType,
835 &name->rgAltEntry[i], str, &size);
836 if (ret)
838 str += size / sizeof(WCHAR) - 1;
839 if (i < name->cAltEntry - 1)
841 strcpyW(str, sep);
842 str += sepLen / sizeof(WCHAR);
848 return ret;
851 static BOOL CRYPT_FormatCertIssuer(DWORD dwFormatStrType,
852 CERT_ALT_NAME_INFO *issuer, LPWSTR str, DWORD *pcbStr)
854 WCHAR buf[MAX_STRING_RESOURCE_LEN];
855 DWORD bytesNeeded;
856 BOOL ret;
858 LoadStringW(hInstance, IDS_CERT_ISSUER, buf, sizeof(buf) / sizeof(buf[0]));
859 ret = CRYPT_FormatAltNameInfo(dwFormatStrType, issuer, NULL, &bytesNeeded);
860 bytesNeeded += strlenW(buf) * sizeof(WCHAR);
861 if (ret)
863 if (!str)
864 *pcbStr = bytesNeeded;
865 else if (*pcbStr < bytesNeeded)
867 *pcbStr = bytesNeeded;
868 SetLastError(ERROR_MORE_DATA);
869 ret = FALSE;
871 else
873 *pcbStr = bytesNeeded;
874 strcpyW(str, buf);
875 str += strlenW(str);
876 bytesNeeded -= strlenW(str) * sizeof(WCHAR);
877 ret = CRYPT_FormatAltNameInfo(dwFormatStrType, issuer, str,
878 &bytesNeeded);
881 return ret;
884 static BOOL WINAPI CRYPT_FormatAuthorityKeyId2(DWORD dwCertEncodingType,
885 DWORD dwFormatType, DWORD dwFormatStrType, void *pFormatStruct,
886 LPCSTR lpszStructType, const BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat,
887 DWORD *pcbFormat)
889 CERT_AUTHORITY_KEY_ID2_INFO *info;
890 DWORD size;
891 BOOL ret = FALSE;
893 if (!cbEncoded)
895 SetLastError(E_INVALIDARG);
896 return FALSE;
898 if ((ret = CryptDecodeObjectEx(dwCertEncodingType, X509_AUTHORITY_KEY_ID2,
899 pbEncoded, cbEncoded, CRYPT_DECODE_ALLOC_FLAG, NULL, &info, &size)))
901 DWORD bytesNeeded = sizeof(WCHAR); /* space for the NULL terminator */
902 LPCWSTR sep;
903 DWORD sepLen;
904 BOOL needSeparator = FALSE;
906 if (dwFormatStrType & CRYPT_FORMAT_STR_MULTI_LINE)
908 sep = crlf;
909 sepLen = strlenW(crlf) * sizeof(WCHAR);
911 else
913 sep = commaSpace;
914 sepLen = strlenW(commaSpace) * sizeof(WCHAR);
917 if (info->KeyId.cbData)
919 needSeparator = TRUE;
920 ret = CRYPT_FormatKeyId(&info->KeyId, NULL, &size);
921 if (ret)
923 /* don't include NULL-terminator more than once */
924 bytesNeeded += size - sizeof(WCHAR);
927 if (info->AuthorityCertIssuer.cAltEntry)
929 if (needSeparator)
930 bytesNeeded += sepLen;
931 needSeparator = TRUE;
932 ret = CRYPT_FormatCertIssuer(dwFormatStrType,
933 &info->AuthorityCertIssuer, NULL, &size);
934 if (ret)
936 /* don't include NULL-terminator more than once */
937 bytesNeeded += size - sizeof(WCHAR);
940 if (info->AuthorityCertSerialNumber.cbData)
942 if (needSeparator)
943 bytesNeeded += sepLen;
944 ret = CRYPT_FormatCertSerialNumber(
945 &info->AuthorityCertSerialNumber, NULL, &size);
946 if (ret)
948 /* don't include NULL-terminator more than once */
949 bytesNeeded += size - sizeof(WCHAR);
952 if (ret)
954 if (!pbFormat)
955 *pcbFormat = bytesNeeded;
956 else if (*pcbFormat < bytesNeeded)
958 *pcbFormat = bytesNeeded;
959 SetLastError(ERROR_MORE_DATA);
960 ret = FALSE;
962 else
964 LPWSTR str = pbFormat;
966 *pcbFormat = bytesNeeded;
967 needSeparator = FALSE;
968 if (info->KeyId.cbData)
970 needSeparator = TRUE;
971 ret = CRYPT_FormatKeyId(&info->KeyId, str, &size);
972 if (ret)
973 str += size / sizeof(WCHAR);
975 if (info->AuthorityCertIssuer.cAltEntry)
977 if (needSeparator)
979 strcpyW(str, sep);
980 str += sepLen / sizeof(WCHAR);
982 needSeparator = TRUE;
983 ret = CRYPT_FormatCertIssuer(dwFormatStrType,
984 &info->AuthorityCertIssuer, str, &size);
985 if (ret)
986 str += size / sizeof(WCHAR);
988 if (info->AuthorityCertSerialNumber.cbData)
990 if (needSeparator)
992 strcpyW(str, sep);
993 str += sepLen / sizeof(WCHAR);
995 ret = CRYPT_FormatCertSerialNumber(
996 &info->AuthorityCertSerialNumber, str, &size);
1000 LocalFree(info);
1002 return ret;
1005 static BOOL WINAPI CRYPT_FormatEnhancedKeyUsage(DWORD dwCertEncodingType,
1006 DWORD dwFormatType, DWORD dwFormatStrType, void *pFormatStruct,
1007 LPCSTR lpszStructType, const BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat,
1008 DWORD *pcbFormat)
1010 CERT_ENHKEY_USAGE *usage;
1011 DWORD size;
1012 BOOL ret = FALSE;
1014 if (!cbEncoded)
1016 SetLastError(E_INVALIDARG);
1017 return FALSE;
1019 if ((ret = CryptDecodeObjectEx(dwCertEncodingType, X509_ENHANCED_KEY_USAGE,
1020 pbEncoded, cbEncoded, CRYPT_DECODE_ALLOC_FLAG, NULL, &usage, &size)))
1022 WCHAR unknown[MAX_STRING_RESOURCE_LEN];
1023 DWORD i;
1024 DWORD bytesNeeded = sizeof(WCHAR); /* space for the NULL terminator */
1025 LPCWSTR sep;
1026 DWORD sepLen;
1028 if (dwFormatStrType & CRYPT_FORMAT_STR_MULTI_LINE)
1030 sep = crlf;
1031 sepLen = strlenW(crlf) * sizeof(WCHAR);
1033 else
1035 sep = commaSpace;
1036 sepLen = strlenW(commaSpace) * sizeof(WCHAR);
1039 LoadStringW(hInstance, IDS_USAGE_UNKNOWN, unknown,
1040 sizeof(unknown) / sizeof(unknown[0]));
1041 for (i = 0; i < usage->cUsageIdentifier; i++)
1043 PCCRYPT_OID_INFO info = CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY,
1044 usage->rgpszUsageIdentifier[i], CRYPT_ENHKEY_USAGE_OID_GROUP_ID);
1046 if (info)
1047 bytesNeeded += strlenW(info->pwszName) * sizeof(WCHAR);
1048 else
1049 bytesNeeded += strlenW(unknown) * sizeof(WCHAR);
1050 bytesNeeded += sizeof(WCHAR); /* space */
1051 bytesNeeded += sizeof(WCHAR); /* left paren */
1052 bytesNeeded += strlen(usage->rgpszUsageIdentifier[i]) *
1053 sizeof(WCHAR);
1054 bytesNeeded += sizeof(WCHAR); /* right paren */
1055 if (i < usage->cUsageIdentifier - 1)
1056 bytesNeeded += sepLen;
1058 if (!pbFormat)
1059 *pcbFormat = bytesNeeded;
1060 else if (*pcbFormat < bytesNeeded)
1062 *pcbFormat = bytesNeeded;
1063 SetLastError(ERROR_MORE_DATA);
1064 ret = FALSE;
1066 else
1068 LPWSTR str = pbFormat;
1070 *pcbFormat = bytesNeeded;
1071 for (i = 0; i < usage->cUsageIdentifier; i++)
1073 PCCRYPT_OID_INFO info = CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY,
1074 usage->rgpszUsageIdentifier[i],
1075 CRYPT_ENHKEY_USAGE_OID_GROUP_ID);
1076 LPCSTR oidPtr;
1078 if (info)
1080 strcpyW(str, info->pwszName);
1081 str += strlenW(info->pwszName);
1083 else
1085 strcpyW(str, unknown);
1086 str += strlenW(unknown);
1088 *str++ = ' ';
1089 *str++ = '(';
1090 for (oidPtr = usage->rgpszUsageIdentifier[i]; *oidPtr; oidPtr++)
1091 *str++ = *oidPtr;
1092 *str++ = ')';
1093 *str = 0;
1094 if (i < usage->cUsageIdentifier - 1)
1096 strcpyW(str, sep);
1097 str += sepLen / sizeof(WCHAR);
1101 LocalFree(usage);
1103 return ret;
1106 typedef BOOL (WINAPI *CryptFormatObjectFunc)(DWORD, DWORD, DWORD, void *,
1107 LPCSTR, const BYTE *, DWORD, void *, DWORD *);
1109 static CryptFormatObjectFunc CRYPT_GetBuiltinFormatFunction(DWORD encodingType,
1110 DWORD formatStrType, LPCSTR lpszStructType)
1112 CryptFormatObjectFunc format = NULL;
1114 if ((encodingType & CERT_ENCODING_TYPE_MASK) != X509_ASN_ENCODING)
1116 SetLastError(ERROR_FILE_NOT_FOUND);
1117 return NULL;
1119 if (!HIWORD(lpszStructType))
1121 switch (LOWORD(lpszStructType))
1123 case LOWORD(X509_AUTHORITY_KEY_ID2):
1124 format = CRYPT_FormatAuthorityKeyId2;
1125 break;
1126 case LOWORD(X509_ENHANCED_KEY_USAGE):
1127 format = CRYPT_FormatEnhancedKeyUsage;
1128 break;
1131 else if (!strcmp(lpszStructType, szOID_AUTHORITY_KEY_IDENTIFIER2))
1132 format = CRYPT_FormatAuthorityKeyId2;
1133 else if (!strcmp(lpszStructType, szOID_ENHANCED_KEY_USAGE))
1134 format = CRYPT_FormatEnhancedKeyUsage;
1135 if (!format && !(formatStrType & CRYPT_FORMAT_STR_NO_HEX))
1136 format = CRYPT_FormatHexString;
1137 return format;
1140 BOOL WINAPI CryptFormatObject(DWORD dwCertEncodingType, DWORD dwFormatType,
1141 DWORD dwFormatStrType, void *pFormatStruct, LPCSTR lpszStructType,
1142 const BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat, DWORD *pcbFormat)
1144 CryptFormatObjectFunc format = NULL;
1145 HCRYPTOIDFUNCADDR hFunc = NULL;
1146 BOOL ret = FALSE;
1148 TRACE("(%08x, %d, %08x, %p, %s, %p, %d, %p, %p)\n", dwCertEncodingType,
1149 dwFormatType, dwFormatStrType, pFormatStruct, debugstr_a(lpszStructType),
1150 pbEncoded, cbEncoded, pbFormat, pcbFormat);
1152 if (!(format = CRYPT_GetBuiltinFormatFunction(dwCertEncodingType,
1153 dwFormatStrType, lpszStructType)))
1155 static HCRYPTOIDFUNCSET set = NULL;
1157 if (!set)
1158 set = CryptInitOIDFunctionSet(CRYPT_OID_FORMAT_OBJECT_FUNC, 0);
1159 CryptGetOIDFunctionAddress(set, dwCertEncodingType, lpszStructType, 0,
1160 (void **)&format, &hFunc);
1162 if (format)
1163 ret = format(dwCertEncodingType, dwFormatType, dwFormatStrType,
1164 pFormatStruct, lpszStructType, pbEncoded, cbEncoded, pbFormat,
1165 pcbFormat);
1166 if (hFunc)
1167 CryptFreeOIDFunctionAddress(hFunc, 0);
1168 return ret;