mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-01 07:18:22 -04:00
thermosphere: gdb: remove server, rewrite data processing in gdb/context and gdb/net
This commit is contained in:
parent
8538fed043
commit
c00672654a
22 changed files with 497 additions and 551 deletions
237
thermosphere/src/gdb/context.c
Normal file
237
thermosphere/src/gdb/context.c
Normal file
|
@ -0,0 +1,237 @@
|
|||
/*
|
||||
* Copyright (c) 2019 Atmosphère-NX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms and conditions of the GNU General Public License,
|
||||
* version 2, as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
// Lots of code from:
|
||||
/*
|
||||
* This file is part of Luma3DS.
|
||||
* Copyright (C) 2016-2019 Aurora Wright, TuxSH
|
||||
*
|
||||
* SPDX-License-Identifier: (MIT OR GPL-2.0-or-later)
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "context.h"
|
||||
|
||||
#include "net.h"
|
||||
|
||||
#include "debug.h"
|
||||
#include "query.h"
|
||||
#include "verbose.h"
|
||||
#include "thread.h"
|
||||
#include "debug.h"
|
||||
#include "regs.h"
|
||||
#include "mem.h"
|
||||
#include "hio.h"
|
||||
#include "stop_points.h"
|
||||
|
||||
#include "../breakpoints.h"
|
||||
#include "../software_breakpoints.h"
|
||||
#include "../watchpoints.h"
|
||||
|
||||
static TEMPORARY u8 g_gdbWorkBuffer[GDB_WORK_BUF_LEN];
|
||||
|
||||
static const struct{
|
||||
char command;
|
||||
GDBCommandHandler handler;
|
||||
} gdbCommandHandlers[] = {
|
||||
{ '?', GDB_HANDLER(GetStopReason) },
|
||||
{ '!', GDB_HANDLER(EnableExtendedMode) },
|
||||
{ 'c', GDB_HANDLER(Continue) },
|
||||
{ 'C', GDB_HANDLER(Continue) },
|
||||
{ 'D', GDB_HANDLER(Detach) },
|
||||
{ 'F', GDB_HANDLER(HioReply) },
|
||||
{ 'g', GDB_HANDLER(ReadRegisters) },
|
||||
{ 'G', GDB_HANDLER(WriteRegisters) },
|
||||
{ 'H', GDB_HANDLER(SetThreadId) },
|
||||
{ 'k', GDB_HANDLER(Kill) },
|
||||
{ 'm', GDB_HANDLER(ReadMemory) },
|
||||
{ 'M', GDB_HANDLER(WriteMemory) },
|
||||
{ 'p', GDB_HANDLER(ReadRegister) },
|
||||
{ 'P', GDB_HANDLER(WriteRegister) },
|
||||
{ 'q', GDB_HANDLER(ReadQuery) },
|
||||
{ 'Q', GDB_HANDLER(WriteQuery) },
|
||||
{ 'T', GDB_HANDLER(IsThreadAlive) },
|
||||
{ 'v', GDB_HANDLER(VerboseCommand) },
|
||||
{ 'X', GDB_HANDLER(WriteMemoryRaw) },
|
||||
{ 'z', GDB_HANDLER(ToggleStopPoint) },
|
||||
{ 'Z', GDB_HANDLER(ToggleStopPoint) },
|
||||
};
|
||||
|
||||
static inline GDBCommandHandler GDB_GetCommandHandler(char command)
|
||||
{
|
||||
static const u32 nbHandlers = sizeof(gdbCommandHandlers) / sizeof(gdbCommandHandlers[0]);
|
||||
|
||||
size_t i;
|
||||
for (i = 0; i < nbHandlers && gdbCommandHandlers[i].command != command; i++);
|
||||
|
||||
return i < nbHandlers ? gdbCommandHandlers[i].handler : GDB_HANDLER(Unsupported);
|
||||
}
|
||||
|
||||
static int GDB_ProcessPacket(GDBContext *ctx, size_t len)
|
||||
{
|
||||
int ret;
|
||||
|
||||
u32 oldFlags = ctx->flags;
|
||||
|
||||
ENSURE(ctx->state != GDB_STATE_DISCONNECTED);
|
||||
|
||||
// Handle the packet...
|
||||
if (ctx->buffer[0] == '\x03') {
|
||||
GDB_HandleBreak(ctx);
|
||||
ret = 0;
|
||||
} else {
|
||||
GDBCommandHandler handler = GDB_GetCommandHandler(ctx->buffer[1]);
|
||||
ctx->commandData = ctx->buffer + 2;
|
||||
ret = handler(ctx);
|
||||
}
|
||||
|
||||
|
||||
// State changes...
|
||||
if (ctx->state == GDB_STATE_DETACHING) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
if ((oldFlags & GDB_FLAG_CONTINUING) && !(ctx->flags & GDB_FLAG_CONTINUING)) {
|
||||
// TODO
|
||||
}
|
||||
else if (!(oldFlags & GDB_FLAG_CONTINUING) && (ctx->flags & GDB_FLAG_CONTINUING)) {
|
||||
// TODO
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static size_t GDB_ReceiveDataCallback(TransportInterface *iface, void *ctxVoid)
|
||||
{
|
||||
return (size_t)GDB_ReceivePacket((GDBContext *)ctxVoid);
|
||||
}
|
||||
|
||||
static void GDB_Disconnect(GDBContext *ctx)
|
||||
{
|
||||
GDB_DetachFromContext(ctx);
|
||||
|
||||
ctx->flags = 0;
|
||||
ctx->state = GDB_STATE_DISCONNECTED;
|
||||
|
||||
ctx->currentThreadId = 0;
|
||||
ctx->selectedThreadId = 0;
|
||||
ctx->selectedThreadIdForContinuing = 0;
|
||||
|
||||
ctx->catchThreadEvents = false;
|
||||
ctx->lastSentPacketSize = 0;
|
||||
|
||||
ctx->processEnded = false;
|
||||
ctx->processExited = false;
|
||||
|
||||
ctx->noAckSent = false;
|
||||
// TODO memset(&ctx->latestDebugEvent, 0, sizeof(DebugEventInfo));
|
||||
|
||||
ctx->currentHioRequestTargetAddr = 0;
|
||||
memset(&ctx->currentHioRequest, 0, sizeof(PackedGdbHioRequest));
|
||||
|
||||
ctx->targetXmlLen = 0;
|
||||
}
|
||||
|
||||
static void GDB_ProcessDataCallback(TransportInterface *iface, void *ctxVoid, size_t sz)
|
||||
{
|
||||
int r = (int)sz;
|
||||
GDBContext *ctx = (GDBContext *)ctxVoid;
|
||||
|
||||
if (r == -1) {
|
||||
// Not sure if GDB has something to forcefully close connections over UART...
|
||||
char c = '\x04'; // ctrl-D
|
||||
transportInterfaceWriteData(iface, &c, 1);
|
||||
GDB_Disconnect(ctx);
|
||||
}
|
||||
|
||||
r = GDB_ProcessPacket(ctx, sz);
|
||||
if (r == -1) {
|
||||
GDB_Disconnect(ctx);
|
||||
}
|
||||
}
|
||||
|
||||
void GDB_InitializeContext(GDBContext *ctx, TransportInterfaceType ifaceType, u32 ifaceId, u32 ifaceFlags)
|
||||
{
|
||||
memset(ctx, 0, sizeof(GDBContext));
|
||||
ctx->workBuffer = g_gdbWorkBuffer;
|
||||
ctx->transportInterface = transportInterfaceCreate(
|
||||
ifaceType,
|
||||
ifaceId,
|
||||
ifaceFlags,
|
||||
GDB_ReceiveDataCallback,
|
||||
GDB_ProcessDataCallback,
|
||||
ctx
|
||||
);
|
||||
}
|
||||
|
||||
void GDB_AttachToContext(GDBContext *ctx)
|
||||
{
|
||||
if (!(ctx->flags & GDB_FLAG_ATTACHED_AT_START)) {
|
||||
// TODO: debug pause
|
||||
}
|
||||
|
||||
// TODO: move the debug traps enable here?
|
||||
// TODO: process the event
|
||||
|
||||
ctx->state = GDB_STATE_ATTACHED;
|
||||
}
|
||||
|
||||
void GDB_DetachFromContext(GDBContext *ctx)
|
||||
{
|
||||
removeAllWatchpoints();
|
||||
removeAllBreakpoints();
|
||||
removeAllSoftwareBreakpoints(true);
|
||||
|
||||
// Reports to gdb are prevented because of "detaching" state?
|
||||
|
||||
// TODO: disable debug traps
|
||||
|
||||
if(ctx->flags & GDB_FLAG_TERMINATE) {
|
||||
// TODO: redefine what it means for thermosphère, if anything.
|
||||
ctx->processEnded = true;
|
||||
ctx->processExited = false;
|
||||
}
|
||||
|
||||
ctx->currentHioRequestTargetAddr = 0;
|
||||
memset(&ctx->currentHioRequest, 0, sizeof(PackedGdbHioRequest));
|
||||
}
|
||||
|
||||
void GDB_AcquireContext(GDBContext *ctx)
|
||||
{
|
||||
transportInterfaceAcquire(ctx->transportInterface);
|
||||
}
|
||||
|
||||
void GDB_ReleaseContext(GDBContext *ctx)
|
||||
{
|
||||
transportInterfaceRelease(ctx->transportInterface);
|
||||
}
|
||||
|
||||
void GDB_MigrateRxIrq(GDBContext *ctx, u32 newAffinity)
|
||||
{
|
||||
transportInterfaceSetInterruptAffinity(ctx->transportInterface, newAffinity);
|
||||
}
|
||||
|
||||
GDB_DECLARE_HANDLER(Unsupported)
|
||||
{
|
||||
return GDB_ReplyEmpty(ctx);
|
||||
}
|
||||
|
||||
GDB_DECLARE_HANDLER(EnableExtendedMode)
|
||||
{
|
||||
// We don't support it for now...
|
||||
return GDB_HandleUnsupported(ctx);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue