1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
From baaecddc58db23db1b0d85651090b743ddf7899a Mon Sep 17 00:00:00 2001
From: Nikolaos Chatzikonstantinou <nchatz314@gmail.com>
Date: Thu, 8 Feb 2024 03:51:51 -0500
Subject: [PATCH] remove deprecated notice
Upstream: https://github.com/longld/peda/pull/176
From GDB 12.1+, `set logging on|off` is deprecated, and a notice is
given. See
<https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blob_plain;f=gdb/NEWS;hb=gdb-12.1-release>.
This patch fixes the issue for the newer gdb versions.
--- a/peda.py
+++ b/peda.py
@@ -108,22 +108,22 @@ def execute_redirect(self, gdb_command, silent=False):
else:
logfd = tmpfile()
logname = logfd.name
- gdb.execute('set logging off') # prevent nested call
+ gdb.execute('set logging enabled off') # prevent nested call
gdb.execute('set height 0') # disable paging
gdb.execute('set logging file %s' % logname)
gdb.execute('set logging overwrite on')
gdb.execute('set logging redirect on')
- gdb.execute('set logging on')
+ gdb.execute('set logging enabled on')
try:
gdb.execute(gdb_command)
gdb.flush()
- gdb.execute('set logging off')
+ gdb.execute('set logging enabled off')
if not silent:
logfd.flush()
result = logfd.read()
logfd.close()
except Exception as e:
- gdb.execute('set logging off') #to be sure
+ gdb.execute('set logging enabled off') #to be sure
if config.Option.get("debug") == "on":
msg('Exception (%s): %s' % (gdb_command, e), "red")
traceback.print_exc()
@@ -6112,7 +6112,7 @@ def complete(self, text, word):
# handle SIGINT / Ctrl-C
def sigint_handler(signal, frame):
warning_msg("Got Ctrl+C / SIGINT!")
- gdb.execute("set logging off")
+ gdb.execute("set logging enabled off")
peda.restore_user_command("all")
raise KeyboardInterrupt
signal.signal(signal.SIGINT, sigint_handler)
|