2021-08-17 09:14:59 +00:00
|
|
|
/*
|
|
|
|
* crash_target.c
|
|
|
|
*
|
|
|
|
* Copyright (c) 2021 VMware, Inc.
|
|
|
|
*
|
|
|
|
* 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 2 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.
|
|
|
|
*
|
|
|
|
* Author: Alexey Makhalov <amakhalov@vmware.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <defs.h>
|
|
|
|
#include "top.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "inferior.h"
|
|
|
|
#include "regcache.h"
|
|
|
|
#include "gdbarch.h"
|
|
|
|
|
|
|
|
void crash_target_init (void);
|
|
|
|
|
|
|
|
extern "C" int gdb_readmem_callback(unsigned long, void *, int, int);
|
Preparing for gdb stack unwind support
There are 3 designs for supporting arbitrary tasks stack unwinding:
1) One gdb thread represent a task[1][2].
2) One gdb thread represent a cpu[3].
3) Leaving only one gdb thread[4].
1 & 2 have a flaw that, when there are lots of tasks/cpus, it will slow
the startup of crash, introduce complexity of the registers context
synchronization between crash and gdb, hard to cover live debug mode
etc. So here we used the 3rd design.
Related discussions:
[1]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00524.html
[2]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00529.html
[3]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00471.html
[4]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00541.html
To switch task, or view arbitrary tasks stack unwinding, we will reuse
the current gdb thread, and load the target task's regcache to the
thread. This will simplify many code.
Note: this will change the behavior of "info threads" and "thread x", E.g:
Before:
crash> gdb thread
[Current thread is 1 (CPU 0)]
crash> info threads
Id Target Id Frame
* 1 CPU 0 <unavailable> in ?? ()
2 CPU 1 <unavailable> in ?? ()
3 CPU 2 <unavailable> in ?? ()
...
crash> thread 2
[Switching to thread 2 (CPU 1)]
#0 <unavailable> in ?? ()
After:
crash> gdb thread
[Current thread is 1 (10715 bash)]
crash> info threads
Id Target Id Frame
* 1 10715 bash 0xc0000000002bde04 in crash_setup_regs ...
crash> thread 2
gdb: gdb request failed: thread 2
As a result, the "info threads" and "thread x" will be less useful. We
will extend cmd "set" later to implement a similar function. E.g:
crash> set <pid|task>
Then the task context of crash and gdb will both be switched to
pid/task, so the following command: "bt" "gdb bt" will output
the same task context.
[lijiang: squash these four patches(see the Link) into one patch]
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01085.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01087.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01086.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01088.html
Co-developed-by: Aditya Gupta <adityag@linux.ibm.com>
Co-developed-by: Alexey Makhalov <alexey.makhalov@broadcom.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2024-09-04 07:49:31 +00:00
|
|
|
extern "C" int crash_get_current_task_reg (int regno, const char *regname,
|
2021-03-20 04:07:33 +00:00
|
|
|
int regsize, void *val);
|
Preparing for gdb stack unwind support
There are 3 designs for supporting arbitrary tasks stack unwinding:
1) One gdb thread represent a task[1][2].
2) One gdb thread represent a cpu[3].
3) Leaving only one gdb thread[4].
1 & 2 have a flaw that, when there are lots of tasks/cpus, it will slow
the startup of crash, introduce complexity of the registers context
synchronization between crash and gdb, hard to cover live debug mode
etc. So here we used the 3rd design.
Related discussions:
[1]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00524.html
[2]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00529.html
[3]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00471.html
[4]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00541.html
To switch task, or view arbitrary tasks stack unwinding, we will reuse
the current gdb thread, and load the target task's regcache to the
thread. This will simplify many code.
Note: this will change the behavior of "info threads" and "thread x", E.g:
Before:
crash> gdb thread
[Current thread is 1 (CPU 0)]
crash> info threads
Id Target Id Frame
* 1 CPU 0 <unavailable> in ?? ()
2 CPU 1 <unavailable> in ?? ()
3 CPU 2 <unavailable> in ?? ()
...
crash> thread 2
[Switching to thread 2 (CPU 1)]
#0 <unavailable> in ?? ()
After:
crash> gdb thread
[Current thread is 1 (10715 bash)]
crash> info threads
Id Target Id Frame
* 1 10715 bash 0xc0000000002bde04 in crash_setup_regs ...
crash> thread 2
gdb: gdb request failed: thread 2
As a result, the "info threads" and "thread x" will be less useful. We
will extend cmd "set" later to implement a similar function. E.g:
crash> set <pid|task>
Then the task context of crash and gdb will both be switched to
pid/task, so the following command: "bt" "gdb bt" will output
the same task context.
[lijiang: squash these four patches(see the Link) into one patch]
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01085.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01087.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01086.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01088.html
Co-developed-by: Aditya Gupta <adityag@linux.ibm.com>
Co-developed-by: Alexey Makhalov <alexey.makhalov@broadcom.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2024-09-04 07:49:31 +00:00
|
|
|
extern "C" int gdb_change_thread_context (void);
|
|
|
|
extern "C" void crash_get_current_task_info(unsigned long *pid, char **comm);
|
2021-08-17 09:14:59 +00:00
|
|
|
|
|
|
|
/* The crash target. */
|
|
|
|
|
|
|
|
static const target_info crash_target_info = {
|
|
|
|
"crash",
|
|
|
|
N_("Local core dump file"),
|
|
|
|
N_("Use a built-in crash instance as a target.")
|
|
|
|
};
|
|
|
|
|
|
|
|
class crash_target final : public process_stratum_target
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
const target_info &info () const override
|
|
|
|
{ return crash_target_info; }
|
|
|
|
|
2021-03-20 04:07:33 +00:00
|
|
|
void fetch_registers (struct regcache *, int) override;
|
2021-08-17 09:14:59 +00:00
|
|
|
enum target_xfer_status xfer_partial (enum target_object object,
|
|
|
|
const char *annex,
|
|
|
|
gdb_byte *readbuf,
|
|
|
|
const gdb_byte *writebuf,
|
|
|
|
ULONGEST offset, ULONGEST len,
|
|
|
|
ULONGEST *xfered_len) override;
|
|
|
|
|
|
|
|
bool has_all_memory () override { return true; }
|
|
|
|
bool has_memory () override { return true; }
|
|
|
|
bool has_stack () override { return true; }
|
2021-03-20 04:07:33 +00:00
|
|
|
bool has_registers () override { return true; }
|
2021-08-17 09:14:59 +00:00
|
|
|
bool thread_alive (ptid_t ptid) override { return true; }
|
|
|
|
std::string pid_to_str (ptid_t ptid) override
|
Preparing for gdb stack unwind support
There are 3 designs for supporting arbitrary tasks stack unwinding:
1) One gdb thread represent a task[1][2].
2) One gdb thread represent a cpu[3].
3) Leaving only one gdb thread[4].
1 & 2 have a flaw that, when there are lots of tasks/cpus, it will slow
the startup of crash, introduce complexity of the registers context
synchronization between crash and gdb, hard to cover live debug mode
etc. So here we used the 3rd design.
Related discussions:
[1]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00524.html
[2]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00529.html
[3]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00471.html
[4]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00541.html
To switch task, or view arbitrary tasks stack unwinding, we will reuse
the current gdb thread, and load the target task's regcache to the
thread. This will simplify many code.
Note: this will change the behavior of "info threads" and "thread x", E.g:
Before:
crash> gdb thread
[Current thread is 1 (CPU 0)]
crash> info threads
Id Target Id Frame
* 1 CPU 0 <unavailable> in ?? ()
2 CPU 1 <unavailable> in ?? ()
3 CPU 2 <unavailable> in ?? ()
...
crash> thread 2
[Switching to thread 2 (CPU 1)]
#0 <unavailable> in ?? ()
After:
crash> gdb thread
[Current thread is 1 (10715 bash)]
crash> info threads
Id Target Id Frame
* 1 10715 bash 0xc0000000002bde04 in crash_setup_regs ...
crash> thread 2
gdb: gdb request failed: thread 2
As a result, the "info threads" and "thread x" will be less useful. We
will extend cmd "set" later to implement a similar function. E.g:
crash> set <pid|task>
Then the task context of crash and gdb will both be switched to
pid/task, so the following command: "bt" "gdb bt" will output
the same task context.
[lijiang: squash these four patches(see the Link) into one patch]
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01085.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01087.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01086.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01088.html
Co-developed-by: Aditya Gupta <adityag@linux.ibm.com>
Co-developed-by: Alexey Makhalov <alexey.makhalov@broadcom.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2024-09-04 07:49:31 +00:00
|
|
|
{
|
|
|
|
unsigned long pid;
|
|
|
|
char *comm;
|
|
|
|
crash_get_current_task_info(&pid, &comm);
|
|
|
|
return string_printf ("%ld %s", pid, comm);
|
|
|
|
}
|
2021-08-17 09:14:59 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
Preparing for gdb stack unwind support
There are 3 designs for supporting arbitrary tasks stack unwinding:
1) One gdb thread represent a task[1][2].
2) One gdb thread represent a cpu[3].
3) Leaving only one gdb thread[4].
1 & 2 have a flaw that, when there are lots of tasks/cpus, it will slow
the startup of crash, introduce complexity of the registers context
synchronization between crash and gdb, hard to cover live debug mode
etc. So here we used the 3rd design.
Related discussions:
[1]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00524.html
[2]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00529.html
[3]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00471.html
[4]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00541.html
To switch task, or view arbitrary tasks stack unwinding, we will reuse
the current gdb thread, and load the target task's regcache to the
thread. This will simplify many code.
Note: this will change the behavior of "info threads" and "thread x", E.g:
Before:
crash> gdb thread
[Current thread is 1 (CPU 0)]
crash> info threads
Id Target Id Frame
* 1 CPU 0 <unavailable> in ?? ()
2 CPU 1 <unavailable> in ?? ()
3 CPU 2 <unavailable> in ?? ()
...
crash> thread 2
[Switching to thread 2 (CPU 1)]
#0 <unavailable> in ?? ()
After:
crash> gdb thread
[Current thread is 1 (10715 bash)]
crash> info threads
Id Target Id Frame
* 1 10715 bash 0xc0000000002bde04 in crash_setup_regs ...
crash> thread 2
gdb: gdb request failed: thread 2
As a result, the "info threads" and "thread x" will be less useful. We
will extend cmd "set" later to implement a similar function. E.g:
crash> set <pid|task>
Then the task context of crash and gdb will both be switched to
pid/task, so the following command: "bt" "gdb bt" will output
the same task context.
[lijiang: squash these four patches(see the Link) into one patch]
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01085.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01087.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01086.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01088.html
Co-developed-by: Aditya Gupta <adityag@linux.ibm.com>
Co-developed-by: Alexey Makhalov <alexey.makhalov@broadcom.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2024-09-04 07:49:31 +00:00
|
|
|
static void supply_registers(struct regcache *regcache, int regno)
|
2021-03-20 04:07:33 +00:00
|
|
|
{
|
|
|
|
gdb_byte regval[16];
|
|
|
|
struct gdbarch *arch = regcache->arch ();
|
Preparing for gdb stack unwind support
There are 3 designs for supporting arbitrary tasks stack unwinding:
1) One gdb thread represent a task[1][2].
2) One gdb thread represent a cpu[3].
3) Leaving only one gdb thread[4].
1 & 2 have a flaw that, when there are lots of tasks/cpus, it will slow
the startup of crash, introduce complexity of the registers context
synchronization between crash and gdb, hard to cover live debug mode
etc. So here we used the 3rd design.
Related discussions:
[1]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00524.html
[2]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00529.html
[3]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00471.html
[4]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00541.html
To switch task, or view arbitrary tasks stack unwinding, we will reuse
the current gdb thread, and load the target task's regcache to the
thread. This will simplify many code.
Note: this will change the behavior of "info threads" and "thread x", E.g:
Before:
crash> gdb thread
[Current thread is 1 (CPU 0)]
crash> info threads
Id Target Id Frame
* 1 CPU 0 <unavailable> in ?? ()
2 CPU 1 <unavailable> in ?? ()
3 CPU 2 <unavailable> in ?? ()
...
crash> thread 2
[Switching to thread 2 (CPU 1)]
#0 <unavailable> in ?? ()
After:
crash> gdb thread
[Current thread is 1 (10715 bash)]
crash> info threads
Id Target Id Frame
* 1 10715 bash 0xc0000000002bde04 in crash_setup_regs ...
crash> thread 2
gdb: gdb request failed: thread 2
As a result, the "info threads" and "thread x" will be less useful. We
will extend cmd "set" later to implement a similar function. E.g:
crash> set <pid|task>
Then the task context of crash and gdb will both be switched to
pid/task, so the following command: "bt" "gdb bt" will output
the same task context.
[lijiang: squash these four patches(see the Link) into one patch]
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01085.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01087.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01086.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01088.html
Co-developed-by: Aditya Gupta <adityag@linux.ibm.com>
Co-developed-by: Alexey Makhalov <alexey.makhalov@broadcom.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2024-09-04 07:49:31 +00:00
|
|
|
const char *regname = gdbarch_register_name(arch, regno);
|
|
|
|
int regsize = register_size(arch, regno);
|
2021-03-20 04:07:33 +00:00
|
|
|
|
Preparing for gdb stack unwind support
There are 3 designs for supporting arbitrary tasks stack unwinding:
1) One gdb thread represent a task[1][2].
2) One gdb thread represent a cpu[3].
3) Leaving only one gdb thread[4].
1 & 2 have a flaw that, when there are lots of tasks/cpus, it will slow
the startup of crash, introduce complexity of the registers context
synchronization between crash and gdb, hard to cover live debug mode
etc. So here we used the 3rd design.
Related discussions:
[1]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00524.html
[2]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00529.html
[3]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00471.html
[4]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00541.html
To switch task, or view arbitrary tasks stack unwinding, we will reuse
the current gdb thread, and load the target task's regcache to the
thread. This will simplify many code.
Note: this will change the behavior of "info threads" and "thread x", E.g:
Before:
crash> gdb thread
[Current thread is 1 (CPU 0)]
crash> info threads
Id Target Id Frame
* 1 CPU 0 <unavailable> in ?? ()
2 CPU 1 <unavailable> in ?? ()
3 CPU 2 <unavailable> in ?? ()
...
crash> thread 2
[Switching to thread 2 (CPU 1)]
#0 <unavailable> in ?? ()
After:
crash> gdb thread
[Current thread is 1 (10715 bash)]
crash> info threads
Id Target Id Frame
* 1 10715 bash 0xc0000000002bde04 in crash_setup_regs ...
crash> thread 2
gdb: gdb request failed: thread 2
As a result, the "info threads" and "thread x" will be less useful. We
will extend cmd "set" later to implement a similar function. E.g:
crash> set <pid|task>
Then the task context of crash and gdb will both be switched to
pid/task, so the following command: "bt" "gdb bt" will output
the same task context.
[lijiang: squash these four patches(see the Link) into one patch]
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01085.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01087.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01086.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01088.html
Co-developed-by: Aditya Gupta <adityag@linux.ibm.com>
Co-developed-by: Alexey Makhalov <alexey.makhalov@broadcom.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2024-09-04 07:49:31 +00:00
|
|
|
if (regsize > sizeof (regval))
|
|
|
|
error (_("fatal error: buffer size is not enough to fit register value"));
|
|
|
|
|
|
|
|
if (crash_get_current_task_reg (regno, regname, regsize, (void *)®val))
|
|
|
|
regcache->raw_supply (regno, regval);
|
|
|
|
else
|
|
|
|
regcache->raw_supply (regno, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
crash_target::fetch_registers (struct regcache *regcache, int regno)
|
|
|
|
{
|
|
|
|
if (regno >= 0) {
|
|
|
|
supply_registers(regcache, regno);
|
|
|
|
} else if (regno == -1) {
|
|
|
|
for (int r = 0; r < gdbarch_num_regs (regcache->arch ()); r++)
|
|
|
|
supply_registers(regcache, r);
|
|
|
|
}
|
2021-03-20 04:07:33 +00:00
|
|
|
}
|
|
|
|
|
2021-08-17 09:14:59 +00:00
|
|
|
|
|
|
|
enum target_xfer_status
|
|
|
|
crash_target::xfer_partial (enum target_object object, const char *annex,
|
|
|
|
gdb_byte *readbuf, const gdb_byte *writebuf,
|
|
|
|
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len)
|
|
|
|
{
|
|
|
|
if (object != TARGET_OBJECT_MEMORY && object != TARGET_OBJECT_STACK_MEMORY
|
|
|
|
&& object != TARGET_OBJECT_CODE_MEMORY)
|
|
|
|
return TARGET_XFER_E_IO;
|
|
|
|
|
|
|
|
if (gdb_readmem_callback(offset, (void *)(readbuf ? readbuf : writebuf), len, !readbuf))
|
|
|
|
{
|
|
|
|
*xfered_len = len;
|
|
|
|
return TARGET_XFER_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TARGET_XFER_E_IO;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CRASH_INFERIOR_PID 1
|
|
|
|
|
|
|
|
void
|
|
|
|
crash_target_init (void)
|
|
|
|
{
|
|
|
|
crash_target *target = new crash_target ();
|
|
|
|
|
|
|
|
/* Own the target until it is successfully pushed. */
|
|
|
|
target_ops_up target_holder (target);
|
|
|
|
|
|
|
|
push_target (std::move (target_holder));
|
|
|
|
|
|
|
|
inferior_appeared (current_inferior (), CRASH_INFERIOR_PID);
|
Preparing for gdb stack unwind support
There are 3 designs for supporting arbitrary tasks stack unwinding:
1) One gdb thread represent a task[1][2].
2) One gdb thread represent a cpu[3].
3) Leaving only one gdb thread[4].
1 & 2 have a flaw that, when there are lots of tasks/cpus, it will slow
the startup of crash, introduce complexity of the registers context
synchronization between crash and gdb, hard to cover live debug mode
etc. So here we used the 3rd design.
Related discussions:
[1]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00524.html
[2]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00529.html
[3]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00471.html
[4]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00541.html
To switch task, or view arbitrary tasks stack unwinding, we will reuse
the current gdb thread, and load the target task's regcache to the
thread. This will simplify many code.
Note: this will change the behavior of "info threads" and "thread x", E.g:
Before:
crash> gdb thread
[Current thread is 1 (CPU 0)]
crash> info threads
Id Target Id Frame
* 1 CPU 0 <unavailable> in ?? ()
2 CPU 1 <unavailable> in ?? ()
3 CPU 2 <unavailable> in ?? ()
...
crash> thread 2
[Switching to thread 2 (CPU 1)]
#0 <unavailable> in ?? ()
After:
crash> gdb thread
[Current thread is 1 (10715 bash)]
crash> info threads
Id Target Id Frame
* 1 10715 bash 0xc0000000002bde04 in crash_setup_regs ...
crash> thread 2
gdb: gdb request failed: thread 2
As a result, the "info threads" and "thread x" will be less useful. We
will extend cmd "set" later to implement a similar function. E.g:
crash> set <pid|task>
Then the task context of crash and gdb will both be switched to
pid/task, so the following command: "bt" "gdb bt" will output
the same task context.
[lijiang: squash these four patches(see the Link) into one patch]
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01085.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01087.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01086.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01088.html
Co-developed-by: Aditya Gupta <adityag@linux.ibm.com>
Co-developed-by: Alexey Makhalov <alexey.makhalov@broadcom.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2024-09-04 07:49:31 +00:00
|
|
|
|
|
|
|
/*Only create 1 gdb threads to view tasks' stack unwinding*/
|
|
|
|
thread_info *thread = add_thread_silent (target,
|
|
|
|
ptid_t(CRASH_INFERIOR_PID, 0, 0));
|
|
|
|
switch_to_thread (thread);
|
2021-03-20 04:07:33 +00:00
|
|
|
|
|
|
|
/* Fetch all registers from core file. */
|
|
|
|
target_fetch_registers (get_current_regcache (), -1);
|
|
|
|
|
|
|
|
/* Now, set up the frame cache. */
|
|
|
|
reinit_frame_cache ();
|
2021-08-17 09:14:59 +00:00
|
|
|
}
|
Preparing for gdb stack unwind support
There are 3 designs for supporting arbitrary tasks stack unwinding:
1) One gdb thread represent a task[1][2].
2) One gdb thread represent a cpu[3].
3) Leaving only one gdb thread[4].
1 & 2 have a flaw that, when there are lots of tasks/cpus, it will slow
the startup of crash, introduce complexity of the registers context
synchronization between crash and gdb, hard to cover live debug mode
etc. So here we used the 3rd design.
Related discussions:
[1]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00524.html
[2]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00529.html
[3]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00471.html
[4]: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg00541.html
To switch task, or view arbitrary tasks stack unwinding, we will reuse
the current gdb thread, and load the target task's regcache to the
thread. This will simplify many code.
Note: this will change the behavior of "info threads" and "thread x", E.g:
Before:
crash> gdb thread
[Current thread is 1 (CPU 0)]
crash> info threads
Id Target Id Frame
* 1 CPU 0 <unavailable> in ?? ()
2 CPU 1 <unavailable> in ?? ()
3 CPU 2 <unavailable> in ?? ()
...
crash> thread 2
[Switching to thread 2 (CPU 1)]
#0 <unavailable> in ?? ()
After:
crash> gdb thread
[Current thread is 1 (10715 bash)]
crash> info threads
Id Target Id Frame
* 1 10715 bash 0xc0000000002bde04 in crash_setup_regs ...
crash> thread 2
gdb: gdb request failed: thread 2
As a result, the "info threads" and "thread x" will be less useful. We
will extend cmd "set" later to implement a similar function. E.g:
crash> set <pid|task>
Then the task context of crash and gdb will both be switched to
pid/task, so the following command: "bt" "gdb bt" will output
the same task context.
[lijiang: squash these four patches(see the Link) into one patch]
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01085.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01087.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01086.html
Link: https://www.mail-archive.com/devel@lists.crash-utility.osci.io/msg01088.html
Co-developed-by: Aditya Gupta <adityag@linux.ibm.com>
Co-developed-by: Alexey Makhalov <alexey.makhalov@broadcom.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2024-09-04 07:49:31 +00:00
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
gdb_change_thread_context (void)
|
|
|
|
{
|
|
|
|
target_fetch_registers(get_current_regcache(), -1);
|
|
|
|
reinit_frame_cache();
|
|
|
|
return TRUE;
|
|
|
|
}
|