2022-09-29 14:42:24 +03:00
|
|
|
/*
|
|
|
|
* gdbstub internals
|
|
|
|
*
|
|
|
|
* Copyright (c) 2022 Linaro Ltd
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
2023-03-03 05:57:37 +03:00
|
|
|
#ifndef GDBSTUB_INTERNALS_H
|
|
|
|
#define GDBSTUB_INTERNALS_H
|
2022-09-29 14:42:24 +03:00
|
|
|
|
2022-12-06 18:20:27 +03:00
|
|
|
#include "exec/cpu-common.h"
|
|
|
|
|
2023-03-03 05:57:42 +03:00
|
|
|
#define MAX_PACKET_LENGTH 4096
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Shared structures and definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct GDBProcess {
|
|
|
|
uint32_t pid;
|
|
|
|
bool attached;
|
|
|
|
|
|
|
|
char target_xml[1024];
|
|
|
|
} GDBProcess;
|
|
|
|
|
|
|
|
enum RSState {
|
|
|
|
RS_INACTIVE,
|
|
|
|
RS_IDLE,
|
|
|
|
RS_GETLINE,
|
|
|
|
RS_GETLINE_ESC,
|
|
|
|
RS_GETLINE_RLE,
|
|
|
|
RS_CHKSUM1,
|
|
|
|
RS_CHKSUM2,
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct GDBState {
|
|
|
|
bool init; /* have we been initialised? */
|
|
|
|
CPUState *c_cpu; /* current CPU for step/continue ops */
|
|
|
|
CPUState *g_cpu; /* current CPU for other ops */
|
|
|
|
CPUState *query_cpu; /* for q{f|s}ThreadInfo */
|
|
|
|
enum RSState state; /* parsing state */
|
|
|
|
char line_buf[MAX_PACKET_LENGTH];
|
|
|
|
int line_buf_index;
|
|
|
|
int line_sum; /* running checksum */
|
|
|
|
int line_csum; /* checksum at the end of the packet */
|
|
|
|
GByteArray *last_packet;
|
|
|
|
int signal;
|
|
|
|
bool multiprocess;
|
|
|
|
GDBProcess *processes;
|
|
|
|
int process_num;
|
|
|
|
char syscall_buf[256];
|
|
|
|
gdb_syscall_complete_cb current_syscall_cb;
|
|
|
|
GString *str_buf;
|
|
|
|
GByteArray *mem_buf;
|
|
|
|
int sstep_flags;
|
|
|
|
int supported_sstep_flags;
|
|
|
|
} GDBState;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Break/Watch point support - there is an implementation for softmmu
|
|
|
|
* and user mode.
|
|
|
|
*/
|
2022-09-29 14:42:25 +03:00
|
|
|
bool gdb_supports_guest_debug(void);
|
2022-12-06 18:20:27 +03:00
|
|
|
int gdb_breakpoint_insert(CPUState *cs, int type, vaddr addr, vaddr len);
|
|
|
|
int gdb_breakpoint_remove(CPUState *cs, int type, vaddr addr, vaddr len);
|
2022-09-29 14:42:24 +03:00
|
|
|
void gdb_breakpoint_remove_all(CPUState *cs);
|
|
|
|
|
2023-03-03 05:57:37 +03:00
|
|
|
#endif /* GDBSTUB_INTERNALS_H */
|