forked from pbatard/libwdi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pki.c
1258 lines (1119 loc) · 41.6 KB
/
pki.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* libwdi: Library for automated Windows Driver Installation - PKI part
* Copyright (c) 2011-2016 Pete Batard <[email protected]>
* For more info, please visit http://libwdi.akeo.ie
*
* 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 3 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* Memory leaks detection - define _CRTDBG_MAP_ALLOC as preprocessor macro */
#ifdef _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#endif
#include <windows.h>
#include <setupapi.h>
#include <wincrypt.h>
#include <stdio.h>
#include <conio.h>
#include <stdint.h>
#include <string.h>
#include <ctype.h>
#include "mssign32.h"
#include <config.h>
#include "installer.h"
#include "libwdi.h"
#include "logging.h"
#define KEY_CONTAINER L"libwdi key container"
#define PF_ERR wdi_err
#ifndef CERT_STORE_PROV_SYSTEM_A
#define CERT_STORE_PROV_SYSTEM_A ((LPCSTR) 9)
#endif
#ifndef szOID_RSA_SHA256RSA
#define szOID_RSA_SHA256RSA "1.2.840.113549.1.1.11"
#endif
/*
* Crypt32.dll
*/
typedef HCERTSTORE (WINAPI *CertOpenStore_t)(
LPCSTR lpszStoreProvider,
DWORD dwMsgAndCertEncodingType,
ULONG_PTR hCryptProv,
DWORD dwFlags,
const void *pvPara
);
typedef PCCERT_CONTEXT (WINAPI *CertCreateCertificateContext_t)(
DWORD dwCertEncodingType,
const BYTE *pbCertEncoded,
DWORD cbCertEncoded
);
typedef PCCERT_CONTEXT (WINAPI *CertFindCertificateInStore_t)(
HCERTSTORE hCertStore,
DWORD dwCertEncodingType,
DWORD dwFindFlags,
DWORD dwFindType,
const void *pvFindPara,
PCCERT_CONTEXT pfPrevCertContext
);
typedef BOOL (WINAPI *CertAddCertificateContextToStore_t)(
HCERTSTORE hCertStore,
PCCERT_CONTEXT pCertContext,
DWORD dwAddDisposition,
PCCERT_CONTEXT *pStoreContext
);
typedef BOOL (WINAPI *CertSetCertificateContextProperty_t)(
PCCERT_CONTEXT pCertContext,
DWORD dwPropId,
DWORD dwFlags,
const void *pvData
);
typedef BOOL (WINAPI *CertDeleteCertificateFromStore_t)(
PCCERT_CONTEXT pCertContext
);
typedef BOOL (WINAPI *CertFreeCertificateContext_t)(
PCCERT_CONTEXT pCertContext
);
typedef BOOL (WINAPI *CertCloseStore_t)(
HCERTSTORE hCertStore,
DWORD dwFlags
);
typedef DWORD (WINAPI *CertGetNameStringA_t)(
PCCERT_CONTEXT pCertContext,
DWORD dwType,
DWORD dwFlags,
void *pvTypePara,
LPCSTR pszNameString,
DWORD cchNameString
);
typedef BOOL (WINAPI *CryptEncodeObject_t)(
DWORD dwCertEncodingType,
LPCSTR lpszStructType,
const void *pvStructInfo,
BYTE *pbEncoded,
DWORD *pcbEncoded
);
typedef BOOL (WINAPI *CryptDecodeObject_t)(
DWORD dwCertEncodingType,
LPCSTR lpszStructType,
const BYTE *pbEncoded,
DWORD cbEncoded,
DWORD dwFlags,
void *pvStructInfo,
DWORD *pcbStructInfo
);
typedef BOOL (WINAPI *CertStrToNameA_t)(
DWORD dwCertEncodingType,
LPCSTR pszX500,
DWORD dwStrType,
void *pvReserved,
BYTE *pbEncoded,
DWORD *pcbEncoded,
LPCTSTR *ppszError
);
typedef BOOL (WINAPI *CryptAcquireCertificatePrivateKey_t)(
PCCERT_CONTEXT pCert,
DWORD dwFlags,
void *pvReserved,
ULONG_PTR *phCryptProvOrNCryptKey,
DWORD *pdwKeySpec,
BOOL *pfCallerFreeProvOrNCryptKey
);
typedef BOOL (WINAPI *CertAddEncodedCertificateToStore_t)(
HCERTSTORE hCertStore,
DWORD dwCertEncodingType,
const BYTE *pbCertEncoded,
DWORD cbCertEncoded,
DWORD dwAddDisposition,
PCCERT_CONTEXT *ppCertContext
);
// MiNGW32 doesn't know CERT_EXTENSIONS => redef
typedef struct _CERT_EXTENSIONS_ARRAY {
DWORD cExtension;
PCERT_EXTENSION rgExtension;
} CERT_EXTENSIONS_ARRAY, *PCERT_EXTENSIONS_ARRAY;
typedef PCCERT_CONTEXT (WINAPI *CertCreateSelfSignCertificate_t)(
ULONG_PTR hCryptProvOrNCryptKey,
PCERT_NAME_BLOB pSubjectIssuerBlob,
DWORD dwFlags,
PCRYPT_KEY_PROV_INFO pKeyProvInfo,
PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm,
LPSYSTEMTIME pStartTime,
LPSYSTEMTIME pEndTime,
PCERT_EXTENSIONS_ARRAY pExtensions
);
// MinGW32 doesn't have these ones either
#ifndef CERT_ALT_NAME_URL
#define CERT_ALT_NAME_URL 7
#endif
#ifndef CERT_RDN_IA5_STRING
#define CERT_RDN_IA5_STRING 7
#endif
#ifndef szOID_PKIX_POLICY_QUALIFIER_CPS
#define szOID_PKIX_POLICY_QUALIFIER_CPS "1.3.6.1.5.5.7.2.1"
#endif
typedef struct _CERT_ALT_NAME_ENTRY_URL {
DWORD dwAltNameChoice;
union {
LPWSTR pwszURL;
};
} CERT_ALT_NAME_ENTRY_URL, *PCERT_ALT_NAME_ENTRY_URL;
typedef struct _CERT_ALT_NAME_INFO_URL {
DWORD cAltEntry;
PCERT_ALT_NAME_ENTRY_URL rgAltEntry;
} CERT_ALT_NAME_INFO_URL, *PCERT_ALT_NAME_INFO_URL;
typedef struct _CERT_POLICY_QUALIFIER_INFO_REDEF {
LPSTR pszPolicyQualifierId;
CRYPT_OBJID_BLOB Qualifier;
} CERT_POLICY_QUALIFIER_INFO_REDEF, *PCERT_POLICY_QUALIFIER_INFO_REDEF;
typedef struct _CERT_POLICY_INFO_ALT {
LPSTR pszPolicyIdentifier;
DWORD cPolicyQualifier;
PCERT_POLICY_QUALIFIER_INFO_REDEF rgPolicyQualifier;
} CERT_POLICY_INFO_REDEF, *PCERT_POLICY_INFO_REDEF;
typedef struct _CERT_POLICIES_INFO_ARRAY {
DWORD cPolicyInfo;
PCERT_POLICY_INFO_REDEF rgPolicyInfo;
} CERT_POLICIES_INFO_ARRAY, *PCERT_POLICIES_INFO_ARRAY;
/*
* WinTrust.dll
*/
#define CRYPTCAT_OPEN_CREATENEW 0x00000001
#define CRYPTCAT_OPEN_ALWAYS 0x00000002
#define CRYPTCAT_ATTR_AUTHENTICATED 0x10000000
#define CRYPTCAT_ATTR_UNAUTHENTICATED 0x20000000
#define CRYPTCAT_ATTR_NAMEASCII 0x00000001
#define CRYPTCAT_ATTR_NAMEOBJID 0x00000002
#define CRYPTCAT_ATTR_DATAASCII 0x00010000
#define CRYPTCAT_ATTR_DATABASE64 0x00020000
#define CRYPTCAT_ATTR_DATAREPLACE 0x00040000
#define SPC_UUID_LENGTH 16
#define SPC_URL_LINK_CHOICE 1
#define SPC_MONIKER_LINK_CHOICE 2
#define SPC_FILE_LINK_CHOICE 3
#define SHA1_HASH_LENGTH 20
#define SPC_PE_IMAGE_DATA_OBJID "1.3.6.1.4.1.311.2.1.15"
#define SPC_CAB_DATA_OBJID "1.3.6.1.4.1.311.2.1.25"
typedef BYTE SPC_UUID[SPC_UUID_LENGTH];
typedef struct _SPC_SERIALIZED_OBJECT {
SPC_UUID ClassId;
CRYPT_DATA_BLOB SerializedData;
} SPC_SERIALIZED_OBJECT,*PSPC_SERIALIZED_OBJECT;
typedef struct SPC_LINK_ {
DWORD dwLinkChoice;
union {
LPWSTR pwszUrl;
SPC_SERIALIZED_OBJECT Moniker;
LPWSTR pwszFile;
};
} SPC_LINK,*PSPC_LINK;
typedef struct _SPC_PE_IMAGE_DATA {
CRYPT_BIT_BLOB Flags;
PSPC_LINK pFile;
} SPC_PE_IMAGE_DATA,*PSPC_PE_IMAGE_DATA;
// MinGW32 doesn't know this one either
typedef struct _CRYPT_ATTRIBUTE_TYPE_VALUE_REDEF {
LPSTR pszObjId;
CRYPT_OBJID_BLOB Value;
} CRYPT_ATTRIBUTE_TYPE_VALUE_REDEF;
typedef struct SIP_INDIRECT_DATA_ {
CRYPT_ATTRIBUTE_TYPE_VALUE_REDEF Data;
CRYPT_ALGORITHM_IDENTIFIER DigestAlgorithm;
CRYPT_HASH_BLOB Digest;
} SIP_INDIRECT_DATA, *PSIP_INDIRECT_DATA;
typedef struct CRYPTCATSTORE_ {
DWORD cbStruct;
DWORD dwPublicVersion;
LPWSTR pwszP7File;
HCRYPTPROV hProv;
DWORD dwEncodingType;
DWORD fdwStoreFlags;
HANDLE hReserved;
HANDLE hAttrs;
HCRYPTMSG hCryptMsg;
HANDLE hSorted;
} CRYPTCATSTORE;
typedef struct CRYPTCATMEMBER_ {
DWORD cbStruct;
LPWSTR pwszReferenceTag;
LPWSTR pwszFileName;
GUID gSubjectType;
DWORD fdwMemberFlags;
PSIP_INDIRECT_DATA pIndirectData;
DWORD dwCertVersion;
DWORD dwReserved;
HANDLE hReserved;
CRYPT_ATTR_BLOB sEncodedIndirectData;
CRYPT_ATTR_BLOB sEncodedMemberInfo;
} CRYPTCATMEMBER;
typedef struct CRYPTCATATTRIBUTE_ {
DWORD cbStruct;
LPWSTR pwszReferenceTag;
DWORD dwAttrTypeAndAction;
DWORD cbValue;
BYTE *pbValue;
DWORD dwReserved;
} CRYPTCATATTRIBUTE;
typedef HANDLE (WINAPI *CryptCATOpen_t)(
LPWSTR pwszFileName,
DWORD fdwOpenFlags,
ULONG_PTR hProv,
DWORD dwPublicVersion,
DWORD dwEncodingType
);
typedef BOOL (WINAPI *CryptCATClose_t)(
HANDLE hCatalog
);
typedef CRYPTCATSTORE* (WINAPI *CryptCATStoreFromHandle_t)(
HANDLE hCatalog
);
typedef CRYPTCATATTRIBUTE* (WINAPI *CryptCATEnumerateCatAttr_t)(
HANDLE hCatalog,
CRYPTCATATTRIBUTE *pPrevAttr
);
typedef CRYPTCATATTRIBUTE* (WINAPI *CryptCATPutCatAttrInfo_t)(
HANDLE hCatalog,
LPWSTR pwszReferenceTag,
DWORD dwAttrTypeAndAction,
DWORD cbData,
BYTE *pbData
);
typedef CRYPTCATMEMBER* (WINAPI *CryptCATEnumerateMember_t)(
HANDLE hCatalog,
CRYPTCATMEMBER *pPrevMember
);
typedef CRYPTCATMEMBER* (WINAPI *CryptCATPutMemberInfo_t)(
HANDLE hCatalog,
LPWSTR pwszFileName,
LPWSTR pwszReferenceTag,
GUID *pgSubjectType,
DWORD dwCertVersion,
DWORD cbSIPIndirectData,
BYTE *pbSIPIndirectData
);
typedef CRYPTCATATTRIBUTE* (WINAPI *CryptCATEnumerateAttr_t)(
HANDLE hCatalog,
CRYPTCATMEMBER *pCatMember,
CRYPTCATATTRIBUTE *pPrevAttr
);
typedef CRYPTCATATTRIBUTE* (WINAPI *CryptCATPutAttrInfo_t)(
HANDLE hCatalog,
CRYPTCATMEMBER *pCatMember,
LPWSTR pwszReferenceTag,
DWORD dwAttrTypeAndAction,
DWORD cbData,
BYTE *pbData
);
typedef BOOL (WINAPI *CryptCATPersistStore_t)(
HANDLE hCatalog
);
typedef BOOL (WINAPI *CryptCATAdminCalcHashFromFileHandle_t)(
HANDLE hFile,
DWORD *pcbHash,
BYTE *pbHash,
DWORD dwFlags
);
extern char *windows_error_str(uint32_t retval);
/*
* Convert an UTF8 string to UTF-16 (allocate returned string)
* Return NULL on error
*/
static __inline LPWSTR UTF8toWCHAR(LPCSTR szStr)
{
int size = 0;
LPWSTR wszStr = NULL;
// Find out the size we need to allocate for our converted string
size = MultiByteToWideChar(CP_UTF8, 0, szStr, -1, NULL, 0);
if (size <= 1) // An empty string would be size 1
return NULL;
if ((wszStr = (wchar_t*)calloc(size, sizeof(wchar_t))) == NULL)
return NULL;
if (MultiByteToWideChar(CP_UTF8, 0, szStr, -1, wszStr, size) != size) {
free(wszStr);
return NULL;
}
return wszStr;
}
/*
* Parts of the following functions are based on:
* http://blogs.msdn.com/b/alejacma/archive/2009/03/16/how-to-create-a-self-signed-certificate-with-cryptoapi-c.aspx
* http://blogs.msdn.com/b/alejacma/archive/2008/12/11/how-to-sign-exe-files-with-an-authenticode-certificate-part-2.aspx
* http://www.jensign.com/hash/index.html
*/
/*
* Add a certificate, identified by its pCertContext, to the system store 'szStoreName'
*/
BOOL AddCertToStore(PCCERT_CONTEXT pCertContext, LPCSTR szStoreName)
{
PF_DECL(CertOpenStore);
PF_DECL(CertSetCertificateContextProperty);
PF_DECL(CertAddCertificateContextToStore);
PF_DECL(CertCloseStore);
HCERTSTORE hSystemStore = NULL;
CRYPT_DATA_BLOB libwdiNameBlob = {14, (BYTE*)L"libwdi"};
BOOL r = FALSE;
PF_INIT_OR_OUT(CertOpenStore, crypt32);
PF_INIT_OR_OUT(CertSetCertificateContextProperty, crypt32);
PF_INIT_OR_OUT(CertAddCertificateContextToStore, crypt32);
PF_INIT_OR_OUT(CertCloseStore, crypt32);
hSystemStore = pfCertOpenStore(CERT_STORE_PROV_SYSTEM_A, X509_ASN_ENCODING,
0, CERT_SYSTEM_STORE_LOCAL_MACHINE, szStoreName);
if (hSystemStore == NULL) {
wdi_warn("failed to open system store '%s': %s", szStoreName, windows_error_str(0));
goto out;
}
if (!pfCertSetCertificateContextProperty(pCertContext, CERT_FRIENDLY_NAME_PROP_ID, 0, &libwdiNameBlob)) {
wdi_warn("coud not set friendly name: %s", windows_error_str(0));
goto out;
}
if (!pfCertAddCertificateContextToStore(hSystemStore, pCertContext, CERT_STORE_ADD_REPLACE_EXISTING, NULL)) {
wdi_warn("failed to add certificate to system store '%s': %s", szStoreName, windows_error_str(0));
goto out;
}
r = TRUE;
out:
if (hSystemStore != NULL) pfCertCloseStore(hSystemStore, 0);
return r;
}
/*
* Remove a certificate, identified by its subject, to the system store 'szStoreName'
*/
BOOL RemoveCertFromStore(LPCSTR szCertSubject, LPCSTR szStoreName)
{
PF_DECL(CertOpenStore);
PF_DECL(CertFindCertificateInStore);
PF_DECL(CertDeleteCertificateFromStore);
PF_DECL(CertCloseStore);
PF_DECL(CertStrToNameA);
HCERTSTORE hSystemStore = NULL;
PCCERT_CONTEXT pCertContext;
CERT_NAME_BLOB certNameBlob = {0, NULL};
BOOL r = FALSE;
PF_INIT_OR_OUT(CertOpenStore, crypt32);
PF_INIT_OR_OUT(CertFindCertificateInStore, crypt32);
PF_INIT_OR_OUT(CertDeleteCertificateFromStore, crypt32);
PF_INIT_OR_OUT(CertCloseStore, crypt32);
PF_INIT_OR_OUT(CertStrToNameA, crypt32);
hSystemStore = pfCertOpenStore(CERT_STORE_PROV_SYSTEM_A, X509_ASN_ENCODING,
0, CERT_SYSTEM_STORE_LOCAL_MACHINE, szStoreName);
if (hSystemStore == NULL) {
wdi_warn("failed to open system store '%s': %s", szStoreName, windows_error_str(0));
goto out;
}
// Encode Cert Name
if ( (!pfCertStrToNameA(X509_ASN_ENCODING, szCertSubject, CERT_X500_NAME_STR, NULL, NULL, &certNameBlob.cbData, NULL))
|| ((certNameBlob.pbData = (BYTE*)malloc(certNameBlob.cbData)) == NULL)
|| (!pfCertStrToNameA(X509_ASN_ENCODING, szCertSubject, CERT_X500_NAME_STR, NULL, certNameBlob.pbData, &certNameBlob.cbData, NULL)) ) {
wdi_warn("failed to encode'%s': %s", szCertSubject, windows_error_str(0));
goto out;
}
pCertContext = NULL;
while ((pCertContext = pfCertFindCertificateInStore(hSystemStore, X509_ASN_ENCODING, 0,
CERT_FIND_SUBJECT_NAME, (const void*)&certNameBlob, NULL)) != NULL) {
pfCertDeleteCertificateFromStore(pCertContext);
wdi_info("deleted existing certificate '%s' from '%s' store", szCertSubject, szStoreName);
}
r = TRUE;
out:
if (certNameBlob.pbData != NULL) free (certNameBlob.pbData);
if (hSystemStore != NULL) pfCertCloseStore(hSystemStore, 0);
return r;
}
/*
* Add certificate data to the TrustedPublisher system store
* Unless bDisableWarning is set, warn the user before install
*/
BOOL AddCertToTrustedPublisher(BYTE* pbCertData, DWORD dwCertSize, BOOL bDisableWarning, HWND hWnd)
{
PF_DECL(CertOpenStore);
PF_DECL(CertCreateCertificateContext);
PF_DECL(CertFindCertificateInStore);
PF_DECL(CertAddCertificateContextToStore);
PF_DECL(CertFreeCertificateContext);
PF_DECL(CertGetNameStringA);
PF_DECL(CertCloseStore);
BOOL r = FALSE;
int user_input;
HCERTSTORE hSystemStore = NULL;
PCCERT_CONTEXT pCertContext = NULL, pStoreCertContext = NULL;
char org[MAX_PATH], org_unit[MAX_PATH];
char msg_string[1024];
PF_INIT_OR_OUT(CertOpenStore, crypt32);
PF_INIT_OR_OUT(CertCreateCertificateContext, crypt32);
PF_INIT_OR_OUT(CertFindCertificateInStore, crypt32);
PF_INIT_OR_OUT(CertAddCertificateContextToStore, crypt32);
PF_INIT_OR_OUT(CertFreeCertificateContext, crypt32);
PF_INIT_OR_OUT(CertGetNameStringA, crypt32);
PF_INIT_OR_OUT(CertCloseStore, crypt32);
hSystemStore = pfCertOpenStore(CERT_STORE_PROV_SYSTEM_A, X509_ASN_ENCODING,
0, CERT_SYSTEM_STORE_LOCAL_MACHINE, "TrustedPublisher");
if (hSystemStore == NULL) {
wdi_warn("unable to open system store: %s", windows_error_str(0));
goto out;
}
/* Check whether certificate already exists
* We have to do this manually, so that we can produce a warning to the user
* before any certificate is added to the store (first time or update)
*/
pCertContext = pfCertCreateCertificateContext(X509_ASN_ENCODING, pbCertData, dwCertSize);
if (pCertContext == NULL) {
wdi_warn("could not create context for certificate: %s", windows_error_str(0));
pfCertCloseStore(hSystemStore, 0);
goto out;
}
pStoreCertContext = pfCertFindCertificateInStore(hSystemStore, X509_ASN_ENCODING, 0,
CERT_FIND_EXISTING, (const void*)pCertContext, NULL);
if (pStoreCertContext == NULL) {
user_input = IDOK;
if (!bDisableWarning) {
org[0] = 0; org_unit[0] = 0;
pfCertGetNameStringA(pCertContext, CERT_NAME_ATTR_TYPE, 0, szOID_ORGANIZATION_NAME, org, sizeof(org));
pfCertGetNameStringA(pCertContext, CERT_NAME_ATTR_TYPE, 0, szOID_ORGANIZATIONAL_UNIT_NAME, org_unit, sizeof(org_unit));
safe_sprintf(msg_string, sizeof(msg_string), "Warning: this software is about to install the following organization\n"
"as a Trusted Publisher on your system:\n\n '%s%s%s%s'\n\n"
"This will allow this Publisher to run software with elevated privileges,\n"
"as well as install driver packages, without further security notices.\n\n"
"If this is not what you want, you can cancel this operation now.", org,
(org_unit[0] != 0)?" (":"", org_unit, (org_unit[0] != 0)?")":"");
user_input = MessageBoxA(hWnd, msg_string,
"Warning: Trusted Certificate installation", MB_OKCANCEL | MB_ICONWARNING);
}
if (user_input != IDOK) {
wdi_info("operation cancelled by the user");
} else {
if (!pfCertAddCertificateContextToStore(hSystemStore, pCertContext, CERT_STORE_ADD_NEWER, NULL)) {
wdi_warn("could not add certificate: %s", windows_error_str(0));
} else {
r = TRUE;
}
}
} else {
r = TRUE; // Cert already exists
}
out:
if (pCertContext != NULL) pfCertFreeCertificateContext(pCertContext);
if (pStoreCertContext != NULL) pfCertFreeCertificateContext(pStoreCertContext);
if (hSystemStore) pfCertCloseStore(hSystemStore, 0);
return r;
}
/*
* Create a self signed certificate for code signing
*/
PCCERT_CONTEXT CreateSelfSignedCert(LPCSTR szCertSubject)
{
PF_DECL(CryptEncodeObject);
PF_DECL(CertStrToNameA);
PF_DECL(CertCreateSelfSignCertificate);
PF_DECL(CertFreeCertificateContext);
DWORD dwSize;
HCRYPTPROV hCSP = 0;
HCRYPTKEY hKey = 0;
PCCERT_CONTEXT pCertContext = NULL;
CERT_NAME_BLOB SubjectIssuerBlob = {0, NULL};
CRYPT_KEY_PROV_INFO KeyProvInfo;
CRYPT_ALGORITHM_IDENTIFIER SignatureAlgorithm;
LPWSTR wszKeyContainer = KEY_CONTAINER;
LPBYTE pbEnhKeyUsage = NULL, pbAltNameInfo = NULL, pbCPSNotice = NULL, pbPolicyInfo = NULL;
SYSTEMTIME sExpirationDate = { 2029, 01, 01, 01, 00, 00, 00, 000 };
CERT_EXTENSION certExtension[3];
CERT_EXTENSIONS_ARRAY certExtensionsArray;
// Code Signing Enhanced Key Usage
LPSTR szCertPolicyElementId = "1.3.6.1.5.5.7.3.3"; // szOID_PKIX_KP_CODE_SIGNING;
CERT_ENHKEY_USAGE certEnhKeyUsage = { 1, &szCertPolicyElementId };
// Alternate Name (URL)
CERT_ALT_NAME_ENTRY_URL certAltNameEntry = { CERT_ALT_NAME_URL, {L"http://libwdi.akeo.ie"} };
CERT_ALT_NAME_INFO_URL certAltNameInfo = { 1, &certAltNameEntry };
// Certificate Policies
CERT_POLICY_QUALIFIER_INFO_REDEF certPolicyQualifier;
CERT_POLICY_INFO_REDEF certPolicyInfo = { "1.3.6.1.5.5.7.2.1", 1, &certPolicyQualifier };
CERT_POLICIES_INFO_ARRAY certPolicyInfoArray = { 1, &certPolicyInfo };
CHAR szCPSName[] = "http://libwdi-cps.akeo.ie";
CERT_NAME_VALUE certCPSValue;
PF_INIT_OR_OUT(CryptEncodeObject, crypt32);
PF_INIT_OR_OUT(CertStrToNameA, crypt32);
PF_INIT_OR_OUT(CertCreateSelfSignCertificate, crypt32);
PF_INIT_OR_OUT(CertFreeCertificateContext, crypt32);
// Set Enhanced Key Usage extension to Code Signing only
if ( (!pfCryptEncodeObject(X509_ASN_ENCODING, X509_ENHANCED_KEY_USAGE, (LPVOID)&certEnhKeyUsage, NULL, &dwSize))
|| ((pbEnhKeyUsage = (BYTE*)malloc(dwSize)) == NULL)
|| (!pfCryptEncodeObject(X509_ASN_ENCODING, X509_ENHANCED_KEY_USAGE, (LPVOID)&certEnhKeyUsage, pbEnhKeyUsage, &dwSize)) ) {
wdi_warn("could not setup EKU for code signing: %s", windows_error_str(0));
goto out;
}
certExtension[0].pszObjId = szOID_ENHANCED_KEY_USAGE;
certExtension[0].fCritical = TRUE; // only allow code signing
certExtension[0].Value.cbData = dwSize;
certExtension[0].Value.pbData = pbEnhKeyUsage;
// Set URL as Alt Name parameter
if ( (!pfCryptEncodeObject(X509_ASN_ENCODING, X509_ALTERNATE_NAME, (LPVOID)&certAltNameInfo, NULL, &dwSize))
|| ((pbAltNameInfo = (BYTE*)malloc(dwSize)) == NULL)
|| (!pfCryptEncodeObject(X509_ASN_ENCODING, X509_ALTERNATE_NAME, (LPVOID)&certAltNameInfo, pbAltNameInfo, &dwSize)) ) {
wdi_warn("could not setup URL: %s", windows_error_str(0));
goto out;
}
certExtension[1].pszObjId = szOID_SUBJECT_ALT_NAME;
certExtension[1].fCritical = FALSE;
certExtension[1].Value.cbData = dwSize;
certExtension[1].Value.pbData = pbAltNameInfo;
// Set the CPS Certificate Policies field - this enables the "Issuer Statement" button on the cert
certCPSValue.dwValueType = CERT_RDN_IA5_STRING;
certCPSValue.Value.cbData = sizeof(szCPSName);
certCPSValue.Value.pbData = (BYTE*)szCPSName;
if ( (!pfCryptEncodeObject(X509_ASN_ENCODING, X509_NAME_VALUE, (LPVOID)&certCPSValue, NULL, &dwSize))
|| ((pbCPSNotice = (BYTE*)malloc(dwSize)) == NULL)
|| (!pfCryptEncodeObject(X509_ASN_ENCODING, X509_NAME_VALUE, (LPVOID)&certCPSValue, pbCPSNotice, &dwSize)) ) {
wdi_warn("could not setup CPS: %s", windows_error_str(0));
goto out;
}
certPolicyQualifier.pszPolicyQualifierId = szOID_PKIX_POLICY_QUALIFIER_CPS;
certPolicyQualifier.Qualifier.cbData = dwSize;
certPolicyQualifier.Qualifier.pbData = pbCPSNotice;
if ( (!pfCryptEncodeObject(X509_ASN_ENCODING, X509_CERT_POLICIES, (LPVOID)&certPolicyInfoArray, NULL, &dwSize))
|| ((pbPolicyInfo = (BYTE*)malloc(dwSize)) == NULL)
|| (!pfCryptEncodeObject(X509_ASN_ENCODING, X509_CERT_POLICIES, (LPVOID)&certPolicyInfoArray, pbPolicyInfo, &dwSize)) ) {
wdi_warn("could not setup Certificate Policies: %s", windows_error_str(0));
goto out;
}
certExtension[2].pszObjId = szOID_CERT_POLICIES;
certExtension[2].fCritical = FALSE;
certExtension[2].Value.cbData = dwSize;
certExtension[2].Value.pbData = pbPolicyInfo;
certExtensionsArray.cExtension = ARRAYSIZE(certExtension);
certExtensionsArray.rgExtension = certExtension;
wdi_dbg("set Enhanced Key Usage, URL and CPS");
if (CryptAcquireContextW(&hCSP, wszKeyContainer, NULL, PROV_RSA_FULL, CRYPT_MACHINE_KEYSET|CRYPT_SILENT)) {
wdi_dbg("acquired existing key container");
} else if ( (GetLastError() == NTE_BAD_KEYSET)
&& (CryptAcquireContextW(&hCSP, wszKeyContainer, NULL, PROV_RSA_FULL, CRYPT_NEWKEYSET|CRYPT_MACHINE_KEYSET|CRYPT_SILENT)) ) {
wdi_dbg("created new key container");
} else {
wdi_warn("could not obtain a key container: %s", windows_error_str(0));
goto out;
}
// Generate key pair (0x0400XXXX = RSA 1024 bit)
if (!CryptGenKey(hCSP, AT_SIGNATURE, 0x04000000 | CRYPT_EXPORTABLE, &hKey)) {
wdi_dbg("could not generate keypair: %s", windows_error_str(0));
goto out;
}
wdi_dbg("generated new keypair");
// Set the subject
if ( (!pfCertStrToNameA(X509_ASN_ENCODING, szCertSubject, CERT_X500_NAME_STR, NULL, NULL, &SubjectIssuerBlob.cbData, NULL))
|| ((SubjectIssuerBlob.pbData = (BYTE*)malloc(SubjectIssuerBlob.cbData)) == NULL)
|| (!pfCertStrToNameA(X509_ASN_ENCODING, szCertSubject, CERT_X500_NAME_STR, NULL, SubjectIssuerBlob.pbData, &SubjectIssuerBlob.cbData, NULL)) ) {
wdi_warn("could not encode subject name for self signed cert: %s", windows_error_str(0));
goto out;
}
// Prepare key provider structure for self-signed certificate
memset(&KeyProvInfo, 0, sizeof(KeyProvInfo));
KeyProvInfo.pwszContainerName = wszKeyContainer;
KeyProvInfo.pwszProvName = NULL;
KeyProvInfo.dwProvType = PROV_RSA_FULL;
KeyProvInfo.dwFlags = CRYPT_MACHINE_KEYSET;
KeyProvInfo.cProvParam = 0;
KeyProvInfo.rgProvParam = NULL;
KeyProvInfo.dwKeySpec = AT_SIGNATURE;
// Prepare algorithm structure for self-signed certificate
memset(&SignatureAlgorithm, 0, sizeof(SignatureAlgorithm));
SignatureAlgorithm.pszObjId = szOID_RSA_SHA256RSA;
// Create self-signed certificate
pCertContext = pfCertCreateSelfSignCertificate((ULONG_PTR)NULL,
&SubjectIssuerBlob, 0, &KeyProvInfo, &SignatureAlgorithm, NULL, &sExpirationDate, &certExtensionsArray);
if (pCertContext == NULL) {
wdi_warn("could not create self signed certificate: %s", windows_error_str(0));
goto out;
}
wdi_info("created new self-signed certificate '%s'", szCertSubject);
out:
if (pbEnhKeyUsage != NULL) free(pbEnhKeyUsage);
if (pbAltNameInfo != NULL) free(pbAltNameInfo);
if (pbCPSNotice != NULL) free(pbCPSNotice);
if (pbPolicyInfo != NULL) free(pbPolicyInfo);
if (SubjectIssuerBlob.pbData != NULL) free(SubjectIssuerBlob.pbData);
if (hKey) CryptDestroyKey(hKey);
if (hCSP) CryptReleaseContext(hCSP, 0);
return pCertContext;
}
/*
* Delete the private key associated with a specific cert
*/
BOOL DeletePrivateKey(PCCERT_CONTEXT pCertContext)
{
PF_DECL(CryptAcquireCertificatePrivateKey);
PF_DECL(CertOpenStore);
PF_DECL(CertCloseStore);
PF_DECL(CertAddEncodedCertificateToStore);
PF_DECL(CertSetCertificateContextProperty);
PF_DECL(CertFreeCertificateContext);
LPWSTR wszKeyContainer = KEY_CONTAINER;
HCRYPTPROV hCSP = 0;
DWORD dwKeySpec;
BOOL bFreeCSP = FALSE, r = FALSE;
HCERTSTORE hSystemStore;
LPCSTR szStoresToUpdate[2] = { "Root", "TrustedPublisher" };
CRYPT_DATA_BLOB libwdiNameBlob = {14, (BYTE*)L"libwdi"};
PCCERT_CONTEXT pCertContextUpdate = NULL;
int i;
PF_INIT_OR_OUT(CryptAcquireCertificatePrivateKey, crypt32);
PF_INIT_OR_OUT(CertOpenStore, crypt32);
PF_INIT_OR_OUT(CertCloseStore, crypt32);
PF_INIT_OR_OUT(CertAddEncodedCertificateToStore, crypt32);
PF_INIT_OR_OUT(CertSetCertificateContextProperty, crypt32);
PF_INIT_OR_OUT(CertFreeCertificateContext, crypt32);
if (!pfCryptAcquireCertificatePrivateKey(pCertContext, CRYPT_ACQUIRE_SILENT_FLAG, NULL, &hCSP, &dwKeySpec, &bFreeCSP)) {
wdi_warn("error getting CSP: %s", windows_error_str(0));
goto out;
}
if (!CryptAcquireContextW(&hCSP, wszKeyContainer, NULL, PROV_RSA_FULL, CRYPT_MACHINE_KEYSET|CRYPT_SILENT|CRYPT_DELETEKEYSET)) {
wdi_warn("failed to delete private key: %s", windows_error_str(0));
}
// This is optional, but unless we reimport the cert data after having deleted the key
// end users will still see a "You have a private key that corresponds to this certificate" message.
for (i=0; i<ARRAYSIZE(szStoresToUpdate); i++)
{
hSystemStore = pfCertOpenStore(CERT_STORE_PROV_SYSTEM_A, X509_ASN_ENCODING,
0, CERT_SYSTEM_STORE_LOCAL_MACHINE, szStoresToUpdate[i]);
if (hSystemStore == NULL) continue;
if ( (pfCertAddEncodedCertificateToStore(hSystemStore, X509_ASN_ENCODING, pCertContext->pbCertEncoded,
pCertContext->cbCertEncoded, CERT_STORE_ADD_REPLACE_EXISTING, &pCertContextUpdate)) && (pCertContextUpdate != NULL) ) {
// The friendly name is lost in this operation - restore it
if (!pfCertSetCertificateContextProperty(pCertContextUpdate, CERT_FRIENDLY_NAME_PROP_ID, 0, &libwdiNameBlob)) {
wdi_warn("coud not set friendly name: %s", windows_error_str(0));
}
pfCertFreeCertificateContext(pCertContextUpdate);
} else {
wdi_warn("failed to update '%s': %s", szStoresToUpdate[i], windows_error_str(0));
}
pfCertCloseStore(hSystemStore, 0);
}
r= TRUE;
out:
if ((bFreeCSP) && (hCSP)) {
CryptReleaseContext(hCSP, 0);
}
return r;
}
/*
* Digitally sign a file and make it system-trusted by:
* - creating a self signed certificate for code signing
* - adding this certificate to both the Root and TrustedPublisher system stores
* - signing the file provided
* - deleting the self signed certificate private key so that it cannot be reused
*/
BOOL SelfSignFile(LPCSTR szFileName, LPCSTR szCertSubject)
{
PF_DECL(SignerSignEx);
PF_DECL(SignerFreeSignerContext);
PF_DECL(CertFreeCertificateContext);
PF_DECL(CertCloseStore);
BOOL r = FALSE;
LPWSTR wszFileName = NULL;
HRESULT hResult = S_OK;
PCCERT_CONTEXT pCertContext = NULL;
DWORD dwIndex;
SIGNER_FILE_INFO signerFileInfo;
SIGNER_SUBJECT_INFO signerSubjectInfo;
SIGNER_CERT_STORE_INFO signerCertStoreInfo;
SIGNER_CERT signerCert;
SIGNER_SIGNATURE_INFO signerSignatureInfo;
PSIGNER_CONTEXT pSignerContext = NULL;
CRYPT_ATTRIBUTES_ARRAY cryptAttributesArray;
CRYPT_ATTRIBUTE cryptAttribute[2];
CRYPT_INTEGER_BLOB oidSpOpusInfoBlob, oidStatementTypeBlob;
BYTE pbOidSpOpusInfo[] = SP_OPUS_INFO_DATA;
BYTE pbOidStatementType[] = STATEMENT_TYPE_DATA;
PF_INIT_OR_OUT(SignerSignEx, mssign32);
PF_INIT_OR_OUT(SignerFreeSignerContext, mssign32);
PF_INIT_OR_OUT(CertFreeCertificateContext, crypt32);
PF_INIT_OR_OUT(CertCloseStore, crypt32);
// Delete any previous certificate with the same subject
RemoveCertFromStore(szCertSubject, "Root");
RemoveCertFromStore(szCertSubject, "TrustedPublisher");
pCertContext = CreateSelfSignedCert(szCertSubject);
if (pCertContext == NULL) {
goto out;
}
wdi_dbg("successfully created certificate '%s'", szCertSubject);
if ( (!AddCertToStore(pCertContext, "Root"))
|| (!AddCertToStore(pCertContext, "TrustedPublisher")) ) {
goto out;
}
wdi_info("added certificate '%s' to 'Root' and 'TrustedPublisher' stores", szCertSubject);
// Setup SIGNER_FILE_INFO struct
signerFileInfo.cbSize = sizeof(SIGNER_FILE_INFO);
wszFileName = UTF8toWCHAR(szFileName);
if (wszFileName == NULL) {
wdi_warn("unable to convert '%s' to UTF16");
goto out;
}
signerFileInfo.pwszFileName = wszFileName;
signerFileInfo.hFile = NULL;
// Prepare SIGNER_SUBJECT_INFO struct
signerSubjectInfo.cbSize = sizeof(SIGNER_SUBJECT_INFO);
dwIndex = 0;
signerSubjectInfo.pdwIndex = &dwIndex;
signerSubjectInfo.dwSubjectChoice = SIGNER_SUBJECT_FILE;
signerSubjectInfo.pSignerFileInfo = &signerFileInfo;
// Prepare SIGNER_CERT_STORE_INFO struct
signerCertStoreInfo.cbSize = sizeof(SIGNER_CERT_STORE_INFO);
signerCertStoreInfo.pSigningCert = pCertContext;
signerCertStoreInfo.dwCertPolicy = SIGNER_CERT_POLICY_CHAIN;
signerCertStoreInfo.hCertStore = NULL;
// Prepare SIGNER_CERT struct
signerCert.cbSize = sizeof(SIGNER_CERT);
signerCert.dwCertChoice = SIGNER_CERT_STORE;
signerCert.pCertStoreInfo = &signerCertStoreInfo;
signerCert.hwnd = NULL;
// Prepare the additional Authenticode OIDs
oidSpOpusInfoBlob.cbData = sizeof(pbOidSpOpusInfo);
oidSpOpusInfoBlob.pbData = pbOidSpOpusInfo;
oidStatementTypeBlob.cbData = sizeof(pbOidStatementType);
oidStatementTypeBlob.pbData = pbOidStatementType;
cryptAttribute[0].cValue = 1;
cryptAttribute[0].rgValue = &oidSpOpusInfoBlob;
cryptAttribute[0].pszObjId = "1.3.6.1.4.1.311.2.1.12"; // SPC_SP_OPUS_INFO_OBJID in wintrust.h
cryptAttribute[1].cValue = 1;
cryptAttribute[1].rgValue = &oidStatementTypeBlob;
cryptAttribute[1].pszObjId = "1.3.6.1.4.1.311.2.1.11"; // SPC_STATEMENT_TYPE_OBJID in wintrust.h
cryptAttributesArray.cAttr = 2;
cryptAttributesArray.rgAttr = cryptAttribute;
// Prepare SIGNER_SIGNATURE_INFO struct
signerSignatureInfo.cbSize = sizeof(SIGNER_SIGNATURE_INFO);
signerSignatureInfo.algidHash = CALG_SHA_256;
signerSignatureInfo.dwAttrChoice = SIGNER_NO_ATTR;
signerSignatureInfo.pAttrAuthcode = NULL;
signerSignatureInfo.psAuthenticated = &cryptAttributesArray;
signerSignatureInfo.psUnauthenticated = NULL;
// Sign file with cert
hResult = pfSignerSignEx(0, &signerSubjectInfo, &signerCert, &signerSignatureInfo, NULL, NULL, NULL, NULL, &pSignerContext);
if (hResult != S_OK) {
wdi_warn("SignerSignEx failed. hResult #%X, error %s", hResult, windows_error_str(0));
goto out;
}
r = TRUE;
wdi_info("successfully signed file '%s'", szFileName);
// Clean up
out:
/*
* Because we installed our certificate as a Root CA as well as a Trusted Publisher
* we *MUST* ensure that the private key is destroyed, so that it cannot be reused
* by an attacker to self sign a malicious applications.
*/
if ((pCertContext != NULL) && (DeletePrivateKey(pCertContext))) {
wdi_info("successfully deleted private key");
}
if (wszFileName != NULL) free((void*)wszFileName);
if (pSignerContext != NULL) pfSignerFreeSignerContext(pSignerContext);
if (pCertContext != NULL) pfCertFreeCertificateContext(pCertContext);
return r;
}
/*
* Opens a file and computes the SHA1 Authenticode Hash
*/
static BOOL CalcHash(BYTE* pbHash, LPCSTR szfilePath)
{
PF_DECL(CryptCATAdminCalcHashFromFileHandle);
BOOL r = FALSE;
HANDLE hFile = NULL;
DWORD cbHash = SHA1_HASH_LENGTH;
LPWSTR wszFilePath = NULL;
PF_INIT_OR_OUT(CryptCATAdminCalcHashFromFileHandle, wintrust);
// Compute the SHA1 hash
wszFilePath = UTF8toWCHAR(szfilePath);
hFile = CreateFileW(wszFilePath, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (hFile == INVALID_HANDLE_VALUE) goto out;
if ( (!pfCryptCATAdminCalcHashFromFileHandle(hFile, &cbHash, pbHash, 0)) ) goto out;
r = TRUE;
out:
if (wszFilePath != NULL) free(wszFilePath);
if (hFile) CloseHandle(hFile);
return r;
}
/*
* Add a new member to a cat file, containing the hash for the relevant file
*/
static BOOL AddFileHash(HANDLE hCat, LPCSTR szFileName, BYTE* pbFileHash)
{
const GUID inf_guid = {0xDE351A42, 0x8E59, 0x11D0, {0x8C, 0x47, 0x00, 0xC0, 0x4F, 0xC2, 0x95, 0xEE}};
const GUID pe_guid = {0xC689AAB8, 0x8E78, 0x11D0, {0x8C, 0x47, 0x00, 0xC0, 0x4F, 0xC2, 0x95, 0xEE}};
const BYTE fImageData = 0xA0; // Flags used for the SPC_PE_IMAGE_DATA "<<<Obsolete>>>" link
LPCWSTR wszOSAttr = L"2:5.1,2:5.2,2:6.0,2:6.1";
PF_DECL(CryptCATPutMemberInfo);
PF_DECL(CryptCATPutAttrInfo);
PF_DECL(CryptEncodeObject);
BOOL bPEType = TRUE;
CRYPTCATMEMBER* pCatMember = NULL;
SIP_INDIRECT_DATA sSIPData;
SPC_LINK sSPCLink;
SPC_PE_IMAGE_DATA sSPCImageData;
WCHAR wszHash[2*SHA1_HASH_LENGTH+1];
LPWSTR wszFileName = NULL;
LPCSTR szExt;
LPSTR szExtCopy = NULL;
BYTE pbEncoded[64];
DWORD cbEncoded;
int i;
BOOL r= FALSE;
PF_INIT_OR_OUT(CryptCATPutMemberInfo, wintrust);
PF_INIT_OR_OUT(CryptCATPutAttrInfo, wintrust);
PF_INIT_OR_OUT(CryptEncodeObject, crypt32);
// Create the required UTF-16 strings
for (i=0; i<SHA1_HASH_LENGTH; i++) {
_snwprintf((wchar_t*)(&wszHash[2*i]), 3, L"%02X", pbFileHash[i]);
}
wszFileName = UTF8toWCHAR(szFileName);
if (wszFileName == NULL) {
goto out;
}
_wcslwr(wszFileName); // All cat filenames seem to be lowercases
// Set the PE or CAB/INF type according to the extension
for (szExt = &szFileName[strlen(szFileName)]; (szExt > szFileName) && (*szExt!='.'); szExt--);
if (szExt == szFileName) {