Package rekall :: Package plugins :: Package overlays :: Package linux :: Module vfs :: Class Linux26VFS
[frames] | no frames]

Class Linux26VFS

source code


This is the implementation specific VFS operations.

Most of the code here is a direct copy of the methods in linux/fs/dcache.c

http://lxr.free-electrons.com/source/fs/dcache.c?v=2.6.26#L1782

Instance Methods
 
get_path(self, task, filp)
Resolve the dentry, vfsmount relative to this task's chroot.
source code
 
d_unhashed(self, dentry) source code
 
__init__(self, profile=None)
x.__init__(...) initializes x; see help(type(x)) for signature (Inherited from rekall.plugins.overlays.linux.vfs.Linux3VFS)
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

get_path(self, task, filp)

source code 
Resolve the dentry, vfsmount relative to this task's chroot.

Returns:
  An absolute path to the global filesystem mount. (I.e. we do not
  truncate the path at the chroot point as the kernel does).

Overrides: Linux3VFS.get_path