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 pathdebugdebugger.cpp
1227 lines (1013 loc) · 46.5 KB
/
debugdebugger.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.
/*============================================================
**
** File: DebugDebugger.cpp
**
** Purpose: Native methods on System.Debug.Debugger
**
**
===========================================================*/
#include "common.h"
#include <object.h>
#include "ceeload.h"
#include "excep.h"
#include "frames.h"
#include "vars.hpp"
#include "field.h"
#include "gcheaputilities.h"
#include "jitinterface.h"
#include "debugdebugger.h"
#include "dbginterface.h"
#include "cordebug.h"
#include "corsym.h"
#include "generics.h"
#include "eemessagebox.h"
#include "stackwalk.h"
#ifndef DACCESS_COMPILE
//----------------------------------------------------------------------------
//
// FindMostRecentUserCodeOnStack - find out the most recent user managed code on stack
//
//
// Arguments:
// pContext - [optional] pointer to the context to be restored the user code's context if found
//
// Return Value:
// The most recent user managed code or NULL if not found.
//
// Note:
// It is a heuristic approach to get the address of the user managed code that calls into
// BCL like System.Diagnostics.Debugger.Break assuming that we can find the original user
// code caller with stack walking.
//
// DoWatsonForUserBreak has the address returned from the helper frame that points to an
// internal BCL helpful function doing permission check. From bucketing perspetive it is
// more preferable to report the user managed code that invokes Debugger.Break instead.
//
// User managed code is managed code in non-system assembly. Currently, only mscorlib.dll
// is marked as system assembly.
//
//----------------------------------------------------------------------------
UINT_PTR FindMostRecentUserCodeOnStack(void)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
CAN_TAKE_LOCK;
}
CONTRACTL_END;
Thread * pThread = GetThread();
_ASSERTE(pThread != NULL);
UINT_PTR address = NULL;
CONTEXT ctx;
REGDISPLAY rd;
SetUpRegdisplayForStackWalk(pThread, &ctx, &rd);
StackFrameIterator frameIter;
frameIter.Init(pThread, pThread->GetFrame(), &rd, FUNCTIONSONLY | LIGHTUNWIND);
while (frameIter.IsValid())
{
MethodDesc * pMD = frameIter.m_crawl.GetFunction();
// Is it not a system assembly? User manged user will not be in system assembly.
if ((pMD != NULL) && (!pMD->GetAssembly()->IsSystem()))
{
CrawlFrame * pCF = &(frameIter.m_crawl);
address = (UINT_PTR)GetControlPC(pCF->GetRegisterSet());
break;
}
if (frameIter.Next() != SWA_CONTINUE)
{
break;
}
}
return address;
}
// This does a user break, triggered by System.Diagnostics.Debugger.Break, or the IL opcode for break.
//
// Notes:
// If a managed debugger is attached, this should send the managed UserBreak event.
// Else if a native debugger is attached, this should send a native break event (kernel32!DebugBreak)
// Else, this should invoke Watson.
//
// Historical trivia:
// - In whidbey, this would still invoke Watson if a native-only debugger is attached.
// - In arrowhead, the managed debugging pipeline switched to be built on the native pipeline.
FCIMPL0(void, DebugDebugger::Break)
{
FCALL_CONTRACT;
#ifdef DEBUGGING_SUPPORTED
HELPER_METHOD_FRAME_BEGIN_0();
#ifdef _DEBUG
{
static int fBreakOnDebugBreak = -1;
if (fBreakOnDebugBreak == -1)
fBreakOnDebugBreak = CLRConfig::GetConfigValue(CLRConfig::INTERNAL_BreakOnDebugBreak);
_ASSERTE(fBreakOnDebugBreak == 0 && "BreakOnDebugBreak");
}
static BOOL fDbgInjectFEE = -1;
if (fDbgInjectFEE == -1)
fDbgInjectFEE = CLRConfig::GetConfigValue(CLRConfig::INTERNAL_DbgInjectFEE);
#endif
// WatsonLastChance has its own complex (and changing) policy of how to behave if a debugger is attached.
// So caller should explicitly enforce any debugger-related policy before handing off to watson.
// Check managed-only first, since managed debugging may be built on native-debugging.
if (CORDebuggerAttached() INDEBUG(|| fDbgInjectFEE))
{
// A managed debugger is already attached -- let it handle the event.
g_pDebugInterface->SendUserBreakpoint(GetThread());
}
else if (IsDebuggerPresent())
{
// No managed debugger, but a native debug is attached. Explicitly fire a native user breakpoint.
// Don't rely on Watson support since that may have a different policy.
// Toggle to preemptive before firing the debug event. This allows the debugger to suspend this
// thread at the debug event.
GCX_PREEMP();
// This becomes an unmanaged breakpoint, such as int 3.
DebugBreak();
}
else
{
}
HELPER_METHOD_FRAME_END();
#endif // DEBUGGING_SUPPORTED
}
FCIMPLEND
FCIMPL0(FC_BOOL_RET, DebugDebugger::Launch)
{
FCALL_CONTRACT;
#ifdef DEBUGGING_SUPPORTED
if (CORDebuggerAttached())
{
FC_RETURN_BOOL(TRUE);
}
else if (g_pDebugInterface != NULL)
{
HRESULT hr = S_OK;
HELPER_METHOD_FRAME_BEGIN_RET_0();
hr = g_pDebugInterface->LaunchDebuggerForUser(GetThread(), NULL, TRUE, TRUE);
HELPER_METHOD_FRAME_END();
if (SUCCEEDED (hr))
{
FC_RETURN_BOOL(TRUE);
}
}
#endif // DEBUGGING_SUPPORTED
FC_RETURN_BOOL(FALSE);
}
FCIMPLEND
FCIMPL0(FC_BOOL_RET, DebugDebugger::IsDebuggerAttached)
{
FCALL_CONTRACT;
FC_GC_POLL_RET();
#ifdef DEBUGGING_SUPPORTED
FC_RETURN_BOOL(CORDebuggerAttached());
#else // DEBUGGING_SUPPORTED
FC_RETURN_BOOL(FALSE);
#endif
}
FCIMPLEND
/*static*/ BOOL DebugDebugger::IsLoggingHelper()
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
MODE_ANY;
}
CONTRACTL_END;
#ifdef DEBUGGING_SUPPORTED
if (CORDebuggerAttached())
{
return (g_pDebugInterface->IsLoggingEnabled());
}
#endif // DEBUGGING_SUPPORTED
return FALSE;
}
// Log to managed debugger.
// It will send a managed log event, which will faithfully send the two string parameters here without
// appending a newline to anything.
// It will also call OutputDebugString() which will send a native debug event. The message
// string there will be a composite of the two managed string parameters and may include a newline.
FCIMPL3(void, DebugDebugger::Log,
INT32 Level,
StringObject* strModuleUNSAFE,
StringObject* strMessageUNSAFE
)
{
CONTRACTL
{
FCALL_CHECK;
PRECONDITION(CheckPointer(strModuleUNSAFE, NULL_OK));
PRECONDITION(CheckPointer(strMessageUNSAFE, NULL_OK));
}
CONTRACTL_END;
STRINGREF strModule = (STRINGREF)ObjectToOBJECTREF(strModuleUNSAFE);
STRINGREF strMessage = (STRINGREF)ObjectToOBJECTREF(strMessageUNSAFE);
HELPER_METHOD_FRAME_BEGIN_2(strModule, strMessage);
// OutputDebugString will log to native/interop debugger.
if (strModule != NULL)
{
WszOutputDebugString(strModule->GetBuffer());
WszOutputDebugString(W(" : "));
}
if (strMessage != NULL)
{
WszOutputDebugString(strMessage->GetBuffer());
}
// If we're not logging a module prefix, then don't log the newline either.
// Thus if somebody is just logging messages, there won't be any extra newlines in there.
// If somebody is also logging category / module information, then this call to OutputDebugString is
// already prepending that to the message, so we append a newline for readability.
if (strModule != NULL)
{
WszOutputDebugString(W("\n"));
}
#ifdef DEBUGGING_SUPPORTED
// Send message for logging only if the
// debugger is attached and logging is enabled
// for the given category
if (CORDebuggerAttached())
{
if (IsLoggingHelper() )
{
// Copy log message and category into our own SString to protect against GC
// Strings may contain embedded nulls, but we need to handle null-terminated
// strings, so use truncate now.
StackSString switchName;
if( strModule != NULL )
{
// truncate if necessary
COUNT_T iLen = (COUNT_T) wcslen(strModule->GetBuffer());
if (iLen > MAX_LOG_SWITCH_NAME_LEN)
{
iLen = MAX_LOG_SWITCH_NAME_LEN;
}
switchName.Set(strModule->GetBuffer(), iLen);
}
SString message;
if( strMessage != NULL )
{
message.Set(strMessage->GetBuffer(), (COUNT_T) wcslen(strMessage->GetBuffer()));
}
g_pDebugInterface->SendLogMessage (Level, &switchName, &message);
}
}
#endif // DEBUGGING_SUPPORTED
HELPER_METHOD_FRAME_END();
}
FCIMPLEND
FCIMPL0(FC_BOOL_RET, DebugDebugger::IsLogging)
{
FCALL_CONTRACT;
FC_GC_POLL_RET();
FC_RETURN_BOOL(IsLoggingHelper());
}
FCIMPLEND
FCIMPL4(void, DebugStackTrace::GetStackFramesInternal,
StackFrameHelper* pStackFrameHelperUNSAFE,
INT32 iSkip,
CLR_BOOL fNeedFileInfo,
Object* pExceptionUNSAFE
)
{
CONTRACTL
{
FCALL_CHECK;
PRECONDITION(CheckPointer(pStackFrameHelperUNSAFE));
PRECONDITION(CheckPointer(pExceptionUNSAFE, NULL_OK));
}
CONTRACTL_END;
STACKFRAMEHELPERREF pStackFrameHelper = (STACKFRAMEHELPERREF)ObjectToOBJECTREF(pStackFrameHelperUNSAFE);
OBJECTREF pException = ObjectToOBJECTREF(pExceptionUNSAFE);
PTRARRAYREF dynamicMethodArrayOrig = NULL;
HELPER_METHOD_FRAME_BEGIN_2(pStackFrameHelper, pException);
GCPROTECT_BEGIN(dynamicMethodArrayOrig);
ASSERT(iSkip >= 0);
GetStackFramesData data;
data.pDomain = GetAppDomain();
data.skip = iSkip;
data.NumFramesRequested = pStackFrameHelper->iFrameCount;
if (pException == NULL)
{
// Thread is NULL if it's the current thread.
data.TargetThread = pStackFrameHelper->targetThread;
GetStackFrames(NULL, (void*)-1, &data);
}
else
{
// We also fetch the dynamic method array in a GC protected artifact to ensure
// that the resolver objects, if any, are kept alive incase the exception object
// is thrown again (resetting the dynamic method array reference in the object)
// that may result in resolver objects getting collected before they can be reachable again
// (from the code below).
GetStackFramesFromException(&pException, &data, &dynamicMethodArrayOrig);
}
if (data.cElements != 0)
{
#if defined(FEATURE_ISYM_READER) && defined(FEATURE_COMINTEROP)
if (fNeedFileInfo)
{
// Calls to COM up ahead.
EnsureComStarted();
}
#endif // FEATURE_ISYM_READER && FEATURE_COMINTEROP
// Allocate memory for the MethodInfo objects
BASEARRAYREF methodInfoArray = (BASEARRAYREF) AllocatePrimitiveArray(ELEMENT_TYPE_I, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgMethodHandle), (OBJECTREF)methodInfoArray,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the Offsets
OBJECTREF offsets = AllocatePrimitiveArray(ELEMENT_TYPE_I4, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgiOffset), (OBJECTREF)offsets,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the ILOffsets
OBJECTREF ilOffsets = AllocatePrimitiveArray(ELEMENT_TYPE_I4, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgiILOffset), (OBJECTREF)ilOffsets,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the array of assembly file names
PTRARRAYREF assemblyPathArray = (PTRARRAYREF) AllocateObjectArray(data.cElements, g_pStringClass);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgAssemblyPath), (OBJECTREF)assemblyPathArray,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the array of assemblies
PTRARRAYREF assemblyArray = (PTRARRAYREF) AllocateObjectArray(data.cElements, g_pObjectClass);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgAssembly), (OBJECTREF)assemblyArray,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the LoadedPeAddress
BASEARRAYREF loadedPeAddressArray = (BASEARRAYREF) AllocatePrimitiveArray(ELEMENT_TYPE_I, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgLoadedPeAddress), (OBJECTREF)loadedPeAddressArray,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the LoadedPeSize
OBJECTREF loadedPeSizeArray = AllocatePrimitiveArray(ELEMENT_TYPE_I4, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgiLoadedPeSize), (OBJECTREF)loadedPeSizeArray,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the InMemoryPdbAddress
BASEARRAYREF inMemoryPdbAddressArray = (BASEARRAYREF) AllocatePrimitiveArray(ELEMENT_TYPE_I, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgInMemoryPdbAddress), (OBJECTREF)inMemoryPdbAddressArray,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the InMemoryPdbSize
OBJECTREF inMemoryPdbSizeArray = AllocatePrimitiveArray(ELEMENT_TYPE_I4, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgiInMemoryPdbSize), (OBJECTREF)inMemoryPdbSizeArray,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the MethodTokens
OBJECTREF methodTokens = AllocatePrimitiveArray(ELEMENT_TYPE_I4, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgiMethodToken), (OBJECTREF)methodTokens,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the Filename string objects
PTRARRAYREF filenameArray = (PTRARRAYREF) AllocateObjectArray(data.cElements, g_pStringClass);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgFilename), (OBJECTREF)filenameArray,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the LineNumbers
OBJECTREF lineNumbers = AllocatePrimitiveArray(ELEMENT_TYPE_I4, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgiLineNumber), (OBJECTREF)lineNumbers,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the ColumnNumbers
OBJECTREF columnNumbers = AllocatePrimitiveArray(ELEMENT_TYPE_I4, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgiColumnNumber), (OBJECTREF)columnNumbers,
pStackFrameHelper->GetAppDomain());
// Allocate memory for the flag indicating if this frame represents the last one from a foreign
// exception stack trace provided we have any such frames. Otherwise, set it to null.
// When StackFrameHelper.IsLastFrameFromForeignExceptionStackTrace is invoked in managed code,
// it will return false for the null case.
//
// This is an optimization for us to not allocate the BOOL array if we do not have any frames
// from a foreign stack trace.
OBJECTREF IsLastFrameFromForeignStackTraceFlags = NULL;
if (data.fDoWeHaveAnyFramesFromForeignStackTrace)
{
IsLastFrameFromForeignStackTraceFlags = AllocatePrimitiveArray(ELEMENT_TYPE_BOOLEAN, data.cElements);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgiLastFrameFromForeignExceptionStackTrace), (OBJECTREF)IsLastFrameFromForeignStackTraceFlags,
pStackFrameHelper->GetAppDomain());
}
else
{
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->rgiLastFrameFromForeignExceptionStackTrace), NULL,
pStackFrameHelper->GetAppDomain());
}
// Determine if there are any dynamic methods in the stack trace. If there are,
// allocate an ObjectArray large enough to hold an ObjRef to each one.
unsigned iNumDynamics = 0;
unsigned iCurDynamic = 0;
for (int iElement=0; iElement < data.cElements; iElement++)
{
MethodDesc *pMethod = data.pElements[iElement].pFunc;
if (pMethod->IsLCGMethod())
{
iNumDynamics++;
}
else
if (pMethod->GetMethodTable()->Collectible())
{
iNumDynamics++;
}
}
if (iNumDynamics)
{
PTRARRAYREF dynamicDataArray = (PTRARRAYREF) AllocateObjectArray(iNumDynamics, g_pObjectClass);
SetObjectReference( (OBJECTREF *)&(pStackFrameHelper->dynamicMethods), (OBJECTREF)dynamicDataArray,
pStackFrameHelper->GetAppDomain());
}
int iNumValidFrames = 0;
for (int i = 0; i < data.cElements; i++)
{
// The managed stacktrace classes always returns typical method definition, so we don't need to bother providing exact instantiation.
// Generics::GetExactInstantiationsOfMethodAndItsClassFromCallInformation(data.pElements[i].pFunc, data.pElements[i].pExactGenericArgsToken, &pExactMethod, &thExactType);
MethodDesc* pFunc = data.pElements[i].pFunc;
// Strip the instantiation to make sure that the reflection never gets a bad method desc back.
if (pFunc->HasMethodInstantiation())
pFunc = pFunc->StripMethodInstantiation();
_ASSERTE(pFunc->IsRuntimeMethodHandle());
// Method handle
size_t *pElem = (size_t*)pStackFrameHelper->rgMethodHandle->GetDataPtr();
pElem[iNumValidFrames] = (size_t)pFunc;
// Native offset
I4 *pI4 = (I4 *)((I4ARRAYREF)pStackFrameHelper->rgiOffset)->GetDirectPointerToNonObjectElements();
pI4[iNumValidFrames] = data.pElements[i].dwOffset;
// IL offset
I4 *pILI4 = (I4 *)((I4ARRAYREF)pStackFrameHelper->rgiILOffset)->GetDirectPointerToNonObjectElements();
pILI4[iNumValidFrames] = data.pElements[i].dwILOffset;
// Assembly
OBJECTREF pAssembly = pFunc->GetAssembly()->GetExposedObject();
pStackFrameHelper->rgAssembly->SetAt(iNumValidFrames, pAssembly);
if (data.fDoWeHaveAnyFramesFromForeignStackTrace)
{
// Set the BOOL indicating if the frame represents the last frame from a foreign exception stack trace.
U1 *pIsLastFrameFromForeignExceptionStackTraceU1 = (U1 *)((BOOLARRAYREF)pStackFrameHelper->rgiLastFrameFromForeignExceptionStackTrace)
->GetDirectPointerToNonObjectElements();
pIsLastFrameFromForeignExceptionStackTraceU1 [iNumValidFrames] = (U1) data.pElements[i].fIsLastFrameFromForeignStackTrace;
}
MethodDesc *pMethod = data.pElements[i].pFunc;
// If there are any dynamic methods, and this one is one of them, store
// a reference to it's managed resolver to keep it alive.
if (iNumDynamics)
{
if (pMethod->IsLCGMethod())
{
DynamicMethodDesc *pDMD = pMethod->AsDynamicMethodDesc();
OBJECTREF pResolver = pDMD->GetLCGMethodResolver()->GetManagedResolver();
_ASSERTE(pResolver != NULL);
((PTRARRAYREF)pStackFrameHelper->dynamicMethods)->SetAt(iCurDynamic++, pResolver);
}
else if (pMethod->GetMethodTable()->Collectible())
{
OBJECTREF pLoaderAllocator = pMethod->GetMethodTable()->GetLoaderAllocator()->GetExposedObject();
_ASSERTE(pLoaderAllocator != NULL);
((PTRARRAYREF)pStackFrameHelper->dynamicMethods)->SetAt(iCurDynamic++, pLoaderAllocator);
}
}
Module *pModule = pMethod->GetModule();
// If it's an EnC method, then don't give back any line info, b/c the PDB is out of date.
// (We're using the stale PDB, not one w/ Edits applied).
// Since the MethodDesc is always the most recent, v1 instances of EnC methods on the stack
// will appeared to be Enc. This means we err on the side of not showing line numbers for EnC methods.
// If any method in the file was changed, then our line numbers could be wrong. Since we don't
// have udpated PDBs from EnC, we can at best look at the module's version number as a rough guess
// to if this file has been updated.
bool fIsEnc = false;
#ifdef EnC_SUPPORTED
if (pModule->IsEditAndContinueEnabled())
{
EditAndContinueModule *eacm = (EditAndContinueModule *)pModule;
if (eacm->GetApplyChangesCount() != 1)
{
fIsEnc = true;
}
}
#endif
BOOL fPortablePDB = TRUE;
// Check if the user wants the filenumber, linenumber info and that it is possible.
if (!fIsEnc && fNeedFileInfo)
{
#ifdef FEATURE_ISYM_READER
BOOL fFileInfoSet = FALSE;
ULONG32 sourceLine = 0;
ULONG32 sourceColumn = 0;
WCHAR wszFileName[MAX_LONGPATH];
ULONG32 fileNameLength = 0;
{
// Note: we need to enable preemptive GC when accessing the unmanages symbol store.
GCX_PREEMP();
// Note: we use the NoThrow version of GetISymUnmanagedReader. If getting the unmanaged
// reader fails, then just leave the pointer NULL and leave any symbol info off of the
// stack trace.
ReleaseHolder<ISymUnmanagedReader> pISymUnmanagedReader(
pModule->GetISymUnmanagedReaderNoThrow());
if (pISymUnmanagedReader != NULL)
{
// Found a ISymUnmanagedReader for the regular PDB so don't attempt to
// read it as a portable PDB in mscorlib's StackFrameHelper.
fPortablePDB = FALSE;
ReleaseHolder<ISymUnmanagedMethod> pISymUnmanagedMethod;
HRESULT hr = pISymUnmanagedReader->GetMethod(pMethod->GetMemberDef(),
&pISymUnmanagedMethod);
if (SUCCEEDED(hr))
{
// get all the sequence points and the documents
// associated with those sequence points.
// from the doument get the filename using GetURL()
ULONG32 SeqPointCount = 0;
ULONG32 RealSeqPointCount = 0;
hr = pISymUnmanagedMethod->GetSequencePointCount(&SeqPointCount);
_ASSERTE (SUCCEEDED(hr) || (hr == E_OUTOFMEMORY) );
if (SUCCEEDED(hr) && SeqPointCount > 0)
{
// allocate memory for the objects to be fetched
NewArrayHolder<ULONG32> offsets (new (nothrow) ULONG32 [SeqPointCount]);
NewArrayHolder<ULONG32> lines (new (nothrow) ULONG32 [SeqPointCount]);
NewArrayHolder<ULONG32> columns (new (nothrow) ULONG32 [SeqPointCount]);
NewArrayHolder<ULONG32> endlines (new (nothrow) ULONG32 [SeqPointCount]);
NewArrayHolder<ULONG32> endcolumns (new (nothrow) ULONG32 [SeqPointCount]);
// we free the array automatically, but we have to manually call release
// on each element in the array when we're done with it.
NewArrayHolder<ISymUnmanagedDocument*> documents (
(ISymUnmanagedDocument **)new PVOID [SeqPointCount]);
if ((offsets && lines && columns && documents && endlines && endcolumns))
{
hr = pISymUnmanagedMethod->GetSequencePoints (
SeqPointCount,
&RealSeqPointCount,
offsets,
(ISymUnmanagedDocument **)documents,
lines,
columns,
endlines,
endcolumns);
_ASSERTE(SUCCEEDED(hr) || (hr == E_OUTOFMEMORY) );
if (SUCCEEDED(hr))
{
_ASSERTE(RealSeqPointCount == SeqPointCount);
#ifdef _DEBUG
{
// This is just some debugging code to help ensure that the array
// returned contains valid interface pointers.
for (ULONG32 i = 0; i < RealSeqPointCount; i++)
{
_ASSERTE(documents[i] != NULL);
documents[i]->AddRef();
documents[i]->Release();
}
}
#endif
// This is the IL offset of the current frame
DWORD dwCurILOffset = data.pElements[i].dwILOffset;
// search for the correct IL offset
DWORD j;
for (j=0; j<RealSeqPointCount; j++)
{
// look for the entry matching the one we're looking for
if (offsets[j] >= dwCurILOffset)
{
// if this offset is > what we're looking for, adjust the index
if (offsets[j] > dwCurILOffset && j > 0)
{
j--;
}
break;
}
}
// If we didn't find a match, default to the last sequence point
if (j == RealSeqPointCount)
{
j--;
}
while (lines[j] == 0x00feefee && j > 0)
{
j--;
}
#ifdef DEBUGGING_SUPPORTED
if (lines[j] != 0x00feefee)
{
sourceLine = lines [j];
sourceColumn = columns [j];
}
else
#endif // DEBUGGING_SUPPORTED
{
sourceLine = 0;
sourceColumn = 0;
}
// Also get the filename from the document...
_ASSERTE (documents [j] != NULL);
hr = documents [j]->GetURL (MAX_LONGPATH, &fileNameLength, wszFileName);
_ASSERTE ( SUCCEEDED(hr) || (hr == E_OUTOFMEMORY) || (hr == HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY)) );
// indicate that the requisite information has been set!
fFileInfoSet = TRUE;
// release the documents set by GetSequencePoints
for (DWORD x=0; x<RealSeqPointCount; x++)
{
documents [x]->Release();
}
} // if got sequence points
} // if all memory allocations succeeded
// holders will now delete the arrays.
}
}
// Holder will release pISymUnmanagedMethod
}
} // GCX_PREEMP()
if (fFileInfoSet)
{
// Set the line and column numbers
I4 *pI4Line = (I4 *)((I4ARRAYREF)pStackFrameHelper->rgiLineNumber)->GetDirectPointerToNonObjectElements();
pI4Line[iNumValidFrames] = sourceLine;
I4 *pI4Column = (I4 *)((I4ARRAYREF)pStackFrameHelper->rgiColumnNumber)->GetDirectPointerToNonObjectElements();
pI4Column[iNumValidFrames] = sourceColumn;
// Set the file name
OBJECTREF obj = (OBJECTREF) StringObject::NewString(wszFileName);
pStackFrameHelper->rgFilename->SetAt(iNumValidFrames, obj);
}
#endif // FEATURE_ISYM_READER
// If the above isym reader code did NOT set the source info either because it is ifdef'ed out (on xplat)
// or because the pdb is the new portable format on Windows then set the information needed to call the
// portable pdb reader in the StackTraceHelper.
if (fPortablePDB)
{
// Save MethodToken for the function
I4 *pMethodToken = (I4 *)((I4ARRAYREF)pStackFrameHelper->rgiMethodToken)->GetDirectPointerToNonObjectElements();
pMethodToken[iNumValidFrames] = pMethod->GetMemberDef();
PEFile *pPEFile = pModule->GetFile();
// Get the address and size of the loaded PE image
COUNT_T peSize;
PTR_CVOID peAddress = pPEFile->GetLoadedImageContents(&peSize);
// Save the PE address and size
PTR_CVOID *pLoadedPeAddress = (PTR_CVOID *)pStackFrameHelper->rgLoadedPeAddress->GetDataPtr();
pLoadedPeAddress[iNumValidFrames] = peAddress;
I4 *pLoadedPeSize = (I4 *)((I4ARRAYREF)pStackFrameHelper->rgiLoadedPeSize)->GetDirectPointerToNonObjectElements();
pLoadedPeSize[iNumValidFrames] = (I4)peSize;
// If there is a in memory symbol stream
CGrowableStream* stream = pModule->GetInMemorySymbolStream();
if (stream != NULL)
{
MemoryRange range = stream->GetRawBuffer();
// Save the in-memory PDB address and size
PTR_VOID *pInMemoryPdbAddress = (PTR_VOID *)pStackFrameHelper->rgInMemoryPdbAddress->GetDataPtr();
pInMemoryPdbAddress[iNumValidFrames] = range.StartAddress();
I4 *pInMemoryPdbSize = (I4 *)((I4ARRAYREF)pStackFrameHelper->rgiInMemoryPdbSize)->GetDirectPointerToNonObjectElements();
pInMemoryPdbSize[iNumValidFrames] = (I4)range.Size();
}
else
{
// Set the pdb path (assembly file name)
const SString& assemblyPath = pPEFile->GetPath();
if (!assemblyPath.IsEmpty())
{
OBJECTREF obj = (OBJECTREF)StringObject::NewString(assemblyPath);
pStackFrameHelper->rgAssemblyPath->SetAt(iNumValidFrames, obj);
}
}
}
}
iNumValidFrames++;
}
pStackFrameHelper->iFrameCount = iNumValidFrames;
}
else
{
pStackFrameHelper->iFrameCount = 0;
}
GCPROTECT_END();
HELPER_METHOD_FRAME_END();
}
FCIMPLEND
FORCEINLINE void HolderDestroyStrongHandle(OBJECTHANDLE h) { if (h != NULL) DestroyStrongHandle(h); }
typedef Wrapper<OBJECTHANDLE, DoNothing<OBJECTHANDLE>, HolderDestroyStrongHandle, NULL> StrongHandleHolder;
// receives a custom notification object from the target and sends it to the RS via
// code:Debugger::SendCustomDebuggerNotification
// Argument: dataUNSAFE - a pointer the the custom notification object being sent
FCIMPL1(void, DebugDebugger::CustomNotification, Object * dataUNSAFE)
{
CONTRACTL
{
FCALL_CHECK;
}
CONTRACTL_END;
OBJECTREF pData = ObjectToOBJECTREF(dataUNSAFE);
#ifdef DEBUGGING_SUPPORTED
// Send notification only if the debugger is attached
if (CORDebuggerAttached() )
{
HELPER_METHOD_FRAME_BEGIN_PROTECT(pData);
Thread * pThread = GetThread();
AppDomain * pAppDomain = pThread->GetDomain();
StrongHandleHolder objHandle = pAppDomain->CreateStrongHandle(pData);
MethodTable * pMT = pData->GetGCSafeMethodTable();
Module * pModule = pMT->GetModule();
DomainFile * pDomainFile = pModule->GetDomainFile(pAppDomain);
mdTypeDef classToken = pMT->GetCl();
pThread->SetThreadCurrNotification(objHandle);
g_pDebugInterface->SendCustomDebuggerNotification(pThread, pDomainFile, classToken);
pThread->ClearThreadCurrNotification();
TESTHOOKCALL(AppDomainCanBeUnloaded(pThread->GetDomain()->GetId().m_dwId, FALSE));
if (pThread->IsAbortRequested())
{
pThread->HandleThreadAbort();
}
HELPER_METHOD_FRAME_END();
}
#endif // DEBUGGING_SUPPORTED
}
FCIMPLEND
void DebugStackTrace::GetStackFramesHelper(Frame *pStartFrame,
void* pStopStack,
GetStackFramesData *pData
)
{
CONTRACTL
{
MODE_COOPERATIVE;
GC_TRIGGERS;
THROWS;
}
CONTRACTL_END;
ASSERT (pData != NULL);
pData->cElements = 0;
// if the caller specified (< 20) frames are required, then allocate
// only that many
if ((pData->NumFramesRequested > 0) && (pData->NumFramesRequested < 20))
{
pData->cElementsAllocated = pData->NumFramesRequested;
}
else
{
pData->cElementsAllocated = 20;
}
// Allocate memory for the initial 'n' frames
pData->pElements = new DebugStackTraceElement[pData->cElementsAllocated];
if (pData->TargetThread == NULL ||
pData->TargetThread->GetInternal() == GetThread())
{
// Null target thread specifies current thread.
GetThread()->StackWalkFrames(GetStackFramesCallback, pData, FUNCTIONSONLY, pStartFrame);
}
else
{
Thread *pThread = pData->TargetThread->GetInternal();
_ASSERTE (pThread != NULL);
// Here's the timeline for the TS_UserSuspendPending and TS_SyncSuspended bits.
// 0) Neither TS_UserSuspendPending nor TS_SyncSuspended set.
// 1) The suspending thread grabs the thread store lock
// then sets TS_UserSuspendPending
// then puts in place trip wires for the suspendee (if it is in managed code)
// and releases the thread store lock.
// 2) The suspending thread waits for the "SafeEvent".
// 3) The suspendee continues execution until it tries to enter preemptive mode.
// If it trips over the wires put in place by the suspending thread,
// it will try to enter preemptive mode.
// 4) The suspendee sets TS_SyncSuspended and the "SafeEvent".
// Then it waits for m_UserSuspendEvent.
// 5) AT THIS POINT, IT IS SAFE TO WALK THE SUSPENDEE'S STACK.
// 6) Now, some thread wants to resume the suspendee.
// The resuming thread takes the thread store lock
// then clears the TS_UserSuspendPending flag
// then sets m_UserSuspendEvent
// and releases the thread store lock.
// 7) The suspendee clears the TS_SyncSuspended flag.
//
// In other words, it is safe to trace the thread's stack IF we're holding the
// thread store lock AND TS_UserSuspendPending is set AND TS_SyncSuspended is set.
//
// This is because:
// - If we were not holding the thread store lock, the thread could be resumed
// underneath us.
// - As long as only TS_UserSuspendPending is set (and the thread is in cooperative
// mode), the thread can still be executing managed code until it trips.
// - When only TS_SyncSuspended is set, we race against it resuming execution.
ThreadStoreLockHolder tsl;
// We erect a barrier so that if the thread tries to disable preemptive GC,
// it will look at the TS_UserSuspendPending flag. Otherwise, it could resume
// execution of managed code during our stack walk.
TSSuspendHolder shTrap;
Thread::ThreadState state = pThread->GetSnapshotState();
if (state & (Thread::TS_Unstarted|Thread::TS_Dead|Thread::TS_Detached))
{
goto LSafeToTrace;
}
// CoreCLR does not support user-requested thread suspension
_ASSERTE(!(state & Thread::TS_UserSuspendPending));
COMPlusThrow(kThreadStateException, IDS_EE_THREAD_BAD_STATE);
LSafeToTrace:
pThread->StackWalkFrames(GetStackFramesCallback,
pData,
FUNCTIONSONLY|ALLOW_ASYNC_STACK_WALK,
pStartFrame);
}
// Do a 2nd pass outside of any locks.
// This will compute IL offsets.
for(INT32 i = 0; i < pData->cElements; i++)
{
pData->pElements[i].InitPass2();
}
}
void DebugStackTrace::GetStackFrames(Frame *pStartFrame,
void* pStopStack,
GetStackFramesData *pData
)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
MODE_COOPERATIVE;
}
CONTRACTL_END;
GetStackFramesHelper(pStartFrame, pStopStack, pData);
}
StackWalkAction DebugStackTrace::GetStackFramesCallback(CrawlFrame* pCf, VOID* data)
{
CONTRACTL
{
THROWS;
GC_TRIGGERS;
MODE_COOPERATIVE;
}
CONTRACTL_END;
GetStackFramesData* pData = (GetStackFramesData*)data;
if (pData->pDomain != pCf->GetAppDomain())
{
return SWA_CONTINUE;
}