~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/gdb/linux/stackdepot.py

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /scripts/gdb/linux/stackdepot.py (Version linux-6.12-rc7) and /scripts/gdb/linux/stackdepot.py (Version linux-6.8.12)


  1 # SPDX-License-Identifier: GPL-2.0                  1 # SPDX-License-Identifier: GPL-2.0
  2 #                                                   2 #
  3 # Copyright (c) 2023 MediaTek Inc.                  3 # Copyright (c) 2023 MediaTek Inc.
  4 #                                                   4 #
  5 # Authors:                                          5 # Authors:
  6 #  Kuan-Ying Lee <Kuan-Ying.Lee@mediatek.com>        6 #  Kuan-Ying Lee <Kuan-Ying.Lee@mediatek.com>
  7 #                                                   7 #
  8                                                     8 
  9 import gdb                                          9 import gdb
 10 from linux import utils, constants                 10 from linux import utils, constants
 11                                                    11 
 12 if constants.LX_CONFIG_STACKDEPOT:                 12 if constants.LX_CONFIG_STACKDEPOT:
 13     stack_record_type = utils.CachedType('stru     13     stack_record_type = utils.CachedType('struct stack_record')
 14     DEPOT_STACK_ALIGN = 4                          14     DEPOT_STACK_ALIGN = 4
 15                                                    15 
 16 def help():                                    << 
 17     t = """Usage: lx-stack_depot_lookup [Hex h << 
 18     Example:                                   << 
 19         lx-stack_depot_lookup 0x00c80300\n"""  << 
 20     gdb.write("Unrecognized command\n")        << 
 21     raise gdb.GdbError(t)                      << 
 22                                                << 
 23 def stack_depot_fetch(handle):                     16 def stack_depot_fetch(handle):
 24     global DEPOT_STACK_ALIGN                       17     global DEPOT_STACK_ALIGN
 25     global stack_record_type                       18     global stack_record_type
 26                                                    19 
 27     stack_depot_disabled = gdb.parse_and_eval(     20     stack_depot_disabled = gdb.parse_and_eval('stack_depot_disabled')
 28                                                    21 
 29     if stack_depot_disabled:                       22     if stack_depot_disabled:
 30         raise gdb.GdbError("stack_depot_disabl     23         raise gdb.GdbError("stack_depot_disabled\n")
 31                                                    24 
 32     handle_parts_t = gdb.lookup_type("union ha     25     handle_parts_t = gdb.lookup_type("union handle_parts")
 33     parts = handle.cast(handle_parts_t)            26     parts = handle.cast(handle_parts_t)
 34     offset = parts['offset'] << DEPOT_STACK_AL     27     offset = parts['offset'] << DEPOT_STACK_ALIGN
 35     pools_num = gdb.parse_and_eval('pools_num'     28     pools_num = gdb.parse_and_eval('pools_num')
 36                                                    29 
 37     if handle == 0:                            !!  30     if parts['pool_index'] > pools_num:
 38         raise gdb.GdbError("handle is 0\n")    << 
 39                                                << 
 40     pool_index = parts['pool_index_plus_1'] -  << 
 41     if pool_index >= pools_num:                << 
 42         gdb.write("pool index %d out of bounds     31         gdb.write("pool index %d out of bounds (%d) for stack id 0x%08x\n" % (parts['pool_index'], pools_num, handle))
 43         return gdb.Value(0), 0                     32         return gdb.Value(0), 0
 44                                                    33 
 45     stack_pools = gdb.parse_and_eval('stack_po     34     stack_pools = gdb.parse_and_eval('stack_pools')
 46                                                    35 
 47     try:                                           36     try:
 48         pool = stack_pools[pool_index]         !!  37         pool = stack_pools[parts['pool_index']]
 49         stack = (pool + gdb.Value(offset).cast     38         stack = (pool + gdb.Value(offset).cast(utils.get_size_t_type())).cast(stack_record_type.get_type().pointer())
 50         size = int(stack['size'].cast(utils.ge     39         size = int(stack['size'].cast(utils.get_ulong_type()))
 51         return stack['entries'], size              40         return stack['entries'], size
 52     except Exception as e:                         41     except Exception as e:
 53         gdb.write("%s\n" % e)                      42         gdb.write("%s\n" % e)
 54         return gdb.Value(0), 0                     43         return gdb.Value(0), 0
 55                                                    44 
 56 def stack_depot_print(handle):                     45 def stack_depot_print(handle):
 57     if not constants.LX_CONFIG_STACKDEPOT:         46     if not constants.LX_CONFIG_STACKDEPOT:
 58         raise gdb.GdbError("CONFIG_STACKDEPOT      47         raise gdb.GdbError("CONFIG_STACKDEPOT is not enabled")
 59                                                    48 
 60     entries, nr_entries = stack_depot_fetch(ha     49     entries, nr_entries = stack_depot_fetch(handle)
 61     if nr_entries > 0:                             50     if nr_entries > 0:
 62         for i in range(0, nr_entries):             51         for i in range(0, nr_entries):
 63             try:                                   52             try:
 64                 gdb.execute("x /i 0x%x" % (int     53                 gdb.execute("x /i 0x%x" % (int(entries[i])))
 65             except Exception as e:                 54             except Exception as e:
 66                 gdb.write("%s\n" % e)              55                 gdb.write("%s\n" % e)
 67                                                << 
 68 class StackDepotLookup(gdb.Command):           << 
 69     """Search backtrace by handle"""           << 
 70                                                << 
 71     def __init__(self):                        << 
 72         if constants.LX_CONFIG_STACKDEPOT:     << 
 73             super(StackDepotLookup, self).__in << 
 74                                                << 
 75     def invoke(self, args, from_tty):          << 
 76         if not constants.LX_CONFIG_STACKDEPOT: << 
 77             raise gdb.GdbError('CONFIG_STACKDE << 
 78                                                << 
 79         argv = gdb.string_to_argv(args)        << 
 80         if len(argv) == 1:                     << 
 81             handle = int(argv[0], 16)          << 
 82             stack_depot_print(gdb.Value(handle << 
 83         else:                                  << 
 84             help()                             << 
 85                                                << 
 86 StackDepotLookup()                             << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php