This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathbinder.cpp
1366 lines (1126 loc) · 41.5 KB
/
binder.cpp
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.
#include "common.h"
#include "binder.h"
#include "ecall.h"
#include "field.h"
#include "excep.h"
#include "eeconfig.h"
#include "runtimehandles.h"
#include "customattribute.h"
#include "debugdebugger.h"
#include "dllimport.h"
#include "nativeoverlapped.h"
#include "clrvarargs.h"
#include "sigbuilder.h"
#include "olevariant.h"
#ifdef FEATURE_PREJIT
#include "compile.h"
#endif
//
// Retrieve structures from ID.
//
NOINLINE PTR_MethodTable MscorlibBinder::LookupClass(BinderClassID id)
{
WRAPPER_NO_CONTRACT;
return (&g_Mscorlib)->LookupClassLocal(id);
}
PTR_MethodTable MscorlibBinder::GetClassLocal(BinderClassID id)
{
WRAPPER_NO_CONTRACT;
PTR_MethodTable pMT = VolatileLoad(&(m_pClasses[id]));
if (pMT == NULL)
return LookupClassLocal(id);
return pMT;
}
PTR_MethodTable MscorlibBinder::LookupClassLocal(BinderClassID id)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
INJECT_FAULT(ThrowOutOfMemory());
PRECONDITION(id != CLASS__NIL);
PRECONDITION(id <= m_cClasses);
}
CONTRACTL_END;
PTR_MethodTable pMT = NULL;
// Binder methods are used for loading "known" types from mscorlib.dll. Thus they are unlikely to be part
// of a recursive cycle. This is used too broadly to force manual overrides at every callsite.
OVERRIDE_TYPE_LOAD_LEVEL_LIMIT(CLASS_LOADED);
const MscorlibClassDescription *d = m_classDescriptions + (int)id;
pMT = ClassLoader::LoadTypeByNameThrowing(GetModule()->GetAssembly(), d->nameSpace, d->name).AsMethodTable();
_ASSERTE(pMT->GetModule() == GetModule());
#ifndef DACCESS_COMPILE
VolatileStore(&m_pClasses[id], pMT);
#endif
return pMT;
}
NOINLINE MethodDesc * MscorlibBinder::LookupMethod(BinderMethodID id)
{
WRAPPER_NO_CONTRACT;
return (&g_Mscorlib)->LookupMethodLocal(id);
}
MethodDesc * MscorlibBinder::GetMethodLocal(BinderMethodID id)
{
WRAPPER_NO_CONTRACT;
MethodDesc * pMD = VolatileLoad(&(m_pMethods[id]));
if (pMD == NULL)
return LookupMethodLocal(id);
return pMD;
}
MethodDesc * MscorlibBinder::LookupMethodLocal(BinderMethodID id)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
INJECT_FAULT(ThrowOutOfMemory());
PRECONDITION(id != METHOD__NIL);
PRECONDITION(id <= m_cMethods);
}
CONTRACTL_END;
#ifndef DACCESS_COMPILE
MethodDesc * pMD = NULL;
const MscorlibMethodDescription *d = m_methodDescriptions + (id - 1);
MethodTable * pMT = GetClassLocal(d->classID);
_ASSERTE(pMT != NULL && "Couldn't find a type in mscorlib!");
if (d->sig != NULL)
{
Signature sig = GetSignatureLocal(d->sig);
pMD = MemberLoader::FindMethod(pMT, d->name, sig.GetRawSig(), sig.GetRawSigLen(), GetModule());
}
else
{
pMD = MemberLoader::FindMethodByName(pMT, d->name);
}
PREFIX_ASSUME_MSGF(pMD != NULL, ("EE expects method to exist: %s:%s Sig pointer: %p\n", pMT->GetDebugClassName(), d->name, d->sig));
VolatileStore(&m_pMethods[id], pMD);
return pMD;
#else
DacNotImpl();
return NULL;
#endif
}
NOINLINE FieldDesc * MscorlibBinder::LookupField(BinderFieldID id)
{
WRAPPER_NO_CONTRACT;
return (&g_Mscorlib)->LookupFieldLocal(id);
}
FieldDesc * MscorlibBinder::GetFieldLocal(BinderFieldID id)
{
WRAPPER_NO_CONTRACT;
FieldDesc * pFD = VolatileLoad(&(m_pFields[id]));
if (pFD == NULL)
return LookupFieldLocal(id);
return pFD;
}
FieldDesc * MscorlibBinder::LookupFieldLocal(BinderFieldID id)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
INJECT_FAULT(ThrowOutOfMemory());
PRECONDITION(id != FIELD__NIL);
PRECONDITION(id <= m_cFields);
}
CONTRACTL_END;
FieldDesc * pFD = NULL;
const MscorlibFieldDescription *d = m_fieldDescriptions + (id - 1);
MethodTable * pMT = GetClassLocal(d->classID);
pFD = MemberLoader::FindField(pMT, d->name, NULL, 0, NULL);
#ifndef DACCESS_COMPILE
PREFIX_ASSUME_MSGF(pFD != NULL, ("EE expects field to exist: %s:%s\n", pMT->GetDebugClassName(), d->name));
VolatileStore(&(m_pFields[id]), pFD);
#endif
return pFD;
}
NOINLINE PTR_MethodTable MscorlibBinder::LookupClassIfExist(BinderClassID id)
{
CONTRACTL
{
GC_NOTRIGGER;
NOTHROW;
FORBID_FAULT;
MODE_ANY;
PRECONDITION(id != CLASS__NIL);
PRECONDITION(id <= (&g_Mscorlib)->m_cClasses);
}
CONTRACTL_END;
// Run the class loader in non-load mode.
ENABLE_FORBID_GC_LOADER_USE_IN_THIS_SCOPE();
// Binder methods are used for loading "known" types from mscorlib.dll. Thus they are unlikely to be part
// of a recursive cycle. This is used too broadly to force manual overrides at every callsite.
OVERRIDE_TYPE_LOAD_LEVEL_LIMIT(CLASS_LOADED);
const MscorlibClassDescription *d = (&g_Mscorlib)->m_classDescriptions + (int)id;
PTR_MethodTable pMT = ClassLoader::LoadTypeByNameThrowing(GetModule()->GetAssembly(), d->nameSpace, d->name,
ClassLoader::ReturnNullIfNotFound, ClassLoader::DontLoadTypes, CLASS_LOAD_UNRESTOREDTYPEKEY).AsMethodTable();
_ASSERTE((pMT == NULL) || (pMT->GetModule() == GetModule()));
#ifndef DACCESS_COMPILE
if ((pMT != NULL) && pMT->IsFullyLoaded())
VolatileStore(&(g_Mscorlib.m_pClasses[id]), pMT);
#endif
return pMT;
}
Signature MscorlibBinder::GetSignature(LPHARDCODEDMETASIG pHardcodedSig)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
INJECT_FAULT(COMPlusThrowOM());
MODE_ANY;
}
CONTRACTL_END
// Make sure all HardCodedMetaSig's are global. Because there is no individual
// cleanup of converted binary sigs, using allocated HardCodedMetaSig's
// can lead to a quiet memory leak.
#ifdef _DEBUG_IMPL
// This #include workaround generates a monster boolean expression that compares
// "this" against the address of every global defined in metasig.h
if (! (0
#define METASIG_BODY(varname, types) || pHardcodedSig==&gsig_ ## varname
#include "metasig.h"
))
{
_ASSERTE(!"The HardCodedMetaSig struct can only be declared as a global in metasig.h.");
}
#endif
return (&g_Mscorlib)->GetSignatureLocal(pHardcodedSig);
}
Signature MscorlibBinder::GetTargetSignature(LPHARDCODEDMETASIG pHardcodedSig)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
INJECT_FAULT(COMPlusThrowOM());
MODE_ANY;
}
CONTRACTL_END
#ifdef CROSSGEN_COMPILE
return GetModule()->m_pBinder->GetSignatureLocal(pHardcodedSig);
#else
return (&g_Mscorlib)->GetSignatureLocal(pHardcodedSig);
#endif
}
// Get the metasig, do a one-time conversion if necessary
Signature MscorlibBinder::GetSignatureLocal(LPHARDCODEDMETASIG pHardcodedSig)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
INJECT_FAULT(COMPlusThrowOM());
MODE_ANY;
}
CONTRACTL_END
PTR_CBYTE pMetaSig = PTR_CBYTE((TADDR)VolatileLoad(&pHardcodedSig->m_pMetaSig));
// To minimize code and data size, the hardcoded metasigs are baked as much as possible
// at compile time. Only the signatures with type references require one-time conversion at runtime.
// the negative size means signature with unresolved type references
if ((INT8)*pMetaSig < 0)
{
#ifndef DACCESS_COMPILE
pMetaSig = ConvertSignature(pHardcodedSig, pMetaSig);
#else
DacNotImpl();
#endif
}
// The metasig has to be resolved at this point
INT8 cbSig = (INT8)*pMetaSig;
_ASSERTE(cbSig > 0);
#ifdef DACCESS_COMPILE
PCCOR_SIGNATURE pSig = (PCCOR_SIGNATURE)
DacInstantiateTypeByAddress(dac_cast<TADDR>(pMetaSig + 1),
cbSig,
true);
#else
PCCOR_SIGNATURE pSig = pMetaSig+1;
#endif
return Signature(pSig, cbSig);
}
#ifndef DACCESS_COMPILE
bool MscorlibBinder::ConvertType(const BYTE*& pSig, SigBuilder * pSigBuilder)
{
bool bSomethingResolved = false;
Again:
CorElementType type = (CorElementType)*pSig++;
switch (type)
{
case ELEMENT_TYPE_GENERICINST:
{
pSigBuilder->AppendElementType(type);
if (ConvertType(pSig, pSigBuilder))
bSomethingResolved = true;
int arity = *pSig++;
pSigBuilder->AppendData(arity);
for (int i = 0; i < arity; i++)
{
if (ConvertType(pSig, pSigBuilder))
bSomethingResolved = true;
}
}
break;
case ELEMENT_TYPE_BYREF:
case ELEMENT_TYPE_PTR:
case ELEMENT_TYPE_SZARRAY:
pSigBuilder->AppendElementType(type);
if (ConvertType(pSig, pSigBuilder))
bSomethingResolved = true;
break;
case ELEMENT_TYPE_CMOD_OPT:
case ELEMENT_TYPE_CMOD_REQD:
{
// The binder class id may overflow 1 byte. Use 2 bytes to encode it.
BinderClassID id = (BinderClassID)(*pSig + 0x100 * *(pSig + 1));
pSig += 2;
pSigBuilder->AppendElementType(type);
pSigBuilder->AppendToken(GetClassLocal(id)->GetCl());
bSomethingResolved = true;
}
goto Again;
case ELEMENT_TYPE_CLASS:
case ELEMENT_TYPE_VALUETYPE:
{
// The binder class id may overflow 1 byte. Use 2 bytes to encode it.
BinderClassID id = (BinderClassID)(*pSig + 0x100 * *(pSig + 1));
pSig += 2;
pSigBuilder->AppendElementType(type);
pSigBuilder->AppendToken(GetClassLocal(id)->GetCl());
bSomethingResolved = true;
}
break;
case ELEMENT_TYPE_VAR:
case ELEMENT_TYPE_MVAR:
{
pSigBuilder->AppendElementType(type);
pSigBuilder->AppendData(*pSig++);
}
break;
default:
pSigBuilder->AppendElementType(type);
break;
}
return bSomethingResolved;
}
//------------------------------------------------------------------
// Resolve type references in the hardcoded metasig.
// Returns a new signature with type refences resolved.
//------------------------------------------------------------------
void MscorlibBinder::BuildConvertedSignature(const BYTE* pSig, SigBuilder * pSigBuilder)
{
CONTRACTL
{
STANDARD_VM_CHECK;
PRECONDITION(CheckPointer(pSig));
PRECONDITION(CheckPointer(pSigBuilder));
}
CONTRACTL_END
unsigned argCount;
unsigned callConv;
bool bSomethingResolved = false;
// calling convention
callConv = *pSig++;
pSigBuilder->AppendData(callConv);
if ((callConv & IMAGE_CEE_CS_CALLCONV_MASK) == IMAGE_CEE_CS_CALLCONV_DEFAULT) {
// arg count
argCount = *pSig++;
pSigBuilder->AppendData(argCount);
}
else {
if ((callConv & IMAGE_CEE_CS_CALLCONV_MASK) != IMAGE_CEE_CS_CALLCONV_FIELD)
THROW_BAD_FORMAT(BFA_BAD_SIGNATURE, (Module*)NULL);
argCount = 0;
}
// <= because we want to include the return value or the field
for (unsigned i = 0; i <= argCount; i++) {
if (ConvertType(pSig, pSigBuilder))
bSomethingResolved = true;
}
_ASSERTE(bSomethingResolved);
}
const BYTE* MscorlibBinder::ConvertSignature(LPHARDCODEDMETASIG pHardcodedSig, const BYTE* pSig)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
INJECT_FAULT(COMPlusThrowOM());
MODE_ANY;
}
CONTRACTL_END
GCX_PREEMP();
SigBuilder sigBuilder;
BuildConvertedSignature(pSig+1, &sigBuilder);
DWORD cbCount;
PVOID pSignature = sigBuilder.GetSignature(&cbCount);
{
CrstHolder ch(&s_SigConvertCrst);
if (*(INT8*)pHardcodedSig->m_pMetaSig < 0) {
BYTE* pResolved = (BYTE*)(void*)(SystemDomain::GetGlobalLoaderAllocator()->GetHighFrequencyHeap()->AllocMem(S_SIZE_T(1) + S_SIZE_T(cbCount)));
_ASSERTE(FitsIn<INT8>(cbCount));
*(INT8*)pResolved = static_cast<INT8>(cbCount);
CopyMemory(pResolved+1, pSignature, cbCount);
// this has to be last, overwrite the pointer to the metasig with the resolved one
VolatileStore<const BYTE *>(&const_cast<HardCodedMetaSig *>(pHardcodedSig)->m_pMetaSig, pResolved);
}
}
return pHardcodedSig->m_pMetaSig;
}
#endif // #ifndef DACCESS_COMPILE
#ifdef _DEBUG
void MscorlibBinder::TriggerGCUnderStress()
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
INJECT_FAULT(ThrowOutOfMemory());
}
CONTRACTL_END;
#ifndef DACCESS_COMPILE
_ASSERTE (GetThread ());
TRIGGERSGC ();
// Force a GC here because GetClass could trigger GC nondeterminsticly
if (g_pConfig->GetGCStressLevel() != 0)
{
DEBUG_ONLY_REGION();
Thread * pThread = GetThread ();
BOOL bInCoopMode = pThread->PreemptiveGCDisabled ();
GCX_COOP ();
if (bInCoopMode)
{
pThread->PulseGCMode ();
}
}
#endif //DACCESS_COMPILE
}
#endif // _DEBUG
DWORD MscorlibBinder::GetFieldOffset(BinderFieldID id)
{
WRAPPER_NO_CONTRACT;
return GetField(id)->GetOffset();
}
#ifndef DACCESS_COMPILE
CrstStatic MscorlibBinder::s_SigConvertCrst;
/*static*/
void MscorlibBinder::Startup()
{
WRAPPER_NO_CONTRACT
s_SigConvertCrst.Init(CrstSigConvert);
}
#if defined(_DEBUG) && !defined(CROSSGEN_COMPILE)
// NoClass is used to suppress check for unmanaged and managed size match
#define NoClass char[USHRT_MAX]
const MscorlibBinder::OffsetAndSizeCheck MscorlibBinder::OffsetsAndSizes[] =
{
#define DEFINE_CLASS_U(nameSpace, stringName, unmanagedType) \
{ PTR_CSTR((TADDR) g_ ## nameSpace ## NS ), PTR_CUTF8((TADDR) # stringName), sizeof(unmanagedType), 0, 0, 0 },
#define DEFINE_FIELD_U(stringName, unmanagedContainingType, unmanagedOffset) \
{ 0, 0, 0, PTR_CUTF8((TADDR) # stringName), offsetof(unmanagedContainingType, unmanagedOffset), sizeof(((unmanagedContainingType*)1)->unmanagedOffset) },
#include "mscorlib.h"
};
//
// check the basic consistency between mscorlib and mscorwks
//
void MscorlibBinder::Check()
{
STANDARD_VM_CONTRACT;
MethodTable * pMT = NULL;
for (unsigned i = 0; i < NumItems(OffsetsAndSizes); i++)
{
const OffsetAndSizeCheck * p = OffsetsAndSizes + i;
if (p->className != NULL)
{
pMT = ClassLoader::LoadTypeByNameThrowing(GetModule()->GetAssembly(), p->classNameSpace, p->className).AsMethodTable();
if (p->expectedClassSize == sizeof(NoClass))
continue;
// hidden size of the type that participates in the alignment calculation
DWORD hiddenSize = pMT->IsValueType() ? sizeof(MethodTable*) : 0;
DWORD size = pMT->GetBaseSize() - (sizeof(ObjHeader)+hiddenSize);
DWORD expectedsize = (DWORD)ALIGN_UP(p->expectedClassSize + (sizeof(ObjHeader) + hiddenSize),
DATA_ALIGNMENT) - (sizeof(ObjHeader) + hiddenSize);
CONSISTENCY_CHECK_MSGF(size == expectedsize,
("Managed object size does not match unmanaged object size\n"
"man: 0x%x, unman: 0x%x, Name: %s\n", size, expectedsize, pMT->GetDebugClassName()));
}
else
if (p->fieldName != NULL)
{
// This assert will fire if there is DEFINE_FIELD_U macro without preceeding DEFINE_CLASS_U macro in mscorlib.h
_ASSERTE(pMT != NULL);
FieldDesc * pFD = MemberLoader::FindField(pMT, p->fieldName, NULL, 0, NULL);
_ASSERTE(pFD != NULL);
DWORD offset = pFD->GetOffset();
if (!pFD->IsFieldOfValueType())
{
offset += Object::GetOffsetOfFirstField();
}
CONSISTENCY_CHECK_MSGF(offset == p->expectedFieldOffset,
("Managed class field offset does not match unmanaged class field offset\n"
"man: 0x%x, unman: 0x%x, Class: %s, Name: %s\n", offset, p->expectedFieldOffset, pFD->GetApproxEnclosingMethodTable()->GetDebugClassName(), pFD->GetName()));
DWORD size = pFD->LoadSize();
CONSISTENCY_CHECK_MSGF(size == p->expectedFieldSize,
("Managed class field size does not match unmanaged class field size\n"
"man: 0x%x, unman: 0x%x, Class: %s, Name: %s\n", size, p->expectedFieldSize, pFD->GetApproxEnclosingMethodTable()->GetDebugClassName(), pFD->GetName()));
}
}
}
#ifdef CHECK_FCALL_SIGNATURE
//
// check consistency of the unmanaged and managed fcall signatures
//
/* static */ FCSigCheck* FCSigCheck::g_pFCSigCheck;
const char * aType[] =
{
"void",
"FC_BOOL_RET",
"CLR_BOOL",
"FC_CHAR_RET",
"CLR_CHAR",
"FC_INT8_RET",
"INT8",
"FC_UINT8_RET",
"UINT8",
"FC_INT16_RET",
"INT16",
"FC_UINT16_RET",
"UINT16",
"INT64",
"VINT64",
"UINT64",
"VUINT64",
"float",
"Vfloat",
"double",
"Vdouble"
};
const char * aInt32Type[] =
{
"INT32",
"UINT32", // we might remove it to have a better check
"int",
"unsigned int", // we might remove it to have a better check
"DWORD", // we might remove it to have a better check
"HRESULT", // we might remove it to have a better check
"mdToken", // we might remove it to have a better check
"ULONG", // we might remove it to have a better check
"mdMemberRef", // we might remove it to have a better check
"mdCustomAttribute", // we might remove it to have a better check
"mdTypeDef", // we might remove it to have a better check
"mdFieldDef", // we might remove it to have a better check
"LONG",
"CLR_I4",
"LCID" // we might remove it to have a better check
};
const char * aUInt32Type[] =
{
"UINT32",
"unsigned int",
"DWORD",
"INT32", // we might remove it to have a better check
"ULONG"
};
static BOOL IsStrInArray(const char* sStr, size_t len, const char* aStrArray[], int nSize)
{
STANDARD_VM_CONTRACT;
for (int i = 0; i < nSize; i++)
{
if (SString::_strnicmp(aStrArray[i], sStr, (COUNT_T)len) == 0)
{
return TRUE;
}
}
return FALSE;
}
static void FCallCheckSignature(MethodDesc* pMD, PCODE pImpl)
{
STANDARD_VM_CONTRACT;
const char* pUnmanagedSig = NULL;
FCSigCheck* pSigCheck = FCSigCheck::g_pFCSigCheck;
while (pSigCheck != NULL)
{
if (pImpl == (PCODE)pSigCheck->func) {
pUnmanagedSig = pSigCheck->signature;
break;
}
pSigCheck = pSigCheck->next;
}
MetaSig msig(pMD);
int argIndex = -2; // start with return value
int enregisteredArguments = 0;
const char* pUnmanagedArg = pUnmanagedSig;
for (;;)
{
CorElementType argType = ELEMENT_TYPE_END;
TypeHandle argTypeHandle;
if (argIndex == -2)
{
// return value
argType = msig.GetReturnType();
if (argType == ELEMENT_TYPE_VALUETYPE)
argTypeHandle = msig.GetRetTypeHandleThrowing();
}
if (argIndex == -1)
{
// this ptr
if (msig.HasThis())
argType = ELEMENT_TYPE_CLASS;
else
argIndex++; // move on to the first argument
}
if (argIndex >= 0)
{
argType = msig.NextArg();
if (argType == ELEMENT_TYPE_END)
break;
if (argType == ELEMENT_TYPE_VALUETYPE)
argTypeHandle = msig.GetLastTypeHandleThrowing();
}
const char* expectedType = NULL;
switch (argType)
{
case ELEMENT_TYPE_VOID:
expectedType = pMD->IsCtor() ? NULL : "void";
break;
case ELEMENT_TYPE_BOOLEAN:
expectedType = (argIndex == -2) ? "FC_BOOL_RET" : "CLR_BOOL";
break;
case ELEMENT_TYPE_CHAR:
expectedType = (argIndex == -2) ? "FC_CHAR_RET" : "CLR_CHAR";
break;
case ELEMENT_TYPE_I1:
expectedType = (argIndex == -2) ? "FC_INT8_RET" : "INT8";
break;
case ELEMENT_TYPE_U1:
expectedType = (argIndex == -2) ? "FC_UINT8_RET" : "UINT8";
break;
case ELEMENT_TYPE_I2:
expectedType = (argIndex == -2) ? "FC_INT16_RET" : "INT16";
break;
case ELEMENT_TYPE_U2:
expectedType = (argIndex == -2) ? "FC_UINT16_RET" : "UINT16";
break;
//case ELEMENT_TYPE_I4:
// expectedType = "INT32";
// break;
// case ELEMENT_TYPE_U4:
// expectedType = "UINT32";
// break;
// See the comments in fcall.h on what the "V" prefix means.
case ELEMENT_TYPE_I8:
expectedType = ((argIndex == -2) || (enregisteredArguments >= 2)) ? "INT64" : "VINT64";
break;
case ELEMENT_TYPE_U8:
expectedType = ((argIndex == -2) || (enregisteredArguments >= 2)) ? "UINT64" : "VUINT64";
break;
case ELEMENT_TYPE_R4:
expectedType = ((argIndex == -2) || (enregisteredArguments >= 2)) ? "float" : "Vfloat";
break;
case ELEMENT_TYPE_R8:
expectedType = ((argIndex == -2) || (enregisteredArguments >= 2)) ? "double" : "Vdouble";
break;
default:
// no checks for other types
break;
}
// Count number of enregistered arguments for x86
if ((argIndex != -2) && !((expectedType != NULL) && (*expectedType == 'V')))
{
enregisteredArguments++;
}
if (pUnmanagedSig != NULL)
{
CONSISTENCY_CHECK_MSGF(pUnmanagedArg != NULL,
("Unexpected end of managed fcall signature\n"
"Method: %s:%s\n", pMD->m_pszDebugClassName, pMD->m_pszDebugMethodName));
const char* pUnmanagedArgEnd = strchr(pUnmanagedArg, ',');
const char* pUnmanagedTypeEnd = (pUnmanagedArgEnd != NULL) ?
pUnmanagedArgEnd : (pUnmanagedArg + strlen(pUnmanagedArg));
if (argIndex != -2)
{
// skip argument name
while(pUnmanagedTypeEnd > pUnmanagedArg)
{
char c = *(pUnmanagedTypeEnd-1);
if ((c != '_')
&& ((c < '0') || ('9' < c))
&& ((c < 'a') || ('z' < c))
&& ((c < 'A') || ('Z' < c)))
break;
pUnmanagedTypeEnd--;
}
}
// skip whitespaces
while(pUnmanagedTypeEnd > pUnmanagedArg)
{
char c = *(pUnmanagedTypeEnd-1);
if ((c != 0x20) && (c != '\t') && (c != '\n') && (c != '\r'))
break;
pUnmanagedTypeEnd--;
}
size_t len = pUnmanagedTypeEnd - pUnmanagedArg;
// generate the unmanaged argument signature to show them in the error message if possible
StackSString ssUnmanagedType(SString::Ascii, pUnmanagedArg, (COUNT_T)len);
StackScratchBuffer buffer;
const char * pUnManagedType = ssUnmanagedType.GetANSI(buffer);
if (expectedType != NULL)
{
// when managed type is well known
if (!(strlen(expectedType) == len && SString::_strnicmp(expectedType, pUnmanagedArg, (COUNT_T)len) == 0))
{
printf("CheckExtended: The managed and unmanaged fcall signatures do not match, Method: %s:%s. Argument: %d Expecting: %s Actual: %s\n", pMD->m_pszDebugClassName, pMD->m_pszDebugMethodName, argIndex, expectedType, pUnManagedType);
}
}
else
{
// when managed type is not wellknown, we still can find sig mismatch if native type is a well known type
BOOL bSigError = false;
if (argType == ELEMENT_TYPE_VOID && pMD->IsCtor())
{
bSigError = false;
}
else if (argType == ELEMENT_TYPE_I4)
{
bSigError = !IsStrInArray(pUnmanagedArg, len, aInt32Type, NumItems(aInt32Type));
}
else if (argType == ELEMENT_TYPE_U4)
{
bSigError = !IsStrInArray(pUnmanagedArg, len, aUInt32Type, NumItems(aUInt32Type));
}
else if (argType == ELEMENT_TYPE_VALUETYPE)
{
// we already did special check for value type
bSigError = false;
}
else
{
bSigError = IsStrInArray(pUnmanagedArg, len, aType, NumItems(aType));
}
if (bSigError)
{
printf("CheckExtended: The managed and unmanaged fcall signatures do not match, Method: %s:%s. Argument: %d Expecting: (CorElementType)%d actual: %s\n", pMD->m_pszDebugClassName, pMD->m_pszDebugMethodName, argIndex, argType, pUnManagedType);
}
}
pUnmanagedArg = (pUnmanagedArgEnd != NULL) ? (pUnmanagedArgEnd+1) : NULL;
}
argIndex++;
}
if (pUnmanagedSig != NULL)
{
if (msig.IsVarArg())
{
if (!((pUnmanagedArg != NULL) && strcmp(pUnmanagedArg, "...") == 0))
{
printf("CheckExtended: Expecting varargs in unmanaged fcall signature, Method: %s:%s\n", pMD->m_pszDebugClassName, pMD->m_pszDebugMethodName);
}
}
else
{
if (!(pUnmanagedArg == NULL))
{
printf("CheckExtended: Unexpected end of unmanaged fcall signature, Method: %s:%s\n", pMD->m_pszDebugClassName, pMD->m_pszDebugMethodName);
}
}
}
}
#endif // CHECK_FCALL_SIGNATURE
//
// extended check of consistency between mscorlib and mscorwks:
// - verifies that all references from mscorlib to mscorwks are present
// - verifies that all references from mscorwks to mscorlib are present
// - limited detection of mismatches between managed and unmanaged fcall signatures
//
void MscorlibBinder::CheckExtended()
{
STANDARD_VM_CONTRACT;
// check the consistency of BCL and VM
// note: it is not enabled by default because of it is time consuming and
// changes the bootstrap sequence of the EE
if (!CLRConfig::GetConfigValue(CLRConfig::INTERNAL_ConsistencyCheck))
return;
//
// VM referencing BCL (mscorlib.h)
//
for (BinderClassID cID = (BinderClassID) 1; (int)cID < m_cClasses; cID = (BinderClassID) (cID + 1))
{
bool fError = false;
EX_TRY
{
if (MscorlibBinder::GetClassName(cID) != NULL) // Allow for CorSigElement entries with no classes
{
if (NULL == MscorlibBinder::GetClass(cID))
{
fError = true;
}
}
}
EX_CATCH
{
fError = true;
}
EX_END_CATCH(SwallowAllExceptions)
if (fError)
{
printf("CheckExtended: VM expects type to exist: %s.%s\n", MscorlibBinder::GetClassNameSpace(cID), MscorlibBinder::GetClassName(cID));
}
}
for (BinderMethodID mID = (BinderMethodID) 1; mID < (BinderMethodID) MscorlibBinder::m_cMethods; mID = (BinderMethodID) (mID + 1))
{
bool fError = false;
BinderClassID cID = m_methodDescriptions[mID-1].classID;
EX_TRY
{
if (NULL == MscorlibBinder::GetMethod(mID))
{
fError = true;
}
}
EX_CATCH
{
fError = true;
}
EX_END_CATCH(SwallowAllExceptions)
if (fError)
{
printf("CheckExtended: VM expects method to exist: %s.%s::%s\n", MscorlibBinder::GetClassNameSpace(cID), MscorlibBinder::GetClassName(cID), MscorlibBinder::GetMethodName(mID));
}
}
for (BinderFieldID fID = (BinderFieldID) 1; fID < (BinderFieldID) MscorlibBinder::m_cFields; fID = (BinderFieldID) (fID + 1))
{
bool fError = false;
BinderClassID cID = m_fieldDescriptions[fID-1].classID;
EX_TRY
{
if (NULL == MscorlibBinder::GetField(fID))
{
fError = true;
}
}
EX_CATCH
{
fError = true;
}
EX_END_CATCH(SwallowAllExceptions)
if (fError)
{
printf("CheckExtended: VM expects field to exist: %s.%s::%s\n", MscorlibBinder::GetClassNameSpace(cID), MscorlibBinder::GetClassName(cID), MscorlibBinder::GetFieldName(fID));
}
}
//
// BCL referencing VM (ecall.cpp)
//
SetSHash<DWORD> usedECallIds;
HRESULT hr = S_OK;
Module *pModule = MscorlibBinder::m_pModule;
IMDInternalImport *pInternalImport = pModule->GetMDImport();
HENUMInternal hEnum;
// for all methods...
IfFailGo(pInternalImport->EnumAllInit(mdtMethodDef, &hEnum));
for (;;) {
mdTypeDef td;
mdTypeDef tdClass;
DWORD dwImplFlags;
DWORD dwMemberAttrs;
if (!pInternalImport->EnumNext(&hEnum, &td))
break;
pInternalImport->GetMethodImplProps(td, NULL, &dwImplFlags);
IfFailGo(pInternalImport->GetMethodDefProps(td, &dwMemberAttrs));
// ... that are internal calls ...
if (!IsMiInternalCall(dwImplFlags) && !IsMdPinvokeImpl(dwMemberAttrs))
continue;
IfFailGo(pInternalImport->GetParentToken(td, &tdClass));