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