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

Class Linux3VFS

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/mount.h?v=3.7#L53 http://lxr.free-electrons.com/source/fs/dcache.c?v=3.7#L2576

Instance Methods
 
__init__(self, profile=None)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
get_path(self, task, filp)
Resolve the dentry, vfsmount relative to this task's chroot.
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

__init__(self, profile=None)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

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).