2 * debugger-agent.c: Soft Debugger back-end module
5 * Zoltan Varga (vargaz@gmail.com)
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.
16 #ifdef HAVE_SYS_TYPES_H
17 #include <sys/types.h>
19 #ifdef HAVE_SYS_SELECT_H
20 #include <sys/select.h>
22 #ifdef HAVE_SYS_SOCKET_H
23 #include <sys/socket.h>
25 #ifdef HAVE_NETINET_TCP_H
26 #include <netinet/tcp.h>
28 #ifdef HAVE_NETINET_IN_H
29 #include <netinet/in.h>
49 #ifdef PLATFORM_ANDROID
51 #include <linux/tcp.h>
52 #include <sys/endian.h>
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 <mono/utils/mono-proclib.h>
75 #include "debugger-agent.h"
77 #include "seq-points.h"
80 * On iOS we can't use System.Environment.Exit () as it will do the wrong
83 #if !defined (TARGET_IOS)
84 #define TRY_MANAGED_SYSTEM_ENVIRONMENT_EXIT
88 #ifndef MONO_ARCH_SOFT_DEBUG_SUPPORTED
89 #define DISABLE_DEBUGGER_AGENT 1
92 #ifdef DISABLE_SOFT_DEBUG
93 #define DISABLE_DEBUGGER_AGENT 1
96 #ifndef DISABLE_DEBUGGER_AGENT
98 #include <mono/utils/mono-os-mutex.h>
100 #define THREAD_TO_INTERNAL(thread) (thread)->internal_thread
123 guint32 il_offset
, native_offset
;
127 * If method is gshared, this is the actual instance, otherwise this is equal to
130 MonoMethod
*actual_method
;
132 * This is the method which is visible to debugger clients. Same as method,
133 * except for native-to-managed wrappers.
135 MonoMethod
*api_method
;
137 MonoDebugMethodJitInfo
*jit
;
140 mgreg_t
*reg_locations
[MONO_MAX_IREGS
];
142 * Whenever ctx is set. This is FALSE for the last frame of running threads, since
143 * the frame can become invalid.
148 typedef struct _InvokeData InvokeData
;
156 /* This is the context which needs to be restored after the invoke */
160 * If this is set, invoke this method with the arguments given by ARGS.
164 guint32 suspend_count
;
167 InvokeData
*last_invoke
;
171 MonoThreadUnwindState context
;
173 /* This is computed on demand when it is requested using the wire protocol */
174 /* It is freed up when the thread is resumed */
178 * Whenever the frame info is up-to-date. If not, compute_frame_info () will need to
181 gboolean frames_up_to_date
;
183 * Points to data about a pending invoke which needs to be executed after the thread
186 InvokeData
*pending_invoke
;
188 * Set to TRUE if this thread is suspended in suspend_current () or it is executing
193 * Signals whenever the thread is in the process of suspending, i.e. it will suspend
194 * within a finite amount of time.
198 * Set to TRUE if this thread is suspended in suspend_current ().
200 gboolean really_suspended
;
201 /* Used to pass the context to the breakpoint/single step handler */
202 MonoContext handler_ctx
;
203 /* Whenever thread_stop () was called for this thread */
206 /* Whenever to disable breakpoints (used during invokes) */
207 gboolean disable_breakpoints
;
210 * Number of times this thread has been resumed using resume_thread ().
212 guint32 resume_count
;
214 MonoInternalThread
*thread
;
217 * Information about the frame which transitioned to native code for running
220 StackFrameInfo async_last_frame
;
223 * The context where the stack walk can be started for running threads.
225 MonoThreadUnwindState async_state
;
228 * The context used for filter clauses
230 MonoThreadUnwindState filter_state
;
232 gboolean abort_requested
;
235 * The current mono_runtime_invoke_checked invocation.
240 * The context where single stepping should resume while the thread is suspended because
241 * of an EXCEPTION event.
243 MonoThreadUnwindState catch_state
;
246 * The context which needs to be restored after handling a single step/breakpoint
247 * event. This is the same as the ctx at step/breakpoint site, but includes changes
248 * to caller saved registers done by set_var ().
250 MonoThreadUnwindState restore_state
;
251 /* Frames computed from restore_state */
252 int restore_frame_count
;
253 StackFrame
**restore_frames
;
255 /* The currently unloading appdomain */
256 MonoDomain
*domain_unloading
;
261 void (*connect
) (const char *address
);
262 void (*close1
) (void);
263 void (*close2
) (void);
264 gboolean (*send
) (void *buf
, int len
);
265 int (*recv
) (void *buf
, int len
);
269 * Wire Protocol definitions
272 #define HEADER_LENGTH 11
274 #define MAJOR_VERSION 2
275 #define MINOR_VERSION 44
279 CMD_SET_OBJECT_REF
= 9,
280 CMD_SET_STRING_REF
= 10,
282 CMD_SET_ARRAY_REF
= 13,
283 CMD_SET_EVENT_REQUEST
= 15,
284 CMD_SET_STACK_FRAME
= 16,
285 CMD_SET_APPDOMAIN
= 20,
286 CMD_SET_ASSEMBLY
= 21,
295 EVENT_KIND_VM_START
= 0,
296 EVENT_KIND_VM_DEATH
= 1,
297 EVENT_KIND_THREAD_START
= 2,
298 EVENT_KIND_THREAD_DEATH
= 3,
299 EVENT_KIND_APPDOMAIN_CREATE
= 4,
300 EVENT_KIND_APPDOMAIN_UNLOAD
= 5,
301 EVENT_KIND_METHOD_ENTRY
= 6,
302 EVENT_KIND_METHOD_EXIT
= 7,
303 EVENT_KIND_ASSEMBLY_LOAD
= 8,
304 EVENT_KIND_ASSEMBLY_UNLOAD
= 9,
305 EVENT_KIND_BREAKPOINT
= 10,
306 EVENT_KIND_STEP
= 11,
307 EVENT_KIND_TYPE_LOAD
= 12,
308 EVENT_KIND_EXCEPTION
= 13,
309 EVENT_KIND_KEEPALIVE
= 14,
310 EVENT_KIND_USER_BREAK
= 15,
311 EVENT_KIND_USER_LOG
= 16
315 SUSPEND_POLICY_NONE
= 0,
316 SUSPEND_POLICY_EVENT_THREAD
= 1,
317 SUSPEND_POLICY_ALL
= 2
322 ERR_INVALID_OBJECT
= 20,
323 ERR_INVALID_FIELDID
= 25,
324 ERR_INVALID_FRAMEID
= 30,
325 ERR_NOT_IMPLEMENTED
= 100,
326 ERR_NOT_SUSPENDED
= 101,
327 ERR_INVALID_ARGUMENT
= 102,
329 ERR_NO_INVOCATION
= 104,
330 ERR_ABSENT_INFORMATION
= 105,
331 ERR_NO_SEQ_POINT_AT_IL_OFFSET
= 106,
332 ERR_INVOKE_ABORTED
= 107,
333 ERR_LOADER_ERROR
= 200, /*XXX extend the protocol to pass this information down the pipe */
338 MOD_KIND_THREAD_ONLY
= 3,
339 MOD_KIND_LOCATION_ONLY
= 7,
340 MOD_KIND_EXCEPTION_ONLY
= 8,
342 MOD_KIND_ASSEMBLY_ONLY
= 11,
343 MOD_KIND_SOURCE_FILE_ONLY
= 12,
344 MOD_KIND_TYPE_NAME_ONLY
= 13,
360 STEP_FILTER_NONE
= 0,
361 STEP_FILTER_STATIC_CTOR
= 1,
362 STEP_FILTER_DEBUGGER_HIDDEN
= 2,
363 STEP_FILTER_DEBUGGER_STEP_THROUGH
= 4,
364 STEP_FILTER_DEBUGGER_NON_USER_CODE
= 8
368 TOKEN_TYPE_STRING
= 0,
370 TOKEN_TYPE_FIELD
= 2,
371 TOKEN_TYPE_METHOD
= 3,
372 TOKEN_TYPE_UNKNOWN
= 4
376 VALUE_TYPE_ID_NULL
= 0xf0,
377 VALUE_TYPE_ID_TYPE
= 0xf1,
378 VALUE_TYPE_ID_PARENT_VTYPE
= 0xf2
382 FRAME_FLAG_DEBUGGER_INVOKE
= 1,
383 FRAME_FLAG_NATIVE_TRANSITION
= 2
387 INVOKE_FLAG_DISABLE_BREAKPOINTS
= 1,
388 INVOKE_FLAG_SINGLE_THREADED
= 2,
389 INVOKE_FLAG_RETURN_OUT_THIS
= 4,
390 INVOKE_FLAG_RETURN_OUT_ARGS
= 8,
391 INVOKE_FLAG_VIRTUAL
= 16
395 BINDING_FLAGS_IGNORE_CASE
= 0x70000000,
396 } BindingFlagsExtensions
;
400 CMD_VM_ALL_THREADS
= 2,
405 CMD_VM_INVOKE_METHOD
= 7,
406 CMD_VM_SET_PROTOCOL_VERSION
= 8,
407 CMD_VM_ABORT_INVOKE
= 9,
408 CMD_VM_SET_KEEPALIVE
= 10,
409 CMD_VM_GET_TYPES_FOR_SOURCE_FILE
= 11,
410 CMD_VM_GET_TYPES
= 12,
411 CMD_VM_INVOKE_METHODS
= 13,
412 CMD_VM_START_BUFFERING
= 14,
413 CMD_VM_STOP_BUFFERING
= 15
417 CMD_THREAD_GET_FRAME_INFO
= 1,
418 CMD_THREAD_GET_NAME
= 2,
419 CMD_THREAD_GET_STATE
= 3,
420 CMD_THREAD_GET_INFO
= 4,
421 CMD_THREAD_GET_ID
= 5,
422 CMD_THREAD_GET_TID
= 6,
423 CMD_THREAD_SET_IP
= 7
427 CMD_EVENT_REQUEST_SET
= 1,
428 CMD_EVENT_REQUEST_CLEAR
= 2,
429 CMD_EVENT_REQUEST_CLEAR_ALL_BREAKPOINTS
= 3
437 CMD_APPDOMAIN_GET_ROOT_DOMAIN
= 1,
438 CMD_APPDOMAIN_GET_FRIENDLY_NAME
= 2,
439 CMD_APPDOMAIN_GET_ASSEMBLIES
= 3,
440 CMD_APPDOMAIN_GET_ENTRY_ASSEMBLY
= 4,
441 CMD_APPDOMAIN_CREATE_STRING
= 5,
442 CMD_APPDOMAIN_GET_CORLIB
= 6,
443 CMD_APPDOMAIN_CREATE_BOXED_VALUE
= 7
447 CMD_ASSEMBLY_GET_LOCATION
= 1,
448 CMD_ASSEMBLY_GET_ENTRY_POINT
= 2,
449 CMD_ASSEMBLY_GET_MANIFEST_MODULE
= 3,
450 CMD_ASSEMBLY_GET_OBJECT
= 4,
451 CMD_ASSEMBLY_GET_TYPE
= 5,
452 CMD_ASSEMBLY_GET_NAME
= 6
456 CMD_MODULE_GET_INFO
= 1,
460 CMD_FIELD_GET_INFO
= 1,
464 CMD_METHOD_GET_NAME
= 1,
465 CMD_METHOD_GET_DECLARING_TYPE
= 2,
466 CMD_METHOD_GET_DEBUG_INFO
= 3,
467 CMD_METHOD_GET_PARAM_INFO
= 4,
468 CMD_METHOD_GET_LOCALS_INFO
= 5,
469 CMD_METHOD_GET_INFO
= 6,
470 CMD_METHOD_GET_BODY
= 7,
471 CMD_METHOD_RESOLVE_TOKEN
= 8,
472 CMD_METHOD_GET_CATTRS
= 9,
473 CMD_METHOD_MAKE_GENERIC_METHOD
= 10
477 CMD_TYPE_GET_INFO
= 1,
478 CMD_TYPE_GET_METHODS
= 2,
479 CMD_TYPE_GET_FIELDS
= 3,
480 CMD_TYPE_GET_VALUES
= 4,
481 CMD_TYPE_GET_OBJECT
= 5,
482 CMD_TYPE_GET_SOURCE_FILES
= 6,
483 CMD_TYPE_SET_VALUES
= 7,
484 CMD_TYPE_IS_ASSIGNABLE_FROM
= 8,
485 CMD_TYPE_GET_PROPERTIES
= 9,
486 CMD_TYPE_GET_CATTRS
= 10,
487 CMD_TYPE_GET_FIELD_CATTRS
= 11,
488 CMD_TYPE_GET_PROPERTY_CATTRS
= 12,
489 CMD_TYPE_GET_SOURCE_FILES_2
= 13,
490 CMD_TYPE_GET_VALUES_2
= 14,
491 CMD_TYPE_GET_METHODS_BY_NAME_FLAGS
= 15,
492 CMD_TYPE_GET_INTERFACES
= 16,
493 CMD_TYPE_GET_INTERFACE_MAP
= 17,
494 CMD_TYPE_IS_INITIALIZED
= 18,
495 CMD_TYPE_CREATE_INSTANCE
= 19
499 CMD_STACK_FRAME_GET_VALUES
= 1,
500 CMD_STACK_FRAME_GET_THIS
= 2,
501 CMD_STACK_FRAME_SET_VALUES
= 3,
502 CMD_STACK_FRAME_GET_DOMAIN
= 4,
503 CMD_STACK_FRAME_SET_THIS
= 5,
507 CMD_ARRAY_REF_GET_LENGTH
= 1,
508 CMD_ARRAY_REF_GET_VALUES
= 2,
509 CMD_ARRAY_REF_SET_VALUES
= 3,
513 CMD_STRING_REF_GET_VALUE
= 1,
514 CMD_STRING_REF_GET_LENGTH
= 2,
515 CMD_STRING_REF_GET_CHARS
= 3
519 CMD_OBJECT_REF_GET_TYPE
= 1,
520 CMD_OBJECT_REF_GET_VALUES
= 2,
521 CMD_OBJECT_REF_IS_COLLECTED
= 3,
522 CMD_OBJECT_REF_GET_ADDRESS
= 4,
523 CMD_OBJECT_REF_GET_DOMAIN
= 5,
524 CMD_OBJECT_REF_SET_VALUES
= 6,
525 CMD_OBJECT_REF_GET_INFO
= 7,
531 int count
; /* For kind == MOD_KIND_COUNT */
532 MonoInternalThread
*thread
; /* For kind == MOD_KIND_THREAD_ONLY */
533 MonoClass
*exc_class
; /* For kind == MONO_KIND_EXCEPTION_ONLY */
534 MonoAssembly
**assemblies
; /* For kind == MONO_KIND_ASSEMBLY_ONLY */
535 GHashTable
*source_files
; /* For kind == MONO_KIND_SOURCE_FILE_ONLY */
536 GHashTable
*type_names
; /* For kind == MONO_KIND_TYPE_NAME_ONLY */
537 StepFilter filter
; /* For kind == MOD_KIND_STEP */
539 gboolean caught
, uncaught
, subclasses
; /* For kind == MOD_KIND_EXCEPTION_ONLY */
548 Modifier modifiers
[MONO_ZERO_LEN_ARRAY
];
552 * Describes a single step request.
556 MonoInternalThread
*thread
;
562 MonoMethod
*start_method
;
563 MonoMethod
*last_method
;
565 /* Whenever single stepping is performed using start/stop_single_stepping () */
567 /* The list of breakpoints used to implement step-over */
569 /* The number of frames at the start of a step-over */
574 * Contains additional information for an event
577 /* For EVENT_KIND_EXCEPTION */
579 MonoContext catch_ctx
;
581 /* For EVENT_KIND_USER_LOG */
583 char *category
, *message
;
584 /* For EVENT_KIND_TYPE_LOAD */
588 /* Dummy structure used for the profiler callbacks */
594 guint8
*buf
, *p
, *end
;
597 typedef struct ReplyPacket
{
603 #define DEBUG(level,s) do { if (G_UNLIKELY ((level) <= log_level)) { s; fflush (log_file); } } while (0)
605 #ifdef PLATFORM_ANDROID
606 #define DEBUG_PRINTF(level, ...) do { if (G_UNLIKELY ((level) <= log_level)) { g_print (__VA_ARGS__); } } while (0)
608 #define DEBUG_PRINTF(level, ...) do { if (G_UNLIKELY ((level) <= log_level)) { fprintf (log_file, __VA_ARGS__); fflush (log_file); } } while (0)
612 #define get_last_sock_error() WSAGetLastError()
613 #define MONO_EWOULDBLOCK WSAEWOULDBLOCK
614 #define MONO_EINTR WSAEINTR
616 #define get_last_sock_error() errno
617 #define MONO_EWOULDBLOCK EWOULDBLOCK
618 #define MONO_EINTR EINTR
621 #define CHECK_PROTOCOL_VERSION(major,minor) \
622 (protocol_version_set && (major_version > (major) || (major_version == (major) && minor_version >= (minor))))
628 static AgentConfig agent_config
;
631 * Whenever the agent is fully initialized.
632 * When using the onuncaught or onthrow options, only some parts of the agent are
633 * initialized on startup, and the full initialization which includes connection
634 * establishment and the startup of the agent thread is only done in response to
637 static gint32 inited
;
639 #ifndef DISABLE_SOCKET_TRANSPORT
641 static int listen_fd
;
644 static int packet_id
= 0;
646 static int objref_id
= 0;
648 static int event_request_id
= 0;
650 static int frame_id
= 0;
652 static GPtrArray
*event_requests
;
654 static MonoNativeTlsKey debugger_tls_id
;
656 static gboolean vm_start_event_sent
, vm_death_event_sent
, disconnected
;
658 /* Maps MonoInternalThread -> DebuggerTlsData */
659 /* Protected by the loader lock */
660 static MonoGHashTable
*thread_to_tls
;
662 /* Maps tid -> MonoInternalThread */
663 /* Protected by the loader lock */
664 static MonoGHashTable
*tid_to_thread
;
666 /* Maps tid -> MonoThread (not MonoInternalThread) */
667 /* Protected by the loader lock */
668 static MonoGHashTable
*tid_to_thread_obj
;
670 static MonoNativeThreadId debugger_thread_id
;
672 static MonoThreadHandle
*debugger_thread_handle
;
674 static int log_level
;
676 static gboolean embedding
;
678 static FILE *log_file
;
680 /* Assemblies whose assembly load event has no been sent yet */
681 /* Protected by the dbg lock */
682 static GPtrArray
*pending_assembly_loads
;
684 /* Whenever the debugger thread has exited */
685 static gboolean debugger_thread_exited
;
687 /* Cond variable used to wait for debugger_thread_exited becoming true */
688 static MonoCoopCond debugger_thread_exited_cond
;
690 /* Mutex for the cond var above */
691 static MonoCoopMutex debugger_thread_exited_mutex
;
693 static DebuggerProfiler debugger_profiler
;
695 /* The single step request instance */
696 static SingleStepReq
*ss_req
;
698 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
699 /* Number of single stepping operations in progress */
703 /* The protocol version of the client */
704 static int major_version
, minor_version
;
706 /* Whenever the variables above are set by the client */
707 static gboolean protocol_version_set
;
709 /* A hash table containing all active domains */
710 /* Protected by the loader lock */
711 static GHashTable
*domains
;
713 /* The number of times the runtime is suspended */
714 static gint32 suspend_count
;
716 /* Whenever to buffer reply messages and send them together */
717 static gboolean buffer_replies
;
719 /* Buffered reply packets */
720 static ReplyPacket reply_packets
[128];
723 #define dbg_lock() mono_coop_mutex_lock (&debug_mutex)
724 #define dbg_unlock() mono_coop_mutex_unlock (&debug_mutex)
725 static MonoCoopMutex debug_mutex
;
727 static void transport_init (void);
728 static void transport_connect (const char *address
);
729 static gboolean
transport_handshake (void);
730 static void register_transport (DebuggerTransport
*trans
);
732 static gsize WINAPI
debugger_thread (void *arg
);
734 static void runtime_initialized (MonoProfiler
*prof
);
736 static void runtime_shutdown (MonoProfiler
*prof
);
738 static void thread_startup (MonoProfiler
*prof
, uintptr_t tid
);
740 static void thread_end (MonoProfiler
*prof
, uintptr_t tid
);
742 static void appdomain_load (MonoProfiler
*prof
, MonoDomain
*domain
, int result
);
744 static void appdomain_start_unload (MonoProfiler
*prof
, MonoDomain
*domain
);
746 static void appdomain_unload (MonoProfiler
*prof
, MonoDomain
*domain
);
748 static void emit_appdomain_load (gpointer key
, gpointer value
, gpointer user_data
);
750 static void emit_thread_start (gpointer key
, gpointer value
, gpointer user_data
);
752 static void invalidate_each_thread (gpointer key
, gpointer value
, gpointer user_data
);
754 static void assembly_load (MonoProfiler
*prof
, MonoAssembly
*assembly
, int result
);
756 static void assembly_unload (MonoProfiler
*prof
, MonoAssembly
*assembly
);
758 static void emit_assembly_load (gpointer assembly
, gpointer user_data
);
760 static void emit_type_load (gpointer key
, gpointer type
, gpointer user_data
);
762 static void jit_end (MonoProfiler
*prof
, MonoMethod
*method
, MonoJitInfo
*jinfo
, int result
);
764 static void add_pending_breakpoints (MonoMethod
*method
, MonoJitInfo
*jinfo
);
766 static void start_single_stepping (void);
768 static void stop_single_stepping (void);
770 static void suspend_current (void);
772 static void clear_event_requests_for_assembly (MonoAssembly
*assembly
);
774 static void clear_types_for_assembly (MonoAssembly
*assembly
);
776 static void clear_breakpoints_for_domain (MonoDomain
*domain
);
778 static void process_profiler_event (EventKind event
, gpointer arg
);
780 /* Submodule init/cleanup */
781 static void breakpoints_init (void);
782 static void breakpoints_cleanup (void);
784 static void objrefs_init (void);
785 static void objrefs_cleanup (void);
787 static void ids_init (void);
788 static void ids_cleanup (void);
790 static void suspend_init (void);
792 static void ss_start (SingleStepReq
*ss_req
, MonoMethod
*method
, SeqPoint
*sp
, MonoSeqPointInfo
*info
, MonoContext
*ctx
, DebuggerTlsData
*tls
, gboolean step_to_catch
,
793 StackFrame
**frames
, int nframes
);
794 static ErrorCode
ss_create (MonoInternalThread
*thread
, StepSize size
, StepDepth depth
, StepFilter filter
, EventRequest
*req
);
795 static void ss_destroy (SingleStepReq
*req
);
797 static void start_debugger_thread (void);
798 static void stop_debugger_thread (void);
800 static void finish_agent_init (gboolean on_startup
);
802 static void process_profiler_event (EventKind event
, gpointer arg
);
804 static void invalidate_frames (DebuggerTlsData
*tls
);
806 #ifndef DISABLE_SOCKET_TRANSPORT
808 register_socket_transport (void);
811 static inline gboolean
812 is_debugger_thread (void)
814 return mono_native_thread_id_equals (mono_native_thread_id_get (), debugger_thread_id
);
818 parse_address (char *address
, char **host
, int *port
)
820 char *pos
= strchr (address
, ':');
822 if (pos
== NULL
|| pos
== address
)
825 *host
= (char *)g_malloc (pos
- address
+ 1);
826 strncpy (*host
, address
, pos
- address
);
827 (*host
) [pos
- address
] = '\0';
829 *port
= atoi (pos
+ 1);
837 fprintf (stderr
, "Usage: mono --debugger-agent=[<option>=<value>,...] ...\n");
838 fprintf (stderr
, "Available options:\n");
839 fprintf (stderr
, " transport=<transport>\t\tTransport to use for connecting to the debugger (mandatory, possible values: 'dt_socket')\n");
840 fprintf (stderr
, " address=<hostname>:<port>\tAddress to connect to (mandatory)\n");
841 fprintf (stderr
, " loglevel=<n>\t\t\tLog level (defaults to 0)\n");
842 fprintf (stderr
, " logfile=<file>\t\tFile to log to (defaults to stdout)\n");
843 fprintf (stderr
, " suspend=y/n\t\t\tWhether to suspend after startup.\n");
844 fprintf (stderr
, " timeout=<n>\t\t\tTimeout for connecting in milliseconds.\n");
845 fprintf (stderr
, " server=y/n\t\t\tWhether to listen for a client connection.\n");
846 fprintf (stderr
, " keepalive=<n>\t\t\tSend keepalive events every n milliseconds.\n");
847 fprintf (stderr
, " setpgid=y/n\t\t\tWhether to call setpid(0, 0) after startup.\n");
848 fprintf (stderr
, " help\t\t\t\tPrint this help.\n");
852 parse_flag (const char *option
, char *flag
)
854 if (!strcmp (flag
, "y"))
856 else if (!strcmp (flag
, "n"))
859 fprintf (stderr
, "debugger-agent: The valid values for the '%s' option are 'y' and 'n'.\n", option
);
866 mono_debugger_agent_parse_options (char *options
)
873 #ifndef MONO_ARCH_SOFT_DEBUG_SUPPORTED
874 fprintf (stderr
, "--debugger-agent is not supported on this platform.\n");
878 extra
= g_getenv ("MONO_SDB_ENV_OPTIONS");
880 options
= g_strdup_printf ("%s,%s", options
, extra
);
882 agent_config
.enabled
= TRUE
;
883 agent_config
.suspend
= TRUE
;
884 agent_config
.server
= FALSE
;
885 agent_config
.defer
= FALSE
;
886 agent_config
.address
= NULL
;
888 //agent_config.log_level = 10;
890 args
= g_strsplit (options
, ",", -1);
891 for (ptr
= args
; ptr
&& *ptr
; ptr
++) {
894 if (strncmp (arg
, "transport=", 10) == 0) {
895 agent_config
.transport
= g_strdup (arg
+ 10);
896 } else if (strncmp (arg
, "address=", 8) == 0) {
897 agent_config
.address
= g_strdup (arg
+ 8);
898 } else if (strncmp (arg
, "loglevel=", 9) == 0) {
899 agent_config
.log_level
= atoi (arg
+ 9);
900 } else if (strncmp (arg
, "logfile=", 8) == 0) {
901 agent_config
.log_file
= g_strdup (arg
+ 8);
902 } else if (strncmp (arg
, "suspend=", 8) == 0) {
903 agent_config
.suspend
= parse_flag ("suspend", arg
+ 8);
904 } else if (strncmp (arg
, "server=", 7) == 0) {
905 agent_config
.server
= parse_flag ("server", arg
+ 7);
906 } else if (strncmp (arg
, "onuncaught=", 11) == 0) {
907 agent_config
.onuncaught
= parse_flag ("onuncaught", arg
+ 11);
908 } else if (strncmp (arg
, "onthrow=", 8) == 0) {
909 /* We support multiple onthrow= options */
910 agent_config
.onthrow
= g_slist_append (agent_config
.onthrow
, g_strdup (arg
+ 8));
911 } else if (strncmp (arg
, "onthrow", 7) == 0) {
912 agent_config
.onthrow
= g_slist_append (agent_config
.onthrow
, g_strdup (""));
913 } else if (strncmp (arg
, "help", 4) == 0) {
916 } else if (strncmp (arg
, "timeout=", 8) == 0) {
917 agent_config
.timeout
= atoi (arg
+ 8);
918 } else if (strncmp (arg
, "launch=", 7) == 0) {
919 agent_config
.launch
= g_strdup (arg
+ 7);
920 } else if (strncmp (arg
, "embedding=", 10) == 0) {
921 agent_config
.embedding
= atoi (arg
+ 10) == 1;
922 } else if (strncmp (arg
, "keepalive=", 10) == 0) {
923 agent_config
.keepalive
= atoi (arg
+ 10);
924 } else if (strncmp (arg
, "setpgid=", 8) == 0) {
925 agent_config
.setpgid
= parse_flag ("setpgid", arg
+ 8);
932 if (agent_config
.server
&& !agent_config
.suspend
) {
933 /* Waiting for deferred attachment */
934 agent_config
.defer
= TRUE
;
935 if (agent_config
.address
== NULL
) {
936 agent_config
.address
= g_strdup_printf ("0.0.0.0:%u", 56000 + (mono_process_current_pid () % 1000));
940 //agent_config.log_level = 0;
942 if (agent_config
.transport
== NULL
) {
943 fprintf (stderr
, "debugger-agent: The 'transport' option is mandatory.\n");
947 if (agent_config
.address
== NULL
&& !agent_config
.server
) {
948 fprintf (stderr
, "debugger-agent: The 'address' option is mandatory.\n");
953 if (!strcmp (agent_config
.transport
, "dt_socket")) {
954 if (agent_config
.address
&& parse_address (agent_config
.address
, &host
, &port
)) {
955 fprintf (stderr
, "debugger-agent: The format of the 'address' options is '<host>:<port>'\n");
962 mono_debugger_agent_init (void)
964 mono_coop_mutex_init_recursive (&debug_mutex
);
966 if (!agent_config
.enabled
)
971 /* Need to know whenever a thread has acquired the loader mutex */
972 mono_loader_lock_track_ownership (TRUE
);
974 event_requests
= g_ptr_array_new ();
976 mono_coop_mutex_init (&debugger_thread_exited_mutex
);
977 mono_coop_cond_init (&debugger_thread_exited_cond
);
979 mono_profiler_install ((MonoProfiler
*)&debugger_profiler
, runtime_shutdown
);
980 mono_profiler_set_events ((MonoProfileFlags
)(MONO_PROFILE_APPDOMAIN_EVENTS
| MONO_PROFILE_THREADS
| MONO_PROFILE_ASSEMBLY_EVENTS
| MONO_PROFILE_JIT_COMPILATION
| MONO_PROFILE_METHOD_EVENTS
));
981 mono_profiler_install_runtime_initialized (runtime_initialized
);
982 mono_profiler_install_appdomain (NULL
, appdomain_load
, appdomain_start_unload
, appdomain_unload
);
983 mono_profiler_install_thread (thread_startup
, thread_end
);
984 mono_profiler_install_assembly (NULL
, assembly_load
, assembly_unload
, NULL
);
985 mono_profiler_install_jit_end (jit_end
);
987 mono_native_tls_alloc (&debugger_tls_id
, NULL
);
989 /* Needed by the hash_table_new_type () call below */
990 mono_gc_base_init ();
992 thread_to_tls
= mono_g_hash_table_new_type (NULL
, NULL
, MONO_HASH_KEY_GC
, MONO_ROOT_SOURCE_DEBUGGER
, "thread-to-tls table");
993 MONO_GC_REGISTER_ROOT_FIXED (thread_to_tls
, MONO_ROOT_SOURCE_DEBUGGER
, "thread-to-tls table");
995 tid_to_thread
= mono_g_hash_table_new_type (NULL
, NULL
, MONO_HASH_VALUE_GC
, MONO_ROOT_SOURCE_DEBUGGER
, "tid-to-thread table");
996 MONO_GC_REGISTER_ROOT_FIXED (tid_to_thread
, MONO_ROOT_SOURCE_DEBUGGER
, "tid-to-thread table");
998 tid_to_thread_obj
= mono_g_hash_table_new_type (NULL
, NULL
, MONO_HASH_VALUE_GC
, MONO_ROOT_SOURCE_DEBUGGER
, "tid-to-thread object table");
999 MONO_GC_REGISTER_ROOT_FIXED (tid_to_thread_obj
, MONO_ROOT_SOURCE_DEBUGGER
, "tid-to-thread object table");
1001 pending_assembly_loads
= g_ptr_array_new ();
1002 domains
= g_hash_table_new (mono_aligned_addr_hash
, NULL
);
1004 log_level
= agent_config
.log_level
;
1006 embedding
= agent_config
.embedding
;
1007 disconnected
= TRUE
;
1009 if (agent_config
.log_file
) {
1010 log_file
= fopen (agent_config
.log_file
, "w+");
1012 fprintf (stderr
, "Unable to create log file '%s': %s.\n", agent_config
.log_file
, strerror (errno
));
1021 breakpoints_init ();
1024 mini_get_debug_options ()->gen_sdb_seq_points
= TRUE
;
1026 * This is needed because currently we don't handle liveness info.
1028 mini_get_debug_options ()->mdb_optimizations
= TRUE
;
1030 #ifndef MONO_ARCH_HAVE_CONTEXT_SET_INT_REG
1031 /* This is needed because we can't set local variables in registers yet */
1032 mono_disable_optimizations (MONO_OPT_LINEARS
);
1036 * The stack walk done from thread_interrupt () needs to be signal safe, but it
1037 * isn't, since it can call into mono_aot_find_jit_info () which is not signal
1038 * safe (#3411). So load AOT info eagerly when the debugger is running as a
1041 mini_get_debug_options ()->load_aot_jit_info_eagerly
= TRUE
;
1044 if (agent_config
.setpgid
)
1048 if (!agent_config
.onuncaught
&& !agent_config
.onthrow
)
1049 finish_agent_init (TRUE
);
1053 * finish_agent_init:
1055 * Finish the initialization of the agent. This involves connecting the transport
1056 * and starting the agent thread. This is either done at startup, or
1057 * in response to some event like an unhandled exception.
1060 finish_agent_init (gboolean on_startup
)
1064 if (InterlockedCompareExchange (&inited
, 1, 0) == 1)
1067 if (agent_config
.launch
) {
1070 // FIXME: Generated address
1071 // FIXME: Races with transport_connect ()
1073 argv
[0] = agent_config
.launch
;
1074 argv
[1] = agent_config
.transport
;
1075 argv
[2] = agent_config
.address
;
1078 res
= g_spawn_async_with_pipes (NULL
, argv
, NULL
, (GSpawnFlags
)0, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
1080 fprintf (stderr
, "Failed to execute '%s'.\n", agent_config
.launch
);
1085 transport_connect (agent_config
.address
);
1088 /* Do some which is usually done after sending the VMStart () event */
1089 vm_start_event_sent
= TRUE
;
1090 start_debugger_thread ();
1095 mono_debugger_agent_cleanup (void)
1100 stop_debugger_thread ();
1102 breakpoints_cleanup ();
1111 #ifndef DISABLE_SOCKET_TRANSPORT
1116 * recv() + handle incomplete reads and EINTR
1119 socket_transport_recv (void *buf
, int len
)
1125 static gint64 last_keepalive
;
1132 res
= recv (fd
, (char *) buf
+ total
, len
- total
, flags
);
1135 if (agent_config
.keepalive
) {
1136 gboolean need_keepalive
= FALSE
;
1137 if (res
== -1 && get_last_sock_error () == MONO_EWOULDBLOCK
) {
1138 need_keepalive
= TRUE
;
1139 } else if (res
== -1) {
1140 /* This could happen if recv () is interrupted repeatedly */
1141 msecs
= mono_msec_ticks ();
1142 if (msecs
- last_keepalive
>= agent_config
.keepalive
) {
1143 need_keepalive
= TRUE
;
1144 last_keepalive
= msecs
;
1147 if (need_keepalive
) {
1148 process_profiler_event (EVENT_KIND_KEEPALIVE
, NULL
);
1152 } while ((res
> 0 && total
< len
) || (res
== -1 && get_last_sock_error () == MONO_EINTR
));
1160 set_keepalive (void)
1165 if (!agent_config
.keepalive
|| !conn_fd
)
1168 tv
.tv_sec
= agent_config
.keepalive
/ 1000;
1169 tv
.tv_usec
= (agent_config
.keepalive
% 1000) * 1000;
1171 result
= setsockopt (conn_fd
, SOL_SOCKET
, SO_RCVTIMEO
, (char *) &tv
, sizeof(struct timeval
));
1172 g_assert (result
>= 0);
1176 socket_transport_accept (int socket_fd
)
1179 conn_fd
= accept (socket_fd
, NULL
, NULL
);
1182 if (conn_fd
== -1) {
1183 fprintf (stderr
, "debugger-agent: Unable to listen on %d\n", socket_fd
);
1185 DEBUG_PRINTF (1, "Accepted connection from client, connection fd=%d.\n", conn_fd
);
1192 socket_transport_send (void *data
, int len
)
1199 res
= send (conn_fd
, data
, len
, 0);
1200 } while (res
== -1 && get_last_sock_error () == MONO_EINTR
);
1211 * socket_transport_connect:
1213 * Connect/Listen on HOST:PORT. If HOST is NULL, generate an address and listen on it.
1216 socket_transport_connect (const char *address
)
1218 MonoAddressInfo
*result
;
1219 MonoAddressEntry
*rp
;
1220 int sfd
= -1, s
, res
;
1224 if (agent_config
.address
) {
1225 res
= parse_address (agent_config
.address
, &host
, &port
);
1226 g_assert (res
== 0);
1237 mono_network_init ();
1239 /* Obtain address(es) matching host/port */
1240 s
= mono_get_address_info (host
, port
, MONO_HINT_UNSPECIFIED
, &result
);
1242 fprintf (stderr
, "debugger-agent: Unable to resolve %s:%d: %d\n", host
, port
, s
); // FIXME add portable error conversion functions
1247 if (agent_config
.server
) {
1248 /* Wait for a connection */
1250 struct sockaddr_in addr
;
1253 /* No address, generate one */
1254 sfd
= socket (AF_INET
, SOCK_STREAM
, 0);
1257 /* This will bind the socket to a random port */
1258 res
= listen (sfd
, 16);
1260 fprintf (stderr
, "debugger-agent: Unable to setup listening socket: %s\n", strerror (get_last_sock_error ()));
1265 addrlen
= sizeof (addr
);
1266 memset (&addr
, 0, sizeof (addr
));
1267 res
= getsockname (sfd
, (struct sockaddr
*)&addr
, &addrlen
);
1268 g_assert (res
== 0);
1270 host
= (char*)"127.0.0.1";
1271 port
= ntohs (addr
.sin_port
);
1273 /* Emit the address to stdout */
1274 /* FIXME: Should print another interface, not localhost */
1275 printf ("%s:%d\n", host
, port
);
1277 /* Listen on the provided address */
1278 for (rp
= result
->entries
; rp
!= NULL
; rp
= rp
->next
) {
1279 MonoSocketAddress sockaddr
;
1283 mono_socket_address_init (&sockaddr
, &sock_len
, rp
->family
, &rp
->address
, port
);
1285 sfd
= socket (rp
->family
, rp
->socktype
,
1290 if (setsockopt (sfd
, SOL_SOCKET
, SO_REUSEADDR
, &n
, sizeof(n
)) == -1)
1293 res
= bind (sfd
, &sockaddr
.addr
, sock_len
);
1297 res
= listen (sfd
, 16);
1304 mono_free_address_info (result
);
1307 if (agent_config
.defer
)
1310 DEBUG_PRINTF (1, "Listening on %s:%d (timeout=%d ms)...\n", host
, port
, agent_config
.timeout
);
1312 if (agent_config
.timeout
) {
1317 tv
.tv_usec
= agent_config
.timeout
* 1000;
1319 FD_SET (sfd
, &readfds
);
1322 res
= select (sfd
+ 1, &readfds
, NULL
, NULL
, &tv
);
1326 fprintf (stderr
, "debugger-agent: Timed out waiting to connect.\n");
1331 conn_fd
= socket_transport_accept (sfd
);
1335 DEBUG_PRINTF (1, "Accepted connection from client, socket fd=%d.\n", conn_fd
);
1337 /* Connect to the specified address */
1338 /* FIXME: Respect the timeout */
1339 for (rp
= result
->entries
; rp
!= NULL
; rp
= rp
->next
) {
1340 MonoSocketAddress sockaddr
;
1343 mono_socket_address_init (&sockaddr
, &sock_len
, rp
->family
, &rp
->address
, port
);
1345 sfd
= socket (rp
->family
, rp
->socktype
,
1351 res
= connect (sfd
, &sockaddr
.addr
, sock_len
);
1355 break; /* Success */
1363 fprintf (stderr
, "debugger-agent: Unable to connect to %s:%d\n", host
, port
);
1369 mono_free_address_info (result
);
1372 if (!transport_handshake ())
1377 socket_transport_close1 (void)
1379 /* This will interrupt the agent thread */
1380 /* Close the read part only so it can still send back replies */
1381 /* Also shut down the connection listener so that we can exit normally */
1383 /* SD_RECEIVE doesn't break the recv in the debugger thread */
1384 shutdown (conn_fd
, SD_BOTH
);
1385 shutdown (listen_fd
, SD_BOTH
);
1386 closesocket (listen_fd
);
1388 shutdown (conn_fd
, SHUT_RD
);
1389 shutdown (listen_fd
, SHUT_RDWR
);
1397 socket_transport_close2 (void)
1400 shutdown (conn_fd
, SD_BOTH
);
1402 shutdown (conn_fd
, SHUT_RDWR
);
1407 register_socket_transport (void)
1409 DebuggerTransport trans
;
1411 trans
.name
= "dt_socket";
1412 trans
.connect
= socket_transport_connect
;
1413 trans
.close1
= socket_transport_close1
;
1414 trans
.close2
= socket_transport_close2
;
1415 trans
.send
= socket_transport_send
;
1416 trans
.recv
= socket_transport_recv
;
1418 register_transport (&trans
);
1422 * socket_fd_transport_connect:
1426 socket_fd_transport_connect (const char *address
)
1430 res
= sscanf (address
, "%d", &conn_fd
);
1432 fprintf (stderr
, "debugger-agent: socket-fd transport address is invalid: '%s'\n", address
);
1436 if (!transport_handshake ())
1441 register_socket_fd_transport (void)
1443 DebuggerTransport trans
;
1445 /* This is the same as the 'dt_socket' transport, but receives an already connected socket fd */
1446 trans
.name
= "socket-fd";
1447 trans
.connect
= socket_fd_transport_connect
;
1448 trans
.close1
= socket_transport_close1
;
1449 trans
.close2
= socket_transport_close2
;
1450 trans
.send
= socket_transport_send
;
1451 trans
.recv
= socket_transport_recv
;
1453 register_transport (&trans
);
1456 #endif /* DISABLE_SOCKET_TRANSPORT */
1462 #define MAX_TRANSPORTS 16
1464 static DebuggerTransport
*transport
;
1466 static DebuggerTransport transports
[MAX_TRANSPORTS
];
1467 static int ntransports
;
1470 mono_debugger_agent_register_transport (DebuggerTransport
*trans
);
1473 mono_debugger_agent_register_transport (DebuggerTransport
*trans
)
1475 register_transport (trans
);
1479 register_transport (DebuggerTransport
*trans
)
1481 g_assert (ntransports
< MAX_TRANSPORTS
);
1483 memcpy (&transports
[ntransports
], trans
, sizeof (DebuggerTransport
));
1488 transport_init (void)
1492 #ifndef DISABLE_SOCKET_TRANSPORT
1493 register_socket_transport ();
1494 register_socket_fd_transport ();
1497 for (i
= 0; i
< ntransports
; ++i
) {
1498 if (!strcmp (agent_config
.transport
, transports
[i
].name
))
1501 if (i
== ntransports
) {
1502 fprintf (stderr
, "debugger-agent: The supported values for the 'transport' option are: ");
1503 for (i
= 0; i
< ntransports
; ++i
)
1504 fprintf (stderr
, "%s'%s'", i
> 0 ? ", " : "", transports
[i
].name
);
1505 fprintf (stderr
, "\n");
1508 transport
= &transports
[i
];
1512 transport_connect (const char *address
)
1514 transport
->connect (address
);
1518 transport_close1 (void)
1520 transport
->close1 ();
1524 transport_close2 (void)
1526 transport
->close2 ();
1530 transport_send (void *buf
, int len
)
1532 return transport
->send (buf
, len
);
1536 transport_recv (void *buf
, int len
)
1538 return transport
->recv (buf
, len
);
1542 mono_debugger_agent_transport_handshake (void)
1544 return transport_handshake ();
1548 transport_handshake (void)
1550 char handshake_msg
[128];
1554 disconnected
= TRUE
;
1556 /* Write handshake message */
1557 sprintf (handshake_msg
, "DWP-Handshake");
1560 res
= transport_send (handshake_msg
, strlen (handshake_msg
));
1561 } while (res
== -1 && get_last_sock_error () == MONO_EINTR
);
1563 g_assert (res
!= -1);
1566 res
= transport_recv (buf
, strlen (handshake_msg
));
1567 if ((res
!= strlen (handshake_msg
)) || (memcmp (buf
, handshake_msg
, strlen (handshake_msg
)) != 0)) {
1568 fprintf (stderr
, "debugger-agent: DWP handshake failed.\n");
1573 * To support older clients, the client sends its protocol version after connecting
1574 * using a command. Until that is received, default to our protocol version.
1576 major_version
= MAJOR_VERSION
;
1577 minor_version
= MINOR_VERSION
;
1578 protocol_version_set
= FALSE
;
1580 #ifndef DISABLE_SOCKET_TRANSPORT
1581 // FIXME: Move this somewhere else
1583 * Set TCP_NODELAY on the socket so the client receives events/command
1584 * results immediately.
1588 int result
= setsockopt (conn_fd
,
1593 g_assert (result
>= 0);
1599 disconnected
= FALSE
;
1604 stop_debugger_thread (void)
1609 transport_close1 ();
1612 * Wait for the thread to exit.
1614 * If we continue with the shutdown without waiting for it, then the client might
1615 * not receive an answer to its last command like a resume.
1617 if (!is_debugger_thread ()) {
1619 mono_coop_mutex_lock (&debugger_thread_exited_mutex
);
1620 if (!debugger_thread_exited
)
1621 mono_coop_cond_wait (&debugger_thread_exited_cond
, &debugger_thread_exited_mutex
);
1622 mono_coop_mutex_unlock (&debugger_thread_exited_mutex
);
1623 } while (!debugger_thread_exited
);
1626 transport_close2 ();
1630 start_debugger_thread (void)
1632 debugger_thread_handle
= mono_threads_create_thread (debugger_thread
, NULL
, NULL
, NULL
);
1633 g_assert (debugger_thread_handle
);
1637 * Functions to decode protocol data
1641 decode_byte (guint8
*buf
, guint8
**endbuf
, guint8
*limit
)
1644 g_assert (*endbuf
<= limit
);
1649 decode_int (guint8
*buf
, guint8
**endbuf
, guint8
*limit
)
1652 g_assert (*endbuf
<= limit
);
1654 return (((int)buf
[0]) << 24) | (((int)buf
[1]) << 16) | (((int)buf
[2]) << 8) | (((int)buf
[3]) << 0);
1657 static inline gint64
1658 decode_long (guint8
*buf
, guint8
**endbuf
, guint8
*limit
)
1660 guint32 high
= decode_int (buf
, &buf
, limit
);
1661 guint32 low
= decode_int (buf
, &buf
, limit
);
1665 return ((((guint64
)high
) << 32) | ((guint64
)low
));
1669 decode_id (guint8
*buf
, guint8
**endbuf
, guint8
*limit
)
1671 return decode_int (buf
, endbuf
, limit
);
1675 decode_string (guint8
*buf
, guint8
**endbuf
, guint8
*limit
)
1677 int len
= decode_int (buf
, &buf
, limit
);
1685 s
= (char *)g_malloc (len
+ 1);
1688 memcpy (s
, buf
, len
);
1697 * Functions to encode protocol data
1701 buffer_init (Buffer
*buf
, int size
)
1703 buf
->buf
= (guint8
*)g_malloc (size
);
1705 buf
->end
= buf
->buf
+ size
;
1709 buffer_len (Buffer
*buf
)
1711 return buf
->p
- buf
->buf
;
1715 buffer_make_room (Buffer
*buf
, int size
)
1717 if (buf
->end
- buf
->p
< size
) {
1718 int new_size
= buf
->end
- buf
->buf
+ size
+ 32;
1719 guint8
*p
= (guint8
*)g_realloc (buf
->buf
, new_size
);
1720 size
= buf
->p
- buf
->buf
;
1723 buf
->end
= buf
->buf
+ new_size
;
1728 buffer_add_byte (Buffer
*buf
, guint8 val
)
1730 buffer_make_room (buf
, 1);
1736 buffer_add_short (Buffer
*buf
, guint32 val
)
1738 buffer_make_room (buf
, 2);
1739 buf
->p
[0] = (val
>> 8) & 0xff;
1740 buf
->p
[1] = (val
>> 0) & 0xff;
1745 buffer_add_int (Buffer
*buf
, guint32 val
)
1747 buffer_make_room (buf
, 4);
1748 buf
->p
[0] = (val
>> 24) & 0xff;
1749 buf
->p
[1] = (val
>> 16) & 0xff;
1750 buf
->p
[2] = (val
>> 8) & 0xff;
1751 buf
->p
[3] = (val
>> 0) & 0xff;
1756 buffer_add_long (Buffer
*buf
, guint64 l
)
1758 buffer_add_int (buf
, (l
>> 32) & 0xffffffff);
1759 buffer_add_int (buf
, (l
>> 0) & 0xffffffff);
1763 buffer_add_id (Buffer
*buf
, int id
)
1765 buffer_add_int (buf
, (guint64
)id
);
1769 buffer_add_data (Buffer
*buf
, guint8
*data
, int len
)
1771 buffer_make_room (buf
, len
);
1772 memcpy (buf
->p
, data
, len
);
1777 buffer_add_string (Buffer
*buf
, const char *str
)
1782 buffer_add_int (buf
, 0);
1785 buffer_add_int (buf
, len
);
1786 buffer_add_data (buf
, (guint8
*)str
, len
);
1791 buffer_add_buffer (Buffer
*buf
, Buffer
*data
)
1793 buffer_add_data (buf
, data
->buf
, buffer_len (data
));
1797 buffer_free (Buffer
*buf
)
1803 send_packet (int command_set
, int command
, Buffer
*data
)
1809 id
= InterlockedIncrement (&packet_id
);
1811 len
= data
->p
- data
->buf
+ 11;
1812 buffer_init (&buf
, len
);
1813 buffer_add_int (&buf
, len
);
1814 buffer_add_int (&buf
, id
);
1815 buffer_add_byte (&buf
, 0); /* flags */
1816 buffer_add_byte (&buf
, command_set
);
1817 buffer_add_byte (&buf
, command
);
1818 memcpy (buf
.buf
+ 11, data
->buf
, data
->p
- data
->buf
);
1820 res
= transport_send (buf
.buf
, len
);
1828 send_reply_packets (int npackets
, ReplyPacket
*packets
)
1835 for (i
= 0; i
< npackets
; ++i
)
1836 len
+= buffer_len (packets
[i
].data
) + 11;
1837 buffer_init (&buf
, len
);
1838 for (i
= 0; i
< npackets
; ++i
) {
1839 buffer_add_int (&buf
, buffer_len (packets
[i
].data
) + 11);
1840 buffer_add_int (&buf
, packets
[i
].id
);
1841 buffer_add_byte (&buf
, 0x80); /* flags */
1842 buffer_add_byte (&buf
, (packets
[i
].error
>> 8) & 0xff);
1843 buffer_add_byte (&buf
, packets
[i
].error
);
1844 buffer_add_buffer (&buf
, packets
[i
].data
);
1847 res
= transport_send (buf
.buf
, len
);
1855 send_reply_packet (int id
, int error
, Buffer
*data
)
1859 memset (&packet
, 0, sizeof (ReplyPacket
));
1861 packet
.error
= error
;
1864 return send_reply_packets (1, &packet
);
1868 send_buffered_reply_packets (void)
1872 send_reply_packets (nreply_packets
, reply_packets
);
1873 for (i
= 0; i
< nreply_packets
; ++i
)
1874 buffer_free (reply_packets
[i
].data
);
1875 DEBUG_PRINTF (1, "[dbg] Sent %d buffered reply packets [at=%lx].\n", nreply_packets
, (long)mono_100ns_ticks () / 10000);
1880 buffer_reply_packet (int id
, int error
, Buffer
*data
)
1884 if (nreply_packets
== 128)
1885 send_buffered_reply_packets ();
1887 p
= &reply_packets
[nreply_packets
];
1890 p
->data
= g_new0 (Buffer
, 1);
1891 buffer_init (p
->data
, buffer_len (data
));
1892 buffer_add_buffer (p
->data
, data
);
1901 * Represents an object accessible by the debugger client.
1904 /* Unique id used in the wire protocol to refer to objects */
1907 * A weakref gc handle pointing to the object. The gc handle is used to
1908 * detect if the object was garbage collected.
1913 /* Maps objid -> ObjRef */
1914 /* Protected by the loader lock */
1915 static GHashTable
*objrefs
;
1916 /* Protected by the loader lock */
1917 static GHashTable
*obj_to_objref
;
1918 /* Protected by the dbg lock */
1919 static MonoGHashTable
*suspended_objs
;
1922 free_objref (gpointer value
)
1924 ObjRef
*o
= (ObjRef
*)value
;
1926 mono_gchandle_free (o
->handle
);
1934 objrefs
= g_hash_table_new_full (NULL
, NULL
, NULL
, free_objref
);
1935 obj_to_objref
= g_hash_table_new (NULL
, NULL
);
1936 suspended_objs
= mono_g_hash_table_new_type (NULL
, NULL
, MONO_HASH_KEY_GC
, MONO_ROOT_SOURCE_DEBUGGER
, "suspended objects table");
1937 MONO_GC_REGISTER_ROOT_FIXED (suspended_objs
, MONO_ROOT_SOURCE_DEBUGGER
, "suspended objects table");
1941 objrefs_cleanup (void)
1943 g_hash_table_destroy (objrefs
);
1948 * Return an ObjRef for OBJ.
1951 get_objref (MonoObject
*obj
)
1954 GSList
*reflist
= NULL
, *l
;
1960 if (suspend_count
) {
1962 * Have to keep object refs created during suspensions alive for the duration of the suspension, so GCs during invokes don't collect them.
1965 mono_g_hash_table_insert (suspended_objs
, obj
, NULL
);
1969 mono_loader_lock ();
1971 /* FIXME: The tables can grow indefinitely */
1973 if (mono_gc_is_moving ()) {
1975 * Objects can move, so use a hash table mapping hash codes to lists of
1976 * ObjRef structures.
1978 hash
= mono_object_hash (obj
);
1980 reflist
= (GSList
*)g_hash_table_lookup (obj_to_objref
, GINT_TO_POINTER (hash
));
1981 for (l
= reflist
; l
; l
= l
->next
) {
1982 ref
= (ObjRef
*)l
->data
;
1983 if (ref
&& mono_gchandle_get_target (ref
->handle
) == obj
) {
1984 mono_loader_unlock ();
1989 /* Use a hash table with masked pointers to internalize object references */
1990 ref
= (ObjRef
*)g_hash_table_lookup (obj_to_objref
, GINT_TO_POINTER (~((gsize
)obj
)));
1991 /* ref might refer to a different object with the same addr which was GCd */
1992 if (ref
&& mono_gchandle_get_target (ref
->handle
) == obj
) {
1993 mono_loader_unlock ();
1998 ref
= g_new0 (ObjRef
, 1);
1999 ref
->id
= InterlockedIncrement (&objref_id
);
2000 ref
->handle
= mono_gchandle_new_weakref (obj
, FALSE
);
2002 g_hash_table_insert (objrefs
, GINT_TO_POINTER (ref
->id
), ref
);
2004 if (mono_gc_is_moving ()) {
2005 reflist
= g_slist_append (reflist
, ref
);
2006 g_hash_table_insert (obj_to_objref
, GINT_TO_POINTER (hash
), reflist
);
2008 g_hash_table_insert (obj_to_objref
, GINT_TO_POINTER (~((gsize
)obj
)), ref
);
2011 mono_loader_unlock ();
2017 true_pred (gpointer key
, gpointer value
, gpointer user_data
)
2023 clear_suspended_objs (void)
2026 mono_g_hash_table_foreach_remove (suspended_objs
, true_pred
, NULL
);
2031 get_objid (MonoObject
*obj
)
2036 return get_objref (obj
)->id
;
2040 * Set OBJ to the object identified by OBJID.
2041 * Returns 0 or an error code if OBJID is invalid or the object has been garbage
2045 get_object_allow_null (int objid
, MonoObject
**obj
)
2055 return ERR_INVALID_OBJECT
;
2057 mono_loader_lock ();
2059 ref
= (ObjRef
*)g_hash_table_lookup (objrefs
, GINT_TO_POINTER (objid
));
2062 *obj
= mono_gchandle_get_target (ref
->handle
);
2063 mono_loader_unlock ();
2065 return ERR_INVALID_OBJECT
;
2068 mono_loader_unlock ();
2069 return ERR_INVALID_OBJECT
;
2074 get_object (int objid
, MonoObject
**obj
)
2076 ErrorCode err
= get_object_allow_null (objid
, obj
);
2078 if (err
!= ERR_NONE
)
2081 return ERR_INVALID_OBJECT
;
2086 decode_objid (guint8
*buf
, guint8
**endbuf
, guint8
*limit
)
2088 return decode_id (buf
, endbuf
, limit
);
2092 buffer_add_objid (Buffer
*buf
, MonoObject
*o
)
2094 buffer_add_id (buf
, get_objid (o
));
2113 * Represents a runtime structure accessible to the debugger client
2116 /* Unique id used in the wire protocol */
2118 /* Domain of the runtime structure, NULL if the domain was unloaded */
2125 MonoAssembly
*assembly
;
2126 MonoClassField
*field
;
2128 MonoProperty
*property
;
2133 /* Maps runtime structure -> Id */
2134 /* Protected by the dbg lock */
2135 GHashTable
*val_to_id
[ID_NUM
];
2136 /* Classes whose class load event has been sent */
2137 /* Protected by the loader lock */
2138 GHashTable
*loaded_classes
;
2139 /* Maps MonoClass->GPtrArray of file names */
2140 GHashTable
*source_files
;
2141 /* Maps source file basename -> GSList of classes */
2142 GHashTable
*source_file_to_class
;
2143 /* Same with ignore-case */
2144 GHashTable
*source_file_to_class_ignorecase
;
2148 /* Protected by the dbg lock */
2149 static GPtrArray
*ids
[ID_NUM
];
2156 for (i
= 0; i
< ID_NUM
; ++i
)
2157 ids
[i
] = g_ptr_array_new ();
2165 for (i
= 0; i
< ID_NUM
; ++i
) {
2167 for (j
= 0; j
< ids
[i
]->len
; ++j
)
2168 g_free (g_ptr_array_index (ids
[i
], j
));
2169 g_ptr_array_free (ids
[i
], TRUE
);
2176 mono_debugger_agent_free_domain_info (MonoDomain
*domain
)
2178 AgentDomainInfo
*info
= (AgentDomainInfo
*)domain_jit_info (domain
)->agent_info
;
2180 GHashTableIter iter
;
2181 GPtrArray
*file_names
;
2186 for (i
= 0; i
< ID_NUM
; ++i
)
2187 if (info
->val_to_id
[i
])
2188 g_hash_table_destroy (info
->val_to_id
[i
]);
2189 g_hash_table_destroy (info
->loaded_classes
);
2191 g_hash_table_iter_init (&iter
, info
->source_files
);
2192 while (g_hash_table_iter_next (&iter
, NULL
, (void**)&file_names
)) {
2193 for (i
= 0; i
< file_names
->len
; ++i
)
2194 g_free (g_ptr_array_index (file_names
, i
));
2195 g_ptr_array_free (file_names
, TRUE
);
2198 g_hash_table_iter_init (&iter
, info
->source_file_to_class
);
2199 while (g_hash_table_iter_next (&iter
, (void**)&basename
, (void**)&l
)) {
2204 g_hash_table_iter_init (&iter
, info
->source_file_to_class_ignorecase
);
2205 while (g_hash_table_iter_next (&iter
, (void**)&basename
, (void**)&l
)) {
2213 domain_jit_info (domain
)->agent_info
= NULL
;
2215 /* Clear ids referencing structures in the domain */
2217 for (i
= 0; i
< ID_NUM
; ++i
) {
2219 for (j
= 0; j
< ids
[i
]->len
; ++j
) {
2220 Id
*id
= (Id
*)g_ptr_array_index (ids
[i
], j
);
2221 if (id
->domain
== domain
)
2228 mono_loader_lock ();
2229 g_hash_table_remove (domains
, domain
);
2230 mono_loader_unlock ();
2233 static AgentDomainInfo
*
2234 get_agent_domain_info (MonoDomain
*domain
)
2236 AgentDomainInfo
*info
= NULL
;
2238 mono_domain_lock (domain
);
2240 info
= (AgentDomainInfo
*)domain_jit_info (domain
)->agent_info
;
2242 info
= g_new0 (AgentDomainInfo
, 1);
2243 domain_jit_info (domain
)->agent_info
= info
;
2244 info
->loaded_classes
= g_hash_table_new (mono_aligned_addr_hash
, NULL
);
2245 info
->source_files
= g_hash_table_new (mono_aligned_addr_hash
, NULL
);
2246 info
->source_file_to_class
= g_hash_table_new (g_str_hash
, g_str_equal
);
2247 info
->source_file_to_class_ignorecase
= g_hash_table_new (g_str_hash
, g_str_equal
);
2250 mono_domain_unlock (domain
);
2256 get_id (MonoDomain
*domain
, IdType type
, gpointer val
)
2259 AgentDomainInfo
*info
;
2264 info
= get_agent_domain_info (domain
);
2268 if (info
->val_to_id
[type
] == NULL
)
2269 info
->val_to_id
[type
] = g_hash_table_new (mono_aligned_addr_hash
, NULL
);
2271 id
= (Id
*)g_hash_table_lookup (info
->val_to_id
[type
], val
);
2277 id
= g_new0 (Id
, 1);
2279 id
->id
= ids
[type
]->len
+ 1;
2280 id
->domain
= domain
;
2283 g_hash_table_insert (info
->val_to_id
[type
], val
, id
);
2284 g_ptr_array_add (ids
[type
], id
);
2291 static inline gpointer
2292 decode_ptr_id (guint8
*buf
, guint8
**endbuf
, guint8
*limit
, IdType type
, MonoDomain
**domain
, ErrorCode
*err
)
2296 int id
= decode_id (buf
, endbuf
, limit
);
2305 // FIXME: error handling
2307 g_assert (id
> 0 && id
<= ids
[type
]->len
);
2309 res
= (Id
*)g_ptr_array_index (ids
[type
], GPOINTER_TO_INT (id
- 1));
2312 if (res
->domain
== NULL
|| res
->domain
->state
== MONO_APPDOMAIN_UNLOADED
) {
2313 DEBUG_PRINTF (1, "ERR_UNLOADED, id=%d, type=%d.\n", id
, type
);
2314 *err
= ERR_UNLOADED
;
2319 *domain
= res
->domain
;
2321 return res
->data
.val
;
2325 buffer_add_ptr_id (Buffer
*buf
, MonoDomain
*domain
, IdType type
, gpointer val
)
2327 int id
= get_id (domain
, type
, val
);
2329 buffer_add_id (buf
, id
);
2333 static inline MonoClass
*
2334 decode_typeid (guint8
*buf
, guint8
**endbuf
, guint8
*limit
, MonoDomain
**domain
, ErrorCode
*err
)
2338 klass
= (MonoClass
*)decode_ptr_id (buf
, endbuf
, limit
, ID_TYPE
, domain
, err
);
2339 if (G_UNLIKELY (log_level
>= 2) && klass
) {
2342 s
= mono_type_full_name (&klass
->byval_arg
);
2343 DEBUG_PRINTF (2, "[dbg] recv class [%s]\n", s
);
2349 static inline MonoAssembly
*
2350 decode_assemblyid (guint8
*buf
, guint8
**endbuf
, guint8
*limit
, MonoDomain
**domain
, ErrorCode
*err
)
2352 return (MonoAssembly
*)decode_ptr_id (buf
, endbuf
, limit
, ID_ASSEMBLY
, domain
, err
);
2355 static inline MonoImage
*
2356 decode_moduleid (guint8
*buf
, guint8
**endbuf
, guint8
*limit
, MonoDomain
**domain
, ErrorCode
*err
)
2358 return (MonoImage
*)decode_ptr_id (buf
, endbuf
, limit
, ID_MODULE
, domain
, err
);
2361 static inline MonoMethod
*
2362 decode_methodid (guint8
*buf
, guint8
**endbuf
, guint8
*limit
, MonoDomain
**domain
, ErrorCode
*err
)
2366 m
= (MonoMethod
*)decode_ptr_id (buf
, endbuf
, limit
, ID_METHOD
, domain
, err
);
2367 if (G_UNLIKELY (log_level
>= 2) && m
) {
2370 s
= mono_method_full_name (m
, TRUE
);
2371 DEBUG_PRINTF (2, "[dbg] recv method [%s]\n", s
);
2377 static inline MonoClassField
*
2378 decode_fieldid (guint8
*buf
, guint8
**endbuf
, guint8
*limit
, MonoDomain
**domain
, ErrorCode
*err
)
2380 return (MonoClassField
*)decode_ptr_id (buf
, endbuf
, limit
, ID_FIELD
, domain
, err
);
2383 static inline MonoDomain
*
2384 decode_domainid (guint8
*buf
, guint8
**endbuf
, guint8
*limit
, MonoDomain
**domain
, ErrorCode
*err
)
2386 return (MonoDomain
*)decode_ptr_id (buf
, endbuf
, limit
, ID_DOMAIN
, domain
, err
);
2389 static inline MonoProperty
*
2390 decode_propertyid (guint8
*buf
, guint8
**endbuf
, guint8
*limit
, MonoDomain
**domain
, ErrorCode
*err
)
2392 return (MonoProperty
*)decode_ptr_id (buf
, endbuf
, limit
, ID_PROPERTY
, domain
, err
);
2396 buffer_add_typeid (Buffer
*buf
, MonoDomain
*domain
, MonoClass
*klass
)
2398 buffer_add_ptr_id (buf
, domain
, ID_TYPE
, klass
);
2399 if (G_UNLIKELY (log_level
>= 2) && klass
) {
2402 s
= mono_type_full_name (&klass
->byval_arg
);
2403 if (is_debugger_thread ())
2404 DEBUG_PRINTF (2, "[dbg] send class [%s]\n", s
);
2406 DEBUG_PRINTF (2, "[%p] send class [%s]\n", (gpointer
) (gsize
) mono_native_thread_id_get (), s
);
2412 buffer_add_methodid (Buffer
*buf
, MonoDomain
*domain
, MonoMethod
*method
)
2414 buffer_add_ptr_id (buf
, domain
, ID_METHOD
, method
);
2415 if (G_UNLIKELY (log_level
>= 2) && method
) {
2418 s
= mono_method_full_name (method
, 1);
2419 DEBUG_PRINTF (2, "[dbg] send method [%s]\n", s
);
2425 buffer_add_assemblyid (Buffer
*buf
, MonoDomain
*domain
, MonoAssembly
*assembly
)
2429 id
= buffer_add_ptr_id (buf
, domain
, ID_ASSEMBLY
, assembly
);
2430 if (G_UNLIKELY (log_level
>= 2) && assembly
)
2431 DEBUG_PRINTF (2, "[dbg] send assembly [%s][%s][%d]\n", assembly
->aname
.name
, domain
->friendly_name
, id
);
2435 buffer_add_moduleid (Buffer
*buf
, MonoDomain
*domain
, MonoImage
*image
)
2437 buffer_add_ptr_id (buf
, domain
, ID_MODULE
, image
);
2441 buffer_add_fieldid (Buffer
*buf
, MonoDomain
*domain
, MonoClassField
*field
)
2443 buffer_add_ptr_id (buf
, domain
, ID_FIELD
, field
);
2447 buffer_add_propertyid (Buffer
*buf
, MonoDomain
*domain
, MonoProperty
*property
)
2449 buffer_add_ptr_id (buf
, domain
, ID_PROPERTY
, property
);
2453 buffer_add_domainid (Buffer
*buf
, MonoDomain
*domain
)
2455 buffer_add_ptr_id (buf
, domain
, ID_DOMAIN
, domain
);
2458 static void invoke_method (void);
2465 * save_thread_context:
2467 * Set CTX as the current threads context which is used for computing stack traces.
2468 * This function is signal-safe.
2471 save_thread_context (MonoContext
*ctx
)
2473 DebuggerTlsData
*tls
;
2475 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
2479 mono_thread_state_init_from_monoctx (&tls
->context
, ctx
);
2481 mono_thread_state_init_from_current (&tls
->context
);
2484 /* Number of threads suspended */
2486 * If this is equal to the size of thread_to_tls, the runtime is considered
2489 static gint32 threads_suspend_count
;
2491 static MonoCoopMutex suspend_mutex
;
2493 /* Cond variable used to wait for suspend_count becoming 0 */
2494 static MonoCoopCond suspend_cond
;
2496 /* Semaphore used to wait for a thread becoming suspended */
2497 static MonoCoopSem suspend_sem
;
2502 mono_coop_mutex_init (&suspend_mutex
);
2503 mono_coop_cond_init (&suspend_cond
);
2504 mono_coop_sem_init (&suspend_sem
, 0);
2509 StackFrameInfo last_frame
;
2510 gboolean last_frame_set
;
2514 } GetLastFrameUserData
;
2517 get_last_frame (StackFrameInfo
*info
, MonoContext
*ctx
, gpointer user_data
)
2519 GetLastFrameUserData
*data
= (GetLastFrameUserData
*)user_data
;
2521 if (info
->type
== FRAME_TYPE_MANAGED_TO_NATIVE
|| info
->type
== FRAME_TYPE_TRAMPOLINE
)
2524 if (!data
->last_frame_set
) {
2525 /* Store the last frame */
2526 memcpy (&data
->last_frame
, info
, sizeof (StackFrameInfo
));
2527 data
->last_frame_set
= TRUE
;
2530 /* Store the context/lmf for the frame above the last frame */
2531 memcpy (&data
->ctx
, ctx
, sizeof (MonoContext
));
2532 data
->lmf
= info
->lmf
;
2533 data
->domain
= info
->domain
;
2539 copy_unwind_state_from_frame_data (MonoThreadUnwindState
*to
, GetLastFrameUserData
*data
, gpointer jit_tls
)
2541 memcpy (&to
->ctx
, &data
->ctx
, sizeof (MonoContext
));
2543 to
->unwind_data
[MONO_UNWIND_DATA_DOMAIN
] = data
->domain
;
2544 to
->unwind_data
[MONO_UNWIND_DATA_LMF
] = data
->lmf
;
2545 to
->unwind_data
[MONO_UNWIND_DATA_JIT_TLS
] = jit_tls
;
2552 * Process interruption of a thread. This should be signal safe.
2554 * This always runs in the debugger thread.
2557 thread_interrupt (DebuggerTlsData
*tls
, MonoThreadInfo
*info
, MonoJitInfo
*ji
)
2560 MonoNativeThreadId tid
;
2564 ip
= MONO_CONTEXT_GET_IP (&mono_thread_info_get_suspend_state (info
)->ctx
);
2565 tid
= mono_thread_info_get_tid (info
);
2567 // FIXME: Races when the thread leaves managed code before hitting a single step
2570 if (ji
&& !ji
->is_trampoline
) {
2571 /* Running managed code, will be suspended by the single step code */
2572 DEBUG_PRINTF (1, "[%p] Received interrupt while at %s(%p), continuing.\n", (gpointer
)(gsize
)tid
, jinfo_get_method (ji
)->name
, ip
);
2575 * Running native code, will be suspended when it returns to/enters
2576 * managed code. Treat it as already suspended.
2577 * This might interrupt the code in process_single_step_inner (), we use the
2578 * tls->suspending flag to avoid races when that happens.
2580 if (!tls
->suspended
&& !tls
->suspending
) {
2581 GetLastFrameUserData data
;
2583 // FIXME: printf is not signal safe, but this is only used during
2584 // debugger debugging
2586 DEBUG_PRINTF (1, "[%p] Received interrupt while at %p, treating as suspended.\n", (gpointer
)(gsize
)tid
, ip
);
2587 //save_thread_context (&ctx);
2590 /* Already terminated */
2594 * We are in a difficult position: we want to be able to provide stack
2595 * traces for this thread, but we can't use the current ctx+lmf, since
2596 * the thread is still running, so it might return to managed code,
2597 * making these invalid.
2598 * So we start a stack walk and save the first frame, along with the
2599 * parent frame's ctx+lmf. This (hopefully) works because the thread will be
2600 * suspended when it returns to managed code, so the parent's ctx should
2603 data
.last_frame_set
= FALSE
;
2604 mono_get_eh_callbacks ()->mono_walk_stack_with_state (get_last_frame
, mono_thread_info_get_suspend_state (info
), MONO_UNWIND_SIGNAL_SAFE
, &data
);
2605 if (data
.last_frame_set
) {
2606 gpointer jit_tls
= ((MonoThreadInfo
*)tls
->thread
->thread_info
)->jit_data
;
2608 memcpy (&tls
->async_last_frame
, &data
.last_frame
, sizeof (StackFrameInfo
));
2610 copy_unwind_state_from_frame_data (&tls
->async_state
, &data
, jit_tls
);
2611 copy_unwind_state_from_frame_data (&tls
->context
, &data
, jit_tls
);
2613 tls
->async_state
.valid
= FALSE
;
2616 mono_memory_barrier ();
2618 tls
->suspended
= TRUE
;
2619 mono_coop_sem_post (&suspend_sem
);
2625 * reset_native_thread_suspend_state:
2627 * Reset the suspended flag and state on native threads
2630 reset_native_thread_suspend_state (gpointer key
, gpointer value
, gpointer user_data
)
2632 DebuggerTlsData
*tls
= (DebuggerTlsData
*)value
;
2634 if (!tls
->really_suspended
&& tls
->suspended
) {
2635 tls
->suspended
= FALSE
;
2637 * The thread might still be running if it was executing native code, so the state won't be invalided by
2638 * suspend_current ().
2640 tls
->context
.valid
= FALSE
;
2641 tls
->async_state
.valid
= FALSE
;
2642 invalidate_frames (tls
);
2647 DebuggerTlsData
*tls
;
2648 gboolean valid_info
;
2651 static SuspendThreadResult
2652 debugger_interrupt_critical (MonoThreadInfo
*info
, gpointer user_data
)
2654 InterruptData
*data
= (InterruptData
*)user_data
;
2657 data
->valid_info
= TRUE
;
2658 ji
= mono_jit_info_table_find_internal (
2659 (MonoDomain
*)mono_thread_info_get_suspend_state (info
)->unwind_data
[MONO_UNWIND_DATA_DOMAIN
],
2660 (char *)MONO_CONTEXT_GET_IP (&mono_thread_info_get_suspend_state (info
)->ctx
),
2664 /* This is signal safe */
2665 thread_interrupt (data
->tls
, info
, ji
);
2666 return MonoResumeThread
;
2672 * Notify a thread that it needs to suspend.
2675 notify_thread (gpointer key
, gpointer value
, gpointer user_data
)
2677 MonoInternalThread
*thread
= (MonoInternalThread
*)key
;
2678 DebuggerTlsData
*tls
= (DebuggerTlsData
*)value
;
2679 MonoNativeThreadId tid
= MONO_UINT_TO_NATIVE_THREAD_ID (thread
->tid
);
2681 if (mono_native_thread_id_equals (mono_native_thread_id_get (), tid
) || tls
->terminated
)
2684 DEBUG_PRINTF (1, "[%p] Interrupting %p...\n", (gpointer
) (gsize
) mono_native_thread_id_get (), (gpointer
)tid
);
2686 /* This is _not_ equivalent to mono_thread_internal_abort () */
2687 InterruptData interrupt_data
= { 0 };
2688 interrupt_data
.tls
= tls
;
2690 mono_thread_info_safe_suspend_and_run ((MonoNativeThreadId
)(gpointer
)(gsize
)thread
->tid
, FALSE
, debugger_interrupt_critical
, &interrupt_data
);
2691 if (!interrupt_data
.valid_info
) {
2692 DEBUG_PRINTF (1, "[%p] mono_thread_info_suspend_sync () failed for %p...\n", (gpointer
) (gsize
) mono_native_thread_id_get (), (gpointer
)tid
);
2694 * Attached thread which died without detaching.
2696 tls
->terminated
= TRUE
;
2701 process_suspend (DebuggerTlsData
*tls
, MonoContext
*ctx
)
2703 guint8
*ip
= (guint8
*)MONO_CONTEXT_GET_IP (ctx
);
2707 if (mono_loader_lock_is_owned_by_self ()) {
2709 * Shortcut for the check in suspend_current (). This speeds up processing
2710 * when executing long running code inside the loader lock, i.e. assembly load
2716 if (is_debugger_thread ())
2719 /* Prevent races with mono_debugger_agent_thread_interrupt () */
2720 if (suspend_count
- tls
->resume_count
> 0)
2721 tls
->suspending
= TRUE
;
2723 DEBUG_PRINTF (1, "[%p] Received single step event for suspending.\n", (gpointer
) (gsize
) mono_native_thread_id_get ());
2725 if (suspend_count
- tls
->resume_count
== 0) {
2727 * We are executing a single threaded invoke but the single step for
2728 * suspending is still active.
2729 * FIXME: This slows down single threaded invokes.
2731 DEBUG_PRINTF (1, "[%p] Ignored during single threaded invoke.\n", (gpointer
) (gsize
) mono_native_thread_id_get ());
2735 ji
= mini_jit_info_table_find (mono_domain_get (), (char*)ip
, NULL
);
2737 /* Can't suspend in these methods */
2738 method
= jinfo_get_method (ji
);
2739 if (method
->klass
== mono_defaults
.string_class
&& (!strcmp (method
->name
, "memset") || strstr (method
->name
, "memcpy")))
2742 save_thread_context (ctx
);
2750 * Increase the suspend count of the VM. While the suspend count is greater
2751 * than 0, runtime threads are suspended at certain points during execution.
2756 mono_loader_lock ();
2758 mono_coop_mutex_lock (&suspend_mutex
);
2762 DEBUG_PRINTF (1, "[%p] Suspending vm...\n", (gpointer
) (gsize
) mono_native_thread_id_get ());
2764 if (suspend_count
== 1) {
2765 // FIXME: Is it safe to call this inside the lock ?
2766 start_single_stepping ();
2767 mono_g_hash_table_foreach (thread_to_tls
, notify_thread
, NULL
);
2770 mono_coop_mutex_unlock (&suspend_mutex
);
2772 if (suspend_count
== 1)
2774 * Suspend creation of new threadpool threads, since they cannot run
2776 mono_threadpool_ms_suspend ();
2778 mono_loader_unlock ();
2784 * Decrease the suspend count of the VM. If the count reaches 0, runtime threads
2790 g_assert (is_debugger_thread ());
2792 mono_loader_lock ();
2794 mono_coop_mutex_lock (&suspend_mutex
);
2796 g_assert (suspend_count
> 0);
2799 DEBUG_PRINTF (1, "[%p] Resuming vm, suspend count=%d...\n", (gpointer
) (gsize
) mono_native_thread_id_get (), suspend_count
);
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
);
2807 /* Signal this even when suspend_count > 0, since some threads might have resume_count > 0 */
2808 mono_coop_cond_broadcast (&suspend_cond
);
2810 mono_coop_mutex_unlock (&suspend_mutex
);
2811 //g_assert (err == 0);
2813 if (suspend_count
== 0)
2814 mono_threadpool_ms_resume ();
2816 mono_loader_unlock ();
2822 * Resume just one thread.
2825 resume_thread (MonoInternalThread
*thread
)
2827 DebuggerTlsData
*tls
;
2829 g_assert (is_debugger_thread ());
2831 mono_loader_lock ();
2833 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, thread
);
2836 mono_coop_mutex_lock (&suspend_mutex
);
2838 g_assert (suspend_count
> 0);
2840 DEBUG_PRINTF (1, "[sdb] Resuming thread %p...\n", (gpointer
)(gssize
)thread
->tid
);
2842 tls
->resume_count
+= suspend_count
;
2845 * Signal suspend_count without decreasing suspend_count, the threads will wake up
2846 * but only the one whose resume_count field is > 0 will be resumed.
2848 mono_coop_cond_broadcast (&suspend_cond
);
2850 mono_coop_mutex_unlock (&suspend_mutex
);
2851 //g_assert (err == 0);
2853 mono_loader_unlock ();
2857 free_frames (StackFrame
**frames
, int nframes
)
2861 for (i
= 0; i
< nframes
; ++i
) {
2862 if (frames
[i
]->jit
)
2863 mono_debug_free_method_jit_info (frames
[i
]->jit
);
2864 g_free (frames
[i
]);
2870 invalidate_frames (DebuggerTlsData
*tls
)
2873 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
2876 free_frames (tls
->frames
, tls
->frame_count
);
2877 tls
->frame_count
= 0;
2880 free_frames (tls
->restore_frames
, tls
->restore_frame_count
);
2881 tls
->restore_frame_count
= 0;
2882 tls
->restore_frames
= NULL
;
2888 * Suspend the current thread until the runtime is resumed. If the thread has a
2889 * pending invoke, then the invoke is executed before this function returns.
2892 suspend_current (void)
2894 DebuggerTlsData
*tls
;
2896 g_assert (!is_debugger_thread ());
2898 if (mono_loader_lock_is_owned_by_self ()) {
2900 * If we own the loader mutex, can't suspend until we release it, since the
2901 * whole runtime can deadlock otherwise.
2906 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
2909 mono_coop_mutex_lock (&suspend_mutex
);
2911 tls
->suspending
= FALSE
;
2912 tls
->really_suspended
= TRUE
;
2914 if (!tls
->suspended
) {
2915 tls
->suspended
= TRUE
;
2916 mono_coop_sem_post (&suspend_sem
);
2919 DEBUG_PRINTF (1, "[%p] Suspended.\n", (gpointer
) (gsize
) mono_native_thread_id_get ());
2921 while (suspend_count
- tls
->resume_count
> 0) {
2922 mono_coop_cond_wait (&suspend_cond
, &suspend_mutex
);
2925 tls
->suspended
= FALSE
;
2926 tls
->really_suspended
= FALSE
;
2928 threads_suspend_count
--;
2930 mono_coop_mutex_unlock (&suspend_mutex
);
2932 DEBUG_PRINTF (1, "[%p] Resumed.\n", (gpointer
) (gsize
) mono_native_thread_id_get ());
2934 if (tls
->pending_invoke
) {
2935 /* Save the original context */
2936 tls
->pending_invoke
->has_ctx
= TRUE
;
2937 tls
->pending_invoke
->ctx
= tls
->context
.ctx
;
2942 /* The frame info becomes invalid after a resume */
2943 tls
->context
.valid
= FALSE
;
2944 tls
->async_state
.valid
= FALSE
;
2945 invalidate_frames (tls
);
2949 count_thread (gpointer key
, gpointer value
, gpointer user_data
)
2951 DebuggerTlsData
*tls
= (DebuggerTlsData
*)value
;
2953 if (!tls
->suspended
&& !tls
->terminated
)
2954 *(int*)user_data
= *(int*)user_data
+ 1;
2958 count_threads_to_wait_for (void)
2962 mono_loader_lock ();
2963 mono_g_hash_table_foreach (thread_to_tls
, count_thread
, &count
);
2964 mono_loader_unlock ();
2972 * Wait until the runtime is completely suspended.
2975 wait_for_suspend (void)
2977 int nthreads
, nwait
, err
;
2978 gboolean waited
= FALSE
;
2980 // FIXME: Threads starting/stopping ?
2981 mono_loader_lock ();
2982 nthreads
= mono_g_hash_table_size (thread_to_tls
);
2983 mono_loader_unlock ();
2986 nwait
= count_threads_to_wait_for ();
2988 DEBUG_PRINTF (1, "Waiting for %d(%d) threads to suspend...\n", nwait
, nthreads
);
2989 err
= mono_coop_sem_wait (&suspend_sem
, MONO_SEM_FLAGS_NONE
);
2990 g_assert (err
== 0);
2998 DEBUG_PRINTF (1, "%d threads suspended.\n", nthreads
);
3004 * Return whenever the runtime is suspended.
3009 return count_threads_to_wait_for () == 0;
3013 no_seq_points_found (MonoMethod
*method
, int offset
)
3016 * This can happen in full-aot mode with assemblies AOTed without the 'soft-debug' option to save space.
3018 printf ("Unable to find seq points for method '%s', offset 0x%x.\n", mono_method_full_name (method
, TRUE
), offset
);
3022 DebuggerTlsData
*tls
;
3024 } ComputeFramesUserData
;
3027 process_frame (StackFrameInfo
*info
, MonoContext
*ctx
, gpointer user_data
)
3029 ComputeFramesUserData
*ud
= (ComputeFramesUserData
*)user_data
;
3031 MonoMethod
*method
, *actual_method
, *api_method
;
3035 if (info
->type
!= FRAME_TYPE_MANAGED
) {
3036 if (info
->type
== FRAME_TYPE_DEBUGGER_INVOKE
) {
3037 /* Mark the last frame as an invoke frame */
3039 ((StackFrame
*)g_slist_last (ud
->frames
)->data
)->flags
|= FRAME_FLAG_DEBUGGER_INVOKE
;
3045 method
= jinfo_get_method (info
->ji
);
3047 method
= info
->method
;
3048 actual_method
= info
->actual_method
;
3049 api_method
= method
;
3054 if (!method
|| (method
->wrapper_type
&& method
->wrapper_type
!= MONO_WRAPPER_DYNAMIC_METHOD
&& method
->wrapper_type
!= MONO_WRAPPER_MANAGED_TO_NATIVE
))
3057 if (info
->il_offset
== -1) {
3058 /* mono_debug_il_offset_from_address () doesn't seem to be precise enough (#2092) */
3059 if (ud
->frames
== NULL
) {
3060 if (mono_find_prev_seq_point_for_native_offset (info
->domain
, method
, info
->native_offset
, NULL
, &sp
))
3061 info
->il_offset
= sp
.il_offset
;
3063 if (info
->il_offset
== -1)
3064 info
->il_offset
= mono_debug_il_offset_from_address (method
, info
->domain
, info
->native_offset
);
3067 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
);
3069 if (method
->wrapper_type
== MONO_WRAPPER_MANAGED_TO_NATIVE
) {
3070 if (!CHECK_PROTOCOL_VERSION (2, 17))
3071 /* Older clients can't handle this flag */
3073 api_method
= mono_marshal_method_from_wrapper (method
);
3076 actual_method
= api_method
;
3077 flags
|= FRAME_FLAG_NATIVE_TRANSITION
;
3080 frame
= g_new0 (StackFrame
, 1);
3081 frame
->method
= method
;
3082 frame
->actual_method
= actual_method
;
3083 frame
->api_method
= api_method
;
3084 frame
->il_offset
= info
->il_offset
;
3085 frame
->native_offset
= info
->native_offset
;
3086 frame
->flags
= flags
;
3087 frame
->ji
= info
->ji
;
3088 if (info
->reg_locations
)
3089 memcpy (frame
->reg_locations
, info
->reg_locations
, MONO_MAX_IREGS
* sizeof (mgreg_t
*));
3092 frame
->has_ctx
= TRUE
;
3094 frame
->domain
= info
->domain
;
3096 ud
->frames
= g_slist_append (ud
->frames
, frame
);
3102 process_filter_frame (StackFrameInfo
*info
, MonoContext
*ctx
, gpointer user_data
)
3104 ComputeFramesUserData
*ud
= (ComputeFramesUserData
*)user_data
;
3107 * 'tls->filter_ctx' is the location of the throw site.
3109 * mono_walk_stack() will never actually hit the throw site, but unwind
3110 * directly from the filter to the call site; we abort stack unwinding here
3111 * once this happens and resume from the throw site.
3114 if (MONO_CONTEXT_GET_SP (ctx
) >= MONO_CONTEXT_GET_SP (&ud
->tls
->filter_state
.ctx
))
3117 return process_frame (info
, ctx
, user_data
);
3121 * Return a malloc-ed list of StackFrame structures.
3124 compute_frame_info_from (MonoInternalThread
*thread
, DebuggerTlsData
*tls
, MonoThreadUnwindState
*state
, int *out_nframes
)
3126 ComputeFramesUserData user_data
;
3127 MonoUnwindOptions opts
= (MonoUnwindOptions
)(MONO_UNWIND_DEFAULT
| MONO_UNWIND_REG_LOCATIONS
);
3132 user_data
.tls
= tls
;
3133 user_data
.frames
= NULL
;
3135 mono_walk_stack_with_state (process_frame
, state
, opts
, &user_data
);
3137 nframes
= g_slist_length (user_data
.frames
);
3138 res
= g_new0 (StackFrame
*, nframes
);
3139 l
= user_data
.frames
;
3140 for (i
= 0; i
< nframes
; ++i
) {
3141 res
[i
] = (StackFrame
*)l
->data
;
3144 *out_nframes
= nframes
;
3150 compute_frame_info (MonoInternalThread
*thread
, DebuggerTlsData
*tls
)
3152 ComputeFramesUserData user_data
;
3154 int i
, findex
, new_frame_count
;
3155 StackFrame
**new_frames
, *f
;
3156 MonoUnwindOptions opts
= (MonoUnwindOptions
)(MONO_UNWIND_DEFAULT
| MONO_UNWIND_REG_LOCATIONS
);
3158 // FIXME: Locking on tls
3159 if (tls
->frames
&& tls
->frames_up_to_date
)
3162 DEBUG_PRINTF (1, "Frames for %p(tid=%lx):\n", thread
, (glong
)thread
->tid
);
3164 user_data
.tls
= tls
;
3165 user_data
.frames
= NULL
;
3166 if (tls
->terminated
) {
3167 tls
->frame_count
= 0;
3169 } if (!tls
->really_suspended
&& tls
->async_state
.valid
) {
3170 /* Have to use the state saved by the signal handler */
3171 process_frame (&tls
->async_last_frame
, NULL
, &user_data
);
3172 mono_walk_stack_with_state (process_frame
, &tls
->async_state
, opts
, &user_data
);
3173 } else if (tls
->filter_state
.valid
) {
3175 * We are inside an exception filter.
3177 * First we add all the frames from inside the filter; 'tls->ctx' has the current context.
3179 if (tls
->context
.valid
)
3180 mono_walk_stack_with_state (process_filter_frame
, &tls
->context
, opts
, &user_data
);
3182 * After that, we resume unwinding from the location where the exception has been thrown.
3184 mono_walk_stack_with_state (process_frame
, &tls
->filter_state
, opts
, &user_data
);
3185 } else if (tls
->context
.valid
) {
3186 mono_walk_stack_with_state (process_frame
, &tls
->context
, opts
, &user_data
);
3189 tls
->frame_count
= 0;
3193 new_frame_count
= g_slist_length (user_data
.frames
);
3194 new_frames
= g_new0 (StackFrame
*, new_frame_count
);
3196 for (tmp
= user_data
.frames
; tmp
; tmp
= tmp
->next
) {
3197 f
= (StackFrame
*)tmp
->data
;
3200 * Reuse the id for already existing stack frames, so invokes don't invalidate
3201 * the still valid stack frames.
3203 for (i
= 0; i
< tls
->frame_count
; ++i
) {
3204 if (MONO_CONTEXT_GET_SP (&tls
->frames
[i
]->ctx
) == MONO_CONTEXT_GET_SP (&f
->ctx
)) {
3205 f
->id
= tls
->frames
[i
]->id
;
3210 if (i
>= tls
->frame_count
)
3211 f
->id
= InterlockedIncrement (&frame_id
);
3213 new_frames
[findex
++] = f
;
3216 g_slist_free (user_data
.frames
);
3218 invalidate_frames (tls
);
3220 tls
->frames
= new_frames
;
3221 tls
->frame_count
= new_frame_count
;
3222 tls
->frames_up_to_date
= TRUE
;
3226 * GHFunc to emit an appdomain creation event
3227 * @param key Don't care
3228 * @param value A loaded appdomain
3229 * @param user_data Don't care
3232 emit_appdomain_load (gpointer key
, gpointer value
, gpointer user_data
)
3234 process_profiler_event (EVENT_KIND_APPDOMAIN_CREATE
, value
);
3235 g_hash_table_foreach (get_agent_domain_info ((MonoDomain
*)value
)->loaded_classes
, emit_type_load
, NULL
);
3239 * GHFunc to emit a thread start event
3240 * @param key A thread id
3241 * @param value A thread object
3242 * @param user_data Don't care
3245 emit_thread_start (gpointer key
, gpointer value
, gpointer user_data
)
3247 if (!mono_native_thread_id_equals (MONO_UINT_TO_NATIVE_THREAD_ID (GPOINTER_TO_UINT (key
)), debugger_thread_id
))
3248 process_profiler_event (EVENT_KIND_THREAD_START
, value
);
3252 * GFunc to emit an assembly load event
3253 * @param value A loaded assembly
3254 * @param user_data Don't care
3257 emit_assembly_load (gpointer value
, gpointer user_data
)
3259 process_profiler_event (EVENT_KIND_ASSEMBLY_LOAD
, value
);
3263 * GFunc to emit a type load event
3264 * @param value A loaded type
3265 * @param user_data Don't care
3268 emit_type_load (gpointer key
, gpointer value
, gpointer user_data
)
3270 process_profiler_event (EVENT_KIND_TYPE_LOAD
, value
);
3274 strdup_tolower (char *s
)
3279 for (p
= s2
; *p
; ++p
)
3285 * Same as g_path_get_basename () but handles windows paths as well,
3286 * which can occur in .mdb files created by pdb2mdb.
3289 dbg_path_get_basename (const char *filename
)
3293 if (!filename
|| strchr (filename
, '/') || !strchr (filename
, '\\'))
3294 return g_path_get_basename (filename
);
3298 /* No separator -> filename */
3299 r
= strrchr (filename
, '\\');
3301 return g_strdup (filename
);
3303 /* Trailing slash, remove component */
3305 char *copy
= g_strdup (filename
);
3306 copy
[r
-filename
] = 0;
3307 r
= strrchr (copy
, '\\');
3311 return g_strdup ("/");
3313 r
= g_strdup (&r
[1]);
3318 return g_strdup (&r
[1]);
3322 init_jit_info_dbg_attrs (MonoJitInfo
*ji
)
3324 static MonoClass
*hidden_klass
, *step_through_klass
, *non_user_klass
;
3326 MonoCustomAttrInfo
*ainfo
;
3328 if (ji
->dbg_attrs_inited
)
3332 hidden_klass
= mono_class_load_from_name (mono_defaults
.corlib
, "System.Diagnostics", "DebuggerHiddenAttribute");
3334 if (!step_through_klass
)
3335 step_through_klass
= mono_class_load_from_name (mono_defaults
.corlib
, "System.Diagnostics", "DebuggerStepThroughAttribute");
3337 if (!non_user_klass
)
3338 non_user_klass
= mono_class_load_from_name (mono_defaults
.corlib
, "System.Diagnostics", "DebuggerNonUserCodeAttribute");
3340 ainfo
= mono_custom_attrs_from_method_checked (jinfo_get_method (ji
), &error
);
3341 mono_error_cleanup (&error
); /* FIXME don't swallow the error? */
3343 if (mono_custom_attrs_has_attr (ainfo
, hidden_klass
))
3344 ji
->dbg_hidden
= TRUE
;
3345 if (mono_custom_attrs_has_attr (ainfo
, step_through_klass
))
3346 ji
->dbg_step_through
= TRUE
;
3347 if (mono_custom_attrs_has_attr (ainfo
, non_user_klass
))
3348 ji
->dbg_non_user_code
= TRUE
;
3349 mono_custom_attrs_free (ainfo
);
3352 ainfo
= mono_custom_attrs_from_class_checked (jinfo_get_method (ji
)->klass
, &error
);
3353 mono_error_cleanup (&error
); /* FIXME don't swallow the error? */
3355 if (mono_custom_attrs_has_attr (ainfo
, step_through_klass
))
3356 ji
->dbg_step_through
= TRUE
;
3357 if (mono_custom_attrs_has_attr (ainfo
, non_user_klass
))
3358 ji
->dbg_non_user_code
= TRUE
;
3359 mono_custom_attrs_free (ainfo
);
3362 mono_memory_barrier ();
3363 ji
->dbg_attrs_inited
= TRUE
;
3371 * create_event_list:
3373 * Return a list of event request ids matching EVENT, starting from REQS, which
3374 * can be NULL to include all event requests. Set SUSPEND_POLICY to the suspend
3376 * We return request ids, instead of requests, to simplify threading, since
3377 * requests could be deleted anytime when the loader lock is not held.
3378 * LOCKING: Assumes the loader lock is held.
3381 create_event_list (EventKind event
, GPtrArray
*reqs
, MonoJitInfo
*ji
, EventInfo
*ei
, int *suspend_policy
)
3384 GSList
*events
= NULL
;
3386 *suspend_policy
= SUSPEND_POLICY_NONE
;
3389 reqs
= event_requests
;
3394 for (i
= 0; i
< reqs
->len
; ++i
) {
3395 EventRequest
*req
= (EventRequest
*)g_ptr_array_index (reqs
, i
);
3396 if (req
->event_kind
== event
) {
3397 gboolean filtered
= FALSE
;
3400 for (j
= 0; j
< req
->nmodifiers
; ++j
) {
3401 Modifier
*mod
= &req
->modifiers
[j
];
3403 if (mod
->kind
== MOD_KIND_COUNT
) {
3405 if (mod
->data
.count
> 0) {
3406 if (mod
->data
.count
> 0) {
3408 if (mod
->data
.count
== 0)
3412 } else if (mod
->kind
== MOD_KIND_THREAD_ONLY
) {
3413 if (mod
->data
.thread
!= mono_thread_internal_current ())
3415 } else if (mod
->kind
== MOD_KIND_EXCEPTION_ONLY
&& ei
) {
3416 if (mod
->data
.exc_class
&& mod
->subclasses
&& !mono_class_is_assignable_from (mod
->data
.exc_class
, ei
->exc
->vtable
->klass
))
3418 if (mod
->data
.exc_class
&& !mod
->subclasses
&& mod
->data
.exc_class
!= ei
->exc
->vtable
->klass
)
3420 if (ei
->caught
&& !mod
->caught
)
3422 if (!ei
->caught
&& !mod
->uncaught
)
3424 } else if (mod
->kind
== MOD_KIND_ASSEMBLY_ONLY
&& ji
) {
3426 gboolean found
= FALSE
;
3427 MonoAssembly
**assemblies
= mod
->data
.assemblies
;
3430 for (k
= 0; assemblies
[k
]; ++k
)
3431 if (assemblies
[k
] == jinfo_get_method (ji
)->klass
->image
->assembly
)
3436 } else if (mod
->kind
== MOD_KIND_SOURCE_FILE_ONLY
&& ei
&& ei
->klass
) {
3437 gpointer iter
= NULL
;
3439 MonoDebugSourceInfo
*sinfo
;
3440 char *source_file
, *s
;
3441 gboolean found
= FALSE
;
3443 GPtrArray
*source_file_list
;
3445 while ((method
= mono_class_get_methods (ei
->klass
, &iter
))) {
3446 MonoDebugMethodInfo
*minfo
= mono_debug_lookup_method (method
);
3449 mono_debug_get_seq_points (minfo
, &source_file
, &source_file_list
, NULL
, NULL
, NULL
);
3450 for (i
= 0; i
< source_file_list
->len
; ++i
) {
3451 sinfo
= (MonoDebugSourceInfo
*)g_ptr_array_index (source_file_list
, i
);
3453 * Do a case-insesitive match by converting the file name to
3456 s
= strdup_tolower (sinfo
->source_file
);
3457 if (g_hash_table_lookup (mod
->data
.source_files
, s
))
3460 char *s2
= dbg_path_get_basename (sinfo
->source_file
);
3461 char *s3
= strdup_tolower (s2
);
3463 if (g_hash_table_lookup (mod
->data
.source_files
, s3
))
3470 g_ptr_array_free (source_file_list
, TRUE
);
3475 } else if (mod
->kind
== MOD_KIND_TYPE_NAME_ONLY
&& ei
&& ei
->klass
) {
3478 s
= mono_type_full_name (&ei
->klass
->byval_arg
);
3479 if (!g_hash_table_lookup (mod
->data
.type_names
, s
))
3482 } else if (mod
->kind
== MOD_KIND_STEP
) {
3483 if ((mod
->data
.filter
& STEP_FILTER_STATIC_CTOR
) && ji
&&
3484 (jinfo_get_method (ji
)->flags
& METHOD_ATTRIBUTE_SPECIAL_NAME
) &&
3485 !strcmp (jinfo_get_method (ji
)->name
, ".cctor") &&
3486 (jinfo_get_method (ji
) != ((SingleStepReq
*)req
->info
)->start_method
))
3488 if ((mod
->data
.filter
& STEP_FILTER_DEBUGGER_HIDDEN
) && ji
) {
3489 init_jit_info_dbg_attrs (ji
);
3493 if ((mod
->data
.filter
& STEP_FILTER_DEBUGGER_STEP_THROUGH
) && ji
) {
3494 init_jit_info_dbg_attrs (ji
);
3495 if (ji
->dbg_step_through
)
3498 if ((mod
->data
.filter
& STEP_FILTER_DEBUGGER_NON_USER_CODE
) && ji
) {
3499 init_jit_info_dbg_attrs (ji
);
3500 if (ji
->dbg_non_user_code
)
3507 *suspend_policy
= MAX (*suspend_policy
, req
->suspend_policy
);
3508 events
= g_slist_append (events
, GINT_TO_POINTER (req
->id
));
3513 /* Send a VM START/DEATH event by default */
3514 if (event
== EVENT_KIND_VM_START
)
3515 events
= g_slist_append (events
, GINT_TO_POINTER (0));
3516 if (event
== EVENT_KIND_VM_DEATH
)
3517 events
= g_slist_append (events
, GINT_TO_POINTER (0));
3522 static G_GNUC_UNUSED
const char*
3523 event_to_string (EventKind event
)
3526 case EVENT_KIND_VM_START
: return "VM_START";
3527 case EVENT_KIND_VM_DEATH
: return "VM_DEATH";
3528 case EVENT_KIND_THREAD_START
: return "THREAD_START";
3529 case EVENT_KIND_THREAD_DEATH
: return "THREAD_DEATH";
3530 case EVENT_KIND_APPDOMAIN_CREATE
: return "APPDOMAIN_CREATE";
3531 case EVENT_KIND_APPDOMAIN_UNLOAD
: return "APPDOMAIN_UNLOAD";
3532 case EVENT_KIND_METHOD_ENTRY
: return "METHOD_ENTRY";
3533 case EVENT_KIND_METHOD_EXIT
: return "METHOD_EXIT";
3534 case EVENT_KIND_ASSEMBLY_LOAD
: return "ASSEMBLY_LOAD";
3535 case EVENT_KIND_ASSEMBLY_UNLOAD
: return "ASSEMBLY_UNLOAD";
3536 case EVENT_KIND_BREAKPOINT
: return "BREAKPOINT";
3537 case EVENT_KIND_STEP
: return "STEP";
3538 case EVENT_KIND_TYPE_LOAD
: return "TYPE_LOAD";
3539 case EVENT_KIND_EXCEPTION
: return "EXCEPTION";
3540 case EVENT_KIND_KEEPALIVE
: return "KEEPALIVE";
3541 case EVENT_KIND_USER_BREAK
: return "USER_BREAK";
3542 case EVENT_KIND_USER_LOG
: return "USER_LOG";
3544 g_assert_not_reached ();
3552 * Send an event to the client, suspending the vm if needed.
3553 * LOCKING: Since this can suspend the calling thread, no locks should be held
3555 * The EVENTS list is freed by this function.
3558 process_event (EventKind event
, gpointer arg
, gint32 il_offset
, MonoContext
*ctx
, GSList
*events
, int suspend_policy
)
3562 MonoDomain
*domain
= mono_domain_get ();
3563 MonoThread
*thread
= NULL
;
3564 MonoObject
*keepalive_obj
= NULL
;
3565 gboolean send_success
= FALSE
;
3570 DEBUG_PRINTF (2, "Debugger agent not initialized yet: dropping %s\n", event_to_string (event
));
3574 if (!vm_start_event_sent
&& event
!= EVENT_KIND_VM_START
) {
3575 // FIXME: We miss those events
3576 DEBUG_PRINTF (2, "VM start event not sent yet: dropping %s\n", event_to_string (event
));
3580 if (vm_death_event_sent
) {
3581 DEBUG_PRINTF (2, "VM death event has been sent: dropping %s\n", event_to_string (event
));
3585 if (mono_runtime_is_shutting_down () && event
!= EVENT_KIND_VM_DEATH
) {
3586 DEBUG_PRINTF (2, "Mono runtime is shutting down: dropping %s\n", event_to_string (event
));
3591 DEBUG_PRINTF (2, "Debugger client is not connected: dropping %s\n", event_to_string (event
));
3595 if (event
== EVENT_KIND_KEEPALIVE
)
3596 suspend_policy
= SUSPEND_POLICY_NONE
;
3601 if (agent_config
.defer
) {
3602 /* Make sure the thread id is always set when doing deferred debugging */
3603 if (is_debugger_thread ()) {
3604 /* Don't suspend on events from the debugger thread */
3605 suspend_policy
= SUSPEND_POLICY_NONE
;
3606 thread
= mono_thread_get_main ();
3608 else thread
= mono_thread_current ();
3610 if (is_debugger_thread () && event
!= EVENT_KIND_VM_DEATH
)
3611 // FIXME: Send these with a NULL thread, don't suspend the current thread
3616 nevents
= g_slist_length (events
);
3617 buffer_init (&buf
, 128);
3618 buffer_add_byte (&buf
, suspend_policy
);
3619 buffer_add_int (&buf
, nevents
);
3621 for (l
= events
; l
; l
= l
->next
) {
3622 buffer_add_byte (&buf
, event
); // event kind
3623 buffer_add_int (&buf
, GPOINTER_TO_INT (l
->data
)); // request id
3627 if (event
== EVENT_KIND_VM_DEATH
) {
3631 thread
= mono_thread_current ();
3633 if (event
== EVENT_KIND_VM_START
&& arg
!= NULL
)
3634 thread
= (MonoThread
*)arg
;
3637 buffer_add_objid (&buf
, (MonoObject
*)thread
); // thread
3640 case EVENT_KIND_THREAD_START
:
3641 case EVENT_KIND_THREAD_DEATH
:
3643 case EVENT_KIND_APPDOMAIN_CREATE
:
3644 case EVENT_KIND_APPDOMAIN_UNLOAD
:
3645 buffer_add_domainid (&buf
, (MonoDomain
*)arg
);
3647 case EVENT_KIND_METHOD_ENTRY
:
3648 case EVENT_KIND_METHOD_EXIT
:
3649 buffer_add_methodid (&buf
, domain
, (MonoMethod
*)arg
);
3651 case EVENT_KIND_ASSEMBLY_LOAD
:
3652 buffer_add_assemblyid (&buf
, domain
, (MonoAssembly
*)arg
);
3654 case EVENT_KIND_ASSEMBLY_UNLOAD
: {
3655 DebuggerTlsData
*tls
;
3657 /* The domain the assembly belonged to is not equal to the current domain */
3658 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
3660 g_assert (tls
->domain_unloading
);
3662 buffer_add_assemblyid (&buf
, tls
->domain_unloading
, (MonoAssembly
*)arg
);
3665 case EVENT_KIND_TYPE_LOAD
:
3666 buffer_add_typeid (&buf
, domain
, (MonoClass
*)arg
);
3668 case EVENT_KIND_BREAKPOINT
:
3669 case EVENT_KIND_STEP
:
3670 buffer_add_methodid (&buf
, domain
, (MonoMethod
*)arg
);
3671 buffer_add_long (&buf
, il_offset
);
3673 case EVENT_KIND_VM_START
:
3674 buffer_add_domainid (&buf
, mono_get_root_domain ());
3676 case EVENT_KIND_VM_DEATH
:
3677 if (CHECK_PROTOCOL_VERSION (2, 27))
3678 buffer_add_int (&buf
, mono_environment_exitcode_get ());
3680 case EVENT_KIND_EXCEPTION
: {
3681 EventInfo
*ei
= (EventInfo
*)arg
;
3682 buffer_add_objid (&buf
, ei
->exc
);
3684 * We are not yet suspending, so get_objref () will not keep this object alive. So we need to do it
3685 * later after the suspension. (#12494).
3687 keepalive_obj
= ei
->exc
;
3690 case EVENT_KIND_USER_BREAK
:
3692 case EVENT_KIND_USER_LOG
: {
3693 EventInfo
*ei
= (EventInfo
*)arg
;
3694 buffer_add_int (&buf
, ei
->level
);
3695 buffer_add_string (&buf
, ei
->category
? ei
->category
: "");
3696 buffer_add_string (&buf
, ei
->message
? ei
->message
: "");
3699 case EVENT_KIND_KEEPALIVE
:
3700 suspend_policy
= SUSPEND_POLICY_NONE
;
3703 g_assert_not_reached ();
3707 if (event
== EVENT_KIND_VM_START
) {
3708 suspend_policy
= agent_config
.suspend
? SUSPEND_POLICY_ALL
: SUSPEND_POLICY_NONE
;
3709 if (!agent_config
.defer
)
3710 start_debugger_thread ();
3713 if (event
== EVENT_KIND_VM_DEATH
) {
3714 vm_death_event_sent
= TRUE
;
3715 suspend_policy
= SUSPEND_POLICY_NONE
;
3718 if (mono_runtime_is_shutting_down ())
3719 suspend_policy
= SUSPEND_POLICY_NONE
;
3721 if (suspend_policy
!= SUSPEND_POLICY_NONE
) {
3723 * Save the thread context and start suspending before sending the packet,
3724 * since we could be receiving the resume request before send_packet ()
3727 save_thread_context (ctx
);
3731 /* This will keep this object alive */
3732 get_objref (keepalive_obj
);
3735 send_success
= send_packet (CMD_SET_EVENT
, CMD_COMPOSITE
, &buf
);
3739 g_slist_free (events
);
3742 if (!send_success
) {
3743 DEBUG_PRINTF (2, "Sending command %s failed.\n", event_to_string (event
));
3747 if (event
== EVENT_KIND_VM_START
) {
3748 vm_start_event_sent
= TRUE
;
3751 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
);
3753 switch (suspend_policy
) {
3754 case SUSPEND_POLICY_NONE
:
3756 case SUSPEND_POLICY_ALL
:
3759 case SUSPEND_POLICY_EVENT_THREAD
:
3763 g_assert_not_reached ();
3768 process_profiler_event (EventKind event
, gpointer arg
)
3772 EventInfo ei
, *ei_arg
= NULL
;
3774 if (event
== EVENT_KIND_TYPE_LOAD
) {
3775 ei
.klass
= (MonoClass
*)arg
;
3779 mono_loader_lock ();
3780 events
= create_event_list (event
, NULL
, NULL
, ei_arg
, &suspend_policy
);
3781 mono_loader_unlock ();
3783 process_event (event
, arg
, 0, NULL
, events
, suspend_policy
);
3787 runtime_initialized (MonoProfiler
*prof
)
3789 process_profiler_event (EVENT_KIND_VM_START
, mono_thread_current ());
3790 if (agent_config
.defer
)
3791 start_debugger_thread ();
3795 runtime_shutdown (MonoProfiler
*prof
)
3797 process_profiler_event (EVENT_KIND_VM_DEATH
, NULL
);
3799 mono_debugger_agent_cleanup ();
3803 thread_startup (MonoProfiler
*prof
, uintptr_t tid
)
3805 MonoInternalThread
*thread
= mono_thread_internal_current ();
3806 MonoInternalThread
*old_thread
;
3807 DebuggerTlsData
*tls
;
3809 if (mono_native_thread_id_equals (MONO_UINT_TO_NATIVE_THREAD_ID (tid
), debugger_thread_id
))
3812 g_assert (mono_native_thread_id_equals (MONO_UINT_TO_NATIVE_THREAD_ID (tid
), MONO_UINT_TO_NATIVE_THREAD_ID (thread
->tid
)));
3814 mono_loader_lock ();
3815 old_thread
= (MonoInternalThread
*)mono_g_hash_table_lookup (tid_to_thread
, GUINT_TO_POINTER (tid
));
3816 mono_loader_unlock ();
3818 if (thread
== old_thread
) {
3820 * For some reason, thread_startup () might be called for the same thread
3821 * multiple times (attach ?).
3823 DEBUG_PRINTF (1, "[%p] thread_start () called multiple times for %p, ignored.\n", GUINT_TO_POINTER (tid
), GUINT_TO_POINTER (tid
));
3827 * thread_end () might not be called for some threads, and the tid could
3830 DEBUG_PRINTF (1, "[%p] Removing stale data for tid %p.\n", GUINT_TO_POINTER (tid
), GUINT_TO_POINTER (tid
));
3831 mono_loader_lock ();
3832 mono_g_hash_table_remove (thread_to_tls
, old_thread
);
3833 mono_g_hash_table_remove (tid_to_thread
, GUINT_TO_POINTER (tid
));
3834 mono_g_hash_table_remove (tid_to_thread_obj
, GUINT_TO_POINTER (tid
));
3835 mono_loader_unlock ();
3839 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
3841 // FIXME: Free this somewhere
3842 tls
= g_new0 (DebuggerTlsData
, 1);
3843 MONO_GC_REGISTER_ROOT_SINGLE (tls
->thread
, MONO_ROOT_SOURCE_DEBUGGER
, "debugger thread reference");
3844 tls
->thread
= thread
;
3845 mono_native_tls_set_value (debugger_tls_id
, tls
);
3847 DEBUG_PRINTF (1, "[%p] Thread started, obj=%p, tls=%p.\n", (gpointer
)tid
, thread
, tls
);
3849 mono_loader_lock ();
3850 mono_g_hash_table_insert (thread_to_tls
, thread
, tls
);
3851 mono_g_hash_table_insert (tid_to_thread
, (gpointer
)tid
, thread
);
3852 mono_g_hash_table_insert (tid_to_thread_obj
, GUINT_TO_POINTER (tid
), mono_thread_current ());
3853 mono_loader_unlock ();
3855 process_profiler_event (EVENT_KIND_THREAD_START
, thread
);
3858 * suspend_vm () could have missed this thread, so wait for a resume.
3864 thread_end (MonoProfiler
*prof
, uintptr_t tid
)
3866 MonoInternalThread
*thread
;
3867 DebuggerTlsData
*tls
= NULL
;
3869 mono_loader_lock ();
3870 thread
= (MonoInternalThread
*)mono_g_hash_table_lookup (tid_to_thread
, GUINT_TO_POINTER (tid
));
3872 mono_g_hash_table_remove (tid_to_thread_obj
, GUINT_TO_POINTER (tid
));
3873 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, thread
);
3875 /* FIXME: Maybe we need to free this instead, but some code can't handle that */
3876 tls
->terminated
= TRUE
;
3877 /* Can't remove from tid_to_thread, as that would defeat the check in thread_start () */
3878 MONO_GC_UNREGISTER_ROOT (tls
->thread
);
3882 mono_loader_unlock ();
3884 /* We might be called for threads started before we registered the start callback */
3886 DEBUG_PRINTF (1, "[%p] Thread terminated, obj=%p, tls=%p.\n", (gpointer
)tid
, thread
, tls
);
3888 if (mono_native_thread_id_equals (mono_native_thread_id_get (), MONO_UINT_TO_NATIVE_THREAD_ID (tid
))
3889 && !mono_native_tls_get_value (debugger_tls_id
)
3892 * This can happen on darwin since we deregister threads using pthread dtors.
3893 * process_profiler_event () and the code it calls cannot handle a null TLS value.
3898 process_profiler_event (EVENT_KIND_THREAD_DEATH
, thread
);
3903 appdomain_load (MonoProfiler
*prof
, MonoDomain
*domain
, int result
)
3905 mono_loader_lock ();
3906 g_hash_table_insert (domains
, domain
, domain
);
3907 mono_loader_unlock ();
3909 process_profiler_event (EVENT_KIND_APPDOMAIN_CREATE
, domain
);
3913 appdomain_start_unload (MonoProfiler
*prof
, MonoDomain
*domain
)
3915 DebuggerTlsData
*tls
;
3917 /* This might be called during shutdown on the debugger thread from the CMD_VM_EXIT code */
3918 if (is_debugger_thread ())
3922 * Remember the currently unloading appdomain as it is needed to generate
3923 * proper ids for unloading assemblies.
3925 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
3927 tls
->domain_unloading
= domain
;
3931 appdomain_unload (MonoProfiler
*prof
, MonoDomain
*domain
)
3933 DebuggerTlsData
*tls
;
3935 if (is_debugger_thread ())
3938 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
3940 tls
->domain_unloading
= NULL
;
3942 clear_breakpoints_for_domain (domain
);
3944 mono_loader_lock ();
3945 /* Invalidate each thread's frame stack */
3946 mono_g_hash_table_foreach (thread_to_tls
, invalidate_each_thread
, NULL
);
3947 mono_loader_unlock ();
3949 process_profiler_event (EVENT_KIND_APPDOMAIN_UNLOAD
, domain
);
3953 * invalidate_each_thread:
3955 * A GHFunc to invalidate frames.
3956 * value must be a DebuggerTlsData*
3959 invalidate_each_thread (gpointer key
, gpointer value
, gpointer user_data
)
3961 invalidate_frames ((DebuggerTlsData
*)value
);
3965 assembly_load (MonoProfiler
*prof
, MonoAssembly
*assembly
, int result
)
3967 /* Sent later in jit_end () */
3969 g_ptr_array_add (pending_assembly_loads
, assembly
);
3974 assembly_unload (MonoProfiler
*prof
, MonoAssembly
*assembly
)
3976 if (is_debugger_thread ())
3979 process_profiler_event (EVENT_KIND_ASSEMBLY_UNLOAD
, assembly
);
3981 clear_event_requests_for_assembly (assembly
);
3982 clear_types_for_assembly (assembly
);
3986 send_type_load (MonoClass
*klass
)
3988 gboolean type_load
= FALSE
;
3989 MonoDomain
*domain
= mono_domain_get ();
3990 AgentDomainInfo
*info
= NULL
;
3992 info
= get_agent_domain_info (domain
);
3994 mono_loader_lock ();
3996 if (!g_hash_table_lookup (info
->loaded_classes
, klass
)) {
3998 g_hash_table_insert (info
->loaded_classes
, klass
, klass
);
4001 mono_loader_unlock ();
4004 emit_type_load (klass
, klass
, NULL
);
4008 * Emit load events for all types currently loaded in the domain.
4009 * Takes the loader and domain locks.
4010 * user_data is unused.
4013 send_types_for_domain (MonoDomain
*domain
, void *user_data
)
4015 AgentDomainInfo
*info
= NULL
;
4017 info
= get_agent_domain_info (domain
);
4020 mono_loader_lock ();
4021 g_hash_table_foreach (info
->loaded_classes
, emit_type_load
, NULL
);
4022 mono_loader_unlock ();
4026 jit_end (MonoProfiler
*prof
, MonoMethod
*method
, MonoJitInfo
*jinfo
, int result
)
4029 * We emit type load events when the first method of the type is JITted,
4030 * since the class load profiler callbacks might be called with the
4031 * loader lock held. They could also occur in the debugger thread.
4032 * Same for assembly load events.
4035 MonoAssembly
*assembly
= NULL
;
4037 // FIXME: Maybe store this in TLS so the thread of the event is correct ?
4039 if (pending_assembly_loads
->len
> 0) {
4040 assembly
= (MonoAssembly
*)g_ptr_array_index (pending_assembly_loads
, 0);
4041 g_ptr_array_remove_index (pending_assembly_loads
, 0);
4046 process_profiler_event (EVENT_KIND_ASSEMBLY_LOAD
, assembly
);
4052 send_type_load (method
->klass
);
4055 add_pending_breakpoints (method
, jinfo
);
4059 * BREAKPOINTS/SINGLE STEPPING
4063 * Contains information about an inserted breakpoint.
4066 long il_offset
, native_offset
;
4070 } BreakpointInstance
;
4073 * Contains generic information about a breakpoint.
4077 * The method where the breakpoint is placed. Can be NULL in which case it
4078 * is inserted into every method. This is used to implement method entry/
4079 * exit events. Can be a generic method definition, in which case the
4080 * breakpoint is inserted into every instance.
4086 * A list of BreakpointInstance structures describing where the breakpoint
4087 * was inserted. There could be more than one because of
4088 * generics/appdomains/method entry/exit.
4090 GPtrArray
*children
;
4093 /* List of breakpoints */
4094 /* Protected by the loader lock */
4095 static GPtrArray
*breakpoints
;
4096 /* Maps breakpoint locations to the number of breakpoints at that location */
4097 static GHashTable
*bp_locs
;
4100 breakpoints_init (void)
4102 breakpoints
= g_ptr_array_new ();
4103 bp_locs
= g_hash_table_new (NULL
, NULL
);
4107 * insert_breakpoint:
4109 * Insert the breakpoint described by BP into the method described by
4113 insert_breakpoint (MonoSeqPointInfo
*seq_points
, MonoDomain
*domain
, MonoJitInfo
*ji
, MonoBreakpoint
*bp
, MonoError
*error
)
4116 BreakpointInstance
*inst
;
4117 SeqPointIterator it
;
4118 gboolean it_has_sp
= FALSE
;
4121 mono_error_init (error
);
4123 mono_seq_point_iterator_init (&it
, seq_points
);
4124 while (mono_seq_point_iterator_next (&it
)) {
4125 if (it
.seq_point
.il_offset
== bp
->il_offset
) {
4133 * The set of IL offsets with seq points doesn't completely match the
4134 * info returned by CMD_METHOD_GET_DEBUG_INFO (#407).
4136 mono_seq_point_iterator_init (&it
, seq_points
);
4137 while (mono_seq_point_iterator_next (&it
)) {
4138 if (it
.seq_point
.il_offset
!= METHOD_ENTRY_IL_OFFSET
&&
4139 it
.seq_point
.il_offset
!= METHOD_EXIT_IL_OFFSET
&&
4140 it
.seq_point
.il_offset
+ 1 == bp
->il_offset
) {
4148 char *s
= g_strdup_printf ("Unable to insert breakpoint at %s:%d", mono_method_full_name (jinfo_get_method (ji
), TRUE
), bp
->il_offset
);
4150 mono_seq_point_iterator_init (&it
, seq_points
);
4151 while (mono_seq_point_iterator_next (&it
))
4152 DEBUG_PRINTF (1, "%d\n", it
.seq_point
.il_offset
);
4155 mono_error_set_error (error
, MONO_ERROR_GENERIC
, "%s", s
);
4156 g_warning ("%s", s
);
4160 g_warning ("%s", s
);
4166 inst
= g_new0 (BreakpointInstance
, 1);
4167 inst
->il_offset
= it
.seq_point
.il_offset
;
4168 inst
->native_offset
= it
.seq_point
.native_offset
;
4169 inst
->ip
= (guint8
*)ji
->code_start
+ it
.seq_point
.native_offset
;
4171 inst
->domain
= domain
;
4173 mono_loader_lock ();
4175 g_ptr_array_add (bp
->children
, inst
);
4177 mono_loader_unlock ();
4180 count
= GPOINTER_TO_INT (g_hash_table_lookup (bp_locs
, inst
->ip
));
4181 g_hash_table_insert (bp_locs
, inst
->ip
, GINT_TO_POINTER (count
+ 1));
4184 if (it
.seq_point
.native_offset
== SEQ_POINT_NATIVE_OFFSET_DEAD_CODE
) {
4185 DEBUG_PRINTF (1, "[dbg] Attempting to insert seq point at dead IL offset %d, ignoring.\n", (int)bp
->il_offset
);
4186 } else if (count
== 0) {
4187 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
4188 mono_arch_set_breakpoint (ji
, inst
->ip
);
4194 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
);
4198 remove_breakpoint (BreakpointInstance
*inst
)
4200 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
4202 MonoJitInfo
*ji
= inst
->ji
;
4203 guint8
*ip
= inst
->ip
;
4206 count
= GPOINTER_TO_INT (g_hash_table_lookup (bp_locs
, ip
));
4207 g_hash_table_insert (bp_locs
, ip
, GINT_TO_POINTER (count
- 1));
4210 g_assert (count
> 0);
4212 if (count
== 1 && inst
->native_offset
!= SEQ_POINT_NATIVE_OFFSET_DEAD_CODE
) {
4213 mono_arch_clear_breakpoint (ji
, ip
);
4214 DEBUG_PRINTF (1, "[dbg] Clear breakpoint at %s [%p].\n", mono_method_full_name (jinfo_get_method (ji
), TRUE
), ip
);
4222 * This doesn't take any locks.
4224 static inline gboolean
4225 bp_matches_method (MonoBreakpoint
*bp
, MonoMethod
*method
)
4231 if (method
== bp
->method
)
4233 if (method
->is_inflated
&& ((MonoMethodInflated
*)method
)->declaring
== bp
->method
)
4236 if (bp
->method
->is_inflated
&& method
->is_inflated
) {
4237 MonoMethodInflated
*bpimethod
= (MonoMethodInflated
*)bp
->method
;
4238 MonoMethodInflated
*imethod
= (MonoMethodInflated
*)method
;
4240 /* Open generic methods should match closed generic methods of the same class */
4241 if (bpimethod
->declaring
== imethod
->declaring
&& bpimethod
->context
.class_inst
== imethod
->context
.class_inst
&& bpimethod
->context
.method_inst
&& bpimethod
->context
.method_inst
->is_open
) {
4242 for (i
= 0; i
< bpimethod
->context
.method_inst
->type_argc
; ++i
) {
4243 MonoType
*t1
= bpimethod
->context
.method_inst
->type_argv
[i
];
4245 /* FIXME: Handle !mvar */
4246 if (t1
->type
!= MONO_TYPE_MVAR
)
4257 * add_pending_breakpoints:
4259 * Insert pending breakpoints into the newly JITted method METHOD.
4262 add_pending_breakpoints (MonoMethod
*method
, MonoJitInfo
*ji
)
4265 MonoSeqPointInfo
*seq_points
;
4267 MonoMethod
*jmethod
;
4272 domain
= mono_domain_get ();
4274 mono_loader_lock ();
4276 for (i
= 0; i
< breakpoints
->len
; ++i
) {
4277 MonoBreakpoint
*bp
= (MonoBreakpoint
*)g_ptr_array_index (breakpoints
, i
);
4278 gboolean found
= FALSE
;
4280 if (!bp_matches_method (bp
, method
))
4283 for (j
= 0; j
< bp
->children
->len
; ++j
) {
4284 BreakpointInstance
*inst
= (BreakpointInstance
*)g_ptr_array_index (bp
->children
, j
);
4291 MonoMethod
*declaring
= NULL
;
4293 jmethod
= jinfo_get_method (ji
);
4294 if (jmethod
->is_inflated
)
4295 declaring
= mono_method_get_declaring_generic_method (jmethod
);
4297 mono_domain_lock (domain
);
4298 seq_points
= (MonoSeqPointInfo
*)g_hash_table_lookup (domain_jit_info (domain
)->seq_points
, jmethod
);
4299 if (!seq_points
&& declaring
)
4300 seq_points
= (MonoSeqPointInfo
*)g_hash_table_lookup (domain_jit_info (domain
)->seq_points
, declaring
);
4301 mono_domain_unlock (domain
);
4303 /* Could be AOT code */
4305 g_assert (seq_points
);
4307 insert_breakpoint (seq_points
, domain
, ji
, bp
, NULL
);
4311 mono_loader_unlock ();
4315 set_bp_in_method (MonoDomain
*domain
, MonoMethod
*method
, MonoSeqPointInfo
*seq_points
, MonoBreakpoint
*bp
, MonoError
*error
)
4321 mono_error_init (error
);
4323 code
= mono_jit_find_compiled_method_with_jit_info (domain
, method
, &ji
);
4327 /* Might be AOTed code */
4328 mono_class_init (method
->klass
);
4329 code
= mono_aot_get_method_checked (domain
, method
, &oerror
);
4331 mono_error_assert_ok (&oerror
);
4332 ji
= mono_jit_info_table_find (domain
, (char *)code
);
4337 insert_breakpoint (seq_points
, domain
, ji
, bp
, error
);
4341 clear_breakpoint (MonoBreakpoint
*bp
);
4346 * Set a breakpoint at IL_OFFSET in METHOD.
4347 * METHOD can be NULL, in which case a breakpoint is placed in all methods.
4348 * METHOD can also be a generic method definition, in which case a breakpoint
4349 * is placed in all instances of the method.
4350 * If ERROR is non-NULL, then it is set and NULL is returnd if some breakpoints couldn't be
4353 static MonoBreakpoint
*
4354 set_breakpoint (MonoMethod
*method
, long il_offset
, EventRequest
*req
, MonoError
*error
)
4357 GHashTableIter iter
, iter2
;
4360 MonoSeqPointInfo
*seq_points
;
4362 GPtrArray
*method_domains
;
4363 GPtrArray
*method_seq_points
;
4367 mono_error_init (error
);
4370 // - suspend/resume the vm to prevent code patching problems
4371 // - multiple breakpoints on the same location
4372 // - dynamic methods
4375 bp
= g_new0 (MonoBreakpoint
, 1);
4376 bp
->method
= method
;
4377 bp
->il_offset
= il_offset
;
4379 bp
->children
= g_ptr_array_new ();
4381 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
);
4383 methods
= g_ptr_array_new ();
4384 method_domains
= g_ptr_array_new ();
4385 method_seq_points
= g_ptr_array_new ();
4387 mono_loader_lock ();
4388 g_hash_table_iter_init (&iter
, domains
);
4389 while (g_hash_table_iter_next (&iter
, (void**)&domain
, NULL
)) {
4390 mono_domain_lock (domain
);
4391 g_hash_table_iter_init (&iter2
, domain_jit_info (domain
)->seq_points
);
4392 while (g_hash_table_iter_next (&iter2
, (void**)&m
, (void**)&seq_points
)) {
4393 if (bp_matches_method (bp
, m
)) {
4394 /* Save the info locally to simplify the code inside the domain lock */
4395 g_ptr_array_add (methods
, m
);
4396 g_ptr_array_add (method_domains
, domain
);
4397 g_ptr_array_add (method_seq_points
, seq_points
);
4400 mono_domain_unlock (domain
);
4403 for (i
= 0; i
< methods
->len
; ++i
) {
4404 m
= (MonoMethod
*)g_ptr_array_index (methods
, i
);
4405 domain
= (MonoDomain
*)g_ptr_array_index (method_domains
, i
);
4406 seq_points
= (MonoSeqPointInfo
*)g_ptr_array_index (method_seq_points
, i
);
4407 set_bp_in_method (domain
, m
, seq_points
, bp
, error
);
4410 g_ptr_array_add (breakpoints
, bp
);
4411 mono_loader_unlock ();
4413 g_ptr_array_free (methods
, TRUE
);
4414 g_ptr_array_free (method_domains
, TRUE
);
4415 g_ptr_array_free (method_seq_points
, TRUE
);
4417 if (error
&& !mono_error_ok (error
)) {
4418 clear_breakpoint (bp
);
4426 clear_breakpoint (MonoBreakpoint
*bp
)
4430 // FIXME: locking, races
4431 for (i
= 0; i
< bp
->children
->len
; ++i
) {
4432 BreakpointInstance
*inst
= (BreakpointInstance
*)g_ptr_array_index (bp
->children
, i
);
4434 remove_breakpoint (inst
);
4439 mono_loader_lock ();
4440 g_ptr_array_remove (breakpoints
, bp
);
4441 mono_loader_unlock ();
4443 g_ptr_array_free (bp
->children
, TRUE
);
4448 breakpoints_cleanup (void)
4452 mono_loader_lock ();
4454 while (i
< event_requests
->len
) {
4455 EventRequest
*req
= (EventRequest
*)g_ptr_array_index (event_requests
, i
);
4457 if (req
->event_kind
== EVENT_KIND_BREAKPOINT
) {
4458 clear_breakpoint ((MonoBreakpoint
*)req
->info
);
4459 g_ptr_array_remove_index_fast (event_requests
, i
);
4466 for (i
= 0; i
< breakpoints
->len
; ++i
)
4467 g_free (g_ptr_array_index (breakpoints
, i
));
4469 g_ptr_array_free (breakpoints
, TRUE
);
4470 g_hash_table_destroy (bp_locs
);
4475 mono_loader_unlock ();
4479 * clear_breakpoints_for_domain:
4481 * Clear breakpoint instances which reference DOMAIN.
4484 clear_breakpoints_for_domain (MonoDomain
*domain
)
4488 /* This could be called after shutdown */
4492 mono_loader_lock ();
4493 for (i
= 0; i
< breakpoints
->len
; ++i
) {
4494 MonoBreakpoint
*bp
= (MonoBreakpoint
*)g_ptr_array_index (breakpoints
, i
);
4497 while (j
< bp
->children
->len
) {
4498 BreakpointInstance
*inst
= (BreakpointInstance
*)g_ptr_array_index (bp
->children
, j
);
4500 if (inst
->domain
== domain
) {
4501 remove_breakpoint (inst
);
4505 g_ptr_array_remove_index_fast (bp
->children
, j
);
4511 mono_loader_unlock ();
4515 * ss_calculate_framecount:
4517 * Ensure DebuggerTlsData fields are filled out.
4519 static void ss_calculate_framecount (DebuggerTlsData
*tls
, MonoContext
*ctx
)
4521 if (!tls
->context
.valid
)
4522 mono_thread_state_init_from_monoctx (&tls
->context
, ctx
);
4523 compute_frame_info (tls
->thread
, tls
);
4529 * Return FALSE if single stepping needs to continue.
4532 ss_update (SingleStepReq
*req
, MonoJitInfo
*ji
, SeqPoint
*sp
, DebuggerTlsData
*tls
, MonoContext
*ctx
)
4534 MonoDebugMethodInfo
*minfo
;
4535 MonoDebugSourceLocation
*loc
= NULL
;
4536 gboolean hit
= TRUE
;
4539 if (req
->depth
== STEP_DEPTH_OVER
&& (sp
->flags
& MONO_SEQ_POINT_FLAG_NONEMPTY_STACK
)) {
4541 * These seq points are inserted by the JIT after calls, step over needs to skip them.
4543 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
);
4547 if ((req
->depth
== STEP_DEPTH_OVER
|| req
->depth
== STEP_DEPTH_OUT
) && hit
) {
4548 gboolean is_step_out
= req
->depth
== STEP_DEPTH_OUT
;
4550 ss_calculate_framecount (tls
, ctx
);
4552 // Because functions can call themselves recursively, we need to make sure we're stopping at the right stack depth.
4553 // In case of step out, the target is the frame *enclosing* the one where the request was made.
4554 int target_frames
= req
->nframes
+ (is_step_out
? -1 : 0);
4555 if (req
->nframes
> 0 && tls
->frame_count
> 0 && tls
->frame_count
> target_frames
) {
4556 /* Hit the breakpoint in a recursive call, don't halt */
4557 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 if (req
->depth
== STEP_DEPTH_INTO
&& req
->size
== STEP_SIZE_MIN
&& (sp
->flags
& MONO_SEQ_POINT_FLAG_NONEMPTY_STACK
) && ss_req
->start_method
){
4563 method
= jinfo_get_method (ji
);
4564 ss_calculate_framecount (tls
, ctx
);
4565 if (ss_req
->start_method
== method
&& req
->nframes
&& tls
->frame_count
== req
->nframes
) {//Check also frame count(could be recursion)
4566 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 if (req
->size
!= STEP_SIZE_LINE
)
4574 /* Have to check whenever a different source line was reached */
4575 method
= jinfo_get_method (ji
);
4576 minfo
= mono_debug_lookup_method (method
);
4579 loc
= mono_debug_method_lookup_location (minfo
, sp
->il_offset
);
4582 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
);
4583 ss_req
->last_method
= method
;
4585 } else if (loc
&& method
== ss_req
->last_method
&& loc
->row
== ss_req
->last_line
) {
4586 ss_calculate_framecount (tls
, ctx
);
4587 if (tls
->frame_count
== req
->nframes
) { // If the frame has changed we're clearly not on the same source line.
4588 DEBUG_PRINTF (1, "[%p] Same source line (%d), continuing single stepping.\n", (gpointer
) (gsize
) mono_native_thread_id_get (), loc
->row
);
4594 ss_req
->last_method
= method
;
4595 ss_req
->last_line
= loc
->row
;
4596 mono_debug_free_source_location (loc
);
4603 breakpoint_matches_assembly (MonoBreakpoint
*bp
, MonoAssembly
*assembly
)
4605 return bp
->method
&& bp
->method
->klass
->image
->assembly
== assembly
;
4609 process_breakpoint_inner (DebuggerTlsData
*tls
, gboolean from_signal
)
4613 int i
, j
, suspend_policy
;
4614 guint32 native_offset
;
4616 BreakpointInstance
*inst
;
4617 GPtrArray
*bp_reqs
, *ss_reqs_orig
, *ss_reqs
;
4618 GSList
*bp_events
= NULL
, *ss_events
= NULL
, *enter_leave_events
= NULL
;
4619 EventKind kind
= EVENT_KIND_BREAKPOINT
;
4620 MonoContext
*ctx
= &tls
->restore_state
.ctx
;
4622 MonoSeqPointInfo
*info
;
4626 // FIXME: Speed this up
4628 ip
= (guint8
*)MONO_CONTEXT_GET_IP (ctx
);
4629 ji
= mini_jit_info_table_find (mono_domain_get (), (char*)ip
, NULL
);
4630 g_assert (ji
&& !ji
->is_trampoline
);
4631 method
= jinfo_get_method (ji
);
4633 /* Compute the native offset of the breakpoint from the ip */
4634 native_offset
= ip
- (guint8
*)ji
->code_start
;
4637 * Skip the instruction causing the breakpoint signal.
4640 mono_arch_skip_breakpoint (ctx
, ji
);
4642 if (method
->wrapper_type
|| tls
->disable_breakpoints
)
4645 bp_reqs
= g_ptr_array_new ();
4646 ss_reqs
= g_ptr_array_new ();
4647 ss_reqs_orig
= g_ptr_array_new ();
4649 mono_loader_lock ();
4652 * The ip points to the instruction causing the breakpoint event, which is after
4653 * the offset recorded in the seq point map, so find the prev seq point before ip.
4655 found_sp
= mono_find_prev_seq_point_for_native_offset (mono_domain_get (), method
, native_offset
, &info
, &sp
);
4658 no_seq_points_found (method
, native_offset
);
4660 g_assert (found_sp
);
4662 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
);
4665 for (i
= 0; i
< breakpoints
->len
; ++i
) {
4666 bp
= (MonoBreakpoint
*)g_ptr_array_index (breakpoints
, i
);
4671 for (j
= 0; j
< bp
->children
->len
; ++j
) {
4672 inst
= (BreakpointInstance
*)g_ptr_array_index (bp
->children
, j
);
4673 if (inst
->ji
== ji
&& inst
->il_offset
== sp
.il_offset
&& inst
->native_offset
== sp
.native_offset
) {
4674 if (bp
->req
->event_kind
== EVENT_KIND_STEP
) {
4675 g_ptr_array_add (ss_reqs_orig
, bp
->req
);
4677 g_ptr_array_add (bp_reqs
, bp
->req
);
4682 if (bp_reqs
->len
== 0 && ss_reqs_orig
->len
== 0) {
4683 /* Maybe a method entry/exit event */
4684 if (sp
.il_offset
== METHOD_ENTRY_IL_OFFSET
)
4685 kind
= EVENT_KIND_METHOD_ENTRY
;
4686 else if (sp
.il_offset
== METHOD_EXIT_IL_OFFSET
)
4687 kind
= EVENT_KIND_METHOD_EXIT
;
4690 /* Process single step requests */
4691 for (i
= 0; i
< ss_reqs_orig
->len
; ++i
) {
4692 EventRequest
*req
= (EventRequest
*)g_ptr_array_index (ss_reqs_orig
, i
);
4693 SingleStepReq
*ss_req
= (SingleStepReq
*)req
->info
;
4696 if (mono_thread_internal_current () != ss_req
->thread
)
4699 hit
= ss_update (ss_req
, ji
, &sp
, tls
, ctx
);
4701 g_ptr_array_add (ss_reqs
, req
);
4703 /* Start single stepping again from the current sequence point */
4704 ss_start (ss_req
, method
, &sp
, info
, ctx
, tls
, FALSE
, NULL
, 0);
4707 if (ss_reqs
->len
> 0)
4708 ss_events
= create_event_list (EVENT_KIND_STEP
, ss_reqs
, ji
, NULL
, &suspend_policy
);
4709 if (bp_reqs
->len
> 0)
4710 bp_events
= create_event_list (EVENT_KIND_BREAKPOINT
, bp_reqs
, ji
, NULL
, &suspend_policy
);
4711 if (kind
!= EVENT_KIND_BREAKPOINT
)
4712 enter_leave_events
= create_event_list (kind
, NULL
, ji
, NULL
, &suspend_policy
);
4714 mono_loader_unlock ();
4716 g_ptr_array_free (bp_reqs
, TRUE
);
4717 g_ptr_array_free (ss_reqs
, TRUE
);
4720 * FIXME: The first event will suspend, so the second will only be sent after the
4724 process_event (EVENT_KIND_STEP
, method
, 0, ctx
, ss_events
, suspend_policy
);
4726 process_event (kind
, method
, 0, ctx
, bp_events
, suspend_policy
);
4727 if (enter_leave_events
)
4728 process_event (kind
, method
, 0, ctx
, enter_leave_events
, suspend_policy
);
4731 /* Process a breakpoint/single step event after resuming from a signal handler */
4733 process_signal_event (void (*func
) (DebuggerTlsData
*, gboolean
))
4735 DebuggerTlsData
*tls
;
4736 MonoThreadUnwindState orig_restore_state
;
4739 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
4740 /* Have to save/restore the restore_ctx as we can be called recursively during invokes etc. */
4741 memcpy (&orig_restore_state
, &tls
->restore_state
, sizeof (MonoThreadUnwindState
));
4742 mono_thread_state_init_from_monoctx (&tls
->restore_state
, &tls
->handler_ctx
);
4746 /* This is called when resuming from a signal handler, so it shouldn't return */
4747 memcpy (&ctx
, &tls
->restore_state
.ctx
, sizeof (MonoContext
));
4748 memcpy (&tls
->restore_state
, &orig_restore_state
, sizeof (MonoThreadUnwindState
));
4749 mono_restore_context (&ctx
);
4750 g_assert_not_reached ();
4754 process_breakpoint (void)
4756 process_signal_event (process_breakpoint_inner
);
4760 resume_from_signal_handler (void *sigctx
, void *func
)
4762 DebuggerTlsData
*tls
;
4765 /* Save the original context in TLS */
4766 // FIXME: This might not work on an altstack ?
4767 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
4769 fprintf (stderr
, "Thread %p is not attached to the JIT.\n", (gpointer
) (gsize
) mono_native_thread_id_get ());
4772 // FIXME: MonoContext usually doesn't include the fp registers, so these are
4773 // clobbered by a single step/breakpoint event. If this turns out to be a problem,
4774 // clob:c could be added to op_seq_point.
4776 mono_sigctx_to_monoctx (sigctx
, &ctx
);
4777 memcpy (&tls
->handler_ctx
, &ctx
, sizeof (MonoContext
));
4778 #ifdef MONO_ARCH_HAVE_SETUP_RESUME_FROM_SIGNAL_HANDLER_CTX
4779 mono_arch_setup_resume_sighandler_ctx (&ctx
, func
);
4781 MONO_CONTEXT_SET_IP (&ctx
, func
);
4783 mono_monoctx_to_sigctx (&ctx
, sigctx
);
4785 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4786 mono_ppc_set_func_into_sigctx (sigctx
, func
);
4791 mono_debugger_agent_breakpoint_hit (void *sigctx
)
4794 * We are called from a signal handler, and running code there causes all kinds of
4795 * problems, like the original signal is disabled, libgc can't handle altstack, etc.
4796 * So set up the signal context to return to the real breakpoint handler function.
4798 resume_from_signal_handler (sigctx
, process_breakpoint
);
4802 user_break_cb (StackFrameInfo
*frame
, MonoContext
*ctx
, gpointer data
)
4804 if (frame
->managed
) {
4805 *(MonoContext
*)data
= *ctx
;
4814 * Called by System.Diagnostics.Debugger:Break ().
4817 mono_debugger_agent_user_break (void)
4819 if (agent_config
.enabled
) {
4824 /* Obtain a context */
4825 MONO_CONTEXT_SET_IP (&ctx
, NULL
);
4826 mono_walk_stack_with_ctx (user_break_cb
, NULL
, (MonoUnwindOptions
)0, &ctx
);
4827 g_assert (MONO_CONTEXT_GET_IP (&ctx
) != NULL
);
4829 mono_loader_lock ();
4830 events
= create_event_list (EVENT_KIND_USER_BREAK
, NULL
, NULL
, NULL
, &suspend_policy
);
4831 mono_loader_unlock ();
4833 process_event (EVENT_KIND_USER_BREAK
, NULL
, 0, &ctx
, events
, suspend_policy
);
4834 } else if (debug_options
.native_debugger_break
) {
4840 ss_depth_to_string (StepDepth depth
)
4843 case STEP_DEPTH_OVER
:
4845 case STEP_DEPTH_OUT
:
4847 case STEP_DEPTH_INTO
:
4850 g_assert_not_reached ();
4856 process_single_step_inner (DebuggerTlsData
*tls
, gboolean from_signal
)
4861 int il_offset
, suspend_policy
;
4864 MonoContext
*ctx
= &tls
->restore_state
.ctx
;
4867 MonoSeqPointInfo
*info
;
4869 ip
= (guint8
*)MONO_CONTEXT_GET_IP (ctx
);
4871 /* Skip the instruction causing the single step */
4873 mono_arch_skip_single_step (ctx
);
4875 if (suspend_count
> 0) {
4876 /* Fastpath during invokes, see in process_suspend () */
4877 if (suspend_count
- tls
->resume_count
== 0)
4879 process_suspend (tls
, ctx
);
4884 // FIXME: A suspend race
4887 if (mono_thread_internal_current () != ss_req
->thread
)
4890 if (log_level
> 0) {
4891 ji
= mini_jit_info_table_find (mono_domain_get (), (char*)ip
, &domain
);
4893 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
);
4896 ji
= mini_jit_info_table_find (mono_domain_get (), (char*)ip
, &domain
);
4897 g_assert (ji
&& !ji
->is_trampoline
);
4898 method
= jinfo_get_method (ji
);
4901 if (method
->wrapper_type
&& method
->wrapper_type
!= MONO_WRAPPER_DYNAMIC_METHOD
)
4906 * Stopping in memset makes half-initialized vtypes visible.
4907 * Stopping in memcpy makes half-copied vtypes visible.
4909 if (method
->klass
== mono_defaults
.string_class
&& (!strcmp (method
->name
, "memset") || strstr (method
->name
, "memcpy")))
4913 * The ip points to the instruction causing the single step event, which is before
4914 * the offset recorded in the seq point map, so find the next seq point after ip.
4916 if (!mono_find_next_seq_point_for_native_offset (domain
, method
, (guint8
*)ip
- (guint8
*)ji
->code_start
, &info
, &sp
))
4919 il_offset
= sp
.il_offset
;
4921 if (!ss_update (ss_req
, ji
, &sp
, tls
, ctx
))
4924 /* Start single stepping again from the current sequence point */
4925 ss_start (ss_req
, method
, &sp
, info
, ctx
, tls
, FALSE
, NULL
, 0);
4927 if ((ss_req
->filter
& STEP_FILTER_STATIC_CTOR
) &&
4928 (method
->flags
& METHOD_ATTRIBUTE_SPECIAL_NAME
) &&
4929 !strcmp (method
->name
, ".cctor"))
4932 // FIXME: Has to lock earlier
4934 reqs
= g_ptr_array_new ();
4936 mono_loader_lock ();
4938 g_ptr_array_add (reqs
, ss_req
->req
);
4940 events
= create_event_list (EVENT_KIND_STEP
, reqs
, ji
, NULL
, &suspend_policy
);
4942 g_ptr_array_free (reqs
, TRUE
);
4944 mono_loader_unlock ();
4946 process_event (EVENT_KIND_STEP
, jinfo_get_method (ji
), il_offset
, ctx
, events
, suspend_policy
);
4950 process_single_step (void)
4952 process_signal_event (process_single_step_inner
);
4956 * mono_debugger_agent_single_step_event:
4958 * Called from a signal handler to handle a single step event.
4961 mono_debugger_agent_single_step_event (void *sigctx
)
4963 /* Resume to process_single_step through the signal context */
4965 // FIXME: Since step out/over is implemented using step in, the step in case should
4966 // be as fast as possible. Move the relevant code from process_single_step_inner ()
4969 if (is_debugger_thread ()) {
4971 * This could happen despite our best effors when the runtime calls
4972 * assembly/type resolve hooks.
4973 * FIXME: Breakpoints too.
4977 mono_sigctx_to_monoctx (sigctx
, &ctx
);
4978 mono_arch_skip_single_step (&ctx
);
4979 mono_monoctx_to_sigctx (&ctx
, sigctx
);
4983 resume_from_signal_handler (sigctx
, process_single_step
);
4987 debugger_agent_single_step_from_context (MonoContext
*ctx
)
4989 DebuggerTlsData
*tls
;
4990 MonoThreadUnwindState orig_restore_state
;
4992 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
4993 /* Fastpath during invokes, see in process_suspend () */
4994 if (tls
&& suspend_count
&& suspend_count
- tls
->resume_count
== 0)
4997 if (is_debugger_thread ())
5002 /* Have to save/restore the restore_ctx as we can be called recursively during invokes etc. */
5003 memcpy (&orig_restore_state
, &tls
->restore_state
, sizeof (MonoThreadUnwindState
));
5004 mono_thread_state_init_from_monoctx (&tls
->restore_state
, ctx
);
5005 memcpy (&tls
->handler_ctx
, ctx
, sizeof (MonoContext
));
5007 process_single_step_inner (tls
, FALSE
);
5009 memcpy (ctx
, &tls
->restore_state
.ctx
, sizeof (MonoContext
));
5010 memcpy (&tls
->restore_state
, &orig_restore_state
, sizeof (MonoThreadUnwindState
));
5014 debugger_agent_breakpoint_from_context (MonoContext
*ctx
)
5016 DebuggerTlsData
*tls
;
5017 MonoThreadUnwindState orig_restore_state
;
5020 if (is_debugger_thread ())
5023 orig_ip
= (guint8
*)MONO_CONTEXT_GET_IP (ctx
);
5024 MONO_CONTEXT_SET_IP (ctx
, orig_ip
- 1);
5026 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
5028 memcpy (&orig_restore_state
, &tls
->restore_state
, sizeof (MonoThreadUnwindState
));
5029 mono_thread_state_init_from_monoctx (&tls
->restore_state
, ctx
);
5030 memcpy (&tls
->handler_ctx
, ctx
, sizeof (MonoContext
));
5032 process_breakpoint_inner (tls
, FALSE
);
5034 memcpy (ctx
, &tls
->restore_state
.ctx
, sizeof (MonoContext
));
5035 memcpy (&tls
->restore_state
, &orig_restore_state
, sizeof (MonoThreadUnwindState
));
5036 if (MONO_CONTEXT_GET_IP (ctx
) == orig_ip
- 1)
5037 MONO_CONTEXT_SET_IP (ctx
, orig_ip
);
5041 * start_single_stepping:
5043 * Turn on single stepping. Can be called multiple times, for example,
5044 * by a single step event request + a suspend.
5047 start_single_stepping (void)
5049 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
5050 int val
= InterlockedIncrement (&ss_count
);
5053 mono_arch_start_single_stepping ();
5055 g_assert_not_reached ();
5060 stop_single_stepping (void)
5062 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
5063 int val
= InterlockedDecrement (&ss_count
);
5066 mono_arch_stop_single_stepping ();
5068 g_assert_not_reached ();
5075 * Stop the single stepping operation given by SS_REQ.
5078 ss_stop (SingleStepReq
*ss_req
)
5083 for (l
= ss_req
->bps
; l
; l
= l
->next
) {
5084 clear_breakpoint ((MonoBreakpoint
*)l
->data
);
5086 g_slist_free (ss_req
->bps
);
5090 if (ss_req
->global
) {
5091 stop_single_stepping ();
5092 ss_req
->global
= FALSE
;
5099 * Reject breakpoint if it is a duplicate of one already in list or hash table.
5102 ss_bp_is_unique (GSList
*bps
, GHashTable
*ss_req_bp_cache
, MonoMethod
*method
, guint32 il_offset
)
5104 if (ss_req_bp_cache
) {
5105 MonoBreakpoint dummy
= {method
, il_offset
, NULL
, NULL
};
5106 return !g_hash_table_lookup (ss_req_bp_cache
, &dummy
);
5108 for (GSList
*l
= bps
; l
; l
= l
->next
) {
5109 MonoBreakpoint
*bp
= (MonoBreakpoint
*)l
->data
;
5110 if (bp
->method
== method
&& bp
->il_offset
== il_offset
)
5119 * GHashTable equality for a MonoBreakpoint (only care about method and il_offset fields)
5122 ss_bp_eq (gconstpointer ka
, gconstpointer kb
)
5124 const MonoBreakpoint
*s1
= (const MonoBreakpoint
*)ka
;
5125 const MonoBreakpoint
*s2
= (const MonoBreakpoint
*)kb
;
5126 return (s1
->method
== s2
->method
&& s1
->il_offset
== s2
->il_offset
) ? 1 : 0;
5132 * GHashTable hash for a MonoBreakpoint (only care about method and il_offset fields)
5135 ss_bp_hash (gconstpointer data
)
5137 const MonoBreakpoint
*s
= (const MonoBreakpoint
*)data
;
5138 guint hash
= (guint
) (uintptr_t) s
->method
;
5139 hash
^= ((guint
)s
->il_offset
) << 16; // Assume low bits are more interesting
5140 hash
^= ((guint
)s
->il_offset
) >> 16;
5144 #define MAX_LINEAR_SCAN_BPS 7
5149 * Create a new breakpoint and add it to a step request.
5150 * Will adjust the bp count and cache used by ss_start.
5153 ss_bp_add_one (SingleStepReq
*ss_req
, int *ss_req_bp_count
, GHashTable
**ss_req_bp_cache
,
5154 MonoMethod
*method
, guint32 il_offset
)
5156 // This list is getting too long, switch to using the hash table
5157 if (!*ss_req_bp_cache
&& *ss_req_bp_count
> MAX_LINEAR_SCAN_BPS
) {
5158 *ss_req_bp_cache
= g_hash_table_new (ss_bp_hash
, ss_bp_eq
);
5159 for (GSList
*l
= ss_req
->bps
; l
; l
= l
->next
)
5160 g_hash_table_insert (*ss_req_bp_cache
, l
->data
, l
->data
);
5163 if (ss_bp_is_unique (ss_req
->bps
, *ss_req_bp_cache
, method
, il_offset
)) {
5164 // Create and add breakpoint
5165 MonoBreakpoint
*bp
= set_breakpoint (method
, il_offset
, ss_req
->req
, NULL
);
5166 ss_req
->bps
= g_slist_append (ss_req
->bps
, bp
);
5167 if (*ss_req_bp_cache
)
5168 g_hash_table_insert (*ss_req_bp_cache
, bp
, bp
);
5169 (*ss_req_bp_count
)++;
5171 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
);
5178 * Start the single stepping operation given by SS_REQ from the sequence point SP.
5179 * If CTX is not set, then this can target any thread. If CTX is set, then TLS should
5180 * belong to the same thread as CTX.
5181 * If FRAMES is not-null, use that instead of tls->frames for placing breakpoints etc.
5184 ss_start (SingleStepReq
*ss_req
, MonoMethod
*method
, SeqPoint
* sp
, MonoSeqPointInfo
*info
, MonoContext
*ctx
, DebuggerTlsData
*tls
,
5185 gboolean step_to_catch
, StackFrame
**frames
, int nframes
)
5187 int i
, j
, frame_index
;
5188 SeqPoint
*next_sp
, *parent_sp
= NULL
;
5189 SeqPoint local_sp
, local_parent_sp
;
5191 MonoSeqPointInfo
*parent_info
;
5192 MonoMethod
*parent_sp_method
= NULL
;
5193 gboolean enable_global
= FALSE
;
5195 // When 8 or more entries are in bps, we build a hash table to serve as a set of breakpoints.
5196 // Recreating this on each pass is a little wasteful but at least keeps behavior linear.
5197 int ss_req_bp_count
= g_slist_length (ss_req
->bps
);
5198 GHashTable
*ss_req_bp_cache
= NULL
;
5200 /* Stop the previous operation */
5204 * Implement single stepping using breakpoints if possible.
5206 if (step_to_catch
) {
5207 ss_bp_add_one (ss_req
, &ss_req_bp_count
, &ss_req_bp_cache
, method
, sp
->il_offset
);
5211 if (ctx
&& !frames
) {
5212 /* Need parent frames */
5213 if (!tls
->context
.valid
)
5214 mono_thread_state_init_from_monoctx (&tls
->context
, ctx
);
5215 compute_frame_info (tls
->thread
, tls
);
5216 frames
= tls
->frames
;
5217 nframes
= tls
->frame_count
;
5221 * Find the first sequence point in the current or in a previous frame which
5222 * is not the last in its method.
5224 if (ss_req
->depth
== STEP_DEPTH_OUT
) {
5225 /* Ignore seq points in current method */
5226 while (frame_index
< nframes
) {
5227 StackFrame
*frame
= frames
[frame_index
];
5229 method
= frame
->method
;
5230 found_sp
= mono_find_prev_seq_point_for_native_offset (frame
->domain
, frame
->method
, frame
->native_offset
, &info
, &local_sp
);
5231 sp
= (found_sp
)? &local_sp
: NULL
;
5233 if (sp
&& sp
->next_len
!= 0)
5236 // There could be method calls before the next seq point in the caller when using nested calls
5237 //enable_global = TRUE;
5239 if (sp
&& sp
->next_len
== 0) {
5241 while (frame_index
< nframes
) {
5242 StackFrame
*frame
= frames
[frame_index
];
5244 method
= frame
->method
;
5245 found_sp
= mono_find_prev_seq_point_for_native_offset (frame
->domain
, frame
->method
, frame
->native_offset
, &info
, &local_sp
);
5246 sp
= (found_sp
)? &local_sp
: NULL
;
5247 if (sp
&& sp
->next_len
!= 0)
5253 /* Have to put a breakpoint into a parent frame since the seq points might not cover all control flow out of the method */
5254 while (frame_index
< nframes
) {
5255 StackFrame
*frame
= frames
[frame_index
];
5257 parent_sp_method
= frame
->method
;
5258 found_sp
= mono_find_prev_seq_point_for_native_offset (frame
->domain
, frame
->method
, frame
->native_offset
, &parent_info
, &local_parent_sp
);
5259 parent_sp
= found_sp
? &local_parent_sp
: NULL
;
5260 if (found_sp
&& parent_sp
->next_len
!= 0)
5268 if (sp
&& sp
->next_len
> 0) {
5269 SeqPoint
* next
= g_new(SeqPoint
, sp
->next_len
);
5271 mono_seq_point_init_next (info
, *sp
, next
);
5272 for (i
= 0; i
< sp
->next_len
; i
++) {
5275 ss_bp_add_one (ss_req
, &ss_req_bp_count
, &ss_req_bp_cache
, method
, next_sp
->il_offset
);
5281 SeqPoint
* next
= g_new(SeqPoint
, parent_sp
->next_len
);
5283 mono_seq_point_init_next (parent_info
, *parent_sp
, next
);
5284 for (i
= 0; i
< parent_sp
->next_len
; i
++) {
5287 ss_bp_add_one (ss_req
, &ss_req_bp_count
, &ss_req_bp_cache
, parent_sp_method
, next_sp
->il_offset
);
5292 if (ss_req
->nframes
== 0)
5293 ss_req
->nframes
= nframes
;
5295 if ((ss_req
->depth
== STEP_DEPTH_OVER
) && (!sp
&& !parent_sp
)) {
5296 DEBUG_PRINTF (1, "[dbg] No parent frame for step over, transition to step into.\n");
5298 * This is needed since if we leave managed code, and later return to it, step over
5299 * is not going to stop.
5300 * This approach is a bit ugly, since we change the step depth, but it only affects
5301 * clients who reuse the same step request, and only in this special case.
5303 ss_req
->depth
= STEP_DEPTH_INTO
;
5306 if (ss_req
->depth
== STEP_DEPTH_OVER
) {
5307 /* Need to stop in catch clauses as well */
5308 for (i
= 0; i
< nframes
; ++i
) {
5309 StackFrame
*frame
= frames
[i
];
5312 MonoJitInfo
*jinfo
= frame
->ji
;
5313 for (j
= 0; j
< jinfo
->num_clauses
; ++j
) {
5314 MonoJitExceptionInfo
*ei
= &jinfo
->clauses
[j
];
5316 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
);
5317 sp
= (found_sp
)? &local_sp
: NULL
;
5320 ss_bp_add_one (ss_req
, &ss_req_bp_count
, &ss_req_bp_cache
, frame
->method
, sp
->il_offset
);
5326 if (ss_req
->depth
== STEP_DEPTH_INTO
) {
5327 /* Enable global stepping so we stop at method entry too */
5328 enable_global
= TRUE
;
5332 * The ctx/frame info computed above will become invalid when we continue.
5334 tls
->context
.valid
= FALSE
;
5335 tls
->async_state
.valid
= FALSE
;
5336 invalidate_frames (tls
);
5339 if (enable_global
) {
5340 DEBUG_PRINTF (1, "[dbg] Turning on global single stepping.\n");
5341 ss_req
->global
= TRUE
;
5342 start_single_stepping ();
5343 } else if (!ss_req
->bps
) {
5344 DEBUG_PRINTF (1, "[dbg] Turning on global single stepping.\n");
5345 ss_req
->global
= TRUE
;
5346 start_single_stepping ();
5348 ss_req
->global
= FALSE
;
5351 if (ss_req_bp_cache
)
5352 g_hash_table_destroy (ss_req_bp_cache
);
5356 * Start single stepping of thread THREAD
5359 ss_create (MonoInternalThread
*thread
, StepSize size
, StepDepth depth
, StepFilter filter
, EventRequest
*req
)
5361 DebuggerTlsData
*tls
;
5362 MonoSeqPointInfo
*info
= NULL
;
5363 SeqPoint
*sp
= NULL
;
5366 MonoMethod
*method
= NULL
;
5367 MonoDebugMethodInfo
*minfo
;
5368 gboolean step_to_catch
= FALSE
;
5369 gboolean set_ip
= FALSE
;
5370 StackFrame
**frames
= NULL
;
5373 if (suspend_count
== 0)
5374 return ERR_NOT_SUSPENDED
;
5376 wait_for_suspend ();
5378 // FIXME: Multiple requests
5380 DEBUG_PRINTF (0, "Received a single step request while the previous one was still active.\n");
5381 return ERR_NOT_IMPLEMENTED
;
5384 DEBUG_PRINTF (1, "[dbg] Starting single step of thread %p (depth=%s).\n", thread
, ss_depth_to_string (depth
));
5386 ss_req
= g_new0 (SingleStepReq
, 1);
5388 ss_req
->thread
= thread
;
5389 ss_req
->size
= size
;
5390 ss_req
->depth
= depth
;
5391 ss_req
->filter
= filter
;
5394 mono_loader_lock ();
5395 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, thread
);
5396 mono_loader_unlock ();
5398 if (!tls
->context
.valid
) {
5399 DEBUG_PRINTF (1, "Received a single step request on a thread with no managed frames.");
5400 return ERR_INVALID_ARGUMENT
;
5403 if (tls
->restore_state
.valid
&& MONO_CONTEXT_GET_IP (&tls
->context
.ctx
) != MONO_CONTEXT_GET_IP (&tls
->restore_state
.ctx
)) {
5405 * Need to start single stepping from restore_state and not from the current state
5408 frames
= compute_frame_info_from (thread
, tls
, &tls
->restore_state
, &nframes
);
5411 ss_req
->start_sp
= ss_req
->last_sp
= MONO_CONTEXT_GET_SP (&tls
->context
.ctx
);
5413 if (tls
->catch_state
.valid
) {
5415 StackFrameInfo frame
;
5416 MonoContext new_ctx
;
5417 MonoLMF
*lmf
= NULL
;
5420 * We are stopped at a throw site. Stepping should go to the catch site.
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
);
5429 g_assert (frame
.type
== FRAME_TYPE_MANAGED
);
5432 * Find the seq point corresponding to the landing site ip, which is the first seq
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
;
5438 no_seq_points_found (frame
.method
, frame
.native_offset
);
5441 method
= frame
.method
;
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
;
5448 if (!step_to_catch
) {
5449 StackFrame
*frame
= NULL
;
5452 if (frames
&& nframes
)
5455 compute_frame_info (thread
, tls
);
5457 if (tls
->frame_count
)
5458 frame
= tls
->frames
[0];
5461 if (ss_req
->size
== STEP_SIZE_LINE
) {
5463 ss_req
->last_method
= frame
->method
;
5464 ss_req
->last_line
= -1;
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
);
5471 ss_req
->last_line
= loc
->row
;
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
;
5484 no_seq_points_found (frame
->method
, frame
->native_offset
);
5486 method
= frame
->method
;
5491 ss_req
->start_method
= method
;
5493 ss_start (ss_req
, method
, sp
, info
, set_ip
? &tls
->restore_state
.ctx
: &tls
->context
.ctx
, tls
, step_to_catch
, frames
, nframes
);
5496 free_frames (frames
, nframes
);
5502 ss_destroy (SingleStepReq
*req
)
5505 g_assert (ss_req
== req
);
5514 ss_clear_for_assembly (SingleStepReq
*req
, MonoAssembly
*assembly
)
5517 gboolean found
= TRUE
;
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
);
5533 * Called from metadata by the icall for System.Diagnostics.Debugger:Log ().
5536 mono_debugger_agent_debug_log (int level
, MonoString
*category
, MonoString
*message
)
5543 if (!agent_config
.enabled
)
5546 mono_loader_lock ();
5547 events
= create_event_list (EVENT_KIND_USER_LOG
, NULL
, NULL
, NULL
, &suspend_policy
);
5548 mono_loader_unlock ();
5553 ei
.category
= mono_string_to_utf8_checked (category
, &error
);
5554 mono_error_cleanup (&error
);
5558 ei
.message
= mono_string_to_utf8_checked (message
, &error
);
5559 mono_error_cleanup (&error
);
5562 process_event (EVENT_KIND_USER_LOG
, &ei
, 0, NULL
, events
, suspend_policy
);
5564 g_free (ei
.category
);
5565 g_free (ei
.message
);
5569 mono_debugger_agent_debug_log_is_enabled (void)
5571 /* Treat this as true even if there is no event request for EVENT_KIND_USER_LOG */
5572 return agent_config
.enabled
;
5575 #if defined(PLATFORM_ANDROID) || defined(TARGET_ANDROID)
5577 mono_debugger_agent_unhandled_exception (MonoException
*exc
)
5586 memset (&ei
, 0, sizeof (EventInfo
));
5587 ei
.exc
= (MonoObject
*)exc
;
5589 mono_loader_lock ();
5590 events
= create_event_list (EVENT_KIND_EXCEPTION
, NULL
, NULL
, &ei
, &suspend_policy
);
5591 mono_loader_unlock ();
5593 process_event (EVENT_KIND_EXCEPTION
, &ei
, 0, NULL
, events
, suspend_policy
);
5598 mono_debugger_agent_handle_exception (MonoException
*exc
, MonoContext
*throw_ctx
,
5599 MonoContext
*catch_ctx
)
5601 int i
, j
, suspend_policy
;
5603 MonoJitInfo
*ji
, *catch_ji
;
5605 DebuggerTlsData
*tls
= NULL
;
5607 if (thread_to_tls
!= NULL
) {
5608 MonoInternalThread
*thread
= mono_thread_internal_current ();
5610 mono_loader_lock ();
5611 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, thread
);
5612 mono_loader_unlock ();
5614 if (tls
&& tls
->abort_requested
)
5616 if (tls
&& tls
->disable_breakpoints
)
5620 memset (&ei
, 0, sizeof (EventInfo
));
5622 /* Just-In-Time debugging */
5624 if (agent_config
.onuncaught
&& !inited
) {
5625 finish_agent_init (FALSE
);
5628 * Send an unsolicited EXCEPTION event with a dummy request id.
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
);
5635 } else if (agent_config
.onthrow
&& !inited
) {
5637 gboolean found
= FALSE
;
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
);
5643 if (!strcmp (ex_type
, "") || !strcmp (ex_type
, f
))
5650 finish_agent_init (FALSE
);
5653 * Send an unsolicited EXCEPTION event with a dummy request id.
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
);
5665 ji
= mini_jit_info_table_find (mono_domain_get (), (char *)MONO_CONTEXT_GET_IP (throw_ctx
), NULL
);
5667 catch_ji
= mini_jit_info_table_find (mono_domain_get (), (char *)MONO_CONTEXT_GET_IP (catch_ctx
), NULL
);
5671 ei
.exc
= (MonoObject
*)exc
;
5672 ei
.caught
= catch_ctx
!= NULL
;
5674 mono_loader_lock ();
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
)
5682 for (j
= 0; j
< req
->nmodifiers
; ++j
) {
5683 Modifier
*mod
= &req
->modifiers
[j
];
5685 if (mod
->kind
== MOD_KIND_ASSEMBLY_ONLY
&& catch_ji
) {
5687 gboolean found
= FALSE
;
5688 MonoAssembly
**assemblies
= mod
->data
.assemblies
;
5691 for (k
= 0; assemblies
[k
]; ++k
)
5692 if (assemblies
[k
] == jinfo_get_method (catch_ji
)->klass
->image
->assembly
)
5701 events
= create_event_list (EVENT_KIND_EXCEPTION
, NULL
, ji
, &ei
, &suspend_policy
);
5702 mono_loader_unlock ();
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
;
5711 process_event (EVENT_KIND_EXCEPTION
, &ei
, 0, throw_ctx
, events
, suspend_policy
);
5714 tls
->catch_state
.valid
= FALSE
;
5718 mono_debugger_agent_begin_exception_filter (MonoException
*exc
, MonoContext
*ctx
, MonoContext
*orig_ctx
)
5720 DebuggerTlsData
*tls
;
5725 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
5730 * We're about to invoke an exception filter during the first pass of exception handling.
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.
5736 * See mcs/class/Mono.Debugger.Soft/Tests/dtest-excfilter.il for an example.
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).
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
5746 * We do this here by saving the context of the throw site in 'tls->filter_state'.
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.
5753 g_assert (mono_thread_state_init_from_monoctx (&tls
->filter_state
, orig_ctx
));
5757 mono_debugger_agent_end_exception_filter (MonoException
*exc
, MonoContext
*ctx
, MonoContext
*orig_ctx
)
5759 DebuggerTlsData
*tls
;
5764 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
5768 tls
->filter_state
.valid
= FALSE
;
5772 * buffer_add_value_full:
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
5779 buffer_add_value_full (Buffer
*buf
, MonoType
*t
, void *addr
, MonoDomain
*domain
,
5780 gboolean as_vtype
, GHashTable
*parent_vtypes
)
5783 gboolean boxed_vtype
= FALSE
;
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
);
5792 g_assert (*(void**)addr
);
5793 addr
= *(void**)addr
;
5798 case MONO_TYPE_BOOLEAN
:
5801 case MONO_TYPE_CHAR
:
5821 case MONO_TYPE_VOID
:
5822 buffer_add_byte (buf
, t
->type
);
5824 case MONO_TYPE_BOOLEAN
:
5827 buffer_add_byte (buf
, t
->type
);
5828 buffer_add_int (buf
, *(gint8
*)addr
);
5830 case MONO_TYPE_CHAR
:
5833 buffer_add_byte (buf
, t
->type
);
5834 buffer_add_int (buf
, *(gint16
*)addr
);
5839 buffer_add_byte (buf
, t
->type
);
5840 buffer_add_int (buf
, *(gint32
*)addr
);
5845 buffer_add_byte (buf
, t
->type
);
5846 buffer_add_long (buf
, *(gint64
*)addr
);
5850 /* Treat it as a vtype */
5852 case MONO_TYPE_PTR
: {
5853 gssize val
= *(gssize
*)addr
;
5855 buffer_add_byte (buf
, t
->type
);
5856 buffer_add_long (buf
, val
);
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
;
5868 buffer_add_byte (buf
, VALUE_TYPE_ID_NULL
);
5870 if (obj
->vtable
->klass
->valuetype
) {
5871 t
= &obj
->vtable
->klass
->byval_arg
;
5872 addr
= mono_object_unbox (obj
);
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
);
5880 buffer_add_byte (buf
, obj
->vtable
->klass
->byval_arg
.type
);
5882 buffer_add_objid (buf
, obj
);
5886 case MONO_TYPE_VALUETYPE
:
5887 case MONO_TYPE_TYPEDBYREF
: {
5891 MonoClass
*klass
= mono_class_from_mono_type (t
);
5896 * Handle boxed vtypes recursively referencing themselves using fields.
5899 parent_vtypes
= g_hash_table_new (NULL
, NULL
);
5900 vtype_index
= GPOINTER_TO_INT (g_hash_table_lookup (parent_vtypes
, addr
));
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);
5906 /* The client can't handle PARENT_VTYPE */
5907 buffer_add_byte (buf
, VALUE_TYPE_ID_NULL
);
5911 g_hash_table_insert (parent_vtypes
, addr
, GINT_TO_POINTER (g_hash_table_size (parent_vtypes
) + 1));
5915 buffer_add_byte (buf
, MONO_TYPE_VALUETYPE
);
5916 buffer_add_byte (buf
, klass
->enumtype
);
5917 buffer_add_typeid (buf
, domain
, klass
);
5921 while ((f
= mono_class_get_fields (klass
, &iter
))) {
5922 if (f
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
)
5924 if (mono_field_is_deleted (f
))
5928 buffer_add_int (buf
, nfields
);
5931 while ((f
= mono_class_get_fields (klass
, &iter
))) {
5932 if (f
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
)
5934 if (mono_field_is_deleted (f
))
5936 buffer_add_value_full (buf
, f
->type
, (guint8
*)addr
+ f
->offset
- sizeof (MonoObject
), domain
, FALSE
, parent_vtypes
);
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
;
5948 case MONO_TYPE_GENERICINST
:
5949 if (mono_type_generic_inst_is_valuetype (t
)) {
5961 buffer_add_value (Buffer
*buf
, MonoType
*t
, void *addr
, MonoDomain
*domain
)
5963 buffer_add_value_full (buf
, t
, addr
, domain
, FALSE
, NULL
);
5967 obj_is_of_type (MonoObject
*obj
, MonoType
*t
)
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
)) {
5983 decode_value (MonoType
*t
, MonoDomain
*domain
, guint8
*addr
, guint8
*buf
, guint8
**endbuf
, guint8
*limit
);
5986 decode_vtype (MonoType
*t
, MonoDomain
*domain
, guint8
*addr
, guint8
*buf
, guint8
**endbuf
, guint8
*limit
)
5992 gpointer iter
= NULL
;
5996 is_enum
= decode_byte (buf
, &buf
, limit
);
5997 /* Enums are sent as a normal vtype */
5999 return ERR_NOT_IMPLEMENTED
;
6000 klass
= decode_typeid (buf
, &buf
, limit
, &d
, &err
);
6001 if (err
!= ERR_NONE
)
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
);
6010 return ERR_INVALID_ARGUMENT
;
6013 nfields
= decode_int (buf
, &buf
, limit
);
6014 while ((f
= mono_class_get_fields (klass
, &iter
))) {
6015 if (f
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
)
6017 if (mono_field_is_deleted (f
))
6019 err
= decode_value (f
->type
, domain
, (guint8
*)addr
+ f
->offset
- sizeof (MonoObject
), buf
, &buf
, limit
);
6020 if (err
!= ERR_NONE
)
6024 g_assert (nfields
== 0);
6032 decode_value_internal (MonoType
*t
, int type
, MonoDomain
*domain
, guint8
*addr
, guint8
*buf
, guint8
**endbuf
, guint8
*limit
)
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
);
6045 return ERR_INVALID_ARGUMENT
;
6049 case MONO_TYPE_BOOLEAN
:
6050 *(guint8
*)addr
= decode_int (buf
, &buf
, limit
);
6052 case MONO_TYPE_CHAR
:
6053 *(gunichar2
*)addr
= decode_int (buf
, &buf
, limit
);
6056 *(gint8
*)addr
= decode_int (buf
, &buf
, limit
);
6059 *(guint8
*)addr
= decode_int (buf
, &buf
, limit
);
6062 *(gint16
*)addr
= decode_int (buf
, &buf
, limit
);
6065 *(guint16
*)addr
= decode_int (buf
, &buf
, limit
);
6068 *(gint32
*)addr
= decode_int (buf
, &buf
, limit
);
6071 *(guint32
*)addr
= decode_int (buf
, &buf
, limit
);
6074 *(gint64
*)addr
= decode_long (buf
, &buf
, limit
);
6077 *(guint64
*)addr
= decode_long (buf
, &buf
, limit
);
6080 *(guint32
*)addr
= decode_int (buf
, &buf
, limit
);
6083 *(guint64
*)addr
= decode_long (buf
, &buf
, limit
);
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
);
6090 case MONO_TYPE_GENERICINST
:
6091 if (MONO_TYPE_ISSTRUCT (t
)) {
6092 /* The client sends these as a valuetype */
6100 /* We send these as vtypes, so we get them back as such */
6101 g_assert (type
== MONO_TYPE_VALUETYPE
);
6104 case MONO_TYPE_VALUETYPE
:
6105 if (type
== MONO_TYPE_OBJECT
) {
6107 int objid
= decode_objid (buf
, &buf
, limit
);
6111 err
= get_object (objid
, (MonoObject
**)&obj
);
6112 if (err
!= ERR_NONE
)
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
;
6120 memcpy (addr
, mono_object_unbox (obj
), mono_class_value_size (obj
->vtable
->klass
, NULL
));
6122 err
= decode_vtype (t
, domain
, addr
, buf
, &buf
, limit
);
6123 if (err
!= ERR_NONE
)
6129 if (MONO_TYPE_IS_REFERENCE (t
)) {
6130 if (type
== MONO_TYPE_OBJECT
) {
6131 int objid
= decode_objid (buf
, &buf
, limit
);
6135 err
= get_object (objid
, (MonoObject
**)&obj
);
6136 if (err
!= ERR_NONE
)
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
;
6145 if (obj
&& obj
->vtable
->domain
!= domain
)
6146 return ERR_INVALID_ARGUMENT
;
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
) {
6160 /* This can happen when round-tripping boxed vtypes */
6162 * Obtain vtype class.
6163 * Same as the beginning of the handle_vtype case above.
6166 is_enum
= decode_byte (buf
, &buf
, limit
);
6168 return ERR_NOT_IMPLEMENTED
;
6169 klass
= decode_typeid (buf
, &buf
, limit
, &d
, &err
);
6170 if (err
!= ERR_NONE
)
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
);
6179 err
= decode_vtype (NULL
, domain
, vtype_buf
, buf
, &buf
, limit
);
6180 if (err
!= ERR_NONE
) {
6184 *(MonoObject
**)addr
= mono_value_box_checked (d
, klass
, vtype_buf
, &error
);
6185 mono_error_cleanup (&error
);
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
);
6191 return ERR_INVALID_ARGUMENT
;
6205 decode_value (MonoType
*t
, MonoDomain
*domain
, guint8
*addr
, guint8
*buf
, guint8
**endbuf
, guint8
*limit
)
6209 int type
= decode_byte (buf
, &buf
, limit
);
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
;
6216 * First try decoding it as a Nullable`1
6218 err
= decode_value_internal (t
, type
, domain
, addr
, buf
, endbuf
, limit
);
6219 if (err
== ERR_NONE
)
6223 * Then try decoding as a primitive value or null.
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
);
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
;
6237 mono_nullable_init (addr
, boxed
, mono_class_from_mono_type (t
));
6238 g_free (nullable_buf
);
6241 } else if (type
== VALUE_TYPE_ID_NULL
) {
6242 mono_nullable_init (addr
, NULL
, mono_class_from_mono_type (t
));
6248 return decode_value_internal (t
, type
, domain
, addr
, buf
, endbuf
, limit
);
6252 add_var (Buffer
*buf
, MonoDebugMethodJitInfo
*jit
, MonoType
*t
, MonoDebugVarInfo
*var
, MonoContext
*ctx
, MonoDomain
*domain
, gboolean as_vtype
)
6256 guint8
*addr
, *gaddr
;
6259 flags
= var
->index
& MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS
;
6260 reg
= var
->index
& ~MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS
;
6263 case MONO_DEBUG_VAR_ADDRESS_MODE_REGISTER
:
6264 reg_val
= mono_arch_context_get_int_reg (ctx
, reg
);
6266 buffer_add_value_full (buf
, t
, ®_val
, domain
, as_vtype
, NULL
);
6268 case MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET
:
6269 addr
= (guint8
*)mono_arch_context_get_int_reg (ctx
, reg
);
6270 addr
+= (gint32
)var
->offset
;
6272 //printf ("[R%d+%d] = %p\n", reg, var->offset, addr);
6274 buffer_add_value_full (buf
, t
, addr
, domain
, as_vtype
, NULL
);
6276 case MONO_DEBUG_VAR_ADDRESS_MODE_DEAD
:
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
;
6285 gaddr
= (guint8
*)*(gpointer
*)addr
;
6287 buffer_add_value_full (buf
, t
, gaddr
, domain
, as_vtype
, NULL
);
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
;
6298 g_assert (info_var
);
6299 g_assert (locals_var
);
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
);
6310 g_assert_not_reached ();
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
);
6323 g_assert_not_reached ();
6327 addr
= locals
+ GPOINTER_TO_INT (info
->entries
[idx
]);
6329 buffer_add_value_full (buf
, t
, addr
, domain
, as_vtype
, NULL
);
6334 g_assert_not_reached ();
6339 set_var (MonoType
*t
, MonoDebugVarInfo
*var
, MonoContext
*ctx
, MonoDomain
*domain
, guint8
*val
, mgreg_t
**reg_locations
, MonoContext
*restore_ctx
)
6343 guint8
*addr
, *gaddr
;
6345 flags
= var
->index
& MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS
;
6346 reg
= var
->index
& ~MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS
;
6348 if (MONO_TYPE_IS_REFERENCE (t
))
6349 size
= sizeof (gpointer
);
6351 size
= mono_class_value_size (mono_class_from_mono_type (t
), NULL
);
6354 case MONO_DEBUG_VAR_ADDRESS_MODE_REGISTER
: {
6355 #ifdef MONO_ARCH_HAVE_CONTEXT_SET_INT_REG
6357 gboolean is_signed
= FALSE
;
6360 addr
= (guint8
*)mono_arch_context_get_int_reg (ctx
, reg
);
6363 // FIXME: Write barriers
6364 mono_gc_memmove_atomic (addr
, val
, size
);
6369 if (!t
->byref
&& (t
->type
== MONO_TYPE_I1
|| t
->type
== MONO_TYPE_I2
|| t
->type
== MONO_TYPE_I4
|| t
->type
== MONO_TYPE_I8
))
6374 v
= is_signed
? *(gint8
*)val
: *(guint8
*)val
;
6377 v
= is_signed
? *(gint16
*)val
: *(guint16
*)val
;
6380 v
= is_signed
? *(gint32
*)val
: *(guint32
*)val
;
6383 v
= is_signed
? *(gint64
*)val
: *(guint64
*)val
;
6386 g_assert_not_reached ();
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
;
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
);
6400 // FIXME: Move these to mono-context.h/c.
6401 mono_arch_context_set_int_reg (ctx
, reg
, v
);
6403 // FIXME: Can't set registers, so we disable linears
6408 case MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET
:
6409 addr
= (guint8
*)mono_arch_context_get_int_reg (ctx
, reg
);
6410 addr
+= (gint32
)var
->offset
;
6412 //printf ("[R%d+%d] = %p\n", reg, var->offset, addr);
6415 addr
= *(guint8
**)addr
;
6421 // FIXME: Write barriers
6422 mono_gc_memmove_atomic (addr
, val
, size
);
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
;
6429 gaddr
= (guint8
*)*(gpointer
*)addr
;
6431 // FIXME: Write barriers
6432 mono_gc_memmove_atomic (gaddr
, val
, size
);
6434 case MONO_DEBUG_VAR_ADDRESS_MODE_DEAD
:
6438 g_assert_not_reached ();
6443 clear_event_request (int req_id
, int etype
)
6447 mono_loader_lock ();
6448 for (i
= 0; i
< event_requests
->len
; ++i
) {
6449 EventRequest
*req
= (EventRequest
*)g_ptr_array_index (event_requests
, i
);
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
);
6465 mono_loader_unlock ();
6469 clear_assembly_from_modifier (EventRequest
*req
, Modifier
*m
, MonoAssembly
*assembly
)
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
;
6479 for (i
= 0; m
->data
.assemblies
[i
]; ++i
) {
6481 if (m
->data
.assemblies
[i
] == assembly
)
6486 newassemblies
= g_new0 (MonoAssembly
*, count
- match_count
);
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
;
6500 clear_assembly_from_modifiers (EventRequest
*req
, MonoAssembly
*assembly
)
6504 for (i
= 0; i
< req
->nmodifiers
; ++i
) {
6505 Modifier
*m
= &req
->modifiers
[i
];
6507 clear_assembly_from_modifier (req
, m
, assembly
);
6512 * clear_event_requests_for_assembly:
6514 * Clear all events requests which reference ASSEMBLY.
6517 clear_event_requests_for_assembly (MonoAssembly
*assembly
)
6522 mono_loader_lock ();
6526 for (i
= 0; i
< event_requests
->len
; ++i
) {
6527 EventRequest
*req
= (EventRequest
*)g_ptr_array_index (event_requests
, i
);
6529 clear_assembly_from_modifiers (req
, assembly
);
6531 if (req
->event_kind
== EVENT_KIND_BREAKPOINT
&& breakpoint_matches_assembly ((MonoBreakpoint
*)req
->info
, assembly
)) {
6532 clear_event_request (req
->id
, req
->event_kind
);
6537 if (req
->event_kind
== EVENT_KIND_STEP
)
6538 ss_clear_for_assembly ((SingleStepReq
*)req
->info
, assembly
);
6541 mono_loader_unlock ();
6545 * type_comes_from_assembly:
6547 * GHRFunc that returns TRUE if klass comes from assembly
6550 type_comes_from_assembly (gpointer klass
, gpointer also_klass
, gpointer assembly
)
6552 return (mono_class_get_image ((MonoClass
*)klass
) == mono_assembly_get_image ((MonoAssembly
*)assembly
));
6556 * clear_types_for_assembly:
6558 * Clears types from loaded_classes for a given assembly
6561 clear_types_for_assembly (MonoAssembly
*assembly
)
6563 MonoDomain
*domain
= mono_domain_get ();
6564 AgentDomainInfo
*info
= NULL
;
6566 if (!domain
|| !domain_jit_info (domain
))
6567 /* Can happen during shutdown */
6570 info
= get_agent_domain_info (domain
);
6572 mono_loader_lock ();
6573 g_hash_table_foreach_remove (info
->loaded_classes
, type_comes_from_assembly
, assembly
);
6574 mono_loader_unlock ();
6578 add_thread (gpointer key
, gpointer value
, gpointer user_data
)
6580 MonoInternalThread
*thread
= (MonoInternalThread
*)value
;
6581 Buffer
*buf
= (Buffer
*)user_data
;
6583 buffer_add_objid (buf
, (MonoObject
*)thread
);
6587 do_invoke_method (DebuggerTlsData
*tls
, Buffer
*buf
, InvokeData
*invoke
, guint8
*p
, guint8
**endp
)
6590 guint8
*end
= invoke
->endp
;
6594 MonoMethodSignature
*sig
;
6597 MonoObject
*this_arg
, *res
, *exc
;
6600 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
6603 MonoStopwatch watch
;
6605 if (invoke
->method
) {
6607 * Invoke this method directly, currently only Environment.Exit () is supported.
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>");
6612 mono_runtime_try_invoke (invoke
->method
, NULL
, invoke
->args
, &exc
, &error
);
6613 mono_error_assert_ok (&error
);
6615 g_assert_not_reached ();
6618 m
= decode_methodid (p
, &p
, end
, &domain
, &err
);
6619 if (err
!= ERR_NONE
)
6621 sig
= mono_method_signature (m
);
6623 if (m
->klass
->valuetype
)
6624 this_buf
= (guint8
*)g_alloca (mono_class_instance_size (m
->klass
));
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
;
6634 memset (this_buf
, 0, mono_class_instance_size (m
->klass
));
6635 } else if (m
->klass
->valuetype
&& !strcmp (m
->name
, ".ctor")) {
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
));
6644 err
= decode_value (&m
->klass
->byval_arg
, domain
, this_buf
, p
, &p
, end
);
6645 if (err
!= ERR_NONE
)
6649 err
= decode_value (&m
->klass
->byval_arg
, domain
, this_buf
, p
, &p
, end
);
6650 if (err
!= ERR_NONE
)
6654 if (!m
->klass
->valuetype
)
6655 this_arg
= *(MonoObject
**)this_buf
;
6659 if (MONO_CLASS_IS_INTERFACE (m
->klass
)) {
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
;
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
));
6670 } else if ((m
->flags
& METHOD_ATTRIBUTE_VIRTUAL
) && !m
->klass
->valuetype
&& invoke
->flags
& INVOKE_FLAG_VIRTUAL
) {
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
;
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
));
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>");
6684 if (this_arg
&& this_arg
->vtable
->domain
!= domain
)
6687 if (!m
->klass
->valuetype
&& !(m
->flags
& METHOD_ATTRIBUTE_STATIC
) && !this_arg
) {
6688 if (!strcmp (m
->name
, ".ctor")) {
6689 if (mono_class_is_abstract (m
->klass
))
6690 return ERR_INVALID_ARGUMENT
;
6693 this_arg
= mono_object_new_checked (domain
, m
->klass
, &error
);
6694 mono_error_assert_ok (&error
);
6697 return ERR_INVALID_ARGUMENT
;
6701 if (this_arg
&& !obj_is_of_type (this_arg
, &m
->klass
->byval_arg
))
6702 return ERR_INVALID_ARGUMENT
;
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
)
6716 if (args
[i
] && ((MonoObject
*)args
[i
])->vtable
->domain
!= domain
)
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
];
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
)
6729 args
[i
] = arg_buf
[i
];
6736 if (invoke
->flags
& INVOKE_FLAG_DISABLE_BREAKPOINTS
)
6737 tls
->disable_breakpoints
= TRUE
;
6739 tls
->disable_breakpoints
= FALSE
;
6742 * Add an LMF frame to link the stack frames on the invoke method with our caller.
6744 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
6745 if (invoke
->has_ctx
) {
6748 lmf_addr
= mono_get_lmf_addr ();
6751 memset (&ext
, 0, sizeof (ext
));
6752 mono_arch_init_lmf_ext (&ext
, *lmf_addr
);
6754 ext
.debugger_invoke
= TRUE
;
6755 memcpy (&ext
.ctx
, &invoke
->ctx
, sizeof (MonoContext
));
6757 mono_set_lmf ((MonoLMF
*)&ext
);
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
);
6766 mono_error_cleanup (&error
); /* FIXME report error */
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
));
6771 buffer_add_byte (buf
, 0);
6772 buffer_add_value (buf
, &mono_defaults
.object_class
->byval_arg
, &exc
, domain
);
6774 gboolean out_this
= FALSE
;
6775 gboolean out_args
= FALSE
;
6777 if ((invoke
->flags
& INVOKE_FLAG_RETURN_OUT_THIS
) && CHECK_PROTOCOL_VERSION (2, 35))
6779 if ((invoke
->flags
& INVOKE_FLAG_RETURN_OUT_ARGS
) && CHECK_PROTOCOL_VERSION (2, 35))
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
);
6787 buffer_add_value (buf
, &m
->klass
->byval_arg
, this_buf
, domain
);
6789 buffer_add_value (buf
, &mono_defaults
.void_class
->byval_arg
, NULL
, domain
);
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
));
6798 g_assert (nullable_buf
);
6799 mono_nullable_init (nullable_buf
, res
, k
);
6800 buffer_add_value (buf
, sig
->ret
, nullable_buf
, domain
);
6803 buffer_add_value (buf
, sig
->ret
, mono_object_unbox (res
), domain
);
6809 /* Return the new value of the receiver after the call */
6810 buffer_add_value (buf
, &m
->klass
->byval_arg
, this_buf
, domain
);
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
);
6820 buffer_add_value (buf
, sig
->params
[i
], arg_buf
[i
], domain
);
6825 tls
->disable_breakpoints
= FALSE
;
6827 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
6828 if (invoke
->has_ctx
)
6829 mono_set_lmf ((MonoLMF
*)(((gssize
)ext
.lmf
.previous_lmf
) & ~3));
6833 // FIXME: byref arguments
6841 * Invoke the method given by tls->pending_invoke in the current thread.
6844 invoke_method (void)
6846 DebuggerTlsData
*tls
;
6852 MonoContext restore_ctx
;
6855 tls
= (DebuggerTlsData
*)mono_native_tls_get_value (debugger_tls_id
);
6859 * Store the `InvokeData *' in `tls->invoke' until we're done with
6860 * the invocation, so CMD_VM_ABORT_INVOKE can check it.
6863 mono_loader_lock ();
6865 invoke
= tls
->pending_invoke
;
6867 tls
->pending_invoke
= NULL
;
6869 invoke
->last_invoke
= tls
->invoke
;
6870 tls
->invoke
= invoke
;
6872 mono_loader_unlock ();
6874 tls
->frames_up_to_date
= FALSE
;
6880 for (mindex
= 0; mindex
< invoke
->nmethods
; ++mindex
) {
6881 buffer_init (&buf
, 128);
6884 /* Fail the other invokes as well */
6886 err
= do_invoke_method (tls
, &buf
, invoke
, p
, &p
);
6889 if (tls
->abort_requested
) {
6890 if (CHECK_PROTOCOL_VERSION (2, 42))
6891 err
= ERR_INVOKE_ABORTED
;
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
)
6902 send_reply_packet (id
, err
, &buf
);
6907 memcpy (&restore_ctx
, &invoke
->ctx
, sizeof (MonoContext
));
6909 if (invoke
->has_ctx
)
6910 save_thread_context (&restore_ctx
);
6912 if (invoke
->flags
& INVOKE_FLAG_SINGLE_THREADED
) {
6913 g_assert (tls
->resume_count
);
6914 tls
->resume_count
-= invoke
->suspend_count
;
6917 DEBUG_PRINTF (1, "[%p] Invoke finished (%d), resume_count = %d.\n", (gpointer
) (gsize
) mono_native_thread_id_get (), err
, tls
->resume_count
);
6920 * Take the loader lock to avoid race conditions with CMD_VM_ABORT_INVOKE:
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.
6927 mono_loader_lock ();
6929 if (tls
->abort_requested
)
6930 mono_thread_internal_reset_abort (tls
->thread
);
6932 tls
->invoke
= tls
->invoke
->last_invoke
;
6933 tls
->abort_requested
= FALSE
;
6935 mono_loader_unlock ();
6944 is_really_suspended (gpointer key
, gpointer value
, gpointer user_data
)
6946 MonoThread
*thread
= (MonoThread
*)value
;
6947 DebuggerTlsData
*tls
;
6950 mono_loader_lock ();
6951 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, thread
);
6953 res
= tls
->really_suspended
;
6954 mono_loader_unlock ();
6960 get_source_files_for_type (MonoClass
*klass
)
6962 gpointer iter
= NULL
;
6964 MonoDebugSourceInfo
*sinfo
;
6968 files
= g_ptr_array_new ();
6970 while ((method
= mono_class_get_methods (klass
, &iter
))) {
6971 MonoDebugMethodInfo
*minfo
= mono_debug_lookup_method (method
);
6972 GPtrArray
*source_file_list
;
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
))
6981 if (i
== files
->len
)
6982 g_ptr_array_add (files
, g_strdup (sinfo
->source_file
));
6984 g_ptr_array_free (source_file_list
, TRUE
);
6992 vm_commands (int command
, int id
, guint8
*p
, guint8
*end
, Buffer
*buf
)
6995 case CMD_VM_VERSION
: {
6996 char *build_info
, *version
;
6998 build_info
= mono_get_runtime_build_info ();
6999 version
= g_strdup_printf ("mono %s", build_info
);
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
);
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
);
7015 case CMD_VM_ALL_THREADS
: {
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 ();
7023 case CMD_VM_SUSPEND
:
7025 wait_for_suspend ();
7028 if (suspend_count
== 0)
7029 return ERR_NOT_SUSPENDED
;
7031 clear_suspended_objs ();
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);
7039 clear_event_request (req
->id
, req
->event_kind
);
7041 mono_loader_unlock ();
7043 while (suspend_count
> 0)
7045 disconnected
= TRUE
;
7046 vm_start_event_sent
= FALSE
;
7049 MonoInternalThread
*thread
;
7050 DebuggerTlsData
*tls
;
7051 #ifdef TRY_MANAGED_SYSTEM_ENVIRONMENT_EXIT
7052 MonoClass
*env_class
;
7054 MonoMethod
*exit_method
= NULL
;
7058 exit_code
= decode_int (p
, &p
, end
);
7060 // FIXME: What if there is a VM_DEATH event request with SUSPEND_ALL ?
7062 /* Have to send a reply before exiting */
7063 send_reply_packet (id
, 0, buf
);
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);
7070 clear_event_request (req
->id
, req
->event_kind
);
7072 mono_loader_unlock ();
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.
7082 wait_for_suspend ();
7084 #ifdef TRY_MANAGED_SYSTEM_ENVIRONMENT_EXIT
7085 env_class
= mono_class_try_load_from_name (mono_defaults
.corlib
, "System", "Environment");
7087 exit_method
= mono_class_get_method_from_name (env_class
, "Exit", 1);
7090 mono_loader_lock ();
7091 thread
= (MonoInternalThread
*)mono_g_hash_table_find (tid_to_thread
, is_really_suspended
, NULL
);
7092 mono_loader_unlock ();
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 ();
7099 args
= g_new0 (gpointer
, 1);
7100 args
[0] = g_malloc (sizeof (int));
7101 *(int*)(args
[0]) = exit_code
;
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;
7108 while (suspend_count
> 0)
7112 * No thread found, do it ourselves.
7113 * FIXME: This can race with normal shutdown etc.
7115 while (suspend_count
> 0)
7118 if (!mono_runtime_try_shutdown ())
7121 mono_environment_exitcode_set (exit_code
);
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");
7135 case CMD_VM_INVOKE_METHOD
:
7136 case CMD_VM_INVOKE_METHODS
: {
7137 int objid
= decode_objid (p
, &p
, end
);
7139 DebuggerTlsData
*tls
;
7140 int i
, count
, flags
, nmethods
;
7143 err
= get_object (objid
, (MonoObject
**)&thread
);
7144 if (err
!= ERR_NONE
)
7147 flags
= decode_int (p
, &p
, end
);
7149 if (command
== CMD_VM_INVOKE_METHODS
)
7150 nmethods
= decode_int (p
, &p
, end
);
7154 // Wait for suspending if it already started
7156 wait_for_suspend ();
7157 if (!is_suspended ())
7158 return ERR_NOT_SUSPENDED
;
7160 mono_loader_lock ();
7161 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, THREAD_TO_INTERNAL (thread
));
7162 mono_loader_unlock ();
7165 if (!tls
->really_suspended
)
7166 /* The thread is still running native code, can't do invokes */
7167 return ERR_NOT_SUSPENDED
;
7170 * Store the invoke data into tls, the thread will execute it after it is
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
;
7184 if (flags
& INVOKE_FLAG_SINGLE_THREADED
) {
7185 resume_thread (THREAD_TO_INTERNAL (thread
));
7188 count
= suspend_count
;
7189 for (i
= 0; i
< count
; ++i
)
7194 case CMD_VM_ABORT_INVOKE
: {
7195 int objid
= decode_objid (p
, &p
, end
);
7197 DebuggerTlsData
*tls
;
7201 err
= get_object (objid
, (MonoObject
**)&thread
);
7202 if (err
!= ERR_NONE
)
7205 invoke_id
= decode_int (p
, &p
, end
);
7207 mono_loader_lock ();
7208 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, THREAD_TO_INTERNAL (thread
));
7211 if (tls
->abort_requested
) {
7212 DEBUG_PRINTF (1, "Abort already requested.\n");
7213 mono_loader_unlock ();
7218 * Check whether we're still inside the mono_runtime_invoke_checked() and that it's
7219 * actually the correct invocation.
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.
7227 if (!tls
->invoke
|| (tls
->invoke
->id
!= invoke_id
)) {
7228 mono_loader_unlock ();
7229 return ERR_NO_INVOCATION
;
7232 tls
->abort_requested
= TRUE
;
7234 mono_thread_internal_abort (THREAD_TO_INTERNAL (thread
));
7235 mono_loader_unlock ();
7239 case CMD_VM_SET_KEEPALIVE
: {
7240 int timeout
= decode_int (p
, &p
, end
);
7241 agent_config
.keepalive
= timeout
;
7243 #ifndef DISABLE_SOCKET_TRANSPORT
7250 case CMD_VM_GET_TYPES_FOR_SOURCE_FILE
: {
7251 GHashTableIter iter
, kiter
;
7256 char *fname
, *basename
;
7257 gboolean ignore_case
;
7258 GSList
*class_list
, *l
;
7259 GPtrArray
*res_classes
, *res_domains
;
7261 fname
= decode_string (p
, &p
, end
);
7262 ignore_case
= decode_byte (p
, &p
, end
);
7264 basename
= dbg_path_get_basename (fname
);
7266 res_classes
= g_ptr_array_new ();
7267 res_domains
= g_ptr_array_new ();
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
;
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
);
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
);
7286 class_list
= (GSList
*)g_hash_table_lookup (info
->source_file_to_class
, s2
);
7288 class_list
= g_slist_prepend (class_list
, klass
);
7289 g_hash_table_insert (info
->source_file_to_class
, g_strdup (s2
), class_list
);
7291 class_list
= g_slist_prepend (class_list
, klass
);
7292 g_hash_table_insert (info
->source_file_to_class
, s2
, class_list
);
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
);
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
);
7302 class_list
= g_slist_prepend (class_list
, klass
);
7303 g_hash_table_insert (info
->source_file_to_class_ignorecase
, s3
, class_list
);
7315 s
= strdup_tolower (basename
);
7316 class_list
= (GSList
*)g_hash_table_lookup (info
->source_file_to_class_ignorecase
, s
);
7319 class_list
= (GSList
*)g_hash_table_lookup (info
->source_file_to_class
, basename
);
7322 for (l
= class_list
; l
; l
= l
->next
) {
7323 klass
= (MonoClass
*)l
->data
;
7325 g_ptr_array_add (res_classes
, klass
);
7326 g_ptr_array_add (res_domains
, domain
);
7329 mono_loader_unlock ();
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
);
7341 case CMD_VM_GET_TYPES
: {
7342 GHashTableIter iter
;
7346 gboolean ignore_case
;
7347 GPtrArray
*res_classes
, *res_domains
;
7348 MonoTypeNameParse info
;
7350 name
= decode_string (p
, &p
, end
);
7351 ignore_case
= decode_byte (p
, &p
, end
);
7353 if (!mono_reflection_parse_type (name
, &info
)) {
7355 mono_reflection_free_type_info (&info
);
7356 return ERR_INVALID_ARGUMENT
;
7359 res_classes
= g_ptr_array_new ();
7360 res_domains
= g_ptr_array_new ();
7362 mono_loader_lock ();
7363 g_hash_table_iter_init (&iter
, domains
);
7364 while (g_hash_table_iter_next (&iter
, NULL
, (void**)&domain
)) {
7366 gboolean type_resolve
;
7370 mono_domain_assemblies_lock (domain
);
7371 for (tmp
= domain
->domain_assemblies
; tmp
; tmp
= tmp
->next
) {
7372 ass
= (MonoAssembly
*)tmp
->data
;
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
);
7381 g_ptr_array_add (res_classes
, mono_type_get_class (t
));
7382 g_ptr_array_add (res_domains
, domain
);
7386 mono_domain_assemblies_unlock (domain
);
7388 mono_loader_unlock ();
7391 mono_reflection_free_type_info (&info
);
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
);
7400 case CMD_VM_START_BUFFERING
:
7401 case CMD_VM_STOP_BUFFERING
:
7402 /* Handled in the main loop */
7405 return ERR_NOT_IMPLEMENTED
;
7412 event_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
7418 case CMD_EVENT_REQUEST_SET
: {
7420 int i
, event_kind
, suspend_policy
, nmodifiers
;
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
;
7432 event_kind
= decode_byte (p
, &p
, end
);
7433 suspend_policy
= decode_byte (p
, &p
, end
);
7434 nmodifiers
= decode_byte (p
, &p
, end
);
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
;
7443 for (i
= 0; i
< nmodifiers
; ++i
) {
7444 mod
= (ModifierKind
)decode_byte (p
, &p
, end
);
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
)
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
);
7467 err
= get_object (id
, (MonoObject
**)&req
->modifiers
[i
].data
.thread
);
7468 if (err
!= ERR_NONE
) {
7472 } else if (mod
== MOD_KIND_EXCEPTION_ONLY
) {
7473 MonoClass
*exc_class
= decode_typeid (p
, &p
, end
, &domain
, &err
);
7475 if (err
!= ERR_NONE
)
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
);
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" : "");
7485 req
->modifiers
[i
].data
.exc_class
= exc_class
;
7487 if (!mono_class_is_assignable_from (mono_defaults
.exception_class
, exc_class
)) {
7489 return ERR_INVALID_ARGUMENT
;
7492 } else if (mod
== MOD_KIND_ASSEMBLY_ONLY
) {
7493 int n
= decode_int (p
, &p
, end
);
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
);
7504 } else if (mod
== MOD_KIND_SOURCE_FILE_ONLY
) {
7505 int n
= decode_int (p
, &p
, end
);
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
);
7515 s2
= strdup_tolower (s
);
7516 g_hash_table_insert (modifier
->data
.source_files
, s2
, s2
);
7520 } else if (mod
== MOD_KIND_TYPE_NAME_ONLY
) {
7521 int n
= decode_int (p
, &p
, end
);
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
);
7530 g_hash_table_insert (modifier
->data
.type_names
, s
, s
);
7534 return ERR_NOT_IMPLEMENTED
;
7538 if (req
->event_kind
== EVENT_KIND_BREAKPOINT
) {
7541 req
->info
= set_breakpoint (method
, location
, req
, &error
);
7542 if (!mono_error_ok (&error
)) {
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
;
7548 } else if (req
->event_kind
== EVENT_KIND_STEP
) {
7549 g_assert (step_thread_id
);
7551 err
= get_object (step_thread_id
, (MonoObject
**)&step_thread
);
7552 if (err
!= ERR_NONE
) {
7557 err
= ss_create (THREAD_TO_INTERNAL (step_thread
), size
, depth
, filter
, req
);
7558 if (err
!= ERR_NONE
) {
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
) {
7569 if (req
->nmodifiers
) {
7571 return ERR_NOT_IMPLEMENTED
;
7575 mono_loader_lock ();
7576 g_ptr_array_add (event_requests
, req
);
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
);
7585 case EVENT_KIND_ASSEMBLY_LOAD
:
7586 /* Emit load events for currently loaded assemblies */
7587 mono_assembly_foreach (emit_assembly_load
, NULL
);
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
);
7593 case EVENT_KIND_TYPE_LOAD
:
7594 /* Emit type load events for currently loaded types */
7595 mono_domain_foreach (send_types_for_domain
, NULL
);
7601 mono_loader_unlock ();
7603 buffer_add_int (buf
, req
->id
);
7606 case CMD_EVENT_REQUEST_CLEAR
: {
7607 int etype
= decode_byte (p
, &p
, end
);
7608 int req_id
= decode_int (p
, &p
, end
);
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 ();
7616 case CMD_EVENT_REQUEST_CLEAR_ALL_BREAKPOINTS
: {
7619 mono_loader_lock ();
7621 while (i
< event_requests
->len
) {
7622 EventRequest
*req
= (EventRequest
*)g_ptr_array_index (event_requests
, i
);
7624 if (req
->event_kind
== EVENT_KIND_BREAKPOINT
) {
7625 clear_breakpoint ((MonoBreakpoint
*)req
->info
);
7627 g_ptr_array_remove_index_fast (event_requests
, i
);
7633 mono_loader_unlock ();
7637 return ERR_NOT_IMPLEMENTED
;
7644 domain_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
7650 case CMD_APPDOMAIN_GET_ROOT_DOMAIN
: {
7651 buffer_add_domainid (buf
, mono_get_root_domain ());
7654 case CMD_APPDOMAIN_GET_FRIENDLY_NAME
: {
7655 domain
= decode_domainid (p
, &p
, end
, NULL
, &err
);
7656 if (err
!= ERR_NONE
)
7658 buffer_add_string (buf
, domain
->friendly_name
);
7661 case CMD_APPDOMAIN_GET_ASSEMBLIES
: {
7666 domain
= decode_domainid (p
, &p
, end
, NULL
, &err
);
7667 if (err
!= ERR_NONE
)
7669 mono_loader_lock ();
7671 for (tmp
= domain
->domain_assemblies
; tmp
; tmp
= tmp
->next
) {
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
);
7679 mono_loader_unlock ();
7682 case CMD_APPDOMAIN_GET_ENTRY_ASSEMBLY
: {
7683 domain
= decode_domainid (p
, &p
, end
, NULL
, &err
);
7684 if (err
!= ERR_NONE
)
7687 buffer_add_assemblyid (buf
, domain
, domain
->entry_assembly
);
7690 case CMD_APPDOMAIN_GET_CORLIB
: {
7691 domain
= decode_domainid (p
, &p
, end
, NULL
, &err
);
7692 if (err
!= ERR_NONE
)
7695 buffer_add_assemblyid (buf
, domain
, domain
->domain
->mbr
.obj
.vtable
->klass
->image
->assembly
);
7698 case CMD_APPDOMAIN_CREATE_STRING
: {
7702 domain
= decode_domainid (p
, &p
, end
, NULL
, &err
);
7703 if (err
!= ERR_NONE
)
7705 s
= decode_string (p
, &p
, end
);
7707 o
= mono_string_new (domain
, s
);
7708 buffer_add_objid (buf
, (MonoObject
*)o
);
7711 case CMD_APPDOMAIN_CREATE_BOXED_VALUE
: {
7714 MonoDomain
*domain2
;
7717 domain
= decode_domainid (p
, &p
, end
, NULL
, &err
);
7718 if (err
!= ERR_NONE
)
7720 klass
= decode_typeid (p
, &p
, end
, &domain2
, &err
);
7721 if (err
!= ERR_NONE
)
7725 g_assert (domain
== domain2
);
7727 o
= mono_object_new_checked (domain
, klass
, &error
);
7728 mono_error_assert_ok (&error
);
7730 err
= decode_value (&klass
->byval_arg
, domain
, (guint8
*)mono_object_unbox (o
), p
, &p
, end
);
7731 if (err
!= ERR_NONE
)
7734 buffer_add_objid (buf
, o
);
7738 return ERR_NOT_IMPLEMENTED
;
7745 assembly_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
7751 ass
= decode_assemblyid (p
, &p
, end
, &domain
, &err
);
7752 if (err
!= ERR_NONE
)
7756 case CMD_ASSEMBLY_GET_LOCATION
: {
7757 buffer_add_string (buf
, mono_image_get_filename (ass
->image
));
7760 case CMD_ASSEMBLY_GET_ENTRY_POINT
: {
7764 if (ass
->image
->dynamic
) {
7765 buffer_add_id (buf
, 0);
7767 token
= mono_image_get_entry_point (ass
->image
);
7769 buffer_add_id (buf
, 0);
7772 m
= mono_get_method_checked (ass
->image
, token
, NULL
, NULL
, &error
);
7774 mono_error_cleanup (&error
); /* FIXME don't swallow the error */
7775 buffer_add_methodid (buf
, domain
, m
);
7780 case CMD_ASSEMBLY_GET_MANIFEST_MODULE
: {
7781 buffer_add_moduleid (buf
, domain
, ass
->image
);
7784 case CMD_ASSEMBLY_GET_OBJECT
: {
7786 MonoObject
*o
= (MonoObject
*)mono_assembly_get_object_checked (domain
, ass
, &error
);
7788 mono_error_cleanup (&error
); /* FIXME don't swallow the error */
7789 return ERR_INVALID_OBJECT
;
7791 buffer_add_objid (buf
, o
);
7794 case CMD_ASSEMBLY_GET_TYPE
: {
7796 char *s
= decode_string (p
, &p
, end
);
7797 gboolean ignorecase
= decode_byte (p
, &p
, end
);
7798 MonoTypeNameParse info
;
7800 gboolean type_resolve
, res
;
7801 MonoDomain
*d
= mono_domain_get ();
7803 /* This is needed to be able to find referenced assemblies */
7804 res
= mono_domain_set (domain
, FALSE
);
7807 if (!mono_reflection_parse_type (s
, &info
)) {
7810 if (info
.assembly
.name
)
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
);
7817 return ERR_INVALID_ARGUMENT
;
7820 buffer_add_typeid (buf
, domain
, t
? mono_class_from_mono_type (t
) : NULL
);
7821 mono_reflection_free_type_info (&info
);
7824 mono_domain_set (d
, TRUE
);
7828 case CMD_ASSEMBLY_GET_NAME
: {
7830 MonoAssembly
*mass
= ass
;
7832 name
= g_strdup_printf (
7833 "%s, Version=%d.%d.%d.%d, Culture=%s, PublicKeyToken=%s%s",
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" : "");
7840 buffer_add_string (buf
, name
);
7845 return ERR_NOT_IMPLEMENTED
;
7852 module_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
7858 case CMD_MODULE_GET_INFO
: {
7859 MonoImage
*image
= decode_moduleid (p
, &p
, end
, &domain
, &err
);
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
7872 return ERR_NOT_IMPLEMENTED
;
7879 field_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
7885 case CMD_FIELD_GET_INFO
: {
7886 MonoClassField
*f
= decode_fieldid (p
, &p
, end
, &domain
, &err
);
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
);
7895 return ERR_NOT_IMPLEMENTED
;
7902 buffer_add_cattr_arg (Buffer
*buf
, MonoType
*t
, MonoDomain
*domain
, MonoObject
*val
)
7904 if (val
&& val
->vtable
->klass
== mono_defaults
.runtimetype_class
) {
7905 /* Special case these so the client doesn't have to handle Type objects */
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
);
7912 buffer_add_value (buf
, t
, mono_object_unbox (val
), domain
);
7916 buffer_add_cattrs (Buffer
*buf
, MonoDomain
*domain
, MonoImage
*image
, MonoClass
*attr_klass
, MonoCustomAttrInfo
*cinfo
)
7922 buffer_add_int (buf
, 0);
7926 for (i
= 0; i
< cinfo
->num_attrs
; ++i
) {
7927 if (!attr_klass
|| mono_class_has_parent (cinfo
->attrs
[i
].ctor
->klass
, attr_klass
))
7930 buffer_add_int (buf
, nattrs
);
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
;
7937 CattrNamedArg
*arginfo
= NULL
;
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
;
7947 buffer_add_methodid (buf
, domain
, attr
->ctor
);
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
);
7955 t
= mono_method_signature (attr
->ctor
)->params
[j
];
7957 buffer_add_cattr_arg (buf
, t
, domain
, val
);
7960 buffer_add_int (buf
, 0);
7965 buffer_add_int (buf
, mono_array_length (named_args
));
7967 for (j
= 0; j
< mono_array_length (named_args
); ++j
) {
7968 MonoObject
*val
= mono_array_get (named_args
, MonoObject
*, j
);
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
);
7977 g_assert_not_reached ();
7980 buffer_add_cattr_arg (buf
, arginfo
[j
].type
, domain
, val
);
7983 buffer_add_int (buf
, 0);
7992 /* FIXME: Code duplication with icall.c */
7994 collect_interfaces (MonoClass
*klass
, GHashTable
*ifaces
, MonoError
*error
)
7999 mono_class_setup_interfaces (klass
, error
);
8000 if (!mono_error_ok (error
))
8003 for (i
= 0; i
< klass
->interface_count
; i
++) {
8004 ic
= klass
->interfaces
[i
];
8005 g_hash_table_insert (ifaces
, ic
, ic
);
8007 collect_interfaces (ic
, ifaces
, error
);
8008 if (!mono_error_ok (error
))
8014 type_commands_internal (int command
, MonoClass
*klass
, MonoDomain
*domain
, guint8
*p
, guint8
*end
, Buffer
*buf
)
8026 case CMD_TYPE_GET_INFO
: {
8027 buffer_add_string (buf
, klass
->name_space
);
8028 buffer_add_string (buf
, klass
->name
);
8030 name
= mono_type_get_name_full (&klass
->byval_arg
, MONO_TYPE_NAME_FORMAT_FULL_NAME
);
8031 buffer_add_string (buf
, 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
);
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
, mono_class_get_flags (klass
));
8044 type
= &klass
->byval_arg
;
8045 // FIXME: Can't decide whenever a class represents a byref type
8048 if (type
->type
== MONO_TYPE_PTR
)
8050 if (!type
->byref
&& (((type
->type
>= MONO_TYPE_BOOLEAN
) && (type
->type
<= MONO_TYPE_R8
)) || (type
->type
== MONO_TYPE_I
) || (type
->type
== MONO_TYPE_U
)))
8052 if (type
->type
== MONO_TYPE_VALUETYPE
)
8054 if (klass
->enumtype
)
8056 if (mono_class_is_gtd (klass
))
8058 if (mono_class_is_gtd (klass
) || mono_class_is_ginst (klass
))
8060 buffer_add_byte (buf
, b
);
8063 while ((nested
= mono_class_get_nested_types (klass
, &iter
)))
8065 buffer_add_int (buf
, nnested
);
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 (mono_class_is_gtd (klass
))
8071 buffer_add_typeid (buf
, domain
, klass
);
8072 else if (mono_class_is_ginst (klass
))
8073 buffer_add_typeid (buf
, domain
, mono_class_get_generic_class (klass
)->container_class
);
8075 buffer_add_id (buf
, 0);
8077 if (CHECK_PROTOCOL_VERSION (2, 15)) {
8080 if (mono_class_is_ginst (klass
)) {
8081 MonoGenericInst
*inst
= mono_class_get_generic_class (klass
)->context
.class_inst
;
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 (mono_class_is_gtd (klass
)) {
8088 MonoGenericContainer
*container
= mono_class_get_generic_container (klass
);
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
);
8098 buffer_add_int (buf
, 0);
8103 case CMD_TYPE_GET_METHODS
: {
8106 gpointer iter
= NULL
;
8109 mono_class_setup_methods (klass
);
8111 nmethods
= mono_class_num_methods (klass
);
8113 buffer_add_int (buf
, nmethods
);
8115 while ((m
= mono_class_get_methods (klass
, &iter
))) {
8116 buffer_add_methodid (buf
, domain
, m
);
8119 g_assert (i
== nmethods
);
8122 case CMD_TYPE_GET_FIELDS
: {
8125 gpointer iter
= NULL
;
8128 nfields
= mono_class_num_fields (klass
);
8130 buffer_add_int (buf
, nfields
);
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
);
8139 g_assert (i
== nfields
);
8142 case CMD_TYPE_GET_PROPERTIES
: {
8145 gpointer iter
= NULL
;
8148 nprops
= mono_class_num_properties (klass
);
8150 buffer_add_int (buf
, nprops
);
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
);
8160 g_assert (i
== nprops
);
8163 case CMD_TYPE_GET_CATTRS
: {
8164 MonoClass
*attr_klass
;
8165 MonoCustomAttrInfo
*cinfo
;
8167 attr_klass
= decode_typeid (p
, &p
, end
, NULL
, &err
);
8168 /* attr_klass can be NULL */
8169 if (err
!= ERR_NONE
)
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
;
8178 err
= buffer_add_cattrs (buf
, domain
, klass
->image
, attr_klass
, cinfo
);
8179 if (err
!= ERR_NONE
)
8183 case CMD_TYPE_GET_FIELD_CATTRS
: {
8184 MonoClass
*attr_klass
;
8185 MonoCustomAttrInfo
*cinfo
;
8186 MonoClassField
*field
;
8188 field
= decode_fieldid (p
, &p
, end
, NULL
, &err
);
8189 if (err
!= ERR_NONE
)
8191 attr_klass
= decode_typeid (p
, &p
, end
, NULL
, &err
);
8192 if (err
!= ERR_NONE
)
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
;
8201 err
= buffer_add_cattrs (buf
, domain
, klass
->image
, attr_klass
, cinfo
);
8202 if (err
!= ERR_NONE
)
8206 case CMD_TYPE_GET_PROPERTY_CATTRS
: {
8207 MonoClass
*attr_klass
;
8208 MonoCustomAttrInfo
*cinfo
;
8211 prop
= decode_propertyid (p
, &p
, end
, NULL
, &err
);
8212 if (err
!= ERR_NONE
)
8214 attr_klass
= decode_typeid (p
, &p
, end
, NULL
, &err
);
8215 if (err
!= ERR_NONE
)
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
;
8224 err
= buffer_add_cattrs (buf
, domain
, klass
->image
, attr_klass
, cinfo
);
8225 if (err
!= ERR_NONE
)
8229 case CMD_TYPE_GET_VALUES
:
8230 case CMD_TYPE_GET_VALUES_2
: {
8237 MonoThread
*thread_obj
;
8238 MonoInternalThread
*thread
= NULL
;
8239 guint32 special_static_type
;
8241 if (command
== CMD_TYPE_GET_VALUES_2
) {
8242 int objid
= decode_objid (p
, &p
, end
);
8245 err
= get_object (objid
, (MonoObject
**)&thread_obj
);
8246 if (err
!= ERR_NONE
)
8249 thread
= THREAD_TO_INTERNAL (thread_obj
);
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
)
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
;
8266 /* Check that the field belongs to the object */
8268 for (k
= klass
; k
; k
= k
->parent
) {
8269 if (k
== f
->parent
) {
8275 return ERR_INVALID_FIELDID
;
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
);
8287 case CMD_TYPE_SET_VALUES
: {
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
)
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
;
8306 /* Check that the field belongs to the object */
8308 for (k
= klass
; k
; k
= k
->parent
) {
8309 if (k
== f
->parent
) {
8315 return ERR_INVALID_FIELDID
;
8317 // FIXME: Check for literal/const
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
) {
8326 if (MONO_TYPE_IS_REFERENCE (f
->type
))
8327 mono_field_static_set_value (vtable
, f
, *(gpointer
*)val
);
8329 mono_field_static_set_value (vtable
, f
, val
);
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
;
8340 buffer_add_objid (buf
, o
);
8343 case CMD_TYPE_GET_SOURCE_FILES
:
8344 case CMD_TYPE_GET_SOURCE_FILES_2
: {
8345 char *source_file
, *base
;
8349 files
= get_source_files_for_type (klass
);
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
);
8357 base
= dbg_path_get_basename (source_file
);
8358 buffer_add_string (buf
, base
);
8361 g_free (source_file
);
8363 g_ptr_array_free (files
, TRUE
);
8366 case CMD_TYPE_IS_ASSIGNABLE_FROM
: {
8367 MonoClass
*oklass
= decode_typeid (p
, &p
, end
, NULL
, &err
);
8369 if (err
!= ERR_NONE
)
8371 if (mono_class_is_assignable_from (klass
, oklass
))
8372 buffer_add_byte (buf
, 1);
8374 buffer_add_byte (buf
, 0);
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
);
8383 mono_error_init (&error
);
8384 array
= mono_class_get_methods_by_name (klass
, name
, flags
& ~BINDING_FLAGS_IGNORE_CASE
, (flags
& BINDING_FLAGS_IGNORE_CASE
) != 0, TRUE
, &error
);
8385 if (!is_ok (&error
)) {
8386 mono_error_cleanup (&error
);
8387 return ERR_LOADER_ERROR
;
8389 buffer_add_int (buf
, array
->len
);
8390 for (i
= 0; i
< array
->len
; ++i
) {
8391 MonoMethod
*method
= (MonoMethod
*)g_ptr_array_index (array
, i
);
8392 buffer_add_methodid (buf
, domain
, method
);
8395 g_ptr_array_free (array
, TRUE
);
8399 case CMD_TYPE_GET_INTERFACES
: {
8401 GHashTable
*iface_hash
= g_hash_table_new (NULL
, NULL
);
8402 MonoClass
*tclass
, *iface
;
8403 GHashTableIter iter
;
8407 for (parent
= tclass
; parent
; parent
= parent
->parent
) {
8408 mono_class_setup_interfaces (parent
, &error
);
8409 if (!mono_error_ok (&error
))
8410 return ERR_LOADER_ERROR
;
8411 collect_interfaces (parent
, iface_hash
, &error
);
8412 if (!mono_error_ok (&error
))
8413 return ERR_LOADER_ERROR
;
8416 buffer_add_int (buf
, g_hash_table_size (iface_hash
));
8418 g_hash_table_iter_init (&iter
, iface_hash
);
8419 while (g_hash_table_iter_next (&iter
, NULL
, (void**)&iface
))
8420 buffer_add_typeid (buf
, domain
, iface
);
8421 g_hash_table_destroy (iface_hash
);
8424 case CMD_TYPE_GET_INTERFACE_MAP
: {
8425 int tindex
, ioffset
;
8426 gboolean variance_used
;
8428 int len
, nmethods
, i
;
8432 len
= decode_int (p
, &p
, end
);
8433 mono_class_setup_vtable (klass
);
8435 for (tindex
= 0; tindex
< len
; ++tindex
) {
8436 iclass
= decode_typeid (p
, &p
, end
, NULL
, &err
);
8437 if (err
!= ERR_NONE
)
8440 ioffset
= mono_class_interface_offset_with_variance (klass
, iclass
, &variance_used
);
8442 return ERR_INVALID_ARGUMENT
;
8444 nmethods
= mono_class_num_methods (iclass
);
8445 buffer_add_int (buf
, nmethods
);
8448 while ((method
= mono_class_get_methods (iclass
, &iter
))) {
8449 buffer_add_methodid (buf
, domain
, method
);
8451 for (i
= 0; i
< nmethods
; ++i
)
8452 buffer_add_methodid (buf
, domain
, klass
->vtable
[i
+ ioffset
]);
8456 case CMD_TYPE_IS_INITIALIZED
: {
8457 MonoVTable
*vtable
= mono_class_vtable (domain
, klass
);
8460 buffer_add_int (buf
, (vtable
->initialized
|| vtable
->init_failed
) ? 1 : 0);
8462 buffer_add_int (buf
, 0);
8465 case CMD_TYPE_CREATE_INSTANCE
: {
8469 obj
= mono_object_new_checked (domain
, klass
, &error
);
8470 mono_error_assert_ok (&error
);
8471 buffer_add_objid (buf
, obj
);
8475 return ERR_NOT_IMPLEMENTED
;
8482 type_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
8485 MonoDomain
*old_domain
;
8489 klass
= decode_typeid (p
, &p
, end
, &domain
, &err
);
8490 if (err
!= ERR_NONE
)
8493 old_domain
= mono_domain_get ();
8495 mono_domain_set (domain
, TRUE
);
8497 err
= type_commands_internal (command
, klass
, domain
, p
, end
, buf
);
8499 mono_domain_set (old_domain
, TRUE
);
8505 method_commands_internal (int command
, MonoMethod
*method
, MonoDomain
*domain
, guint8
*p
, guint8
*end
, Buffer
*buf
)
8507 MonoMethodHeader
*header
;
8511 case CMD_METHOD_GET_NAME
: {
8512 buffer_add_string (buf
, method
->name
);
8515 case CMD_METHOD_GET_DECLARING_TYPE
: {
8516 buffer_add_typeid (buf
, domain
, method
->klass
);
8519 case CMD_METHOD_GET_DEBUG_INFO
: {
8521 MonoDebugMethodInfo
*minfo
;
8523 int i
, j
, n_il_offsets
;
8525 GPtrArray
*source_file_list
;
8526 MonoSymSeqPoint
*sym_seq_points
;
8528 header
= mono_method_get_header_checked (method
, &error
);
8530 mono_error_cleanup (&error
); /* FIXME don't swallow the error */
8531 buffer_add_int (buf
, 0);
8532 buffer_add_string (buf
, "");
8533 buffer_add_int (buf
, 0);
8537 minfo
= mono_debug_lookup_method (method
);
8539 buffer_add_int (buf
, header
->code_size
);
8540 buffer_add_string (buf
, "");
8541 buffer_add_int (buf
, 0);
8542 mono_metadata_free_mh (header
);
8546 mono_debug_get_seq_points (minfo
, &source_file
, &source_file_list
, &source_files
, &sym_seq_points
, &n_il_offsets
);
8547 buffer_add_int (buf
, header
->code_size
);
8548 if (CHECK_PROTOCOL_VERSION (2, 13)) {
8549 buffer_add_int (buf
, source_file_list
->len
);
8550 for (i
= 0; i
< source_file_list
->len
; ++i
) {
8551 MonoDebugSourceInfo
*sinfo
= (MonoDebugSourceInfo
*)g_ptr_array_index (source_file_list
, i
);
8552 buffer_add_string (buf
, sinfo
->source_file
);
8553 if (CHECK_PROTOCOL_VERSION (2, 14)) {
8554 for (j
= 0; j
< 16; ++j
)
8555 buffer_add_byte (buf
, sinfo
->hash
[j
]);
8559 buffer_add_string (buf
, source_file
);
8561 buffer_add_int (buf
, n_il_offsets
);
8562 DEBUG_PRINTF (10, "Line number table for method %s:\n", mono_method_full_name (method
, TRUE
));
8563 for (i
= 0; i
< n_il_offsets
; ++i
) {
8564 MonoSymSeqPoint
*sp
= &sym_seq_points
[i
];
8565 const char *srcfile
= "";
8567 if (source_files
[i
] != -1) {
8568 MonoDebugSourceInfo
*sinfo
= (MonoDebugSourceInfo
*)g_ptr_array_index (source_file_list
, source_files
[i
]);
8569 srcfile
= sinfo
->source_file
;
8571 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
);
8572 buffer_add_int (buf
, sp
->il_offset
);
8573 buffer_add_int (buf
, sp
->line
);
8574 if (CHECK_PROTOCOL_VERSION (2, 13))
8575 buffer_add_int (buf
, source_files
[i
]);
8576 if (CHECK_PROTOCOL_VERSION (2, 19))
8577 buffer_add_int (buf
, sp
->column
);
8578 if (CHECK_PROTOCOL_VERSION (2, 32)) {
8579 buffer_add_int (buf
, sp
->end_line
);
8580 buffer_add_int (buf
, sp
->end_column
);
8583 g_free (source_file
);
8584 g_free (source_files
);
8585 g_free (sym_seq_points
);
8586 g_ptr_array_free (source_file_list
, TRUE
);
8587 mono_metadata_free_mh (header
);
8590 case CMD_METHOD_GET_PARAM_INFO
: {
8591 MonoMethodSignature
*sig
= mono_method_signature (method
);
8595 /* FIXME: mono_class_from_mono_type () and byrefs */
8597 /* FIXME: Use a smaller encoding */
8598 buffer_add_int (buf
, sig
->call_convention
);
8599 buffer_add_int (buf
, sig
->param_count
);
8600 buffer_add_int (buf
, sig
->generic_param_count
);
8601 buffer_add_typeid (buf
, domain
, mono_class_from_mono_type (sig
->ret
));
8602 for (i
= 0; i
< sig
->param_count
; ++i
) {
8604 buffer_add_typeid (buf
, domain
, mono_class_from_mono_type (sig
->params
[i
]));
8607 /* Emit parameter names */
8608 names
= g_new (char *, sig
->param_count
);
8609 mono_method_get_param_names (method
, (const char **) names
);
8610 for (i
= 0; i
< sig
->param_count
; ++i
)
8611 buffer_add_string (buf
, names
[i
]);
8616 case CMD_METHOD_GET_LOCALS_INFO
: {
8619 MonoDebugLocalsInfo
*locals
;
8620 int *locals_map
= NULL
;
8622 header
= mono_method_get_header_checked (method
, &error
);
8624 mono_error_cleanup (&error
); /* FIXME don't swallow the error */
8625 return ERR_INVALID_ARGUMENT
;
8628 locals
= mono_debug_lookup_locals (method
);
8630 if (CHECK_PROTOCOL_VERSION (2, 43)) {
8632 buffer_add_int (buf
, 1);
8633 buffer_add_int (buf
, 0);
8634 buffer_add_int (buf
, header
->code_size
);
8636 buffer_add_int (buf
, header
->num_locals
);
8638 for (i
= 0; i
< header
->num_locals
; ++i
) {
8639 buffer_add_typeid (buf
, domain
, mono_class_from_mono_type (header
->locals
[i
]));
8642 for (i
= 0; i
< header
->num_locals
; ++i
) {
8644 sprintf (lname
, "V_%d", i
);
8645 buffer_add_string (buf
, lname
);
8648 for (i
= 0; i
< header
->num_locals
; ++i
) {
8649 buffer_add_int (buf
, 0);
8650 buffer_add_int (buf
, header
->code_size
);
8653 if (CHECK_PROTOCOL_VERSION (2, 43)) {
8655 buffer_add_int (buf
, locals
->num_blocks
);
8657 for (i
= 0; i
< locals
->num_blocks
; ++i
) {
8658 buffer_add_int (buf
, locals
->code_blocks
[i
].start_offset
- last_start
);
8659 buffer_add_int (buf
, locals
->code_blocks
[i
].end_offset
- locals
->code_blocks
[i
].start_offset
);
8660 last_start
= locals
->code_blocks
[i
].start_offset
;
8664 num_locals
= locals
->num_locals
;
8665 buffer_add_int (buf
, num_locals
);
8668 for (i
= 0; i
< num_locals
; ++i
) {
8669 g_assert (locals
->locals
[i
].index
< header
->num_locals
);
8670 buffer_add_typeid (buf
, domain
, mono_class_from_mono_type (header
->locals
[locals
->locals
[i
].index
]));
8673 for (i
= 0; i
< num_locals
; ++i
)
8674 buffer_add_string (buf
, locals
->locals
[i
].name
);
8676 for (i
= 0; i
< num_locals
; ++i
) {
8677 if (locals
->locals
[i
].block
) {
8678 buffer_add_int (buf
, locals
->locals
[i
].block
->start_offset
);
8679 buffer_add_int (buf
, locals
->locals
[i
].block
->end_offset
);
8681 buffer_add_int (buf
, 0);
8682 buffer_add_int (buf
, header
->code_size
);
8686 mono_metadata_free_mh (header
);
8689 mono_debug_free_locals (locals
);
8690 g_free (locals_map
);
8694 case CMD_METHOD_GET_INFO
:
8695 buffer_add_int (buf
, method
->flags
);
8696 buffer_add_int (buf
, method
->iflags
);
8697 buffer_add_int (buf
, method
->token
);
8698 if (CHECK_PROTOCOL_VERSION (2, 12)) {
8700 if (method
->is_generic
)
8702 if (mono_method_signature (method
)->generic_param_count
)
8704 buffer_add_byte (buf
, attrs
);
8705 if (method
->is_generic
|| method
->is_inflated
) {
8708 if (method
->is_generic
) {
8711 MonoMethodInflated
*imethod
= (MonoMethodInflated
*)method
;
8713 result
= imethod
->declaring
;
8714 if (imethod
->context
.class_inst
) {
8715 MonoClass
*klass
= ((MonoMethod
*) imethod
)->klass
;
8716 /*Generic methods gets the context of the GTD.*/
8717 if (mono_class_get_context (klass
)) {
8719 result
= mono_class_inflate_generic_method_full_checked (result
, klass
, mono_class_get_context (klass
), &error
);
8720 g_assert (mono_error_ok (&error
)); /* FIXME don't swallow the error */
8725 buffer_add_methodid (buf
, domain
, result
);
8727 buffer_add_id (buf
, 0);
8729 if (CHECK_PROTOCOL_VERSION (2, 15)) {
8730 if (mono_method_signature (method
)->generic_param_count
) {
8733 if (method
->is_inflated
) {
8734 MonoGenericInst
*inst
= mono_method_get_context (method
)->method_inst
;
8736 count
= inst
->type_argc
;
8737 buffer_add_int (buf
, count
);
8739 for (i
= 0; i
< count
; i
++)
8740 buffer_add_typeid (buf
, domain
, mono_class_from_mono_type (inst
->type_argv
[i
]));
8742 buffer_add_int (buf
, 0);
8744 } else if (method
->is_generic
) {
8745 MonoGenericContainer
*container
= mono_method_get_generic_container (method
);
8747 count
= mono_method_signature (method
)->generic_param_count
;
8748 buffer_add_int (buf
, count
);
8749 for (i
= 0; i
< count
; i
++) {
8750 MonoGenericParam
*param
= mono_generic_container_get_param (container
, i
);
8751 MonoClass
*pklass
= mono_class_from_generic_parameter_internal (param
);
8752 buffer_add_typeid (buf
, domain
, pklass
);
8755 buffer_add_int (buf
, 0);
8758 buffer_add_int (buf
, 0);
8763 case CMD_METHOD_GET_BODY
: {
8767 header
= mono_method_get_header_checked (method
, &error
);
8769 mono_error_cleanup (&error
); /* FIXME don't swallow the error */
8770 buffer_add_int (buf
, 0);
8772 if (CHECK_PROTOCOL_VERSION (2, 18))
8773 buffer_add_int (buf
, 0);
8775 buffer_add_int (buf
, header
->code_size
);
8776 for (i
= 0; i
< header
->code_size
; ++i
)
8777 buffer_add_byte (buf
, header
->code
[i
]);
8779 if (CHECK_PROTOCOL_VERSION (2, 18)) {
8780 buffer_add_int (buf
, header
->num_clauses
);
8781 for (i
= 0; i
< header
->num_clauses
; ++i
) {
8782 MonoExceptionClause
*clause
= &header
->clauses
[i
];
8784 buffer_add_int (buf
, clause
->flags
);
8785 buffer_add_int (buf
, clause
->try_offset
);
8786 buffer_add_int (buf
, clause
->try_len
);
8787 buffer_add_int (buf
, clause
->handler_offset
);
8788 buffer_add_int (buf
, clause
->handler_len
);
8789 if (clause
->flags
== MONO_EXCEPTION_CLAUSE_NONE
)
8790 buffer_add_typeid (buf
, domain
, clause
->data
.catch_class
);
8791 else if (clause
->flags
== MONO_EXCEPTION_CLAUSE_FILTER
)
8792 buffer_add_int (buf
, clause
->data
.filter_offset
);
8796 mono_metadata_free_mh (header
);
8801 case CMD_METHOD_RESOLVE_TOKEN
: {
8802 guint32 token
= decode_int (p
, &p
, end
);
8805 switch (mono_metadata_token_code (token
)) {
8806 case MONO_TOKEN_STRING
: {
8811 s
= mono_ldstr_checked (domain
, method
->klass
->image
, mono_metadata_token_index (token
), &error
);
8812 mono_error_assert_ok (&error
); /* FIXME don't swallow the error */
8814 s2
= mono_string_to_utf8_checked (s
, &error
);
8815 mono_error_assert_ok (&error
);
8817 buffer_add_byte (buf
, TOKEN_TYPE_STRING
);
8818 buffer_add_string (buf
, s2
);
8825 MonoClass
*handle_class
;
8827 if (method
->wrapper_type
== MONO_WRAPPER_DYNAMIC_METHOD
) {
8828 val
= mono_method_get_wrapper_data (method
, token
);
8829 handle_class
= (MonoClass
*)mono_method_get_wrapper_data (method
, token
+ 1);
8831 if (handle_class
== NULL
) {
8832 // Can't figure out the token type
8833 buffer_add_byte (buf
, TOKEN_TYPE_UNKNOWN
);
8837 val
= mono_ldtoken_checked (method
->klass
->image
, token
, &handle_class
, NULL
, &error
);
8839 g_error ("Could not load token due to %s", mono_error_get_message (&error
));
8842 if (handle_class
== mono_defaults
.typehandle_class
) {
8843 buffer_add_byte (buf
, TOKEN_TYPE_TYPE
);
8844 if (method
->wrapper_type
== MONO_WRAPPER_DYNAMIC_METHOD
)
8845 buffer_add_typeid (buf
, domain
, (MonoClass
*) val
);
8847 buffer_add_typeid (buf
, domain
, mono_class_from_mono_type ((MonoType
*)val
));
8848 } else if (handle_class
== mono_defaults
.fieldhandle_class
) {
8849 buffer_add_byte (buf
, TOKEN_TYPE_FIELD
);
8850 buffer_add_fieldid (buf
, domain
, (MonoClassField
*)val
);
8851 } else if (handle_class
== mono_defaults
.methodhandle_class
) {
8852 buffer_add_byte (buf
, TOKEN_TYPE_METHOD
);
8853 buffer_add_methodid (buf
, domain
, (MonoMethod
*)val
);
8854 } else if (handle_class
== mono_defaults
.string_class
) {
8857 s
= mono_string_to_utf8_checked ((MonoString
*)val
, &error
);
8858 mono_error_assert_ok (&error
);
8859 buffer_add_byte (buf
, TOKEN_TYPE_STRING
);
8860 buffer_add_string (buf
, s
);
8863 g_assert_not_reached ();
8870 case CMD_METHOD_GET_CATTRS
: {
8872 MonoClass
*attr_klass
;
8873 MonoCustomAttrInfo
*cinfo
;
8875 attr_klass
= decode_typeid (p
, &p
, end
, NULL
, &err
);
8876 /* attr_klass can be NULL */
8877 if (err
!= ERR_NONE
)
8880 cinfo
= mono_custom_attrs_from_method_checked (method
, &error
);
8881 if (!is_ok (&error
)) {
8882 mono_error_cleanup (&error
); /* FIXME don't swallow the error message */
8883 return ERR_LOADER_ERROR
;
8886 err
= buffer_add_cattrs (buf
, domain
, method
->klass
->image
, attr_klass
, cinfo
);
8887 if (err
!= ERR_NONE
)
8891 case CMD_METHOD_MAKE_GENERIC_METHOD
: {
8893 MonoType
**type_argv
;
8897 MonoGenericInst
*ginst
;
8898 MonoGenericContext tmp_context
;
8899 MonoMethod
*inflated
;
8901 type_argc
= decode_int (p
, &p
, end
);
8902 type_argv
= g_new0 (MonoType
*, type_argc
);
8903 for (i
= 0; i
< type_argc
; ++i
) {
8904 klass
= decode_typeid (p
, &p
, end
, &d
, &err
);
8905 if (err
!= ERR_NONE
) {
8911 return ERR_INVALID_ARGUMENT
;
8913 type_argv
[i
] = &klass
->byval_arg
;
8915 ginst
= mono_metadata_get_generic_inst (type_argc
, type_argv
);
8917 tmp_context
.class_inst
= mono_class_is_ginst (method
->klass
) ? mono_class_get_generic_class (method
->klass
)->context
.class_inst
: NULL
;
8918 tmp_context
.method_inst
= ginst
;
8920 inflated
= mono_class_inflate_generic_method_checked (method
, &tmp_context
, &error
);
8921 g_assert (mono_error_ok (&error
)); /* FIXME don't swallow the error */
8922 if (!mono_verifier_is_method_valid_generic_instantiation (inflated
))
8923 return ERR_INVALID_ARGUMENT
;
8924 buffer_add_methodid (buf
, domain
, inflated
);
8928 return ERR_NOT_IMPLEMENTED
;
8935 method_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
8938 MonoDomain
*old_domain
;
8942 method
= decode_methodid (p
, &p
, end
, &domain
, &err
);
8943 if (err
!= ERR_NONE
)
8946 old_domain
= mono_domain_get ();
8948 mono_domain_set (domain
, TRUE
);
8950 err
= method_commands_internal (command
, method
, domain
, p
, end
, buf
);
8952 mono_domain_set (old_domain
, TRUE
);
8958 thread_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
8960 int objid
= decode_objid (p
, &p
, end
);
8962 MonoThread
*thread_obj
;
8963 MonoInternalThread
*thread
;
8965 err
= get_object (objid
, (MonoObject
**)&thread_obj
);
8966 if (err
!= ERR_NONE
)
8969 thread
= THREAD_TO_INTERNAL (thread_obj
);
8972 case CMD_THREAD_GET_NAME
: {
8974 gunichar2
*s
= mono_thread_get_name (thread
, &name_len
);
8977 buffer_add_int (buf
, 0);
8982 name
= g_utf16_to_utf8 (s
, name_len
, NULL
, &len
, NULL
);
8984 buffer_add_int (buf
, len
);
8985 buffer_add_data (buf
, (guint8
*)name
, len
);
8990 case CMD_THREAD_GET_FRAME_INFO
: {
8991 DebuggerTlsData
*tls
;
8992 int i
, start_frame
, length
;
8994 // Wait for suspending if it already started
8995 // FIXME: Races with suspend_count
8996 while (!is_suspended ()) {
8998 wait_for_suspend ();
9002 wait_for_suspend ();
9003 if (!is_suspended ())
9004 return ERR_NOT_SUSPENDED;
9007 start_frame
= decode_int (p
, &p
, end
);
9008 length
= decode_int (p
, &p
, end
);
9010 if (start_frame
!= 0 || length
!= -1)
9011 return ERR_NOT_IMPLEMENTED
;
9013 mono_loader_lock ();
9014 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, thread
);
9015 mono_loader_unlock ();
9018 compute_frame_info (thread
, tls
);
9020 buffer_add_int (buf
, tls
->frame_count
);
9021 for (i
= 0; i
< tls
->frame_count
; ++i
) {
9022 buffer_add_int (buf
, tls
->frames
[i
]->id
);
9023 buffer_add_methodid (buf
, tls
->frames
[i
]->domain
, tls
->frames
[i
]->actual_method
);
9024 buffer_add_int (buf
, tls
->frames
[i
]->il_offset
);
9026 * Instead of passing the frame type directly to the client, we associate
9027 * it with the previous frame using a set of flags. This avoids lots of
9028 * conditional code in the client, since a frame whose type isn't
9029 * FRAME_TYPE_MANAGED has no method, location, etc.
9031 buffer_add_byte (buf
, tls
->frames
[i
]->flags
);
9036 case CMD_THREAD_GET_STATE
:
9037 buffer_add_int (buf
, thread
->state
);
9039 case CMD_THREAD_GET_INFO
:
9040 buffer_add_byte (buf
, thread
->threadpool_thread
);
9042 case CMD_THREAD_GET_ID
:
9043 buffer_add_long (buf
, (guint64
)(gsize
)thread
);
9045 case CMD_THREAD_GET_TID
:
9046 buffer_add_long (buf
, (guint64
)thread
->tid
);
9048 case CMD_THREAD_SET_IP
: {
9049 DebuggerTlsData
*tls
;
9052 MonoSeqPointInfo
*seq_points
;
9057 method
= decode_methodid (p
, &p
, end
, &domain
, &err
);
9058 if (err
!= ERR_NONE
)
9060 il_offset
= decode_long (p
, &p
, end
);
9062 while (!is_suspended ()) {
9064 wait_for_suspend ();
9067 mono_loader_lock ();
9068 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, thread
);
9069 mono_loader_unlock ();
9072 compute_frame_info (thread
, tls
);
9073 if (tls
->frame_count
== 0 || tls
->frames
[0]->actual_method
!= method
)
9074 return ERR_INVALID_ARGUMENT
;
9076 found_sp
= mono_find_seq_point (domain
, method
, il_offset
, &seq_points
, &sp
);
9078 g_assert (seq_points
);
9081 return ERR_INVALID_ARGUMENT
;
9083 // FIXME: Check that the ip change is safe
9085 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
);
9086 MONO_CONTEXT_SET_IP (&tls
->restore_state
.ctx
, (guint8
*)tls
->frames
[0]->ji
->code_start
+ sp
.native_offset
);
9090 return ERR_NOT_IMPLEMENTED
;
9097 frame_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
9101 MonoThread
*thread_obj
;
9102 MonoInternalThread
*thread
;
9103 int pos
, i
, len
, frame_idx
;
9104 DebuggerTlsData
*tls
;
9106 MonoDebugMethodJitInfo
*jit
;
9107 MonoMethodSignature
*sig
;
9109 MonoMethodHeader
*header
;
9111 objid
= decode_objid (p
, &p
, end
);
9112 err
= get_object (objid
, (MonoObject
**)&thread_obj
);
9113 if (err
!= ERR_NONE
)
9116 thread
= THREAD_TO_INTERNAL (thread_obj
);
9118 id
= decode_id (p
, &p
, end
);
9120 mono_loader_lock ();
9121 tls
= (DebuggerTlsData
*)mono_g_hash_table_lookup (thread_to_tls
, thread
);
9122 mono_loader_unlock ();
9125 for (i
= 0; i
< tls
->frame_count
; ++i
) {
9126 if (tls
->frames
[i
]->id
== id
)
9129 if (i
== tls
->frame_count
)
9130 return ERR_INVALID_FRAMEID
;
9133 frame
= tls
->frames
[frame_idx
];
9135 /* This is supported for frames without has_ctx etc. set */
9136 if (command
== CMD_STACK_FRAME_GET_DOMAIN
) {
9137 if (CHECK_PROTOCOL_VERSION (2, 38))
9138 buffer_add_domainid (buf
, frame
->domain
);
9142 if (!frame
->has_ctx
)
9143 return ERR_ABSENT_INFORMATION
;
9146 frame
->jit
= mono_debug_find_method (frame
->api_method
, frame
->domain
);
9147 if (!frame
->jit
&& frame
->api_method
->is_inflated
)
9148 frame
->jit
= mono_debug_find_method (mono_method_get_declaring_generic_method (frame
->api_method
), frame
->domain
);
9152 /* This could happen for aot images with no jit debug info */
9153 s
= mono_method_full_name (frame
->api_method
, TRUE
);
9154 DEBUG_PRINTF (1, "[dbg] No debug information found for '%s'.\n", s
);
9156 return ERR_ABSENT_INFORMATION
;
9161 sig
= mono_method_signature (frame
->actual_method
);
9163 if (!jit
->has_var_info
|| !mono_get_seq_points (frame
->domain
, frame
->actual_method
))
9165 * The method is probably from an aot image compiled without soft-debug, variables might be dead, etc.
9167 return ERR_ABSENT_INFORMATION
;
9170 case CMD_STACK_FRAME_GET_VALUES
: {
9172 len
= decode_int (p
, &p
, end
);
9173 header
= mono_method_get_header_checked (frame
->actual_method
, &error
);
9174 mono_error_assert_ok (&error
); /* FIXME report error */
9176 for (i
= 0; i
< len
; ++i
) {
9177 pos
= decode_int (p
, &p
, end
);
9182 DEBUG_PRINTF (4, "[dbg] send arg %d.\n", pos
);
9184 g_assert (pos
>= 0 && pos
< jit
->num_params
);
9186 add_var (buf
, jit
, sig
->params
[pos
], &jit
->params
[pos
], &frame
->ctx
, frame
->domain
, FALSE
);
9188 MonoDebugLocalsInfo
*locals
;
9190 locals
= mono_debug_lookup_locals (frame
->method
);
9192 g_assert (pos
< locals
->num_locals
);
9193 pos
= locals
->locals
[pos
].index
;
9194 mono_debug_free_locals (locals
);
9196 g_assert (pos
>= 0 && pos
< jit
->num_locals
);
9198 DEBUG_PRINTF (4, "[dbg] send local %d.\n", pos
);
9200 add_var (buf
, jit
, header
->locals
[pos
], &jit
->locals
[pos
], &frame
->ctx
, frame
->domain
, FALSE
);
9203 mono_metadata_free_mh (header
);
9206 case CMD_STACK_FRAME_GET_THIS
: {
9207 if (frame
->api_method
->klass
->valuetype
) {
9208 if (!sig
->hasthis
) {
9209 MonoObject
*p
= NULL
;
9210 buffer_add_value (buf
, &mono_defaults
.object_class
->byval_arg
, &p
, frame
->domain
);
9212 add_var (buf
, jit
, &frame
->actual_method
->klass
->this_arg
, jit
->this_var
, &frame
->ctx
, frame
->domain
, TRUE
);
9215 if (!sig
->hasthis
) {
9216 MonoObject
*p
= NULL
;
9217 buffer_add_value (buf
, &frame
->actual_method
->klass
->byval_arg
, &p
, frame
->domain
);
9219 add_var (buf
, jit
, &frame
->api_method
->klass
->byval_arg
, jit
->this_var
, &frame
->ctx
, frame
->domain
, TRUE
);
9224 case CMD_STACK_FRAME_SET_VALUES
: {
9228 MonoDebugVarInfo
*var
;
9230 len
= decode_int (p
, &p
, end
);
9231 header
= mono_method_get_header_checked (frame
->actual_method
, &error
);
9232 mono_error_assert_ok (&error
); /* FIXME report error */
9234 for (i
= 0; i
< len
; ++i
) {
9235 pos
= decode_int (p
, &p
, end
);
9240 g_assert (pos
>= 0 && pos
< jit
->num_params
);
9242 t
= sig
->params
[pos
];
9243 var
= &jit
->params
[pos
];
9245 MonoDebugLocalsInfo
*locals
;
9247 locals
= mono_debug_lookup_locals (frame
->method
);
9249 g_assert (pos
< locals
->num_locals
);
9250 pos
= locals
->locals
[pos
].index
;
9251 mono_debug_free_locals (locals
);
9253 g_assert (pos
>= 0 && pos
< jit
->num_locals
);
9255 t
= header
->locals
[pos
];
9256 var
= &jit
->locals
[pos
];
9259 if (MONO_TYPE_IS_REFERENCE (t
))
9260 val_buf
= (guint8
*)g_alloca (sizeof (MonoObject
*));
9262 val_buf
= (guint8
*)g_alloca (mono_class_instance_size (mono_class_from_mono_type (t
)));
9263 err
= decode_value (t
, frame
->domain
, val_buf
, p
, &p
, end
);
9264 if (err
!= ERR_NONE
)
9267 set_var (t
, var
, &frame
->ctx
, frame
->domain
, val_buf
, frame
->reg_locations
, &tls
->restore_state
.ctx
);
9269 mono_metadata_free_mh (header
);
9272 case CMD_STACK_FRAME_GET_DOMAIN
: {
9273 if (CHECK_PROTOCOL_VERSION (2, 38))
9274 buffer_add_domainid (buf
, frame
->domain
);
9277 case CMD_STACK_FRAME_SET_THIS
: {
9280 MonoDebugVarInfo
*var
;
9282 t
= &frame
->actual_method
->klass
->byval_arg
;
9283 /* Checked by the sender */
9284 g_assert (MONO_TYPE_ISSTRUCT (t
));
9285 var
= jit
->this_var
;
9288 val_buf
= (guint8
*)g_alloca (mono_class_instance_size (mono_class_from_mono_type (t
)));
9289 err
= decode_value (t
, frame
->domain
, val_buf
, p
, &p
, end
);
9290 if (err
!= ERR_NONE
)
9293 set_var (&frame
->actual_method
->klass
->this_arg
, var
, &frame
->ctx
, frame
->domain
, val_buf
, frame
->reg_locations
, &tls
->restore_state
.ctx
);
9297 return ERR_NOT_IMPLEMENTED
;
9304 array_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
9307 int objid
, index
, len
, i
, esize
;
9311 objid
= decode_objid (p
, &p
, end
);
9312 err
= get_object (objid
, (MonoObject
**)&arr
);
9313 if (err
!= ERR_NONE
)
9317 case CMD_ARRAY_REF_GET_LENGTH
:
9318 buffer_add_int (buf
, arr
->obj
.vtable
->klass
->rank
);
9320 buffer_add_int (buf
, arr
->max_length
);
9321 buffer_add_int (buf
, 0);
9323 for (i
= 0; i
< arr
->obj
.vtable
->klass
->rank
; ++i
) {
9324 buffer_add_int (buf
, arr
->bounds
[i
].length
);
9325 buffer_add_int (buf
, arr
->bounds
[i
].lower_bound
);
9329 case CMD_ARRAY_REF_GET_VALUES
:
9330 index
= decode_int (p
, &p
, end
);
9331 len
= decode_int (p
, &p
, end
);
9333 g_assert (index
>= 0 && len
>= 0);
9334 // Reordered to avoid integer overflow
9335 g_assert (!(index
> arr
->max_length
- len
));
9337 esize
= mono_array_element_size (arr
->obj
.vtable
->klass
);
9338 for (i
= index
; i
< index
+ len
; ++i
) {
9339 elem
= (gpointer
*)((char*)arr
->vector
+ (i
* esize
));
9340 buffer_add_value (buf
, &arr
->obj
.vtable
->klass
->element_class
->byval_arg
, elem
, arr
->obj
.vtable
->domain
);
9343 case CMD_ARRAY_REF_SET_VALUES
:
9344 index
= decode_int (p
, &p
, end
);
9345 len
= decode_int (p
, &p
, end
);
9347 g_assert (index
>= 0 && len
>= 0);
9348 // Reordered to avoid integer overflow
9349 g_assert (!(index
> arr
->max_length
- len
));
9351 esize
= mono_array_element_size (arr
->obj
.vtable
->klass
);
9352 for (i
= index
; i
< index
+ len
; ++i
) {
9353 elem
= (gpointer
*)((char*)arr
->vector
+ (i
* esize
));
9355 decode_value (&arr
->obj
.vtable
->klass
->element_class
->byval_arg
, arr
->obj
.vtable
->domain
, (guint8
*)elem
, p
, &p
, end
);
9359 return ERR_NOT_IMPLEMENTED
;
9366 string_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
9372 int i
, index
, length
;
9374 gboolean use_utf16
= FALSE
;
9376 objid
= decode_objid (p
, &p
, end
);
9377 err
= get_object (objid
, (MonoObject
**)&str
);
9378 if (err
!= ERR_NONE
)
9382 case CMD_STRING_REF_GET_VALUE
:
9383 if (CHECK_PROTOCOL_VERSION (2, 41)) {
9384 for (i
= 0; i
< mono_string_length (str
); ++i
)
9385 if (mono_string_chars (str
)[i
] == 0)
9387 buffer_add_byte (buf
, use_utf16
? 1 : 0);
9390 buffer_add_int (buf
, mono_string_length (str
) * 2);
9391 buffer_add_data (buf
, (guint8
*)mono_string_chars (str
), mono_string_length (str
) * 2);
9394 s
= mono_string_to_utf8_checked (str
, &error
);
9395 mono_error_assert_ok (&error
);
9396 buffer_add_string (buf
, s
);
9400 case CMD_STRING_REF_GET_LENGTH
:
9401 buffer_add_long (buf
, mono_string_length (str
));
9403 case CMD_STRING_REF_GET_CHARS
:
9404 index
= decode_long (p
, &p
, end
);
9405 length
= decode_long (p
, &p
, end
);
9406 if (index
> mono_string_length (str
) - length
)
9407 return ERR_INVALID_ARGUMENT
;
9408 c
= mono_string_chars (str
) + index
;
9409 for (i
= 0; i
< length
; ++i
)
9410 buffer_add_short (buf
, c
[i
]);
9413 return ERR_NOT_IMPLEMENTED
;
9420 object_commands (int command
, guint8
*p
, guint8
*end
, Buffer
*buf
)
9431 if (command
== CMD_OBJECT_REF_IS_COLLECTED
) {
9432 objid
= decode_objid (p
, &p
, end
);
9433 err
= get_object (objid
, &obj
);
9434 if (err
!= ERR_NONE
)
9435 buffer_add_int (buf
, 1);
9437 buffer_add_int (buf
, 0);
9441 objid
= decode_objid (p
, &p
, end
);
9442 err
= get_object (objid
, &obj
);
9443 if (err
!= ERR_NONE
)
9446 MonoClass
*obj_type
;
9447 gboolean remote_obj
= FALSE
;
9449 obj_type
= obj
->vtable
->klass
;
9450 if (mono_class_is_transparent_proxy (obj_type
)) {
9451 obj_type
= ((MonoTransparentProxy
*)obj
)->remote_class
->proxy_class
;
9455 g_assert (obj_type
);
9458 case CMD_OBJECT_REF_GET_TYPE
:
9459 /* This handles transparent proxies too */
9460 buffer_add_typeid (buf
, obj
->vtable
->domain
, mono_class_from_mono_type (((MonoReflectionType
*)obj
->vtable
->type
)->type
));
9462 case CMD_OBJECT_REF_GET_VALUES
:
9463 len
= decode_int (p
, &p
, end
);
9465 for (i
= 0; i
< len
; ++i
) {
9466 MonoClassField
*f
= decode_fieldid (p
, &p
, end
, NULL
, &err
);
9467 if (err
!= ERR_NONE
)
9470 /* Check that the field belongs to the object */
9472 for (k
= obj_type
; k
; k
= k
->parent
) {
9473 if (k
== f
->parent
) {
9479 return ERR_INVALID_FIELDID
;
9481 if (f
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
) {
9485 if (mono_class_field_is_special_static (f
))
9486 return ERR_INVALID_FIELDID
;
9488 g_assert (f
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
);
9489 vtable
= mono_class_vtable (obj
->vtable
->domain
, f
->parent
);
9490 val
= (guint8
*)g_malloc (mono_class_instance_size (mono_class_from_mono_type (f
->type
)));
9491 mono_field_static_get_value_checked (vtable
, f
, val
, &error
);
9492 if (!is_ok (&error
)) {
9493 mono_error_cleanup (&error
); /* FIXME report the error */
9494 return ERR_INVALID_OBJECT
;
9496 buffer_add_value (buf
, f
->type
, val
, obj
->vtable
->domain
);
9499 guint8
*field_value
= NULL
;
9502 #ifndef DISABLE_REMOTING
9503 void *field_storage
= NULL
;
9504 field_value
= mono_load_remote_field_checked(obj
, obj_type
, f
, &field_storage
, &error
);
9505 if (!is_ok (&error
)) {
9506 mono_error_cleanup (&error
); /* FIXME report the error */
9507 return ERR_INVALID_OBJECT
;
9510 g_assert_not_reached ();
9513 field_value
= (guint8
*)obj
+ f
->offset
;
9515 buffer_add_value (buf
, f
->type
, field_value
, obj
->vtable
->domain
);
9519 case CMD_OBJECT_REF_SET_VALUES
:
9520 len
= decode_int (p
, &p
, end
);
9522 for (i
= 0; i
< len
; ++i
) {
9523 f
= decode_fieldid (p
, &p
, end
, NULL
, &err
);
9524 if (err
!= ERR_NONE
)
9527 /* Check that the field belongs to the object */
9529 for (k
= obj_type
; k
; k
= k
->parent
) {
9530 if (k
== f
->parent
) {
9536 return ERR_INVALID_FIELDID
;
9538 if (f
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
) {
9542 if (mono_class_field_is_special_static (f
))
9543 return ERR_INVALID_FIELDID
;
9545 g_assert (f
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
);
9546 vtable
= mono_class_vtable (obj
->vtable
->domain
, f
->parent
);
9548 val
= (guint8
*)g_malloc (mono_class_instance_size (mono_class_from_mono_type (f
->type
)));
9549 err
= decode_value (f
->type
, obj
->vtable
->domain
, val
, p
, &p
, end
);
9550 if (err
!= ERR_NONE
) {
9554 mono_field_static_set_value (vtable
, f
, val
);
9557 err
= decode_value (f
->type
, obj
->vtable
->domain
, (guint8
*)obj
+ f
->offset
, p
, &p
, end
);
9558 if (err
!= ERR_NONE
)
9563 case CMD_OBJECT_REF_GET_ADDRESS
:
9564 buffer_add_long (buf
, (gssize
)obj
);
9566 case CMD_OBJECT_REF_GET_DOMAIN
:
9567 buffer_add_domainid (buf
, obj
->vtable
->domain
);
9569 case CMD_OBJECT_REF_GET_INFO
:
9570 buffer_add_typeid (buf
, obj
->vtable
->domain
, mono_class_from_mono_type (((MonoReflectionType
*)obj
->vtable
->type
)->type
));
9571 buffer_add_domainid (buf
, obj
->vtable
->domain
);
9574 return ERR_NOT_IMPLEMENTED
;
9581 command_set_to_string (CommandSet command_set
)
9583 switch (command_set
) {
9586 case CMD_SET_OBJECT_REF
:
9587 return "OBJECT_REF";
9588 case CMD_SET_STRING_REF
:
9589 return "STRING_REF";
9590 case CMD_SET_THREAD
:
9592 case CMD_SET_ARRAY_REF
:
9594 case CMD_SET_EVENT_REQUEST
:
9595 return "EVENT_REQUEST";
9596 case CMD_SET_STACK_FRAME
:
9597 return "STACK_FRAME";
9598 case CMD_SET_APPDOMAIN
:
9600 case CMD_SET_ASSEMBLY
:
9602 case CMD_SET_METHOD
:
9606 case CMD_SET_MODULE
:
9617 static const char* vm_cmds_str
[] = {
9625 "SET_PROTOCOL_VERSION",
9628 "GET_TYPES_FOR_SOURCE_FILE",
9633 static const char* thread_cmds_str
[] = {
9643 static const char* event_cmds_str
[] = {
9646 "REQUEST_CLEAR_ALL_BREAKPOINTS"
9649 static const char* appdomain_cmds_str
[] = {
9651 "GET_FRIENDLY_NAME",
9653 "GET_ENTRY_ASSEMBLY",
9656 "CREATE_BOXED_VALUE"
9659 static const char* assembly_cmds_str
[] = {
9662 "GET_MANIFEST_MODULE",
9668 static const char* module_cmds_str
[] = {
9672 static const char* field_cmds_str
[] = {
9676 static const char* method_cmds_str
[] = {
9678 "GET_DECLARING_TYPE",
9686 "MAKE_GENERIC_METHOD"
9689 static const char* type_cmds_str
[] = {
9697 "IS_ASSIGNABLE_FROM",
9701 "GET_PROPERTY_CATTRS",
9702 "GET_SOURCE_FILES_2",
9704 "GET_METHODS_BY_NAME_FLAGS",
9706 "GET_INTERFACE_MAP",
9710 static const char* stack_frame_cmds_str
[] = {
9718 static const char* array_cmds_str
[] = {
9724 static const char* string_cmds_str
[] = {
9730 static const char* object_cmds_str
[] = {
9741 cmd_to_string (CommandSet set
, int command
)
9749 cmds_len
= G_N_ELEMENTS (vm_cmds_str
);
9751 case CMD_SET_OBJECT_REF
:
9752 cmds
= object_cmds_str
;
9753 cmds_len
= G_N_ELEMENTS (object_cmds_str
);
9755 case CMD_SET_STRING_REF
:
9756 cmds
= string_cmds_str
;
9757 cmds_len
= G_N_ELEMENTS (string_cmds_str
);
9759 case CMD_SET_THREAD
:
9760 cmds
= thread_cmds_str
;
9761 cmds_len
= G_N_ELEMENTS (thread_cmds_str
);
9763 case CMD_SET_ARRAY_REF
:
9764 cmds
= array_cmds_str
;
9765 cmds_len
= G_N_ELEMENTS (array_cmds_str
);
9767 case CMD_SET_EVENT_REQUEST
:
9768 cmds
= event_cmds_str
;
9769 cmds_len
= G_N_ELEMENTS (event_cmds_str
);
9771 case CMD_SET_STACK_FRAME
:
9772 cmds
= stack_frame_cmds_str
;
9773 cmds_len
= G_N_ELEMENTS (stack_frame_cmds_str
);
9775 case CMD_SET_APPDOMAIN
:
9776 cmds
= appdomain_cmds_str
;
9777 cmds_len
= G_N_ELEMENTS (appdomain_cmds_str
);
9779 case CMD_SET_ASSEMBLY
:
9780 cmds
= assembly_cmds_str
;
9781 cmds_len
= G_N_ELEMENTS (assembly_cmds_str
);
9783 case CMD_SET_METHOD
:
9784 cmds
= method_cmds_str
;
9785 cmds_len
= G_N_ELEMENTS (method_cmds_str
);
9788 cmds
= type_cmds_str
;
9789 cmds_len
= G_N_ELEMENTS (type_cmds_str
);
9791 case CMD_SET_MODULE
:
9792 cmds
= module_cmds_str
;
9793 cmds_len
= G_N_ELEMENTS (module_cmds_str
);
9796 cmds
= field_cmds_str
;
9797 cmds_len
= G_N_ELEMENTS (field_cmds_str
);
9800 cmds
= event_cmds_str
;
9801 cmds_len
= G_N_ELEMENTS (event_cmds_str
);
9806 if (command
> 0 && command
<= cmds_len
)
9807 return cmds
[command
- 1];
9813 wait_for_attach (void)
9815 #ifndef DISABLE_SOCKET_TRANSPORT
9816 if (listen_fd
== -1) {
9817 DEBUG_PRINTF (1, "[dbg] Invalid listening socket\n");
9821 /* Block and wait for client connection */
9822 conn_fd
= socket_transport_accept (listen_fd
);
9824 DEBUG_PRINTF (1, "Accepted connection on %d\n", conn_fd
);
9825 if (conn_fd
== -1) {
9826 DEBUG_PRINTF (1, "[dbg] Bad client connection\n");
9830 g_assert_not_reached ();
9834 disconnected
= !transport_handshake ();
9836 DEBUG_PRINTF (1, "Transport handshake failed!\n");
9846 * This thread handles communication with the debugger client using a JDWP
9850 debugger_thread (void *arg
)
9853 int res
, len
, id
, flags
, command
= 0;
9854 CommandSet command_set
= (CommandSet
)0;
9855 guint8 header
[HEADER_LENGTH
];
9856 guint8
*data
, *p
, *end
;
9860 gboolean attach_failed
= FALSE
;
9862 DEBUG_PRINTF (1, "[dbg] Agent thread started, pid=%p\n", (gpointer
) (gsize
) mono_native_thread_id_get ());
9864 debugger_thread_id
= mono_native_thread_id_get ();
9866 MonoThread
*thread
= mono_thread_attach (mono_get_root_domain ());
9867 mono_thread_set_name_internal (thread
->internal_thread
, mono_string_new (mono_get_root_domain (), "Debugger agent"), TRUE
, &error
);
9868 mono_error_assert_ok (&error
);
9870 thread
->internal_thread
->state
|= ThreadState_Background
;
9871 thread
->internal_thread
->flags
|= MONO_THREAD_FLAG_DONT_MANAGE
;
9873 if (agent_config
.defer
) {
9874 if (!wait_for_attach ()) {
9875 DEBUG_PRINTF (1, "[dbg] Can't attach, aborting debugger thread.\n");
9876 attach_failed
= TRUE
; // Don't abort process when we can't listen
9878 mono_set_is_debugger_attached (TRUE
);
9879 /* Send start event to client */
9880 process_profiler_event (EVENT_KIND_VM_START
, mono_thread_get_main ());
9883 mono_set_is_debugger_attached (TRUE
);
9886 while (!attach_failed
) {
9887 res
= transport_recv (header
, HEADER_LENGTH
);
9889 /* This will break if the socket is closed during shutdown too */
9890 if (res
!= HEADER_LENGTH
) {
9891 DEBUG_PRINTF (1, "[dbg] transport_recv () returned %d, expected %d.\n", res
, HEADER_LENGTH
);
9896 end
= header
+ HEADER_LENGTH
;
9898 len
= decode_int (p
, &p
, end
);
9899 id
= decode_int (p
, &p
, end
);
9900 flags
= decode_byte (p
, &p
, end
);
9901 command_set
= (CommandSet
)decode_byte (p
, &p
, end
);
9902 command
= decode_byte (p
, &p
, end
);
9904 g_assert (flags
== 0);
9907 const char *cmd_str
;
9910 cmd_str
= cmd_to_string (command_set
, command
);
9912 sprintf (cmd_num
, "%d", command
);
9916 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);
9919 data
= (guint8
*)g_malloc (len
- HEADER_LENGTH
);
9920 if (len
- HEADER_LENGTH
> 0)
9922 res
= transport_recv (data
, len
- HEADER_LENGTH
);
9923 if (res
!= len
- HEADER_LENGTH
) {
9924 DEBUG_PRINTF (1, "[dbg] transport_recv () returned %d, expected %d.\n", res
, len
- HEADER_LENGTH
);
9930 end
= data
+ (len
- HEADER_LENGTH
);
9932 buffer_init (&buf
, 128);
9937 /* Process the request */
9938 switch (command_set
) {
9940 err
= vm_commands (command
, id
, p
, end
, &buf
);
9941 if (err
== ERR_NONE
&& command
== CMD_VM_INVOKE_METHOD
)
9942 /* Sent after the invoke is complete */
9945 case CMD_SET_EVENT_REQUEST
:
9946 err
= event_commands (command
, p
, end
, &buf
);
9948 case CMD_SET_APPDOMAIN
:
9949 err
= domain_commands (command
, p
, end
, &buf
);
9951 case CMD_SET_ASSEMBLY
:
9952 err
= assembly_commands (command
, p
, end
, &buf
);
9954 case CMD_SET_MODULE
:
9955 err
= module_commands (command
, p
, end
, &buf
);
9958 err
= field_commands (command
, p
, end
, &buf
);
9961 err
= type_commands (command
, p
, end
, &buf
);
9963 case CMD_SET_METHOD
:
9964 err
= method_commands (command
, p
, end
, &buf
);
9966 case CMD_SET_THREAD
:
9967 err
= thread_commands (command
, p
, end
, &buf
);
9969 case CMD_SET_STACK_FRAME
:
9970 err
= frame_commands (command
, p
, end
, &buf
);
9972 case CMD_SET_ARRAY_REF
:
9973 err
= array_commands (command
, p
, end
, &buf
);
9975 case CMD_SET_STRING_REF
:
9976 err
= string_commands (command
, p
, end
, &buf
);
9978 case CMD_SET_OBJECT_REF
:
9979 err
= object_commands (command
, p
, end
, &buf
);
9982 err
= ERR_NOT_IMPLEMENTED
;
9985 if (command_set
== CMD_SET_VM
&& command
== CMD_VM_START_BUFFERING
) {
9986 buffer_replies
= TRUE
;
9990 if (buffer_replies
) {
9991 buffer_reply_packet (id
, err
, &buf
);
9993 send_reply_packet (id
, err
, &buf
);
9994 //DEBUG_PRINTF (1, "[dbg] Sent reply to %d [at=%lx].\n", id, (long)mono_100ns_ticks () / 10000);
9998 if (err
== ERR_NONE
&& command_set
== CMD_SET_VM
&& command
== CMD_VM_STOP_BUFFERING
) {
9999 send_buffered_reply_packets ();
10000 buffer_replies
= FALSE
;
10004 buffer_free (&buf
);
10006 if (command_set
== CMD_SET_VM
&& (command
== CMD_VM_DISPOSE
|| command
== CMD_VM_EXIT
))
10010 mono_set_is_debugger_attached (FALSE
);
10012 mono_coop_mutex_lock (&debugger_thread_exited_mutex
);
10013 debugger_thread_exited
= TRUE
;
10014 mono_coop_cond_signal (&debugger_thread_exited_cond
);
10015 mono_coop_mutex_unlock (&debugger_thread_exited_mutex
);
10017 DEBUG_PRINTF (1, "[dbg] Debugger thread exited.\n");
10019 if (!attach_failed
&& command_set
== CMD_SET_VM
&& command
== CMD_VM_DISPOSE
&& !(vm_death_event_sent
|| mono_runtime_is_shutting_down ())) {
10020 DEBUG_PRINTF (2, "[dbg] Detached - restarting clean debugger thread.\n");
10021 start_debugger_thread ();
10027 #else /* DISABLE_DEBUGGER_AGENT */
10030 mono_debugger_agent_parse_options (char *options
)
10032 g_error ("This runtime is configured with the debugger agent disabled.");
10036 mono_debugger_agent_init (void)
10041 mono_debugger_agent_breakpoint_hit (void *sigctx
)
10046 mono_debugger_agent_single_step_event (void *sigctx
)
10051 mono_debugger_agent_free_domain_info (MonoDomain
*domain
)
10056 mono_debugger_agent_handle_exception (MonoException
*ext
, MonoContext
*throw_ctx
,
10057 MonoContext
*catch_ctx
)
10062 mono_debugger_agent_begin_exception_filter (MonoException
*exc
, MonoContext
*ctx
, MonoContext
*orig_ctx
)
10067 mono_debugger_agent_end_exception_filter (MonoException
*exc
, MonoContext
*ctx
, MonoContext
*orig_ctx
)
10072 mono_debugger_agent_user_break (void)
10078 mono_debugger_agent_debug_log (int level
, MonoString
*category
, MonoString
*message
)
10083 mono_debugger_agent_debug_log_is_enabled (void)
10089 mono_debugger_agent_unhandled_exception (MonoException
*exc
)
10091 g_assert_not_reached ();
10095 debugger_agent_single_step_from_context (MonoContext
*ctx
)
10097 g_assert_not_reached ();
10101 debugger_agent_breakpoint_from_context (MonoContext
*ctx
)
10103 g_assert_not_reached ();