mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
298 lines
8.4 KiB
Python
298 lines
8.4 KiB
Python
# Volatility
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or (at
|
|
# your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
"""
|
|
@author: Andrew Case
|
|
@license: GNU General Public License 2.0 or later
|
|
@contact: atcuno@gmail.com
|
|
@organization:
|
|
"""
|
|
|
|
import sys, os
|
|
import volatility.obj as obj
|
|
import volatility.plugins.linux.common as linux_common
|
|
import volatility.plugins.linux.mount as linux_mount
|
|
import volatility.plugins.linux.flags as linux_flags
|
|
import volatility.debug as debug
|
|
import volatility.utils as utils
|
|
|
|
class linux_tmpfs(linux_common.AbstractLinuxCommand):
|
|
|
|
''' recovers tmpfs filesystems from memory '''
|
|
|
|
def __init__(self, config, *args):
|
|
linux_common.AbstractLinuxCommand.__init__(self, config, *args)
|
|
self._config.add_option('EVIDENCE_DIR', short_option = 'o', default = None, help = 'output directory for recovered files', action = 'store', type = 'str')
|
|
self._config.add_option('SB', short_option = 'S', default = None, help = 'superblock to process, see -l', action = 'store', type = 'int')
|
|
self._config.add_option('LIST_SBS', short_option = 'L', default = None, help = 'list avaiable tmpfs superblocks', action = 'store_true')
|
|
|
|
# used to keep correct time for directories
|
|
self.dir_times = {}
|
|
|
|
# fix metadata for new files
|
|
def fix_md(self, new_file, perms, atime, mtime, isdir=0):
|
|
|
|
# FIXME
|
|
atime = atime.tv_sec + 18000
|
|
mtime = mtime.tv_sec + 18000
|
|
|
|
if isdir:
|
|
self.dir_times[new_file] = (atime, mtime)
|
|
else:
|
|
os.utime(new_file, (atime, mtime))
|
|
|
|
os.chmod(new_file, perms)
|
|
|
|
def process_directory(self, dentry, recursive=0, parent=""):
|
|
|
|
for dentry in dentry.d_subdirs.list_of_type("dentry", "d_u"):
|
|
|
|
name = dentry.d_name.name.dereference_as("String", length=255)
|
|
|
|
inode = dentry.d_inode
|
|
|
|
if inode:
|
|
|
|
new_file = os.path.join(parent, name)
|
|
|
|
(perms, size, atime, mtime) = (inode.i_mode, inode.i_size, inode.i_atime, inode.i_mtime)
|
|
|
|
if linux_common.S_ISDIR(inode.i_mode):
|
|
# since the directory may already exist
|
|
try:
|
|
os.mkdir(new_file)
|
|
except:
|
|
pass
|
|
|
|
self.fix_md(new_file, perms, atime, mtime, 1)
|
|
|
|
self.process_directory(dentry, 1, new_file)
|
|
|
|
elif linux_common.S_ISREG(inode.i_mode):
|
|
|
|
contents = self.get_file_contents(inode)
|
|
|
|
f = open(new_file, "wb")
|
|
f.write(contents)
|
|
f.close()
|
|
self.fix_md(new_file, perms, atime, mtime)
|
|
|
|
# TODO add support for symlinks
|
|
else:
|
|
#print "skipped: %s" % name
|
|
pass
|
|
else:
|
|
#print "no inode for %s" % name
|
|
pass
|
|
|
|
def walk_sb(self, root_dentry):
|
|
|
|
cur_dir = os.path.join(self.edir)
|
|
|
|
self.process_directory(root_dentry, parent=cur_dir)
|
|
|
|
# post processing
|
|
for new_file in self.dir_times:
|
|
(atime, mtime) = self.dir_times[new_file]
|
|
|
|
os.utime(new_file, (atime, mtime))
|
|
|
|
'''
|
|
we need this b/c we have a bunch of 'super_block' structs
|
|
but no method that I could find maps a super_block to its vfs_mnt
|
|
which is needed to figure out where the super_block is mounted
|
|
|
|
This function returns a hash table of hash[sb] = path
|
|
'''
|
|
def get_tmpfs_sbs(self):
|
|
|
|
ret = []
|
|
|
|
mnt_points = linux_mount.linux_mount(self._config).calculate()
|
|
|
|
for (sb, _dev_name, path, fstype, _rr, _mnt_string) in mnt_points:
|
|
|
|
if str(fstype) == "tmpfs":
|
|
|
|
ret.append((sb, path))
|
|
|
|
return ret
|
|
|
|
def calculate(self):
|
|
|
|
self.edir = self._config.EVIDENCE_DIR
|
|
self.sb_num = self._config.SB
|
|
self.list_sbs = self._config.LIST_SBS
|
|
|
|
# a list of root directory entries
|
|
|
|
if self.edir and self.sb_num:
|
|
|
|
if not os.path.isdir(self.edir):
|
|
debug.error(self.edir + " is not a directory")
|
|
|
|
# this path never 'yield's, just writes the filesystem to disk
|
|
tmpfs_sbs = self.get_tmpfs_sbs()
|
|
|
|
# FIXME - validate
|
|
root_dentry = tmpfs_sbs[self.sb_num - 1][0].s_root
|
|
|
|
self.walk_sb(root_dentry)
|
|
|
|
elif self.list_sbs:
|
|
|
|
# vfsmnt.mnt_sb.s_root
|
|
tmpfs_sbs = self.get_tmpfs_sbs()
|
|
|
|
for (i, (sb, path)) in enumerate(tmpfs_sbs):
|
|
|
|
yield (i + 1, path)
|
|
|
|
else:
|
|
debug.error("No sb number/output directory combination given and list superblocks not given")
|
|
|
|
# we only render the -L option
|
|
def render_text(self, outfd, data):
|
|
|
|
for (i, path) in data:
|
|
|
|
outfd.write("{0:d} -> {1}\n".format(i, path))
|
|
|
|
############################
|
|
|
|
def radix_tree_is_indirect_ptr(self, ptr):
|
|
|
|
return ptr & 1
|
|
|
|
def radix_tree_indirect_to_ptr(self, ptr):
|
|
|
|
return obj.Object("radix_tree_node", offset=ptr & ~1, vm=self.addr_space)
|
|
|
|
def radix_tree_lookup_slot(self, root, index):
|
|
|
|
self.RADIX_TREE_MAP_SHIFT = 6
|
|
self.RADIX_TREE_MAP_SIZE = 1 << self.RADIX_TREE_MAP_SHIFT
|
|
self.RADIX_TREE_MAP_MASK = self.RADIX_TREE_MAP_SIZE - 1
|
|
|
|
node = root.rnode
|
|
|
|
if self.radix_tree_is_indirect_ptr(node) == 0:
|
|
|
|
if index > 0:
|
|
#print "returning None: index > 0"
|
|
return None
|
|
|
|
#print "returning obj_Offset"
|
|
off = root.obj_offset + self.profile.get_obj_offset("radix_tree_root", "rnode")
|
|
|
|
page = obj.Object("Pointer", offset = off, vm=self.addr_space)
|
|
|
|
return page
|
|
|
|
node = self.radix_tree_indirect_to_ptr(node)
|
|
|
|
height = node.height
|
|
|
|
shift = (height - 1) * 6 # RADIX_TREE_MAP_SHIFT
|
|
|
|
slot = -1
|
|
|
|
while 1:
|
|
|
|
idx = (index >> shift) & self.RADIX_TREE_MAP_MASK
|
|
|
|
slot = node.slots[idx]
|
|
|
|
shift = shift - self.RADIX_TREE_MAP_SHIFT
|
|
|
|
height = height - 1
|
|
|
|
if height <= 0:
|
|
break
|
|
|
|
if slot == -1:
|
|
return None
|
|
|
|
return slot
|
|
|
|
def find_get_page(self, mapping, offset):
|
|
|
|
page = self.radix_tree_lookup_slot(mapping.page_tree, offset)
|
|
|
|
if not page:
|
|
print "no page?"
|
|
|
|
return page
|
|
|
|
def shmem_getpage(self, inode, index):
|
|
|
|
filepage = self.find_get_page(inode.i_mapping, index)
|
|
|
|
# TODO
|
|
# entry swap?
|
|
|
|
return filepage
|
|
|
|
def get_page_contents(self, inode, idx):
|
|
|
|
page = self.shmem_getpage(inode, idx)
|
|
|
|
#print "inode: %x page: %x" % (inode, page)
|
|
|
|
mem_map_ptr = obj.Object("Pointer", offset=self.get_profile_symbol("mem_map"), vm=self.addr_space)
|
|
|
|
phys_offset = (page - mem_map_ptr) / self.profile.get_obj_size("page")
|
|
|
|
phys_offset = phys_offset << 12
|
|
|
|
phys_as = utils.load_as(self._config, astype = 'physical')
|
|
|
|
# should this be zread or read?
|
|
data = phys_as.read(phys_offset, 4096)
|
|
|
|
return data
|
|
|
|
def get_file_contents(self, inode):
|
|
|
|
data = ""
|
|
file_size = inode.i_size
|
|
|
|
extra = file_size % 4096
|
|
|
|
idxs = file_size / 4096
|
|
|
|
if extra != 0:
|
|
extra = 4096 - extra
|
|
idxs = idxs + 1
|
|
|
|
for idx in range(0, idxs):
|
|
|
|
data = data + self.get_page_contents(inode, idx)
|
|
|
|
# this is chop off any extra data on the last page
|
|
|
|
if extra != 0:
|
|
extra = extra * -1
|
|
|
|
data = data[:extra]
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
|