forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassemblyspec.cpp
More file actions
1831 lines (1564 loc) · 55 KB
/
assemblyspec.cpp
File metadata and controls
1831 lines (1564 loc) · 55 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
/*============================================================
**
** Header: AssemblySpec.cpp
**
** Purpose: Implements Assembly binding class
**
**
**
===========================================================*/
#include "common.h"
#include <stdlib.h>
#include "assemblyspec.hpp"
#include "eeconfig.h"
#include "strongname.h"
#include "strongnameholders.h"
#include "eventtrace.h"
#ifdef FEATURE_COMINTEROP
#include "clrprivbinderutil.h"
#include "winrthelpers.h"
#endif
#include "../binder/inc/bindertracing.h"
#ifdef _DEBUG
// This debug-only wrapper for LookupAssembly is solely for the use of postconditions and
// assertions. The problem is that the real LookupAssembly can throw an OOM
// simply because it can't allocate scratch space. For the sake of asserting,
// we can treat those as successful lookups.
BOOL UnsafeVerifyLookupAssembly(AssemblySpecBindingCache *pCache, AssemblySpec *pSpec, DomainAssembly *pComparator)
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_TRIGGERS;
STATIC_CONTRACT_FORBID_FAULT;
BOOL result = FALSE;
EX_TRY
{
SCAN_IGNORE_FAULT; // Won't go away: This wrapper exists precisely to turn an OOM here into something our postconditions can deal with.
result = (pComparator == pCache->LookupAssembly(pSpec));
}
EX_CATCH
{
Exception *ex = GET_EXCEPTION();
result = ex->IsTransient();
}
EX_END_CATCH(SwallowAllExceptions)
return result;
}
#endif
#ifdef _DEBUG
// This debug-only wrapper for LookupFile is solely for the use of postconditions and
// assertions. The problem is that the real LookupFile can throw an OOM
// simply because it can't allocate scratch space. For the sake of asserting,
// we can treat those as successful lookups.
BOOL UnsafeVerifyLookupFile(AssemblySpecBindingCache *pCache, AssemblySpec *pSpec, PEAssembly *pComparator)
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_TRIGGERS;
STATIC_CONTRACT_FORBID_FAULT;
BOOL result = FALSE;
EX_TRY
{
SCAN_IGNORE_FAULT; // Won't go away: This wrapper exists precisely to turn an OOM here into something our postconditions can deal with.
result = pCache->LookupFile(pSpec)->Equals(pComparator);
}
EX_CATCH
{
Exception *ex = GET_EXCEPTION();
result = ex->IsTransient();
}
EX_END_CATCH(SwallowAllExceptions)
return result;
}
#endif
#ifdef _DEBUG
// This debug-only wrapper for Contains is solely for the use of postconditions and
// assertions. The problem is that the real Contains can throw an OOM
// simply because it can't allocate scratch space. For the sake of asserting,
// we can treat those as successful lookups.
BOOL UnsafeContains(AssemblySpecBindingCache *pCache, AssemblySpec *pSpec)
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_TRIGGERS;
STATIC_CONTRACT_FORBID_FAULT;
BOOL result = FALSE;
EX_TRY
{
SCAN_IGNORE_FAULT; // Won't go away: This wrapper exists precisely to turn an OOM here into something our postconditions can deal with.
result = pCache->Contains(pSpec);
}
EX_CATCH
{
Exception *ex = GET_EXCEPTION();
result = ex->IsTransient();
}
EX_END_CATCH(SwallowAllExceptions)
return result;
}
#endif
AssemblySpecHash::~AssemblySpecHash()
{
CONTRACTL
{
DESTRUCTOR_CHECK;
NOTHROW;
GC_TRIGGERS;
MODE_ANY;
}
CONTRACTL_END;
PtrHashMap::PtrIterator i = m_map.begin();
while (!i.end())
{
AssemblySpec *s = (AssemblySpec*) i.GetValue();
if (m_pHeap != NULL)
s->~AssemblySpec();
else
delete s;
++i;
}
}
// Check assembly name for invalid characters
// Return value:
// TRUE: If no invalid characters were found, or if the assembly name isn't set
// FALSE: If invalid characters were found
// This is needed to prevent security loopholes with ':', '/' and '\' in the assembly name
BOOL AssemblySpec::IsValidAssemblyName()
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
}
CONTRACTL_END;
if (GetName())
{
SString ssAssemblyName(SString::Utf8, GetName());
for (SString::Iterator i = ssAssemblyName.Begin(); i[0] != W('\0'); i++) {
switch (i[0]) {
case W(':'):
case W('\\'):
case W('/'):
return FALSE;
default:
break;
}
}
}
return TRUE;
}
HRESULT AssemblySpec::InitializeSpecInternal(mdToken kAssemblyToken,
IMDInternalImport *pImport,
DomainAssembly *pStaticParent,
BOOL fAllowAllocation)
{
CONTRACTL
{
INSTANCE_CHECK;
if (fAllowAllocation) {GC_TRIGGERS;} else {GC_NOTRIGGER;};
if (fAllowAllocation) {INJECT_FAULT(COMPlusThrowOM());} else {FORBID_FAULT;};
NOTHROW;
MODE_ANY;
PRECONDITION(pImport->IsValidToken(kAssemblyToken));
PRECONDITION(TypeFromToken(kAssemblyToken) == mdtAssembly
|| TypeFromToken(kAssemblyToken) == mdtAssemblyRef);
}
CONTRACTL_END;
HRESULT hr = S_OK;
EX_TRY
{
IfFailThrow(BaseAssemblySpec::Init(kAssemblyToken,pImport));
if (IsContentType_WindowsRuntime())
{
if (!fAllowAllocation)
{ // We don't support this because we must be able to allocate in order to
// extract embedded type names for the native image scenario. Currently,
// the only caller of this method with fAllowAllocation == FALSE is
// Module::GetAssemblyIfLoaded, and since this method will only check the
// assembly spec cache, and since we can't cache WinRT assemblies, this
// limitation should have no negative impact.
IfFailThrow(E_FAIL);
}
// Extract embedded content, if present (currently used for embedded WinRT type names).
ParseEncodedName();
}
// For static binds, we cannot reference a weakly named assembly from a strong named one.
// (Note that this constraint doesn't apply to dynamic binds which is why this check is
// not farther down the stack.)
if (pStaticParent != NULL)
{
// We dont validate this for CoreCLR as there is no good use-case for this scenario.
SetParentAssembly(pStaticParent);
}
}
EX_CATCH_HRESULT(hr);
return hr;
} // AssemblySpec::InitializeSpecInternal
void AssemblySpec::InitializeSpec(PEAssembly * pFile)
{
CONTRACTL
{
INSTANCE_CHECK;
THROWS;
GC_TRIGGERS;
MODE_ANY;
PRECONDITION(CheckPointer(pFile));
INJECT_FAULT(COMPlusThrowOM(););
}
CONTRACTL_END;
ReleaseHolder<IMDInternalImport> pImport(pFile->GetMDImportWithRef());
mdAssembly a;
IfFailThrow(pImport->GetAssemblyFromScope(&a));
InitializeSpec(a, pImport, NULL);
#ifdef FEATURE_COMINTEROP
if (IsContentType_WindowsRuntime())
{
LPCSTR szNamespace;
LPCSTR szTypeName;
SString ssFakeNameSpaceAllocationBuffer;
IfFailThrow(::GetFirstWinRTTypeDef(pImport, &szNamespace, &szTypeName, pFile->GetPath(), &ssFakeNameSpaceAllocationBuffer));
SetWindowsRuntimeType(szNamespace, szTypeName);
// pFile is not guaranteed to stay around (it might be unloaded with the AppDomain), we have to copy the type name
CloneFields(WINRT_TYPE_NAME_OWNED);
}
#endif //FEATURE_COMINTEROP
// Set the binding context for the AssemblySpec
ICLRPrivBinder* pCurrentBinder = GetBindingContext();
ICLRPrivBinder* pExpectedBinder = pFile->GetBindingContext();
if (pCurrentBinder == NULL)
{
// We should aways having the binding context in the PEAssembly. The only exception to this are the following:
//
// 1) when we are here during EEStartup and loading mscorlib.dll.
// 2) We are dealing with dynamic assemblies
_ASSERTE((pExpectedBinder != NULL) || pFile->IsSystem() || pFile->IsDynamic());
SetBindingContext(pExpectedBinder);
}
}
#ifndef CROSSGEN_COMPILE
// This uses thread storage to allocate space. Please use Checkpoint and release it.
HRESULT AssemblySpec::InitializeSpec(StackingAllocator* alloc, ASSEMBLYNAMEREF* pName,
BOOL fParse /*=TRUE*/)
{
CONTRACTL
{
INSTANCE_CHECK;
THROWS;
MODE_COOPERATIVE;
GC_TRIGGERS;
PRECONDITION(CheckPointer(alloc));
PRECONDITION(CheckPointer(pName));
PRECONDITION(IsProtectedByGCFrame(pName));
INJECT_FAULT(COMPlusThrowOM(););
}
CONTRACTL_END;
// Simple name
if ((*pName)->GetSimpleName() != NULL) {
WCHAR* pString;
int iString;
((STRINGREF) (*pName)->GetSimpleName())->RefInterpretGetStringValuesDangerousForGC(&pString, &iString);
DWORD lgth = WszWideCharToMultiByte(CP_UTF8, 0, pString, iString, NULL, 0, NULL, NULL);
if (lgth + 1 < lgth)
ThrowHR(E_INVALIDARG);
LPSTR lpName = (LPSTR) alloc->Alloc(S_UINT32(lgth) + S_UINT32(1));
WszWideCharToMultiByte(CP_UTF8, 0, pString, iString,
lpName, lgth+1, NULL, NULL);
lpName[lgth] = '\0';
// Calling Init here will trash the cached lpName in AssemblySpec, but lpName is still needed by ParseName
// call below.
SetName(lpName);
}
else
{
// Ensure we always have an assembly simple name.
LPSTR lpName = (LPSTR) alloc->Alloc(S_UINT32(1));
lpName[0] = '\0';
SetName(lpName);
}
if (fParse) {
HRESULT hr = ParseName();
// Sometimes Fusion flags invalid characters in the name, sometimes it doesn't
// depending on where the invalid characters are
// We want to Raise the assembly resolve event on all invalid characters
// but calling ParseName before checking for invalid characters gives Fusion a chance to
// parse the rest of the name (to get a public key token, etc.)
if ((hr == FUSION_E_INVALID_NAME) || (!IsValidAssemblyName())) {
// This is the only case where we do not throw on an error
// We don't want to throw so as to give the caller a chance to call RaiseAssemblyResolveEvent
// The only caller that cares is System.Reflection.Assembly.InternalLoad which calls us through
// AssemblyNameNative::Init
return FUSION_E_INVALID_NAME;
}
else
IfFailThrow(hr);
}
else {
AssemblyMetaDataInternal asmInfo;
// Flags
DWORD dwFlags = (*pName)->GetFlags();
// Version
VERSIONREF version = (VERSIONREF) (*pName)->GetVersion();
if(version == NULL) {
asmInfo.usMajorVersion = (USHORT)-1;
asmInfo.usMinorVersion = (USHORT)-1;
asmInfo.usBuildNumber = (USHORT)-1;
asmInfo.usRevisionNumber = (USHORT)-1;
}
else {
asmInfo.usMajorVersion = (USHORT)version->GetMajor();
asmInfo.usMinorVersion = (USHORT)version->GetMinor();
asmInfo.usBuildNumber = (USHORT)version->GetBuild();
asmInfo.usRevisionNumber = (USHORT)version->GetRevision();
}
asmInfo.szLocale = 0;
asmInfo.ulOS = 0;
asmInfo.rOS = 0;
asmInfo.ulProcessor = 0;
asmInfo.rProcessor = 0;
if ((*pName)->GetCultureInfo() != NULL)
{
struct _gc {
OBJECTREF cultureinfo;
STRINGREF pString;
} gc;
gc.cultureinfo = (*pName)->GetCultureInfo();
gc.pString = NULL;
GCPROTECT_BEGIN(gc);
MethodDescCallSite getName(METHOD__CULTURE_INFO__GET_NAME, &gc.cultureinfo);
ARG_SLOT args[] = {
ObjToArgSlot(gc.cultureinfo)
};
gc.pString = getName.Call_RetSTRINGREF(args);
if (gc.pString != NULL) {
WCHAR* pString;
int iString;
gc.pString->RefInterpretGetStringValuesDangerousForGC(&pString, &iString);
DWORD lgth = WszWideCharToMultiByte(CP_UTF8, 0, pString, iString, NULL, 0, NULL, NULL);
S_UINT32 lengthWillNull = S_UINT32(lgth) + S_UINT32(1);
LPSTR lpLocale = (LPSTR) alloc->Alloc(lengthWillNull);
if (lengthWillNull.IsOverflow())
{
COMPlusThrowHR(COR_E_OVERFLOW);
}
WszWideCharToMultiByte(CP_UTF8, 0, pString, iString,
lpLocale, lengthWillNull.Value(), NULL, NULL);
lpLocale[lgth] = '\0';
asmInfo.szLocale = lpLocale;
}
GCPROTECT_END();
}
// Strong name
DWORD cbPublicKeyOrToken=0;
BYTE* pbPublicKeyOrToken=NULL;
// Note that we prefer to take a public key token if present,
// even if flags indicate a full public key
if ((*pName)->GetPublicKeyToken() != NULL) {
dwFlags &= ~afPublicKey;
PBYTE pArray = NULL;
pArray = (*pName)->GetPublicKeyToken()->GetDirectPointerToNonObjectElements();
cbPublicKeyOrToken = (*pName)->GetPublicKeyToken()->GetNumComponents();
pbPublicKeyOrToken = pArray;
}
else if ((*pName)->GetPublicKey() != NULL) {
dwFlags |= afPublicKey;
PBYTE pArray = NULL;
pArray = (*pName)->GetPublicKey()->GetDirectPointerToNonObjectElements();
cbPublicKeyOrToken = (*pName)->GetPublicKey()->GetNumComponents();
pbPublicKeyOrToken = pArray;
}
BaseAssemblySpec::Init(GetName(),&asmInfo,pbPublicKeyOrToken,cbPublicKeyOrToken,dwFlags);
}
CloneFieldsToStackingAllocator(alloc);
// Extract embedded WinRT name, if present.
ParseEncodedName();
return S_OK;
}
void AssemblySpec::AssemblyNameInit(ASSEMBLYNAMEREF* pAsmName, PEImage* pImageInfo)
{
CONTRACTL
{
THROWS;
MODE_COOPERATIVE;
GC_TRIGGERS;
PRECONDITION(IsProtectedByGCFrame (pAsmName));
}
CONTRACTL_END;
struct _gc {
OBJECTREF CultureInfo;
STRINGREF Locale;
OBJECTREF Version;
U1ARRAYREF PublicKeyOrToken;
STRINGREF Name;
STRINGREF CodeBase;
} gc;
ZeroMemory(&gc, sizeof(gc));
GCPROTECT_BEGIN(gc);
if ((m_context.usMajorVersion != (USHORT) -1) &&
(m_context.usMinorVersion != (USHORT) -1)) {
MethodTable* pVersion = MscorlibBinder::GetClass(CLASS__VERSION);
// version
gc.Version = AllocateObject(pVersion);
// BaseAssemblySpec and AssemblyName properties store uint16 components for the version. Version and AssemblyVersion
// store int32 or uint32. When the former are initialized from the latter, the components are truncated to uint16 size.
// When the latter are initialized from the former, they are zero-extended to int32 size. For uint16 components, the max
// value is used to indicate an unspecified component. For int32 components, -1 is used. Since we're initializing a
// Version from an assembly version, map the uint16 unspecified value to the int32 size.
int componentCount = 2;
if (m_context.usBuildNumber != (USHORT)-1)
{
++componentCount;
if (m_context.usRevisionNumber != (USHORT)-1)
{
++componentCount;
}
}
switch (componentCount)
{
case 2:
{
// Call Version(int, int) because Version(int, int, int, int) does not allow passing the unspecified value -1
MethodDescCallSite ctorMethod(METHOD__VERSION__CTOR_Ix2);
ARG_SLOT VersionArgs[] =
{
ObjToArgSlot(gc.Version),
(ARG_SLOT) m_context.usMajorVersion,
(ARG_SLOT) m_context.usMinorVersion
};
ctorMethod.Call(VersionArgs);
break;
}
case 3:
{
// Call Version(int, int, int) because Version(int, int, int, int) does not allow passing the unspecified value -1
MethodDescCallSite ctorMethod(METHOD__VERSION__CTOR_Ix3);
ARG_SLOT VersionArgs[] =
{
ObjToArgSlot(gc.Version),
(ARG_SLOT) m_context.usMajorVersion,
(ARG_SLOT) m_context.usMinorVersion,
(ARG_SLOT) m_context.usBuildNumber
};
ctorMethod.Call(VersionArgs);
break;
}
default:
{
// Call Version(int, int, int, int)
_ASSERTE(componentCount == 4);
MethodDescCallSite ctorMethod(METHOD__VERSION__CTOR_Ix4);
ARG_SLOT VersionArgs[] =
{
ObjToArgSlot(gc.Version),
(ARG_SLOT) m_context.usMajorVersion,
(ARG_SLOT) m_context.usMinorVersion,
(ARG_SLOT) m_context.usBuildNumber,
(ARG_SLOT) m_context.usRevisionNumber
};
ctorMethod.Call(VersionArgs);
break;
}
}
}
// cultureinfo
if (m_context.szLocale) {
MethodTable* pCI = MscorlibBinder::GetClass(CLASS__CULTURE_INFO);
gc.CultureInfo = AllocateObject(pCI);
gc.Locale = StringObject::NewString(m_context.szLocale);
MethodDescCallSite strCtor(METHOD__CULTURE_INFO__STR_CTOR);
ARG_SLOT args[2] =
{
ObjToArgSlot(gc.CultureInfo),
ObjToArgSlot(gc.Locale)
};
strCtor.Call(args);
}
// public key or token byte array
if (m_pbPublicKeyOrToken)
{
gc.PublicKeyOrToken = (U1ARRAYREF)AllocatePrimitiveArray(ELEMENT_TYPE_U1, m_cbPublicKeyOrToken);
memcpyNoGCRefs(gc.PublicKeyOrToken->m_Array, m_pbPublicKeyOrToken, m_cbPublicKeyOrToken);
}
// simple name
if(GetName())
gc.Name = StringObject::NewString(GetName());
if (GetCodeBase())
gc.CodeBase = StringObject::NewString(GetCodeBase());
BOOL fPublicKey = m_dwFlags & afPublicKey;
ULONG hashAlgId=0;
if (pImageInfo != NULL)
{
if(!pImageInfo->GetMDImport()->IsValidToken(TokenFromRid(1, mdtAssembly)))
{
ThrowHR(COR_E_BADIMAGEFORMAT);
}
IfFailThrow(pImageInfo->GetMDImport()->GetAssemblyProps(TokenFromRid(1, mdtAssembly), NULL, NULL, &hashAlgId, NULL, NULL, NULL));
}
MethodDescCallSite init(METHOD__ASSEMBLY_NAME__CTOR);
ARG_SLOT MethodArgs[] =
{
ObjToArgSlot(*pAsmName),
ObjToArgSlot(gc.Name),
fPublicKey ? ObjToArgSlot(gc.PublicKeyOrToken) :
(ARG_SLOT) NULL, // public key
fPublicKey ? (ARG_SLOT) NULL :
ObjToArgSlot(gc.PublicKeyOrToken), // public key token
ObjToArgSlot(gc.Version),
ObjToArgSlot(gc.CultureInfo),
(ARG_SLOT) hashAlgId,
(ARG_SLOT) 1, // AssemblyVersionCompatibility.SameMachine
ObjToArgSlot(gc.CodeBase),
(ARG_SLOT) m_dwFlags,
(ARG_SLOT) NULL // key pair
};
init.Call(MethodArgs);
// Only set the processor architecture if we're looking at a newer binary that has
// that information in the PE, and we're not looking at a reference assembly.
if(pImageInfo && !pImageInfo->HasV1Metadata() && !pImageInfo->IsReferenceAssembly())
{
DWORD dwMachine, dwKind;
pImageInfo->GetPEKindAndMachine(&dwMachine,&dwKind);
MethodDescCallSite setPA(METHOD__ASSEMBLY_NAME__SET_PROC_ARCH_INDEX);
ARG_SLOT PAMethodArgs[] = {
ObjToArgSlot(*pAsmName),
(ARG_SLOT)dwMachine,
(ARG_SLOT)dwKind
};
setPA.Call(PAMethodArgs);
}
GCPROTECT_END();
}
// This uses thread storage to allocate space. Please use Checkpoint and release it.
void AssemblySpec::SetCodeBase(StackingAllocator* alloc, STRINGREF *pCodeBase)
{
CONTRACTL
{
INSTANCE_CHECK;
THROWS;
GC_TRIGGERS;
MODE_COOPERATIVE;
PRECONDITION(CheckPointer(pCodeBase));
INJECT_FAULT(COMPlusThrowOM(););
}
CONTRACTL_END;
// Codebase
if (pCodeBase != NULL && *pCodeBase != NULL) {
WCHAR* pString;
int iString;
(*pCodeBase)->RefInterpretGetStringValuesDangerousForGC(&pString, &iString);
DWORD dwCodeBase = (DWORD) iString+1;
m_wszCodeBase = new (alloc) WCHAR[dwCodeBase];
memcpy((void*)m_wszCodeBase, pString, dwCodeBase * sizeof(WCHAR));
}
}
#endif // CROSSGEN_COMPILE
// Check if the supplied assembly's public key matches up with the one in the Spec, if any
// Throws an appropriate exception in case of a mismatch
void AssemblySpec::MatchPublicKeys(Assembly *pAssembly)
{
CONTRACTL
{
INSTANCE_CHECK;
THROWS;
GC_TRIGGERS;
MODE_ANY;
}
CONTRACTL_END;
// Check that the public keys are the same as in the AR.
if (!IsStrongNamed())
return;
const void *pbPublicKey;
DWORD cbPublicKey;
pbPublicKey = pAssembly->GetPublicKey(&cbPublicKey);
if (cbPublicKey == 0)
ThrowHR(FUSION_E_PRIVATE_ASM_DISALLOWED);
if (IsAfPublicKey(m_dwFlags))
{
if ((m_cbPublicKeyOrToken != cbPublicKey) ||
memcmp(m_pbPublicKeyOrToken, pbPublicKey, m_cbPublicKeyOrToken))
{
ThrowHR(FUSION_E_REF_DEF_MISMATCH);
}
}
else
{
// Ref has a token
StrongNameBufferHolder<BYTE> pbStrongNameToken;
DWORD cbStrongNameToken;
if (!StrongNameTokenFromPublicKey((BYTE*) pbPublicKey,
cbPublicKey,
&pbStrongNameToken,
&cbStrongNameToken))
ThrowHR(StrongNameErrorInfo());
if ((m_cbPublicKeyOrToken != cbStrongNameToken) ||
memcmp(m_pbPublicKeyOrToken, pbStrongNameToken, cbStrongNameToken))
{
ThrowHR(FUSION_E_REF_DEF_MISMATCH);
}
}
}
Assembly *AssemblySpec::LoadAssembly(FileLoadLevel targetLevel, BOOL fThrowOnFileNotFound)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
MODE_ANY;
}
CONTRACTL_END;
DomainAssembly * pDomainAssembly = LoadDomainAssembly(targetLevel, fThrowOnFileNotFound);
if (pDomainAssembly == NULL) {
_ASSERTE(!fThrowOnFileNotFound);
return NULL;
}
return pDomainAssembly->GetAssembly();
}
// Returns a BOOL indicating if the two Binder references point to the same
// binder instance.
BOOL AreSameBinderInstance(ICLRPrivBinder *pBinderA, ICLRPrivBinder *pBinderB)
{
LIMITED_METHOD_CONTRACT;
BOOL fIsSameInstance = (pBinderA == pBinderB);
if (!fIsSameInstance && (pBinderA != NULL) && (pBinderB != NULL))
{
// Get the ID for the first binder
UINT_PTR binderIDA = 0, binderIDB = 0;
HRESULT hr = pBinderA->GetBinderID(&binderIDA);
if (SUCCEEDED(hr))
{
// Get the ID for the second binder
hr = pBinderB->GetBinderID(&binderIDB);
if (SUCCEEDED(hr))
{
fIsSameInstance = (binderIDA == binderIDB);
}
}
}
return fIsSameInstance;
}
ICLRPrivBinder* AssemblySpec::GetBindingContextFromParentAssembly(AppDomain *pDomain)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
MODE_ANY;
PRECONDITION(pDomain != NULL);
}
CONTRACTL_END;
ICLRPrivBinder *pParentAssemblyBinder = NULL;
DomainAssembly *pParentDomainAssembly = GetParentAssembly();
if(pParentDomainAssembly != NULL)
{
// Get the PEAssembly associated with the parent's domain assembly
PEAssembly *pParentPEAssembly = pParentDomainAssembly->GetFile();
// ICLRPrivAssembly implements ICLRPrivBinder and thus, "is a" binder in a manner of semantics.
pParentAssemblyBinder = pParentPEAssembly->GetBindingContext();
}
if (GetPreferFallbackLoadContextBinder())
{
// If we have been asked to use the fallback load context binder (currently only supported for AssemblyLoadContext.LoadFromAssemblyName),
// then pretend we do not have any binder yet available.
_ASSERTE(GetFallbackLoadContextBinderForRequestingAssembly() != NULL);
pParentAssemblyBinder = NULL;
}
if (pParentAssemblyBinder == NULL)
{
// If the parent assembly binder is not available, then we maybe dealing with one of the following
// assembly scenarios:
//
// 1) Domain Neutral assembly
// 2) Entrypoint assembly
// 3) AssemblyLoadContext.LoadFromAssemblyName
//
// For (1) and (2), we will need to bind against the DefaultContext binder (aka TPA Binder). This happens
// below if we do not find the parent assembly binder.
//
// For (3), fetch the fallback load context binder reference.
pParentAssemblyBinder = GetFallbackLoadContextBinderForRequestingAssembly();
}
if (pParentAssemblyBinder != NULL)
{
CLRPrivBinderCoreCLR *pTPABinder = pDomain->GetTPABinderContext();
if (AreSameBinderInstance(pTPABinder, pParentAssemblyBinder))
{
// If the parent assembly is a platform (TPA) assembly, then its binding context will always be the TPABinder context. In
// such case, we will return the default context for binding to allow the bind to go
// via the custom binder context, if it was overridden. If it was not overridden, then we will get the expected
// TPABinder context anyways.
//
// Get the reference to the default binding context (this could be the TPABinder context or custom AssemblyLoadContext)
pParentAssemblyBinder = static_cast<ICLRPrivBinder*>(pDomain->GetTPABinderContext());
}
}
#if defined(FEATURE_COMINTEROP)
if (!IsContentType_WindowsRuntime() && (pParentAssemblyBinder != NULL))
{
CLRPrivBinderWinRT *pWinRTBinder = pDomain->GetWinRtBinder();
if (AreSameBinderInstance(pWinRTBinder, pParentAssemblyBinder))
{
// We could be here when a non-WinRT assembly load is triggerred by a winmd (e.g. System.Runtime being loaded due to
// types being referenced from Windows.Foundation.Winmd).
//
// If the AssemblySpec does not correspond to WinRT type but our parent assembly binder is a WinRT binder,
// then such an assembly will not be found by the binder.
// In such a case, the parent binder should be the fallback binder for the WinRT assembly if one exists.
ICLRPrivBinder* pParentWinRTBinder = pParentAssemblyBinder;
pParentAssemblyBinder = NULL;
ReleaseHolder<ICLRPrivAssemblyID_WinRT> assembly;
if (SUCCEEDED(pParentWinRTBinder->QueryInterface<ICLRPrivAssemblyID_WinRT>(&assembly)))
{
pParentAssemblyBinder = dac_cast<PTR_CLRPrivAssemblyWinRT>(assembly.GetValue())->GetFallbackBinder();
// The fallback binder should not be a WinRT binder.
_ASSERTE(!AreSameBinderInstance(pWinRTBinder, pParentAssemblyBinder));
}
}
}
#endif // defined(FEATURE_COMINTEROP)
if (!pParentAssemblyBinder)
{
// We can be here when loading assemblies via the host (e.g. ICLRRuntimeHost2::ExecuteAssembly) or dealing with assemblies
// whose parent is a domain neutral assembly (see comment above for details).
//
// In such a case, the parent assembly (semantically) is CoreLibrary and thus, the default binding context should be
// used as the parent assembly binder.
pParentAssemblyBinder = static_cast<ICLRPrivBinder*>(pDomain->GetTPABinderContext());
}
return pParentAssemblyBinder;
}
DomainAssembly *AssemblySpec::LoadDomainAssembly(FileLoadLevel targetLevel,
BOOL fThrowOnFileNotFound)
{
CONTRACT(DomainAssembly *)
{
INSTANCE_CHECK;
THROWS;
GC_TRIGGERS;
MODE_ANY;
POSTCONDITION((!fThrowOnFileNotFound && CheckPointer(RETVAL, NULL_OK))
|| CheckPointer(RETVAL));
INJECT_FAULT(COMPlusThrowOM(););
}
CONTRACT_END;
ETWOnStartup (LoaderCatchCall_V1, LoaderCatchCallEnd_V1);
AppDomain* pDomain = GetAppDomain();
DomainAssembly* pAssembly = nullptr;
if (CanUseWithBindingCache())
{
pAssembly = pDomain->FindCachedAssembly(this);
}
if (pAssembly)
{
BinderTracing::AssemblyBindOperation bindOperation(this);
bindOperation.SetResult(pAssembly->GetFile(), true /*cached*/);
pDomain->LoadDomainFile(pAssembly, targetLevel);
RETURN pAssembly;
}
PEAssemblyHolder pFile(pDomain->BindAssemblySpec(this, fThrowOnFileNotFound));
if (pFile == NULL)
RETURN NULL;
pAssembly = pDomain->LoadDomainAssembly(this, pFile, targetLevel);
RETURN pAssembly;
}
/* static */
Assembly *AssemblySpec::LoadAssembly(LPCSTR pSimpleName,
AssemblyMetaDataInternal* pContext,
const BYTE * pbPublicKeyOrToken,
DWORD cbPublicKeyOrToken,
DWORD dwFlags)
{
CONTRACT(Assembly *)
{
THROWS;
GC_TRIGGERS;
MODE_ANY;
PRECONDITION(CheckPointer(pSimpleName));
POSTCONDITION(CheckPointer(RETVAL));
INJECT_FAULT(COMPlusThrowOM(););
}
CONTRACT_END;
AssemblySpec spec;
IfFailThrow(spec.Init(pSimpleName, pContext,
pbPublicKeyOrToken, cbPublicKeyOrToken, dwFlags));
RETURN spec.LoadAssembly(FILE_LOADED);
}
/* static */
Assembly *AssemblySpec::LoadAssembly(LPCWSTR pFilePath)
{
CONTRACT(Assembly *)
{
THROWS;
GC_TRIGGERS;
MODE_ANY;
PRECONDITION(CheckPointer(pFilePath));
POSTCONDITION(CheckPointer(RETVAL));
INJECT_FAULT(COMPlusThrowOM(););
}
CONTRACT_END;
AssemblySpec spec;
spec.SetCodeBase(pFilePath);
RETURN spec.LoadAssembly(FILE_LOADED);
}
HRESULT AssemblySpec::CheckFriendAssemblyName()
{
WRAPPER_NO_CONTRACT;
// Version, Culture, Architecture, and publickeytoken are not permitted
if ((m_context.usMajorVersion != (USHORT) -1) ||
(m_context.szLocale != NULL) ||
(IsAfPA_Specified(m_dwFlags)) ||
(IsStrongNamed() && !HasPublicKey()))
{
return META_E_CA_BAD_FRIENDS_ARGS;
}
else
{
return S_OK;
}
}
HRESULT AssemblySpec::EmitToken(
IMetaDataAssemblyEmit *pEmit,
mdAssemblyRef *pToken,
BOOL fUsePublicKeyToken, /*=TRUE*/
BOOL fMustBeBindable /*=FALSE*/)
{
CONTRACTL
{
INSTANCE_CHECK;
MODE_ANY;
NOTHROW;
GC_NOTRIGGER;
INJECT_FAULT(return E_OUTOFMEMORY;);
}
CONTRACTL_END;
HRESULT hr = S_OK;
EX_TRY
{
SmallStackSString ssName;
fMustBeBindable ? GetEncodedName(ssName) : GetName(ssName);
ASSEMBLYMETADATA AMD;
AMD.usMajorVersion = m_context.usMajorVersion;
AMD.usMinorVersion = m_context.usMinorVersion;
AMD.usBuildNumber = m_context.usBuildNumber;
AMD.usRevisionNumber = m_context.usRevisionNumber;
if (m_context.szLocale) {
AMD.cbLocale = MultiByteToWideChar(CP_UTF8, 0, m_context.szLocale, -1, NULL, 0);
if(AMD.cbLocale==0)
IfFailGo(HRESULT_FROM_GetLastError());
AMD.szLocale = (LPWSTR) alloca(AMD.cbLocale * sizeof(WCHAR) );
if(MultiByteToWideChar(CP_UTF8, 0, m_context.szLocale, -1, AMD.szLocale, AMD.cbLocale)==0)
IfFailGo(HRESULT_FROM_GetLastError());
}
else {
AMD.cbLocale = 0;
AMD.szLocale = NULL;
}
// If we've been asked to emit a public key token in the reference but we've