drgn/examples/linux/fs_inodes.py

29 lines
653 B
Python
Raw Normal View History

"""List the paths of all inodes cached in a given filesystem"""
2018-07-03 07:59:39 +01:00
2019-03-29 08:59:53 +00:00
from drgn.helpers.linux.fs import for_each_mount, inode_path
from drgn.helpers.linux.list import list_for_each_entry
2018-07-03 07:59:39 +01:00
import os
import sys
import time
2018-07-03 07:59:39 +01:00
if len(sys.argv) == 1:
path = '/'
else:
path = sys.argv[1]
mnt = None
for mnt in for_each_mount(prog, dst=path):
2018-07-03 07:59:39 +01:00
pass
if mnt is None:
sys.exit(f'No filesystem mounted at {path}')
sb = mnt.mnt.mnt_sb
for inode in list_for_each_entry('struct inode', sb.s_inodes.address_of_(),
'i_sb_list'):
try:
print(os.fsdecode(inode_path(inode)))
except ValueError:
continue