gdb over serial by Lubomir Kundrak and cleaned-up/updated by me (phcoder)
Also-By: Vladimir Serbinenko <phcoder@gmail.com>
This commit is contained in:
parent
581ffa8a24
commit
66d6a7937b
9 changed files with 893 additions and 0 deletions
90
grub-core/gdb/gdb.c
Normal file
90
grub-core/gdb/gdb.c
Normal file
|
@ -0,0 +1,90 @@
|
|||
/* gdb.c - gdb remote stub module */
|
||||
/*
|
||||
* Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
* Copyright (C) 2006 Lubomir Kundrak
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that 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, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <grub/types.h>
|
||||
#include <grub/misc.h>
|
||||
#include <grub/mm.h>
|
||||
#include <grub/err.h>
|
||||
#include <grub/dl.h>
|
||||
#include <grub/normal.h>
|
||||
#include <grub/term.h>
|
||||
#include <grub/cpu/gdb.h>
|
||||
#include <grub/gdb.h>
|
||||
#include <grub/serial.h>
|
||||
#include <grub/i18n.h>
|
||||
|
||||
GRUB_MOD_LICENSE ("GPLv3+");
|
||||
|
||||
static grub_err_t
|
||||
grub_cmd_gdbstub (struct grub_command *cmd __attribute__ ((unused)),
|
||||
int argc, char **args)
|
||||
{
|
||||
struct grub_serial_port *port;
|
||||
if (argc < 1)
|
||||
return grub_error (GRUB_ERR_BAD_ARGUMENT, "port required");
|
||||
port = grub_serial_find (args[0]);
|
||||
if (!port)
|
||||
return grub_errno;
|
||||
grub_gdb_port = port;
|
||||
grub_puts_ (N_("Now connect the remote debugger, please."));
|
||||
grub_gdb_breakpoint ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
static grub_err_t
|
||||
grub_cmd_gdbstop (struct grub_command *cmd __attribute__ ((unused)),
|
||||
int argc __attribute__ ((unused)),
|
||||
char **args __attribute__ ((unused)))
|
||||
{
|
||||
grub_gdb_port = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static grub_err_t
|
||||
grub_cmd_gdb_break (struct grub_command *cmd __attribute__ ((unused)),
|
||||
int argc __attribute__ ((unused)),
|
||||
char **args __attribute__ ((unused)))
|
||||
{
|
||||
if (!grub_gdb_port)
|
||||
return grub_error (GRUB_ERR_BAD_ARGUMENT, "No GDB stub is running");
|
||||
grub_gdb_breakpoint ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
static grub_command_t cmd, cmd_stop, cmd_break;
|
||||
|
||||
GRUB_MOD_INIT (gdb)
|
||||
{
|
||||
grub_gdb_idtinit ();
|
||||
cmd = grub_register_command ("gdbstub", grub_cmd_gdbstub,
|
||||
N_("PORT"), N_("Start GDB stub on given port"));
|
||||
cmd_break = grub_register_command ("gdbstub_break", grub_cmd_gdb_break,
|
||||
0, N_("Break into GDB"));
|
||||
cmd_stop = grub_register_command ("gdbstub_stop", grub_cmd_gdbstop,
|
||||
0, N_("Stop GDB stub"));
|
||||
}
|
||||
|
||||
GRUB_MOD_FINI (gdb)
|
||||
{
|
||||
grub_unregister_command (cmd);
|
||||
grub_unregister_command (cmd_stop);
|
||||
grub_gdb_idtrestore ();
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue