Skip to content

Commit 852622b

Browse files
Kuan-Ying Leeakpm00
authored andcommitted
scripts/gdb/vmalloc: add vmallocinfo support
This GDB script shows the vmallocinfo for user to analyze the vmalloc memory usage. Example output: 0xffff800008000000-0xffff800008009000 36864 <start_kernel+372> pages=8 vmalloc 0xffff800008009000-0xffff80000800b000 8192 <gicv2m_init_one+400> phys=0x8020000 ioremap 0xffff80000800b000-0xffff80000800d000 8192 <bpf_prog_alloc_no_stats+72> pages=1 vmalloc 0xffff80000800d000-0xffff80000800f000 8192 <bpf_jit_alloc_exec+16> pages=1 vmalloc 0xffff800008010000-0xffff80000ad30000 47316992 <paging_init+452> phys=0x40210000 vmap 0xffff80000ad30000-0xffff80000c1c0000 21561344 <paging_init+556> phys=0x42f30000 vmap 0xffff80000c1c0000-0xffff80000c370000 1769472 <paging_init+592> phys=0x443c0000 vmap 0xffff80000c370000-0xffff80000de90000 28442624 <paging_init+692> phys=0x44570000 vmap 0xffff80000de90000-0xffff80000f4c1000 23269376 <paging_init+788> phys=0x46090000 vmap 0xffff80000f4c1000-0xffff80000f4c3000 8192 <gen_pool_add_owner+112> pages=1 vmalloc 0xffff80000f4c3000-0xffff80000f4c5000 8192 <gen_pool_add_owner+112> pages=1 vmalloc 0xffff80000f4c5000-0xffff80000f4c7000 8192 <gen_pool_add_owner+112> pages=1 vmalloc Link: https://lkml.kernel.org/r/20230808083020.22254-9-Kuan-Ying.Lee@mediatek.com Signed-off-by: Kuan-Ying Lee <Kuan-Ying.Lee@mediatek.com> Cc: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Cc: Chinwen Chang <chinwen.chang@mediatek.com> Cc: Matthias Brugger <matthias.bgg@gmail.com> Cc: Qun-Wei Lin <qun-wei.lin@mediatek.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
1 parent 79939c4 commit 852622b

3 files changed

Lines changed: 65 additions & 0 deletions

File tree

scripts/gdb/linux/constants.py.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include <linux/radix-tree.h>
2323
#include <linux/slab.h>
2424
#include <linux/threads.h>
25+
#include <linux/vmalloc.h>
2526

2627
/* We need to stringify expanded macros so that they can be parsed */
2728

@@ -91,6 +92,13 @@ LX_GDBPARSED(RADIX_TREE_MAP_SIZE)
9192
LX_GDBPARSED(RADIX_TREE_MAP_SHIFT)
9293
LX_GDBPARSED(RADIX_TREE_MAP_MASK)
9394

95+
/* linux/vmalloc.h */
96+
LX_VALUE(VM_IOREMAP)
97+
LX_VALUE(VM_ALLOC)
98+
LX_VALUE(VM_MAP)
99+
LX_VALUE(VM_USERMAP)
100+
LX_VALUE(VM_DMA_COHERENT)
101+
94102
/* linux/page_ext.h */
95103
if IS_BUILTIN(CONFIG_PAGE_OWNER):
96104
LX_GDBPARSED(PAGE_EXT_OWNER)

scripts/gdb/linux/vmalloc.py

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# SPDX-License-Identifier: GPL-2.0
2+
#
3+
# Copyright (c) 2023 MediaTek Inc.
4+
#
5+
# Authors:
6+
# Kuan-Ying Lee <Kuan-Ying.Lee@mediatek.com>
7+
#
8+
9+
import gdb
10+
import re
11+
from linux import lists, utils, stackdepot, constants, mm
12+
13+
vmap_area_type = utils.CachedType('struct vmap_area')
14+
vmap_area_ptr_type = vmap_area_type.get_type().pointer()
15+
16+
def is_vmalloc_addr(x):
17+
pg_ops = mm.page_ops().ops
18+
addr = pg_ops.kasan_reset_tag(x)
19+
return addr >= pg_ops.VMALLOC_START and addr < pg_ops.VMALLOC_END
20+
21+
class LxVmallocInfo(gdb.Command):
22+
"""Show vmallocinfo"""
23+
24+
def __init__(self):
25+
super(LxVmallocInfo, self).__init__("lx-vmallocinfo", gdb.COMMAND_DATA)
26+
27+
def invoke(self, arg, from_tty):
28+
vmap_area_list = gdb.parse_and_eval('vmap_area_list')
29+
for vmap_area in lists.list_for_each_entry(vmap_area_list, vmap_area_ptr_type, "list"):
30+
if not vmap_area['vm']:
31+
gdb.write("0x%x-0x%x %10d vm_map_ram\n" % (vmap_area['va_start'], vmap_area['va_end'],
32+
vmap_area['va_end'] - vmap_area['va_start']))
33+
continue
34+
v = vmap_area['vm']
35+
gdb.write("0x%x-0x%x %10d" % (v['addr'], v['addr'] + v['size'], v['size']))
36+
if v['caller']:
37+
gdb.write(" %s" % str(v['caller']).split(' ')[-1])
38+
if v['nr_pages']:
39+
gdb.write(" pages=%d" % v['nr_pages'])
40+
if v['phys_addr']:
41+
gdb.write(" phys=0x%x" % v['phys_addr'])
42+
if v['flags'] & constants.LX_VM_IOREMAP:
43+
gdb.write(" ioremap")
44+
if v['flags'] & constants.LX_VM_ALLOC:
45+
gdb.write(" vmalloc")
46+
if v['flags'] & constants.LX_VM_MAP:
47+
gdb.write(" vmap")
48+
if v['flags'] & constants.LX_VM_USERMAP:
49+
gdb.write(" user")
50+
if v['flags'] & constants.LX_VM_DMA_COHERENT:
51+
gdb.write(" dma-coherent")
52+
if is_vmalloc_addr(v['pages']):
53+
gdb.write(" vpages")
54+
gdb.write("\n")
55+
56+
LxVmallocInfo()

scripts/gdb/vmlinux-gdb.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@
4848
import linux.stackdepot
4949
import linux.page_owner
5050
import linux.slab
51+
import linux.vmalloc

0 commit comments

Comments
 (0)