mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-23 09:43:06 +00:00
cefe76bc3e
This is a nice example for Type.has_member(). Signed-off-by: Omar Sandoval <osandov@osandov.com>
26 lines
942 B
Python
Executable File
26 lines
942 B
Python
Executable File
#!/usr/bin/env drgn
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
"""An implementation of lsmod(8) using drgn"""
|
|
|
|
from drgn.helpers.linux.list import list_for_each_entry
|
|
|
|
print("Module Size Used by")
|
|
config_module_unload = prog.type("struct module").has_member("refcnt")
|
|
for mod in list_for_each_entry("struct module", prog["modules"].address_of_(), "list"):
|
|
name = mod.name.string_().decode()
|
|
size = (mod.init_layout.size + mod.core_layout.size).value_()
|
|
if config_module_unload:
|
|
refcnt = mod.refcnt.counter.value_()
|
|
used_by = [
|
|
use.source.name.string_().decode()
|
|
for use in list_for_each_entry(
|
|
"struct module_use", mod.source_list.address_of_(), "source_list"
|
|
)
|
|
]
|
|
else:
|
|
refcnt = "-"
|
|
used_by = []
|
|
print(f"{name:19} {size:>8} {refcnt} {','.join(used_by)}")
|