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