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