Merge pull request #1691 from esdrubal/exitevent
[mono.git] / mono / mini / debugger-agent.c
1 /*
2  * debugger-agent.c: Soft Debugger back-end module
3  *
4  * Author:
5  *   Zoltan Varga (vargaz@gmail.com)
6  *
7  * Copyright 2009-2010 Novell, Inc.
8  * Copyright 2011 Xamarin Inc.
9  */
10
11 #include <config.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #ifdef HAVE_SYS_TYPES_H
16 #include <sys/types.h>
17 #endif
18 #ifdef HAVE_SYS_SELECT_H
19 #include <sys/select.h>
20 #endif
21 #ifdef HAVE_SYS_SOCKET_H
22 #include <sys/socket.h>
23 #endif
24 #ifdef HAVE_NETINET_TCP_H
25 #include <netinet/tcp.h>
26 #endif
27 #ifdef HAVE_NETINET_IN_H
28 #include <netinet/in.h>
29 #endif
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33 #include <errno.h>
34 #include <glib.h>
35
36 #ifdef HAVE_PTHREAD_H
37 #include <pthread.h>
38 #endif
39
40 #ifdef HAVE_UCONTEXT_H
41 #include <ucontext.h>
42 #endif
43
44 #ifdef HOST_WIN32
45 #ifdef _MSC_VER
46 #include <winsock2.h>
47 #include <process.h>
48 #endif
49 #include <ws2tcpip.h>
50 #endif
51
52 #ifdef PLATFORM_ANDROID
53 #include <linux/in.h>
54 #include <linux/tcp.h>
55 #include <sys/endian.h>
56 #endif
57
58 #include <mono/metadata/mono-debug.h>
59 #include <mono/metadata/mono-debug-debugger.h>
60 #include <mono/metadata/debug-mono-symfile.h>
61 #include <mono/metadata/gc-internal.h>
62 #include <mono/metadata/environment.h>
63 #include <mono/metadata/threads-types.h>
64 #include <mono/metadata/socket-io.h>
65 #include <mono/metadata/assembly.h>
66 #include <mono/metadata/runtime.h>
67 #include <mono/metadata/threadpool.h>
68 #include <mono/metadata/verify-internals.h>
69 #include <mono/utils/mono-semaphore.h>
70 #include <mono/utils/mono-error-internals.h>
71 #include <mono/utils/mono-stack-unwinding.h>
72 #include <mono/utils/mono-time.h>
73 #include <mono/utils/mono-threads.h>
74 #include <mono/utils/networking.h>
75 #include "debugger-agent.h"
76 #include "mini.h"
77 #include "seq-points.h"
78
79 /*
80 On iOS we can't use System.Environment.Exit () as it will do the wrong
81 shutdown sequence.
82 */
83 #if !defined (TARGET_IOS)
84 #define TRY_MANAGED_SYSTEM_ENVIRONMENT_EXIT
85 #endif
86
87
88 #ifndef MONO_ARCH_SOFT_DEBUG_SUPPORTED
89 #define DISABLE_DEBUGGER_AGENT 1
90 #endif
91
92 #ifdef DISABLE_SOFT_DEBUG
93 #define DISABLE_DEBUGGER_AGENT 1
94 #endif
95
96 #ifndef DISABLE_DEBUGGER_AGENT
97
98 #include <mono/utils/mono-mutex.h>
99
100 /* Definitions to make backporting to 2.6 easier */
101 //#define MonoInternalThread MonoThread
102 //#define mono_thread_internal_current mono_thread_current
103 #define THREAD_TO_INTERNAL(thread) (thread)->internal_thread
104
105 typedef struct {
106         gboolean enabled;
107         char *transport;
108         char *address;
109         int log_level;
110         char *log_file;
111         gboolean suspend;
112         gboolean server;
113         gboolean onuncaught;
114         GSList *onthrow;
115         int timeout;
116         char *launch;
117         gboolean embedding;
118         gboolean defer;
119         int keepalive;
120         gboolean setpgid;
121 } AgentConfig;
122
123 typedef struct
124 {
125         int id;
126         guint32 il_offset, native_offset;
127         MonoDomain *domain;
128         MonoMethod *method;
129         /*
130          * If method is gshared, this is the actual instance, otherwise this is equal to
131          * method.
132          */
133         MonoMethod *actual_method;
134         /*
135          * This is the method which is visible to debugger clients. Same as method,
136          * except for native-to-managed wrappers.
137          */
138         MonoMethod *api_method;
139         MonoContext ctx;
140         MonoDebugMethodJitInfo *jit;
141         MonoJitInfo *ji;
142         int flags;
143         mgreg_t *reg_locations [MONO_MAX_IREGS];
144         /*
145          * Whenever ctx is set. This is FALSE for the last frame of running threads, since
146          * the frame can become invalid.
147          */
148         gboolean has_ctx;
149 } StackFrame;
150
151 typedef struct _InvokeData InvokeData;
152
153 struct _InvokeData
154 {
155         int id;
156         int flags;
157         guint8 *p;
158         guint8 *endp;
159         /* This is the context which needs to be restored after the invoke */
160         MonoContext ctx;
161         gboolean has_ctx;
162         /*
163          * If this is set, invoke this method with the arguments given by ARGS.
164          */
165         MonoMethod *method;
166         gpointer *args;
167         guint32 suspend_count;
168         int nmethods;
169
170         InvokeData *last_invoke;
171 };
172
173 typedef struct {
174         MonoThreadUnwindState context;
175
176         /* This is computed on demand when it is requested using the wire protocol */
177         /* It is freed up when the thread is resumed */
178         int frame_count;
179         StackFrame **frames;
180         /* 
181          * Whenever the frame info is up-to-date. If not, compute_frame_info () will need to
182          * re-compute it.
183          */
184         gboolean frames_up_to_date;
185         /* 
186          * Points to data about a pending invoke which needs to be executed after the thread
187          * resumes.
188          */
189         InvokeData *pending_invoke;
190         /*
191          * Set to TRUE if this thread is suspended in suspend_current () or it is executing
192          * native code.
193          */
194         gboolean suspended;
195         /*
196          * Signals whenever the thread is in the process of suspending, i.e. it will suspend
197          * within a finite amount of time.
198          */
199         gboolean suspending;
200         /*
201          * Set to TRUE if this thread is suspended in suspend_current ().
202          */
203         gboolean really_suspended;
204         /* Used to pass the context to the breakpoint/single step handler */
205         MonoContext handler_ctx;
206         /* Whenever thread_stop () was called for this thread */
207         gboolean terminated;
208
209         /* Number of thread interruptions not yet processed */
210         gint32 interrupt_count;
211
212         /* Whenever to disable breakpoints (used during invokes) */
213         gboolean disable_breakpoints;
214
215         /*
216          * Number of times this thread has been resumed using resume_thread ().
217          */
218         guint32 resume_count;
219
220         MonoInternalThread *thread;
221
222         /*
223          * Information about the frame which transitioned to native code for running
224          * threads.
225          */
226         StackFrameInfo async_last_frame;
227
228         /*
229          * The context where the stack walk can be started for running threads.
230          */
231         MonoThreadUnwindState async_state;
232
233         /*
234      * The context used for filter clauses
235      */
236         MonoThreadUnwindState filter_state;
237
238         /*
239          * The callee address of the last mono_runtime_invoke call
240          */
241         gpointer invoke_addr;
242
243         gboolean abort_requested;
244
245         /*
246          * The current mono_runtime_invoke invocation.
247          */
248         InvokeData *invoke;
249
250         /*
251          * The context where single stepping should resume while the thread is suspended because
252          * of an EXCEPTION event.
253          */
254         MonoThreadUnwindState catch_state;
255
256         /*
257          * The context which needs to be restored after handling a single step/breakpoint
258          * event. This is the same as the ctx at step/breakpoint site, but includes changes
259          * to caller saved registers done by set_var ().
260          */
261         MonoThreadUnwindState restore_state;
262         /* Frames computed from restore_state */
263         int restore_frame_count;
264         StackFrame **restore_frames;
265
266         /* The currently unloading appdomain */
267         MonoDomain *domain_unloading;
268 } DebuggerTlsData;
269
270 typedef struct {
271         const char *name;
272         void (*connect) (const char *address);
273         void (*close1) (void);
274         void (*close2) (void);
275         gboolean (*send) (void *buf, int len);
276         int (*recv) (void *buf, int len);
277 } DebuggerTransport;
278
279 /* 
280  * Wire Protocol definitions
281  */
282
283 #define HEADER_LENGTH 11
284
285 #define MAJOR_VERSION 2
286 #define MINOR_VERSION 40
287
288 typedef enum {
289         CMD_SET_VM = 1,
290         CMD_SET_OBJECT_REF = 9,
291         CMD_SET_STRING_REF = 10,
292         CMD_SET_THREAD = 11,
293         CMD_SET_ARRAY_REF = 13,
294         CMD_SET_EVENT_REQUEST = 15,
295         CMD_SET_STACK_FRAME = 16,
296         CMD_SET_APPDOMAIN = 20,
297         CMD_SET_ASSEMBLY = 21,
298         CMD_SET_METHOD = 22,
299         CMD_SET_TYPE = 23,
300         CMD_SET_MODULE = 24,
301         CMD_SET_FIELD = 25,
302         CMD_SET_EVENT = 64
303 } CommandSet;
304
305 typedef enum {
306         EVENT_KIND_VM_START = 0,
307         EVENT_KIND_VM_DEATH = 1,
308         EVENT_KIND_THREAD_START = 2,
309         EVENT_KIND_THREAD_DEATH = 3,
310         EVENT_KIND_APPDOMAIN_CREATE = 4,
311         EVENT_KIND_APPDOMAIN_UNLOAD = 5,
312         EVENT_KIND_METHOD_ENTRY = 6,
313         EVENT_KIND_METHOD_EXIT = 7,
314         EVENT_KIND_ASSEMBLY_LOAD = 8,
315         EVENT_KIND_ASSEMBLY_UNLOAD = 9,
316         EVENT_KIND_BREAKPOINT = 10,
317         EVENT_KIND_STEP = 11,
318         EVENT_KIND_TYPE_LOAD = 12,
319         EVENT_KIND_EXCEPTION = 13,
320         EVENT_KIND_KEEPALIVE = 14,
321         EVENT_KIND_USER_BREAK = 15,
322         EVENT_KIND_USER_LOG = 16
323 } EventKind;
324
325 typedef enum {
326         SUSPEND_POLICY_NONE = 0,
327         SUSPEND_POLICY_EVENT_THREAD = 1,
328         SUSPEND_POLICY_ALL = 2
329 } SuspendPolicy;
330
331 typedef enum {
332         ERR_NONE = 0,
333         ERR_INVALID_OBJECT = 20,
334         ERR_INVALID_FIELDID = 25,
335         ERR_INVALID_FRAMEID = 30,
336         ERR_NOT_IMPLEMENTED = 100,
337         ERR_NOT_SUSPENDED = 101,
338         ERR_INVALID_ARGUMENT = 102,
339         ERR_UNLOADED = 103,
340         ERR_NO_INVOCATION = 104,
341         ERR_ABSENT_INFORMATION = 105,
342         ERR_NO_SEQ_POINT_AT_IL_OFFSET = 106,
343         ERR_LOADER_ERROR = 200, /*XXX extend the protocol to pass this information down the pipe */
344 } ErrorCode;
345
346 typedef enum {
347         MOD_KIND_COUNT = 1,
348         MOD_KIND_THREAD_ONLY = 3,
349         MOD_KIND_LOCATION_ONLY = 7,
350         MOD_KIND_EXCEPTION_ONLY = 8,
351         MOD_KIND_STEP = 10,
352         MOD_KIND_ASSEMBLY_ONLY = 11,
353         MOD_KIND_SOURCE_FILE_ONLY = 12,
354         MOD_KIND_TYPE_NAME_ONLY = 13,
355         MOD_KIND_NONE = 14
356 } ModifierKind;
357
358 typedef enum {
359         STEP_DEPTH_INTO = 0,
360         STEP_DEPTH_OVER = 1,
361         STEP_DEPTH_OUT = 2
362 } StepDepth;
363
364 typedef enum {
365         STEP_SIZE_MIN = 0,
366         STEP_SIZE_LINE = 1
367 } StepSize;
368
369 typedef enum {
370         STEP_FILTER_NONE = 0,
371         STEP_FILTER_STATIC_CTOR = 1,
372         STEP_FILTER_DEBUGGER_HIDDEN = 2,
373         STEP_FILTER_DEBUGGER_STEP_THROUGH = 4,
374         STEP_FILTER_DEBUGGER_NON_USER_CODE = 8
375 } StepFilter;
376
377 typedef enum {
378         TOKEN_TYPE_STRING = 0,
379         TOKEN_TYPE_TYPE = 1,
380         TOKEN_TYPE_FIELD = 2,
381         TOKEN_TYPE_METHOD = 3,
382         TOKEN_TYPE_UNKNOWN = 4
383 } DebuggerTokenType;
384
385 typedef enum {
386         VALUE_TYPE_ID_NULL = 0xf0,
387         VALUE_TYPE_ID_TYPE = 0xf1,
388         VALUE_TYPE_ID_PARENT_VTYPE = 0xf2
389 } ValueTypeId;
390
391 typedef enum {
392         FRAME_FLAG_DEBUGGER_INVOKE = 1,
393         FRAME_FLAG_NATIVE_TRANSITION = 2
394 } StackFrameFlags;
395
396 typedef enum {
397         INVOKE_FLAG_DISABLE_BREAKPOINTS = 1,
398         INVOKE_FLAG_SINGLE_THREADED = 2,
399         INVOKE_FLAG_RETURN_OUT_THIS = 4,
400         INVOKE_FLAG_RETURN_OUT_ARGS = 8,
401         INVOKE_FLAG_VIRTUAL = 16
402 } InvokeFlags;
403
404 typedef enum {
405         BINDING_FLAGS_IGNORE_CASE = 0x70000000,
406 } BindingFlagsExtensions;
407
408 typedef enum {
409         CMD_VM_VERSION = 1,
410         CMD_VM_ALL_THREADS = 2,
411         CMD_VM_SUSPEND = 3,
412         CMD_VM_RESUME = 4,
413         CMD_VM_EXIT = 5,
414         CMD_VM_DISPOSE = 6,
415         CMD_VM_INVOKE_METHOD = 7,
416         CMD_VM_SET_PROTOCOL_VERSION = 8,
417         CMD_VM_ABORT_INVOKE = 9,
418         CMD_VM_SET_KEEPALIVE = 10,
419         CMD_VM_GET_TYPES_FOR_SOURCE_FILE = 11,
420         CMD_VM_GET_TYPES = 12,
421         CMD_VM_INVOKE_METHODS = 13,
422         CMD_VM_START_BUFFERING = 14,
423         CMD_VM_STOP_BUFFERING = 15
424 } CmdVM;
425
426 typedef enum {
427         CMD_THREAD_GET_FRAME_INFO = 1,
428         CMD_THREAD_GET_NAME = 2,
429         CMD_THREAD_GET_STATE = 3,
430         CMD_THREAD_GET_INFO = 4,
431         CMD_THREAD_GET_ID = 5,
432         CMD_THREAD_GET_TID = 6,
433         CMD_THREAD_SET_IP = 7
434 } CmdThread;
435
436 typedef enum {
437         CMD_EVENT_REQUEST_SET = 1,
438         CMD_EVENT_REQUEST_CLEAR = 2,
439         CMD_EVENT_REQUEST_CLEAR_ALL_BREAKPOINTS = 3
440 } CmdEvent;
441
442 typedef enum {
443         CMD_COMPOSITE = 100
444 } CmdComposite;
445
446 typedef enum {
447         CMD_APPDOMAIN_GET_ROOT_DOMAIN = 1,
448         CMD_APPDOMAIN_GET_FRIENDLY_NAME = 2,
449         CMD_APPDOMAIN_GET_ASSEMBLIES = 3,
450         CMD_APPDOMAIN_GET_ENTRY_ASSEMBLY = 4,
451         CMD_APPDOMAIN_CREATE_STRING = 5,
452         CMD_APPDOMAIN_GET_CORLIB = 6,
453         CMD_APPDOMAIN_CREATE_BOXED_VALUE = 7
454 } CmdAppDomain;
455
456 typedef enum {
457         CMD_ASSEMBLY_GET_LOCATION = 1,
458         CMD_ASSEMBLY_GET_ENTRY_POINT = 2,
459         CMD_ASSEMBLY_GET_MANIFEST_MODULE = 3,
460         CMD_ASSEMBLY_GET_OBJECT = 4,
461         CMD_ASSEMBLY_GET_TYPE = 5,
462         CMD_ASSEMBLY_GET_NAME = 6
463 } CmdAssembly;
464
465 typedef enum {
466         CMD_MODULE_GET_INFO = 1,
467 } CmdModule;
468
469 typedef enum {
470         CMD_FIELD_GET_INFO = 1,
471 } CmdField;
472
473 typedef enum {
474         CMD_METHOD_GET_NAME = 1,
475         CMD_METHOD_GET_DECLARING_TYPE = 2,
476         CMD_METHOD_GET_DEBUG_INFO = 3,
477         CMD_METHOD_GET_PARAM_INFO = 4,
478         CMD_METHOD_GET_LOCALS_INFO = 5,
479         CMD_METHOD_GET_INFO = 6,
480         CMD_METHOD_GET_BODY = 7,
481         CMD_METHOD_RESOLVE_TOKEN = 8,
482         CMD_METHOD_GET_CATTRS = 9,
483         CMD_METHOD_MAKE_GENERIC_METHOD = 10
484 } CmdMethod;
485
486 typedef enum {
487         CMD_TYPE_GET_INFO = 1,
488         CMD_TYPE_GET_METHODS = 2,
489         CMD_TYPE_GET_FIELDS = 3,
490         CMD_TYPE_GET_VALUES = 4,
491         CMD_TYPE_GET_OBJECT = 5,
492         CMD_TYPE_GET_SOURCE_FILES = 6,
493         CMD_TYPE_SET_VALUES = 7,
494         CMD_TYPE_IS_ASSIGNABLE_FROM = 8,
495         CMD_TYPE_GET_PROPERTIES = 9,
496         CMD_TYPE_GET_CATTRS = 10,
497         CMD_TYPE_GET_FIELD_CATTRS = 11,
498         CMD_TYPE_GET_PROPERTY_CATTRS = 12,
499         CMD_TYPE_GET_SOURCE_FILES_2 = 13,
500         CMD_TYPE_GET_VALUES_2 = 14,
501         CMD_TYPE_GET_METHODS_BY_NAME_FLAGS = 15,
502         CMD_TYPE_GET_INTERFACES = 16,
503         CMD_TYPE_GET_INTERFACE_MAP = 17,
504         CMD_TYPE_IS_INITIALIZED = 18,
505         CMD_TYPE_CREATE_INSTANCE = 19
506 } CmdType;
507
508 typedef enum {
509         CMD_STACK_FRAME_GET_VALUES = 1,
510         CMD_STACK_FRAME_GET_THIS = 2,
511         CMD_STACK_FRAME_SET_VALUES = 3,
512         CMD_STACK_FRAME_GET_DOMAIN = 4,
513 } CmdStackFrame;
514
515 typedef enum {
516         CMD_ARRAY_REF_GET_LENGTH = 1,
517         CMD_ARRAY_REF_GET_VALUES = 2,
518         CMD_ARRAY_REF_SET_VALUES = 3,
519 } CmdArray;
520
521 typedef enum {
522         CMD_STRING_REF_GET_VALUE = 1,
523         CMD_STRING_REF_GET_LENGTH = 2,
524         CMD_STRING_REF_GET_CHARS = 3
525 } CmdString;
526
527 typedef enum {
528         CMD_OBJECT_REF_GET_TYPE = 1,
529         CMD_OBJECT_REF_GET_VALUES = 2,
530         CMD_OBJECT_REF_IS_COLLECTED = 3,
531         CMD_OBJECT_REF_GET_ADDRESS = 4,
532         CMD_OBJECT_REF_GET_DOMAIN = 5,
533         CMD_OBJECT_REF_SET_VALUES = 6,
534         CMD_OBJECT_REF_GET_INFO = 7,
535 } CmdObject;
536
537 typedef struct {
538         ModifierKind kind;
539         union {
540                 int count; /* For kind == MOD_KIND_COUNT */
541                 MonoInternalThread *thread; /* For kind == MOD_KIND_THREAD_ONLY */
542                 MonoClass *exc_class; /* For kind == MONO_KIND_EXCEPTION_ONLY */
543                 MonoAssembly **assemblies; /* For kind == MONO_KIND_ASSEMBLY_ONLY */
544                 GHashTable *source_files; /* For kind == MONO_KIND_SOURCE_FILE_ONLY */
545                 GHashTable *type_names; /* For kind == MONO_KIND_TYPE_NAME_ONLY */
546                 StepFilter filter; /* For kind == MOD_KIND_STEP */
547         } data;
548         gboolean caught, uncaught, subclasses; /* For kind == MOD_KIND_EXCEPTION_ONLY */
549 } Modifier;
550
551 typedef struct{
552         int id;
553         int event_kind;
554         int suspend_policy;
555         int nmodifiers;
556         gpointer info;
557         Modifier modifiers [MONO_ZERO_LEN_ARRAY];
558 } EventRequest;
559
560 /*
561  * Describes a single step request.
562  */
563 typedef struct {
564         EventRequest *req;
565         MonoInternalThread *thread;
566         StepDepth depth;
567         StepSize size;
568         StepFilter filter;
569         gpointer last_sp;
570         gpointer start_sp;
571         MonoMethod *start_method;
572         MonoMethod *last_method;
573         int last_line;
574         /* Whenever single stepping is performed using start/stop_single_stepping () */
575         gboolean global;
576         /* The list of breakpoints used to implement step-over */
577         GSList *bps;
578         /* The number of frames at the start of a step-over */
579         int nframes;
580 } SingleStepReq;
581
582 /*
583  * Contains additional information for an event
584  */
585 typedef struct {
586         /* For EVENT_KIND_EXCEPTION */
587         MonoObject *exc;
588         MonoContext catch_ctx;
589         gboolean caught;
590         /* For EVENT_KIND_USER_LOG */
591         int level;
592         char *category, *message;
593         /* For EVENT_KIND_TYPE_LOAD */
594         MonoClass *klass;
595 } EventInfo;
596
597 /* Dummy structure used for the profiler callbacks */
598 typedef struct {
599         void* dummy;
600 } DebuggerProfiler;
601
602 typedef struct {
603         guint8 *buf, *p, *end;
604 } Buffer;
605
606 typedef struct ReplyPacket {
607         int id;
608         int error;
609         Buffer *data;
610 } ReplyPacket;
611
612 #define DEBUG(level,s) do { if (G_UNLIKELY ((level) <= log_level)) { s; fflush (log_file); } } while (0)
613
614 #ifdef PLATFORM_ANDROID
615 #define DEBUG_PRINTF(level, ...) do { if (G_UNLIKELY ((level) <= log_level)) { g_print (__VA_ARGS__); } } while (0)
616 #else
617 #define DEBUG_PRINTF(level, ...) do { if (G_UNLIKELY ((level) <= log_level)) { fprintf (log_file, __VA_ARGS__); fflush (log_file); } } while (0)
618 #endif
619
620 #ifdef HOST_WIN32
621 #define get_last_sock_error() WSAGetLastError()
622 #define MONO_EWOULDBLOCK WSAEWOULDBLOCK
623 #define MONO_EINTR WSAEINTR
624 #else
625 #define get_last_sock_error() errno
626 #define MONO_EWOULDBLOCK EWOULDBLOCK
627 #define MONO_EINTR EINTR
628 #endif
629
630 #define CHECK_PROTOCOL_VERSION(major,minor) \
631         (protocol_version_set && (major_version > (major) || (major_version == (major) && minor_version >= (minor))))
632
633 /*
634  * Globals
635  */
636
637 static AgentConfig agent_config;
638
639 /* 
640  * Whenever the agent is fully initialized.
641  * When using the onuncaught or onthrow options, only some parts of the agent are
642  * initialized on startup, and the full initialization which includes connection
643  * establishment and the startup of the agent thread is only done in response to
644  * an event.
645  */
646 static gint32 inited;
647
648 #ifndef DISABLE_SOCKET_TRANSPORT
649 static int conn_fd;
650 static int listen_fd;
651 #endif
652
653 static int packet_id = 0;
654
655 static int objref_id = 0;
656
657 static int event_request_id = 0;
658
659 static int frame_id = 0;
660
661 static GPtrArray *event_requests;
662
663 static MonoNativeTlsKey debugger_tls_id;
664
665 static gboolean vm_start_event_sent, vm_death_event_sent, disconnected;
666
667 /* Maps MonoInternalThread -> DebuggerTlsData */
668 static MonoGHashTable *thread_to_tls;
669
670 /* Maps tid -> MonoInternalThread */
671 static MonoGHashTable *tid_to_thread;
672
673 /* Maps tid -> MonoThread (not MonoInternalThread) */
674 static MonoGHashTable *tid_to_thread_obj;
675
676 static gsize debugger_thread_id;
677
678 static HANDLE debugger_thread_handle;
679
680 static int log_level;
681
682 static gboolean embedding;
683
684 static FILE *log_file;
685
686 /* Assemblies whose assembly load event has no been sent yet */
687 /* Protected by the dbg lock */
688 static GPtrArray *pending_assembly_loads;
689
690 /* Whenever the debugger thread has exited */
691 static gboolean debugger_thread_exited;
692
693 /* Cond variable used to wait for debugger_thread_exited becoming true */
694 static mono_cond_t debugger_thread_exited_cond;
695
696 /* Mutex for the cond var above */
697 static mono_mutex_t debugger_thread_exited_mutex;
698
699 static DebuggerProfiler debugger_profiler;
700
701 /* The single step request instance */
702 static SingleStepReq *ss_req;
703 static gpointer ss_invoke_addr;
704
705 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
706 /* Number of single stepping operations in progress */
707 static int ss_count;
708 #endif
709
710 /* The protocol version of the client */
711 static int major_version, minor_version;
712
713 /* Whenever the variables above are set by the client */
714 static gboolean protocol_version_set;
715
716 /* A hash table containing all active domains */
717 static GHashTable *domains;
718
719 /* The number of times the runtime is suspended */
720 static gint32 suspend_count;
721
722 /* Whenever to buffer reply messages and send them together */
723 static gboolean buffer_replies;
724
725 /* Buffered reply packets */
726 static ReplyPacket reply_packets [128];
727 int nreply_packets;
728
729 #define dbg_lock() mono_mutex_lock (&debug_mutex)
730 #define dbg_unlock() mono_mutex_unlock (&debug_mutex)
731 static mono_mutex_t debug_mutex;
732
733 static void transport_init (void);
734 static void transport_connect (const char *address);
735 static gboolean transport_handshake (void);
736 static void register_transport (DebuggerTransport *trans);
737
738 static guint32 WINAPI debugger_thread (void *arg);
739
740 static void runtime_initialized (MonoProfiler *prof);
741
742 static void runtime_shutdown (MonoProfiler *prof);
743
744 static void thread_startup (MonoProfiler *prof, uintptr_t tid);
745
746 static void thread_end (MonoProfiler *prof, uintptr_t tid);
747
748 static void appdomain_load (MonoProfiler *prof, MonoDomain *domain, int result);
749
750 static void appdomain_start_unload (MonoProfiler *prof, MonoDomain *domain);
751
752 static void appdomain_unload (MonoProfiler *prof, MonoDomain *domain);
753
754 static void emit_appdomain_load (gpointer key, gpointer value, gpointer user_data);
755
756 static void emit_thread_start (gpointer key, gpointer value, gpointer user_data);
757
758 static void invalidate_each_thread (gpointer key, gpointer value, gpointer user_data);
759
760 static void assembly_load (MonoProfiler *prof, MonoAssembly *assembly, int result);
761
762 static void assembly_unload (MonoProfiler *prof, MonoAssembly *assembly);
763
764 static void emit_assembly_load (gpointer assembly, gpointer user_data);
765
766 static void emit_type_load (gpointer key, gpointer type, gpointer user_data);
767
768 static void start_runtime_invoke (MonoProfiler *prof, MonoMethod *method);
769
770 static void end_runtime_invoke (MonoProfiler *prof, MonoMethod *method);
771
772 static void jit_end (MonoProfiler *prof, MonoMethod *method, MonoJitInfo *jinfo, int result);
773
774 static void add_pending_breakpoints (MonoMethod *method, MonoJitInfo *jinfo);
775
776 static void start_single_stepping (void);
777
778 static void stop_single_stepping (void);
779
780 static void suspend_current (void);
781
782 static void clear_event_requests_for_assembly (MonoAssembly *assembly);
783
784 static void clear_types_for_assembly (MonoAssembly *assembly);
785
786 static void clear_breakpoints_for_domain (MonoDomain *domain);
787
788 static void process_profiler_event (EventKind event, gpointer arg);
789
790 /* Submodule init/cleanup */
791 static void breakpoints_init (void);
792 static void breakpoints_cleanup (void);
793
794 static void objrefs_init (void);
795 static void objrefs_cleanup (void);
796
797 static void ids_init (void);
798 static void ids_cleanup (void);
799
800 static void suspend_init (void);
801
802 static void ss_start (SingleStepReq *ss_req, MonoMethod *method, SeqPoint *sp, MonoSeqPointInfo *info, MonoContext *ctx, DebuggerTlsData *tls, gboolean step_to_catch,
803                                           StackFrame **frames, int nframes);
804 static ErrorCode ss_create (MonoInternalThread *thread, StepSize size, StepDepth depth, StepFilter filter, EventRequest *req);
805 static void ss_destroy (SingleStepReq *req);
806
807 static void start_debugger_thread (void);
808 static void stop_debugger_thread (void);
809
810 static void finish_agent_init (gboolean on_startup);
811
812 static void process_profiler_event (EventKind event, gpointer arg);
813
814 static void invalidate_frames (DebuggerTlsData *tls);
815
816 #ifndef DISABLE_SOCKET_TRANSPORT
817 static void
818 register_socket_transport (void);
819 #endif
820
821 static inline gboolean
822 is_debugger_thread (void)
823 {
824         return GetCurrentThreadId () == debugger_thread_id;
825 }
826
827 static int
828 parse_address (char *address, char **host, int *port)
829 {
830         char *pos = strchr (address, ':');
831
832         if (pos == NULL || pos == address)
833                 return 1;
834
835         *host = g_malloc (pos - address + 1);
836         strncpy (*host, address, pos - address);
837         (*host) [pos - address] = '\0';
838
839         *port = atoi (pos + 1);
840
841         return 0;
842 }
843
844 static void
845 print_usage (void)
846 {
847         fprintf (stderr, "Usage: mono --debugger-agent=[<option>=<value>,...] ...\n");
848         fprintf (stderr, "Available options:\n");
849         fprintf (stderr, "  transport=<transport>\t\tTransport to use for connecting to the debugger (mandatory, possible values: 'dt_socket')\n");
850         fprintf (stderr, "  address=<hostname>:<port>\tAddress to connect to (mandatory)\n");
851         fprintf (stderr, "  loglevel=<n>\t\t\tLog level (defaults to 0)\n");
852         fprintf (stderr, "  logfile=<file>\t\tFile to log to (defaults to stdout)\n");
853         fprintf (stderr, "  suspend=y/n\t\t\tWhether to suspend after startup.\n");
854         fprintf (stderr, "  timeout=<n>\t\t\tTimeout for connecting in milliseconds.\n");
855         fprintf (stderr, "  server=y/n\t\t\tWhether to listen for a client connection.\n");
856         fprintf (stderr, "  keepalive=<n>\t\t\tSend keepalive events every n milliseconds.\n");
857         fprintf (stderr, "  setpgid=y/n\t\t\tWhether to call setpid(0, 0) after startup.\n");
858         fprintf (stderr, "  help\t\t\t\tPrint this help.\n");
859 }
860
861 static gboolean
862 parse_flag (const char *option, char *flag)
863 {
864         if (!strcmp (flag, "y"))
865                 return TRUE;
866         else if (!strcmp (flag, "n"))
867                 return FALSE;
868         else {
869                 fprintf (stderr, "debugger-agent: The valid values for the '%s' option are 'y' and 'n'.\n", option);
870                 exit (1);
871                 return FALSE;
872         }
873 }
874
875 void
876 mono_debugger_agent_parse_options (char *options)
877 {
878         char **args, **ptr;
879         char *host;
880         int port;
881         const char *extra;
882
883 #ifndef MONO_ARCH_SOFT_DEBUG_SUPPORTED
884         fprintf (stderr, "--debugger-agent is not supported on this platform.\n");
885         exit (1);
886 #endif
887
888         extra = g_getenv ("MONO_SDB_ENV_OPTIONS");
889         if (extra)
890                 options = g_strdup_printf ("%s,%s", options, extra);
891
892         agent_config.enabled = TRUE;
893         agent_config.suspend = TRUE;
894         agent_config.server = FALSE;
895         agent_config.defer = FALSE;
896         agent_config.address = NULL;
897
898         //agent_config.log_level = 10;
899
900         args = g_strsplit (options, ",", -1);
901         for (ptr = args; ptr && *ptr; ptr ++) {
902                 char *arg = *ptr;
903
904                 if (strncmp (arg, "transport=", 10) == 0) {
905                         agent_config.transport = g_strdup (arg + 10);
906                 } else if (strncmp (arg, "address=", 8) == 0) {
907                         agent_config.address = g_strdup (arg + 8);
908                 } else if (strncmp (arg, "loglevel=", 9) == 0) {
909                         agent_config.log_level = atoi (arg + 9);
910                 } else if (strncmp (arg, "logfile=", 8) == 0) {
911                         agent_config.log_file = g_strdup (arg + 8);
912                 } else if (strncmp (arg, "suspend=", 8) == 0) {
913                         agent_config.suspend = parse_flag ("suspend", arg + 8);
914                 } else if (strncmp (arg, "server=", 7) == 0) {
915                         agent_config.server = parse_flag ("server", arg + 7);
916                 } else if (strncmp (arg, "onuncaught=", 11) == 0) {
917                         agent_config.onuncaught = parse_flag ("onuncaught", arg + 11);
918                 } else if (strncmp (arg, "onthrow=", 8) == 0) {
919                         /* We support multiple onthrow= options */
920                         agent_config.onthrow = g_slist_append (agent_config.onthrow, g_strdup (arg + 8));
921                 } else if (strncmp (arg, "onthrow", 7) == 0) {
922                         agent_config.onthrow = g_slist_append (agent_config.onthrow, g_strdup (""));
923                 } else if (strncmp (arg, "help", 4) == 0) {
924                         print_usage ();
925                         exit (0);
926                 } else if (strncmp (arg, "timeout=", 8) == 0) {
927                         agent_config.timeout = atoi (arg + 8);
928                 } else if (strncmp (arg, "launch=", 7) == 0) {
929                         agent_config.launch = g_strdup (arg + 7);
930                 } else if (strncmp (arg, "embedding=", 10) == 0) {
931                         agent_config.embedding = atoi (arg + 10) == 1;
932                 } else if (strncmp (arg, "keepalive=", 10) == 0) {
933                         agent_config.keepalive = atoi (arg + 10);
934                 } else if (strncmp (arg, "setpgid=", 8) == 0) {
935                         agent_config.setpgid = parse_flag ("setpgid", arg + 8);
936                 } else {
937                         print_usage ();
938                         exit (1);
939                 }
940         }
941
942         if (agent_config.server && !agent_config.suspend) {
943                 /* Waiting for deferred attachment */
944                 agent_config.defer = TRUE;
945                 if (agent_config.address == NULL) {
946                         agent_config.address = g_strdup_printf ("0.0.0.0:%u", 56000 + (getpid () % 1000));
947                 }
948         }
949
950         //agent_config.log_level = 0;
951
952         if (agent_config.transport == NULL) {
953                 fprintf (stderr, "debugger-agent: The 'transport' option is mandatory.\n");
954                 exit (1);
955         }
956
957         if (agent_config.address == NULL && !agent_config.server) {
958                 fprintf (stderr, "debugger-agent: The 'address' option is mandatory.\n");
959                 exit (1);
960         }
961
962         // FIXME:
963         if (!strcmp (agent_config.transport, "dt_socket")) {
964                 if (agent_config.address && parse_address (agent_config.address, &host, &port)) {
965                         fprintf (stderr, "debugger-agent: The format of the 'address' options is '<host>:<port>'\n");
966                         exit (1);
967                 }
968         }
969 }
970
971 void
972 mono_debugger_agent_init (void)
973 {
974         mono_mutex_init_recursive (&debug_mutex);
975
976         if (!agent_config.enabled)
977                 return;
978
979         transport_init ();
980
981         /* Need to know whenever a thread has acquired the loader mutex */
982         mono_loader_lock_track_ownership (TRUE);
983
984         event_requests = g_ptr_array_new ();
985
986         mono_mutex_init (&debugger_thread_exited_mutex);
987         mono_cond_init (&debugger_thread_exited_cond, NULL);
988
989         mono_profiler_install ((MonoProfiler*)&debugger_profiler, runtime_shutdown);
990         mono_profiler_set_events (MONO_PROFILE_APPDOMAIN_EVENTS | MONO_PROFILE_THREADS | MONO_PROFILE_ASSEMBLY_EVENTS | MONO_PROFILE_JIT_COMPILATION | MONO_PROFILE_METHOD_EVENTS);
991         mono_profiler_install_runtime_initialized (runtime_initialized);
992         mono_profiler_install_appdomain (NULL, appdomain_load, appdomain_start_unload, appdomain_unload);
993         mono_profiler_install_thread (thread_startup, thread_end);
994         mono_profiler_install_assembly (NULL, assembly_load, assembly_unload, NULL);
995         mono_profiler_install_jit_end (jit_end);
996         mono_profiler_install_method_invoke (start_runtime_invoke, end_runtime_invoke);
997
998         mono_native_tls_alloc (&debugger_tls_id, NULL);
999
1000         /* Needed by the hash_table_new_type () call below */
1001         mono_gc_base_init ();
1002
1003         thread_to_tls = mono_g_hash_table_new_type (NULL, NULL, MONO_HASH_KEY_GC);
1004         MONO_GC_REGISTER_ROOT_FIXED (thread_to_tls);
1005
1006         tid_to_thread = mono_g_hash_table_new_type (NULL, NULL, MONO_HASH_VALUE_GC);
1007         MONO_GC_REGISTER_ROOT_FIXED (tid_to_thread);
1008
1009         tid_to_thread_obj = mono_g_hash_table_new_type (NULL, NULL, MONO_HASH_VALUE_GC);
1010         MONO_GC_REGISTER_ROOT_FIXED (tid_to_thread_obj);
1011
1012         pending_assembly_loads = g_ptr_array_new ();
1013         domains = g_hash_table_new (mono_aligned_addr_hash, NULL);
1014
1015         log_level = agent_config.log_level;
1016
1017         embedding = agent_config.embedding;
1018         disconnected = TRUE;
1019
1020         if (agent_config.log_file) {
1021                 log_file = fopen (agent_config.log_file, "w+");
1022                 if (!log_file) {
1023                         fprintf (stderr, "Unable to create log file '%s': %s.\n", agent_config.log_file, strerror (errno));
1024                         exit (1);
1025                 }
1026         } else {
1027                 log_file = stdout;
1028         }
1029
1030         ids_init ();
1031         objrefs_init ();
1032         breakpoints_init ();
1033         suspend_init ();
1034
1035         mini_get_debug_options ()->gen_sdb_seq_points = TRUE;
1036         /* 
1037          * This is needed because currently we don't handle liveness info.
1038          */
1039         mini_get_debug_options ()->mdb_optimizations = TRUE;
1040
1041 #ifndef MONO_ARCH_HAVE_CONTEXT_SET_INT_REG
1042         /* This is needed because we can't set local variables in registers yet */
1043         mono_disable_optimizations (MONO_OPT_LINEARS);
1044 #endif
1045
1046         /*
1047          * The stack walk done from thread_interrupt () needs to be signal safe, but it
1048          * isn't, since it can call into mono_aot_find_jit_info () which is not signal
1049          * safe (#3411). So load AOT info eagerly when the debugger is running as a
1050          * workaround.
1051          */
1052         mini_get_debug_options ()->load_aot_jit_info_eagerly = TRUE;
1053
1054 #ifdef HAVE_SETPGID
1055         if (agent_config.setpgid)
1056                 setpgid (0, 0);
1057 #endif
1058
1059         if (!agent_config.onuncaught && !agent_config.onthrow)
1060                 finish_agent_init (TRUE);
1061 }
1062
1063 /*
1064  * finish_agent_init:
1065  *
1066  *   Finish the initialization of the agent. This involves connecting the transport
1067  * and starting the agent thread. This is either done at startup, or
1068  * in response to some event like an unhandled exception.
1069  */
1070 static void
1071 finish_agent_init (gboolean on_startup)
1072 {
1073         int res;
1074
1075         if (InterlockedCompareExchange (&inited, 1, 0) == 1)
1076                 return;
1077
1078         if (agent_config.launch) {
1079                 char *argv [16];
1080
1081                 // FIXME: Generated address
1082                 // FIXME: Races with transport_connect ()
1083
1084                 argv [0] = agent_config.launch;
1085                 argv [1] = agent_config.transport;
1086                 argv [2] = agent_config.address;
1087                 argv [3] = NULL;
1088
1089                 res = g_spawn_async_with_pipes (NULL, argv, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
1090                 if (!res) {
1091                         fprintf (stderr, "Failed to execute '%s'.\n", agent_config.launch);
1092                         exit (1);
1093                 }
1094         }
1095
1096         transport_connect (agent_config.address);
1097
1098         if (!on_startup) {
1099                 /* Do some which is usually done after sending the VMStart () event */
1100                 vm_start_event_sent = TRUE;
1101                 start_debugger_thread ();
1102         }
1103 }
1104
1105 static void
1106 mono_debugger_agent_cleanup (void)
1107 {
1108         if (!inited)
1109                 return;
1110
1111         stop_debugger_thread ();
1112
1113         breakpoints_cleanup ();
1114         objrefs_cleanup ();
1115         ids_cleanup ();
1116         
1117         mono_mutex_destroy (&debugger_thread_exited_mutex);
1118         mono_cond_destroy (&debugger_thread_exited_cond);
1119 }
1120
1121 /*
1122  * SOCKET TRANSPORT
1123  */
1124
1125 #ifndef DISABLE_SOCKET_TRANSPORT
1126
1127 /*
1128  * recv_length:
1129  *
1130  * recv() + handle incomplete reads and EINTR
1131  */
1132 static int
1133 socket_transport_recv (void *buf, int len)
1134 {
1135         int res;
1136         int total = 0;
1137         int fd = conn_fd;
1138         int flags = 0;
1139         static gint32 last_keepalive;
1140         gint32 msecs;
1141
1142         do {
1143         again:
1144                 res = recv (fd, (char *) buf + total, len - total, flags);
1145                 if (res > 0)
1146                         total += res;
1147                 if (agent_config.keepalive) {
1148                         gboolean need_keepalive = FALSE;
1149                         if (res == -1 && get_last_sock_error () == MONO_EWOULDBLOCK) {
1150                                 need_keepalive = TRUE;
1151                         } else if (res == -1) {
1152                                 /* This could happen if recv () is interrupted repeatedly */
1153                                 msecs = mono_msec_ticks ();
1154                                 if (msecs - last_keepalive >= agent_config.keepalive) {
1155                                         need_keepalive = TRUE;
1156                                         last_keepalive = msecs;
1157                                 }
1158                         }
1159                         if (need_keepalive) {
1160                                 process_profiler_event (EVENT_KIND_KEEPALIVE, NULL);
1161                                 goto again;
1162                         }
1163                 }
1164         } while ((res > 0 && total < len) || (res == -1 && get_last_sock_error () == MONO_EINTR));
1165         return total;
1166 }
1167  
1168 static void
1169 set_keepalive (void)
1170 {
1171         struct timeval tv;
1172         int result;
1173
1174         if (!agent_config.keepalive || !conn_fd)
1175                 return;
1176
1177         tv.tv_sec = agent_config.keepalive / 1000;
1178         tv.tv_usec = (agent_config.keepalive % 1000) * 1000;
1179
1180         result = setsockopt (conn_fd, SOL_SOCKET, SO_RCVTIMEO, (char *) &tv, sizeof(struct timeval));
1181         g_assert (result >= 0);
1182 }
1183
1184 static int
1185 socket_transport_accept (int socket_fd)
1186 {
1187         conn_fd = accept (socket_fd, NULL, NULL);
1188         if (conn_fd == -1) {
1189                 fprintf (stderr, "debugger-agent: Unable to listen on %d\n", socket_fd);
1190         } else {
1191                 DEBUG_PRINTF (1, "Accepted connection from client, connection fd=%d.\n", conn_fd);
1192         }
1193         
1194         return conn_fd;
1195 }
1196
1197 static gboolean
1198 socket_transport_send (void *data, int len)
1199 {
1200         int res;
1201
1202         do {
1203                 res = send (conn_fd, data, len, 0);
1204         } while (res == -1 && get_last_sock_error () == MONO_EINTR);
1205         if (res != len)
1206                 return FALSE;
1207         else
1208                 return TRUE;
1209 }
1210
1211 /*
1212  * socket_transport_connect:
1213  *
1214  *   Connect/Listen on HOST:PORT. If HOST is NULL, generate an address and listen on it.
1215  */
1216 static void
1217 socket_transport_connect (const char *address)
1218 {
1219         MonoAddressInfo *result;
1220         MonoAddressEntry *rp;
1221         int sfd = -1, s, res;
1222         char *host;
1223         int port;
1224
1225         if (agent_config.address) {
1226                 res = parse_address (agent_config.address, &host, &port);
1227                 g_assert (res == 0);
1228         } else {
1229                 host = NULL;
1230                 port = 0;
1231         }
1232
1233         conn_fd = -1;
1234         listen_fd = -1;
1235
1236         if (host) {
1237
1238                 mono_network_init ();
1239
1240                 /* Obtain address(es) matching host/port */
1241                 s = mono_get_address_info (host, port, MONO_HINT_UNSPECIFIED, &result);
1242                 if (s != 0) {
1243                         fprintf (stderr, "debugger-agent: Unable to resolve %s:%d: %d\n", host, port, s); // FIXME add portable error conversion functions
1244                         exit (1);
1245                 }
1246         }
1247
1248         if (agent_config.server) {
1249                 /* Wait for a connection */
1250                 if (!host) {
1251                         struct sockaddr_in addr;
1252                         socklen_t addrlen;
1253
1254                         /* No address, generate one */
1255                         sfd = socket (AF_INET, SOCK_STREAM, 0);
1256                         g_assert (sfd);
1257
1258                         /* This will bind the socket to a random port */
1259                         res = listen (sfd, 16);
1260                         if (res == -1) {
1261                                 fprintf (stderr, "debugger-agent: Unable to setup listening socket: %s\n", strerror (get_last_sock_error ()));
1262                                 exit (1);
1263                         }
1264                         listen_fd = sfd;
1265
1266                         addrlen = sizeof (addr);
1267                         memset (&addr, 0, sizeof (addr));
1268                         res = getsockname (sfd, (struct sockaddr*)&addr, &addrlen);
1269                         g_assert (res == 0);
1270
1271                         host = (char*)"127.0.0.1";
1272                         port = ntohs (addr.sin_port);
1273
1274                         /* Emit the address to stdout */
1275                         /* FIXME: Should print another interface, not localhost */
1276                         printf ("%s:%d\n", host, port);
1277                 } else {
1278                         /* Listen on the provided address */
1279                         for (rp = result->entries; rp != NULL; rp = rp->next) {
1280                                 MonoSocketAddress sockaddr;
1281                                 socklen_t sock_len;
1282                                 int n = 1;
1283
1284                                 mono_socket_address_init (&sockaddr, &sock_len, rp->family, &rp->address, port);
1285
1286                                 sfd = socket (rp->family, rp->socktype,
1287                                                           rp->protocol);
1288                                 if (sfd == -1)
1289                                         continue;
1290
1291                                 if (setsockopt (sfd, SOL_SOCKET, SO_REUSEADDR, &n, sizeof(n)) == -1)
1292                                         continue;
1293
1294                                 res = bind (sfd, &sockaddr.addr, sock_len);
1295                                 if (res == -1)
1296                                         continue;
1297
1298                                 res = listen (sfd, 16);
1299                                 if (res == -1)
1300                                         continue;
1301                                 listen_fd = sfd;
1302                                 break;
1303                         }
1304
1305                         mono_free_address_info (result);
1306                 }
1307
1308                 if (agent_config.defer)
1309                         return;
1310
1311                 DEBUG_PRINTF (1, "Listening on %s:%d (timeout=%d ms)...\n", host, port, agent_config.timeout);
1312
1313                 if (agent_config.timeout) {
1314                         fd_set readfds;
1315                         struct timeval tv;
1316
1317                         tv.tv_sec = 0;
1318                         tv.tv_usec = agent_config.timeout * 1000;
1319                         FD_ZERO (&readfds);
1320                         FD_SET (sfd, &readfds);
1321                         res = select (sfd + 1, &readfds, NULL, NULL, &tv);
1322                         if (res == 0) {
1323                                 fprintf (stderr, "debugger-agent: Timed out waiting to connect.\n");
1324                                 exit (1);
1325                         }
1326                 }
1327
1328                 conn_fd = socket_transport_accept (sfd);
1329                 if (conn_fd == -1)
1330                         exit (1);
1331
1332                 DEBUG_PRINTF (1, "Accepted connection from client, socket fd=%d.\n", conn_fd);
1333         } else {
1334                 /* Connect to the specified address */
1335                 /* FIXME: Respect the timeout */
1336                 for (rp = result->entries; rp != NULL; rp = rp->next) {
1337                         MonoSocketAddress sockaddr;
1338                         socklen_t sock_len;
1339
1340                         mono_socket_address_init (&sockaddr, &sock_len, rp->family, &rp->address, port);
1341
1342                         sfd = socket (rp->family, rp->socktype,
1343                                                   rp->protocol);
1344                         if (sfd == -1)
1345                                 continue;
1346
1347                         if (connect (sfd, &sockaddr.addr, sock_len) != -1)
1348                                 break;       /* Success */
1349                         
1350                         close (sfd);
1351                 }
1352
1353                 if (rp == 0) {
1354                         fprintf (stderr, "debugger-agent: Unable to connect to %s:%d\n", host, port);
1355                         exit (1);
1356                 }
1357
1358                 conn_fd = sfd;
1359
1360                 mono_free_address_info (result);
1361         }
1362         
1363         if (!transport_handshake ())
1364                 exit (1);
1365 }
1366
1367 static void
1368 socket_transport_close1 (void)
1369 {
1370         /* This will interrupt the agent thread */
1371         /* Close the read part only so it can still send back replies */
1372         /* Also shut down the connection listener so that we can exit normally */
1373 #ifdef HOST_WIN32
1374         /* SD_RECEIVE doesn't break the recv in the debugger thread */
1375         shutdown (conn_fd, SD_BOTH);
1376         shutdown (listen_fd, SD_BOTH);
1377         closesocket (listen_fd);
1378 #else
1379         shutdown (conn_fd, SHUT_RD);
1380         shutdown (listen_fd, SHUT_RDWR);
1381         close (listen_fd);
1382 #endif
1383 }
1384
1385 static void
1386 socket_transport_close2 (void)
1387 {
1388 #ifdef HOST_WIN32
1389         shutdown (conn_fd, SD_BOTH);
1390 #else
1391         shutdown (conn_fd, SHUT_RDWR);
1392 #endif
1393 }
1394
1395 static void
1396 register_socket_transport (void)
1397 {
1398         DebuggerTransport trans;
1399
1400         trans.name = "dt_socket";
1401         trans.connect = socket_transport_connect;
1402         trans.close1 = socket_transport_close1;
1403         trans.close2 = socket_transport_close2;
1404         trans.send = socket_transport_send;
1405         trans.recv = socket_transport_recv;
1406
1407         register_transport (&trans);
1408 }
1409
1410 /*
1411  * socket_fd_transport_connect:
1412  *
1413  */
1414 static void
1415 socket_fd_transport_connect (const char *address)
1416 {
1417         int res;
1418
1419         res = sscanf (address, "%d", &conn_fd);
1420         if (res != 1) {
1421                 fprintf (stderr, "debugger-agent: socket-fd transport address is invalid: '%s'\n", address);
1422                 exit (1);
1423         }
1424
1425         if (!transport_handshake ())
1426                 exit (1);
1427 }
1428
1429 static void
1430 register_socket_fd_transport (void)
1431 {
1432         DebuggerTransport trans;
1433
1434         /* This is the same as the 'dt_socket' transport, but receives an already connected socket fd */
1435         trans.name = "socket-fd";
1436         trans.connect = socket_fd_transport_connect;
1437         trans.close1 = socket_transport_close1;
1438         trans.close2 = socket_transport_close2;
1439         trans.send = socket_transport_send;
1440         trans.recv = socket_transport_recv;
1441
1442         register_transport (&trans);
1443 }
1444
1445 #endif /* DISABLE_SOCKET_TRANSPORT */
1446
1447 /*
1448  * TRANSPORT CODE
1449  */
1450
1451 #define MAX_TRANSPORTS 16
1452
1453 static DebuggerTransport *transport;
1454
1455 static DebuggerTransport transports [MAX_TRANSPORTS];
1456 static int ntransports;
1457
1458 MONO_API void
1459 mono_debugger_agent_register_transport (DebuggerTransport *trans);
1460
1461 void
1462 mono_debugger_agent_register_transport (DebuggerTransport *trans)
1463 {
1464         register_transport (trans);
1465 }
1466
1467 static void
1468 register_transport (DebuggerTransport *trans)
1469 {
1470         g_assert (ntransports < MAX_TRANSPORTS);
1471
1472         memcpy (&transports [ntransports], trans, sizeof (DebuggerTransport));
1473         ntransports ++;
1474 }
1475
1476 static void
1477 transport_init (void)
1478 {
1479         int i;
1480
1481 #ifndef DISABLE_SOCKET_TRANSPORT
1482         register_socket_transport ();
1483         register_socket_fd_transport ();
1484 #endif
1485
1486         for (i = 0; i < ntransports; ++i) {
1487                 if (!strcmp (agent_config.transport, transports [i].name))
1488                         break;
1489         }
1490         if (i == ntransports) {
1491                 fprintf (stderr, "debugger-agent: The supported values for the 'transport' option are: ");
1492                 for (i = 0; i < ntransports; ++i)
1493                         fprintf (stderr, "%s'%s'", i > 0 ? ", " : "", transports [i].name);
1494                 fprintf (stderr, "\n");
1495                 exit (1);
1496         }
1497         transport = &transports [i];
1498 }
1499
1500 void
1501 transport_connect (const char *address)
1502 {
1503         transport->connect (address);
1504 }
1505
1506 static void
1507 transport_close1 (void)
1508 {
1509         transport->close1 ();
1510 }
1511
1512 static void
1513 transport_close2 (void)
1514 {
1515         transport->close2 ();
1516 }
1517
1518 static int
1519 transport_send (void *buf, int len)
1520 {
1521         return transport->send (buf, len);
1522 }
1523
1524 static int
1525 transport_recv (void *buf, int len)
1526 {
1527         return transport->recv (buf, len);
1528 }
1529
1530 gboolean
1531 mono_debugger_agent_transport_handshake (void)
1532 {
1533         return transport_handshake ();
1534 }
1535
1536 static gboolean
1537 transport_handshake (void)
1538 {
1539         char handshake_msg [128];
1540         guint8 buf [128];
1541         int res;
1542         
1543         disconnected = TRUE;
1544         
1545         /* Write handshake message */
1546         sprintf (handshake_msg, "DWP-Handshake");
1547         do {
1548                 res = transport_send (handshake_msg, strlen (handshake_msg));
1549         } while (res == -1 && get_last_sock_error () == MONO_EINTR);
1550         g_assert (res != -1);
1551
1552         /* Read answer */
1553         res = transport_recv (buf, strlen (handshake_msg));
1554         if ((res != strlen (handshake_msg)) || (memcmp (buf, handshake_msg, strlen (handshake_msg)) != 0)) {
1555                 fprintf (stderr, "debugger-agent: DWP handshake failed.\n");
1556                 return FALSE;
1557         }
1558
1559         /*
1560          * To support older clients, the client sends its protocol version after connecting
1561          * using a command. Until that is received, default to our protocol version.
1562          */
1563         major_version = MAJOR_VERSION;
1564         minor_version = MINOR_VERSION;
1565         protocol_version_set = FALSE;
1566
1567 #ifndef DISABLE_SOCKET_TRANSPORT
1568         // FIXME: Move this somewhere else
1569         /* 
1570          * Set TCP_NODELAY on the socket so the client receives events/command
1571          * results immediately.
1572          */
1573         if (conn_fd) {
1574                 int flag = 1;
1575                 int result = setsockopt (conn_fd,
1576                                  IPPROTO_TCP,
1577                                  TCP_NODELAY,
1578                                  (char *) &flag,
1579                                  sizeof(int));
1580                 g_assert (result >= 0);
1581         }
1582
1583         set_keepalive ();
1584 #endif
1585         
1586         disconnected = FALSE;
1587         return TRUE;
1588 }
1589
1590 static void
1591 stop_debugger_thread (void)
1592 {
1593         if (!inited)
1594                 return;
1595
1596         transport_close1 ();
1597
1598         /* 
1599          * Wait for the thread to exit.
1600          *
1601          * If we continue with the shutdown without waiting for it, then the client might
1602          * not receive an answer to its last command like a resume.
1603          * The WaitForSingleObject infrastructure doesn't seem to work during shutdown, so
1604          * use pthreads.
1605          */
1606         //WaitForSingleObject (debugger_thread_handle, INFINITE);
1607         if (GetCurrentThreadId () != debugger_thread_id) {
1608                 do {
1609                         mono_mutex_lock (&debugger_thread_exited_mutex);
1610                         if (!debugger_thread_exited) {
1611 #ifdef HOST_WIN32
1612                                 if (WAIT_TIMEOUT == WaitForSingleObject(debugger_thread_exited_cond, 0)) {
1613                                         mono_mutex_unlock (&debugger_thread_exited_mutex);
1614                                         Sleep(1);
1615                                         mono_mutex_lock (&debugger_thread_exited_mutex);
1616                                 }
1617 #else
1618                                 mono_cond_wait (&debugger_thread_exited_cond, &debugger_thread_exited_mutex);
1619 #endif
1620                         }
1621                         mono_mutex_unlock (&debugger_thread_exited_mutex);
1622                 } while (!debugger_thread_exited);
1623         }
1624
1625         transport_close2 ();
1626 }
1627
1628 static void
1629 start_debugger_thread (void)
1630 {
1631         debugger_thread_handle = mono_threads_create_thread (debugger_thread, NULL, 0, 0, NULL);
1632         g_assert (debugger_thread_handle);
1633 }
1634
1635 /*
1636  * Functions to decode protocol data
1637  */
1638
1639 static inline int
1640 decode_byte (guint8 *buf, guint8 **endbuf, guint8 *limit)
1641 {
1642         *endbuf = buf + 1;
1643         g_assert (*endbuf <= limit);
1644         return buf [0];
1645 }
1646
1647 static inline int
1648 decode_int (guint8 *buf, guint8 **endbuf, guint8 *limit)
1649 {
1650         *endbuf = buf + 4;
1651         g_assert (*endbuf <= limit);
1652
1653         return (((int)buf [0]) << 24) | (((int)buf [1]) << 16) | (((int)buf [2]) << 8) | (((int)buf [3]) << 0);
1654 }
1655
1656 static inline gint64
1657 decode_long (guint8 *buf, guint8 **endbuf, guint8 *limit)
1658 {
1659         guint32 high = decode_int (buf, &buf, limit);
1660         guint32 low = decode_int (buf, &buf, limit);
1661
1662         *endbuf = buf;
1663
1664         return ((((guint64)high) << 32) | ((guint64)low));
1665 }
1666
1667 static inline int
1668 decode_id (guint8 *buf, guint8 **endbuf, guint8 *limit)
1669 {
1670         return decode_int (buf, endbuf, limit);
1671 }
1672
1673 static inline char*
1674 decode_string (guint8 *buf, guint8 **endbuf, guint8 *limit)
1675 {
1676         int len = decode_int (buf, &buf, limit);
1677         char *s;
1678
1679         if (len < 0) {
1680                 *endbuf = buf;
1681                 return NULL;
1682         }
1683
1684         s = g_malloc (len + 1);
1685         g_assert (s);
1686
1687         memcpy (s, buf, len);
1688         s [len] = '\0';
1689         buf += len;
1690         *endbuf = buf;
1691
1692         return s;
1693 }
1694
1695 /*
1696  * Functions to encode protocol data
1697  */
1698
1699 static inline void
1700 buffer_init (Buffer *buf, int size)
1701 {
1702         buf->buf = g_malloc (size);
1703         buf->p = buf->buf;
1704         buf->end = buf->buf + size;
1705 }
1706
1707 static inline int
1708 buffer_len (Buffer *buf)
1709 {
1710         return buf->p - buf->buf;
1711 }
1712
1713 static inline void
1714 buffer_make_room (Buffer *buf, int size)
1715 {
1716         if (buf->end - buf->p < size) {
1717                 int new_size = buf->end - buf->buf + size + 32;
1718                 guint8 *p = g_realloc (buf->buf, new_size);
1719                 size = buf->p - buf->buf;
1720                 buf->buf = p;
1721                 buf->p = p + size;
1722                 buf->end = buf->buf + new_size;
1723         }
1724 }
1725
1726 static inline void
1727 buffer_add_byte (Buffer *buf, guint8 val)
1728 {
1729         buffer_make_room (buf, 1);
1730         buf->p [0] = val;
1731         buf->p++;
1732 }
1733
1734 static inline void
1735 buffer_add_short (Buffer *buf, guint32 val)
1736 {
1737         buffer_make_room (buf, 2);
1738         buf->p [0] = (val >> 8) & 0xff;
1739         buf->p [1] = (val >> 0) & 0xff;
1740         buf->p += 2;
1741 }
1742
1743 static inline void
1744 buffer_add_int (Buffer *buf, guint32 val)
1745 {
1746         buffer_make_room (buf, 4);
1747         buf->p [0] = (val >> 24) & 0xff;
1748         buf->p [1] = (val >> 16) & 0xff;
1749         buf->p [2] = (val >> 8) & 0xff;
1750         buf->p [3] = (val >> 0) & 0xff;
1751         buf->p += 4;
1752 }
1753
1754 static inline void
1755 buffer_add_long (Buffer *buf, guint64 l)
1756 {
1757         buffer_add_int (buf, (l >> 32) & 0xffffffff);
1758         buffer_add_int (buf, (l >> 0) & 0xffffffff);
1759 }
1760
1761 static inline void
1762 buffer_add_id (Buffer *buf, int id)
1763 {
1764         buffer_add_int (buf, (guint64)id);
1765 }
1766
1767 static inline void
1768 buffer_add_data (Buffer *buf, guint8 *data, int len)
1769 {
1770         buffer_make_room (buf, len);
1771         memcpy (buf->p, data, len);
1772         buf->p += len;
1773 }
1774
1775 static inline void
1776 buffer_add_string (Buffer *buf, const char *str)
1777 {
1778         int len;
1779
1780         if (str == NULL) {
1781                 buffer_add_int (buf, 0);
1782         } else {
1783                 len = strlen (str);
1784                 buffer_add_int (buf, len);
1785                 buffer_add_data (buf, (guint8*)str, len);
1786         }
1787 }
1788
1789 static inline void
1790 buffer_add_buffer (Buffer *buf, Buffer *data)
1791 {
1792         buffer_add_data (buf, data->buf, buffer_len (data));
1793 }
1794
1795 static inline void
1796 buffer_free (Buffer *buf)
1797 {
1798         g_free (buf->buf);
1799 }
1800
1801 static gboolean
1802 send_packet (int command_set, int command, Buffer *data)
1803 {
1804         Buffer buf;
1805         int len, id;
1806         gboolean res;
1807
1808         id = InterlockedIncrement (&packet_id);
1809
1810         len = data->p - data->buf + 11;
1811         buffer_init (&buf, len);
1812         buffer_add_int (&buf, len);
1813         buffer_add_int (&buf, id);
1814         buffer_add_byte (&buf, 0); /* flags */
1815         buffer_add_byte (&buf, command_set);
1816         buffer_add_byte (&buf, command);
1817         memcpy (buf.buf + 11, data->buf, data->p - data->buf);
1818
1819         res = transport_send (buf.buf, len);
1820
1821         buffer_free (&buf);
1822
1823         return res;
1824 }
1825
1826 static gboolean
1827 send_reply_packets (int npackets, ReplyPacket *packets)
1828 {
1829         Buffer buf;
1830         int i, len;
1831         gboolean res;
1832
1833         len = 0;
1834         for (i = 0; i < npackets; ++i)
1835                 len += buffer_len (packets [i].data) + 11;
1836         buffer_init (&buf, len);
1837         for (i = 0; i < npackets; ++i) {
1838                 buffer_add_int (&buf, buffer_len (packets [i].data) + 11);
1839                 buffer_add_int (&buf, packets [i].id);
1840                 buffer_add_byte (&buf, 0x80); /* flags */
1841                 buffer_add_byte (&buf, (packets [i].error >> 8) & 0xff);
1842                 buffer_add_byte (&buf, packets [i].error);
1843                 buffer_add_buffer (&buf, packets [i].data);
1844         }
1845         res = transport_send (buf.buf, len);
1846
1847         buffer_free (&buf);
1848
1849         return res;
1850 }
1851
1852 static gboolean
1853 send_reply_packet (int id, int error, Buffer *data)
1854 {
1855         ReplyPacket packet;
1856
1857         memset (&packet, 0, sizeof (ReplyPacket));
1858         packet.id = id;
1859         packet.error = error;
1860         packet.data = data;
1861
1862         return send_reply_packets (1, &packet);
1863 }
1864
1865 static void
1866 send_buffered_reply_packets (void)
1867 {
1868         int i;
1869
1870         send_reply_packets (nreply_packets, reply_packets);
1871         for (i = 0; i < nreply_packets; ++i)
1872                 buffer_free (reply_packets [i].data);
1873         DEBUG_PRINTF (1, "[dbg] Sent %d buffered reply packets [at=%lx].\n", nreply_packets, (long)mono_100ns_ticks () / 10000);
1874         nreply_packets = 0;
1875 }
1876
1877 static void
1878 buffer_reply_packet (int id, int error, Buffer *data)
1879 {
1880         ReplyPacket *p;
1881
1882         if (nreply_packets == 128)
1883                 send_buffered_reply_packets ();
1884
1885         p = &reply_packets [nreply_packets];
1886         p->id = id;
1887         p->error = error;
1888         p->data = g_new0 (Buffer, 1);
1889         buffer_init (p->data, buffer_len (data));
1890         buffer_add_buffer (p->data, data);
1891         nreply_packets ++;
1892 }
1893
1894 /*
1895  * OBJECT IDS
1896  */
1897
1898 /*
1899  * Represents an object accessible by the debugger client.
1900  */
1901 typedef struct {
1902         /* Unique id used in the wire protocol to refer to objects */
1903         int id;
1904         /*
1905          * A weakref gc handle pointing to the object. The gc handle is used to 
1906          * detect if the object was garbage collected.
1907          */
1908         guint32 handle;
1909 } ObjRef;
1910
1911 /* Maps objid -> ObjRef */
1912 static GHashTable *objrefs;
1913 static GHashTable *obj_to_objref;
1914 /* Protected by the dbg lock */
1915 static MonoGHashTable *suspended_objs;
1916
1917 static void
1918 free_objref (gpointer value)
1919 {
1920         ObjRef *o = value;
1921
1922         mono_gchandle_free (o->handle);
1923
1924         g_free (o);
1925 }
1926
1927 static void
1928 objrefs_init (void)
1929 {
1930         objrefs = g_hash_table_new_full (NULL, NULL, NULL, free_objref);
1931         obj_to_objref = g_hash_table_new (NULL, NULL);
1932         suspended_objs = mono_g_hash_table_new_type (NULL, NULL, MONO_HASH_KEY_GC);
1933         MONO_GC_REGISTER_ROOT_FIXED (suspended_objs);
1934 }
1935
1936 static void
1937 objrefs_cleanup (void)
1938 {
1939         g_hash_table_destroy (objrefs);
1940         objrefs = NULL;
1941 }
1942
1943 /*
1944  * Return an ObjRef for OBJ.
1945  */
1946 static ObjRef*
1947 get_objref (MonoObject *obj)
1948 {
1949         ObjRef *ref;
1950         GSList *reflist = NULL, *l;
1951         int hash = 0;
1952
1953         if (obj == NULL)
1954                 return 0;
1955
1956         if (suspend_count) {
1957                 /*
1958                  * Have to keep object refs created during suspensions alive for the duration of the suspension, so GCs during invokes don't collect them.
1959                  */
1960                 dbg_lock ();
1961                 mono_g_hash_table_insert (suspended_objs, obj, NULL);
1962                 dbg_unlock ();
1963         }
1964
1965         mono_loader_lock ();
1966         
1967         /* FIXME: The tables can grow indefinitely */
1968
1969         if (mono_gc_is_moving ()) {
1970                 /*
1971                  * Objects can move, so use a hash table mapping hash codes to lists of
1972                  * ObjRef structures.
1973                  */
1974                 hash = mono_object_hash (obj);
1975
1976                 reflist = g_hash_table_lookup (obj_to_objref, GINT_TO_POINTER (hash));
1977                 for (l = reflist; l; l = l->next) {
1978                         ref = l->data;
1979                         if (ref && mono_gchandle_get_target (ref->handle) == obj) {
1980                                 mono_loader_unlock ();
1981                                 return ref;
1982                         }
1983                 }
1984         } else {
1985                 /* Use a hash table with masked pointers to internalize object references */
1986                 ref = g_hash_table_lookup (obj_to_objref, GINT_TO_POINTER (~((gsize)obj)));
1987                 /* ref might refer to a different object with the same addr which was GCd */
1988                 if (ref && mono_gchandle_get_target (ref->handle) == obj) {
1989                         mono_loader_unlock ();
1990                         return ref;
1991                 }
1992         }
1993
1994         ref = g_new0 (ObjRef, 1);
1995         ref->id = InterlockedIncrement (&objref_id);
1996         ref->handle = mono_gchandle_new_weakref (obj, FALSE);
1997
1998         g_hash_table_insert (objrefs, GINT_TO_POINTER (ref->id), ref);
1999
2000         if (mono_gc_is_moving ()) {
2001                 reflist = g_slist_append (reflist, ref);
2002                 g_hash_table_insert (obj_to_objref, GINT_TO_POINTER (hash), reflist);
2003         } else {
2004                 g_hash_table_insert (obj_to_objref, GINT_TO_POINTER (~((gsize)obj)), ref);
2005         }
2006
2007         mono_loader_unlock ();
2008
2009         return ref;
2010 }
2011
2012 static gboolean
2013 true_pred (gpointer key, gpointer value, gpointer user_data)
2014 {
2015         return TRUE;
2016 }
2017
2018 static void
2019 clear_suspended_objs (void)
2020 {
2021         dbg_lock ();
2022         mono_g_hash_table_foreach_remove (suspended_objs, true_pred, NULL);
2023         dbg_unlock ();
2024 }
2025
2026 static inline int
2027 get_objid (MonoObject *obj)
2028 {
2029         return get_objref (obj)->id;
2030 }
2031
2032 /*
2033  * Set OBJ to the object identified by OBJID.
2034  * Returns 0 or an error code if OBJID is invalid or the object has been garbage
2035  * collected.
2036  */
2037 static ErrorCode
2038 get_object_allow_null (int objid, MonoObject **obj)
2039 {
2040         ObjRef *ref;
2041
2042         if (objid == 0) {
2043                 *obj = NULL;
2044                 return 0;
2045         }
2046
2047         if (!objrefs)
2048                 return ERR_INVALID_OBJECT;
2049
2050         mono_loader_lock ();
2051
2052         ref = g_hash_table_lookup (objrefs, GINT_TO_POINTER (objid));
2053
2054         if (ref) {
2055                 *obj = mono_gchandle_get_target (ref->handle);
2056                 mono_loader_unlock ();
2057                 if (!(*obj))
2058                         return ERR_INVALID_OBJECT;
2059                 return 0;
2060         } else {
2061                 mono_loader_unlock ();
2062                 return ERR_INVALID_OBJECT;
2063         }
2064 }
2065
2066 static ErrorCode
2067 get_object (int objid, MonoObject **obj)
2068 {
2069         int err = get_object_allow_null (objid, obj);
2070
2071         if (err)
2072                 return err;
2073         if (!(*obj))
2074                 return ERR_INVALID_OBJECT;
2075         return 0;
2076 }
2077
2078 static inline int
2079 decode_objid (guint8 *buf, guint8 **endbuf, guint8 *limit)
2080 {
2081         return decode_id (buf, endbuf, limit);
2082 }
2083
2084 static inline void
2085 buffer_add_objid (Buffer *buf, MonoObject *o)
2086 {
2087         buffer_add_id (buf, get_objid (o));
2088 }
2089
2090 /*
2091  * IDS
2092  */
2093
2094 typedef enum {
2095         ID_ASSEMBLY = 0,
2096         ID_MODULE = 1,
2097         ID_TYPE = 2,
2098         ID_METHOD = 3,
2099         ID_FIELD = 4,
2100         ID_DOMAIN = 5,
2101         ID_PROPERTY = 6,
2102         ID_NUM
2103 } IdType;
2104
2105 /*
2106  * Represents a runtime structure accessible to the debugger client
2107  */
2108 typedef struct {
2109         /* Unique id used in the wire protocol */
2110         int id;
2111         /* Domain of the runtime structure, NULL if the domain was unloaded */
2112         MonoDomain *domain;
2113         union {
2114                 gpointer val;
2115                 MonoClass *klass;
2116                 MonoMethod *method;
2117                 MonoImage *image;
2118                 MonoAssembly *assembly;
2119                 MonoClassField *field;
2120                 MonoDomain *domain;
2121                 MonoProperty *property;
2122         } data;
2123 } Id;
2124
2125 typedef struct {
2126         /* Maps runtime structure -> Id */
2127         GHashTable *val_to_id [ID_NUM];
2128         /* Classes whose class load event has been sent */
2129         GHashTable *loaded_classes;
2130         /* Maps MonoClass->GPtrArray of file names */
2131         GHashTable *source_files;
2132         /* Maps source file basename -> GSList of classes */
2133         GHashTable *source_file_to_class;
2134         /* Same with ignore-case */
2135         GHashTable *source_file_to_class_ignorecase;
2136 } AgentDomainInfo;
2137
2138 /* Maps id -> Id */
2139 /* Protected by the dbg lock */
2140 static GPtrArray *ids [ID_NUM];
2141
2142 static void
2143 ids_init (void)
2144 {
2145         int i;
2146
2147         for (i = 0; i < ID_NUM; ++i)
2148                 ids [i] = g_ptr_array_new ();
2149 }
2150
2151 static void
2152 ids_cleanup (void)
2153 {
2154         int i, j;
2155
2156         for (i = 0; i < ID_NUM; ++i) {
2157                 if (ids [i]) {
2158                         for (j = 0; j < ids [i]->len; ++j)
2159                                 g_free (g_ptr_array_index (ids [i], j));
2160                         g_ptr_array_free (ids [i], TRUE);
2161                 }
2162                 ids [i] = NULL;
2163         }
2164 }
2165
2166 void
2167 mono_debugger_agent_free_domain_info (MonoDomain *domain)
2168 {
2169         AgentDomainInfo *info = domain_jit_info (domain)->agent_info;
2170         int i, j;
2171         GHashTableIter iter;
2172         GPtrArray *file_names;
2173         char *basename;
2174         GSList *l;
2175
2176         if (info) {
2177                 for (i = 0; i < ID_NUM; ++i)
2178                         if (info->val_to_id [i])
2179                                 g_hash_table_destroy (info->val_to_id [i]);
2180                 g_hash_table_destroy (info->loaded_classes);
2181
2182                 g_hash_table_iter_init (&iter, info->source_files);
2183                 while (g_hash_table_iter_next (&iter, NULL, (void**)&file_names)) {
2184                         for (i = 0; i < file_names->len; ++i)
2185                                 g_free (g_ptr_array_index (file_names, i));
2186                         g_ptr_array_free (file_names, TRUE);
2187                 }
2188
2189                 g_hash_table_iter_init (&iter, info->source_file_to_class);
2190                 while (g_hash_table_iter_next (&iter, (void**)&basename, (void**)&l)) {
2191                         g_free (basename);
2192                         g_slist_free (l);
2193                 }
2194
2195                 g_hash_table_iter_init (&iter, info->source_file_to_class_ignorecase);
2196                 while (g_hash_table_iter_next (&iter, (void**)&basename, (void**)&l)) {
2197                         g_free (basename);
2198                         g_slist_free (l);
2199                 }
2200
2201                 g_free (info);
2202         }
2203
2204         domain_jit_info (domain)->agent_info = NULL;
2205
2206         /* Clear ids referencing structures in the domain */
2207         dbg_lock ();
2208         for (i = 0; i < ID_NUM; ++i) {
2209                 if (ids [i]) {
2210                         for (j = 0; j < ids [i]->len; ++j) {
2211                                 Id *id = g_ptr_array_index (ids [i], j);
2212                                 if (id->domain == domain)
2213                                         id->domain = NULL;
2214                         }
2215                 }
2216         }
2217         dbg_unlock ();
2218
2219         mono_loader_lock ();
2220         g_hash_table_remove (domains, domain);
2221         mono_loader_unlock ();
2222 }
2223
2224 static AgentDomainInfo*
2225 get_agent_domain_info (MonoDomain *domain)
2226 {
2227         AgentDomainInfo *info = NULL;
2228
2229         mono_domain_lock (domain);
2230
2231         info = domain_jit_info (domain)->agent_info;
2232         if (!info) {
2233                 info = domain_jit_info (domain)->agent_info = g_new0 (AgentDomainInfo, 1);
2234                 info->loaded_classes = g_hash_table_new (mono_aligned_addr_hash, NULL);
2235                 info->source_files = g_hash_table_new (mono_aligned_addr_hash, NULL);
2236                 info->source_file_to_class = g_hash_table_new (g_str_hash, g_str_equal);
2237                 info->source_file_to_class_ignorecase = g_hash_table_new (g_str_hash, g_str_equal);
2238         }
2239
2240         mono_domain_unlock (domain);
2241
2242         return info;
2243 }
2244
2245 static int
2246 get_id (MonoDomain *domain, IdType type, gpointer val)
2247 {
2248         Id *id;
2249         AgentDomainInfo *info;
2250
2251         if (val == NULL)
2252                 return 0;
2253
2254         mono_loader_lock ();
2255
2256         mono_domain_lock (domain);
2257
2258         info = get_agent_domain_info (domain);
2259
2260         if (info->val_to_id [type] == NULL)
2261                 info->val_to_id [type] = g_hash_table_new (mono_aligned_addr_hash, NULL);
2262
2263         id = g_hash_table_lookup (info->val_to_id [type], val);
2264         if (id) {
2265                 mono_domain_unlock (domain);
2266                 mono_loader_unlock ();
2267                 return id->id;
2268         }
2269
2270         dbg_lock ();
2271
2272         id = g_new0 (Id, 1);
2273         /* Reserve id 0 */
2274         id->id = ids [type]->len + 1;
2275         id->domain = domain;
2276         id->data.val = val;
2277
2278         g_hash_table_insert (info->val_to_id [type], val, id);
2279         g_ptr_array_add (ids [type], id);
2280
2281         dbg_unlock ();
2282
2283         mono_domain_unlock (domain);
2284
2285         mono_loader_unlock ();
2286
2287         return id->id;
2288 }
2289
2290 static inline gpointer
2291 decode_ptr_id (guint8 *buf, guint8 **endbuf, guint8 *limit, IdType type, MonoDomain **domain, int *err)
2292 {
2293         Id *res;
2294
2295         int id = decode_id (buf, endbuf, limit);
2296
2297         *err = 0;
2298         if (domain)
2299                 *domain = NULL;
2300
2301         if (id == 0)
2302                 return NULL;
2303
2304         // FIXME: error handling
2305         dbg_lock ();
2306         g_assert (id > 0 && id <= ids [type]->len);
2307
2308         res = g_ptr_array_index (ids [type], GPOINTER_TO_INT (id - 1));
2309         dbg_unlock ();
2310
2311         if (res->domain == NULL) {
2312                 DEBUG_PRINTF (1, "ERR_UNLOADED, id=%d, type=%d.\n", id, type);
2313                 *err = ERR_UNLOADED;
2314                 return NULL;
2315         }
2316
2317         if (domain)
2318                 *domain = res->domain;
2319
2320         return res->data.val;
2321 }
2322
2323 static inline int
2324 buffer_add_ptr_id (Buffer *buf, MonoDomain *domain, IdType type, gpointer val)
2325 {
2326         int id = get_id (domain, type, val);
2327
2328         buffer_add_id (buf, id);
2329         return id;
2330 }
2331
2332 static inline MonoClass*
2333 decode_typeid (guint8 *buf, guint8 **endbuf, guint8 *limit, MonoDomain **domain, int *err)
2334 {
2335         MonoClass *klass;
2336
2337         klass = decode_ptr_id (buf, endbuf, limit, ID_TYPE, domain, err);
2338         if (G_UNLIKELY (log_level >= 2) && klass) {
2339                 char *s;
2340
2341                 s = mono_type_full_name (&klass->byval_arg);
2342                 DEBUG_PRINTF (2, "[dbg]   recv class [%s]\n", s);
2343                 g_free (s);
2344         }
2345         return klass;
2346 }
2347
2348 static inline MonoAssembly*
2349 decode_assemblyid (guint8 *buf, guint8 **endbuf, guint8 *limit, MonoDomain **domain, int *err)
2350 {
2351         return decode_ptr_id (buf, endbuf, limit, ID_ASSEMBLY, domain, err);
2352 }
2353
2354 static inline MonoImage*
2355 decode_moduleid (guint8 *buf, guint8 **endbuf, guint8 *limit, MonoDomain **domain, int *err)
2356 {
2357         return decode_ptr_id (buf, endbuf, limit, ID_MODULE, domain, err);
2358 }
2359
2360 static inline MonoMethod*
2361 decode_methodid (guint8 *buf, guint8 **endbuf, guint8 *limit, MonoDomain **domain, int *err)
2362 {
2363         MonoMethod *m;
2364
2365         m = decode_ptr_id (buf, endbuf, limit, ID_METHOD, domain, err);
2366         if (G_UNLIKELY (log_level >= 2) && m) {
2367                 char *s;
2368
2369                 s = mono_method_full_name (m, TRUE);
2370                 DEBUG_PRINTF (2, "[dbg]   recv method [%s]\n", s);
2371                 g_free (s);
2372         }
2373         return m;
2374 }
2375
2376 static inline MonoClassField*
2377 decode_fieldid (guint8 *buf, guint8 **endbuf, guint8 *limit, MonoDomain **domain, int *err)
2378 {
2379         return decode_ptr_id (buf, endbuf, limit, ID_FIELD, domain, err);
2380 }
2381
2382 static inline MonoDomain*
2383 decode_domainid (guint8 *buf, guint8 **endbuf, guint8 *limit, MonoDomain **domain, int *err)
2384 {
2385         return decode_ptr_id (buf, endbuf, limit, ID_DOMAIN, domain, err);
2386 }
2387
2388 static inline MonoProperty*
2389 decode_propertyid (guint8 *buf, guint8 **endbuf, guint8 *limit, MonoDomain **domain, int *err)
2390 {
2391         return decode_ptr_id (buf, endbuf, limit, ID_PROPERTY, domain, err);
2392 }
2393
2394 static inline void
2395 buffer_add_typeid (Buffer *buf, MonoDomain *domain, MonoClass *klass)
2396 {
2397         buffer_add_ptr_id (buf, domain, ID_TYPE, klass);
2398         if (G_UNLIKELY (log_level >= 2) && klass) {
2399                 char *s;
2400
2401                 s = mono_type_full_name (&klass->byval_arg);
2402                 if (GetCurrentThreadId () == debugger_thread_id)
2403                         DEBUG_PRINTF (2, "[dbg]   send class [%s]\n", s);
2404                 else
2405                         DEBUG_PRINTF (2, "[%p]   send class [%s]\n", (gpointer)GetCurrentThreadId (), s);
2406                 g_free (s);
2407         }
2408 }
2409
2410 static inline void
2411 buffer_add_methodid (Buffer *buf, MonoDomain *domain, MonoMethod *method)
2412 {
2413         buffer_add_ptr_id (buf, domain, ID_METHOD, method);
2414         if (G_UNLIKELY (log_level >= 2) && method) {
2415                 char *s;
2416
2417                 s = mono_method_full_name (method, 1);
2418                 DEBUG_PRINTF (2, "[dbg]   send method [%s]\n", s);
2419                 g_free (s);
2420         }
2421 }
2422
2423 static inline void
2424 buffer_add_assemblyid (Buffer *buf, MonoDomain *domain, MonoAssembly *assembly)
2425 {
2426         int id;
2427
2428         id = buffer_add_ptr_id (buf, domain, ID_ASSEMBLY, assembly);
2429         if (G_UNLIKELY (log_level >= 2) && assembly)
2430                 DEBUG_PRINTF (2, "[dbg]   send assembly [%s][%s][%d]\n", assembly->aname.name, domain->friendly_name, id);
2431 }
2432
2433 static inline void
2434 buffer_add_moduleid (Buffer *buf, MonoDomain *domain, MonoImage *image)
2435 {
2436         buffer_add_ptr_id (buf, domain, ID_MODULE, image);
2437 }
2438
2439 static inline void
2440 buffer_add_fieldid (Buffer *buf, MonoDomain *domain, MonoClassField *field)
2441 {
2442         buffer_add_ptr_id (buf, domain, ID_FIELD, field);
2443 }
2444
2445 static inline void
2446 buffer_add_propertyid (Buffer *buf, MonoDomain *domain, MonoProperty *property)
2447 {
2448         buffer_add_ptr_id (buf, domain, ID_PROPERTY, property);
2449 }
2450
2451 static inline void
2452 buffer_add_domainid (Buffer *buf, MonoDomain *domain)
2453 {
2454         buffer_add_ptr_id (buf, domain, ID_DOMAIN, domain);
2455 }
2456
2457 static void invoke_method (void);
2458
2459 /*
2460  * SUSPEND/RESUME
2461  */
2462
2463 /*
2464  * save_thread_context:
2465  *
2466  *   Set CTX as the current threads context which is used for computing stack traces.
2467  * This function is signal-safe.
2468  */
2469 static void
2470 save_thread_context (MonoContext *ctx)
2471 {
2472         DebuggerTlsData *tls;
2473
2474         tls = mono_native_tls_get_value (debugger_tls_id);
2475         g_assert (tls);
2476
2477         if (ctx)
2478                 mono_thread_state_init_from_monoctx (&tls->context, ctx);
2479         else
2480                 mono_thread_state_init_from_current (&tls->context);
2481 }
2482
2483 /* Number of threads suspended */
2484 /* 
2485  * If this is equal to the size of thread_to_tls, the runtime is considered
2486  * suspended.
2487  */
2488 static gint32 threads_suspend_count;
2489
2490 static mono_mutex_t suspend_mutex;
2491
2492 /* Cond variable used to wait for suspend_count becoming 0 */
2493 static mono_cond_t suspend_cond;
2494
2495 /* Semaphore used to wait for a thread becoming suspended */
2496 static MonoSemType suspend_sem;
2497
2498 static void
2499 suspend_init (void)
2500 {
2501         mono_mutex_init (&suspend_mutex);
2502         mono_cond_init (&suspend_cond, NULL);   
2503         MONO_SEM_INIT (&suspend_sem, 0);
2504 }
2505
2506 typedef struct
2507 {
2508         StackFrameInfo last_frame;
2509         gboolean last_frame_set;
2510         MonoContext ctx;
2511         gpointer lmf;
2512 } GetLastFrameUserData;
2513
2514 static gboolean
2515 get_last_frame (StackFrameInfo *info, MonoContext *ctx, gpointer user_data)
2516 {
2517         GetLastFrameUserData *data = user_data;
2518
2519         if (info->type == FRAME_TYPE_MANAGED_TO_NATIVE)
2520                 return FALSE;
2521
2522         if (!data->last_frame_set) {
2523                 /* Store the last frame */
2524                 memcpy (&data->last_frame, info, sizeof (StackFrameInfo));
2525                 data->last_frame_set = TRUE;
2526                 return FALSE;
2527         } else {
2528                 /* Store the context/lmf for the frame above the last frame */
2529                 memcpy (&data->ctx, ctx, sizeof (MonoContext));
2530                 data->lmf = info->lmf;
2531                 return TRUE;
2532         }
2533 }
2534
2535 /*
2536  * thread_interrupt:
2537  *
2538  *   Process interruption of a thread. If SIGCTX is set, process the current thread. If
2539  * INFO is set, process the thread described by INFO.
2540  * This should be signal safe.
2541  */
2542 static gboolean
2543 thread_interrupt (DebuggerTlsData *tls, MonoThreadInfo *info, void *sigctx, MonoJitInfo *ji)
2544 {
2545         gboolean res;
2546         gpointer ip;
2547         MonoNativeThreadId tid;
2548
2549         /*
2550          * OSX can (and will) coalesce signals, so sending multiple pthread_kills does not
2551          * guarantee the signal handler will be called that many times.  Instead of tracking
2552          * interrupt_count on osx, we use this as a boolean flag to determine if a interrupt
2553          * has been requested that hasn't been handled yet, otherwise we can have threads
2554          * refuse to die when VM_EXIT is called
2555          */
2556 #if defined(__APPLE__)
2557         if (InterlockedCompareExchange (&tls->interrupt_count, 0, 1) == 0)
2558                 return FALSE;
2559 #else
2560         /*
2561          * We use interrupt_count to determine whenever this interrupt should be processed
2562          * by us or the normal interrupt processing code in the signal handler.
2563          * There is no race here with notify_thread (), since the signal is sent after
2564          * incrementing interrupt_count.
2565          */
2566         if (tls->interrupt_count == 0)
2567                 return FALSE;
2568
2569         InterlockedDecrement (&tls->interrupt_count);
2570 #endif
2571
2572         if (sigctx)
2573                 ip = mono_arch_ip_from_context (sigctx);
2574         else if (info)
2575                 ip = MONO_CONTEXT_GET_IP (&mono_thread_info_get_suspend_state (info)->ctx);
2576         else
2577                 ip = NULL;
2578
2579         if (info)
2580                 tid = mono_thread_info_get_tid (info);
2581         else
2582                 tid = (MonoNativeThreadId)GetCurrentThreadId ();
2583
2584         // FIXME: Races when the thread leaves managed code before hitting a single step
2585         // event.
2586
2587         if (ji) {
2588                 /* Running managed code, will be suspended by the single step code */
2589                 DEBUG_PRINTF (1, "[%p] Received interrupt while at %s(%p), continuing.\n", (gpointer)(gsize)tid, jinfo_get_method (ji)->name, ip);
2590                 return TRUE;
2591         } else {
2592                 /* 
2593                  * Running native code, will be suspended when it returns to/enters 
2594                  * managed code. Treat it as already suspended.
2595                  * This might interrupt the code in process_single_step_inner (), we use the
2596                  * tls->suspending flag to avoid races when that happens.
2597                  */
2598                 if (!tls->suspended && !tls->suspending) {
2599                         MonoContext ctx;
2600                         GetLastFrameUserData data;
2601
2602                         // FIXME: printf is not signal safe, but this is only used during
2603                         // debugger debugging
2604                         if (ip)
2605                                 DEBUG_PRINTF (1, "[%p] Received interrupt while at %p, treating as suspended.\n", (gpointer)(gsize)tid, ip);
2606                         //save_thread_context (&ctx);
2607
2608                         if (!tls->thread)
2609                                 /* Already terminated */
2610                                 return TRUE;
2611
2612                         /*
2613                          * We are in a difficult position: we want to be able to provide stack
2614                          * traces for this thread, but we can't use the current ctx+lmf, since
2615                          * the thread is still running, so it might return to managed code,
2616                          * making these invalid.
2617                          * So we start a stack walk and save the first frame, along with the
2618                          * parent frame's ctx+lmf. This (hopefully) works because the thread will be 
2619                          * suspended when it returns to managed code, so the parent's ctx should
2620                          * remain valid.
2621                          */
2622                         data.last_frame_set = FALSE;
2623                         if (sigctx) {
2624                                 mono_sigctx_to_monoctx (sigctx, &ctx);
2625                                 /* 
2626                                  * Don't pass MONO_UNWIND_ACTUAL_METHOD, its not signal safe, and
2627                                  * get_last_frame () doesn't need it, the last frame cannot be a ginst
2628                                  * since we are not in a JITted method.
2629                                  */
2630                                 mono_walk_stack_with_ctx (get_last_frame, &ctx, MONO_UNWIND_NONE, &data);
2631                         } else if (info) {
2632                                 mono_get_eh_callbacks ()->mono_walk_stack_with_state (get_last_frame, mono_thread_info_get_suspend_state (info), MONO_UNWIND_SIGNAL_SAFE, &data);
2633                         }
2634                         if (data.last_frame_set) {
2635                                 memcpy (&tls->async_last_frame, &data.last_frame, sizeof (StackFrameInfo));
2636                                 res = mono_thread_state_init_from_monoctx (&tls->async_state, &ctx);
2637                                 g_assert (res);
2638                                 mono_thread_state_init_from_monoctx (&tls->context, &ctx);
2639                                 g_assert (res);
2640
2641                                 memcpy (&tls->async_state.ctx, &data.ctx, sizeof (MonoContext));
2642                                 tls->async_state.unwind_data [MONO_UNWIND_DATA_LMF] = data.lmf;
2643                                 tls->async_state.unwind_data [MONO_UNWIND_DATA_JIT_TLS] = ((MonoThreadInfo*)tls->thread->thread_info)->jit_data;
2644                         } else {
2645                                 tls->async_state.valid = FALSE;
2646                         }
2647
2648                         mono_memory_barrier ();
2649
2650                         tls->suspended = TRUE;
2651                         MONO_SEM_POST (&suspend_sem);
2652                 }
2653                 return TRUE;
2654         }
2655 }
2656
2657 /*
2658  * mono_debugger_agent_thread_interrupt:
2659  *
2660  *   Called by the abort signal handler.
2661  * Should be signal safe.
2662  */
2663 gboolean
2664 mono_debugger_agent_thread_interrupt (void *sigctx, MonoJitInfo *ji)
2665 {
2666         DebuggerTlsData *tls;
2667
2668         if (!inited)
2669                 return FALSE;
2670
2671         tls = mono_native_tls_get_value (debugger_tls_id);
2672         if (!tls) {
2673                 DEBUG_PRINTF (1, "[%p] Received interrupt with no TLS, continuing.\n", (gpointer)GetCurrentThreadId ());
2674                 return FALSE;
2675         }
2676
2677         return thread_interrupt (tls, NULL, sigctx, ji);
2678 }
2679
2680 #ifdef HOST_WIN32
2681 static void CALLBACK notify_thread_apc (ULONG_PTR param)
2682 {
2683         //DebugBreak ();
2684         mono_debugger_agent_thread_interrupt (NULL, NULL);
2685 }
2686 #endif /* HOST_WIN32 */
2687
2688 /*
2689  * reset_native_thread_suspend_state:
2690  * 
2691  *   Reset the suspended flag and state on native threads
2692  */
2693 static void
2694 reset_native_thread_suspend_state (gpointer key, gpointer value, gpointer user_data)
2695 {
2696         DebuggerTlsData *tls = value;
2697
2698         if (!tls->really_suspended && tls->suspended) {
2699                 tls->suspended = FALSE;
2700                 /*
2701                  * The thread might still be running if it was executing native code, so the state won't be invalided by
2702                  * suspend_current ().
2703                  */
2704                 tls->context.valid = FALSE;
2705                 tls->async_state.valid = FALSE;
2706                 invalidate_frames (tls);
2707         }
2708 }
2709
2710 typedef struct {
2711         DebuggerTlsData *tls;
2712         gboolean valid_info;
2713 } InterruptData;
2714
2715 static SuspendThreadResult
2716 debugger_interrupt_critical (MonoThreadInfo *info, gpointer user_data)
2717 {
2718         InterruptData *data = user_data;
2719         MonoJitInfo *ji;
2720
2721         data->valid_info = TRUE;
2722         ji = mono_jit_info_table_find (mono_thread_info_get_suspend_state (info)->unwind_data [MONO_UNWIND_DATA_DOMAIN], MONO_CONTEXT_GET_IP (&mono_thread_info_get_suspend_state (info)->ctx));
2723
2724         thread_interrupt (data->tls, info, NULL, ji);
2725         return MonoResumeThread;
2726 }
2727
2728 /*
2729  * notify_thread:
2730  *
2731  *   Notify a thread that it needs to suspend.
2732  */
2733 static void
2734 notify_thread (gpointer key, gpointer value, gpointer user_data)
2735 {
2736         MonoInternalThread *thread = key;
2737         DebuggerTlsData *tls = value;
2738         gsize tid = thread->tid;
2739 #ifndef HOST_WIN32
2740         int res;
2741 #endif
2742
2743         if (GetCurrentThreadId () == tid || tls->terminated)
2744                 return;
2745
2746         DEBUG_PRINTF (1, "[%p] Interrupting %p...\n", (gpointer)GetCurrentThreadId (), (gpointer)tid);
2747
2748         /*
2749          * OSX can (and will) coalesce signals, so sending multiple pthread_kills does not
2750          * guarantee the signal handler will be called that many times.  Instead of tracking
2751          * interrupt_count on osx, we use this as a boolean flag to determine if a interrupt
2752          * has been requested that hasn't been handled yet, otherwise we can have threads
2753          * refuse to die when VM_EXIT is called
2754          */
2755 #if defined(__APPLE__)
2756         if (InterlockedCompareExchange (&tls->interrupt_count, 1, 0) == 1)
2757                 return;
2758 #else
2759         /*
2760          * Maybe we could use the normal interrupt infrastructure, but that does a lot
2761          * of things like breaking waits etc. which we don't want.
2762          */
2763         InterlockedIncrement (&tls->interrupt_count);
2764 #endif
2765
2766         /* This is _not_ equivalent to ves_icall_System_Threading_Thread_Abort () */
2767         if (mono_thread_info_new_interrupt_enabled ()) {
2768                 InterruptData interrupt_data = { 0 };
2769                 interrupt_data.tls = tls;
2770
2771                 mono_thread_info_safe_suspend_and_run ((MonoNativeThreadId)(gpointer)(gsize)thread->tid, FALSE, debugger_interrupt_critical, &interrupt_data);
2772                 if (!interrupt_data.valid_info) {
2773                         DEBUG_PRINTF (1, "[%p] mono_thread_info_suspend_sync () failed for %p...\n", (gpointer)GetCurrentThreadId (), (gpointer)tid);
2774                         /* 
2775                          * Attached thread which died without detaching.
2776                          */
2777                         tls->terminated = TRUE;
2778                 }
2779         } else {
2780 #ifdef HOST_WIN32
2781                 // FIXME: Remove this since new interrupt is used on win32 now
2782                 QueueUserAPC (notify_thread_apc, thread->handle, (ULONG_PTR)NULL);
2783 #else
2784                 res = mono_thread_kill (thread, mono_thread_get_abort_signal ());
2785                 if (res) {
2786                         DEBUG_PRINTF (1, "[%p] mono_thread_kill () failed for %p: %d...\n", (gpointer)GetCurrentThreadId (), (gpointer)tid, res);
2787                         /* 
2788                          * Attached thread which died without detaching.
2789                          */
2790                         tls->terminated = TRUE;
2791                 }
2792 #endif
2793         }
2794 }
2795
2796 static void
2797 process_suspend (DebuggerTlsData *tls, MonoContext *ctx)
2798 {
2799         guint8 *ip = MONO_CONTEXT_GET_IP (ctx);
2800         MonoJitInfo *ji;
2801         MonoMethod *method;
2802
2803         if (mono_loader_lock_is_owned_by_self ()) {
2804                 /*
2805                  * Shortcut for the check in suspend_current (). This speeds up processing
2806                  * when executing long running code inside the loader lock, i.e. assembly load
2807                  * hooks.
2808                  */
2809                 return;
2810         }
2811
2812         if (debugger_thread_id == GetCurrentThreadId ())
2813                 return;
2814
2815         /* Prevent races with mono_debugger_agent_thread_interrupt () */
2816         if (suspend_count - tls->resume_count > 0)
2817                 tls->suspending = TRUE;
2818
2819         DEBUG_PRINTF (1, "[%p] Received single step event for suspending.\n", (gpointer)GetCurrentThreadId ());
2820
2821         if (suspend_count - tls->resume_count == 0) {
2822                 /* 
2823                  * We are executing a single threaded invoke but the single step for 
2824                  * suspending is still active.
2825                  * FIXME: This slows down single threaded invokes.
2826                  */
2827                 DEBUG_PRINTF (1, "[%p] Ignored during single threaded invoke.\n", (gpointer)GetCurrentThreadId ());
2828                 return;
2829         }
2830
2831         ji = mini_jit_info_table_find (mono_domain_get (), (char*)ip, NULL);
2832
2833         /* Can't suspend in these methods */
2834         method = jinfo_get_method (ji);
2835         if (method->klass == mono_defaults.string_class && (!strcmp (method->name, "memset") || strstr (method->name, "memcpy")))
2836                 return;
2837
2838         save_thread_context (ctx);
2839
2840         suspend_current ();
2841 }
2842
2843 /*
2844  * suspend_vm:
2845  *
2846  * Increase the suspend count of the VM. While the suspend count is greater 
2847  * than 0, runtime threads are suspended at certain points during execution.
2848  */
2849 static void
2850 suspend_vm (void)
2851 {
2852         mono_loader_lock ();
2853
2854         mono_mutex_lock (&suspend_mutex);
2855
2856         suspend_count ++;
2857
2858         DEBUG_PRINTF (1, "[%p] Suspending vm...\n", (gpointer)GetCurrentThreadId ());
2859
2860         if (suspend_count == 1) {
2861                 // FIXME: Is it safe to call this inside the lock ?
2862                 start_single_stepping ();
2863                 mono_g_hash_table_foreach (thread_to_tls, notify_thread, NULL);
2864         }
2865
2866         mono_mutex_unlock (&suspend_mutex);
2867
2868         if (suspend_count == 1)
2869                 /*
2870                  * Suspend creation of new threadpool threads, since they cannot run
2871                  */
2872                 mono_thread_pool_suspend ();
2873
2874         mono_loader_unlock ();
2875 }
2876
2877 /*
2878  * resume_vm:
2879  *
2880  * Decrease the suspend count of the VM. If the count reaches 0, runtime threads
2881  * are resumed.
2882  */
2883 static void
2884 resume_vm (void)
2885 {
2886         int err;
2887
2888         g_assert (debugger_thread_id == GetCurrentThreadId ());
2889
2890         mono_loader_lock ();
2891
2892         mono_mutex_lock (&suspend_mutex);
2893
2894         g_assert (suspend_count > 0);
2895         suspend_count --;
2896
2897         DEBUG_PRINTF (1, "[%p] Resuming vm, suspend count=%d...\n", (gpointer)GetCurrentThreadId (), suspend_count);
2898
2899         if (suspend_count == 0) {
2900                 // FIXME: Is it safe to call this inside the lock ?
2901                 stop_single_stepping ();
2902                 mono_g_hash_table_foreach (thread_to_tls, reset_native_thread_suspend_state, NULL);
2903         }
2904
2905         /* Signal this even when suspend_count > 0, since some threads might have resume_count > 0 */
2906         err = mono_cond_broadcast (&suspend_cond);
2907         g_assert (err == 0);
2908
2909         mono_mutex_unlock (&suspend_mutex);
2910         //g_assert (err == 0);
2911
2912         if (suspend_count == 0)
2913                 mono_thread_pool_resume ();
2914
2915         mono_loader_unlock ();
2916 }
2917
2918 /*
2919  * resume_thread:
2920  *
2921  *   Resume just one thread.
2922  */
2923 static void
2924 resume_thread (MonoInternalThread *thread)
2925 {
2926         int err;
2927         DebuggerTlsData *tls;
2928
2929         g_assert (debugger_thread_id == GetCurrentThreadId ());
2930
2931         mono_loader_lock ();
2932
2933         tls = mono_g_hash_table_lookup (thread_to_tls, thread);
2934         g_assert (tls);
2935         
2936         mono_mutex_lock (&suspend_mutex);
2937
2938         g_assert (suspend_count > 0);
2939
2940         DEBUG_PRINTF (1, "[sdb] Resuming thread %p...\n", (gpointer)(gssize)thread->tid);
2941
2942         tls->resume_count += suspend_count;
2943
2944         /* 
2945          * Signal suspend_count without decreasing suspend_count, the threads will wake up
2946          * but only the one whose resume_count field is > 0 will be resumed.
2947          */
2948         err = mono_cond_broadcast (&suspend_cond);
2949         g_assert (err == 0);
2950
2951         mono_mutex_unlock (&suspend_mutex);
2952         //g_assert (err == 0);
2953
2954         mono_loader_unlock ();
2955 }
2956
2957 static void
2958 free_frames (StackFrame **frames, int nframes)
2959 {
2960         int i;
2961
2962         for (i = 0; i < nframes; ++i) {
2963                 if (frames [i]->jit)
2964                         mono_debug_free_method_jit_info (frames [i]->jit);
2965                 g_free (frames [i]);
2966         }
2967         g_free (frames);
2968 }
2969
2970 static void
2971 invalidate_frames (DebuggerTlsData *tls)
2972 {
2973         if (!tls)
2974                 tls = mono_native_tls_get_value (debugger_tls_id);
2975         g_assert (tls);
2976
2977         free_frames (tls->frames, tls->frame_count);
2978         tls->frame_count = 0;
2979         tls->frames = NULL;
2980
2981         free_frames (tls->restore_frames, tls->restore_frame_count);
2982         tls->restore_frame_count = 0;
2983         tls->restore_frames = NULL;
2984 }
2985
2986 /*
2987  * suspend_current:
2988  *
2989  *   Suspend the current thread until the runtime is resumed. If the thread has a 
2990  * pending invoke, then the invoke is executed before this function returns. 
2991  */
2992 static void
2993 suspend_current (void)
2994 {
2995 #ifndef HOST_WIN32
2996         int err;
2997 #endif
2998         DebuggerTlsData *tls;
2999
3000         g_assert (debugger_thread_id != GetCurrentThreadId ());
3001
3002         if (mono_loader_lock_is_owned_by_self ()) {
3003                 /*
3004                  * If we own the loader mutex, can't suspend until we release it, since the
3005                  * whole runtime can deadlock otherwise.
3006                  */
3007                 return;
3008         }
3009
3010         tls = mono_native_tls_get_value (debugger_tls_id);
3011         g_assert (tls);
3012
3013         mono_mutex_lock (&suspend_mutex);
3014
3015         tls->suspending = FALSE;
3016         tls->really_suspended = TRUE;
3017
3018         if (!tls->suspended) {
3019                 tls->suspended = TRUE;
3020                 MONO_SEM_POST (&suspend_sem);
3021         }
3022
3023         DEBUG_PRINTF (1, "[%p] Suspended.\n", (gpointer)GetCurrentThreadId ());
3024
3025         while (suspend_count - tls->resume_count > 0) {
3026 #ifdef HOST_WIN32
3027                 if (WAIT_TIMEOUT == WaitForSingleObject(suspend_cond, 0))
3028                 {
3029                         mono_mutex_unlock (&suspend_mutex);
3030                         Sleep(1);
3031                         mono_mutex_lock (&suspend_mutex);
3032                 }
3033                 else
3034                 {
3035                 }
3036 #else
3037                 err = mono_cond_wait (&suspend_cond, &suspend_mutex);
3038                 g_assert (err == 0);
3039 #endif
3040         }
3041
3042         tls->suspended = FALSE;
3043         tls->really_suspended = FALSE;
3044
3045         threads_suspend_count --;
3046
3047         mono_mutex_unlock (&suspend_mutex);
3048
3049         DEBUG_PRINTF (1, "[%p] Resumed.\n", (gpointer)GetCurrentThreadId ());
3050
3051         if (tls->pending_invoke) {
3052                 /* Save the original context */
3053                 tls->pending_invoke->has_ctx = TRUE;
3054                 tls->pending_invoke->ctx = tls->context.ctx;
3055
3056                 invoke_method ();
3057         }
3058
3059         /* The frame info becomes invalid after a resume */
3060         tls->context.valid = FALSE;
3061         tls->async_state.valid = FALSE;
3062         invalidate_frames (tls);
3063 }
3064
3065 static void
3066 count_thread (gpointer key, gpointer value, gpointer user_data)
3067 {
3068         DebuggerTlsData *tls = value;
3069
3070         if (!tls->suspended && !tls->terminated)
3071                 *(int*)user_data = *(int*)user_data + 1;
3072 }
3073
3074 static int
3075 count_threads_to_wait_for (void)
3076 {
3077         int count = 0;
3078
3079         mono_loader_lock ();
3080         mono_g_hash_table_foreach (thread_to_tls, count_thread, &count);
3081         mono_loader_unlock ();
3082
3083         return count;
3084 }       
3085
3086 /*
3087  * wait_for_suspend:
3088  *
3089  *   Wait until the runtime is completely suspended.
3090  */
3091 static void
3092 wait_for_suspend (void)
3093 {
3094         int nthreads, nwait, err;
3095         gboolean waited = FALSE;
3096
3097         // FIXME: Threads starting/stopping ?
3098         mono_loader_lock ();
3099         nthreads = mono_g_hash_table_size (thread_to_tls);
3100         mono_loader_unlock ();
3101
3102         while (TRUE) {
3103                 nwait = count_threads_to_wait_for ();
3104                 if (nwait) {
3105                         DEBUG_PRINTF (1, "Waiting for %d(%d) threads to suspend...\n", nwait, nthreads);
3106                         err = MONO_SEM_WAIT (&suspend_sem);
3107                         g_assert (err == 0);
3108                         waited = TRUE;
3109                 } else {
3110                         break;
3111                 }
3112         }
3113
3114         if (waited)
3115                 DEBUG_PRINTF (1, "%d threads suspended.\n", nthreads);
3116 }
3117
3118 /*
3119  * is_suspended:
3120  *
3121  *   Return whenever the runtime is suspended.
3122  */
3123 static gboolean
3124 is_suspended (void)
3125 {
3126         return count_threads_to_wait_for () == 0;
3127 }
3128
3129 static void
3130 no_seq_points_found (MonoMethod *method)
3131 {
3132         /*
3133          * This can happen in full-aot mode with assemblies AOTed without the 'soft-debug' option to save space.
3134          */
3135         printf ("Unable to find seq points for method '%s'.\n", mono_method_full_name (method, TRUE));
3136 }
3137
3138 typedef struct {
3139         DebuggerTlsData *tls;
3140         GSList *frames;
3141 } ComputeFramesUserData;
3142
3143 static gboolean
3144 process_frame (StackFrameInfo *info, MonoContext *ctx, gpointer user_data)
3145 {
3146         ComputeFramesUserData *ud = user_data;
3147         StackFrame *frame;
3148         MonoMethod *method, *actual_method, *api_method;
3149         SeqPoint sp;
3150         int flags = 0;
3151
3152         if (info->type != FRAME_TYPE_MANAGED) {
3153                 if (info->type == FRAME_TYPE_DEBUGGER_INVOKE) {
3154                         /* Mark the last frame as an invoke frame */
3155                         if (ud->frames)
3156                                 ((StackFrame*)g_slist_last (ud->frames)->data)->flags |= FRAME_FLAG_DEBUGGER_INVOKE;
3157                 }
3158                 return FALSE;
3159         }
3160
3161         if (info->ji)
3162                 method = jinfo_get_method (info->ji);
3163         else
3164                 method = info->method;
3165         actual_method = info->actual_method;
3166         api_method = method;
3167
3168         if (!method)
3169                 return FALSE;
3170
3171         if (!method || (method->wrapper_type && method->wrapper_type != MONO_WRAPPER_DYNAMIC_METHOD && method->wrapper_type != MONO_WRAPPER_MANAGED_TO_NATIVE))
3172                 return FALSE;
3173
3174         if (info->il_offset == -1) {
3175                 /* mono_debug_il_offset_from_address () doesn't seem to be precise enough (#2092) */
3176                 if (ud->frames == NULL) {
3177                         if (find_prev_seq_point_for_native_offset (info->domain, method, info->native_offset, NULL, &sp))
3178                                 info->il_offset = sp.il_offset;
3179                 }
3180                 if (info->il_offset == -1)
3181                         info->il_offset = mono_debug_il_offset_from_address (method, info->domain, info->native_offset);
3182         }
3183
3184         DEBUG_PRINTF (1, "\tFrame: %s:%x(%x) %d\n", mono_method_full_name (method, TRUE), info->il_offset, info->native_offset, info->managed);
3185
3186         if (method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE) {
3187                 if (!CHECK_PROTOCOL_VERSION (2, 17))
3188                         /* Older clients can't handle this flag */
3189                         return FALSE;
3190                 api_method = mono_marshal_method_from_wrapper (method);
3191                 if (!api_method)
3192                         return FALSE;
3193                 actual_method = api_method;
3194                 flags |= FRAME_FLAG_NATIVE_TRANSITION;
3195         }
3196
3197         frame = g_new0 (StackFrame, 1);
3198         frame->method = method;
3199         frame->actual_method = actual_method;
3200         frame->api_method = api_method;
3201         frame->il_offset = info->il_offset;
3202         frame->native_offset = info->native_offset;
3203         frame->flags = flags;
3204         frame->ji = info->ji;
3205         if (info->reg_locations)
3206                 memcpy (frame->reg_locations, info->reg_locations, MONO_MAX_IREGS * sizeof (mgreg_t*));
3207         if (ctx) {
3208                 frame->ctx = *ctx;
3209                 frame->has_ctx = TRUE;
3210         }
3211         frame->domain = info->domain;
3212
3213         ud->frames = g_slist_append (ud->frames, frame);
3214
3215         return FALSE;
3216 }
3217
3218 static gboolean
3219 process_filter_frame (StackFrameInfo *info, MonoContext *ctx, gpointer user_data)
3220 {
3221         ComputeFramesUserData *ud = user_data;
3222
3223         /*
3224          * 'tls->filter_ctx' is the location of the throw site.
3225          *
3226          * mono_walk_stack() will never actually hit the throw site, but unwind
3227          * directly from the filter to the call site; we abort stack unwinding here
3228          * once this happens and resume from the throw site.
3229          */
3230
3231         if (MONO_CONTEXT_GET_SP (ctx) >= MONO_CONTEXT_GET_SP (&ud->tls->filter_state.ctx))
3232                 return TRUE;
3233
3234         return process_frame (info, ctx, user_data);
3235 }
3236
3237 /*
3238  * Return a malloc-ed list of StackFrame structures.
3239  */
3240 static StackFrame**
3241 compute_frame_info_from (MonoInternalThread *thread, DebuggerTlsData *tls, MonoThreadUnwindState *state, int *out_nframes)
3242 {
3243         ComputeFramesUserData user_data;
3244         MonoUnwindOptions opts = MONO_UNWIND_DEFAULT|MONO_UNWIND_REG_LOCATIONS;
3245         StackFrame **res;
3246         int i, nframes;
3247         GSList *l;
3248
3249         user_data.tls = tls;
3250         user_data.frames = NULL;
3251
3252         mono_walk_stack_with_state (process_frame, state, opts, &user_data);
3253
3254         nframes = g_slist_length (user_data.frames);
3255         res = g_new0 (StackFrame*, nframes);
3256         l = user_data.frames;
3257         for (i = 0; i < nframes; ++i) {
3258                 res [i] = l->data;
3259                 l = l->next;
3260         }
3261         *out_nframes = nframes;
3262
3263         return res;
3264 }
3265
3266 static void
3267 compute_frame_info (MonoInternalThread *thread, DebuggerTlsData *tls)
3268 {
3269         ComputeFramesUserData user_data;
3270         GSList *tmp;
3271         int i, findex, new_frame_count;
3272         StackFrame **new_frames, *f;
3273         MonoUnwindOptions opts = MONO_UNWIND_DEFAULT|MONO_UNWIND_REG_LOCATIONS;
3274
3275         // FIXME: Locking on tls
3276         if (tls->frames && tls->frames_up_to_date)
3277                 return;
3278
3279         DEBUG_PRINTF (1, "Frames for %p(tid=%lx):\n", thread, (glong)thread->tid);
3280
3281         user_data.tls = tls;
3282         user_data.frames = NULL;
3283         if (tls->terminated) {
3284                 tls->frame_count = 0;
3285                 return;
3286         } if (!tls->really_suspended && tls->async_state.valid) {
3287                 /* Have to use the state saved by the signal handler */
3288                 process_frame (&tls->async_last_frame, NULL, &user_data);
3289                 mono_walk_stack_with_state (process_frame, &tls->async_state, opts, &user_data);
3290         } else if (tls->filter_state.valid) {
3291                 /*
3292                  * We are inside an exception filter.
3293                  *
3294                  * First we add all the frames from inside the filter; 'tls->ctx' has the current context.
3295                  */
3296                 if (tls->context.valid)
3297                         mono_walk_stack_with_state (process_filter_frame, &tls->context, opts, &user_data);
3298                 /*
3299                  * After that, we resume unwinding from the location where the exception has been thrown.
3300                  */
3301                 mono_walk_stack_with_state (process_frame, &tls->filter_state, opts, &user_data);
3302         } else if (tls->context.valid) {
3303                 mono_walk_stack_with_state (process_frame, &tls->context, opts, &user_data);
3304         } else {
3305                 // FIXME:
3306                 tls->frame_count = 0;
3307                 return;
3308         }
3309
3310         new_frame_count = g_slist_length (user_data.frames);
3311         new_frames = g_new0 (StackFrame*, new_frame_count);
3312         findex = 0;
3313         for (tmp = user_data.frames; tmp; tmp = tmp->next) {
3314                 f = tmp->data;
3315
3316                 /* 
3317                  * Reuse the id for already existing stack frames, so invokes don't invalidate
3318                  * the still valid stack frames.
3319                  */
3320                 for (i = 0; i < tls->frame_count; ++i) {
3321                         if (MONO_CONTEXT_GET_SP (&tls->frames [i]->ctx) == MONO_CONTEXT_GET_SP (&f->ctx)) {
3322                                 f->id = tls->frames [i]->id;
3323                                 break;
3324                         }
3325                 }
3326
3327                 if (i >= tls->frame_count)
3328                         f->id = InterlockedIncrement (&frame_id);
3329
3330                 new_frames [findex ++] = f;
3331         }
3332
3333         g_slist_free (user_data.frames);
3334
3335         invalidate_frames (tls);
3336
3337         tls->frames = new_frames;
3338         tls->frame_count = new_frame_count;
3339         tls->frames_up_to_date = TRUE;
3340 }
3341
3342 /*
3343  * GHFunc to emit an appdomain creation event
3344  * @param key Don't care
3345  * @param value A loaded appdomain
3346  * @param user_data Don't care
3347  */
3348 static void
3349 emit_appdomain_load (gpointer key, gpointer value, gpointer user_data)
3350 {
3351         process_profiler_event (EVENT_KIND_APPDOMAIN_CREATE, value);
3352         g_hash_table_foreach (get_agent_domain_info (value)->loaded_classes, emit_type_load, NULL);
3353 }
3354
3355 /*
3356  * GHFunc to emit a thread start event
3357  * @param key A thread id
3358  * @param value A thread object
3359  * @param user_data Don't care
3360  */
3361 static void
3362 emit_thread_start (gpointer key, gpointer value, gpointer user_data)
3363 {
3364         if (GPOINTER_TO_INT (key) != debugger_thread_id)
3365                 process_profiler_event (EVENT_KIND_THREAD_START, value);
3366 }
3367
3368 /*
3369  * GFunc to emit an assembly load event
3370  * @param value A loaded assembly
3371  * @param user_data Don't care
3372  */
3373 static void
3374 emit_assembly_load (gpointer value, gpointer user_data)
3375 {
3376         process_profiler_event (EVENT_KIND_ASSEMBLY_LOAD, value);
3377 }
3378
3379 /*
3380  * GFunc to emit a type load event
3381  * @param value A loaded type
3382  * @param user_data Don't care
3383  */
3384 static void
3385 emit_type_load (gpointer key, gpointer value, gpointer user_data)
3386 {
3387         process_profiler_event (EVENT_KIND_TYPE_LOAD, value);
3388 }
3389
3390 static char*
3391 strdup_tolower (char *s)
3392 {
3393         char *s2, *p;
3394
3395         s2 = g_strdup (s);
3396         for (p = s2; *p; ++p)
3397                 *p = tolower (*p);
3398         return s2;
3399 }
3400
3401 /*
3402  * Same as g_path_get_basename () but handles windows paths as well,
3403  * which can occur in .mdb files created by pdb2mdb.
3404  */
3405 static char*
3406 dbg_path_get_basename (const char *filename)
3407 {
3408         char *r;
3409
3410         if (!filename || strchr (filename, '/') || !strchr (filename, '\\'))
3411                 return g_path_get_basename (filename);
3412
3413         /* From gpath.c */
3414
3415         /* No separator -> filename */
3416         r = strrchr (filename, '\\');
3417         if (r == NULL)
3418                 return g_strdup (filename);
3419
3420         /* Trailing slash, remove component */
3421         if (r [1] == 0){
3422                 char *copy = g_strdup (filename);
3423                 copy [r-filename] = 0;
3424                 r = strrchr (copy, '\\');
3425
3426                 if (r == NULL){
3427                         g_free (copy);
3428                         return g_strdup ("/");
3429                 }
3430                 r = g_strdup (&r[1]);
3431                 g_free (copy);
3432                 return r;
3433         }
3434
3435         return g_strdup (&r[1]);
3436 }
3437
3438 static void
3439 init_jit_info_dbg_attrs (MonoJitInfo *ji)
3440 {
3441         static MonoClass *hidden_klass, *step_through_klass, *non_user_klass;
3442         MonoCustomAttrInfo *ainfo;
3443
3444         if (ji->dbg_attrs_inited)
3445                 return;
3446
3447         if (!hidden_klass) {
3448                 hidden_klass = mono_class_from_name (mono_defaults.corlib, "System.Diagnostics", "DebuggerHiddenAttribute");
3449                 g_assert (hidden_klass);
3450         }
3451         if (!step_through_klass) {
3452                 step_through_klass = mono_class_from_name (mono_defaults.corlib, "System.Diagnostics", "DebuggerStepThroughAttribute");
3453                 g_assert (step_through_klass);
3454         }
3455         if (!non_user_klass) {
3456                 non_user_klass = mono_class_from_name (mono_defaults.corlib, "System.Diagnostics", "DebuggerNonUserCodeAttribute");
3457                 g_assert (non_user_klass);
3458         }
3459
3460         ainfo = mono_custom_attrs_from_method (jinfo_get_method (ji));
3461         if (ainfo) {
3462                 if (mono_custom_attrs_has_attr (ainfo, hidden_klass))
3463                         ji->dbg_hidden = TRUE;
3464                 if (mono_custom_attrs_has_attr (ainfo, step_through_klass))
3465                         ji->dbg_step_through = TRUE;
3466                 if (mono_custom_attrs_has_attr (ainfo, non_user_klass))
3467                         ji->dbg_non_user_code = TRUE;
3468                 mono_custom_attrs_free (ainfo);
3469         }
3470
3471         ainfo = mono_custom_attrs_from_class (jinfo_get_method (ji)->klass);
3472         if (ainfo) {
3473                 if (mono_custom_attrs_has_attr (ainfo, step_through_klass))
3474                         ji->dbg_step_through = TRUE;
3475                 if (mono_custom_attrs_has_attr (ainfo, non_user_klass))
3476                         ji->dbg_non_user_code = TRUE;
3477                 mono_custom_attrs_free (ainfo);
3478         }
3479
3480         mono_memory_barrier ();
3481         ji->dbg_attrs_inited = TRUE;
3482 }
3483
3484 /*
3485  * EVENT HANDLING
3486  */
3487
3488 /*
3489  * create_event_list:
3490  *
3491  *   Return a list of event request ids matching EVENT, starting from REQS, which
3492  * can be NULL to include all event requests. Set SUSPEND_POLICY to the suspend
3493  * policy.
3494  * We return request ids, instead of requests, to simplify threading, since 
3495  * requests could be deleted anytime when the loader lock is not held.
3496  * LOCKING: Assumes the loader lock is held.
3497  */
3498 static GSList*
3499 create_event_list (EventKind event, GPtrArray *reqs, MonoJitInfo *ji, EventInfo *ei, int *suspend_policy)
3500 {
3501         int i, j;
3502         GSList *events = NULL;
3503
3504         *suspend_policy = SUSPEND_POLICY_NONE;
3505
3506         if (!reqs)
3507                 reqs = event_requests;
3508
3509         if (!reqs)
3510                 return NULL;
3511
3512         for (i = 0; i < reqs->len; ++i) {
3513                 EventRequest *req = g_ptr_array_index (reqs, i);
3514                 if (req->event_kind == event) {
3515                         gboolean filtered = FALSE;
3516
3517                         /* Apply filters */
3518                         for (j = 0; j < req->nmodifiers; ++j) {
3519                                 Modifier *mod = &req->modifiers [j];
3520
3521                                 if (mod->kind == MOD_KIND_COUNT) {
3522                                         filtered = TRUE;
3523                                         if (mod->data.count > 0) {
3524                                                 if (mod->data.count > 0) {
3525                                                         mod->data.count --;
3526                                                         if (mod->data.count == 0)
3527                                                                 filtered = FALSE;
3528                                                 }
3529                                         }
3530                                 } else if (mod->kind == MOD_KIND_THREAD_ONLY) {
3531                                         if (mod->data.thread != mono_thread_internal_current ())
3532                                                 filtered = TRUE;
3533                                 } else if (mod->kind == MOD_KIND_EXCEPTION_ONLY && ei) {
3534                                         if (mod->data.exc_class && mod->subclasses && !mono_class_is_assignable_from (mod->data.exc_class, ei->exc->vtable->klass))
3535                                                 filtered = TRUE;
3536                                         if (mod->data.exc_class && !mod->subclasses && mod->data.exc_class != ei->exc->vtable->klass)
3537                                                 filtered = TRUE;
3538                                         if (ei->caught && !mod->caught)
3539                                                 filtered = TRUE;
3540                                         if (!ei->caught && !mod->uncaught)
3541                                                 filtered = TRUE;
3542                                 } else if (mod->kind == MOD_KIND_ASSEMBLY_ONLY && ji) {
3543                                         int k;
3544                                         gboolean found = FALSE;
3545                                         MonoAssembly **assemblies = mod->data.assemblies;
3546
3547                                         if (assemblies) {
3548                                                 for (k = 0; assemblies [k]; ++k)
3549                                                         if (assemblies [k] == jinfo_get_method (ji)->klass->image->assembly)
3550                                                                 found = TRUE;
3551                                         }
3552                                         if (!found)
3553                                                 filtered = TRUE;
3554                                 } else if (mod->kind == MOD_KIND_SOURCE_FILE_ONLY && ei && ei->klass) {
3555                                         gpointer iter = NULL;
3556                                         MonoMethod *method;
3557                                         MonoDebugSourceInfo *sinfo;
3558                                         char *source_file, *s;
3559                                         gboolean found = FALSE;
3560                                         int i;
3561                                         GPtrArray *source_file_list;
3562
3563                                         while ((method = mono_class_get_methods (ei->klass, &iter))) {
3564                                                 MonoDebugMethodInfo *minfo = mono_debug_lookup_method (method);
3565
3566                                                 if (minfo) {
3567                                                         mono_debug_symfile_get_line_numbers_full (minfo, &source_file, &source_file_list, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
3568                                                         for (i = 0; i < source_file_list->len; ++i) {
3569                                                                 sinfo = g_ptr_array_index (source_file_list, i);
3570                                                                 /*
3571                                                                  * Do a case-insesitive match by converting the file name to
3572                                                                  * lowercase.
3573                                                                  */
3574                                                                 s = strdup_tolower (sinfo->source_file);
3575                                                                 if (g_hash_table_lookup (mod->data.source_files, s))
3576                                                                         found = TRUE;
3577                                                                 else {
3578                                                                         char *s2 = dbg_path_get_basename (sinfo->source_file);
3579                                                                         char *s3 = strdup_tolower (s2);
3580
3581                                                                         if (g_hash_table_lookup (mod->data.source_files, s3))
3582                                                                                 found = TRUE;
3583                                                                         g_free (s2);
3584                                                                         g_free (s3);
3585                                                                 }
3586                                                                 g_free (s);
3587                                                         }
3588                                                         g_ptr_array_free (source_file_list, TRUE);
3589                                                 }
3590                                         }
3591                                         if (!found)
3592                                                 filtered = TRUE;
3593                                 } else if (mod->kind == MOD_KIND_TYPE_NAME_ONLY && ei && ei->klass) {
3594                                         char *s;
3595
3596                                         s = mono_type_full_name (&ei->klass->byval_arg);
3597                                         if (!g_hash_table_lookup (mod->data.type_names, s))
3598                                                 filtered = TRUE;
3599                                         g_free (s);
3600                                 } else if (mod->kind == MOD_KIND_STEP) {
3601                                         if ((mod->data.filter & STEP_FILTER_STATIC_CTOR) && ji &&
3602                                                 (jinfo_get_method (ji)->flags & METHOD_ATTRIBUTE_SPECIAL_NAME) &&
3603                                                 !strcmp (jinfo_get_method (ji)->name, ".cctor") &&
3604                                                 (jinfo_get_method (ji) != ((SingleStepReq*)req->info)->start_method))
3605                                                 filtered = TRUE;
3606                                         if ((mod->data.filter & STEP_FILTER_DEBUGGER_HIDDEN) && ji) {
3607                                                 init_jit_info_dbg_attrs (ji);
3608                                                 if (ji->dbg_hidden)
3609                                                         filtered = TRUE;
3610                                         }
3611                                         if ((mod->data.filter & STEP_FILTER_DEBUGGER_STEP_THROUGH) && ji) {
3612                                                 init_jit_info_dbg_attrs (ji);
3613                                                 if (ji->dbg_step_through)
3614                                                         filtered = TRUE;
3615                                         }
3616                                         if ((mod->data.filter & STEP_FILTER_DEBUGGER_NON_USER_CODE) && ji) {
3617                                                 init_jit_info_dbg_attrs (ji);
3618                                                 if (ji->dbg_non_user_code)
3619                                                         filtered = TRUE;
3620                                         }
3621                                 }
3622                         }
3623
3624                         if (!filtered) {
3625                                 *suspend_policy = MAX (*suspend_policy, req->suspend_policy);
3626                                 events = g_slist_append (events, GINT_TO_POINTER (req->id));
3627                         }
3628                 }
3629         }
3630
3631         /* Send a VM START/DEATH event by default */
3632         if (event == EVENT_KIND_VM_START)
3633                 events = g_slist_append (events, GINT_TO_POINTER (0));
3634         if (event == EVENT_KIND_VM_DEATH)
3635                 events = g_slist_append (events, GINT_TO_POINTER (0));
3636
3637         return events;
3638 }
3639
3640 static G_GNUC_UNUSED const char*
3641 event_to_string (EventKind event)
3642 {
3643         switch (event) {
3644         case EVENT_KIND_VM_START: return "VM_START";
3645         case EVENT_KIND_VM_DEATH: return "VM_DEATH";
3646         case EVENT_KIND_THREAD_START: return "THREAD_START";
3647         case EVENT_KIND_THREAD_DEATH: return "THREAD_DEATH";
3648         case EVENT_KIND_APPDOMAIN_CREATE: return "APPDOMAIN_CREATE";
3649         case EVENT_KIND_APPDOMAIN_UNLOAD: return "APPDOMAIN_UNLOAD";
3650         case EVENT_KIND_METHOD_ENTRY: return "METHOD_ENTRY";
3651         case EVENT_KIND_METHOD_EXIT: return "METHOD_EXIT";
3652         case EVENT_KIND_ASSEMBLY_LOAD: return "ASSEMBLY_LOAD";
3653         case EVENT_KIND_ASSEMBLY_UNLOAD: return "ASSEMBLY_UNLOAD";
3654         case EVENT_KIND_BREAKPOINT: return "BREAKPOINT";
3655         case EVENT_KIND_STEP: return "STEP";
3656         case EVENT_KIND_TYPE_LOAD: return "TYPE_LOAD";
3657         case EVENT_KIND_EXCEPTION: return "EXCEPTION";
3658         case EVENT_KIND_KEEPALIVE: return "KEEPALIVE";
3659         case EVENT_KIND_USER_BREAK: return "USER_BREAK";
3660         case EVENT_KIND_USER_LOG: return "USER_LOG";
3661         default:
3662                 g_assert_not_reached ();
3663                 return "";
3664         }
3665 }
3666
3667 /*
3668  * process_event:
3669  *
3670  *   Send an event to the client, suspending the vm if needed.
3671  * LOCKING: Since this can suspend the calling thread, no locks should be held
3672  * by the caller.
3673  * The EVENTS list is freed by this function.
3674  */
3675 static void
3676 process_event (EventKind event, gpointer arg, gint32 il_offset, MonoContext *ctx, GSList *events, int suspend_policy)
3677 {
3678         Buffer buf;
3679         GSList *l;
3680         MonoDomain *domain = mono_domain_get ();
3681         MonoThread *thread = NULL;
3682         MonoObject *keepalive_obj = NULL;
3683         gboolean send_success = FALSE;
3684         static int ecount;
3685         int nevents;
3686
3687         if (!inited) {
3688                 DEBUG_PRINTF (2, "Debugger agent not initialized yet: dropping %s\n", event_to_string (event));
3689                 return;
3690         }
3691
3692         if (!vm_start_event_sent && event != EVENT_KIND_VM_START) {
3693                 // FIXME: We miss those events
3694                 DEBUG_PRINTF (2, "VM start event not sent yet: dropping %s\n", event_to_string (event));
3695                 return;
3696         }
3697
3698         if (vm_death_event_sent) {
3699                 DEBUG_PRINTF (2, "VM death event has been sent: dropping %s\n", event_to_string (event));
3700                 return;
3701         }
3702
3703         if (mono_runtime_is_shutting_down () && event != EVENT_KIND_VM_DEATH) {
3704                 DEBUG_PRINTF (2, "Mono runtime is shutting down: dropping %s\n", event_to_string (event));
3705                 return;
3706         }
3707
3708         if (disconnected) {
3709                 DEBUG_PRINTF (2, "Debugger client is not connected: dropping %s\n", event_to_string (event));
3710                 return;
3711         }
3712
3713         if (event == EVENT_KIND_KEEPALIVE)
3714                 suspend_policy = SUSPEND_POLICY_NONE;
3715         else {
3716                 if (events == NULL)
3717                         return;
3718
3719                 if (agent_config.defer) {
3720                         /* Make sure the thread id is always set when doing deferred debugging */
3721                         if (debugger_thread_id == GetCurrentThreadId ()) {
3722                                 /* Don't suspend on events from the debugger thread */
3723                                 suspend_policy = SUSPEND_POLICY_NONE;
3724                                 thread = mono_thread_get_main ();
3725                         }
3726                         else thread = mono_thread_current ();
3727                 } else {
3728                         if (debugger_thread_id == GetCurrentThreadId () && event != EVENT_KIND_VM_DEATH)
3729                                 // FIXME: Send these with a NULL thread, don't suspend the current thread
3730                                 return;
3731                 }
3732         }
3733
3734         nevents = g_slist_length (events);
3735         buffer_init (&buf, 128);
3736         buffer_add_byte (&buf, suspend_policy);
3737         buffer_add_int (&buf, nevents);
3738
3739         for (l = events; l; l = l->next) {
3740                 buffer_add_byte (&buf, event); // event kind
3741                 buffer_add_int (&buf, GPOINTER_TO_INT (l->data)); // request id
3742
3743                 ecount ++;
3744
3745                 if (!thread)
3746                         thread = mono_thread_current ();
3747
3748                 if (event == EVENT_KIND_VM_START && arg != NULL)
3749                         thread = arg;
3750
3751                 buffer_add_objid (&buf, (MonoObject*)thread); // thread
3752
3753                 switch (event) {
3754                 case EVENT_KIND_THREAD_START:
3755                 case EVENT_KIND_THREAD_DEATH:
3756                         break;
3757                 case EVENT_KIND_APPDOMAIN_CREATE:
3758                 case EVENT_KIND_APPDOMAIN_UNLOAD:
3759                         buffer_add_domainid (&buf, arg);
3760                         break;
3761                 case EVENT_KIND_METHOD_ENTRY:
3762                 case EVENT_KIND_METHOD_EXIT:
3763                         buffer_add_methodid (&buf, domain, arg);
3764                         break;
3765                 case EVENT_KIND_ASSEMBLY_LOAD:
3766                         buffer_add_assemblyid (&buf, domain, arg);
3767                         break;
3768                 case EVENT_KIND_ASSEMBLY_UNLOAD: {
3769                         DebuggerTlsData *tls;
3770
3771                         /* The domain the assembly belonged to is not equal to the current domain */
3772                         tls = mono_native_tls_get_value (debugger_tls_id);
3773                         g_assert (tls);
3774                         g_assert (tls->domain_unloading);
3775
3776                         buffer_add_assemblyid (&buf, tls->domain_unloading, arg);
3777                         break;
3778                 }
3779                 case EVENT_KIND_TYPE_LOAD:
3780                         buffer_add_typeid (&buf, domain, arg);
3781                         break;
3782                 case EVENT_KIND_BREAKPOINT:
3783                 case EVENT_KIND_STEP:
3784                         buffer_add_methodid (&buf, domain, arg);
3785                         buffer_add_long (&buf, il_offset);
3786                         break;
3787                 case EVENT_KIND_VM_START:
3788                         buffer_add_domainid (&buf, mono_get_root_domain ());
3789                         break;
3790                 case EVENT_KIND_VM_DEATH:
3791                         if (CHECK_PROTOCOL_VERSION (2, 27))
3792                                 buffer_add_int (&buf, mono_environment_exitcode_get ());
3793                         break;
3794                 case EVENT_KIND_EXCEPTION: {
3795                         EventInfo *ei = arg;
3796                         buffer_add_objid (&buf, ei->exc);
3797                         /*
3798                          * We are not yet suspending, so get_objref () will not keep this object alive. So we need to do it
3799                          * later after the suspension. (#12494).
3800                          */
3801                         keepalive_obj = ei->exc;
3802                         break;
3803                 }
3804                 case EVENT_KIND_USER_BREAK:
3805                         break;
3806                 case EVENT_KIND_USER_LOG: {
3807                         EventInfo *ei = arg;
3808                         buffer_add_int (&buf, ei->level);
3809                         buffer_add_string (&buf, ei->category ? ei->category : "");
3810                         buffer_add_string (&buf, ei->message ? ei->message : "");
3811                         break;
3812                 }
3813                 case EVENT_KIND_KEEPALIVE:
3814                         suspend_policy = SUSPEND_POLICY_NONE;
3815                         break;
3816                 default:
3817                         g_assert_not_reached ();
3818                 }
3819         }
3820
3821         if (event == EVENT_KIND_VM_START) {
3822                 suspend_policy = agent_config.suspend ? SUSPEND_POLICY_ALL : SUSPEND_POLICY_NONE;
3823                 if (!agent_config.defer)
3824                         start_debugger_thread ();
3825         }
3826    
3827         if (event == EVENT_KIND_VM_DEATH) {
3828                 vm_death_event_sent = TRUE;
3829                 suspend_policy = SUSPEND_POLICY_NONE;
3830         }
3831
3832         if (mono_runtime_is_shutting_down ())
3833                 suspend_policy = SUSPEND_POLICY_NONE;
3834
3835         if (suspend_policy != SUSPEND_POLICY_NONE) {
3836                 /* 
3837                  * Save the thread context and start suspending before sending the packet,
3838                  * since we could be receiving the resume request before send_packet ()
3839                  * returns.
3840                  */
3841                 save_thread_context (ctx);
3842                 suspend_vm ();
3843
3844                 if (keepalive_obj)
3845                         /* This will keep this object alive */
3846                         get_objref (keepalive_obj);
3847         }
3848
3849         send_success = send_packet (CMD_SET_EVENT, CMD_COMPOSITE, &buf);
3850
3851         buffer_free (&buf);
3852
3853         g_slist_free (events);
3854         events = NULL;
3855
3856         if (!send_success) {
3857                 DEBUG_PRINTF (2, "Sending command %s failed.\n", event_to_string (event));
3858                 return;
3859         }
3860         
3861         if (event == EVENT_KIND_VM_START) {
3862                 vm_start_event_sent = TRUE;
3863         }
3864
3865         DEBUG_PRINTF (1, "[%p] Sent %d events %s(%d), suspend=%d.\n", (gpointer)GetCurrentThreadId (), nevents, event_to_string (event), ecount, suspend_policy);
3866
3867         switch (suspend_policy) {
3868         case SUSPEND_POLICY_NONE:
3869                 break;
3870         case SUSPEND_POLICY_ALL:
3871                 suspend_current ();
3872                 break;
3873         case SUSPEND_POLICY_EVENT_THREAD:
3874                 NOT_IMPLEMENTED;
3875                 break;
3876         default:
3877                 g_assert_not_reached ();
3878         }
3879 }
3880
3881 static void
3882 process_profiler_event (EventKind event, gpointer arg)
3883 {
3884         int suspend_policy;
3885         GSList *events;
3886         EventInfo ei, *ei_arg = NULL;
3887
3888         if (event == EVENT_KIND_TYPE_LOAD) {
3889                 ei.klass = arg;
3890                 ei_arg = &ei;
3891         }
3892
3893         mono_loader_lock ();
3894         events = create_event_list (event, NULL, NULL, ei_arg, &suspend_policy);
3895         mono_loader_unlock ();
3896
3897         process_event (event, arg, 0, NULL, events, suspend_policy);
3898 }
3899
3900 static void
3901 runtime_initialized (MonoProfiler *prof)
3902 {
3903         process_profiler_event (EVENT_KIND_VM_START, mono_thread_current ());
3904         if (agent_config.defer)
3905                 start_debugger_thread ();
3906 }
3907
3908 static void
3909 runtime_shutdown (MonoProfiler *prof)
3910 {
3911         process_profiler_event (EVENT_KIND_VM_DEATH, mono_thread_current ());
3912
3913         mono_debugger_agent_cleanup ();
3914 }
3915
3916 static void
3917 thread_startup (MonoProfiler *prof, uintptr_t tid)
3918 {
3919         MonoInternalThread *thread = mono_thread_internal_current ();
3920         MonoInternalThread *old_thread;
3921         DebuggerTlsData *tls;
3922
3923         if (tid == debugger_thread_id)
3924                 return;
3925
3926         g_assert (thread->tid == tid);
3927
3928         mono_loader_lock ();
3929         old_thread = mono_g_hash_table_lookup (tid_to_thread, (gpointer)tid);
3930         mono_loader_unlock ();
3931         if (old_thread) {
3932                 if (thread == old_thread) {
3933                         /* 
3934                          * For some reason, thread_startup () might be called for the same thread
3935                          * multiple times (attach ?).
3936                          */
3937                         DEBUG_PRINTF (1, "[%p] thread_start () called multiple times for %p, ignored.\n", (gpointer)tid, (gpointer)tid);
3938                         return;
3939                 } else {
3940                         /*
3941                          * thread_end () might not be called for some threads, and the tid could
3942                          * get reused.
3943                          */
3944                         DEBUG_PRINTF (1, "[%p] Removing stale data for tid %p.\n", (gpointer)tid, (gpointer)tid);
3945                         mono_loader_lock ();
3946                         mono_g_hash_table_remove (thread_to_tls, old_thread);
3947                         mono_g_hash_table_remove (tid_to_thread, (gpointer)tid);
3948                         mono_g_hash_table_remove (tid_to_thread_obj, (gpointer)tid);
3949                         mono_loader_unlock ();
3950                 }
3951         }
3952
3953         tls = mono_native_tls_get_value (debugger_tls_id);
3954         g_assert (!tls);
3955         // FIXME: Free this somewhere
3956         tls = g_new0 (DebuggerTlsData, 1);
3957         MONO_GC_REGISTER_ROOT_SINGLE (tls->thread);
3958         tls->thread = thread;
3959         mono_native_tls_set_value (debugger_tls_id, tls);
3960
3961         DEBUG_PRINTF (1, "[%p] Thread started, obj=%p, tls=%p.\n", (gpointer)tid, thread, tls);
3962
3963         mono_loader_lock ();
3964         mono_g_hash_table_insert (thread_to_tls, thread, tls);
3965         mono_g_hash_table_insert (tid_to_thread, (gpointer)tid, thread);
3966         mono_g_hash_table_insert (tid_to_thread_obj, (gpointer)tid, mono_thread_current ());
3967         mono_loader_unlock ();
3968
3969         process_profiler_event (EVENT_KIND_THREAD_START, thread);
3970
3971         /* 
3972          * suspend_vm () could have missed this thread, so wait for a resume.
3973          */
3974         suspend_current ();
3975 }
3976
3977 static void
3978 thread_end (MonoProfiler *prof, uintptr_t tid)
3979 {
3980         MonoInternalThread *thread;
3981         DebuggerTlsData *tls = NULL;
3982
3983         mono_loader_lock ();
3984         thread = mono_g_hash_table_lookup (tid_to_thread, (gpointer)tid);
3985         if (thread) {
3986                 mono_g_hash_table_remove (tid_to_thread_obj, (gpointer)tid);
3987                 tls = mono_g_hash_table_lookup (thread_to_tls, thread);
3988                 if (tls) {
3989                         /* FIXME: Maybe we need to free this instead, but some code can't handle that */
3990                         tls->terminated = TRUE;
3991                         /* Can't remove from tid_to_thread, as that would defeat the check in thread_start () */
3992                         MONO_GC_UNREGISTER_ROOT (tls->thread);
3993                         tls->thread = NULL;
3994                 }
3995         }
3996         mono_loader_unlock ();
3997
3998         /* We might be called for threads started before we registered the start callback */
3999         if (thread) {
4000                 DEBUG_PRINTF (1, "[%p] Thread terminated, obj=%p, tls=%p.\n", (gpointer)tid, thread, tls);
4001
4002                 if (GetCurrentThreadId () == tid && !mono_native_tls_get_value (debugger_tls_id)) {
4003                         /*
4004                          * This can happen on darwin since we deregister threads using pthread dtors.
4005                          * process_profiler_event () and the code it calls cannot handle a null TLS value.
4006                          */
4007                         return;
4008                 }
4009
4010                 process_profiler_event (EVENT_KIND_THREAD_DEATH, thread);
4011         }
4012 }
4013
4014 static void
4015 appdomain_load (MonoProfiler *prof, MonoDomain *domain, int result)
4016 {
4017         mono_loader_lock ();
4018         g_hash_table_insert (domains, domain, domain);
4019         mono_loader_unlock ();
4020
4021         process_profiler_event (EVENT_KIND_APPDOMAIN_CREATE, domain);
4022 }
4023
4024 static void
4025 appdomain_start_unload (MonoProfiler *prof, MonoDomain *domain)
4026 {
4027         DebuggerTlsData *tls;
4028
4029         /* This might be called during shutdown on the debugger thread from the CMD_VM_EXIT code */
4030         if (is_debugger_thread ())
4031                 return;
4032
4033         /*
4034          * Remember the currently unloading appdomain as it is needed to generate
4035          * proper ids for unloading assemblies.
4036          */
4037         tls = mono_native_tls_get_value (debugger_tls_id);
4038         g_assert (tls);
4039         tls->domain_unloading = domain;
4040 }
4041
4042 static void
4043 appdomain_unload (MonoProfiler *prof, MonoDomain *domain)
4044 {
4045         DebuggerTlsData *tls;
4046
4047         if (is_debugger_thread ())
4048                 return;
4049
4050         tls = mono_native_tls_get_value (debugger_tls_id);
4051         g_assert (tls);
4052         tls->domain_unloading = NULL;
4053
4054         clear_breakpoints_for_domain (domain);
4055         
4056         mono_loader_lock ();
4057         /* Invalidate each thread's frame stack */
4058         mono_g_hash_table_foreach (thread_to_tls, invalidate_each_thread, NULL);
4059         mono_loader_unlock ();
4060         
4061         process_profiler_event (EVENT_KIND_APPDOMAIN_UNLOAD, domain);
4062 }
4063
4064 /*
4065  * invalidate_each_thread:
4066  *
4067  *   A GHFunc to invalidate frames.
4068  *   value must be a DebuggerTlsData*
4069  */
4070 static void
4071 invalidate_each_thread (gpointer key, gpointer value, gpointer user_data)
4072 {
4073         invalidate_frames (value);
4074 }
4075
4076 static void
4077 assembly_load (MonoProfiler *prof, MonoAssembly *assembly, int result)
4078 {
4079         /* Sent later in jit_end () */
4080         dbg_lock ();
4081         g_ptr_array_add (pending_assembly_loads, assembly);
4082         dbg_unlock ();
4083 }
4084
4085 static void
4086 assembly_unload (MonoProfiler *prof, MonoAssembly *assembly)
4087 {
4088         if (is_debugger_thread ())
4089                 return;
4090
4091         process_profiler_event (EVENT_KIND_ASSEMBLY_UNLOAD, assembly);
4092
4093         clear_event_requests_for_assembly (assembly);
4094         clear_types_for_assembly (assembly);
4095 }
4096
4097 static void
4098 start_runtime_invoke (MonoProfiler *prof, MonoMethod *method)
4099 {
4100 #if defined(HOST_WIN32) && !defined(__GNUC__)
4101         gpointer stackptr = ((guint64)_AddressOfReturnAddress () - sizeof (void*));
4102 #else
4103         gpointer stackptr = __builtin_frame_address (1);
4104 #endif
4105         MonoInternalThread *thread = mono_thread_internal_current ();
4106         DebuggerTlsData *tls;
4107
4108         mono_loader_lock ();
4109         
4110         tls = mono_g_hash_table_lookup (thread_to_tls, thread);
4111         /* Could be the debugger thread with assembly/type load hooks */
4112         if (tls)
4113                 tls->invoke_addr = stackptr;
4114
4115         mono_loader_unlock ();
4116 }
4117
4118 static void
4119 end_runtime_invoke (MonoProfiler *prof, MonoMethod *method)
4120 {
4121         int i;
4122 #if defined(HOST_WIN32) && !defined(__GNUC__)
4123         gpointer stackptr = ((guint64)_AddressOfReturnAddress () - sizeof (void*));
4124 #else
4125         gpointer stackptr = __builtin_frame_address (1);
4126 #endif
4127
4128         if (!embedding || ss_req == NULL || stackptr != ss_invoke_addr || ss_req->thread != mono_thread_internal_current ())
4129                 return;
4130
4131         /*
4132          * We need to stop single stepping when exiting a runtime invoke, since if it is
4133          * a step out, it may return to native code, and thus never end.
4134          */
4135         mono_loader_lock ();
4136         ss_invoke_addr = NULL;
4137
4138         for (i = 0; i < event_requests->len; ++i) {
4139                 EventRequest *req = g_ptr_array_index (event_requests, i);
4140
4141                 if (req->event_kind == EVENT_KIND_STEP) {
4142                         ss_destroy (req->info);
4143                         g_ptr_array_remove_index_fast (event_requests, i);
4144                         g_free (req);
4145                         break;
4146                 }
4147         }
4148         mono_loader_unlock ();
4149 }
4150
4151 static void
4152 send_type_load (MonoClass *klass)
4153 {
4154         gboolean type_load = FALSE;
4155         MonoDomain *domain = mono_domain_get ();
4156         AgentDomainInfo *info = NULL;
4157
4158         mono_loader_lock ();
4159         mono_domain_lock (domain);
4160
4161         info = get_agent_domain_info (domain);
4162
4163         if (!g_hash_table_lookup (info->loaded_classes, klass)) {
4164                 type_load = TRUE;
4165                 g_hash_table_insert (info->loaded_classes, klass, klass);
4166         }
4167
4168         mono_domain_unlock (domain);
4169         mono_loader_unlock ();
4170         if (type_load)
4171                 emit_type_load (klass, klass, NULL);
4172 }
4173
4174 /*
4175  * Emit load events for all types currently loaded in the domain.
4176  * Takes the loader and domain locks.
4177  * user_data is unused.
4178  */
4179 static void
4180 send_types_for_domain (MonoDomain *domain, void *user_data)
4181 {
4182         AgentDomainInfo *info = NULL;
4183         
4184         mono_loader_lock ();
4185         mono_domain_lock (domain);
4186         info =  get_agent_domain_info (domain);
4187         g_assert (info);
4188         g_hash_table_foreach (info->loaded_classes, emit_type_load, NULL);
4189         mono_domain_unlock (domain);
4190         mono_loader_unlock ();
4191 }
4192
4193 static void
4194 jit_end (MonoProfiler *prof, MonoMethod *method, MonoJitInfo *jinfo, int result)
4195 {
4196         /*
4197          * We emit type load events when the first method of the type is JITted,
4198          * since the class load profiler callbacks might be called with the
4199          * loader lock held. They could also occur in the debugger thread.
4200          * Same for assembly load events.
4201          */
4202         while (TRUE) {
4203                 MonoAssembly *assembly = NULL;
4204
4205                 // FIXME: Maybe store this in TLS so the thread of the event is correct ?
4206                 dbg_lock ();
4207                 if (pending_assembly_loads->len > 0) {
4208                         assembly = g_ptr_array_index (pending_assembly_loads, 0);
4209                         g_ptr_array_remove_index (pending_assembly_loads, 0);
4210                 }
4211                 dbg_unlock ();
4212
4213                 if (assembly) {
4214                         process_profiler_event (EVENT_KIND_ASSEMBLY_LOAD, assembly);
4215                 } else {
4216                         break;
4217                 }
4218         }
4219
4220         send_type_load (method->klass);
4221
4222         if (!result)
4223                 add_pending_breakpoints (method, jinfo);
4224 }
4225
4226 /*
4227  * BREAKPOINTS/SINGLE STEPPING
4228  */
4229
4230 /* 
4231  * Contains information about an inserted breakpoint.
4232  */
4233 typedef struct {
4234         long il_offset, native_offset;
4235         guint8 *ip;
4236         MonoJitInfo *ji;
4237         MonoDomain *domain;
4238 } BreakpointInstance;
4239
4240 /*
4241  * Contains generic information about a breakpoint.
4242  */
4243 typedef struct {
4244         /* 
4245          * The method where the breakpoint is placed. Can be NULL in which case it 
4246          * is inserted into every method. This is used to implement method entry/
4247          * exit events. Can be a generic method definition, in which case the
4248          * breakpoint is inserted into every instance.
4249          */
4250         MonoMethod *method;
4251         long il_offset;
4252         EventRequest *req;
4253         /* 
4254          * A list of BreakpointInstance structures describing where the breakpoint
4255          * was inserted. There could be more than one because of 
4256          * generics/appdomains/method entry/exit.
4257          */
4258         GPtrArray *children;
4259 } MonoBreakpoint;
4260
4261 /* List of breakpoints */
4262 static GPtrArray *breakpoints;
4263 /* Maps breakpoint locations to the number of breakpoints at that location */
4264 static GHashTable *bp_locs;
4265
4266 static void
4267 breakpoints_init (void)
4268 {
4269         breakpoints = g_ptr_array_new ();
4270         bp_locs = g_hash_table_new (NULL, NULL);
4271 }       
4272
4273 /*
4274  * insert_breakpoint:
4275  *
4276  *   Insert the breakpoint described by BP into the method described by
4277  * JI.
4278  */
4279 static void
4280 insert_breakpoint (MonoSeqPointInfo *seq_points, MonoDomain *domain, MonoJitInfo *ji, MonoBreakpoint *bp, MonoError *error)
4281 {
4282         int count;
4283         BreakpointInstance *inst;
4284         SeqPointIterator it;
4285         gboolean it_has_sp = FALSE;
4286
4287         if (error)
4288                 mono_error_init (error);
4289
4290         seq_point_iterator_init (&it, seq_points);
4291         while (seq_point_iterator_next (&it)) {
4292                 if (it.seq_point.il_offset == bp->il_offset) {
4293                         it_has_sp = TRUE;
4294                         break;
4295                 }
4296         }
4297
4298         if (!it_has_sp) {
4299                 /*
4300                  * The set of IL offsets with seq points doesn't completely match the
4301                  * info returned by CMD_METHOD_GET_DEBUG_INFO (#407).
4302                  */
4303                 seq_point_iterator_init (&it, seq_points);
4304                 while (seq_point_iterator_next (&it)) {
4305                         if (it.seq_point.il_offset != METHOD_ENTRY_IL_OFFSET &&
4306                                 it.seq_point.il_offset != METHOD_EXIT_IL_OFFSET &&
4307                                 it.seq_point.il_offset + 1 == bp->il_offset) {
4308                                 it_has_sp = TRUE;
4309                                 break;
4310                         }
4311                 }
4312         }
4313
4314         if (!it_has_sp) {
4315                 char *s = g_strdup_printf ("Unable to insert breakpoint at %s:%d", mono_method_full_name (jinfo_get_method (ji), TRUE), bp->il_offset);
4316
4317                 seq_point_iterator_init (&it, seq_points);
4318                 while (seq_point_iterator_next (&it))
4319                         DEBUG_PRINTF (1, "%d\n", it.seq_point.il_offset);
4320
4321                 if (error) {
4322                         mono_error_set_error (error, MONO_ERROR_GENERIC, "%s", s);
4323                         g_warning ("%s", s);
4324                         g_free (s);
4325                         return;
4326                 } else {
4327                         g_warning ("%s", s);
4328                         g_free (s);
4329                         return;
4330                 }
4331         }
4332
4333         inst = g_new0 (BreakpointInstance, 1);
4334         inst->il_offset = it.seq_point.il_offset;
4335         inst->native_offset = it.seq_point.native_offset;
4336         inst->ip = (guint8*)ji->code_start + it.seq_point.native_offset;
4337         inst->ji = ji;
4338         inst->domain = domain;
4339
4340         mono_loader_lock ();
4341
4342         g_ptr_array_add (bp->children, inst);
4343
4344         mono_loader_unlock ();
4345
4346         dbg_lock ();
4347         count = GPOINTER_TO_INT (g_hash_table_lookup (bp_locs, inst->ip));
4348         g_hash_table_insert (bp_locs, inst->ip, GINT_TO_POINTER (count + 1));
4349         dbg_unlock ();
4350
4351         if (it.seq_point.native_offset == SEQ_POINT_NATIVE_OFFSET_DEAD_CODE) {
4352                 DEBUG_PRINTF (1, "[dbg] Attempting to insert seq point at dead IL offset %d, ignoring.\n", (int)bp->il_offset);
4353         } else if (count == 0) {
4354 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
4355                 mono_arch_set_breakpoint (ji, inst->ip);
4356 #else
4357                 NOT_IMPLEMENTED;
4358 #endif
4359         }
4360
4361         DEBUG_PRINTF (1, "[dbg] Inserted breakpoint at %s:0x%x [%p](%d).\n", mono_method_full_name (jinfo_get_method (ji), TRUE), (int)it.seq_point.il_offset, inst->ip, count);
4362 }
4363
4364 static void
4365 remove_breakpoint (BreakpointInstance *inst)
4366 {
4367 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
4368         int count;
4369         MonoJitInfo *ji = inst->ji;
4370         guint8 *ip = inst->ip;
4371
4372         dbg_lock ();
4373         count = GPOINTER_TO_INT (g_hash_table_lookup (bp_locs, ip));
4374         g_hash_table_insert (bp_locs, ip, GINT_TO_POINTER (count - 1));
4375         dbg_unlock ();
4376
4377         g_assert (count > 0);
4378
4379         if (count == 1 && inst->native_offset != SEQ_POINT_NATIVE_OFFSET_DEAD_CODE) {
4380                 mono_arch_clear_breakpoint (ji, ip);
4381                 DEBUG_PRINTF (1, "[dbg] Clear breakpoint at %s [%p].\n", mono_method_full_name (jinfo_get_method (ji), TRUE), ip);
4382         }
4383 #else
4384         NOT_IMPLEMENTED;
4385 #endif
4386 }       
4387
4388 static inline gboolean
4389 bp_matches_method (MonoBreakpoint *bp, MonoMethod *method)
4390 {
4391         int i;
4392
4393         if (!bp->method)
4394                 return TRUE;
4395         if (method == bp->method)
4396                 return TRUE;
4397         if (method->is_inflated && ((MonoMethodInflated*)method)->declaring == bp->method)
4398                 return TRUE;
4399
4400         if (bp->method->is_inflated && method->is_inflated) {
4401                 MonoMethodInflated *bpimethod = (MonoMethodInflated*)bp->method;
4402                 MonoMethodInflated *imethod = (MonoMethodInflated*)method;
4403
4404                 /* Open generic methods should match closed generic methods of the same class */
4405                 if (bpimethod->declaring == imethod->declaring && bpimethod->context.class_inst == imethod->context.class_inst && bpimethod->context.method_inst && bpimethod->context.method_inst->is_open) {
4406                         for (i = 0; i < bpimethod->context.method_inst->type_argc; ++i) {
4407                                 MonoType *t1 = bpimethod->context.method_inst->type_argv [i];
4408
4409                                 /* FIXME: Handle !mvar */
4410                                 if (t1->type != MONO_TYPE_MVAR)
4411                                         return FALSE;
4412                         }
4413                         return TRUE;
4414                 }
4415         }
4416
4417         return FALSE;
4418 }
4419
4420 /*
4421  * add_pending_breakpoints:
4422  *
4423  *   Insert pending breakpoints into the newly JITted method METHOD.
4424  */
4425 static void
4426 add_pending_breakpoints (MonoMethod *method, MonoJitInfo *ji)
4427 {
4428         int i, j;
4429         MonoSeqPointInfo *seq_points;
4430         MonoDomain *domain;
4431         MonoMethod *jmethod;
4432
4433         if (!breakpoints)
4434                 return;
4435
4436         domain = mono_domain_get ();
4437
4438         mono_loader_lock ();
4439
4440         for (i = 0; i < breakpoints->len; ++i) {
4441                 MonoBreakpoint *bp = g_ptr_array_index (breakpoints, i);
4442                 gboolean found = FALSE;
4443
4444                 if (!bp_matches_method (bp, method))
4445                         continue;
4446
4447                 for (j = 0; j < bp->children->len; ++j) {
4448                         BreakpointInstance *inst = g_ptr_array_index (bp->children, j);
4449
4450                         if (inst->ji == ji)
4451                                 found = TRUE;
4452                 }
4453
4454                 if (!found) {
4455                         jmethod = jinfo_get_method (ji);
4456                         mono_domain_lock (domain);
4457                         seq_points = g_hash_table_lookup (domain_jit_info (domain)->seq_points, jmethod);
4458                         if (!seq_points && jmethod->is_inflated)
4459                                 seq_points = g_hash_table_lookup (domain_jit_info (domain)->seq_points, mono_method_get_declaring_generic_method (jmethod));
4460                         mono_domain_unlock (domain);
4461                         if (!seq_points)
4462                                 /* Could be AOT code */
4463                                 continue;
4464                         g_assert (seq_points);
4465
4466                         insert_breakpoint (seq_points, domain, ji, bp, NULL);
4467                 }
4468         }
4469
4470         mono_loader_unlock ();
4471 }
4472
4473 static void
4474 set_bp_in_method (MonoDomain *domain, MonoMethod *method, MonoSeqPointInfo *seq_points, MonoBreakpoint *bp, MonoError *error)
4475 {
4476         gpointer code;
4477         MonoJitInfo *ji;
4478
4479         if (error)
4480                 mono_error_init (error);
4481
4482         code = mono_jit_find_compiled_method_with_jit_info (domain, method, &ji);
4483         if (!code) {
4484                 /* Might be AOTed code */
4485                 code = mono_aot_get_method (domain, method);
4486                 g_assert (code);
4487                 ji = mono_jit_info_table_find (domain, code);
4488                 g_assert (ji);
4489         }
4490         g_assert (code);
4491
4492         insert_breakpoint (seq_points, domain, ji, bp, error);
4493 }
4494
4495 static void
4496 clear_breakpoint (MonoBreakpoint *bp);
4497
4498 /*
4499  * set_breakpoint:
4500  *
4501  *   Set a breakpoint at IL_OFFSET in METHOD.
4502  * METHOD can be NULL, in which case a breakpoint is placed in all methods.
4503  * METHOD can also be a generic method definition, in which case a breakpoint
4504  * is placed in all instances of the method.
4505  * If ERROR is non-NULL, then it is set and NULL is returnd if some breakpoints couldn't be
4506  * inserted.
4507  */
4508 static MonoBreakpoint*
4509 set_breakpoint (MonoMethod *method, long il_offset, EventRequest *req, MonoError *error)
4510 {
4511         MonoBreakpoint *bp;
4512         GHashTableIter iter, iter2;
4513         MonoDomain *domain;
4514         MonoMethod *m;
4515         MonoSeqPointInfo *seq_points;
4516
4517         if (error)
4518                 mono_error_init (error);
4519
4520         // FIXME:
4521         // - suspend/resume the vm to prevent code patching problems
4522         // - multiple breakpoints on the same location
4523         // - dynamic methods
4524         // - races
4525
4526         bp = g_new0 (MonoBreakpoint, 1);
4527         bp->method = method;
4528         bp->il_offset = il_offset;
4529         bp->req = req;
4530         bp->children = g_ptr_array_new ();
4531
4532         DEBUG_PRINTF (1, "[dbg] Setting %sbreakpoint at %s:0x%x.\n", (req->event_kind == EVENT_KIND_STEP) ? "single step " : "", method ? mono_method_full_name (method, TRUE) : "<all>", (int)il_offset);
4533
4534         mono_loader_lock ();
4535
4536         g_hash_table_iter_init (&iter, domains);
4537         while (g_hash_table_iter_next (&iter, (void**)&domain, NULL)) {
4538                 mono_domain_lock (domain);
4539
4540                 g_hash_table_iter_init (&iter2, domain_jit_info (domain)->seq_points);
4541                 while (g_hash_table_iter_next (&iter2, (void**)&m, (void**)&seq_points)) {
4542                         if (bp_matches_method (bp, m))
4543                                 set_bp_in_method (domain, m, seq_points, bp, error);
4544                 }
4545
4546                 mono_domain_unlock (domain);
4547         }
4548
4549         mono_loader_unlock ();
4550
4551         mono_loader_lock ();
4552         g_ptr_array_add (breakpoints, bp);
4553         mono_loader_unlock ();
4554
4555         if (error && !mono_error_ok (error)) {
4556                 clear_breakpoint (bp);
4557                 return NULL;
4558         }
4559
4560         return bp;
4561 }
4562
4563 static void
4564 clear_breakpoint (MonoBreakpoint *bp)
4565 {
4566         int i;
4567
4568         // FIXME: locking, races
4569         for (i = 0; i < bp->children->len; ++i) {
4570                 BreakpointInstance *inst = g_ptr_array_index (bp->children, i);
4571
4572                 remove_breakpoint (inst);
4573
4574                 g_free (inst);
4575         }
4576
4577         mono_loader_lock ();
4578         g_ptr_array_remove (breakpoints, bp);
4579         mono_loader_unlock ();
4580
4581         g_ptr_array_free (bp->children, TRUE);
4582         g_free (bp);
4583 }
4584
4585 static void
4586 breakpoints_cleanup (void)
4587 {
4588         int i;
4589
4590         mono_loader_lock ();
4591         i = 0;
4592         while (i < event_requests->len) {
4593                 EventRequest *req = g_ptr_array_index (event_requests, i);
4594
4595                 if (req->event_kind == EVENT_KIND_BREAKPOINT) {
4596                         clear_breakpoint (req->info);
4597                         g_ptr_array_remove_index_fast (event_requests, i);
4598                         g_free (req);
4599                 } else {
4600                         i ++;
4601                 }
4602         }
4603
4604         for (i = 0; i < breakpoints->len; ++i)
4605                 g_free (g_ptr_array_index (breakpoints, i));
4606
4607         g_ptr_array_free (breakpoints, TRUE);
4608         g_hash_table_destroy (bp_locs);
4609
4610         breakpoints = NULL;
4611         bp_locs = NULL;
4612
4613         mono_loader_unlock ();
4614 }
4615
4616 /*
4617  * clear_breakpoints_for_domain:
4618  *
4619  *   Clear breakpoint instances which reference DOMAIN.
4620  */
4621 static void
4622 clear_breakpoints_for_domain (MonoDomain *domain)
4623 {
4624         int i, j;
4625
4626         /* This could be called after shutdown */
4627         if (!breakpoints)
4628                 return;
4629
4630         mono_loader_lock ();
4631         for (i = 0; i < breakpoints->len; ++i) {
4632                 MonoBreakpoint *bp = g_ptr_array_index (breakpoints, i);
4633
4634                 j = 0;
4635                 while (j < bp->children->len) {
4636                         BreakpointInstance *inst = g_ptr_array_index (bp->children, j);
4637
4638                         if (inst->domain == domain) {
4639                                 remove_breakpoint (inst);
4640
4641                                 g_free (inst);
4642
4643                                 g_ptr_array_remove_index_fast (bp->children, j);
4644                         } else {
4645                                 j ++;
4646                         }
4647                 }
4648         }
4649         mono_loader_unlock ();
4650 }
4651
4652 /*
4653  * ss_update:
4654  *
4655  * Return FALSE if single stepping needs to continue.
4656  */
4657 static gboolean
4658 ss_update (SingleStepReq *req, MonoJitInfo *ji, SeqPoint *sp, DebuggerTlsData *tls, MonoContext *ctx)
4659 {
4660         MonoDebugMethodInfo *minfo;
4661         MonoDebugSourceLocation *loc = NULL;
4662         gboolean hit = TRUE;
4663         MonoMethod *method;
4664
4665         if (req->depth == STEP_DEPTH_OVER && (sp->flags & MONO_SEQ_POINT_FLAG_NONEMPTY_STACK)) {
4666                 /*
4667                  * These seq points are inserted by the JIT after calls, step over needs to skip them.
4668                  */
4669                 DEBUG_PRINTF (1, "[%p] Seq point at nonempty stack %x while stepping over, continuing single stepping.\n", (gpointer)GetCurrentThreadId (), sp->il_offset);
4670                 return FALSE;
4671         }
4672
4673         if (req->depth == STEP_DEPTH_OVER && hit) {
4674                 if (!tls->context.valid)
4675                         mono_thread_state_init_from_monoctx (&tls->context, ctx);
4676                 compute_frame_info (tls->thread, tls);
4677                 if (req->nframes && tls->frame_count && tls->frame_count > req->nframes) {
4678                         /* Hit the breakpoint in a recursive call */
4679                         DEBUG_PRINTF (1, "[%p] Breakpoint at lower frame while stepping over, continuing single stepping.\n", (gpointer)GetCurrentThreadId ());
4680                         return FALSE;
4681                 }
4682         }
4683
4684         if (req->depth == STEP_DEPTH_INTO && req->size == STEP_SIZE_MIN && (sp->flags & MONO_SEQ_POINT_FLAG_NONEMPTY_STACK) && ss_req->start_method){
4685                 method = jinfo_get_method (ji);
4686                 if (!tls->context.valid)
4687                         mono_thread_state_init_from_monoctx (&tls->context, ctx);
4688                 compute_frame_info (tls->thread, tls);
4689                 if (ss_req->start_method == method && req->nframes && tls->frame_count == req->nframes) {//Check also frame count(could be recursion)
4690                         DEBUG_PRINTF (1, "[%p] Seq point at nonempty stack %x while stepping in, continuing single stepping.\n", (gpointer)GetCurrentThreadId (), sp->il_offset);
4691                         return FALSE;
4692                 }
4693         }
4694
4695         if (req->size != STEP_SIZE_LINE)
4696                 return TRUE;
4697
4698         /* Have to check whenever a different source line was reached */
4699         method = jinfo_get_method (ji);
4700         minfo = mono_debug_lookup_method (method);
4701
4702         if (minfo)
4703                 loc = mono_debug_symfile_lookup_location (minfo, sp->il_offset);
4704
4705         if (!loc) {
4706                 DEBUG_PRINTF (1, "[%p] No line number info for il offset %x, continuing single stepping.\n", (gpointer)GetCurrentThreadId (), sp->il_offset);
4707                 ss_req->last_method = method;
4708                 hit = FALSE;
4709         } else if (loc && method == ss_req->last_method && loc->row == ss_req->last_line) {
4710                 DEBUG_PRINTF (1, "[%p] Same source line (%d), continuing single stepping.\n", (gpointer)GetCurrentThreadId (), loc->row);
4711                 hit = FALSE;
4712         }
4713                                 
4714         if (loc) {
4715                 ss_req->last_method = method;
4716                 ss_req->last_line = loc->row;
4717                 mono_debug_free_source_location (loc);
4718         }
4719
4720         return hit;
4721 }
4722
4723 static gboolean
4724 breakpoint_matches_assembly (MonoBreakpoint *bp, MonoAssembly *assembly)
4725 {
4726         return bp->method && bp->method->klass->image->assembly == assembly;
4727 }
4728
4729 static void
4730 process_breakpoint_inner (DebuggerTlsData *tls, gboolean from_signal)
4731 {
4732         MonoJitInfo *ji;
4733         guint8 *ip;
4734         int i, j, suspend_policy;
4735         guint32 native_offset;
4736         MonoBreakpoint *bp;
4737         BreakpointInstance *inst;
4738         GPtrArray *bp_reqs, *ss_reqs_orig, *ss_reqs;
4739         GSList *bp_events = NULL, *ss_events = NULL, *enter_leave_events = NULL;
4740         EventKind kind = EVENT_KIND_BREAKPOINT;
4741         MonoContext *ctx = &tls->restore_state.ctx;
4742         MonoMethod *method;
4743         MonoSeqPointInfo *info;
4744         SeqPoint sp;
4745         gboolean found_sp;
4746
4747         // FIXME: Speed this up
4748
4749         ip = MONO_CONTEXT_GET_IP (ctx);
4750         ji = mini_jit_info_table_find (mono_domain_get (), (char*)ip, NULL);
4751         g_assert (ji);
4752         method = jinfo_get_method (ji);
4753
4754         /* Compute the native offset of the breakpoint from the ip */
4755         native_offset = ip - (guint8*)ji->code_start;   
4756
4757         /* 
4758          * Skip the instruction causing the breakpoint signal.
4759          */
4760         if (from_signal)
4761                 mono_arch_skip_breakpoint (ctx, ji);
4762
4763         if (method->wrapper_type || tls->disable_breakpoints)
4764                 return;
4765
4766         bp_reqs = g_ptr_array_new ();
4767         ss_reqs = g_ptr_array_new ();
4768         ss_reqs_orig = g_ptr_array_new ();
4769
4770         mono_loader_lock ();
4771
4772         /*
4773          * The ip points to the instruction causing the breakpoint event, which is after
4774          * the offset recorded in the seq point map, so find the prev seq point before ip.
4775          */
4776         found_sp = find_prev_seq_point_for_native_offset (mono_domain_get (), method, native_offset, &info, &sp);
4777
4778         if (!found_sp)
4779                 no_seq_points_found (method);
4780
4781         g_assert (found_sp);
4782
4783         DEBUG_PRINTF (1, "[%p] Breakpoint hit, method=%s, ip=%p, offset=0x%x, sp il offset=0x%x.\n", (gpointer)GetCurrentThreadId (), method->name, ip, native_offset, sp.il_offset);
4784
4785         bp = NULL;
4786         for (i = 0; i < breakpoints->len; ++i) {
4787                 bp = g_ptr_array_index (breakpoints, i);
4788
4789                 if (!bp->method)
4790                         continue;
4791
4792                 for (j = 0; j < bp->children->len; ++j) {
4793                         inst = g_ptr_array_index (bp->children, j);
4794                         if (inst->ji == ji && inst->il_offset == sp.il_offset && inst->native_offset == sp.native_offset) {
4795                                 if (bp->req->event_kind == EVENT_KIND_STEP) {
4796                                         g_ptr_array_add (ss_reqs_orig, bp->req);
4797                                 } else {
4798                                         g_ptr_array_add (bp_reqs, bp->req);
4799                                 }
4800                         }
4801                 }
4802         }
4803         if (bp_reqs->len == 0 && ss_reqs_orig->len == 0) {
4804                 /* Maybe a method entry/exit event */
4805                 if (sp.il_offset == METHOD_ENTRY_IL_OFFSET)
4806                         kind = EVENT_KIND_METHOD_ENTRY;
4807                 else if (sp.il_offset == METHOD_EXIT_IL_OFFSET)
4808                         kind = EVENT_KIND_METHOD_EXIT;
4809         }
4810
4811         /* Process single step requests */
4812         for (i = 0; i < ss_reqs_orig->len; ++i) {
4813                 EventRequest *req = g_ptr_array_index (ss_reqs_orig, i);
4814                 SingleStepReq *ss_req = req->info;
4815                 gboolean hit;
4816
4817                 if (mono_thread_internal_current () != ss_req->thread)
4818                         continue;
4819
4820                 hit = ss_update (ss_req, ji, &sp, tls, ctx);
4821                 if (hit)
4822                         g_ptr_array_add (ss_reqs, req);
4823
4824                 /* Start single stepping again from the current sequence point */
4825                 ss_start (ss_req, method, &sp, info, ctx, tls, FALSE, NULL, 0);
4826         }
4827         
4828         if (ss_reqs->len > 0)
4829                 ss_events = create_event_list (EVENT_KIND_STEP, ss_reqs, ji, NULL, &suspend_policy);
4830         if (bp_reqs->len > 0)
4831                 bp_events = create_event_list (EVENT_KIND_BREAKPOINT, bp_reqs, ji, NULL, &suspend_policy);
4832         if (kind != EVENT_KIND_BREAKPOINT)
4833                 enter_leave_events = create_event_list (kind, NULL, ji, NULL, &suspend_policy);
4834
4835         mono_loader_unlock ();
4836
4837         g_ptr_array_free (bp_reqs, TRUE);
4838         g_ptr_array_free (ss_reqs, TRUE);
4839
4840         /* 
4841          * FIXME: The first event will suspend, so the second will only be sent after the
4842          * resume.
4843          */
4844         if (ss_events)
4845                 process_event (EVENT_KIND_STEP, method, 0, ctx, ss_events, suspend_policy);
4846         if (bp_events)
4847                 process_event (kind, method, 0, ctx, bp_events, suspend_policy);
4848         if (enter_leave_events)
4849                 process_event (kind, method, 0, ctx, enter_leave_events, suspend_policy);
4850 }
4851
4852 /* Process a breakpoint/single step event after resuming from a signal handler */
4853 static void
4854 process_signal_event (void (*func) (DebuggerTlsData*, gboolean))
4855 {
4856         DebuggerTlsData *tls;
4857         MonoThreadUnwindState orig_restore_state;
4858         MonoContext ctx;
4859
4860         tls = mono_native_tls_get_value (debugger_tls_id);
4861         /* Have to save/restore the restore_ctx as we can be called recursively during invokes etc. */
4862         memcpy (&orig_restore_state, &tls->restore_state, sizeof (MonoThreadUnwindState));
4863         mono_thread_state_init_from_monoctx (&tls->restore_state, &tls->handler_ctx);
4864
4865         func (tls, TRUE);
4866
4867         /* This is called when resuming from a signal handler, so it shouldn't return */
4868         memcpy (&ctx, &tls->restore_state.ctx, sizeof (MonoContext));
4869         memcpy (&tls->restore_state, &orig_restore_state, sizeof (MonoThreadUnwindState));
4870         mono_restore_context (&ctx);
4871         g_assert_not_reached ();
4872 }
4873
4874 static void
4875 process_breakpoint (void)
4876 {
4877         process_signal_event (process_breakpoint_inner);
4878 }
4879
4880 static void
4881 resume_from_signal_handler (void *sigctx, void *func)
4882 {
4883         DebuggerTlsData *tls;
4884         MonoContext ctx;
4885
4886         /* Save the original context in TLS */
4887         // FIXME: This might not work on an altstack ?
4888         tls = mono_native_tls_get_value (debugger_tls_id);
4889         if (!tls)
4890                 fprintf (stderr, "Thread %p is not attached to the JIT.\n", (gpointer)GetCurrentThreadId ());
4891         g_assert (tls);
4892
4893         // FIXME: MonoContext usually doesn't include the fp registers, so these are 
4894         // clobbered by a single step/breakpoint event. If this turns out to be a problem,
4895         // clob:c could be added to op_seq_point.
4896
4897         mono_sigctx_to_monoctx (sigctx, &ctx);
4898         memcpy (&tls->handler_ctx, &ctx, sizeof (MonoContext));
4899 #ifdef MONO_ARCH_HAVE_SETUP_RESUME_FROM_SIGNAL_HANDLER_CTX
4900         mono_arch_setup_resume_sighandler_ctx (&ctx, func);
4901 #else
4902         MONO_CONTEXT_SET_IP (&ctx, func);
4903 #endif
4904         mono_monoctx_to_sigctx (&ctx, sigctx);
4905
4906 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4907         mono_ppc_set_func_into_sigctx (sigctx, func);
4908 #endif
4909 }
4910
4911 void
4912 mono_debugger_agent_breakpoint_hit (void *sigctx)
4913 {
4914         /*
4915          * We are called from a signal handler, and running code there causes all kinds of
4916          * problems, like the original signal is disabled, libgc can't handle altstack, etc.
4917          * So set up the signal context to return to the real breakpoint handler function.
4918          */
4919         resume_from_signal_handler (sigctx, process_breakpoint);
4920 }
4921
4922 static gboolean
4923 user_break_cb (StackFrameInfo *frame, MonoContext *ctx, gpointer data)
4924 {
4925         if (frame->managed) {
4926                 *(MonoContext*)data = *ctx;
4927
4928                 return TRUE;
4929         } else {
4930                 return FALSE;
4931         }
4932 }
4933
4934 /*
4935  * Called by System.Diagnostics.Debugger:Break ().
4936  */
4937 void
4938 mono_debugger_agent_user_break (void)
4939 {
4940         if (agent_config.enabled) {
4941                 MonoContext ctx;
4942                 int suspend_policy;
4943                 GSList *events;
4944
4945                 /* Obtain a context */
4946                 MONO_CONTEXT_SET_IP (&ctx, NULL);
4947                 mono_walk_stack_with_ctx (user_break_cb, NULL, 0, &ctx);
4948                 g_assert (MONO_CONTEXT_GET_IP (&ctx) != NULL);
4949
4950                 mono_loader_lock ();
4951                 events = create_event_list (EVENT_KIND_USER_BREAK, NULL, NULL, NULL, &suspend_policy);
4952                 mono_loader_unlock ();
4953
4954                 process_event (EVENT_KIND_USER_BREAK, NULL, 0, &ctx, events, suspend_policy);
4955         } else {
4956                 G_BREAKPOINT ();
4957         }
4958 }
4959
4960 static const char*
4961 ss_depth_to_string (StepDepth depth)
4962 {
4963         switch (depth) {
4964         case STEP_DEPTH_OVER:
4965                 return "over";
4966         case STEP_DEPTH_OUT:
4967                 return "out";
4968         case STEP_DEPTH_INTO:
4969                 return "into";
4970         default:
4971                 g_assert_not_reached ();
4972                 return NULL;
4973         }
4974 }
4975
4976 static void
4977 process_single_step_inner (DebuggerTlsData *tls, gboolean from_signal)
4978 {
4979         MonoJitInfo *ji;
4980         guint8 *ip;
4981         GPtrArray *reqs;
4982         int il_offset, suspend_policy;
4983         MonoDomain *domain;
4984         GSList *events;
4985         MonoContext *ctx = &tls->restore_state.ctx;
4986         MonoMethod *method;
4987         SeqPoint sp;
4988         MonoSeqPointInfo *info;
4989
4990         ip = MONO_CONTEXT_GET_IP (ctx);
4991
4992         /* Skip the instruction causing the single step */
4993         if (from_signal)
4994                 mono_arch_skip_single_step (ctx);
4995
4996         if (suspend_count > 0) {
4997                 process_suspend (tls, ctx);
4998                 return;
4999         }
5000
5001         if (!ss_req)
5002                 // FIXME: A suspend race
5003                 return;
5004
5005         if (mono_thread_internal_current () != ss_req->thread)
5006                 return;
5007
5008         if (log_level > 0) {
5009                 ji = mini_jit_info_table_find (mono_domain_get (), (char*)ip, &domain);
5010
5011                 DEBUG_PRINTF (1, "[%p] Single step event (depth=%s) at %s (%p)[0x%x], sp %p, last sp %p\n", (gpointer)GetCurrentThreadId (), ss_depth_to_string (ss_req->depth), mono_method_full_name (jinfo_get_method (ji), TRUE), MONO_CONTEXT_GET_IP (ctx), (int)((guint8*)MONO_CONTEXT_GET_IP (ctx) - (guint8*)ji->code_start), MONO_CONTEXT_GET_SP (ctx), ss_req->last_sp);
5012         }
5013
5014         ji = mini_jit_info_table_find (mono_domain_get (), (char*)ip, &domain);
5015         g_assert (ji);
5016         method = jinfo_get_method (ji);
5017         g_assert (method);
5018
5019         if (method->wrapper_type && method->wrapper_type != MONO_WRAPPER_DYNAMIC_METHOD)
5020                 return;
5021
5022         /* 
5023          * FIXME:
5024          * Stopping in memset makes half-initialized vtypes visible.
5025          * Stopping in memcpy makes half-copied vtypes visible.
5026          */
5027         if (method->klass == mono_defaults.string_class && (!strcmp (method->name, "memset") || strstr (method->name, "memcpy")))
5028                 return;
5029
5030         /*
5031          * The ip points to the instruction causing the single step event, which is before
5032          * the offset recorded in the seq point map, so find the next seq point after ip.
5033          */
5034         if (!find_next_seq_point_for_native_offset (domain, method, (guint8*)ip - (guint8*)ji->code_start, &info, &sp))
5035                 return;
5036
5037         il_offset = sp.il_offset;
5038
5039         if (!ss_update (ss_req, ji, &sp, tls, ctx))
5040                 return;
5041
5042         /* Start single stepping again from the current sequence point */
5043         ss_start (ss_req, method, &sp, info, ctx, tls, FALSE, NULL, 0);
5044
5045         if ((ss_req->filter & STEP_FILTER_STATIC_CTOR) &&
5046                 (method->flags & METHOD_ATTRIBUTE_SPECIAL_NAME) &&
5047                 !strcmp (method->name, ".cctor"))
5048                 return;
5049
5050         // FIXME: Has to lock earlier
5051
5052         reqs = g_ptr_array_new ();
5053
5054         mono_loader_lock ();
5055
5056         g_ptr_array_add (reqs, ss_req->req);
5057
5058         events = create_event_list (EVENT_KIND_STEP, reqs, ji, NULL, &suspend_policy);
5059
5060         g_ptr_array_free (reqs, TRUE);
5061
5062         mono_loader_unlock ();
5063
5064         process_event (EVENT_KIND_STEP, jinfo_get_method (ji), il_offset, ctx, events, suspend_policy);
5065 }
5066
5067 static void
5068 process_single_step (void)
5069 {
5070         process_signal_event (process_single_step_inner);
5071 }
5072
5073 /*
5074  * mono_debugger_agent_single_step_event:
5075  *
5076  *   Called from a signal handler to handle a single step event.
5077  */
5078 void
5079 mono_debugger_agent_single_step_event (void *sigctx)
5080 {
5081         /* Resume to process_single_step through the signal context */
5082
5083         // FIXME: Since step out/over is implemented using step in, the step in case should
5084         // be as fast as possible. Move the relevant code from process_single_step_inner ()
5085         // here
5086
5087         if (GetCurrentThreadId () == debugger_thread_id) {
5088                 /* 
5089                  * This could happen despite our best effors when the runtime calls 
5090                  * assembly/type resolve hooks.
5091                  * FIXME: Breakpoints too.
5092                  */
5093                 MonoContext ctx;
5094
5095                 mono_sigctx_to_monoctx (sigctx, &ctx);
5096                 mono_arch_skip_single_step (&ctx);
5097                 mono_monoctx_to_sigctx (&ctx, sigctx);
5098                 return;
5099         }
5100
5101         resume_from_signal_handler (sigctx, process_single_step);
5102 }
5103
5104 void
5105 debugger_agent_single_step_from_context (MonoContext *ctx)
5106 {
5107         DebuggerTlsData *tls;
5108         MonoThreadUnwindState orig_restore_state;
5109
5110         tls = mono_native_tls_get_value (debugger_tls_id);
5111         g_assert (tls);
5112
5113         /* Have to save/restore the restore_ctx as we can be called recursively during invokes etc. */
5114         memcpy (&orig_restore_state, &tls->restore_state, sizeof (MonoThreadUnwindState));
5115         mono_thread_state_init_from_monoctx (&tls->restore_state, ctx);
5116
5117         process_single_step_inner (tls, FALSE);
5118
5119         memcpy (ctx, &tls->restore_state.ctx, sizeof (MonoContext));
5120         memcpy (&tls->restore_state, &orig_restore_state, sizeof (MonoThreadUnwindState));
5121 }
5122
5123 void
5124 debugger_agent_breakpoint_from_context (MonoContext *ctx)
5125 {
5126         DebuggerTlsData *tls;
5127         MonoThreadUnwindState orig_restore_state;
5128
5129         tls = mono_native_tls_get_value (debugger_tls_id);
5130         g_assert (tls);
5131         memcpy (&orig_restore_state, &tls->restore_state, sizeof (MonoContext));
5132         mono_thread_state_init_from_monoctx (&tls->restore_state, ctx);
5133
5134         process_breakpoint_inner (tls, FALSE);
5135
5136         memcpy (ctx, &tls->restore_state.ctx, sizeof (MonoContext));
5137         memcpy (&tls->restore_state, &orig_restore_state, sizeof (MonoThreadUnwindState));
5138 }
5139
5140 /*
5141  * start_single_stepping:
5142  *
5143  *   Turn on single stepping. Can be called multiple times, for example,
5144  * by a single step event request + a suspend.
5145  */
5146 static void
5147 start_single_stepping (void)
5148 {
5149 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
5150         int val = InterlockedIncrement (&ss_count);
5151
5152         if (val == 1)
5153                 mono_arch_start_single_stepping ();
5154
5155         if (ss_req != NULL && ss_invoke_addr == NULL) {
5156                 DebuggerTlsData *tls;
5157         
5158                 mono_loader_lock ();
5159         
5160                 tls = mono_g_hash_table_lookup (thread_to_tls, ss_req->thread);
5161                 ss_invoke_addr = tls->invoke_addr;
5162                 
5163                 mono_loader_unlock ();
5164         }
5165 #else
5166         g_assert_not_reached ();
5167 #endif
5168 }
5169
5170 static void
5171 stop_single_stepping (void)
5172 {
5173 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
5174         int val = InterlockedDecrement (&ss_count);
5175
5176         if (val == 0)
5177                 mono_arch_stop_single_stepping ();
5178         if (ss_req != NULL)
5179                 ss_invoke_addr = NULL;
5180 #else
5181         g_assert_not_reached ();
5182 #endif
5183 }
5184
5185 /*
5186  * ss_stop:
5187  *
5188  *   Stop the single stepping operation given by SS_REQ.
5189  */
5190 static void
5191 ss_stop (SingleStepReq *ss_req)
5192 {
5193         if (ss_req->bps) {
5194                 GSList *l;
5195
5196                 for (l = ss_req->bps; l; l = l->next) {
5197                         clear_breakpoint (l->data);
5198                 }
5199                 g_slist_free (ss_req->bps);
5200                 ss_req->bps = NULL;
5201         }
5202
5203         if (ss_req->global) {
5204                 stop_single_stepping ();
5205                 ss_req->global = FALSE;
5206         }
5207 }
5208
5209 /*
5210  * ss_start:
5211  *
5212  *   Start the single stepping operation given by SS_REQ from the sequence point SP.
5213  * If CTX is not set, then this can target any thread. If CTX is set, then TLS should
5214  * belong to the same thread as CTX.
5215  * If FRAMES is not-null, use that instead of tls->frames for placing breakpoints etc.
5216  */
5217 static void
5218 ss_start (SingleStepReq *ss_req, MonoMethod *method, SeqPoint* sp, MonoSeqPointInfo *info, MonoContext *ctx, DebuggerTlsData *tls,
5219                   gboolean step_to_catch, StackFrame **frames, int nframes)
5220 {
5221         int i, j, frame_index;
5222         SeqPoint *next_sp, *parent_sp = NULL;
5223         SeqPoint local_sp, local_parent_sp;
5224         gboolean found_sp;
5225         MonoBreakpoint *bp;
5226         MonoSeqPointInfo *parent_info;
5227         MonoMethod *parent_sp_method = NULL;
5228         gboolean enable_global = FALSE;
5229
5230         /* Stop the previous operation */
5231         ss_stop (ss_req);
5232
5233         /*
5234          * Implement single stepping using breakpoints if possible.
5235          */
5236         if (step_to_catch) {
5237                 bp = set_breakpoint (method, sp->il_offset, ss_req->req, NULL);
5238                 ss_req->bps = g_slist_append (ss_req->bps, bp);
5239         } else {
5240                 frame_index = 1;
5241
5242                 if (ctx && !frames) {
5243                         /* Need parent frames */
5244                         if (!tls->context.valid)
5245                                 mono_thread_state_init_from_monoctx (&tls->context, ctx);
5246                         compute_frame_info (tls->thread, tls);
5247                         frames = tls->frames;
5248                         nframes = tls->frame_count;
5249                 }
5250
5251                 /*
5252                  * Find the first sequence point in the current or in a previous frame which
5253                  * is not the last in its method.
5254                  */
5255                 if (ss_req->depth == STEP_DEPTH_OUT) {
5256                         /* Ignore seq points in current method */
5257                         while (frame_index < nframes) {
5258                                 StackFrame *frame = frames [frame_index];
5259
5260                                 method = frame->method;
5261                                 found_sp = find_prev_seq_point_for_native_offset (frame->domain, frame->method, frame->native_offset, &info, &local_sp);
5262                                 sp = (found_sp)? &local_sp : NULL;
5263                                 frame_index ++;
5264                                 if (sp && sp->next_len != 0)
5265                                         break;
5266                         }
5267                         // There could be method calls before the next seq point in the caller when using nested calls
5268                         //enable_global = TRUE;
5269                 } else {
5270                         if (sp && sp->next_len == 0) {
5271                                 sp = NULL;
5272                                 while (frame_index < nframes) {
5273                                         StackFrame *frame = frames [frame_index];
5274
5275                                         method = frame->method;
5276                                         found_sp = find_prev_seq_point_for_native_offset (frame->domain, frame->method, frame->native_offset, &info, &local_sp);
5277                                         sp = (found_sp)? &local_sp : NULL;
5278                                         if (sp && sp->next_len != 0)
5279                                                 break;
5280                                         sp = NULL;
5281                                         frame_index ++;
5282                                 }
5283                         } else {
5284                                 /* Have to put a breakpoint into a parent frame since the seq points might not cover all control flow out of the method */
5285                                 while (frame_index < nframes) {
5286                                         StackFrame *frame = frames [frame_index];
5287
5288                                         parent_sp_method = frame->method;
5289                                         found_sp = find_prev_seq_point_for_native_offset (frame->domain, frame->method, frame->native_offset, &parent_info, &local_parent_sp);
5290                                         parent_sp = found_sp ? &local_parent_sp : NULL;
5291                                         if (found_sp && parent_sp->next_len != 0)
5292                                                 break;
5293                                         parent_sp = NULL;
5294                                         frame_index ++;
5295                                 }
5296                         }
5297                 }
5298
5299                 if (sp && sp->next_len > 0) {
5300                         SeqPoint* next = g_new(SeqPoint, sp->next_len);
5301
5302                         seq_point_init_next (info, *sp, next);
5303                         for (i = 0; i < sp->next_len; i++) {
5304                                 next_sp = &next[i];
5305
5306                                 bp = set_breakpoint (method, next_sp->il_offset, ss_req->req, NULL);
5307                                 ss_req->bps = g_slist_append (ss_req->bps, bp);
5308                         }
5309                         g_free (next);
5310                 }
5311
5312                 if (parent_sp) {
5313                         SeqPoint* next = g_new(SeqPoint, parent_sp->next_len);
5314
5315                         seq_point_init_next (parent_info, *parent_sp, next);
5316                         for (i = 0; i < parent_sp->next_len; i++) {
5317                                 next_sp = &next[i];
5318
5319                                 bp = set_breakpoint (parent_sp_method, next_sp->il_offset, ss_req->req, NULL);
5320                                 ss_req->bps = g_slist_append (ss_req->bps, bp);
5321                         }
5322                         g_free (next);
5323                 }
5324
5325                 if (ss_req->nframes == 0)
5326                         ss_req->nframes = nframes;
5327
5328                 if ((ss_req->depth == STEP_DEPTH_OVER) && (!sp && !parent_sp)) {
5329                         DEBUG_PRINTF (1, "[dbg] No parent frame for step over, transition to step into.\n");
5330                         /*
5331                          * This is needed since if we leave managed code, and later return to it, step over
5332                          * is not going to stop.
5333                          * This approach is a bit ugly, since we change the step depth, but it only affects
5334                          * clients who reuse the same step request, and only in this special case.
5335                          */
5336                         ss_req->depth = STEP_DEPTH_INTO;
5337                 }
5338
5339                 if (ss_req->depth == STEP_DEPTH_OVER) {
5340                         /* Need to stop in catch clauses as well */
5341                         for (i = 0; i < nframes; ++i) {
5342                                 StackFrame *frame = frames [i];
5343
5344                                 if (frame->ji) {
5345                                         MonoJitInfo *jinfo = frame->ji;
5346                                         for (j = 0; j < jinfo->num_clauses; ++j) {
5347                                                 MonoJitExceptionInfo *ei = &jinfo->clauses [j];
5348
5349                                                 found_sp = find_next_seq_point_for_native_offset (frame->domain, frame->method, (char*)ei->handler_start - (char*)jinfo->code_start, NULL, &local_sp);
5350                                                 sp = (found_sp)? &local_sp : NULL;
5351                                                 if (sp) {
5352                                                         bp = set_breakpoint (frame->method, sp->il_offset, ss_req->req, NULL);
5353                                                         ss_req->bps = g_slist_append (ss_req->bps, bp);
5354                                                 }
5355                                         }
5356                                 }
5357                         }
5358                 }
5359
5360                 if (ss_req->depth == STEP_DEPTH_INTO) {
5361                         /* Enable global stepping so we stop at method entry too */
5362                         enable_global = TRUE;
5363                 }
5364
5365                 /*
5366                  * The ctx/frame info computed above will become invalid when we continue.
5367                  */
5368                 tls->context.valid = FALSE;
5369                 tls->async_state.valid = FALSE;
5370                 invalidate_frames (tls);
5371         }
5372
5373         if (enable_global) {
5374                 DEBUG_PRINTF (1, "[dbg] Turning on global single stepping.\n");
5375                 ss_req->global = TRUE;
5376                 start_single_stepping ();
5377         } else if (!ss_req->bps) {
5378                 DEBUG_PRINTF (1, "[dbg] Turning on global single stepping.\n");
5379                 ss_req->global = TRUE;
5380                 start_single_stepping ();
5381         } else {
5382                 ss_req->global = FALSE;
5383         }
5384 }
5385
5386 /*
5387  * Start single stepping of thread THREAD
5388  */
5389 static ErrorCode
5390 ss_create (MonoInternalThread *thread, StepSize size, StepDepth depth, StepFilter filter, EventRequest *req)
5391 {
5392         DebuggerTlsData *tls;
5393         MonoSeqPointInfo *info = NULL;
5394         SeqPoint *sp = NULL;
5395         SeqPoint local_sp;
5396         gboolean found_sp;
5397         MonoMethod *method = NULL;
5398         MonoDebugMethodInfo *minfo;
5399         gboolean step_to_catch = FALSE;
5400         gboolean set_ip = FALSE;
5401         StackFrame **frames = NULL;
5402         int nframes = 0;
5403
5404         if (suspend_count == 0)
5405                 return ERR_NOT_SUSPENDED;
5406
5407         wait_for_suspend ();
5408
5409         // FIXME: Multiple requests
5410         if (ss_req) {
5411                 DEBUG_PRINTF (0, "Received a single step request while the previous one was still active.\n");
5412                 return ERR_NOT_IMPLEMENTED;
5413         }
5414
5415         DEBUG_PRINTF (1, "[dbg] Starting single step of thread %p (depth=%s).\n", thread, ss_depth_to_string (depth));
5416
5417         ss_req = g_new0 (SingleStepReq, 1);
5418         ss_req->req = req;
5419         ss_req->thread = thread;
5420         ss_req->size = size;
5421         ss_req->depth = depth;
5422         ss_req->filter = filter;
5423         req->info = ss_req;
5424
5425         mono_loader_lock ();
5426         tls = mono_g_hash_table_lookup (thread_to_tls, thread);
5427         mono_loader_unlock ();
5428         g_assert (tls);
5429         g_assert (tls->context.valid);
5430
5431         if (tls->restore_state.valid && MONO_CONTEXT_GET_IP (&tls->context.ctx) != MONO_CONTEXT_GET_IP (&tls->restore_state.ctx)) {
5432                 /*
5433                  * Need to start single stepping from restore_state and not from the current state
5434                  */
5435                 set_ip = TRUE;
5436                 frames = compute_frame_info_from (thread, tls, &tls->restore_state, &nframes);
5437         }
5438
5439         ss_req->start_sp = ss_req->last_sp = MONO_CONTEXT_GET_SP (&tls->context.ctx);
5440
5441         if (tls->catch_state.valid) {
5442                 gboolean res;
5443                 StackFrameInfo frame;
5444                 MonoContext new_ctx;
5445                 MonoLMF *lmf = NULL;
5446
5447                 /*
5448                  * We are stopped at a throw site. Stepping should go to the catch site.
5449                  */
5450
5451                 /* Find the the jit info for the catch context */
5452                 res = mono_find_jit_info_ext (tls->catch_state.unwind_data [MONO_UNWIND_DATA_DOMAIN], ((MonoThreadInfo*)thread->thread_info)->jit_data, NULL, &tls->catch_state.ctx, &new_ctx, NULL, &lmf, NULL, &frame);
5453                 g_assert (res);
5454                 g_assert (frame.type == FRAME_TYPE_MANAGED);
5455
5456                 /*
5457                  * Find the seq point corresponding to the landing site ip, which is the first seq
5458                  * point after ip.
5459                  */
5460                 found_sp = find_next_seq_point_for_native_offset (frame.domain, frame.method, frame.native_offset, &info, &local_sp);
5461                 sp = (found_sp)? &local_sp : NULL;
5462                 if (!sp)
5463                         no_seq_points_found (frame.method);
5464                 g_assert (sp);
5465
5466                 method = frame.method;
5467
5468                 step_to_catch = TRUE;
5469                 /* This make sure the seq point is not skipped by process_single_step () */
5470                 ss_req->last_sp = NULL;
5471         }
5472
5473         if (!step_to_catch) {
5474                 StackFrame *frame = NULL;
5475
5476                 if (set_ip) {
5477                         if (frames && nframes)
5478                                 frame = frames [0];
5479                 } else {
5480                         compute_frame_info (thread, tls);
5481
5482                         if (tls->frame_count)
5483                                 frame = tls->frames [0];
5484                 }
5485
5486                 if (ss_req->size == STEP_SIZE_LINE) {
5487                         if (frame) {
5488                                 ss_req->last_method = frame->method;
5489                                 ss_req->last_line = -1;
5490
5491                                 minfo = mono_debug_lookup_method (frame->method);
5492                                 if (minfo && frame->il_offset != -1) {
5493                                         MonoDebugSourceLocation *loc = mono_debug_symfile_lookup_location (minfo, frame->il_offset);
5494
5495                                         if (loc) {
5496                                                 ss_req->last_line = loc->row;
5497                                                 g_free (loc);
5498                                         }
5499                                 }
5500                         }
5501                 }
5502
5503                 if (frame) {
5504                         if (!method && frame->il_offset != -1) {
5505                                 /* FIXME: Sort the table and use a binary search */
5506                                 found_sp = find_prev_seq_point_for_native_offset (frame->domain, frame->method, frame->native_offset, &info, &local_sp);
5507                                 sp = (found_sp)? &local_sp : NULL;
5508                                 if (!sp)
5509                                         no_seq_points_found (frame->method);
5510                                 g_assert (sp);
5511                                 method = frame->method;
5512                         }
5513                 }
5514         }
5515
5516         ss_req->start_method = method;
5517
5518         ss_start (ss_req, method, sp, info, set_ip ? &tls->restore_state.ctx : &tls->context.ctx, tls, step_to_catch, frames, nframes);
5519
5520         if (frames)
5521                 free_frames (frames, nframes);
5522
5523         return 0;
5524 }
5525
5526 static void
5527 ss_destroy (SingleStepReq *req)
5528 {
5529         // FIXME: Locking
5530         g_assert (ss_req == req);
5531
5532         ss_stop (ss_req);
5533
5534         g_free (ss_req);
5535         ss_req = NULL;
5536 }
5537
5538 static void
5539 ss_clear_for_assembly (SingleStepReq *req, MonoAssembly *assembly)
5540 {
5541         GSList *l;
5542         gboolean found = TRUE;
5543
5544         while (found) {
5545                 found = FALSE;
5546                 for (l = ss_req->bps; l; l = l->next) {
5547                         if (breakpoint_matches_assembly (l->data, assembly)) {
5548                                 clear_breakpoint (l->data);
5549                                 ss_req->bps = g_slist_delete_link (ss_req->bps, l);
5550                                 found = TRUE;
5551                                 break;
5552                         }
5553                 }
5554         }
5555 }
5556
5557 /*
5558  * Called from metadata by the icall for System.Diagnostics.Debugger:Log ().
5559  */
5560 void
5561 mono_debugger_agent_debug_log (int level, MonoString *category, MonoString *message)
5562 {
5563         int suspend_policy;
5564         GSList *events;
5565         EventInfo ei;
5566
5567         if (!agent_config.enabled)
5568                 return;
5569
5570         mono_loader_lock ();
5571         events = create_event_list (EVENT_KIND_USER_LOG, NULL, NULL, NULL, &suspend_policy);
5572         mono_loader_unlock ();
5573
5574         ei.level = level;
5575         ei.category = category ? mono_string_to_utf8 (category) : NULL;
5576         ei.message = message ? mono_string_to_utf8 (message) : NULL;
5577
5578         process_event (EVENT_KIND_USER_LOG, &ei, 0, NULL, events, suspend_policy);
5579
5580         g_free (ei.category);
5581         g_free (ei.message);
5582 }
5583
5584 gboolean
5585 mono_debugger_agent_debug_log_is_enabled (void)
5586 {
5587         /* Treat this as true even if there is no event request for EVENT_KIND_USER_LOG */
5588         return agent_config.enabled;
5589 }
5590
5591 #if defined(PLATFORM_ANDROID) || defined(TARGET_ANDROID)
5592 void
5593 mono_debugger_agent_unhandled_exception (MonoException *exc)
5594 {
5595         int suspend_policy;
5596         GSList *events;
5597         EventInfo ei;
5598
5599         if (!inited)
5600                 return;
5601
5602         memset (&ei, 0, sizeof (EventInfo));
5603         ei.exc = (MonoObject*)exc;
5604
5605         mono_loader_lock ();
5606         events = create_event_list (EVENT_KIND_EXCEPTION, NULL, NULL, &ei, &suspend_policy);
5607         mono_loader_unlock ();
5608
5609         process_event (EVENT_KIND_EXCEPTION, &ei, 0, NULL, events, suspend_policy);
5610 }
5611 #endif
5612
5613 void
5614 mono_debugger_agent_handle_exception (MonoException *exc, MonoContext *throw_ctx, 
5615                                       MonoContext *catch_ctx)
5616 {
5617         int i, j, suspend_policy;
5618         GSList *events;
5619         MonoJitInfo *ji, *catch_ji;
5620         EventInfo ei;
5621         DebuggerTlsData *tls = NULL;
5622
5623         if (thread_to_tls != NULL) {
5624                 MonoInternalThread *thread = mono_thread_internal_current ();
5625
5626                 mono_loader_lock ();
5627                 tls = mono_g_hash_table_lookup (thread_to_tls, thread);
5628                 mono_loader_unlock ();
5629
5630                 if (tls && tls->abort_requested)
5631                         return;
5632                 if (tls && tls->disable_breakpoints)
5633                         return;
5634         }
5635
5636         memset (&ei, 0, sizeof (EventInfo));
5637
5638         /* Just-In-Time debugging */
5639         if (!catch_ctx) {
5640                 if (agent_config.onuncaught && !inited) {
5641                         finish_agent_init (FALSE);
5642
5643                         /*
5644                          * Send an unsolicited EXCEPTION event with a dummy request id.
5645                          */
5646                         events = g_slist_append (NULL, GUINT_TO_POINTER (0xffffff));
5647                         ei.exc = (MonoObject*)exc;
5648                         process_event (EVENT_KIND_EXCEPTION, &ei, 0, throw_ctx, events, SUSPEND_POLICY_ALL);
5649                         return;
5650                 }
5651         } else if (agent_config.onthrow && !inited) {
5652                 GSList *l;
5653                 gboolean found = FALSE;
5654
5655                 for (l = agent_config.onthrow; l; l = l->next) {
5656                         char *ex_type = l->data;
5657                         char *f = mono_type_full_name (&exc->object.vtable->klass->byval_arg);
5658
5659                         if (!strcmp (ex_type, "") || !strcmp (ex_type, f))
5660                                 found = TRUE;
5661
5662                         g_free (f);
5663                 }
5664
5665                 if (found) {
5666                         finish_agent_init (FALSE);
5667
5668                         /*
5669                          * Send an unsolicited EXCEPTION event with a dummy request id.
5670                          */
5671                         events = g_slist_append (NULL, GUINT_TO_POINTER (0xffffff));
5672                         ei.exc = (MonoObject*)exc;
5673                         process_event (EVENT_KIND_EXCEPTION, &ei, 0, throw_ctx, events, SUSPEND_POLICY_ALL);
5674                         return;
5675                 }
5676         }
5677
5678         if (!inited)
5679                 return;
5680
5681         ji = mini_jit_info_table_find (mono_domain_get (), MONO_CONTEXT_GET_IP (throw_ctx), NULL);
5682         if (catch_ctx)
5683                 catch_ji = mini_jit_info_table_find (mono_domain_get (), MONO_CONTEXT_GET_IP (catch_ctx), NULL);
5684         else
5685                 catch_ji = NULL;
5686
5687         ei.exc = (MonoObject*)exc;
5688         ei.caught = catch_ctx != NULL;
5689
5690         mono_loader_lock ();
5691
5692         /* Treat exceptions which are caught in non-user code as unhandled */
5693         for (i = 0; i < event_requests->len; ++i) {
5694                 EventRequest *req = g_ptr_array_index (event_requests, i);
5695                 if (req->event_kind != EVENT_KIND_EXCEPTION)
5696                         continue;
5697
5698                 for (j = 0; j < req->nmodifiers; ++j) {
5699                         Modifier *mod = &req->modifiers [j];
5700
5701                         if (mod->kind == MOD_KIND_ASSEMBLY_ONLY && catch_ji) {
5702                                 int k;
5703                                 gboolean found = FALSE;
5704                                 MonoAssembly **assemblies = mod->data.assemblies;
5705
5706                                 if (assemblies) {
5707                                         for (k = 0; assemblies [k]; ++k)
5708                                                 if (assemblies [k] == jinfo_get_method (catch_ji)->klass->image->assembly)
5709                                                         found = TRUE;
5710                                 }
5711                                 if (!found)
5712                                         ei.caught = FALSE;
5713                         }
5714                 }
5715         }
5716
5717         events = create_event_list (EVENT_KIND_EXCEPTION, NULL, ji, &ei, &suspend_policy);
5718         mono_loader_unlock ();
5719
5720         if (tls && ei.caught && catch_ctx) {
5721                 memset (&tls->catch_state, 0, sizeof (tls->catch_state));
5722                 tls->catch_state.ctx = *catch_ctx;
5723                 tls->catch_state.unwind_data [MONO_UNWIND_DATA_DOMAIN] = mono_domain_get ();
5724                 tls->catch_state.valid = TRUE;
5725         }
5726
5727         process_event (EVENT_KIND_EXCEPTION, &ei, 0, throw_ctx, events, suspend_policy);
5728
5729         if (tls)
5730                 tls->catch_state.valid = FALSE;
5731 }
5732
5733 void
5734 mono_debugger_agent_begin_exception_filter (MonoException *exc, MonoContext *ctx, MonoContext *orig_ctx)
5735 {
5736         DebuggerTlsData *tls;
5737
5738         if (!inited)
5739                 return;
5740
5741         tls = mono_native_tls_get_value (debugger_tls_id);
5742         if (!tls)
5743                 return;
5744
5745         /*
5746          * We're about to invoke an exception filter during the first pass of exception handling.
5747          *
5748          * 'ctx' is the context that'll get passed to the filter ('call_filter (ctx, ei->data.filter)'),
5749          * 'orig_ctx' is the context where the exception has been thrown.
5750          *
5751          *
5752          * See mcs/class/Mono.Debugger.Soft/Tests/dtest-excfilter.il for an example.
5753          *
5754          * If we're stopped in Filter(), normal stack unwinding would first unwind to
5755          * the call site (line 37) and then continue to Main(), but it would never
5756          * include the throw site (line 32).
5757          *
5758          * Since exception filters are invoked during the first pass of exception handling,
5759          * the stack frames of the throw site are still intact, so we should include them
5760          * in a stack trace.
5761          *
5762          * We do this here by saving the context of the throw site in 'tls->filter_state'.
5763          *
5764          * Exception filters are used by MonoDroid, where we want to stop inside a call filter,
5765          * but report the location of the 'throw' to the user.
5766          *
5767          */
5768
5769         g_assert (mono_thread_state_init_from_monoctx (&tls->filter_state, orig_ctx));
5770 }
5771
5772 void
5773 mono_debugger_agent_end_exception_filter (MonoException *exc, MonoContext *ctx, MonoContext *orig_ctx)
5774 {
5775         DebuggerTlsData *tls;
5776
5777         if (!inited)
5778                 return;
5779
5780         tls = mono_native_tls_get_value (debugger_tls_id);
5781         if (!tls)
5782                 return;
5783
5784         tls->filter_state.valid = FALSE;
5785 }
5786
5787 /*
5788  * buffer_add_value_full:
5789  *
5790  *   Add the encoding of the value at ADDR described by T to the buffer.
5791  * AS_VTYPE determines whenever to treat primitive types as primitive types or
5792  * vtypes.
5793  */
5794 static void
5795 buffer_add_value_full (Buffer *buf, MonoType *t, void *addr, MonoDomain *domain,
5796                                            gboolean as_vtype, GHashTable *parent_vtypes)
5797 {
5798         MonoObject *obj;
5799         gboolean boxed_vtype = FALSE;
5800
5801         if (t->byref) {
5802                 if (!(*(void**)addr)) {
5803                         /* This can happen with compiler generated locals */
5804                         //printf ("%s\n", mono_type_full_name (t));
5805                         buffer_add_byte (buf, VALUE_TYPE_ID_NULL);
5806                         return;
5807                 }
5808                 g_assert (*(void**)addr);
5809                 addr = *(void**)addr;
5810         }
5811
5812         if (as_vtype) {
5813                 switch (t->type) {
5814                 case MONO_TYPE_BOOLEAN:
5815                 case MONO_TYPE_I1:
5816                 case MONO_TYPE_U1:
5817                 case MONO_TYPE_CHAR:
5818                 case MONO_TYPE_I2:
5819                 case MONO_TYPE_U2:
5820                 case MONO_TYPE_I4:
5821                 case MONO_TYPE_U4:
5822                 case MONO_TYPE_R4:
5823                 case MONO_TYPE_I8:
5824                 case MONO_TYPE_U8:
5825                 case MONO_TYPE_R8:
5826                 case MONO_TYPE_I:
5827                 case MONO_TYPE_U:
5828                 case MONO_TYPE_PTR:
5829                         goto handle_vtype;
5830                         break;
5831                 default:
5832                         break;
5833                 }
5834         }
5835
5836         switch (t->type) {
5837         case MONO_TYPE_VOID:
5838                 buffer_add_byte (buf, t->type);
5839                 break;
5840         case MONO_TYPE_BOOLEAN:
5841         case MONO_TYPE_I1:
5842         case MONO_TYPE_U1:
5843                 buffer_add_byte (buf, t->type);
5844                 buffer_add_int (buf, *(gint8*)addr);
5845                 break;
5846         case MONO_TYPE_CHAR:
5847         case MONO_TYPE_I2:
5848         case MONO_TYPE_U2:
5849                 buffer_add_byte (buf, t->type);
5850                 buffer_add_int (buf, *(gint16*)addr);
5851                 break;
5852         case MONO_TYPE_I4:
5853         case MONO_TYPE_U4:
5854         case MONO_TYPE_R4:
5855                 buffer_add_byte (buf, t->type);
5856                 buffer_add_int (buf, *(gint32*)addr);
5857                 break;
5858         case MONO_TYPE_I8:
5859         case MONO_TYPE_U8:
5860         case MONO_TYPE_R8:
5861                 buffer_add_byte (buf, t->type);
5862                 buffer_add_long (buf, *(gint64*)addr);
5863                 break;
5864         case MONO_TYPE_I:
5865         case MONO_TYPE_U:
5866                 /* Treat it as a vtype */
5867                 goto handle_vtype;
5868         case MONO_TYPE_PTR: {
5869                 gssize val = *(gssize*)addr;
5870                 
5871                 buffer_add_byte (buf, t->type);
5872                 buffer_add_long (buf, val);
5873                 break;
5874         }
5875         handle_ref:
5876         case MONO_TYPE_STRING:
5877         case MONO_TYPE_SZARRAY:
5878         case MONO_TYPE_OBJECT:
5879         case MONO_TYPE_CLASS:
5880         case MONO_TYPE_ARRAY:
5881                 obj = *(MonoObject**)addr;
5882
5883                 if (!obj) {
5884                         buffer_add_byte (buf, VALUE_TYPE_ID_NULL);
5885                 } else {
5886                         if (obj->vtable->klass->valuetype) {
5887                                 t = &obj->vtable->klass->byval_arg;
5888                                 addr = mono_object_unbox (obj);
5889                                 boxed_vtype = TRUE;
5890                                 goto handle_vtype;
5891                         } else if (obj->vtable->klass->rank) {
5892                                 buffer_add_byte (buf, obj->vtable->klass->byval_arg.type);
5893                         } else if (obj->vtable->klass->byval_arg.type == MONO_TYPE_GENERICINST) {
5894                                 buffer_add_byte (buf, MONO_TYPE_CLASS);
5895                         } else {
5896                                 buffer_add_byte (buf, obj->vtable->klass->byval_arg.type);
5897                         }
5898                         buffer_add_objid (buf, obj);
5899                 }
5900                 break;
5901         handle_vtype:
5902         case MONO_TYPE_VALUETYPE:
5903         case MONO_TYPE_TYPEDBYREF: {
5904                 int nfields;
5905                 gpointer iter;
5906                 MonoClassField *f;
5907                 MonoClass *klass = mono_class_from_mono_type (t);
5908                 int vtype_index;
5909
5910                 if (boxed_vtype) {
5911                         /*
5912                          * Handle boxed vtypes recursively referencing themselves using fields.
5913                          */
5914                         if (!parent_vtypes)
5915                                 parent_vtypes = g_hash_table_new (NULL, NULL);
5916                         vtype_index = GPOINTER_TO_INT (g_hash_table_lookup (parent_vtypes, addr));
5917                         if (vtype_index) {
5918                                 if (CHECK_PROTOCOL_VERSION (2, 33)) {
5919                                         buffer_add_byte (buf, VALUE_TYPE_ID_PARENT_VTYPE);
5920                                         buffer_add_int (buf, vtype_index - 1);
5921                                 } else {
5922                                         /* The client can't handle PARENT_VTYPE */
5923                                         buffer_add_byte (buf, VALUE_TYPE_ID_NULL);
5924                                 }
5925                                 break;
5926                         } else {
5927                                 g_hash_table_insert (parent_vtypes, addr, GINT_TO_POINTER (g_hash_table_size (parent_vtypes) + 1));
5928                         }
5929                 }
5930
5931                 buffer_add_byte (buf, MONO_TYPE_VALUETYPE);
5932                 buffer_add_byte (buf, klass->enumtype);
5933                 buffer_add_typeid (buf, domain, klass);
5934
5935                 nfields = 0;
5936                 iter = NULL;
5937                 while ((f = mono_class_get_fields (klass, &iter))) {
5938                         if (f->type->attrs & FIELD_ATTRIBUTE_STATIC)
5939                                 continue;
5940                         if (mono_field_is_deleted (f))
5941                                 continue;
5942                         nfields ++;
5943                 }
5944                 buffer_add_int (buf, nfields);
5945
5946                 iter = NULL;
5947                 while ((f = mono_class_get_fields (klass, &iter))) {
5948                         if (f->type->attrs & FIELD_ATTRIBUTE_STATIC)
5949                                 continue;
5950                         if (mono_field_is_deleted (f))
5951                                 continue;
5952                         buffer_add_value_full (buf, f->type, (guint8*)addr + f->offset - sizeof (MonoObject), domain, FALSE, parent_vtypes);
5953                 }
5954
5955                 if (boxed_vtype) {
5956                         g_hash_table_remove (parent_vtypes, addr);
5957                         if (g_hash_table_size (parent_vtypes) == 0) {
5958                                 g_hash_table_destroy (parent_vtypes);
5959                                 parent_vtypes = NULL;
5960                         }
5961                 }
5962                 break;
5963         }
5964         case MONO_TYPE_GENERICINST:
5965                 if (mono_type_generic_inst_is_valuetype (t)) {
5966                         goto handle_vtype;
5967                 } else {
5968                         goto handle_ref;
5969                 }
5970                 break;
5971         default:
5972                 NOT_IMPLEMENTED;
5973         }
5974 }
5975
5976 static void
5977 buffer_add_value (Buffer *buf, MonoType *t, void *addr, MonoDomain *domain)
5978 {
5979         buffer_add_value_full (buf, t, addr, domain, FALSE, NULL);
5980 }
5981
5982 static gboolean
5983 obj_is_of_type (MonoObject *obj, MonoType *t)
5984 {
5985         MonoClass *klass = obj->vtable->klass;
5986         if (!mono_class_is_assignable_from (mono_class_from_mono_type (t), klass)) {
5987                 if (mono_class_is_transparent_proxy (klass)) {
5988                         klass = ((MonoTransparentProxy *)obj)->remote_class->proxy_class;
5989                         if (mono_class_is_assignable_from (mono_class_from_mono_type (t), klass)) {
5990                                 return TRUE;
5991                         }
5992                 }
5993                 return FALSE;
5994         }
5995         return TRUE;
5996 }
5997
5998 static ErrorCode
5999 decode_value (MonoType *t, MonoDomain *domain, guint8 *addr, guint8 *buf, guint8 **endbuf, guint8 *limit);
6000
6001 static ErrorCode
6002 decode_vtype (MonoType *t, MonoDomain *domain, guint8 *addr, guint8 *buf, guint8 **endbuf, guint8 *limit)
6003 {
6004         gboolean is_enum;
6005         MonoClass *klass;
6006         MonoClassField *f;
6007         int nfields;
6008         gpointer iter = NULL;
6009         MonoDomain *d;
6010         int err;
6011
6012         is_enum = decode_byte (buf, &buf, limit);
6013         /* Enums are sent as a normal vtype */
6014         if (is_enum)
6015                 return ERR_NOT_IMPLEMENTED;
6016         klass = decode_typeid (buf, &buf, limit, &d, &err);
6017         if (err)
6018                 return err;
6019
6020         if (t && klass != mono_class_from_mono_type (t)) {
6021                 char *name = mono_type_full_name (t);
6022                 char *name2 = mono_type_full_name (&klass->byval_arg);
6023                 DEBUG_PRINTF (1, "[%p] Expected value of type %s, got %s.\n", (gpointer)GetCurrentThreadId (), name, name2);
6024                 g_free (name);
6025                 g_free (name2);
6026                 return ERR_INVALID_ARGUMENT;
6027         }
6028
6029         nfields = decode_int (buf, &buf, limit);
6030         while ((f = mono_class_get_fields (klass, &iter))) {
6031                 if (f->type->attrs & FIELD_ATTRIBUTE_STATIC)
6032                         continue;
6033                 if (mono_field_is_deleted (f))
6034                         continue;
6035                 err = decode_value (f->type, domain, (guint8*)addr + f->offset - sizeof (MonoObject), buf, &buf, limit);
6036                 if (err)
6037                         return err;
6038                 nfields --;
6039         }
6040         g_assert (nfields == 0);
6041
6042         *endbuf = buf;
6043
6044         return 0;
6045 }
6046
6047 static ErrorCode
6048 decode_value_internal (MonoType *t, int type, MonoDomain *domain, guint8 *addr, guint8 *buf, guint8 **endbuf, guint8 *limit)
6049 {
6050         int err;
6051
6052         if (type != t->type && !MONO_TYPE_IS_REFERENCE (t) &&
6053                 !(t->type == MONO_TYPE_I && type == MONO_TYPE_VALUETYPE) &&
6054                 !(t->type == MONO_TYPE_U && type == MONO_TYPE_VALUETYPE) &&
6055                 !(t->type == MONO_TYPE_PTR && type == MONO_TYPE_I8) &&
6056                 !(t->type == MONO_TYPE_GENERICINST && type == MONO_TYPE_VALUETYPE)) {
6057                 char *name = mono_type_full_name (t);
6058                 DEBUG_PRINTF (1, "[%p] Expected value of type %s, got 0x%0x.\n", (gpointer)GetCurrentThreadId (), name, type);
6059                 g_free (name);
6060                 return ERR_INVALID_ARGUMENT;
6061         }
6062
6063         switch (t->type) {
6064         case MONO_TYPE_BOOLEAN:
6065                 *(guint8*)addr = decode_int (buf, &buf, limit);
6066                 break;
6067         case MONO_TYPE_CHAR:
6068                 *(gunichar2*)addr = decode_int (buf, &buf, limit);
6069                 break;
6070         case MONO_TYPE_I1:
6071                 *(gint8*)addr = decode_int (buf, &buf, limit);
6072                 break;
6073         case MONO_TYPE_U1:
6074                 *(guint8*)addr = decode_int (buf, &buf, limit);
6075                 break;
6076         case MONO_TYPE_I2:
6077                 *(gint16*)addr = decode_int (buf, &buf, limit);
6078                 break;
6079         case MONO_TYPE_U2:
6080                 *(guint16*)addr = decode_int (buf, &buf, limit);
6081                 break;
6082         case MONO_TYPE_I4:
6083                 *(gint32*)addr = decode_int (buf, &buf, limit);
6084                 break;
6085         case MONO_TYPE_U4:
6086                 *(guint32*)addr = decode_int (buf, &buf, limit);
6087                 break;
6088         case MONO_TYPE_I8:
6089                 *(gint64*)addr = decode_long (buf, &buf, limit);
6090                 break;
6091         case MONO_TYPE_U8:
6092                 *(guint64*)addr = decode_long (buf, &buf, limit);
6093                 break;
6094         case MONO_TYPE_R4:
6095                 *(guint32*)addr = decode_int (buf, &buf, limit);
6096                 break;
6097         case MONO_TYPE_R8:
6098                 *(guint64*)addr = decode_long (buf, &buf, limit);
6099                 break;
6100         case MONO_TYPE_PTR:
6101                 /* We send these as I8, so we get them back as such */
6102                 g_assert (type == MONO_TYPE_I8);
6103                 *(gssize*)addr = decode_long (buf, &buf, limit);
6104                 break;
6105         case MONO_TYPE_GENERICINST:
6106                 if (MONO_TYPE_ISSTRUCT (t)) {
6107                         /* The client sends these as a valuetype */
6108                         goto handle_vtype;
6109                 } else {
6110                         goto handle_ref;
6111                 }
6112                 break;
6113         case MONO_TYPE_I:
6114         case MONO_TYPE_U:
6115                 /* We send these as vtypes, so we get them back as such */
6116                 g_assert (type == MONO_TYPE_VALUETYPE);
6117                 /* Fall through */
6118                 handle_vtype:
6119         case MONO_TYPE_VALUETYPE:
6120                 err = decode_vtype (t, domain, addr,buf, &buf, limit);
6121                 if (err)
6122                         return err;
6123                 break;
6124         handle_ref:
6125         default:
6126                 if (MONO_TYPE_IS_REFERENCE (t)) {
6127                         if (type == MONO_TYPE_OBJECT) {
6128                                 int objid = decode_objid (buf, &buf, limit);
6129                                 int err;
6130                                 MonoObject *obj;
6131
6132                                 err = get_object (objid, (MonoObject**)&obj);
6133                                 if (err)
6134                                         return err;
6135
6136                                 if (obj) {
6137                                         if (!obj_is_of_type (obj, t)) {
6138                                                 DEBUG_PRINTF (1, "Expected type '%s', got '%s'\n", mono_type_full_name (t), obj->vtable->klass->name);
6139                                                 return ERR_INVALID_ARGUMENT;
6140                                         }
6141                                 }
6142                                 if (obj && obj->vtable->domain != domain)
6143                                         return ERR_INVALID_ARGUMENT;
6144
6145                                 mono_gc_wbarrier_generic_store (addr, obj);
6146                         } else if (type == VALUE_TYPE_ID_NULL) {
6147                                 *(MonoObject**)addr = NULL;
6148                         } else if (type == MONO_TYPE_VALUETYPE) {
6149                                 guint8 *buf2;
6150                                 gboolean is_enum;
6151                                 MonoClass *klass;
6152                                 MonoDomain *d;
6153                                 guint8 *vtype_buf;
6154                                 int vtype_buf_size;
6155
6156                                 /* This can happen when round-tripping boxed vtypes */
6157                                 /*
6158                                  * Obtain vtype class.
6159                                  * Same as the beginning of the handle_vtype case above.
6160                                  */
6161                                 buf2 = buf;
6162                                 is_enum = decode_byte (buf, &buf, limit);
6163                                 if (is_enum)
6164                                         return ERR_NOT_IMPLEMENTED;
6165                                 klass = decode_typeid (buf, &buf, limit, &d, &err);
6166                                 if (err)
6167                                         return err;
6168
6169                                 /* Decode the vtype into a temporary buffer, then box it. */
6170                                 vtype_buf_size = mono_class_value_size (klass, NULL);
6171                                 vtype_buf = g_malloc0 (vtype_buf_size);
6172                                 g_assert (vtype_buf);
6173
6174                                 buf = buf2;
6175                                 err = decode_vtype (NULL, domain, vtype_buf, buf, &buf, limit);
6176                                 if (err) {
6177                                         g_free (vtype_buf);
6178                                         return err;
6179                                 }
6180                                 *(MonoObject**)addr = mono_value_box (d, klass, vtype_buf);
6181                                 g_free (vtype_buf);
6182                         } else {
6183                                 char *name = mono_type_full_name (t);
6184                                 DEBUG_PRINTF (1, "[%p] Expected value of type %s, got 0x%0x.\n", (gpointer)GetCurrentThreadId (), name, type);
6185                                 g_free (name);
6186                                 return ERR_INVALID_ARGUMENT;
6187                         }
6188                 } else {
6189                         NOT_IMPLEMENTED;
6190                 }
6191                 break;
6192         }
6193
6194         *endbuf = buf;
6195
6196         return 0;
6197 }
6198
6199 static ErrorCode
6200 decode_value (MonoType *t, MonoDomain *domain, guint8 *addr, guint8 *buf, guint8 **endbuf, guint8 *limit)
6201 {
6202         int err;
6203         int type = decode_byte (buf, &buf, limit);
6204
6205         if (t->type == MONO_TYPE_GENERICINST && mono_class_is_nullable (mono_class_from_mono_type (t))) {
6206                 MonoType *targ = t->data.generic_class->context.class_inst->type_argv [0];
6207                 guint8 *nullable_buf;
6208
6209                 /*
6210                  * First try decoding it as a Nullable`1
6211                  */
6212                 err = decode_value_internal (t, type, domain, addr, buf, endbuf, limit);
6213                 if (!err)
6214                         return err;
6215
6216                 /*
6217                  * Then try decoding as a primitive value or null.
6218                  */
6219                 if (targ->type == type) {
6220                         nullable_buf = g_malloc (mono_class_instance_size (mono_class_from_mono_type (targ)));
6221                         err = decode_value_internal (targ, type, domain, nullable_buf, buf, endbuf, limit);
6222                         if (err) {
6223                                 g_free (nullable_buf);
6224                                 return err;
6225                         }
6226                         mono_nullable_init (addr, mono_value_box (domain, mono_class_from_mono_type (targ), nullable_buf), mono_class_from_mono_type (t));
6227                         g_free (nullable_buf);
6228                         *endbuf = buf;
6229                         return ERR_NONE;
6230                 } else if (type == VALUE_TYPE_ID_NULL) {
6231                         mono_nullable_init (addr, NULL, mono_class_from_mono_type (t));
6232                         *endbuf = buf;
6233                         return ERR_NONE;
6234                 }
6235         }
6236
6237         return decode_value_internal (t, type, domain, addr, buf, endbuf, limit);
6238 }
6239
6240 static void
6241 add_var (Buffer *buf, MonoDebugMethodJitInfo *jit, MonoType *t, MonoDebugVarInfo *var, MonoContext *ctx, MonoDomain *domain, gboolean as_vtype)
6242 {
6243         guint32 flags;
6244         int reg;
6245         guint8 *addr, *gaddr;
6246         mgreg_t reg_val;
6247
6248         flags = var->index & MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS;
6249         reg = var->index & ~MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS;
6250
6251         switch (flags) {
6252         case MONO_DEBUG_VAR_ADDRESS_MODE_REGISTER:
6253                 reg_val = mono_arch_context_get_int_reg (ctx, reg);
6254
6255                 buffer_add_value_full (buf, t, &reg_val, domain, as_vtype, NULL);
6256                 break;
6257         case MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET:
6258                 addr = (gpointer)mono_arch_context_get_int_reg (ctx, reg);
6259                 addr += (gint32)var->offset;
6260
6261                 //printf ("[R%d+%d] = %p\n", reg, var->offset, addr);
6262
6263                 buffer_add_value_full (buf, t, addr, domain, as_vtype, NULL);
6264                 break;
6265         case MONO_DEBUG_VAR_ADDRESS_MODE_DEAD:
6266                 NOT_IMPLEMENTED;
6267                 break;
6268         case MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET_INDIR:
6269         case MONO_DEBUG_VAR_ADDRESS_MODE_VTADDR:
6270                 /* Same as regoffset, but with an indirection */
6271                 addr = (gpointer)mono_arch_context_get_int_reg (ctx, reg);
6272                 addr += (gint32)var->offset;
6273
6274                 gaddr = *(gpointer*)addr;
6275                 g_assert (gaddr);
6276                 buffer_add_value_full (buf, t, gaddr, domain, as_vtype, NULL);
6277                 break;
6278         case MONO_DEBUG_VAR_ADDRESS_MODE_GSHAREDVT_LOCAL: {
6279                 MonoDebugVarInfo *info_var = jit->gsharedvt_info_var;
6280                 MonoDebugVarInfo *locals_var = jit->gsharedvt_locals_var;
6281                 MonoGSharedVtMethodRuntimeInfo *info;
6282                 guint8 *locals;
6283                 int idx;
6284
6285                 idx = reg;
6286
6287                 g_assert (info_var);
6288                 g_assert (locals_var);
6289
6290                 flags = info_var->index & MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS;
6291                 reg = info_var->index & ~MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS;
6292                 if (flags == MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET) {
6293                         addr = (gpointer)mono_arch_context_get_int_reg (ctx, reg);
6294                         addr += (gint32)info_var->offset;
6295                         info = *(gpointer*)addr;
6296                 } else if (flags == MONO_DEBUG_VAR_ADDRESS_MODE_REGISTER) {
6297                         info = (gpointer)mono_arch_context_get_int_reg (ctx, reg);
6298                 } else {
6299                         g_assert_not_reached ();
6300                 }
6301                 g_assert (info);
6302
6303                 flags = locals_var->index & MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS;
6304                 reg = locals_var->index & ~MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS;
6305                 if (flags == MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET) {
6306                         addr = (gpointer)mono_arch_context_get_int_reg (ctx, reg);
6307                         addr += (gint32)locals_var->offset;
6308                         locals = *(gpointer*)addr;
6309                 } else if (flags == MONO_DEBUG_VAR_ADDRESS_MODE_REGISTER) {
6310                         locals = (gpointer)mono_arch_context_get_int_reg (ctx, reg);
6311                 } else {
6312                         g_assert_not_reached ();
6313                 }
6314                 g_assert (locals);
6315
6316                 addr = locals + GPOINTER_TO_INT (info->entries [idx]);
6317
6318                 buffer_add_value_full (buf, t, addr, domain, as_vtype, NULL);
6319                 break;
6320         }
6321
6322         default:
6323                 g_assert_not_reached ();
6324         }
6325 }
6326
6327 static void
6328 set_var (MonoType *t, MonoDebugVarInfo *var, MonoContext *ctx, MonoDomain *domain, guint8 *val, mgreg_t **reg_locations, MonoContext *restore_ctx)
6329 {
6330         guint32 flags;
6331         int reg, size;
6332         guint8 *addr, *gaddr;
6333
6334         flags = var->index & MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS;
6335         reg = var->index & ~MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS;
6336
6337         if (MONO_TYPE_IS_REFERENCE (t))
6338                 size = sizeof (gpointer);
6339         else
6340                 size = mono_class_value_size (mono_class_from_mono_type (t), NULL);
6341
6342         switch (flags) {
6343         case MONO_DEBUG_VAR_ADDRESS_MODE_REGISTER: {
6344 #ifdef MONO_ARCH_HAVE_CONTEXT_SET_INT_REG
6345                 mgreg_t v;
6346                 gboolean is_signed = FALSE;
6347
6348                 if (t->byref) {
6349                         addr = (gpointer)mono_arch_context_get_int_reg (ctx, reg);
6350
6351                         if (addr) {
6352                                 // FIXME: Write barriers
6353                                 mono_gc_memmove_atomic (addr, val, size);
6354                         }
6355                         break;
6356                 }
6357
6358                 if (!t->byref && (t->type == MONO_TYPE_I1 || t->type == MONO_TYPE_I2 || t->type == MONO_TYPE_I4 || t->type == MONO_TYPE_I8))
6359                         is_signed = TRUE;
6360
6361                 switch (size) {
6362                 case 1:
6363                         v = is_signed ? *(gint8*)val : *(guint8*)val;
6364                         break;
6365                 case 2:
6366                         v = is_signed ? *(gint16*)val : *(guint16*)val;
6367                         break;
6368                 case 4:
6369                         v = is_signed ? *(gint32*)val : *(guint32*)val;
6370                         break;
6371                 case 8:
6372                         v = is_signed ? *(gint64*)val : *(guint64*)val;
6373                         break;
6374                 default:
6375                         g_assert_not_reached ();
6376                 }
6377
6378                 /* Set value on the stack or in the return ctx */
6379                 if (reg_locations [reg]) {
6380                         /* Saved on the stack */
6381                         DEBUG_PRINTF (1, "[dbg] Setting stack location %p for reg %x to %p.\n", reg_locations [reg], reg, (gpointer)v);
6382                         *(reg_locations [reg]) = v;
6383                 } else {
6384                         /* Not saved yet */
6385                         DEBUG_PRINTF (1, "[dbg] Setting context location for reg %x to %p.\n", reg, (gpointer)v);
6386                         mono_arch_context_set_int_reg (restore_ctx, reg, v);
6387                 }                       
6388
6389                 // FIXME: Move these to mono-context.h/c.
6390                 mono_arch_context_set_int_reg (ctx, reg, v);
6391 #else
6392                 // FIXME: Can't set registers, so we disable linears
6393                 NOT_IMPLEMENTED;
6394 #endif
6395                 break;
6396         }
6397         case MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET:
6398                 addr = (gpointer)mono_arch_context_get_int_reg (ctx, reg);
6399                 addr += (gint32)var->offset;
6400
6401                 //printf ("[R%d+%d] = %p\n", reg, var->offset, addr);
6402
6403                 if (t->byref) {
6404                         addr = *(guint8**)addr;
6405
6406                         if (!addr)
6407                                 break;
6408                 }
6409                         
6410                 // FIXME: Write barriers
6411                 mono_gc_memmove_atomic (addr, val, size);
6412                 break;
6413         case MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET_INDIR:
6414                 /* Same as regoffset, but with an indirection */
6415                 addr = (gpointer)mono_arch_context_get_int_reg (ctx, reg);
6416                 addr += (gint32)var->offset;
6417
6418                 gaddr = *(gpointer*)addr;
6419                 g_assert (gaddr);
6420                 // FIXME: Write barriers
6421                 mono_gc_memmove_atomic (gaddr, val, size);
6422                 break;
6423         case MONO_DEBUG_VAR_ADDRESS_MODE_DEAD:
6424                 NOT_IMPLEMENTED;
6425                 break;
6426         default:
6427                 g_assert_not_reached ();
6428         }
6429 }
6430
6431 static void
6432 clear_event_request (int req_id, int etype)
6433 {
6434         int i;
6435
6436         mono_loader_lock ();
6437         for (i = 0; i < event_requests->len; ++i) {
6438                 EventRequest *req = g_ptr_array_index (event_requests, i);
6439
6440                 if (req->id == req_id && req->event_kind == etype) {
6441                         if (req->event_kind == EVENT_KIND_BREAKPOINT)
6442                                 clear_breakpoint (req->info);
6443                         if (req->event_kind == EVENT_KIND_STEP)
6444                                 ss_destroy (req->info);
6445                         if (req->event_kind == EVENT_KIND_METHOD_ENTRY)
6446                                 clear_breakpoint (req->info);
6447                         if (req->event_kind == EVENT_KIND_METHOD_EXIT)
6448                                 clear_breakpoint (req->info);
6449                         g_ptr_array_remove_index_fast (event_requests, i);
6450                         g_free (req);
6451                         break;
6452                 }
6453         }
6454         mono_loader_unlock ();
6455 }
6456
6457 static void
6458 clear_assembly_from_modifier (EventRequest *req, Modifier *m, MonoAssembly *assembly)
6459 {
6460         int i;
6461
6462         if (m->kind == MOD_KIND_EXCEPTION_ONLY && m->data.exc_class && m->data.exc_class->image->assembly == assembly)
6463                 m->kind = MOD_KIND_NONE;
6464         if (m->kind == MOD_KIND_ASSEMBLY_ONLY && m->data.assemblies) {
6465                 int count = 0, match_count = 0, pos;
6466                 MonoAssembly **newassemblies;
6467
6468                 for (i = 0; m->data.assemblies [i]; ++i) {
6469                         count ++;
6470                         if (m->data.assemblies [i] == assembly)
6471                                 match_count ++;
6472                 }
6473
6474                 if (match_count) {
6475                         newassemblies = g_new0 (MonoAssembly*, count - match_count);
6476
6477                         pos = 0;
6478                         for (i = 0; i < count; ++i)
6479                                 if (m->data.assemblies [i] != assembly)
6480                                         newassemblies [pos ++] = m->data.assemblies [i];
6481                         g_assert (pos == count - match_count);
6482                         g_free (m->data.assemblies);
6483                         m->data.assemblies = newassemblies;
6484                 }
6485         }
6486 }
6487
6488 static void
6489 clear_assembly_from_modifiers (EventRequest *req, MonoAssembly *assembly)
6490 {
6491         int i;
6492
6493         for (i = 0; i < req->nmodifiers; ++i) {
6494                 Modifier *m = &req->modifiers [i];
6495
6496                 clear_assembly_from_modifier (req, m, assembly);
6497         }
6498 }
6499
6500 /*
6501  * clear_event_requests_for_assembly:
6502  *
6503  *   Clear all events requests which reference ASSEMBLY.
6504  */
6505 static void
6506 clear_event_requests_for_assembly (MonoAssembly *assembly)
6507 {
6508         int i;
6509         gboolean found;
6510
6511         mono_loader_lock ();
6512         found = TRUE;
6513         while (found) {
6514                 found = FALSE;
6515                 for (i = 0; i < event_requests->len; ++i) {
6516                         EventRequest *req = g_ptr_array_index (event_requests, i);
6517
6518                         clear_assembly_from_modifiers (req, assembly);
6519
6520                         if (req->event_kind == EVENT_KIND_BREAKPOINT && breakpoint_matches_assembly (req->info, assembly)) {
6521                                 clear_event_request (req->id, req->event_kind);
6522                                 found = TRUE;
6523                                 break;
6524                         }
6525
6526                         if (req->event_kind == EVENT_KIND_STEP)
6527                                 ss_clear_for_assembly (req->info, assembly);
6528                 }
6529         }
6530         mono_loader_unlock ();
6531 }
6532
6533 /*
6534  * type_comes_from_assembly:
6535  *
6536  *   GHRFunc that returns TRUE if klass comes from assembly
6537  */
6538 static gboolean
6539 type_comes_from_assembly (gpointer klass, gpointer also_klass, gpointer assembly)
6540 {
6541         return (mono_class_get_image ((MonoClass*)klass) == mono_assembly_get_image ((MonoAssembly*)assembly));
6542 }
6543
6544 /*
6545  * clear_types_for_assembly:
6546  *
6547  *   Clears types from loaded_classes for a given assembly
6548  */
6549 static void
6550 clear_types_for_assembly (MonoAssembly *assembly)
6551 {
6552         MonoDomain *domain = mono_domain_get ();
6553         AgentDomainInfo *info = NULL;
6554
6555         if (!domain || !domain_jit_info (domain))
6556                 /* Can happen during shutdown */
6557                 return;
6558
6559         mono_loader_lock ();
6560         info = get_agent_domain_info (domain);
6561         g_hash_table_foreach_remove (info->loaded_classes, type_comes_from_assembly, assembly);
6562         mono_loader_unlock ();
6563 }
6564
6565 static void
6566 add_thread (gpointer key, gpointer value, gpointer user_data)
6567 {
6568         MonoInternalThread *thread = value;
6569         Buffer *buf = user_data;
6570
6571         buffer_add_objid (buf, (MonoObject*)thread);
6572 }
6573
6574 static ErrorCode
6575 do_invoke_method (DebuggerTlsData *tls, Buffer *buf, InvokeData *invoke, guint8 *p, guint8 **endp)
6576 {
6577         guint8 *end = invoke->endp;
6578         MonoMethod *m;
6579         int i, err, nargs;
6580         MonoMethodSignature *sig;
6581         guint8 **arg_buf;
6582         void **args;
6583         MonoObject *this, *res, *exc;
6584         MonoDomain *domain;
6585         guint8 *this_buf;
6586 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
6587         MonoLMFExt ext;
6588 #endif
6589         MonoStopwatch watch;
6590
6591         if (invoke->method) {
6592                 /* 
6593                  * Invoke this method directly, currently only Environment.Exit () is supported.
6594                  */
6595                 this = NULL;
6596                 DEBUG_PRINTF (1, "[%p] Invoking method '%s' on receiver '%s'.\n", (gpointer)GetCurrentThreadId (), mono_method_full_name (invoke->method, TRUE), this ? this->vtable->klass->name : "<null>");
6597                 mono_runtime_invoke (invoke->method, NULL, invoke->args, &exc);
6598                 g_assert_not_reached ();
6599         }
6600
6601         m = decode_methodid (p, &p, end, &domain, &err);
6602         if (err)
6603                 return err;
6604         sig = mono_method_signature (m);
6605
6606         if (m->klass->valuetype)
6607                 this_buf = g_alloca (mono_class_instance_size (m->klass));
6608         else
6609                 this_buf = g_alloca (sizeof (MonoObject*));
6610         if (m->klass->valuetype && (m->flags & METHOD_ATTRIBUTE_STATIC)) {
6611                 /* Should be null */
6612                 int type = decode_byte (p, &p, end);
6613                 if (type != VALUE_TYPE_ID_NULL) {
6614                         DEBUG_PRINTF (1, "[%p] Error: Static vtype method invoked with this argument.\n", (gpointer)GetCurrentThreadId ());
6615                         return ERR_INVALID_ARGUMENT;
6616                 }
6617                 memset (this_buf, 0, mono_class_instance_size (m->klass));
6618         } else {
6619                 err = decode_value (&m->klass->byval_arg, domain, this_buf, p, &p, end);
6620                 if (err)
6621                         return err;
6622         }
6623
6624         if (!m->klass->valuetype)
6625                 this = *(MonoObject**)this_buf;
6626         else
6627                 this = NULL;
6628
6629         if (MONO_CLASS_IS_INTERFACE (m->klass)) {
6630                 if (!this) {
6631                         DEBUG_PRINTF (1, "[%p] Error: Interface method invoked without this argument.\n", (gpointer)GetCurrentThreadId ());
6632                         return ERR_INVALID_ARGUMENT;
6633                 }
6634                 m = mono_object_get_virtual_method (this, m);
6635         } else if ((m->flags & METHOD_ATTRIBUTE_VIRTUAL) && !m->klass->valuetype && invoke->flags & INVOKE_FLAG_VIRTUAL) {
6636                 if (!this) {
6637                         DEBUG_PRINTF (1, "[%p] Error: invoke with INVOKE_FLAG_VIRTUAL flag set without this argument.\n", (gpointer)GetCurrentThreadId ());
6638                         return ERR_INVALID_ARGUMENT;
6639                 }
6640                 m = mono_object_get_virtual_method (this, m);
6641         }
6642
6643         DEBUG_PRINTF (1, "[%p] Invoking method '%s' on receiver '%s'.\n", (gpointer)GetCurrentThreadId (), mono_method_full_name (m, TRUE), this ? this->vtable->klass->name : "<null>");
6644
6645         if (this && this->vtable->domain != domain)
6646                 NOT_IMPLEMENTED;
6647
6648         if (!m->klass->valuetype && !(m->flags & METHOD_ATTRIBUTE_STATIC) && !this) {
6649                 if (!strcmp (m->name, ".ctor")) {
6650                         if (m->klass->flags & TYPE_ATTRIBUTE_ABSTRACT)
6651                                 return ERR_INVALID_ARGUMENT;
6652                         else
6653                                 this = mono_object_new (domain, m->klass);
6654                 } else {
6655                         return ERR_INVALID_ARGUMENT;
6656                 }
6657         }
6658
6659         if (this && !obj_is_of_type (this, &m->klass->byval_arg))
6660                 return ERR_INVALID_ARGUMENT;
6661
6662         nargs = decode_int (p, &p, end);
6663         if (nargs != sig->param_count)
6664                 return ERR_INVALID_ARGUMENT;
6665         /* Use alloca to get gc tracking */
6666         arg_buf = g_alloca (nargs * sizeof (gpointer));
6667         memset (arg_buf, 0, nargs * sizeof (gpointer));
6668         args = g_alloca (nargs * sizeof (gpointer));
6669         for (i = 0; i < nargs; ++i) {
6670                 if (MONO_TYPE_IS_REFERENCE (sig->params [i])) {
6671                         err = decode_value (sig->params [i], domain, (guint8*)&args [i], p, &p, end);
6672                         if (err)
6673                                 break;
6674                         if (args [i] && ((MonoObject*)args [i])->vtable->domain != domain)
6675                                 NOT_IMPLEMENTED;
6676
6677                         if (sig->params [i]->byref) {
6678                                 arg_buf [i] = g_alloca (sizeof (mgreg_t));
6679                                 *(gpointer*)arg_buf [i] = args [i];
6680                                 args [i] = arg_buf [i];
6681                         }
6682                 } else {
6683                         arg_buf [i] = g_alloca (mono_class_instance_size (mono_class_from_mono_type (sig->params [i])));
6684                         err = decode_value (sig->params [i], domain, arg_buf [i], p, &p, end);
6685                         if (err)
6686                                 break;
6687                         args [i] = arg_buf [i];
6688                 }
6689         }
6690
6691         if (i < nargs)
6692                 return err;
6693
6694         if (invoke->flags & INVOKE_FLAG_DISABLE_BREAKPOINTS)
6695                 tls->disable_breakpoints = TRUE;
6696         else
6697                 tls->disable_breakpoints = FALSE;
6698
6699         /* 
6700          * Add an LMF frame to link the stack frames on the invoke method with our caller.
6701          */
6702 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
6703         if (invoke->has_ctx) {
6704                 MonoLMF **lmf_addr;
6705
6706                 lmf_addr = mono_get_lmf_addr ();
6707
6708                 /* Setup our lmf */
6709                 memset (&ext, 0, sizeof (ext));
6710                 mono_arch_init_lmf_ext (&ext, *lmf_addr);
6711
6712                 ext.debugger_invoke = TRUE;
6713                 memcpy (&ext.ctx, &invoke->ctx, sizeof (MonoContext));
6714
6715                 mono_set_lmf ((MonoLMF*)&ext);
6716         }
6717 #endif
6718
6719         mono_stopwatch_start (&watch);
6720         if (m->klass->valuetype)
6721                 res = mono_runtime_invoke (m, this_buf, args, &exc);
6722         else
6723                 res = mono_runtime_invoke (m, this, args, &exc);
6724         mono_stopwatch_stop (&watch);
6725         DEBUG_PRINTF (1, "[%p] Invoke result: %p, exc: %s, time: %ld ms.\n", (gpointer)GetCurrentThreadId (), res, exc ? exc->vtable->klass->name : NULL, (long)mono_stopwatch_elapsed_ms (&watch));
6726         if (exc) {
6727                 buffer_add_byte (buf, 0);
6728                 buffer_add_value (buf, &mono_defaults.object_class->byval_arg, &exc, domain);
6729         } else {
6730                 gboolean out_this = FALSE;
6731                 gboolean out_args = FALSE;
6732
6733                 if ((invoke->flags & INVOKE_FLAG_RETURN_OUT_THIS) && CHECK_PROTOCOL_VERSION (2, 35))
6734                         out_this = TRUE;
6735                 if ((invoke->flags & INVOKE_FLAG_RETURN_OUT_ARGS) && CHECK_PROTOCOL_VERSION (2, 35))
6736                         out_args = TRUE;
6737                 buffer_add_byte (buf, 1 + (out_this ? 2 : 0) + (out_args ? 4 : 0));
6738                 if (sig->ret->type == MONO_TYPE_VOID) {
6739                         if (!strcmp (m->name, ".ctor") && !m->klass->valuetype) {
6740                                 buffer_add_value (buf, &mono_defaults.object_class->byval_arg, &this, domain);
6741                         }
6742                         else
6743                                 buffer_add_value (buf, &mono_defaults.void_class->byval_arg, NULL, domain);
6744                 } else if (MONO_TYPE_IS_REFERENCE (sig->ret)) {
6745                         buffer_add_value (buf, sig->ret, &res, domain);
6746                 } else if (mono_class_from_mono_type (sig->ret)->valuetype || sig->ret->type == MONO_TYPE_PTR || sig->ret->type == MONO_TYPE_FNPTR) {
6747                         if (mono_class_is_nullable (mono_class_from_mono_type (sig->ret))) {
6748                                 MonoClass *k = mono_class_from_mono_type (sig->ret);
6749                                 guint8 *nullable_buf = g_alloca (mono_class_value_size (k, NULL));
6750
6751                                 g_assert (nullable_buf);
6752                                 mono_nullable_init (nullable_buf, res, k);
6753                                 buffer_add_value (buf, sig->ret, nullable_buf, domain);
6754                         } else {
6755                                 g_assert (res);
6756                                 buffer_add_value (buf, sig->ret, mono_object_unbox (res), domain);
6757                         }
6758                 } else {
6759                         NOT_IMPLEMENTED;
6760                 }
6761                 if (out_this)
6762                         /* Return the new value of the receiver after the call */
6763                         buffer_add_value (buf, &m->klass->byval_arg, this_buf, domain);
6764                 if (out_args) {
6765                         buffer_add_int (buf, nargs);
6766                         for (i = 0; i < nargs; ++i) {
6767                                 if (MONO_TYPE_IS_REFERENCE (sig->params [i]))
6768                                         buffer_add_value (buf, sig->params [i], &args [i], domain);
6769                                 else if (sig->params [i]->byref)
6770                                         /* add_value () does an indirection */
6771                                         buffer_add_value (buf, sig->params [i], &arg_buf [i], domain);
6772                                 else
6773                                         buffer_add_value (buf, sig->params [i], arg_buf [i], domain);
6774                         }
6775                 }
6776         }
6777
6778         tls->disable_breakpoints = FALSE;
6779
6780 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
6781         if (invoke->has_ctx)
6782                 mono_set_lmf ((gpointer)(((gssize)ext.lmf.previous_lmf) & ~3));
6783 #endif
6784
6785         *endp = p;
6786         // FIXME: byref arguments
6787         // FIXME: varargs
6788         return ERR_NONE;
6789 }
6790
6791 /*
6792  * invoke_method:
6793  *
6794  *   Invoke the method given by tls->pending_invoke in the current thread.
6795  */
6796 static void
6797 invoke_method (void)
6798 {
6799         DebuggerTlsData *tls;
6800         InvokeData *invoke;
6801         int id;
6802         int i, err, mindex;
6803         Buffer buf;
6804         MonoContext restore_ctx;
6805         guint8 *p;
6806
6807         tls = mono_native_tls_get_value (debugger_tls_id);
6808         g_assert (tls);
6809
6810         /*
6811          * Store the `InvokeData *' in `tls->invoke' until we're done with
6812          * the invocation, so CMD_VM_ABORT_INVOKE can check it.
6813          */
6814
6815         mono_loader_lock ();
6816
6817         invoke = tls->pending_invoke;
6818         g_assert (invoke);
6819         tls->pending_invoke = NULL;
6820
6821         invoke->last_invoke = tls->invoke;
6822         tls->invoke = invoke;
6823
6824         mono_loader_unlock ();
6825
6826         tls->frames_up_to_date = FALSE;
6827
6828         id = invoke->id;
6829
6830         p = invoke->p;
6831         err = 0;
6832         for (mindex = 0; mindex < invoke->nmethods; ++mindex) {
6833                 buffer_init (&buf, 128);
6834
6835                 if (err) {
6836                         /* Fail the other invokes as well */
6837                 } else {
6838                         err = do_invoke_method (tls, &buf, invoke, p, &p);
6839                 }
6840
6841                 /* Start suspending before sending the reply */
6842                 if (mindex == invoke->nmethods - 1) {
6843                         if (!(invoke->flags & INVOKE_FLAG_SINGLE_THREADED)) {
6844                                 for (i = 0; i < invoke->suspend_count; ++i)
6845                                         suspend_vm ();
6846                         }
6847                 }
6848
6849                 send_reply_packet (id, err, &buf);
6850         
6851                 buffer_free (&buf);
6852         }
6853
6854         memcpy (&restore_ctx, &invoke->ctx, sizeof (MonoContext));
6855
6856         if (invoke->has_ctx)
6857                 save_thread_context (&restore_ctx);
6858
6859         if (invoke->flags & INVOKE_FLAG_SINGLE_THREADED) {
6860                 g_assert (tls->resume_count);
6861                 tls->resume_count -= invoke->suspend_count;
6862         }
6863
6864         DEBUG_PRINTF (1, "[%p] Invoke finished (%d), resume_count = %d.\n", (gpointer)GetCurrentThreadId (), err, tls->resume_count);
6865
6866         /*
6867          * Take the loader lock to avoid race conditions with CMD_VM_ABORT_INVOKE:
6868          *
6869          * It is possible that ves_icall_System_Threading_Thread_Abort () was called
6870          * after the mono_runtime_invoke() already returned, but it doesn't matter
6871          * because we reset the abort here.
6872          */
6873
6874         mono_loader_lock ();
6875
6876         if (tls->abort_requested)
6877                 mono_thread_internal_reset_abort (tls->thread);
6878
6879         tls->invoke = tls->invoke->last_invoke;
6880         tls->abort_requested = FALSE;
6881
6882         mono_loader_unlock ();
6883
6884         g_free (invoke->p);
6885         g_free (invoke);
6886
6887         suspend_current ();
6888 }
6889
6890 static gboolean
6891 is_really_suspended (gpointer key, gpointer value, gpointer user_data)
6892 {
6893         MonoThread *thread = value;
6894         DebuggerTlsData *tls;
6895         gboolean res;
6896
6897         mono_loader_lock ();
6898         tls = mono_g_hash_table_lookup (thread_to_tls, thread);
6899         g_assert (tls);
6900         res = tls->really_suspended;
6901         mono_loader_unlock ();
6902
6903         return res;
6904 }
6905
6906 static GPtrArray*
6907 get_source_files_for_type (MonoClass *klass)
6908 {
6909         gpointer iter = NULL;
6910         MonoMethod *method;
6911         MonoDebugSourceInfo *sinfo;
6912         GPtrArray *files;
6913         int i, j;
6914
6915         files = g_ptr_array_new ();
6916
6917         while ((method = mono_class_get_methods (klass, &iter))) {
6918                 MonoDebugMethodInfo *minfo = mono_debug_lookup_method (method);
6919                 GPtrArray *source_file_list;
6920
6921                 if (minfo) {
6922                         mono_debug_symfile_get_line_numbers_full (minfo, NULL, &source_file_list, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
6923                         for (j = 0; j < source_file_list->len; ++j) {
6924                                 sinfo = g_ptr_array_index (source_file_list, j);
6925                                 for (i = 0; i < files->len; ++i)
6926                                         if (!strcmp (g_ptr_array_index (files, i), sinfo->source_file))
6927                                                 break;
6928                                 if (i == files->len)
6929                                         g_ptr_array_add (files, g_strdup (sinfo->source_file));
6930                         }
6931                         g_ptr_array_free (source_file_list, TRUE);
6932                 }
6933         }
6934
6935         return files;
6936 }
6937
6938 static ErrorCode
6939 vm_commands (int command, int id, guint8 *p, guint8 *end, Buffer *buf)
6940 {
6941         switch (command) {
6942         case CMD_VM_VERSION: {
6943                 char *build_info, *version;
6944
6945                 build_info = mono_get_runtime_build_info ();
6946                 version = g_strdup_printf ("mono %s", build_info);
6947
6948                 buffer_add_string (buf, version); /* vm version */
6949                 buffer_add_int (buf, MAJOR_VERSION);
6950                 buffer_add_int (buf, MINOR_VERSION);
6951                 g_free (build_info);
6952                 g_free (version);
6953                 break;
6954         }
6955         case CMD_VM_SET_PROTOCOL_VERSION: {
6956                 major_version = decode_int (p, &p, end);
6957                 minor_version = decode_int (p, &p, end);
6958                 protocol_version_set = TRUE;
6959                 DEBUG_PRINTF (1, "[dbg] Protocol version %d.%d, client protocol version %d.%d.\n", MAJOR_VERSION, MINOR_VERSION, major_version, minor_version);
6960                 break;
6961         }
6962         case CMD_VM_ALL_THREADS: {
6963                 // FIXME: Domains
6964                 mono_loader_lock ();
6965                 buffer_add_int (buf, mono_g_hash_table_size (tid_to_thread_obj));
6966                 mono_g_hash_table_foreach (tid_to_thread_obj, add_thread, buf);
6967                 mono_loader_unlock ();
6968                 break;
6969         }
6970         case CMD_VM_SUSPEND:
6971                 suspend_vm ();
6972                 wait_for_suspend ();
6973                 break;
6974         case CMD_VM_RESUME:
6975                 if (suspend_count == 0)
6976                         return ERR_NOT_SUSPENDED;
6977                 resume_vm ();
6978                 clear_suspended_objs ();
6979                 break;
6980         case CMD_VM_DISPOSE:
6981                 /* Clear all event requests */
6982                 mono_loader_lock ();
6983                 while (event_requests->len > 0) {
6984                         EventRequest *req = g_ptr_array_index (event_requests, 0);
6985
6986                         clear_event_request (req->id, req->event_kind);
6987                 }
6988                 mono_loader_unlock ();
6989
6990                 while (suspend_count > 0)
6991                         resume_vm ();
6992                 disconnected = TRUE;
6993                 vm_start_event_sent = FALSE;
6994                 break;
6995         case CMD_VM_EXIT: {
6996                 MonoInternalThread *thread;
6997                 DebuggerTlsData *tls;
6998 #ifdef TRY_MANAGED_SYSTEM_ENVIRONMENT_EXIT
6999                 MonoClass *env_class;
7000 #endif
7001                 MonoMethod *exit_method = NULL;
7002                 gpointer *args;
7003                 int exit_code;
7004
7005                 exit_code = decode_int (p, &p, end);
7006
7007                 // FIXME: What if there is a VM_DEATH event request with SUSPEND_ALL ?
7008
7009                 /* Have to send a reply before exiting */
7010                 send_reply_packet (id, 0, buf);
7011
7012                 /* Clear all event requests */
7013                 mono_loader_lock ();
7014                 while (event_requests->len > 0) {
7015                         EventRequest *req = g_ptr_array_index (event_requests, 0);
7016
7017                         clear_event_request (req->id, req->event_kind);
7018                 }
7019                 mono_loader_unlock ();
7020
7021                 /*
7022                  * The JDWP documentation says that the shutdown is not orderly. It doesn't
7023                  * specify whenever a VM_DEATH event is sent. We currently do an orderly
7024                  * shutdown by hijacking a thread to execute Environment.Exit (). This is
7025                  * better than doing the shutdown ourselves, since it avoids various races.
7026                  */
7027
7028                 suspend_vm ();
7029                 wait_for_suspend ();
7030
7031 #ifdef TRY_MANAGED_SYSTEM_ENVIRONMENT_EXIT
7032                 env_class = mono_class_from_name (mono_defaults.corlib, "System", "Environment");
7033                 if (env_class)
7034                         exit_method = mono_class_get_method_from_name (env_class, "Exit", 1);
7035 #endif
7036
7037                 mono_loader_lock ();
7038                 thread = mono_g_hash_table_find (tid_to_thread, is_really_suspended, NULL);
7039                 mono_loader_unlock ();
7040
7041                 if (thread && exit_method) {
7042                         mono_loader_lock ();
7043                         tls = mono_g_hash_table_lookup (thread_to_tls, thread);
7044                         mono_loader_unlock ();
7045
7046                         args = g_new0 (gpointer, 1);
7047                         args [0] = g_malloc (sizeof (int));
7048                         *(int*)(args [0]) = exit_code;
7049
7050                         tls->pending_invoke = g_new0 (InvokeData, 1);
7051                         tls->pending_invoke->method = exit_method;
7052                         tls->pending_invoke->args = args;
7053                         tls->pending_invoke->nmethods = 1;
7054
7055                         while (suspend_count > 0)
7056                                 resume_vm ();
7057                 } else {
7058                         /* 
7059                          * No thread found, do it ourselves.
7060                          * FIXME: This can race with normal shutdown etc.
7061                          */
7062                         while (suspend_count > 0)
7063                                 resume_vm ();
7064
7065                         if (!mono_runtime_try_shutdown ())
7066                                 break;
7067
7068                         mono_environment_exitcode_set (exit_code);
7069
7070                         /* Suspend all managed threads since the runtime is going away */
7071                         DEBUG_PRINTF (1, "Suspending all threads...\n");
7072                         mono_thread_suspend_all_other_threads ();
7073                         DEBUG_PRINTF (1, "Shutting down the runtime...\n");
7074                         mono_runtime_quit ();
7075                         transport_close2 ();
7076                         DEBUG_PRINTF (1, "Exiting...\n");
7077
7078                         exit (exit_code);
7079                 }
7080                 break;
7081         }               
7082         case CMD_VM_INVOKE_METHOD:
7083         case CMD_VM_INVOKE_METHODS: {
7084                 int objid = decode_objid (p, &p, end);
7085                 MonoThread *thread;
7086                 DebuggerTlsData *tls;
7087                 int i, count, err, flags, nmethods;
7088
7089                 err = get_object (objid, (MonoObject**)&thread);
7090                 if (err)
7091                         return err;
7092
7093                 flags = decode_int (p, &p, end);
7094
7095                 if (command == CMD_VM_INVOKE_METHODS)
7096                         nmethods = decode_int (p, &p, end);
7097                 else
7098                         nmethods = 1;
7099
7100                 // Wait for suspending if it already started
7101                 if (suspend_count)
7102                         wait_for_suspend ();
7103                 if (!is_suspended ())
7104                         return ERR_NOT_SUSPENDED;
7105
7106                 mono_loader_lock ();
7107                 tls = mono_g_hash_table_lookup (thread_to_tls, THREAD_TO_INTERNAL (thread));
7108                 mono_loader_unlock ();
7109                 g_assert (tls);
7110
7111                 if (!tls->really_suspended)
7112                         /* The thread is still running native code, can't do invokes */
7113                         return ERR_NOT_SUSPENDED;
7114
7115                 /* 
7116                  * Store the invoke data into tls, the thread will execute it after it is
7117                  * resumed.
7118                  */
7119                 if (tls->pending_invoke)
7120                         return ERR_NOT_SUSPENDED;
7121                 tls->pending_invoke = g_new0 (InvokeData, 1);
7122                 tls->pending_invoke->id = id;
7123                 tls->pending_invoke->flags = flags;
7124                 tls->pending_invoke->p = g_malloc (end - p);
7125                 memcpy (tls->pending_invoke->p, p, end - p);
7126                 tls->pending_invoke->endp = tls->pending_invoke->p + (end - p);
7127                 tls->pending_invoke->suspend_count = suspend_count;
7128                 tls->pending_invoke->nmethods = nmethods;
7129
7130                 if (flags & INVOKE_FLAG_SINGLE_THREADED) {
7131                         resume_thread (THREAD_TO_INTERNAL (thread));
7132                 }
7133                 else {
7134                         count = suspend_count;
7135                         for (i = 0; i < count; ++i)
7136                                 resume_vm ();
7137                 }
7138                 break;
7139         }
7140         case CMD_VM_ABORT_INVOKE: {
7141                 int objid = decode_objid (p, &p, end);
7142                 MonoThread *thread;
7143                 DebuggerTlsData *tls;
7144                 int invoke_id, err;
7145
7146                 err = get_object (objid, (MonoObject**)&thread);
7147                 if (err)
7148                         return err;
7149
7150                 invoke_id = decode_int (p, &p, end);
7151
7152                 mono_loader_lock ();
7153                 tls = mono_g_hash_table_lookup (thread_to_tls, THREAD_TO_INTERNAL (thread));
7154                 g_assert (tls);
7155
7156                 if (tls->abort_requested) {
7157                         mono_loader_unlock ();
7158                         break;
7159                 }
7160
7161                 /*
7162                  * Check whether we're still inside the mono_runtime_invoke() and that it's
7163                  * actually the correct invocation.
7164                  *
7165                  * Careful, we do not stop the thread that's doing the invocation, so we can't
7166                  * inspect its stack.  However, invoke_method() also acquires the loader lock
7167                  * when it's done, so we're safe here.
7168                  *
7169                  */
7170
7171                 if (!tls->invoke || (tls->invoke->id != invoke_id)) {
7172                         mono_loader_unlock ();
7173                         return ERR_NO_INVOCATION;
7174                 }
7175
7176                 tls->abort_requested = TRUE;
7177
7178                 ves_icall_System_Threading_Thread_Abort (THREAD_TO_INTERNAL (thread), NULL);
7179                 mono_loader_unlock ();
7180                 break;
7181         }
7182
7183         case CMD_VM_SET_KEEPALIVE: {
7184                 int timeout = decode_int (p, &p, end);
7185                 agent_config.keepalive = timeout;
7186                 // FIXME:
7187 #ifndef DISABLE_SOCKET_TRANSPORT
7188                 set_keepalive ();
7189 #else
7190                 NOT_IMPLEMENTED;
7191 #endif
7192                 break;
7193         }
7194         case CMD_VM_GET_TYPES_FOR_SOURCE_FILE: {
7195                 GHashTableIter iter, kiter;
7196                 MonoDomain *domain;
7197                 MonoClass *klass;
7198                 GPtrArray *files;
7199                 int i;
7200                 char *fname, *basename;
7201                 gboolean ignore_case;
7202                 GSList *class_list, *l;
7203                 GPtrArray *res_classes, *res_domains;
7204
7205                 fname = decode_string (p, &p, end);
7206                 ignore_case = decode_byte (p, &p, end);
7207
7208                 basename = dbg_path_get_basename (fname);
7209
7210                 res_classes = g_ptr_array_new ();
7211                 res_domains = g_ptr_array_new ();
7212
7213                 mono_loader_lock ();
7214                 g_hash_table_iter_init (&iter, domains);
7215                 while (g_hash_table_iter_next (&iter, NULL, (void**)&domain)) {
7216                         AgentDomainInfo *info = domain_jit_info (domain)->agent_info;
7217
7218                         /* Update 'source_file_to_class' cache */
7219                         g_hash_table_iter_init (&kiter, info->loaded_classes);
7220                         while (g_hash_table_iter_next (&kiter, NULL, (void**)&klass)) {
7221                                 if (!g_hash_table_lookup (info->source_files, klass)) {
7222                                         files = get_source_files_for_type (klass);
7223                                         g_hash_table_insert (info->source_files, klass, files);
7224
7225                                         for (i = 0; i < files->len; ++i) {
7226                                                 char *s = g_ptr_array_index (files, i);
7227                                                 char *s2 = dbg_path_get_basename (s);
7228                                                 char *s3;
7229
7230                                                 class_list = g_hash_table_lookup (info->source_file_to_class, s2);
7231                                                 if (!class_list) {
7232                                                         class_list = g_slist_prepend (class_list, klass);
7233                                                         g_hash_table_insert (info->source_file_to_class, g_strdup (s2), class_list);
7234                                                 } else {
7235                                                         class_list = g_slist_prepend (class_list, klass);
7236                                                         g_hash_table_insert (info->source_file_to_class, s2, class_list);
7237                                                 }
7238
7239                                                 /* The _ignorecase hash contains the lowercase path */
7240                                                 s3 = strdup_tolower (s2);
7241                                                 class_list = g_hash_table_lookup (info->source_file_to_class_ignorecase, s3);
7242                                                 if (!class_list) {
7243                                                         class_list = g_slist_prepend (class_list, klass);
7244                                                         g_hash_table_insert (info->source_file_to_class_ignorecase, g_strdup (s3), class_list);
7245                                                 } else {
7246                                                         class_list = g_slist_prepend (class_list, klass);
7247                                                         g_hash_table_insert (info->source_file_to_class_ignorecase, s3, class_list);
7248                                                 }
7249
7250                                                 g_free (s2);
7251                                                 g_free (s3);
7252                                         }
7253                                 }
7254                         }
7255
7256                         if (ignore_case) {
7257                                 char *s;
7258
7259                                 s = strdup_tolower (basename);
7260                                 class_list = g_hash_table_lookup (info->source_file_to_class_ignorecase, s);
7261                                 g_free (s);
7262                         } else {
7263                                 class_list = g_hash_table_lookup (info->source_file_to_class, basename);
7264                         }
7265
7266                         for (l = class_list; l; l = l->next) {
7267                                 klass = l->data;
7268
7269                                 g_ptr_array_add (res_classes, klass);
7270                                 g_ptr_array_add (res_domains, domain);
7271                         }
7272                 }
7273                 mono_loader_unlock ();
7274
7275                 g_free (fname);
7276                 g_free (basename);
7277
7278                 buffer_add_int (buf, res_classes->len);
7279                 for (i = 0; i < res_classes->len; ++i)
7280                         buffer_add_typeid (buf, g_ptr_array_index (res_domains, i), g_ptr_array_index (res_classes, i));
7281                 g_ptr_array_free (res_classes, TRUE);
7282                 g_ptr_array_free (res_domains, TRUE);
7283                 break;
7284         }
7285         case CMD_VM_GET_TYPES: {
7286                 GHashTableIter iter;
7287                 MonoDomain *domain;
7288                 int i;
7289                 char *name;
7290                 gboolean ignore_case;
7291                 GPtrArray *res_classes, *res_domains;
7292                 MonoTypeNameParse info;
7293
7294                 name = decode_string (p, &p, end);
7295                 ignore_case = decode_byte (p, &p, end);
7296
7297                 if (!mono_reflection_parse_type (name, &info)) {
7298                         g_free (name);
7299                         mono_reflection_free_type_info (&info);
7300                         return ERR_INVALID_ARGUMENT;
7301                 }
7302
7303                 res_classes = g_ptr_array_new ();
7304                 res_domains = g_ptr_array_new ();
7305
7306                 mono_loader_lock ();
7307                 g_hash_table_iter_init (&iter, domains);
7308                 while (g_hash_table_iter_next (&iter, NULL, (void**)&domain)) {
7309                         MonoAssembly *ass;
7310                         gboolean type_resolve;
7311                         MonoType *t;
7312                         GSList *tmp;
7313
7314                         mono_domain_assemblies_lock (domain);
7315                         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
7316                                 ass = tmp->data;
7317
7318                                 if (ass->image) {
7319                                         type_resolve = TRUE;
7320                                         t = mono_reflection_get_type (ass->image, &info, ignore_case, &type_resolve);
7321                                         if (t) {
7322                                                 g_ptr_array_add (res_classes, mono_type_get_class (t));
7323                                                 g_ptr_array_add (res_domains, domain);
7324                                         }
7325                                 }
7326                         }
7327                         mono_domain_assemblies_unlock (domain);
7328                 }
7329                 mono_loader_unlock ();
7330
7331                 g_free (name);
7332                 mono_reflection_free_type_info (&info);
7333
7334                 buffer_add_int (buf, res_classes->len);
7335                 for (i = 0; i < res_classes->len; ++i)
7336                         buffer_add_typeid (buf, g_ptr_array_index (res_domains, i), g_ptr_array_index (res_classes, i));
7337                 g_ptr_array_free (res_classes, TRUE);
7338                 g_ptr_array_free (res_domains, TRUE);
7339                 break;
7340         }
7341         case CMD_VM_START_BUFFERING:
7342         case CMD_VM_STOP_BUFFERING:
7343                 /* Handled in the main loop */
7344                 break;
7345         default:
7346                 return ERR_NOT_IMPLEMENTED;
7347         }
7348
7349         return ERR_NONE;
7350 }
7351
7352 static ErrorCode
7353 event_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
7354 {
7355         int err;
7356         MonoError error;
7357
7358         switch (command) {
7359         case CMD_EVENT_REQUEST_SET: {
7360                 EventRequest *req;
7361                 int i, event_kind, suspend_policy, nmodifiers, mod;
7362                 MonoMethod *method;
7363                 long location = 0;
7364                 MonoThread *step_thread;
7365                 int size = 0, depth = 0, filter = 0, step_thread_id = 0;
7366                 MonoDomain *domain;
7367                 Modifier *modifier;
7368
7369                 event_kind = decode_byte (p, &p, end);
7370                 suspend_policy = decode_byte (p, &p, end);
7371                 nmodifiers = decode_byte (p, &p, end);
7372
7373                 req = g_malloc0 (sizeof (EventRequest) + (nmodifiers * sizeof (Modifier)));
7374                 req->id = InterlockedIncrement (&event_request_id);
7375                 req->event_kind = event_kind;
7376                 req->suspend_policy = suspend_policy;
7377                 req->nmodifiers = nmodifiers;
7378
7379                 method = NULL;
7380                 for (i = 0; i < nmodifiers; ++i) {
7381                         mod = decode_byte (p, &p, end);
7382
7383                         req->modifiers [i].kind = mod;
7384                         if (mod == MOD_KIND_COUNT) {
7385                                 req->modifiers [i].data.count = decode_int (p, &p, end);
7386                         } else if (mod == MOD_KIND_LOCATION_ONLY) {
7387                                 method = decode_methodid (p, &p, end, &domain, &err);
7388                                 if (err)
7389                                         return err;
7390                                 location = decode_long (p, &p, end);
7391                         } else if (mod == MOD_KIND_STEP) {
7392                                 step_thread_id = decode_id (p, &p, end);
7393                                 size = decode_int (p, &p, end);
7394                                 depth = decode_int (p, &p, end);
7395                                 if (CHECK_PROTOCOL_VERSION (2, 16))
7396                                         filter = decode_int (p, &p, end);
7397                                 req->modifiers [i].data.filter = filter;
7398                                 if (!CHECK_PROTOCOL_VERSION (2, 26) && (req->modifiers [i].data.filter & STEP_FILTER_DEBUGGER_HIDDEN))
7399                                         /* Treat STEP_THOUGH the same as HIDDEN */
7400                                         req->modifiers [i].data.filter |= STEP_FILTER_DEBUGGER_STEP_THROUGH;
7401                         } else if (mod == MOD_KIND_THREAD_ONLY) {
7402                                 int id = decode_id (p, &p, end);
7403
7404                                 err = get_object (id, (MonoObject**)&req->modifiers [i].data.thread);
7405                                 if (err) {
7406                                         g_free (req);
7407                                         return err;
7408                                 }
7409                         } else if (mod == MOD_KIND_EXCEPTION_ONLY) {
7410                                 MonoClass *exc_class = decode_typeid (p, &p, end, &domain, &err);
7411
7412                                 if (err)
7413                                         return err;
7414                                 req->modifiers [i].caught = decode_byte (p, &p, end);
7415                                 req->modifiers [i].uncaught = decode_byte (p, &p, end);
7416                                 if (CHECK_PROTOCOL_VERSION (2, 25))
7417                                         req->modifiers [i].subclasses = decode_byte (p, &p, end);
7418                                 else
7419                                         req->modifiers [i].subclasses = TRUE;
7420                                 DEBUG_PRINTF (1, "[dbg] \tEXCEPTION_ONLY filter (%s%s%s%s).\n", exc_class ? exc_class->name : "all", req->modifiers [i].caught ? ", caught" : "", req->modifiers [i].uncaught ? ", uncaught" : "", req->modifiers [i].subclasses ? ", include-subclasses" : "");
7421                                 if (exc_class) {
7422                                         req->modifiers [i].data.exc_class = exc_class;
7423
7424                                         if (!mono_class_is_assignable_from (mono_defaults.exception_class, exc_class)) {
7425                                                 g_free (req);
7426                                                 return ERR_INVALID_ARGUMENT;
7427                                         }
7428                                 }
7429                         } else if (mod == MOD_KIND_ASSEMBLY_ONLY) {
7430                                 int n = decode_int (p, &p, end);
7431                                 int j;
7432
7433                                 req->modifiers [i].data.assemblies = g_new0 (MonoAssembly*, n);
7434                                 for (j = 0; j < n; ++j) {
7435                                         req->modifiers [i].data.assemblies [j] = decode_assemblyid (p, &p, end, &domain, &err);
7436                                         if (err) {
7437                                                 g_free (req->modifiers [i].data.assemblies);
7438                                                 return err;
7439                                         }
7440                                 }
7441                         } else if (mod == MOD_KIND_SOURCE_FILE_ONLY) {
7442                                 int n = decode_int (p, &p, end);
7443                                 int j;
7444
7445                                 modifier = &req->modifiers [i];
7446                                 modifier->data.source_files = g_hash_table_new (g_str_hash, g_str_equal);
7447                                 for (j = 0; j < n; ++j) {
7448                                         char *s = decode_string (p, &p, end);
7449                                         char *s2;
7450
7451                                         if (s) {
7452                                                 s2 = strdup_tolower (s);
7453                                                 g_hash_table_insert (modifier->data.source_files, s2, s2);
7454                                                 g_free (s);
7455                                         }
7456                                 }
7457                         } else if (mod == MOD_KIND_TYPE_NAME_ONLY) {
7458                                 int n = decode_int (p, &p, end);
7459                                 int j;
7460
7461                                 modifier = &req->modifiers [i];
7462                                 modifier->data.type_names = g_hash_table_new (g_str_hash, g_str_equal);
7463                                 for (j = 0; j < n; ++j) {
7464                                         char *s = decode_string (p, &p, end);
7465
7466                                         if (s)
7467                                                 g_hash_table_insert (modifier->data.type_names, s, s);
7468                                 }
7469                         } else {
7470                                 g_free (req);
7471                                 return ERR_NOT_IMPLEMENTED;
7472                         }
7473                 }
7474
7475                 if (req->event_kind == EVENT_KIND_BREAKPOINT) {
7476                         g_assert (method);
7477
7478                         req->info = set_breakpoint (method, location, req, &error);
7479                         if (!mono_error_ok (&error)) {
7480                                 g_free (req);
7481                                 DEBUG_PRINTF (1, "[dbg] Failed to set breakpoint: %s\n", mono_error_get_message (&error));
7482                                 mono_error_cleanup (&error);
7483                                 return ERR_NO_SEQ_POINT_AT_IL_OFFSET;
7484                         }
7485                 } else if (req->event_kind == EVENT_KIND_STEP) {
7486                         g_assert (step_thread_id);
7487
7488                         err = get_object (step_thread_id, (MonoObject**)&step_thread);
7489                         if (err) {
7490                                 g_free (req);
7491                                 return err;
7492                         }
7493
7494                         err = ss_create (THREAD_TO_INTERNAL (step_thread), size, depth, filter, req);
7495                         if (err) {
7496                                 g_free (req);
7497                                 return err;
7498                         }
7499                 } else if (req->event_kind == EVENT_KIND_METHOD_ENTRY) {
7500                         req->info = set_breakpoint (NULL, METHOD_ENTRY_IL_OFFSET, req, NULL);
7501                 } else if (req->event_kind == EVENT_KIND_METHOD_EXIT) {
7502                         req->info = set_breakpoint (NULL, METHOD_EXIT_IL_OFFSET, req, NULL);
7503                 } else if (req->event_kind == EVENT_KIND_EXCEPTION) {
7504                 } else if (req->event_kind == EVENT_KIND_TYPE_LOAD) {
7505                 } else {
7506                         if (req->nmodifiers) {
7507                                 g_free (req);
7508                                 return ERR_NOT_IMPLEMENTED;
7509                         }
7510                 }
7511
7512                 mono_loader_lock ();
7513                 g_ptr_array_add (event_requests, req);
7514                 
7515                 if (agent_config.defer) {
7516                         /* Transmit cached data to the client on receipt of the event request */
7517                         switch (req->event_kind) {
7518                         case EVENT_KIND_APPDOMAIN_CREATE:
7519                                 /* Emit load events for currently loaded domains */
7520                                 g_hash_table_foreach (domains, emit_appdomain_load, NULL);
7521                                 break;
7522                         case EVENT_KIND_ASSEMBLY_LOAD:
7523                                 /* Emit load events for currently loaded assemblies */
7524                                 mono_assembly_foreach (emit_assembly_load, NULL);
7525                                 break;
7526                         case EVENT_KIND_THREAD_START:
7527                                 /* Emit start events for currently started threads */
7528                                 mono_g_hash_table_foreach (tid_to_thread, emit_thread_start, NULL);
7529                                 break;
7530                         case EVENT_KIND_TYPE_LOAD:
7531                                 /* Emit type load events for currently loaded types */
7532                                 mono_domain_foreach (send_types_for_domain, NULL);
7533                                 break;
7534                         default:
7535                                 break;
7536                         }
7537                 }
7538                 mono_loader_unlock ();
7539
7540                 buffer_add_int (buf, req->id);
7541                 break;
7542         }
7543         case CMD_EVENT_REQUEST_CLEAR: {
7544                 int etype = decode_byte (p, &p, end);
7545                 int req_id = decode_int (p, &p, end);
7546
7547                 // FIXME: Make a faster mapping from req_id to request
7548                 mono_loader_lock ();
7549                 clear_event_request (req_id, etype);
7550                 mono_loader_unlock ();
7551                 break;
7552         }
7553         case CMD_EVENT_REQUEST_CLEAR_ALL_BREAKPOINTS: {
7554                 int i;
7555
7556                 mono_loader_lock ();
7557                 i = 0;
7558                 while (i < event_requests->len) {
7559                         EventRequest *req = g_ptr_array_index (event_requests, i);
7560
7561                         if (req->event_kind == EVENT_KIND_BREAKPOINT) {
7562                                 clear_breakpoint (req->info);
7563
7564                                 g_ptr_array_remove_index_fast (event_requests, i);
7565                                 g_free (req);
7566                         } else {
7567                                 i ++;
7568                         }
7569                 }
7570                 mono_loader_unlock ();
7571                 break;
7572         }
7573         default:
7574                 return ERR_NOT_IMPLEMENTED;
7575         }
7576
7577         return ERR_NONE;
7578 }
7579
7580 static ErrorCode
7581 domain_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
7582 {
7583         int err;
7584         MonoDomain *domain;
7585
7586         switch (command) {
7587         case CMD_APPDOMAIN_GET_ROOT_DOMAIN: {
7588                 buffer_add_domainid (buf, mono_get_root_domain ());
7589                 break;
7590         }
7591         case CMD_APPDOMAIN_GET_FRIENDLY_NAME: {
7592                 domain = decode_domainid (p, &p, end, NULL, &err);
7593                 if (err)
7594                         return err;
7595                 buffer_add_string (buf, domain->friendly_name);
7596                 break;
7597         }
7598         case CMD_APPDOMAIN_GET_ASSEMBLIES: {
7599                 GSList *tmp;
7600                 MonoAssembly *ass;
7601                 int count;
7602
7603                 domain = decode_domainid (p, &p, end, NULL, &err);
7604                 if (err)
7605                         return err;
7606                 mono_loader_lock ();
7607                 count = 0;
7608                 for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
7609                         count ++;
7610                 }
7611                 buffer_add_int (buf, count);
7612                 for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
7613                         ass = tmp->data;
7614                         buffer_add_assemblyid (buf, domain, ass);
7615                 }
7616                 mono_loader_unlock ();
7617                 break;
7618         }
7619         case CMD_APPDOMAIN_GET_ENTRY_ASSEMBLY: {
7620                 domain = decode_domainid (p, &p, end, NULL, &err);
7621                 if (err)
7622                         return err;
7623
7624                 buffer_add_assemblyid (buf, domain, domain->entry_assembly);
7625                 break;
7626         }
7627         case CMD_APPDOMAIN_GET_CORLIB: {
7628                 domain = decode_domainid (p, &p, end, NULL, &err);
7629                 if (err)
7630                         return err;
7631
7632                 buffer_add_assemblyid (buf, domain, domain->domain->mbr.obj.vtable->klass->image->assembly);
7633                 break;
7634         }
7635         case CMD_APPDOMAIN_CREATE_STRING: {
7636                 char *s;
7637                 MonoString *o;
7638
7639                 domain = decode_domainid (p, &p, end, NULL, &err);
7640                 if (err)
7641                         return err;
7642                 s = decode_string (p, &p, end);
7643
7644                 o = mono_string_new (domain, s);
7645                 buffer_add_objid (buf, (MonoObject*)o);
7646                 break;
7647         }
7648         case CMD_APPDOMAIN_CREATE_BOXED_VALUE: {
7649                 MonoClass *klass;
7650                 MonoDomain *domain2;
7651                 MonoObject *o;
7652
7653                 domain = decode_domainid (p, &p, end, NULL, &err);
7654                 if (err)
7655                         return err;
7656                 klass = decode_typeid (p, &p, end, &domain2, &err);
7657                 if (err)
7658                         return err;
7659
7660                 // FIXME:
7661                 g_assert (domain == domain2);
7662
7663                 o = mono_object_new (domain, klass);
7664
7665                 err = decode_value (&klass->byval_arg, domain, mono_object_unbox (o), p, &p, end);
7666                 if (err)
7667                         return err;
7668
7669                 buffer_add_objid (buf, o);
7670                 break;
7671         }
7672         default:
7673                 return ERR_NOT_IMPLEMENTED;
7674         }
7675
7676         return ERR_NONE;
7677 }
7678
7679 static ErrorCode
7680 assembly_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
7681 {
7682         int err;
7683         MonoAssembly *ass;
7684         MonoDomain *domain;
7685
7686         ass = decode_assemblyid (p, &p, end, &domain, &err);
7687         if (err)
7688                 return err;
7689
7690         switch (command) {
7691         case CMD_ASSEMBLY_GET_LOCATION: {
7692                 buffer_add_string (buf, mono_image_get_filename (ass->image));
7693                 break;                  
7694         }
7695         case CMD_ASSEMBLY_GET_ENTRY_POINT: {
7696                 guint32 token;
7697                 MonoMethod *m;
7698
7699                 if (ass->image->dynamic) {
7700                         buffer_add_id (buf, 0);
7701                 } else {
7702                         token = mono_image_get_entry_point (ass->image);
7703                         if (token == 0) {
7704                                 buffer_add_id (buf, 0);
7705                         } else {
7706                                 m = mono_get_method (ass->image, token, NULL);
7707                                 buffer_add_methodid (buf, domain, m);
7708                         }
7709                 }
7710                 break;                  
7711         }
7712         case CMD_ASSEMBLY_GET_MANIFEST_MODULE: {
7713                 buffer_add_moduleid (buf, domain, ass->image);
7714                 break;
7715         }
7716         case CMD_ASSEMBLY_GET_OBJECT: {
7717                 MonoObject *o = (MonoObject*)mono_assembly_get_object (domain, ass);
7718                 buffer_add_objid (buf, o);
7719                 break;
7720         }
7721         case CMD_ASSEMBLY_GET_TYPE: {
7722                 char *s = decode_string (p, &p, end);
7723                 gboolean ignorecase = decode_byte (p, &p, end);
7724                 MonoTypeNameParse info;
7725                 MonoType *t;
7726                 gboolean type_resolve, res;
7727                 MonoDomain *d = mono_domain_get ();
7728
7729                 /* This is needed to be able to find referenced assemblies */
7730                 res = mono_domain_set (domain, FALSE);
7731                 g_assert (res);
7732
7733                 if (!mono_reflection_parse_type (s, &info)) {
7734                         t = NULL;
7735                 } else {
7736                         if (info.assembly.name)
7737                                 NOT_IMPLEMENTED;
7738                         t = mono_reflection_get_type (ass->image, &info, ignorecase, &type_resolve);
7739                 }
7740                 buffer_add_typeid (buf, domain, t ? mono_class_from_mono_type (t) : NULL);
7741                 mono_reflection_free_type_info (&info);
7742                 g_free (s);
7743
7744                 mono_domain_set (d, TRUE);
7745
7746                 break;
7747         }
7748         case CMD_ASSEMBLY_GET_NAME: {
7749                 gchar *name;
7750                 MonoAssembly *mass = ass;
7751
7752                 name = g_strdup_printf (
7753                   "%s, Version=%d.%d.%d.%d, Culture=%s, PublicKeyToken=%s%s",
7754                   mass->aname.name,
7755                   mass->aname.major, mass->aname.minor, mass->aname.build, mass->aname.revision,
7756                   mass->aname.culture && *mass->aname.culture? mass->aname.culture: "neutral",
7757                   mass->aname.public_key_token [0] ? (char *)mass->aname.public_key_token : "null",
7758                   (mass->aname.flags & ASSEMBLYREF_RETARGETABLE_FLAG) ? ", Retargetable=Yes" : "");
7759
7760                 buffer_add_string (buf, name);
7761                 g_free (name);
7762                 break;
7763         }
7764         default:
7765                 return ERR_NOT_IMPLEMENTED;
7766         }
7767
7768         return ERR_NONE;
7769 }
7770
7771 static ErrorCode
7772 module_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
7773 {
7774         int err;
7775         MonoDomain *domain;
7776
7777         switch (command) {
7778         case CMD_MODULE_GET_INFO: {
7779                 MonoImage *image = decode_moduleid (p, &p, end, &domain, &err);
7780                 char *basename;
7781
7782                 basename = g_path_get_basename (image->name);
7783                 buffer_add_string (buf, basename); // name
7784                 buffer_add_string (buf, image->module_name); // scopename
7785                 buffer_add_string (buf, image->name); // fqname
7786                 buffer_add_string (buf, mono_image_get_guid (image)); // guid
7787                 buffer_add_assemblyid (buf, domain, image->assembly); // assembly
7788                 g_free (basename);
7789                 break;                  
7790         }
7791         default:
7792                 return ERR_NOT_IMPLEMENTED;
7793         }
7794
7795         return ERR_NONE;
7796 }
7797
7798 static ErrorCode
7799 field_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
7800 {
7801         int err;
7802         MonoDomain *domain;
7803
7804         switch (command) {
7805         case CMD_FIELD_GET_INFO: {
7806                 MonoClassField *f = decode_fieldid (p, &p, end, &domain, &err);
7807
7808                 buffer_add_string (buf, f->name);
7809                 buffer_add_typeid (buf, domain, f->parent);
7810                 buffer_add_typeid (buf, domain, mono_class_from_mono_type (f->type));
7811                 buffer_add_int (buf, f->type->attrs);
7812                 break;
7813         }
7814         default:
7815                 return ERR_NOT_IMPLEMENTED;
7816         }
7817
7818         return ERR_NONE;
7819 }
7820
7821 static void
7822 buffer_add_cattr_arg (Buffer *buf, MonoType *t, MonoDomain *domain, MonoObject *val)
7823 {
7824         if (val && val->vtable->klass == mono_defaults.monotype_class) {
7825                 /* Special case these so the client doesn't have to handle Type objects */
7826                 
7827                 buffer_add_byte (buf, VALUE_TYPE_ID_TYPE);
7828                 buffer_add_typeid (buf, domain, mono_class_from_mono_type (((MonoReflectionType*)val)->type));
7829         } else if (MONO_TYPE_IS_REFERENCE (t))
7830                 buffer_add_value (buf, t, &val, domain);
7831         else
7832                 buffer_add_value (buf, t, mono_object_unbox (val), domain);
7833 }
7834
7835 static int
7836 buffer_add_cattrs (Buffer *buf, MonoDomain *domain, MonoImage *image, MonoClass *attr_klass, MonoCustomAttrInfo *cinfo)
7837 {
7838         int i, j;
7839         int nattrs = 0;
7840
7841         if (!cinfo) {
7842                 buffer_add_int (buf, 0);
7843                 return ERR_NONE;
7844         }
7845
7846         for (i = 0; i < cinfo->num_attrs; ++i) {
7847                 if (!attr_klass || mono_class_has_parent (cinfo->attrs [i].ctor->klass, attr_klass))
7848                         nattrs ++;
7849         }
7850         buffer_add_int (buf, nattrs);
7851
7852         for (i = 0; i < cinfo->num_attrs; ++i) {
7853                 MonoCustomAttrEntry *attr = &cinfo->attrs [i];
7854                 if (!attr_klass || mono_class_has_parent (attr->ctor->klass, attr_klass)) {
7855                         MonoArray *typed_args, *named_args;
7856                         MonoType *t;
7857                         CattrNamedArg *arginfo = NULL;
7858                         MonoError error;
7859
7860                         mono_reflection_create_custom_attr_data_args (image, attr->ctor, attr->data, attr->data_size, &typed_args, &named_args, &arginfo, &error);
7861                         if (!mono_error_ok (&error)) {
7862                                 DEBUG_PRINTF (2, "[dbg] mono_reflection_create_custom_attr_data_args () failed with: '%s'\n", mono_error_get_message (&error));
7863                                 mono_error_cleanup (&error);
7864                                 return ERR_LOADER_ERROR;
7865                         }
7866
7867                         buffer_add_methodid (buf, domain, attr->ctor);
7868
7869                         /* Ctor args */
7870                         if (typed_args) {
7871                                 buffer_add_int (buf, mono_array_length (typed_args));
7872                                 for (j = 0; j < mono_array_length (typed_args); ++j) {
7873                                         MonoObject *val = mono_array_get (typed_args, MonoObject*, j);
7874
7875                                         t = mono_method_signature (attr->ctor)->params [j];
7876
7877                                         buffer_add_cattr_arg (buf, t, domain, val);
7878                                 }
7879                         } else {
7880                                 buffer_add_int (buf, 0);
7881                         }
7882
7883                         /* Named args */
7884                         if (named_args) {
7885                                 buffer_add_int (buf, mono_array_length (named_args));
7886
7887                                 for (j = 0; j < mono_array_length (named_args); ++j) {
7888                                         MonoObject *val = mono_array_get (named_args, MonoObject*, j);
7889
7890                                         if (arginfo [j].prop) {
7891                                                 buffer_add_byte (buf, 0x54);
7892                                                 buffer_add_propertyid (buf, domain, arginfo [j].prop);
7893                                         } else if (arginfo [j].field) {
7894                                                 buffer_add_byte (buf, 0x53);
7895                                                 buffer_add_fieldid (buf, domain, arginfo [j].field);
7896                                         } else {
7897                                                 g_assert_not_reached ();
7898                                         }
7899
7900                                         buffer_add_cattr_arg (buf, arginfo [j].type, domain, val);
7901                                 }
7902                         } else {
7903                                 buffer_add_int (buf, 0);
7904                         }
7905                         g_free (arginfo);
7906                 }
7907         }
7908
7909         return ERR_NONE;
7910 }
7911
7912 /* FIXME: Code duplication with icall.c */
7913 static void
7914 collect_interfaces (MonoClass *klass, GHashTable *ifaces, MonoError *error)
7915 {
7916         int i;
7917         MonoClass *ic;
7918
7919         mono_class_setup_interfaces (klass, error);
7920         if (!mono_error_ok (error))
7921                 return;
7922
7923         for (i = 0; i < klass->interface_count; i++) {
7924                 ic = klass->interfaces [i];
7925                 g_hash_table_insert (ifaces, ic, ic);
7926
7927                 collect_interfaces (ic, ifaces, error);
7928                 if (!mono_error_ok (error))
7929                         return;
7930         }
7931 }
7932
7933 static ErrorCode
7934 type_commands_internal (int command, MonoClass *klass, MonoDomain *domain, guint8 *p, guint8 *end, Buffer *buf)
7935 {
7936         MonoClass *nested;
7937         MonoType *type;
7938         gpointer iter;
7939         guint8 b;
7940         int err, nnested;
7941         char *name;
7942
7943         switch (command) {
7944         case CMD_TYPE_GET_INFO: {
7945                 buffer_add_string (buf, klass->name_space);
7946                 buffer_add_string (buf, klass->name);
7947                 // FIXME: byref
7948                 name = mono_type_get_name_full (&klass->byval_arg, MONO_TYPE_NAME_FORMAT_FULL_NAME);
7949                 buffer_add_string (buf, name);
7950                 g_free (name);
7951                 buffer_add_assemblyid (buf, domain, klass->image->assembly);
7952                 buffer_add_moduleid (buf, domain, klass->image);
7953                 buffer_add_typeid (buf, domain, klass->parent);
7954                 if (klass->rank || klass->byval_arg.type == MONO_TYPE_PTR)
7955                         buffer_add_typeid (buf, domain, klass->element_class);
7956                 else
7957                         buffer_add_id (buf, 0);
7958                 buffer_add_int (buf, klass->type_token);
7959                 buffer_add_byte (buf, klass->rank);
7960                 buffer_add_int (buf, klass->flags);
7961                 b = 0;
7962                 type = &klass->byval_arg;
7963                 // FIXME: Can't decide whenever a class represents a byref type
7964                 if (FALSE)
7965                         b |= (1 << 0);
7966                 if (type->type == MONO_TYPE_PTR)
7967                         b |= (1 << 1);
7968                 if (!type->byref && (((type->type >= MONO_TYPE_BOOLEAN) && (type->type <= MONO_TYPE_R8)) || (type->type == MONO_TYPE_I) || (type->type == MONO_TYPE_U)))
7969                         b |= (1 << 2);
7970                 if (type->type == MONO_TYPE_VALUETYPE)
7971                         b |= (1 << 3);
7972                 if (klass->enumtype)
7973                         b |= (1 << 4);
7974                 if (klass->generic_container)
7975                         b |= (1 << 5);
7976                 if (klass->generic_container || klass->generic_class)
7977                         b |= (1 << 6);
7978                 buffer_add_byte (buf, b);
7979                 nnested = 0;
7980                 iter = NULL;
7981                 while ((nested = mono_class_get_nested_types (klass, &iter)))
7982                         nnested ++;
7983                 buffer_add_int (buf, nnested);
7984                 iter = NULL;
7985                 while ((nested = mono_class_get_nested_types (klass, &iter)))
7986                         buffer_add_typeid (buf, domain, nested);
7987                 if (CHECK_PROTOCOL_VERSION (2, 12)) {
7988                         if (klass->generic_container)
7989                                 buffer_add_typeid (buf, domain, klass);
7990                         else if (klass->generic_class)
7991                                 buffer_add_typeid (buf, domain, klass->generic_class->container_class);
7992                         else
7993                                 buffer_add_id (buf, 0);
7994                 }
7995                 if (CHECK_PROTOCOL_VERSION (2, 15)) {
7996                         int count, i;
7997
7998                         if (klass->generic_class) {
7999                                 MonoGenericInst *inst = klass->generic_class->context.class_inst;
8000
8001                                 count = inst->type_argc;
8002                                 buffer_add_int (buf, count);
8003                                 for (i = 0; i < count; i++)
8004                                         buffer_add_typeid (buf, domain, mono_class_from_mono_type (inst->type_argv [i]));
8005                         } else if (klass->generic_container) {
8006                                 MonoGenericContainer *container = klass->generic_container;
8007                                 MonoClass *pklass;
8008
8009                                 count = container->type_argc;
8010                                 buffer_add_int (buf, count);
8011                                 for (i = 0; i < count; i++) {
8012                                         pklass = mono_class_from_generic_parameter (mono_generic_container_get_param (container, i), klass->image, FALSE);
8013                                         buffer_add_typeid (buf, domain, pklass);
8014                                 }
8015                         } else {
8016                                 buffer_add_int (buf, 0);
8017                         }
8018                 }
8019                 break;
8020         }
8021         case CMD_TYPE_GET_METHODS: {
8022                 int nmethods;
8023                 int i = 0;
8024                 gpointer iter = NULL;
8025                 MonoMethod *m;
8026
8027                 mono_class_setup_methods (klass);
8028
8029                 nmethods = mono_class_num_methods (klass);
8030
8031                 buffer_add_int (buf, nmethods);
8032
8033                 while ((m = mono_class_get_methods (klass, &iter))) {
8034                         buffer_add_methodid (buf, domain, m);
8035                         i ++;
8036                 }
8037                 g_assert (i == nmethods);
8038                 break;
8039         }
8040         case CMD_TYPE_GET_FIELDS: {
8041                 int nfields;
8042                 int i = 0;
8043                 gpointer iter = NULL;
8044                 MonoClassField *f;
8045
8046                 nfields = mono_class_num_fields (klass);
8047
8048                 buffer_add_int (buf, nfields);
8049
8050                 while ((f = mono_class_get_fields (klass, &iter))) {
8051                         buffer_add_fieldid (buf, domain, f);
8052                         buffer_add_string (buf, f->name);
8053                         buffer_add_typeid (buf, domain, mono_class_from_mono_type (f->type));
8054                         buffer_add_int (buf, f->type->attrs);
8055                         i ++;
8056                 }
8057                 g_assert (i == nfields);
8058                 break;
8059         }
8060         case CMD_TYPE_GET_PROPERTIES: {
8061                 int nprops;
8062                 int i = 0;
8063                 gpointer iter = NULL;
8064                 MonoProperty *p;
8065
8066                 nprops = mono_class_num_properties (klass);
8067
8068                 buffer_add_int (buf, nprops);
8069
8070                 while ((p = mono_class_get_properties (klass, &iter))) {
8071                         buffer_add_propertyid (buf, domain, p);
8072                         buffer_add_string (buf, p->name);
8073                         buffer_add_methodid (buf, domain, p->get);
8074                         buffer_add_methodid (buf, domain, p->set);
8075                         buffer_add_int (buf, p->attrs);
8076                         i ++;
8077                 }
8078                 g_assert (i == nprops);
8079                 break;
8080         }
8081         case CMD_TYPE_GET_CATTRS: {
8082                 MonoClass *attr_klass;
8083                 MonoCustomAttrInfo *cinfo;
8084
8085                 attr_klass = decode_typeid (p, &p, end, NULL, &err);
8086                 /* attr_klass can be NULL */
8087                 if (err)
8088                         return err;
8089
8090                 cinfo = mono_custom_attrs_from_class (klass);
8091
8092                 err = buffer_add_cattrs (buf, domain, klass->image, attr_klass, cinfo);
8093                 if (err)
8094                         return err;
8095                 break;
8096         }
8097         case CMD_TYPE_GET_FIELD_CATTRS: {
8098                 MonoClass *attr_klass;
8099                 MonoCustomAttrInfo *cinfo;
8100                 MonoClassField *field;
8101
8102                 field = decode_fieldid (p, &p, end, NULL, &err);
8103                 if (err)
8104                         return err;
8105                 attr_klass = decode_typeid (p, &p, end, NULL, &err);
8106                 if (err)
8107                         return err;
8108
8109                 cinfo = mono_custom_attrs_from_field (klass, field);
8110
8111                 err = buffer_add_cattrs (buf, domain, klass->image, attr_klass, cinfo);
8112                 if (err)
8113                         return err;
8114                 break;
8115         }
8116         case CMD_TYPE_GET_PROPERTY_CATTRS: {
8117                 MonoClass *attr_klass;
8118                 MonoCustomAttrInfo *cinfo;
8119                 MonoProperty *prop;
8120
8121                 prop = decode_propertyid (p, &p, end, NULL, &err);
8122                 if (err)
8123                         return err;
8124                 attr_klass = decode_typeid (p, &p, end, NULL, &err);
8125                 if (err)
8126                         return err;
8127
8128                 cinfo = mono_custom_attrs_from_property (klass, prop);
8129
8130                 err = buffer_add_cattrs (buf, domain, klass->image, attr_klass, cinfo);
8131                 if (err)
8132                         return err;
8133                 break;
8134         }
8135         case CMD_TYPE_GET_VALUES:
8136         case CMD_TYPE_GET_VALUES_2: {
8137                 guint8 *val;
8138                 MonoClassField *f;
8139                 MonoVTable *vtable;
8140                 MonoClass *k;
8141                 int len, i;
8142                 gboolean found;
8143                 MonoThread *thread_obj;
8144                 MonoInternalThread *thread = NULL;
8145                 guint32 special_static_type;
8146
8147                 if (command == CMD_TYPE_GET_VALUES_2) {
8148                         int objid = decode_objid (p, &p, end);
8149                         int err;
8150
8151                         err = get_object (objid, (MonoObject**)&thread_obj);
8152                         if (err)
8153                                 return err;
8154
8155                         thread = THREAD_TO_INTERNAL (thread_obj);
8156                 }
8157
8158                 len = decode_int (p, &p, end);
8159                 for (i = 0; i < len; ++i) {
8160                         f = decode_fieldid (p, &p, end, NULL, &err);
8161                         if (err)
8162                                 return err;
8163
8164                         if (!(f->type->attrs & FIELD_ATTRIBUTE_STATIC))
8165                                 return ERR_INVALID_FIELDID;
8166                         special_static_type = mono_class_field_get_special_static_type (f);
8167                         if (special_static_type != SPECIAL_STATIC_NONE) {
8168                                 if (!(thread && special_static_type == SPECIAL_STATIC_THREAD))
8169                                         return ERR_INVALID_FIELDID;
8170                         }
8171
8172                         /* Check that the field belongs to the object */
8173                         found = FALSE;
8174                         for (k = klass; k; k = k->parent) {
8175                                 if (k == f->parent) {
8176                                         found = TRUE;
8177                                         break;
8178                                 }
8179                         }
8180                         if (!found)
8181                                 return ERR_INVALID_FIELDID;
8182
8183                         vtable = mono_class_vtable (domain, f->parent);
8184                         val = g_malloc (mono_class_instance_size (mono_class_from_mono_type (f->type)));
8185                         mono_field_static_get_value_for_thread (thread ? thread : mono_thread_internal_current (), vtable, f, val);
8186                         buffer_add_value (buf, f->type, val, domain);
8187                         g_free (val);
8188                 }
8189                 break;
8190         }
8191         case CMD_TYPE_SET_VALUES: {
8192                 guint8 *val;
8193                 MonoClassField *f;
8194                 MonoVTable *vtable;
8195                 MonoClass *k;
8196                 int len, i;
8197                 gboolean found;
8198
8199                 len = decode_int (p, &p, end);
8200                 for (i = 0; i < len; ++i) {
8201                         f = decode_fieldid (p, &p, end, NULL, &err);
8202                         if (err)
8203                                 return err;
8204
8205                         if (!(f->type->attrs & FIELD_ATTRIBUTE_STATIC))
8206                                 return ERR_INVALID_FIELDID;
8207                         if (mono_class_field_is_special_static (f))
8208                                 return ERR_INVALID_FIELDID;
8209
8210                         /* Check that the field belongs to the object */
8211                         found = FALSE;
8212                         for (k = klass; k; k = k->parent) {
8213                                 if (k == f->parent) {
8214                                         found = TRUE;
8215                                         break;
8216                                 }
8217                         }
8218                         if (!found)
8219                                 return ERR_INVALID_FIELDID;
8220
8221                         // FIXME: Check for literal/const
8222
8223                         vtable = mono_class_vtable (domain, f->parent);
8224                         val = g_malloc (mono_class_instance_size (mono_class_from_mono_type (f->type)));
8225                         err = decode_value (f->type, domain, val, p, &p, end);
8226                         if (err) {
8227                                 g_free (val);
8228                                 return err;
8229                         }
8230                         if (MONO_TYPE_IS_REFERENCE (f->type))
8231                                 mono_field_static_set_value (vtable, f, *(gpointer*)val);
8232                         else
8233                                 mono_field_static_set_value (vtable, f, val);
8234                         g_free (val);
8235                 }
8236                 break;
8237         }
8238         case CMD_TYPE_GET_OBJECT: {
8239                 MonoObject *o = (MonoObject*)mono_type_get_object (domain, &klass->byval_arg);
8240                 buffer_add_objid (buf, o);
8241                 break;
8242         }
8243         case CMD_TYPE_GET_SOURCE_FILES:
8244         case CMD_TYPE_GET_SOURCE_FILES_2: {
8245                 char *source_file, *base;
8246                 GPtrArray *files;
8247                 int i;
8248
8249                 files = get_source_files_for_type (klass);
8250
8251                 buffer_add_int (buf, files->len);
8252                 for (i = 0; i < files->len; ++i) {
8253                         source_file = g_ptr_array_index (files, i);
8254                         if (command == CMD_TYPE_GET_SOURCE_FILES_2) {
8255                                 buffer_add_string (buf, source_file);
8256                         } else {
8257                                 base = dbg_path_get_basename (source_file);
8258                                 buffer_add_string (buf, base);
8259                                 g_free (base);
8260                         }
8261                         g_free (source_file);
8262                 }
8263                 g_ptr_array_free (files, TRUE);
8264                 break;
8265         }
8266         case CMD_TYPE_IS_ASSIGNABLE_FROM: {
8267                 MonoClass *oklass = decode_typeid (p, &p, end, NULL, &err);
8268
8269                 if (err)
8270                         return err;
8271                 if (mono_class_is_assignable_from (klass, oklass))
8272                         buffer_add_byte (buf, 1);
8273                 else
8274                         buffer_add_byte (buf, 0);
8275                 break;
8276         }
8277         case CMD_TYPE_GET_METHODS_BY_NAME_FLAGS: {
8278                 char *name = decode_string (p, &p, end);
8279                 int i, flags = decode_int (p, &p, end);
8280                 MonoException *ex = NULL;
8281                 GPtrArray *array = mono_class_get_methods_by_name (klass, name, flags & ~BINDING_FLAGS_IGNORE_CASE, (flags & BINDING_FLAGS_IGNORE_CASE) != 0, TRUE, &ex);
8282
8283                 if (!array)
8284                         return ERR_LOADER_ERROR;
8285                 buffer_add_int (buf, array->len);
8286                 for (i = 0; i < array->len; ++i) {
8287                         MonoMethod *method = g_ptr_array_index (array, i);
8288                         buffer_add_methodid (buf, domain, method);
8289                 }
8290
8291                 g_ptr_array_free (array, TRUE);
8292                 g_free (name);
8293                 break;
8294         }
8295         case CMD_TYPE_GET_INTERFACES: {
8296                 MonoClass *parent;
8297                 GHashTable *iface_hash = g_hash_table_new (NULL, NULL);
8298                 MonoError error;
8299                 MonoClass *tclass, *iface;
8300                 GHashTableIter iter;
8301
8302                 tclass = klass;
8303
8304                 for (parent = tclass; parent; parent = parent->parent) {
8305                         mono_class_setup_interfaces (parent, &error);
8306                         if (!mono_error_ok (&error))
8307                                 return ERR_LOADER_ERROR;
8308                         collect_interfaces (parent, iface_hash, &error);
8309                         if (!mono_error_ok (&error))
8310                                 return ERR_LOADER_ERROR;
8311                 }
8312
8313                 buffer_add_int (buf, g_hash_table_size (iface_hash));
8314
8315                 g_hash_table_iter_init (&iter, iface_hash);
8316                 while (g_hash_table_iter_next (&iter, NULL, (void**)&iface))
8317                         buffer_add_typeid (buf, domain, iface);
8318                 g_hash_table_destroy (iface_hash);
8319                 break;
8320         }
8321         case CMD_TYPE_GET_INTERFACE_MAP: {
8322                 int tindex, ioffset;
8323                 gboolean variance_used;
8324                 MonoClass *iclass;
8325                 int len, nmethods, i;
8326                 gpointer iter;
8327                 MonoMethod *method;
8328
8329                 len = decode_int (p, &p, end);
8330                 mono_class_setup_vtable (klass);
8331
8332                 for (tindex = 0; tindex < len; ++tindex) {
8333                         iclass = decode_typeid (p, &p, end, NULL, &err);
8334                         if (err)
8335                                 return err;
8336
8337                         ioffset = mono_class_interface_offset_with_variance (klass, iclass, &variance_used);
8338                         if (ioffset == -1)
8339                                 return ERR_INVALID_ARGUMENT;
8340
8341                         nmethods = mono_class_num_methods (iclass);
8342                         buffer_add_int (buf, nmethods);
8343
8344                         iter = NULL;
8345                         while ((method = mono_class_get_methods (iclass, &iter))) {
8346                                 buffer_add_methodid (buf, domain, method);
8347                         }
8348                         for (i = 0; i < nmethods; ++i)
8349                                 buffer_add_methodid (buf, domain, klass->vtable [i + ioffset]);
8350                 }
8351                 break;
8352         }
8353         case CMD_TYPE_IS_INITIALIZED: {
8354                 MonoVTable *vtable = mono_class_vtable (domain, klass);
8355
8356                 if (vtable)
8357                         buffer_add_int (buf, (vtable->initialized || vtable->init_failed) ? 1 : 0);
8358                 else
8359                         buffer_add_int (buf, 0);
8360                 break;
8361         }
8362         case CMD_TYPE_CREATE_INSTANCE: {
8363                 MonoObject *obj;
8364
8365                 obj = mono_object_new (domain, klass);
8366                 buffer_add_objid (buf, obj);
8367                 break;
8368         }
8369         default:
8370                 return ERR_NOT_IMPLEMENTED;
8371         }
8372
8373         return ERR_NONE;
8374 }
8375
8376 static ErrorCode
8377 type_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
8378 {
8379         MonoClass *klass;
8380         MonoDomain *old_domain;
8381         MonoDomain *domain;
8382         int err;
8383
8384         klass = decode_typeid (p, &p, end, &domain, &err);
8385         if (err)
8386                 return err;
8387
8388         old_domain = mono_domain_get ();
8389
8390         mono_domain_set (domain, TRUE);
8391
8392         err = type_commands_internal (command, klass, domain, p, end, buf);
8393
8394         mono_domain_set (old_domain, TRUE);
8395
8396         return err;
8397 }
8398
8399 static ErrorCode
8400 method_commands_internal (int command, MonoMethod *method, MonoDomain *domain, guint8 *p, guint8 *end, Buffer *buf)
8401 {
8402         MonoMethodHeader *header;
8403         int err;
8404
8405         switch (command) {
8406         case CMD_METHOD_GET_NAME: {
8407                 buffer_add_string (buf, method->name);
8408                 break;                  
8409         }
8410         case CMD_METHOD_GET_DECLARING_TYPE: {
8411                 buffer_add_typeid (buf, domain, method->klass);
8412                 break;
8413         }
8414         case CMD_METHOD_GET_DEBUG_INFO: {
8415                 MonoDebugMethodInfo *minfo;
8416                 char *source_file;
8417                 int i, j, n_il_offsets;
8418                 int *il_offsets;
8419                 int *line_numbers;
8420                 int *column_numbers;
8421                 int *end_line_numbers;
8422                 int *end_column_numbers;
8423                 int *source_files;
8424                 GPtrArray *source_file_list;
8425
8426                 header = mono_method_get_header (method);
8427                 if (!header) {
8428                         buffer_add_int (buf, 0);
8429                         buffer_add_string (buf, "");
8430                         buffer_add_int (buf, 0);
8431                         break;
8432                 }
8433
8434                 minfo = mono_debug_lookup_method (method);
8435                 if (!minfo) {
8436                         buffer_add_int (buf, header->code_size);
8437                         buffer_add_string (buf, "");
8438                         buffer_add_int (buf, 0);
8439                         mono_metadata_free_mh (header);
8440                         break;
8441                 }
8442
8443                 mono_debug_symfile_get_line_numbers_full (minfo, &source_file, &source_file_list, &n_il_offsets, &il_offsets, &line_numbers, &column_numbers, &source_files, &end_line_numbers, &end_column_numbers);
8444                 buffer_add_int (buf, header->code_size);
8445                 if (CHECK_PROTOCOL_VERSION (2, 13)) {
8446                         buffer_add_int (buf, source_file_list->len);
8447                         for (i = 0; i < source_file_list->len; ++i) {
8448                                 MonoDebugSourceInfo *sinfo = g_ptr_array_index (source_file_list, i);
8449                                 buffer_add_string (buf, sinfo->source_file);
8450                                 if (CHECK_PROTOCOL_VERSION (2, 14)) {
8451                                         for (j = 0; j < 16; ++j)
8452                                                 buffer_add_byte (buf, sinfo->hash [j]);
8453                                 }
8454                         }
8455                 } else {
8456                         buffer_add_string (buf, source_file);
8457                 }
8458                 buffer_add_int (buf, n_il_offsets);
8459                 DEBUG_PRINTF (10, "Line number table for method %s:\n", mono_method_full_name (method,  TRUE));
8460                 for (i = 0; i < n_il_offsets; ++i) {
8461                         const char *srcfile = "";
8462
8463                         if (source_files [i] != -1) {
8464                                 MonoDebugSourceInfo *sinfo = g_ptr_array_index (source_file_list, source_files [i]);
8465                                 srcfile = sinfo->source_file;
8466                         }
8467                         DEBUG_PRINTF (10, "IL%x -> %s:%d %d %d %d\n", il_offsets [i], srcfile, line_numbers [i], column_numbers ? column_numbers [i] : -1, end_line_numbers ? end_line_numbers [i] : -1, end_column_numbers ? end_column_numbers [i] : -1);
8468                         buffer_add_int (buf, il_offsets [i]);
8469                         buffer_add_int (buf, line_numbers [i]);
8470                         if (CHECK_PROTOCOL_VERSION (2, 13))
8471                                 buffer_add_int (buf, source_files [i]);
8472                         if (CHECK_PROTOCOL_VERSION (2, 19))
8473                                 buffer_add_int (buf, column_numbers ? column_numbers [i] : -1);
8474                         if (CHECK_PROTOCOL_VERSION (2, 32)) {
8475                                 buffer_add_int (buf, end_line_numbers ? end_line_numbers [i] : -1);
8476                                 buffer_add_int (buf, end_column_numbers ? end_column_numbers [i] : -1);
8477                         }
8478                 }
8479                 g_free (source_file);
8480                 g_free (il_offsets);
8481                 g_free (line_numbers);
8482                 g_free (column_numbers);
8483                 g_free (end_line_numbers);
8484                 g_free (end_column_numbers);
8485                 g_free (source_files);
8486                 g_ptr_array_free (source_file_list, TRUE);
8487                 mono_metadata_free_mh (header);
8488                 break;
8489         }
8490         case CMD_METHOD_GET_PARAM_INFO: {
8491                 MonoMethodSignature *sig = mono_method_signature (method);
8492                 guint32 i;
8493                 char **names;
8494
8495                 /* FIXME: mono_class_from_mono_type () and byrefs */
8496
8497                 /* FIXME: Use a smaller encoding */
8498                 buffer_add_int (buf, sig->call_convention);
8499                 buffer_add_int (buf, sig->param_count);
8500                 buffer_add_int (buf, sig->generic_param_count);
8501                 buffer_add_typeid (buf, domain, mono_class_from_mono_type (sig->ret));
8502                 for (i = 0; i < sig->param_count; ++i) {
8503                         /* FIXME: vararg */
8504                         buffer_add_typeid (buf, domain, mono_class_from_mono_type (sig->params [i]));
8505                 }
8506
8507                 /* Emit parameter names */
8508                 names = g_new (char *, sig->param_count);
8509                 mono_method_get_param_names (method, (const char **) names);
8510                 for (i = 0; i < sig->param_count; ++i)
8511                         buffer_add_string (buf, names [i]);
8512                 g_free (names);
8513
8514                 break;
8515         }
8516         case CMD_METHOD_GET_LOCALS_INFO: {
8517                 int i, j, num_locals;
8518                 MonoDebugLocalsInfo *locals;
8519
8520                 header = mono_method_get_header (method);
8521                 if (!header)
8522                         return ERR_INVALID_ARGUMENT;
8523
8524                 buffer_add_int (buf, header->num_locals);
8525
8526                 /* Types */
8527                 for (i = 0; i < header->num_locals; ++i)
8528                         buffer_add_typeid (buf, domain, mono_class_from_mono_type (header->locals [i]));
8529
8530                 /* Names */
8531                 locals = mono_debug_lookup_locals (method);
8532                 if (locals)
8533                         num_locals = locals->num_locals;
8534                 else
8535                         num_locals = 0;
8536                 for (i = 0; i < header->num_locals; ++i) {
8537                         for (j = 0; j < num_locals; ++j)
8538                                 if (locals->locals [j].index == i)
8539                                         break;
8540                         if (j < num_locals)
8541                                 buffer_add_string (buf, locals->locals [j].name);
8542                         else
8543                                 buffer_add_string (buf, "");
8544                 }
8545
8546                 /* Scopes */
8547                 for (i = 0; i < header->num_locals; ++i) {
8548                         for (j = 0; j < num_locals; ++j)
8549                                 if (locals->locals [j].index == i)
8550                                         break;
8551                         if (j < num_locals && locals->locals [j].block) {
8552                                 buffer_add_int (buf, locals->locals [j].block->start_offset);
8553                                 buffer_add_int (buf, locals->locals [j].block->end_offset);
8554                         } else {
8555                                 buffer_add_int (buf, 0);
8556                                 buffer_add_int (buf, header->code_size);
8557                         }
8558                 }
8559                 mono_metadata_free_mh (header);
8560
8561                 if (locals)
8562                         mono_debug_symfile_free_locals (locals);
8563
8564                 break;
8565         }
8566         case CMD_METHOD_GET_INFO:
8567                 buffer_add_int (buf, method->flags);
8568                 buffer_add_int (buf, method->iflags);
8569                 buffer_add_int (buf, method->token);
8570                 if (CHECK_PROTOCOL_VERSION (2, 12)) {
8571                         guint8 attrs = 0;
8572                         if (method->is_generic)
8573                                 attrs |= (1 << 0);
8574                         if (mono_method_signature (method)->generic_param_count)
8575                                 attrs |= (1 << 1);
8576                         buffer_add_byte (buf, attrs);
8577                         if (method->is_generic || method->is_inflated) {
8578                                 MonoMethod *result;
8579
8580                                 if (method->is_generic) {
8581                                         result = method;
8582                                 } else {
8583                                         MonoMethodInflated *imethod = (MonoMethodInflated *)method;
8584                                         
8585                                         result = imethod->declaring;
8586                                         if (imethod->context.class_inst) {
8587                                                 MonoClass *klass = ((MonoMethod *) imethod)->klass;
8588                                                 /*Generic methods gets the context of the GTD.*/
8589                                                 if (mono_class_get_context (klass)) {
8590                                                         MonoError error;
8591                                                         result = mono_class_inflate_generic_method_full_checked (result, klass, mono_class_get_context (klass), &error);
8592                                                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
8593                                                 }
8594                                         }
8595                                 }
8596
8597                                 buffer_add_methodid (buf, domain, result);
8598                         } else {
8599                                 buffer_add_id (buf, 0);
8600                         }
8601                         if (CHECK_PROTOCOL_VERSION (2, 15)) {
8602                                 if (mono_method_signature (method)->generic_param_count) {
8603                                         int count, i;
8604
8605                                         if (method->is_inflated) {
8606                                                 MonoGenericInst *inst = mono_method_get_context (method)->method_inst;
8607                                                 if (inst) {
8608                                                         count = inst->type_argc;
8609                                                         buffer_add_int (buf, count);
8610
8611                                                         for (i = 0; i < count; i++)
8612                                                                 buffer_add_typeid (buf, domain, mono_class_from_mono_type (inst->type_argv [i]));
8613                                                 } else {
8614                                                         buffer_add_int (buf, 0);
8615                                                 }
8616                                         } else if (method->is_generic) {
8617                                                 MonoGenericContainer *container = mono_method_get_generic_container (method);
8618
8619                                                 count = mono_method_signature (method)->generic_param_count;
8620                                                 buffer_add_int (buf, count);
8621                                                 for (i = 0; i < count; i++) {
8622                                                         MonoGenericParam *param = mono_generic_container_get_param (container, i);
8623                                                         MonoClass *pklass = mono_class_from_generic_parameter (param, method->klass->image, TRUE);
8624                                                         buffer_add_typeid (buf, domain, pklass);
8625                                                 }
8626                                         } else {
8627                                                 buffer_add_int (buf, 0);
8628                                         }
8629                                 } else {
8630                                         buffer_add_int (buf, 0);
8631                                 }
8632                         }
8633                 }
8634                 break;
8635         case CMD_METHOD_GET_BODY: {
8636                 int i;
8637
8638                 header = mono_method_get_header (method);
8639                 if (!header) {
8640                         buffer_add_int (buf, 0);
8641
8642                         if (CHECK_PROTOCOL_VERSION (2, 18))
8643                                 buffer_add_int (buf, 0);
8644                 } else {
8645                         buffer_add_int (buf, header->code_size);
8646                         for (i = 0; i < header->code_size; ++i)
8647                                 buffer_add_byte (buf, header->code [i]);
8648
8649                         if (CHECK_PROTOCOL_VERSION (2, 18)) {
8650                                 buffer_add_int (buf, header->num_clauses);
8651                                 for (i = 0; i < header->num_clauses; ++i) {
8652                                         MonoExceptionClause *clause = &header->clauses [i];
8653
8654                                         buffer_add_int (buf, clause->flags);
8655                                         buffer_add_int (buf, clause->try_offset);
8656                                         buffer_add_int (buf, clause->try_len);
8657                                         buffer_add_int (buf, clause->handler_offset);
8658                                         buffer_add_int (buf, clause->handler_len);
8659                                         if (clause->flags == MONO_EXCEPTION_CLAUSE_NONE)
8660                                                 buffer_add_typeid (buf, domain, clause->data.catch_class);
8661                                         else if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER)
8662                                                 buffer_add_int (buf, clause->data.filter_offset);
8663                                 }
8664                         }
8665
8666                         mono_metadata_free_mh (header);
8667                 }
8668
8669                 break;
8670         }
8671         case CMD_METHOD_RESOLVE_TOKEN: {
8672                 guint32 token = decode_int (p, &p, end);
8673
8674                 // FIXME: Generics
8675                 switch (mono_metadata_token_code (token)) {
8676                 case MONO_TOKEN_STRING: {
8677                         MonoString *s;
8678                         char *s2;
8679
8680                         s = mono_ldstr (domain, method->klass->image, mono_metadata_token_index (token));
8681                         g_assert (s);
8682
8683                         s2 = mono_string_to_utf8 (s);
8684
8685                         buffer_add_byte (buf, TOKEN_TYPE_STRING);
8686                         buffer_add_string (buf, s2);
8687                         g_free (s2);
8688                         break;
8689                 }
8690                 default: {
8691                         gpointer val;
8692                         MonoClass *handle_class;
8693
8694                         if (method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD) {
8695                                 val = mono_method_get_wrapper_data (method, token);
8696                                 handle_class = mono_method_get_wrapper_data (method, token + 1);
8697
8698                                 if (handle_class == NULL) {
8699                                         // Can't figure out the token type
8700                                         buffer_add_byte (buf, TOKEN_TYPE_UNKNOWN);
8701                                         break;
8702                                 }
8703                         } else {
8704                                 MonoError error;
8705                                 val = mono_ldtoken_checked (method->klass->image, token, &handle_class, NULL, &error);
8706                                 if (!val)
8707                                         g_error ("Could not load token due to %s", mono_error_get_message (&error));
8708                         }
8709
8710                         if (handle_class == mono_defaults.typehandle_class) {
8711                                 buffer_add_byte (buf, TOKEN_TYPE_TYPE);
8712                                 if (method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD)
8713                                         buffer_add_typeid (buf, domain, (MonoClass *) val);
8714                                 else
8715                                         buffer_add_typeid (buf, domain, mono_class_from_mono_type ((MonoType*)val));
8716                         } else if (handle_class == mono_defaults.fieldhandle_class) {
8717                                 buffer_add_byte (buf, TOKEN_TYPE_FIELD);
8718                                 buffer_add_fieldid (buf, domain, val);
8719                         } else if (handle_class == mono_defaults.methodhandle_class) {
8720                                 buffer_add_byte (buf, TOKEN_TYPE_METHOD);
8721                                 buffer_add_methodid (buf, domain, val);
8722                         } else if (handle_class == mono_defaults.string_class) {
8723                                 char *s;
8724
8725                                 s = mono_string_to_utf8 (val);
8726                                 buffer_add_byte (buf, TOKEN_TYPE_STRING);
8727                                 buffer_add_string (buf, s);
8728                                 g_free (s);
8729                         } else {
8730                                 g_assert_not_reached ();
8731                         }
8732                         break;
8733                 }
8734                 }
8735                 break;
8736         }
8737         case CMD_METHOD_GET_CATTRS: {
8738                 MonoClass *attr_klass;
8739                 MonoCustomAttrInfo *cinfo;
8740
8741                 attr_klass = decode_typeid (p, &p, end, NULL, &err);
8742                 /* attr_klass can be NULL */
8743                 if (err)
8744                         return err;
8745
8746                 cinfo = mono_custom_attrs_from_method (method);
8747
8748                 err = buffer_add_cattrs (buf, domain, method->klass->image, attr_klass, cinfo);
8749                 if (err)
8750                         return err;
8751                 break;
8752         }
8753         case CMD_METHOD_MAKE_GENERIC_METHOD: {
8754                 MonoError error;
8755                 MonoType **type_argv;
8756                 int i, type_argc;
8757                 MonoDomain *d;
8758                 MonoClass *klass;
8759                 MonoGenericInst *ginst;
8760                 MonoGenericContext tmp_context;
8761                 MonoMethod *inflated;
8762
8763                 type_argc = decode_int (p, &p, end);
8764                 type_argv = g_new0 (MonoType*, type_argc);
8765                 for (i = 0; i < type_argc; ++i) {
8766                         klass = decode_typeid (p, &p, end, &d, &err);
8767                         if (err) {
8768                                 g_free (type_argv);
8769                                 return err;
8770                         }
8771                         if (domain != d) {
8772                                 g_free (type_argv);
8773                                 return ERR_INVALID_ARGUMENT;
8774                         }
8775                         type_argv [i] = &klass->byval_arg;
8776                 }
8777                 ginst = mono_metadata_get_generic_inst (type_argc, type_argv);
8778                 g_free (type_argv);
8779                 tmp_context.class_inst = method->klass->generic_class ? method->klass->generic_class->context.class_inst : NULL;
8780                 tmp_context.method_inst = ginst;
8781
8782                 inflated = mono_class_inflate_generic_method_checked (method, &tmp_context, &error);
8783                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
8784                 if (!mono_verifier_is_method_valid_generic_instantiation (inflated))
8785                         return ERR_INVALID_ARGUMENT;
8786                 buffer_add_methodid (buf, domain, inflated);
8787                 break;
8788         }
8789         default:
8790                 return ERR_NOT_IMPLEMENTED;
8791         }
8792
8793         return ERR_NONE;
8794 }
8795
8796 static ErrorCode
8797 method_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
8798 {
8799         int err;
8800         MonoDomain *old_domain;
8801         MonoDomain *domain;
8802         MonoMethod *method;
8803
8804         method = decode_methodid (p, &p, end, &domain, &err);
8805         if (err)
8806                 return err;
8807
8808         old_domain = mono_domain_get ();
8809
8810         mono_domain_set (domain, TRUE);
8811
8812         err = method_commands_internal (command, method, domain, p, end, buf);
8813
8814         mono_domain_set (old_domain, TRUE);
8815
8816         return err;
8817 }
8818
8819 static ErrorCode
8820 thread_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
8821 {
8822         int objid = decode_objid (p, &p, end);
8823         int err;
8824         MonoThread *thread_obj;
8825         MonoInternalThread *thread;
8826
8827         err = get_object (objid, (MonoObject**)&thread_obj);
8828         if (err)
8829                 return err;
8830
8831         thread = THREAD_TO_INTERNAL (thread_obj);
8832            
8833         switch (command) {
8834         case CMD_THREAD_GET_NAME: {
8835                 guint32 name_len;
8836                 gunichar2 *s = mono_thread_get_name (thread, &name_len);
8837
8838                 if (!s) {
8839                         buffer_add_int (buf, 0);
8840                 } else {
8841                         char *name;
8842                         glong len;
8843
8844                         name = g_utf16_to_utf8 (s, name_len, NULL, &len, NULL);
8845                         g_assert (name);
8846                         buffer_add_int (buf, len);
8847                         buffer_add_data (buf, (guint8*)name, len);
8848                         g_free (s);
8849                 }
8850                 break;
8851         }
8852         case CMD_THREAD_GET_FRAME_INFO: {
8853                 DebuggerTlsData *tls;
8854                 int i, start_frame, length;
8855
8856                 // Wait for suspending if it already started
8857                 // FIXME: Races with suspend_count
8858                 while (!is_suspended ()) {
8859                         if (suspend_count)
8860                                 wait_for_suspend ();
8861                 }
8862                 /*
8863                 if (suspend_count)
8864                         wait_for_suspend ();
8865                 if (!is_suspended ())
8866                         return ERR_NOT_SUSPENDED;
8867                 */
8868
8869                 start_frame = decode_int (p, &p, end);
8870                 length = decode_int (p, &p, end);
8871
8872                 if (start_frame != 0 || length != -1)
8873                         return ERR_NOT_IMPLEMENTED;
8874
8875                 mono_loader_lock ();
8876                 tls = mono_g_hash_table_lookup (thread_to_tls, thread);
8877                 mono_loader_unlock ();
8878                 g_assert (tls);
8879
8880                 compute_frame_info (thread, tls);
8881
8882                 buffer_add_int (buf, tls->frame_count);
8883                 for (i = 0; i < tls->frame_count; ++i) {
8884                         buffer_add_int (buf, tls->frames [i]->id);
8885                         buffer_add_methodid (buf, tls->frames [i]->domain, tls->frames [i]->actual_method);
8886                         buffer_add_int (buf, tls->frames [i]->il_offset);
8887                         /*
8888                          * Instead of passing the frame type directly to the client, we associate
8889                          * it with the previous frame using a set of flags. This avoids lots of
8890                          * conditional code in the client, since a frame whose type isn't 
8891                          * FRAME_TYPE_MANAGED has no method, location, etc.
8892                          */
8893                         buffer_add_byte (buf, tls->frames [i]->flags);
8894                 }
8895
8896                 break;
8897         }
8898         case CMD_THREAD_GET_STATE:
8899                 buffer_add_int (buf, thread->state);
8900                 break;
8901         case CMD_THREAD_GET_INFO:
8902                 buffer_add_byte (buf, thread->threadpool_thread);
8903                 break;
8904         case CMD_THREAD_GET_ID:
8905                 buffer_add_long (buf, (guint64)(gsize)thread);
8906                 break;
8907         case CMD_THREAD_GET_TID:
8908                 buffer_add_long (buf, (guint64)thread->tid);
8909                 break;
8910         case CMD_THREAD_SET_IP: {
8911                 DebuggerTlsData *tls;
8912                 MonoMethod *method;
8913                 MonoDomain *domain;
8914                 MonoSeqPointInfo *seq_points;
8915                 SeqPoint sp;
8916                 gboolean found_sp;
8917                 gint64 il_offset;
8918
8919                 method = decode_methodid (p, &p, end, &domain, &err);
8920                 if (err)
8921                         return err;
8922                 il_offset = decode_long (p, &p, end);
8923
8924                 while (!is_suspended ()) {
8925                         if (suspend_count)
8926                                 wait_for_suspend ();
8927                 }
8928
8929                 mono_loader_lock ();
8930                 tls = mono_g_hash_table_lookup (thread_to_tls, thread);
8931                 mono_loader_unlock ();
8932                 g_assert (tls);
8933
8934                 compute_frame_info (thread, tls);
8935                 if (tls->frame_count == 0 || tls->frames [0]->actual_method != method)
8936                         return ERR_INVALID_ARGUMENT;
8937
8938                 found_sp = find_seq_point (domain, method, il_offset, &seq_points, &sp);
8939
8940                 g_assert (seq_points);
8941
8942                 if (!found_sp)
8943                         return ERR_INVALID_ARGUMENT;
8944
8945                 // FIXME: Check that the ip change is safe
8946
8947                 DEBUG_PRINTF (1, "[dbg] Setting IP to %s:0x%0x(0x%0x)\n", tls->frames [0]->actual_method->name, (int)sp.il_offset, (int)sp.native_offset);
8948                 MONO_CONTEXT_SET_IP (&tls->restore_state.ctx, (guint8*)tls->frames [0]->ji->code_start + sp.native_offset);
8949                 break;
8950         }
8951         default:
8952                 return ERR_NOT_IMPLEMENTED;
8953         }
8954
8955         return ERR_NONE;
8956 }
8957
8958 static ErrorCode
8959 frame_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
8960 {
8961         int objid;
8962         int err;
8963         MonoThread *thread_obj;
8964         MonoInternalThread *thread;
8965         int pos, i, len, frame_idx;
8966         DebuggerTlsData *tls;
8967         StackFrame *frame;
8968         MonoDebugMethodJitInfo *jit;
8969         MonoMethodSignature *sig;
8970         gssize id;
8971         MonoMethodHeader *header;
8972
8973         objid = decode_objid (p, &p, end);
8974         err = get_object (objid, (MonoObject**)&thread_obj);
8975         if (err)
8976                 return err;
8977
8978         thread = THREAD_TO_INTERNAL (thread_obj);
8979
8980         id = decode_id (p, &p, end);
8981
8982         mono_loader_lock ();
8983         tls = mono_g_hash_table_lookup (thread_to_tls, thread);
8984         mono_loader_unlock ();
8985         g_assert (tls);
8986
8987         for (i = 0; i < tls->frame_count; ++i) {
8988                 if (tls->frames [i]->id == id)
8989                         break;
8990         }
8991         if (i == tls->frame_count)
8992                 return ERR_INVALID_FRAMEID;
8993
8994         frame_idx = i;
8995         frame = tls->frames [frame_idx];
8996
8997         /* This is supported for frames without has_ctx etc. set */
8998         if (command == CMD_STACK_FRAME_GET_DOMAIN) {
8999                 if (CHECK_PROTOCOL_VERSION (2, 38))
9000                         buffer_add_domainid (buf, frame->domain);
9001                 return ERR_NONE;
9002         }
9003
9004         if (!frame->has_ctx)
9005                 return ERR_ABSENT_INFORMATION;
9006
9007         if (!frame->jit) {
9008                 frame->jit = mono_debug_find_method (frame->api_method, frame->domain);
9009                 if (!frame->jit && frame->api_method->is_inflated)
9010                         frame->jit = mono_debug_find_method (mono_method_get_declaring_generic_method (frame->api_method), frame->domain);
9011                 if (!frame->jit) {
9012                         char *s;
9013
9014                         /* This could happen for aot images with no jit debug info */
9015                         s = mono_method_full_name (frame->api_method, TRUE);
9016                         DEBUG_PRINTF (1, "[dbg] No debug information found for '%s'.\n", s);
9017                         g_free (s);
9018                         return ERR_ABSENT_INFORMATION;
9019                 }
9020         }
9021         jit = frame->jit;
9022
9023         sig = mono_method_signature (frame->actual_method);
9024
9025         if (!get_seq_points (frame->domain, frame->actual_method))
9026                 /*
9027                  * The method is probably from an aot image compiled without soft-debug, variables might be dead, etc.
9028                  */
9029                 return ERR_ABSENT_INFORMATION;
9030
9031         switch (command) {
9032         case CMD_STACK_FRAME_GET_VALUES: {
9033                 len = decode_int (p, &p, end);
9034                 header = mono_method_get_header (frame->actual_method);
9035
9036                 for (i = 0; i < len; ++i) {
9037                         pos = decode_int (p, &p, end);
9038
9039                         if (pos < 0) {
9040                                 pos = - pos - 1;
9041
9042                                 g_assert (pos >= 0 && pos < jit->num_params);
9043
9044                                 add_var (buf, jit, sig->params [pos], &jit->params [pos], &frame->ctx, frame->domain, FALSE);
9045                         } else {
9046                                 g_assert (pos >= 0 && pos < jit->num_locals);
9047
9048                                 add_var (buf, jit, header->locals [pos], &jit->locals [pos], &frame->ctx, frame->domain, FALSE);
9049                         }
9050                 }
9051                 mono_metadata_free_mh (header);
9052                 break;
9053         }
9054         case CMD_STACK_FRAME_GET_THIS: {
9055                 if (frame->api_method->klass->valuetype) {
9056                         if (!sig->hasthis) {
9057                                 MonoObject *p = NULL;
9058                                 buffer_add_value (buf, &mono_defaults.object_class->byval_arg, &p, frame->domain);
9059                         } else {
9060                                 add_var (buf, jit, &frame->actual_method->klass->this_arg, jit->this_var, &frame->ctx, frame->domain, TRUE);
9061                         }
9062                 } else {
9063                         if (!sig->hasthis) {
9064                                 MonoObject *p = NULL;
9065                                 buffer_add_value (buf, &frame->actual_method->klass->byval_arg, &p, frame->domain);
9066                         } else {
9067                                 add_var (buf, jit, &frame->api_method->klass->byval_arg, jit->this_var, &frame->ctx, frame->domain, TRUE);
9068                         }
9069                 }
9070                 break;
9071         }
9072         case CMD_STACK_FRAME_SET_VALUES: {
9073                 guint8 *val_buf;
9074                 MonoType *t;
9075                 MonoDebugVarInfo *var;
9076
9077                 len = decode_int (p, &p, end);
9078                 header = mono_method_get_header (frame->actual_method);
9079
9080                 for (i = 0; i < len; ++i) {
9081                         pos = decode_int (p, &p, end);
9082
9083                         if (pos < 0) {
9084                                 pos = - pos - 1;
9085
9086                                 g_assert (pos >= 0 && pos < jit->num_params);
9087
9088                                 t = sig->params [pos];
9089                                 var = &jit->params [pos];
9090                         } else {
9091                                 g_assert (pos >= 0 && pos < jit->num_locals);
9092
9093                                 t = header->locals [pos];
9094                                 var = &jit->locals [pos];
9095                         }
9096
9097                         if (MONO_TYPE_IS_REFERENCE (t))
9098                                 val_buf = g_alloca (sizeof (MonoObject*));
9099                         else
9100                                 val_buf = g_alloca (mono_class_instance_size (mono_class_from_mono_type (t)));
9101                         err = decode_value (t, frame->domain, val_buf, p, &p, end);
9102                         if (err)
9103                                 return err;
9104
9105                         set_var (t, var, &frame->ctx, frame->domain, val_buf, frame->reg_locations, &tls->restore_state.ctx);
9106                 }
9107                 mono_metadata_free_mh (header);
9108                 break;
9109         }
9110         case CMD_STACK_FRAME_GET_DOMAIN: {
9111                 if (CHECK_PROTOCOL_VERSION (2, 38))
9112                         buffer_add_domainid (buf, frame->domain);
9113                 break;
9114         }
9115         default:
9116                 return ERR_NOT_IMPLEMENTED;
9117         }
9118
9119         return ERR_NONE;
9120 }
9121
9122 static ErrorCode
9123 array_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
9124 {
9125         MonoArray *arr;
9126         int objid, err, index, len, i, esize;
9127         gpointer elem;
9128
9129         objid = decode_objid (p, &p, end);
9130         err = get_object (objid, (MonoObject**)&arr);
9131         if (err)
9132                 return err;
9133
9134         switch (command) {
9135         case CMD_ARRAY_REF_GET_LENGTH:
9136                 buffer_add_int (buf, arr->obj.vtable->klass->rank);
9137                 if (!arr->bounds) {
9138                         buffer_add_int (buf, arr->max_length);
9139                         buffer_add_int (buf, 0);
9140                 } else {
9141                         for (i = 0; i < arr->obj.vtable->klass->rank; ++i) {
9142                                 buffer_add_int (buf, arr->bounds [i].length);
9143                                 buffer_add_int (buf, arr->bounds [i].lower_bound);
9144                         }
9145                 }
9146                 break;
9147         case CMD_ARRAY_REF_GET_VALUES:
9148                 index = decode_int (p, &p, end);
9149                 len = decode_int (p, &p, end);
9150
9151                 g_assert (index >= 0 && len >= 0);
9152                 // Reordered to avoid integer overflow
9153                 g_assert (!(index > arr->max_length - len));
9154
9155                 esize = mono_array_element_size (arr->obj.vtable->klass);
9156                 for (i = index; i < index + len; ++i) {
9157                         elem = (gpointer*)((char*)arr->vector + (i * esize));
9158                         buffer_add_value (buf, &arr->obj.vtable->klass->element_class->byval_arg, elem, arr->obj.vtable->domain);
9159                 }
9160                 break;
9161         case CMD_ARRAY_REF_SET_VALUES:
9162                 index = decode_int (p, &p, end);
9163                 len = decode_int (p, &p, end);
9164
9165                 g_assert (index >= 0 && len >= 0);
9166                 // Reordered to avoid integer overflow
9167                 g_assert (!(index > arr->max_length - len));
9168
9169                 esize = mono_array_element_size (arr->obj.vtable->klass);
9170                 for (i = index; i < index + len; ++i) {
9171                         elem = (gpointer*)((char*)arr->vector + (i * esize));
9172
9173                         decode_value (&arr->obj.vtable->klass->element_class->byval_arg, arr->obj.vtable->domain, elem, p, &p, end);
9174                 }
9175                 break;
9176         default:
9177                 return ERR_NOT_IMPLEMENTED;
9178         }
9179
9180         return ERR_NONE;
9181 }
9182
9183 static ErrorCode
9184 string_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
9185 {
9186         int objid, err;
9187         MonoString *str;
9188         char *s;
9189         int i, index, length;
9190         gunichar2 *c;
9191
9192         objid = decode_objid (p, &p, end);
9193         err = get_object (objid, (MonoObject**)&str);
9194         if (err)
9195                 return err;
9196
9197         switch (command) {
9198         case CMD_STRING_REF_GET_VALUE:
9199                 s = mono_string_to_utf8 (str);
9200                 buffer_add_string (buf, s);
9201                 g_free (s);
9202                 break;
9203         case CMD_STRING_REF_GET_LENGTH:
9204                 buffer_add_long (buf, mono_string_length (str));
9205                 break;
9206         case CMD_STRING_REF_GET_CHARS:
9207                 index = decode_long (p, &p, end);
9208                 length = decode_long (p, &p, end);
9209                 if (index > mono_string_length (str) - length)
9210                         return ERR_INVALID_ARGUMENT;
9211                 c = mono_string_chars (str) + index;
9212                 for (i = 0; i < length; ++i)
9213                         buffer_add_short (buf, c [i]);
9214                 break;
9215         default:
9216                 return ERR_NOT_IMPLEMENTED;
9217         }
9218
9219         return ERR_NONE;
9220 }
9221
9222 static ErrorCode
9223 object_commands (int command, guint8 *p, guint8 *end, Buffer *buf)
9224 {
9225         int objid, err;
9226         MonoObject *obj;
9227         int len, i;
9228         MonoClassField *f;
9229         MonoClass *k;
9230         gboolean found;
9231
9232         if (command == CMD_OBJECT_REF_IS_COLLECTED) {
9233                 objid = decode_objid (p, &p, end);
9234                 err = get_object (objid, &obj);
9235                 if (err)
9236                         buffer_add_int (buf, 1);
9237                 else
9238                         buffer_add_int (buf, 0);
9239                 return 0;
9240         }
9241
9242         objid = decode_objid (p, &p, end);
9243         err = get_object (objid, &obj);
9244         if (err)
9245                 return err;
9246
9247         switch (command) {
9248         case CMD_OBJECT_REF_GET_TYPE:
9249                 /* This handles transparent proxies too */
9250                 buffer_add_typeid (buf, obj->vtable->domain, mono_class_from_mono_type (((MonoReflectionType*)obj->vtable->type)->type));
9251                 break;
9252         case CMD_OBJECT_REF_GET_VALUES:
9253                 len = decode_int (p, &p, end);
9254
9255                 for (i = 0; i < len; ++i) {
9256                         MonoClassField *f = decode_fieldid (p, &p, end, NULL, &err);
9257                         if (err)
9258                                 return err;
9259
9260                         /* Check that the field belongs to the object */
9261                         found = FALSE;
9262                         for (k = obj->vtable->klass; k; k = k->parent) {
9263                                 if (k == f->parent) {
9264                                         found = TRUE;
9265                                         break;
9266                                 }
9267                         }
9268                         if (!found)
9269                                 return ERR_INVALID_FIELDID;
9270
9271                         if (f->type->attrs & FIELD_ATTRIBUTE_STATIC) {
9272                                 guint8 *val;
9273                                 MonoVTable *vtable;
9274
9275                                 if (mono_class_field_is_special_static (f))
9276                                         return ERR_INVALID_FIELDID;
9277
9278                                 g_assert (f->type->attrs & FIELD_ATTRIBUTE_STATIC);
9279                                 vtable = mono_class_vtable (obj->vtable->domain, f->parent);
9280                                 val = g_malloc (mono_class_instance_size (mono_class_from_mono_type (f->type)));
9281                                 mono_field_static_get_value (vtable, f, val);
9282                                 buffer_add_value (buf, f->type, val, obj->vtable->domain);
9283                                 g_free (val);
9284                         } else {
9285                                 buffer_add_value (buf, f->type, (guint8*)obj + f->offset, obj->vtable->domain);
9286                         }
9287                 }
9288                 break;
9289         case CMD_OBJECT_REF_SET_VALUES:
9290                 len = decode_int (p, &p, end);
9291
9292                 for (i = 0; i < len; ++i) {
9293                         f = decode_fieldid (p, &p, end, NULL, &err);
9294                         if (err)
9295                                 return err;
9296
9297                         /* Check that the field belongs to the object */
9298                         found = FALSE;
9299                         for (k = obj->vtable->klass; k; k = k->parent) {
9300                                 if (k == f->parent) {
9301                                         found = TRUE;
9302                                         break;
9303                                 }
9304                         }
9305                         if (!found)
9306                                 return ERR_INVALID_FIELDID;
9307
9308                         if (f->type->attrs & FIELD_ATTRIBUTE_STATIC) {
9309                                 guint8 *val;
9310                                 MonoVTable *vtable;
9311
9312                                 if (mono_class_field_is_special_static (f))
9313                                         return ERR_INVALID_FIELDID;
9314
9315                                 g_assert (f->type->attrs & FIELD_ATTRIBUTE_STATIC);
9316                                 vtable = mono_class_vtable (obj->vtable->domain, f->parent);
9317
9318                                 val = g_malloc (mono_class_instance_size (mono_class_from_mono_type (f->type)));
9319                                 err = decode_value (f->type, obj->vtable->domain, val, p, &p, end);
9320                                 if (err) {
9321                                         g_free (val);
9322                                         return err;
9323                                 }
9324                                 mono_field_static_set_value (vtable, f, val);
9325                                 g_free (val);
9326                         } else {
9327                                 err = decode_value (f->type, obj->vtable->domain, (guint8*)obj + f->offset, p, &p, end);
9328                                 if (err)
9329                                         return err;
9330                         }
9331                 }
9332                 break;
9333         case CMD_OBJECT_REF_GET_ADDRESS:
9334                 buffer_add_long (buf, (gssize)obj);
9335                 break;
9336         case CMD_OBJECT_REF_GET_DOMAIN:
9337                 buffer_add_domainid (buf, obj->vtable->domain);
9338                 break;
9339         case CMD_OBJECT_REF_GET_INFO:
9340                 buffer_add_typeid (buf, obj->vtable->domain, mono_class_from_mono_type (((MonoReflectionType*)obj->vtable->type)->type));
9341                 buffer_add_domainid (buf, obj->vtable->domain);
9342                 break;
9343         default:
9344                 return ERR_NOT_IMPLEMENTED;
9345         }
9346
9347         return ERR_NONE;
9348 }
9349
9350 static const char*
9351 command_set_to_string (CommandSet command_set)
9352 {
9353         switch (command_set) {
9354         case CMD_SET_VM:
9355                 return "VM";
9356         case CMD_SET_OBJECT_REF:
9357                 return "OBJECT_REF";
9358         case CMD_SET_STRING_REF:
9359                 return "STRING_REF";
9360         case CMD_SET_THREAD:
9361                 return "THREAD";
9362         case CMD_SET_ARRAY_REF:
9363                 return "ARRAY_REF";
9364         case CMD_SET_EVENT_REQUEST:
9365                 return "EVENT_REQUEST";
9366         case CMD_SET_STACK_FRAME:
9367                 return "STACK_FRAME";
9368         case CMD_SET_APPDOMAIN:
9369                 return "APPDOMAIN";
9370         case CMD_SET_ASSEMBLY:
9371                 return "ASSEMBLY";
9372         case CMD_SET_METHOD:
9373                 return "METHOD";
9374         case CMD_SET_TYPE:
9375                 return "TYPE";
9376         case CMD_SET_MODULE:
9377                 return "MODULE";
9378         case CMD_SET_FIELD:
9379                 return "FIELD";
9380         case CMD_SET_EVENT:
9381                 return "EVENT";
9382         default:
9383                 return "";
9384         }
9385 }
9386
9387 static const char* vm_cmds_str [] = {
9388         "VERSION",
9389         "ALL_THREADS",
9390         "SUSPEND",
9391         "RESUME",
9392         "EXIT",
9393         "DISPOSE",
9394         "INVOKE_METHOD",
9395         "SET_PROTOCOL_VERSION",
9396         "ABORT_INVOKE",
9397         "SET_KEEPALIVE"
9398         "GET_TYPES_FOR_SOURCE_FILE",
9399         "GET_TYPES",
9400         "INVOKE_METHODS"
9401 };
9402
9403 static const char* thread_cmds_str[] = {
9404         "GET_FRAME_INFO",
9405         "GET_NAME",
9406         "GET_STATE",
9407         "GET_INFO",
9408         "GET_ID",
9409         "GET_TID",
9410         "SET_IP"
9411 };
9412
9413 static const char* event_cmds_str[] = {
9414         "REQUEST_SET",
9415         "REQUEST_CLEAR",
9416         "REQUEST_CLEAR_ALL_BREAKPOINTS"
9417 };
9418
9419 static const char* appdomain_cmds_str[] = {
9420         "GET_ROOT_DOMAIN",
9421         "GET_FRIENDLY_NAME",
9422         "GET_ASSEMBLIES",
9423         "GET_ENTRY_ASSEMBLY",
9424         "CREATE_STRING",
9425         "GET_CORLIB",
9426         "CREATE_BOXED_VALUE"
9427 };
9428
9429 static const char* assembly_cmds_str[] = {
9430         "GET_LOCATION",
9431         "GET_ENTRY_POINT",
9432         "GET_MANIFEST_MODULE",
9433         "GET_OBJECT",
9434         "GET_TYPE",
9435         "GET_NAME"
9436 };
9437
9438 static const char* module_cmds_str[] = {
9439         "GET_INFO",
9440 };
9441
9442 static const char* field_cmds_str[] = {
9443         "GET_INFO",
9444 };
9445
9446 static const char* method_cmds_str[] = {
9447         "GET_NAME",
9448         "GET_DECLARING_TYPE",
9449         "GET_DEBUG_INFO",
9450         "GET_PARAM_INFO",
9451         "GET_LOCALS_INFO",
9452         "GET_INFO",
9453         "GET_BODY",
9454         "RESOLVE_TOKEN",
9455         "GET_CATTRS ",
9456         "MAKE_GENERIC_METHOD"
9457 };
9458
9459 static const char* type_cmds_str[] = {
9460         "GET_INFO",
9461         "GET_METHODS",
9462         "GET_FIELDS",
9463         "GET_VALUES",
9464         "GET_OBJECT",
9465         "GET_SOURCE_FILES",
9466         "SET_VALUES",
9467         "IS_ASSIGNABLE_FROM",
9468         "GET_PROPERTIES ",
9469         "GET_CATTRS",
9470         "GET_FIELD_CATTRS",
9471         "GET_PROPERTY_CATTRS",
9472         "GET_SOURCE_FILES_2",
9473         "GET_VALUES_2",
9474         "GET_METHODS_BY_NAME_FLAGS",
9475         "GET_INTERFACES",
9476         "GET_INTERFACE_MAP",
9477         "IS_INITIALIZED"
9478 };
9479
9480 static const char* stack_frame_cmds_str[] = {
9481         "GET_VALUES",
9482         "GET_THIS",
9483         "SET_VALUES",
9484         "GET_DOMAIN",
9485 };
9486
9487 static const char* array_cmds_str[] = {
9488         "GET_LENGTH",
9489         "GET_VALUES",
9490         "SET_VALUES",
9491 };
9492
9493 static const char* string_cmds_str[] = {
9494         "GET_VALUE",
9495         "GET_LENGTH",
9496         "GET_CHARS"
9497 };
9498
9499 static const char* object_cmds_str[] = {
9500         "GET_TYPE",
9501         "GET_VALUES",
9502         "IS_COLLECTED",
9503         "GET_ADDRESS",
9504         "GET_DOMAIN",
9505         "SET_VALUES",
9506         "GET_INFO",
9507 };
9508
9509 static const char*
9510 cmd_to_string (CommandSet set, int command)
9511 {
9512         const char **cmds;
9513         int cmds_len = 0;
9514
9515         switch (set) {
9516         case CMD_SET_VM:
9517                 cmds = vm_cmds_str;
9518                 cmds_len = G_N_ELEMENTS (vm_cmds_str);
9519                 break;
9520         case CMD_SET_OBJECT_REF:
9521                 cmds = object_cmds_str;
9522                 cmds_len = G_N_ELEMENTS (object_cmds_str);
9523                 break;
9524         case CMD_SET_STRING_REF:
9525                 cmds = string_cmds_str;
9526                 cmds_len = G_N_ELEMENTS (string_cmds_str);
9527                 break;
9528         case CMD_SET_THREAD:
9529                 cmds = thread_cmds_str;
9530                 cmds_len = G_N_ELEMENTS (thread_cmds_str);
9531                 break;
9532         case CMD_SET_ARRAY_REF:
9533                 cmds = array_cmds_str;
9534                 cmds_len = G_N_ELEMENTS (array_cmds_str);
9535                 break;
9536         case CMD_SET_EVENT_REQUEST:
9537                 cmds = event_cmds_str;
9538                 cmds_len = G_N_ELEMENTS (event_cmds_str);
9539                 break;
9540         case CMD_SET_STACK_FRAME:
9541                 cmds = stack_frame_cmds_str;
9542                 cmds_len = G_N_ELEMENTS (stack_frame_cmds_str);
9543                 break;
9544         case CMD_SET_APPDOMAIN:
9545                 cmds = appdomain_cmds_str;
9546                 cmds_len = G_N_ELEMENTS (appdomain_cmds_str);
9547                 break;
9548         case CMD_SET_ASSEMBLY:
9549                 cmds = assembly_cmds_str;
9550                 cmds_len = G_N_ELEMENTS (assembly_cmds_str);
9551                 break;
9552         case CMD_SET_METHOD:
9553                 cmds = method_cmds_str;
9554                 cmds_len = G_N_ELEMENTS (method_cmds_str);
9555                 break;
9556         case CMD_SET_TYPE:
9557                 cmds = type_cmds_str;
9558                 cmds_len = G_N_ELEMENTS (type_cmds_str);
9559                 break;
9560         case CMD_SET_MODULE:
9561                 cmds = module_cmds_str;
9562                 cmds_len = G_N_ELEMENTS (module_cmds_str);
9563                 break;
9564         case CMD_SET_FIELD:
9565                 cmds = field_cmds_str;
9566                 cmds_len = G_N_ELEMENTS (field_cmds_str);
9567                 break;
9568         case CMD_SET_EVENT:
9569                 cmds = event_cmds_str;
9570                 cmds_len = G_N_ELEMENTS (event_cmds_str);
9571                 break;
9572         default:
9573                 return NULL;
9574         }
9575         if (command > 0 && command <= cmds_len)
9576                 return cmds [command - 1];
9577         else
9578                 return NULL;
9579 }
9580
9581 static gboolean
9582 wait_for_attach (void)
9583 {
9584 #ifndef DISABLE_SOCKET_TRANSPORT
9585         if (listen_fd == -1) {
9586                 DEBUG_PRINTF (1, "[dbg] Invalid listening socket\n");
9587                 return FALSE;
9588         }
9589
9590         /* Block and wait for client connection */
9591         conn_fd = socket_transport_accept (listen_fd);
9592         DEBUG_PRINTF (1, "Accepted connection on %d\n", conn_fd);
9593         if (conn_fd == -1) {
9594                 DEBUG_PRINTF (1, "[dbg] Bad client connection\n");
9595                 return FALSE;
9596         }
9597 #else
9598         g_assert_not_reached ();
9599 #endif
9600
9601         /* Handshake */
9602         disconnected = !transport_handshake ();
9603         if (disconnected) {
9604                 DEBUG_PRINTF (1, "Transport handshake failed!\n");
9605                 return FALSE;
9606         }
9607         
9608         return TRUE;
9609 }
9610
9611 /*
9612  * debugger_thread:
9613  *
9614  *   This thread handles communication with the debugger client using a JDWP
9615  * like protocol.
9616  */
9617 static guint32 WINAPI
9618 debugger_thread (void *arg)
9619 {
9620         int res, len, id, flags, command_set = 0, command = 0;
9621         guint8 header [HEADER_LENGTH];
9622         guint8 *data, *p, *end;
9623         Buffer buf;
9624         ErrorCode err;
9625         gboolean no_reply;
9626         gboolean attach_failed = FALSE;
9627
9628         DEBUG_PRINTF (1, "[dbg] Agent thread started, pid=%p\n", (gpointer)GetCurrentThreadId ());
9629
9630         debugger_thread_id = GetCurrentThreadId ();
9631
9632         mono_jit_thread_attach (mono_get_root_domain ());
9633
9634         mono_thread_internal_current ()->flags |= MONO_THREAD_FLAG_DONT_MANAGE;
9635
9636         mono_set_is_debugger_attached (TRUE);
9637         
9638         if (agent_config.defer) {
9639                 if (!wait_for_attach ()) {
9640                         DEBUG_PRINTF (1, "[dbg] Can't attach, aborting debugger thread.\n");
9641                         attach_failed = TRUE; // Don't abort process when we can't listen
9642                 } else {
9643                         /* Send start event to client */
9644                         process_profiler_event (EVENT_KIND_VM_START, mono_thread_get_main ());
9645                 }
9646         }
9647         
9648         while (!attach_failed) {
9649                 res = transport_recv (header, HEADER_LENGTH);
9650
9651                 /* This will break if the socket is closed during shutdown too */
9652                 if (res != HEADER_LENGTH) {
9653                         DEBUG_PRINTF (1, "[dbg] transport_recv () returned %d, expected %d.\n", res, HEADER_LENGTH);
9654                         break;
9655                 }
9656
9657                 p = header;
9658                 end = header + HEADER_LENGTH;
9659
9660                 len = decode_int (p, &p, end);
9661                 id = decode_int (p, &p, end);
9662                 flags = decode_byte (p, &p, end);
9663                 command_set = decode_byte (p, &p, end);
9664                 command = decode_byte (p, &p, end);
9665
9666                 g_assert (flags == 0);
9667
9668                 if (log_level) {
9669                         const char *cmd_str;
9670                         char cmd_num [256];
9671
9672                         cmd_str = cmd_to_string (command_set, command);
9673                         if (!cmd_str) {
9674                                 sprintf (cmd_num, "%d", command);
9675                                 cmd_str = cmd_num;
9676                         }
9677                         
9678                         DEBUG_PRINTF (1, "[dbg] Command %s(%s) [%d][at=%lx].\n", command_set_to_string (command_set), cmd_str, id, (long)mono_100ns_ticks () / 10000);
9679                 }
9680
9681                 data = g_malloc (len - HEADER_LENGTH);
9682                 if (len - HEADER_LENGTH > 0)
9683                 {
9684                         res = transport_recv (data, len - HEADER_LENGTH);
9685                         if (res != len - HEADER_LENGTH) {
9686                                 DEBUG_PRINTF (1, "[dbg] transport_recv () returned %d, expected %d.\n", res, len - HEADER_LENGTH);
9687                                 break;
9688                         }
9689                 }
9690
9691                 p = data;
9692                 end = data + (len - HEADER_LENGTH);
9693
9694                 buffer_init (&buf, 128);
9695
9696                 err = ERR_NONE;
9697                 no_reply = FALSE;
9698
9699                 /* Process the request */
9700                 switch (command_set) {
9701                 case CMD_SET_VM:
9702                         err = vm_commands (command, id, p, end, &buf);
9703                         if (!err && command == CMD_VM_INVOKE_METHOD)
9704                                 /* Sent after the invoke is complete */
9705                                 no_reply = TRUE;
9706                         break;
9707                 case CMD_SET_EVENT_REQUEST:
9708                         err = event_commands (command, p, end, &buf);
9709                         break;
9710                 case CMD_SET_APPDOMAIN:
9711                         err = domain_commands (command, p, end, &buf);
9712                         break;
9713                 case CMD_SET_ASSEMBLY:
9714                         err = assembly_commands (command, p, end, &buf);
9715                         break;
9716                 case CMD_SET_MODULE:
9717                         err = module_commands (command, p, end, &buf);
9718                         break;
9719                 case CMD_SET_FIELD:
9720                         err = field_commands (command, p, end, &buf);
9721                         break;
9722                 case CMD_SET_TYPE:
9723                         err = type_commands (command, p, end, &buf);
9724                         break;
9725                 case CMD_SET_METHOD:
9726                         err = method_commands (command, p, end, &buf);
9727                         break;
9728                 case CMD_SET_THREAD:
9729                         err = thread_commands (command, p, end, &buf);
9730                         break;
9731                 case CMD_SET_STACK_FRAME:
9732                         err = frame_commands (command, p, end, &buf);
9733                         break;
9734                 case CMD_SET_ARRAY_REF:
9735                         err = array_commands (command, p, end, &buf);
9736                         break;
9737                 case CMD_SET_STRING_REF:
9738                         err = string_commands (command, p, end, &buf);
9739                         break;
9740                 case CMD_SET_OBJECT_REF:
9741                         err = object_commands (command, p, end, &buf);
9742                         break;
9743                 default:
9744                         err = ERR_NOT_IMPLEMENTED;
9745                 }               
9746
9747                 if (command_set == CMD_SET_VM && command == CMD_VM_START_BUFFERING) {
9748                         buffer_replies = TRUE;
9749                 }
9750
9751                 if (!no_reply) {
9752                         if (buffer_replies) {
9753                                 buffer_reply_packet (id, err, &buf);
9754                         } else {
9755                                 send_reply_packet (id, err, &buf);
9756                                 //DEBUG_PRINTF (1, "[dbg] Sent reply to %d [at=%lx].\n", id, (long)mono_100ns_ticks () / 10000);
9757                         }
9758                 }
9759
9760                 if (!err && command_set == CMD_SET_VM && command == CMD_VM_STOP_BUFFERING) {
9761                         send_buffered_reply_packets ();
9762                         buffer_replies = FALSE;
9763                 }
9764
9765                 g_free (data);
9766                 buffer_free (&buf);
9767
9768                 if (command_set == CMD_SET_VM && (command == CMD_VM_DISPOSE || command == CMD_VM_EXIT))
9769                         break;
9770         }
9771
9772         mono_set_is_debugger_attached (FALSE);
9773         
9774         mono_mutex_lock (&debugger_thread_exited_mutex);
9775         debugger_thread_exited = TRUE;
9776         mono_cond_signal (&debugger_thread_exited_cond);
9777         mono_mutex_unlock (&debugger_thread_exited_mutex);
9778
9779         DEBUG_PRINTF (1, "[dbg] Debugger thread exited.\n");
9780         
9781         if (!attach_failed && command_set == CMD_SET_VM && command == CMD_VM_DISPOSE && !(vm_death_event_sent || mono_runtime_is_shutting_down ())) {
9782                 DEBUG_PRINTF (2, "[dbg] Detached - restarting clean debugger thread.\n");
9783                 start_debugger_thread ();
9784         }
9785         
9786         return 0;
9787 }
9788
9789 #else /* DISABLE_DEBUGGER_AGENT */
9790
9791 void
9792 mono_debugger_agent_parse_options (char *options)
9793 {
9794         g_error ("This runtime is configured with the debugger agent disabled.");
9795 }
9796
9797 void
9798 mono_debugger_agent_init (void)
9799 {
9800 }
9801
9802 void
9803 mono_debugger_agent_breakpoint_hit (void *sigctx)
9804 {
9805 }
9806
9807 void
9808 mono_debugger_agent_single_step_event (void *sigctx)
9809 {
9810 }
9811
9812 void
9813 mono_debugger_agent_free_domain_info (MonoDomain *domain)
9814 {
9815 }
9816
9817 gboolean
9818 mono_debugger_agent_thread_interrupt (void *sigctx, MonoJitInfo *ji)
9819 {
9820         return FALSE;
9821 }
9822
9823 void
9824 mono_debugger_agent_handle_exception (MonoException *ext, MonoContext *throw_ctx,
9825                                                                           MonoContext *catch_ctx)
9826 {
9827 }
9828
9829 void
9830 mono_debugger_agent_begin_exception_filter (MonoException *exc, MonoContext *ctx, MonoContext *orig_ctx)
9831 {
9832 }
9833
9834 void
9835 mono_debugger_agent_end_exception_filter (MonoException *exc, MonoContext *ctx, MonoContext *orig_ctx)
9836 {
9837 }
9838
9839 void
9840 mono_debugger_agent_user_break (void)
9841 {
9842         G_BREAKPOINT ();
9843 }
9844
9845 void
9846 mono_debugger_agent_debug_log (int level, MonoString *category, MonoString *message)
9847 {
9848 }
9849
9850 gboolean
9851 mono_debugger_agent_debug_log_is_enabled (void)
9852 {
9853         return FALSE;
9854 }
9855
9856 void
9857 mono_debugger_agent_unhandled_exception (MonoException *exc)
9858 {
9859         g_assert_not_reached ();
9860 }
9861
9862 void
9863 debugger_agent_single_step_from_context (MonoContext *ctx)
9864 {
9865         g_assert_not_reached ();
9866 }
9867
9868 void
9869 debugger_agent_breakpoint_from_context (MonoContext *ctx)
9870 {
9871         g_assert_not_reached ();
9872 }
9873
9874 #endif