This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

issue with conditional breakpoint


Hi guys, I'm new in gdb. The issue is the following

I'm trying to debug qemu, specificly I want to stop in the open
syscall when the argument is "/proc/meminfo", I tried the following
without successfull:

$ gdb qemu
gdb$ catch syscall open
Catchpoint 1 (syscall 'open' [2])
gdb$ cond 1 strcmp("/proc/meminfo", (char*)($rdi)) == 0
gdb$ r
-----------------------------------------------------------------------------------------------------------------------[regs]
  RAX: 0x00007FFFF7FFA4A0  RBX: 0x0000555555562AA1  RBP:
0x00007FFFFFFFD8C8  RSP: 0x00007FFFFFFFD8D0  o d I t s z a P c
  RDI: 0xFFFFFFFFFFFFFFF8  RSI: 0x000000000000000E  RDX:
0xFFFF800008005B60  RCX: 0x00007FFFF7FFA4AE  RIP: 0x00005555555FE644
  R8 : 0x00007FFFF7FFE570  R9 : 0x0000000000000000  R10:
0xFFFFFFFFFFFFFFB0  R11: 0x0000000000000246  R12: 0x00007FFFF7FFE090
  R13: 0x00007FFFF7FFD040  R14: 0x0000000000000000  R15: 0x00007FFFF7FFE570
  CS: 0033  DS: 0000  ES: 0000  FS: 0000  GS: 0000  SS: 002B
-----------------------------------------------------------------------------------------------------------------------[code]
=> 0x5555555fe644: xor    ebp,ebp
   0x5555555fe646: mov    r9,rdx
   0x5555555fe649: pop    rsi
   0x5555555fe64a: mov    rdx,rsp
   0x5555555fe64d: and    rsp,0xfffffffffffffff0
   0x5555555fe651: push   rax
   0x5555555fe652: push   rsp
   0x5555555fe653: mov    r8,QWORD PTR [rip+0x6c630e]        # 0x555555cc4968
-----------------------------------------------------------------------------------------------------------------------------

Program received signal SIGSEGV, Segmentation fault.
-----------------------------------------------------------------------------------------------------------------------[regs]
  RAX: 0x0000000000000000  RBX: 0x0000555555562AA1  RBP:
0x00007FFFFFFFD8C8  RSP: 0x00007FFFFFFFD8C8  o d I t s Z a P c
  RDI: 0x00007FFFF7FFA4A0  RSI: 0x00007FFFF7DF72D0  RDX:
0x0000000000000001  RCX: 0xFFFFFFFFFFFFFFFF  RIP: 0x00000000000A07F0
  R8 : 0x00007FFFF7FFE570  R9 : 0x0000000000000000  R10:
0xFFFFFFFFFFFFFFB0  R11: 0x0000000000000246  R12: 0x00007FFFF7FFE090
  R13: 0x00007FFFF7FFD040  R14: 0x0000000000000000  R15: 0x00007FFFF7FFE570
  CS: 0033  DS: 0000  ES: 0000  FS: 0000  GS: 0000  SS: 002B Error
while running hook_stop:
Cannot access memory at address 0xa07f0
0x00000000000a07f0 in ?? ()
Error in testing breakpoint condition:
The program being debugged was signaled while in a function called from GDB.
GDB remains in the frame where the signal was received.
To change this behavior use "set unwindonsignal on".
Evaluation of the expression containing the function
(at 0x0xa07f0) will be abandoned.
When the function is done executing, GDB will silently stop.
-----------------------------------------------------------------------------------------------------------------------[regs]
  RAX: 0x0000000000000000  RBX: 0x0000555555562AA1  RBP:
0x00007FFFFFFFD8C8  RSP: 0x00007FFFFFFFD8C8  o d I t s Z a P c
  RDI: 0x00007FFFF7FFA4A0  RSI: 0x00007FFFF7DF72D0  RDX:
0x0000000000000001  RCX: 0xFFFFFFFFFFFFFFFF  RIP: 0x00000000000A07F0
  R8 : 0x00007FFFF7FFE570  R9 : 0x0000000000000000  R10:
0xFFFFFFFFFFFFFFB0  R11: 0x0000000000000246  R12: 0x00007FFFF7FFE090
  R13: 0x00007FFFF7FFD040  R14: 0x0000000000000000  R15: 0x00007FFFF7FFE570
  CS: 0033  DS: 0000  ES: 0000  FS: 0000  GS: 0000  SS: 002B Error
while running hook_stop:
Cannot access memory at address 0xa07f0

Catchpoint 1 (returned from syscall munmap), 0x00000000000a07f0 in ?? ()
gdb$

GDB stop in the condition (x/1s $rdi ==> "/proc/meminfo") but after
that I can't continue

My machine is a Debian x86_64, and I probe with v7.4 and v7.8

Anyone knows what is the problem?

P.S.: with "call strcmp("foo","foo")" I have:
(gdb) call strcmp("foo","foo")

Program received signal SIGSEGV, Segmentation fault.
0x00000000000a07f6 in ?? ()
The program being debugged was signaled while in a function called from GDB.
GDB remains in the frame where the signal was received.
To change this behavior use "set unwindonsignal on".
Evaluation of the expression containing the function
(strcmp@plt) will be abandoned.
When the function is done executing, GDB will silently stop.
(gdb)

Regards


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]