Skip to content

Commit

Permalink
ls: Add support to recursively print dentries of subdirectories
Browse files Browse the repository at this point in the history
Currently, ls module prints the dentries of a given directory.
Add support to print the dentries of its subdirectories recursively
up to a specified depth.

Signed-off-by: Srivathsa Dara <[email protected]>
  • Loading branch information
srivathsa729 committed Oct 18, 2024
1 parent 0be664d commit 3b472b5
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 7 deletions.
49 changes: 43 additions & 6 deletions drgn_tools/dentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,24 +381,46 @@ def __file_type(mode: Object) -> str:
return "UNKN"


def ls(prog: Program, directory: str, count: bool = False) -> None:
def ls(
prog: Program,
directory: str,
parent_dentry: Optional[Object] = None,
depth: int = 0,
count: bool = False,
) -> None:
"""
Print dentry children, like the ls command
:param directory: directory to print children of
:param parent_dentry: dentry object of the directory to print children of
:param depth: If provided, it recursively prints the children of subdirectories up to the specified depth.
:param count: when true, only print counts (not the full contents)
"""
dentries = dentry_for_each_child(path_lookup(prog, directory).dentry)

subdirs = []
dentries = dentry_for_each_child(
parent_dentry if parent_dentry else path_lookup(prog, directory).dentry
)

print(f"{directory}:")
pos = neg = 0
for i, dentry in enumerate(dentries):
path = dentry_path_any_mount(dentry).decode()
name = dentry.d_name.name.string_().decode()
if dentry_is_negative(dentry):
neg += 1
dentry_type = "negative"
else:
dentry_type = __file_type(int(dentry.d_inode.i_mode))
if dentry_type == "DIR":
subdirs.append((f"{directory}/{name}", dentry))
pos += 1
if not count:
print(f"{i:05d} {path}")
print(f"{pos} positive, {neg} negative dentries")
print(f"\t{i:05d} {name} ({dentry_type})")
print(f"\t{pos} positive, {neg} negative dentries")

if depth == 0:
return
for dir in subdirs:
ls(prog, dir[0], dir[1], depth - 1, count)


class Ls(CorelensModule):
Expand All @@ -411,6 +433,14 @@ class Ls(CorelensModule):
run_when = "never"

def add_args(self, parser: argparse.ArgumentParser) -> None:
def non_negative_int(value):
ivalue = int(value)
if ivalue < 0:
raise argparse.ArgumentTypeError(
f"Invalid depth value: {value}. Depth must be a non-negative integer."
)
return ivalue

parser.add_argument(
"directory",
type=str,
Expand All @@ -422,9 +452,16 @@ def add_args(self, parser: argparse.ArgumentParser) -> None:
action="store_true",
help="only print counts, rather than every element",
)
parser.add_argument(
"--depth",
"-d",
type=non_negative_int,
default=0,
help="Print the dentries of subdirectories recursively up to the specified depth.",
)

def run(self, prog: Program, args: argparse.Namespace) -> None:
ls(prog, args.directory, count=args.count)
ls(prog, args.directory, None, depth=args.depth, count=args.count)


class DentryCache(CorelensModule):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ def test_list_dentries_in_hashtable(prog):


def test_ls(prog):
dentry.ls(prog, "/")
dentry.ls(prog, "/", None, 0)

0 comments on commit 3b472b5

Please sign in to comment.