mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
416 lines
14 KiB
Python
416 lines
14 KiB
Python
# Volatility
|
|
# Copyright (C) 2007-2013 Volatility Foundation
|
|
#
|
|
# This file is part of Volatility.
|
|
#
|
|
# Volatility is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License Version 2 as
|
|
# published by the Free Software Foundation. You may not use, modify or
|
|
# distribute this program under any other version of the GNU General
|
|
# Public License.
|
|
#
|
|
# Volatility 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 Volatility. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
"""
|
|
@author: Andrew Case
|
|
@license: GNU General Public License 2.0
|
|
@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_find_file(linux_common.AbstractLinuxCommand):
|
|
'''Lists and recovers files from memory'''
|
|
|
|
def __init__(self, config, *args, **kwargs):
|
|
linux_common.AbstractLinuxCommand.__init__(self, config, *args, **kwargs)
|
|
config.add_option('FIND', short_option = 'F', default = None, help = 'file (path) to find', action = 'store', type = 'str')
|
|
config.add_option('INODE', short_option = 'i', default = None, help = 'inode to write to disk', action = 'store', type = 'int')
|
|
config.add_option('OUTFILE', short_option = 'O', default = None, help = 'output file path', action = 'store', type = 'str')
|
|
|
|
config.remove_option("LIST_SBS")
|
|
config.add_option('LISTFILES', short_option = 'L', default = None, help = 'list all files cached in memory', action = 'count')
|
|
|
|
self.ptr_size = -1
|
|
self.seen_dents = set()
|
|
|
|
def _walk_sb(self, dentry_param, parent):
|
|
ret = []
|
|
|
|
if hasattr(dentry_param, "d_child"):
|
|
walk_member = "d_child"
|
|
else:
|
|
walk_member = "d_u"
|
|
|
|
for dentry in dentry_param.d_subdirs.list_of_type("dentry", walk_member):
|
|
dentry_addr = dentry.v()
|
|
|
|
# corruption
|
|
if dentry_addr == dentry_param.v():
|
|
continue
|
|
|
|
if dentry_addr in self.seen_dents:
|
|
break
|
|
|
|
self.seen_dents.add(dentry_addr)
|
|
|
|
if not dentry.d_name.name.is_valid():
|
|
continue
|
|
|
|
inode = dentry.d_inode
|
|
|
|
ivalid = False
|
|
if inode and inode.is_valid():
|
|
if inode.i_ino == 0 or inode.i_ino > 100000000000:
|
|
continue
|
|
ivalid = True
|
|
|
|
# do not use os.path.join
|
|
# this allows us to have consistent paths from the user
|
|
name = dentry.d_name.name.dereference_as("String", length = 255)
|
|
new_file = parent + "/" + name
|
|
ret.append((new_file, dentry))
|
|
|
|
if ivalid and inode.is_dir():
|
|
ret = ret + self._walk_sb(dentry, new_file)
|
|
|
|
return ret
|
|
|
|
def _get_sbs(self):
|
|
ret = []
|
|
|
|
for (sb, _dev_name, path, fstype, _rr, _mnt_string) in linux_mount.linux_mount(self._config).calculate():
|
|
ret.append((sb, path))
|
|
|
|
return ret
|
|
|
|
def walk_sbs(self, sbs = []):
|
|
if sbs == []:
|
|
linux_common.set_plugin_members(self)
|
|
sbs = self._get_sbs()
|
|
|
|
for (sb, sb_path) in sbs:
|
|
if sb_path != "/":
|
|
parent = sb_path
|
|
else:
|
|
parent = ""
|
|
|
|
rname = sb.s_root.d_name.name.dereference_as("String", length = 255)
|
|
if rname and len(rname) > 0:
|
|
yield (sb, sb_path, sb_path, sb.s_root)
|
|
|
|
for (file_path, file_dentry) in self._walk_sb(sb.s_root, parent):
|
|
yield (sb, sb_path, file_path, file_dentry)
|
|
|
|
def calculate(self):
|
|
linux_common.set_plugin_members(self)
|
|
|
|
find_file = self._config.FIND
|
|
inode_addr = self._config.inode
|
|
outfile = self._config.outfile
|
|
listfiles = self._config.LISTFILES
|
|
|
|
if listfiles:
|
|
for (_, _, file_path, file_dentry) in self.walk_sbs():
|
|
yield (file_path, file_dentry.d_inode)
|
|
|
|
elif find_file and len(find_file):
|
|
for (_, _, file_path, file_dentry) in self.walk_sbs():
|
|
if file_path == find_file:
|
|
yield (file_path, file_dentry.d_inode)
|
|
break
|
|
|
|
elif inode_addr and inode_addr > 0 and outfile and len(outfile) > 0:
|
|
inode = obj.Object("inode", offset = inode_addr, vm = self.addr_space)
|
|
|
|
try:
|
|
f = open(outfile, "wb")
|
|
except IOError, e:
|
|
debug.error("Unable to open output file (%s): %s" % (outfile, str(e)))
|
|
|
|
for page in self.get_file_contents(inode):
|
|
f.write(page)
|
|
|
|
f.close()
|
|
|
|
else:
|
|
debug.error("Incorrect command line parameters given.")
|
|
|
|
def render_text(self, outfd, data):
|
|
shown_header = 0
|
|
|
|
for (file_path, inode) in data:
|
|
if not shown_header:
|
|
self.table_header(outfd, [("Inode Number", "16"), ("Inode", "[addr]"), ("File Path", "")])
|
|
shown_header = 1
|
|
|
|
inode_num = inode.i_ino
|
|
|
|
self.table_row(outfd, inode_num, inode, file_path)
|
|
|
|
# from here down is code to walk the page cache and mem_map / mem_section page structs#
|
|
def radix_tree_is_internal_node(self, ptr):
|
|
if hasattr(ptr, "v"):
|
|
ptr = ptr.v()
|
|
|
|
return ptr & 3 == 1
|
|
|
|
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 index_is_valid(self, root, index):
|
|
node = root.rnode
|
|
if self.radix_tree_is_internal_node(node):
|
|
maxindex = (self.RADIX_TREE_MAP_SIZE << node.shift) - 1
|
|
else:
|
|
maxindex = 0
|
|
|
|
if index > maxindex:
|
|
node = None
|
|
|
|
return node
|
|
|
|
def is_sibling_entry(self, parent, node):
|
|
parent_ptr = parent.slots.obj_offset
|
|
node_ptr = node
|
|
|
|
return (parent_ptr <= node_ptr) and \
|
|
(node_ptr < parent_ptr + (self.ptr_size * self.RADIX_TREE_MAP_SIZE))
|
|
|
|
def get_slot_offset(self, parent, slot):
|
|
return (slot.v() - parent.slots.obj_offset) / self.ptr_size
|
|
|
|
def radix_tree_descend(self, parent, node, index):
|
|
offset = (index >> parent.shift) & self.RADIX_TREE_MAP_MASK
|
|
ent_ptr = parent.slots.obj_offset + (self.ptr_size * offset)
|
|
entry = obj.Object(theType="Pointer", targetType="unsigned long", offset = ent_ptr, vm = self.addr_space)
|
|
|
|
if 1: # TODO - multi order
|
|
if self.radix_tree_is_internal_node(entry):
|
|
print "multi internal"
|
|
if self.is_sibling_entry(parent, entry):
|
|
print "sibling ptr"
|
|
sibentry = self.radix_tree_indirect_to_ptr(entry)
|
|
offset = self.get_slot_offset(parent, sibentry)
|
|
entry = sibentry.v()
|
|
|
|
node = entry
|
|
|
|
return offset, node
|
|
|
|
def find_slot_post_4_11(self, root, index):
|
|
node = self.index_is_valid(root, index)
|
|
if node == None:
|
|
return None
|
|
|
|
slot = root.rnode.v()
|
|
|
|
while self.radix_tree_is_internal_node(node):
|
|
if node == 1:
|
|
return None
|
|
else:
|
|
parent = self.radix_tree_indirect_to_ptr(node)
|
|
offset, node = self.radix_tree_descend(parent, node, index)
|
|
slot_addr = parent.slots.obj_offset + (offset * self.ptr_size)
|
|
slot = obj.Object(theType="Pointer", targetType="unsigned long", offset = slot_addr, vm = self.addr_space)
|
|
slot = slot.v()
|
|
|
|
return slot
|
|
|
|
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 not node.is_valid():
|
|
return None
|
|
|
|
post_4_11 = False
|
|
|
|
if hasattr(node, "height"):
|
|
height = node.height
|
|
|
|
height = height & 0xfff
|
|
# this check is needed as gcc seems to produce a 0 value when a shift value is negative
|
|
# Python throws a backtrace in this situation though
|
|
# setting to 0 will cause the later -1 to equal 0, and match the runtime behaviour of the kernel
|
|
if height == 0:
|
|
height = 1
|
|
|
|
elif hasattr(node, "path"):
|
|
height = node.path
|
|
|
|
height = height & 0xfff
|
|
# this check is needed as gcc seems to produce a 0 value when a shift value is negative
|
|
# Python throws a backtrace in this situation though
|
|
# setting to 0 will cause the later -1 to equal 0, and match the runtime behaviour of the kernel
|
|
if height == 0:
|
|
height = 1
|
|
|
|
else:
|
|
post_4_11 = True
|
|
|
|
if post_4_11:
|
|
slot = self.find_slot_post_4_11(root, index)
|
|
else:
|
|
if self.radix_tree_is_indirect_ptr(node) == 0:
|
|
if index > 0:
|
|
return None
|
|
|
|
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)
|
|
|
|
if hasattr(node, "shift"):
|
|
shift = node.shift
|
|
else:
|
|
shift = (height - 1) * self.RADIX_TREE_MAP_SHIFT
|
|
|
|
slot = -1
|
|
|
|
while 1:
|
|
idx = (index >> shift) & self.RADIX_TREE_MAP_MASK
|
|
slot = node.slots[idx]
|
|
node = self.radix_tree_indirect_to_ptr(slot)
|
|
shift = shift - self.RADIX_TREE_MAP_SHIFT
|
|
height = height - 1
|
|
if height <= 0:
|
|
break
|
|
|
|
if slot == -1:
|
|
return None
|
|
|
|
return slot
|
|
|
|
def SHMEM_I(self, inode):
|
|
offset = self.profile.get_obj_offset("shmem_inode_info", "vfs_inode")
|
|
return obj.Object("shmem_inode_info", offset = inode.obj_offset - offset, vm = self.addr_space)
|
|
|
|
def xa_is_internal(self, entry):
|
|
return (int(entry) & 3) == 2
|
|
|
|
def xa_is_node(self, entry):
|
|
return entry and self.xa_is_internal(entry) and int(entry) > 4096
|
|
|
|
def xa_get_offset(self, index, node):
|
|
return (index >> node.shift) & 63
|
|
|
|
def xa_get_entry_from_offset(self, offset, node):
|
|
ent_ptr = node.slots.obj_offset + (8 * offset)
|
|
return obj.Object(theType="Pointer", targetType="unsigned long", offset = ent_ptr, vm = self.addr_space)
|
|
|
|
def xas_descend(self, offset, node):
|
|
offset = self.xa_get_offset(offset, node)
|
|
|
|
entry = self.xa_get_entry_from_offset(offset, node)
|
|
if entry == None:
|
|
return entry
|
|
|
|
p = entry.v()
|
|
if p & 3 == 2 and p < 250:
|
|
offset = p >> 2
|
|
entry = self.xa_get_entry_from_offset(offset, node)
|
|
if entry == None:
|
|
return entry
|
|
|
|
return entry
|
|
|
|
def walk_xarray(self, inode, offset):
|
|
entry = inode.i_mapping.i_pages.xa_head #.obj_offset
|
|
|
|
while self.xa_is_node(entry):
|
|
node = obj.Object("xa_node", offset = entry - 2, vm = self.addr_space)
|
|
|
|
if node.shift < 0:
|
|
break
|
|
|
|
entry = self.xas_descend(offset, node)
|
|
|
|
return entry
|
|
|
|
def find_get_page(self, inode, offset):
|
|
if hasattr(inode.i_mapping, "page_tree"):
|
|
page = self.radix_tree_lookup_slot(inode.i_mapping.page_tree, offset)
|
|
elif hasattr(inode.i_mapping.i_pages, "rnode"):
|
|
page = self.radix_tree_lookup_slot(inode.i_mapping.i_pages, offset)
|
|
else:
|
|
page = self.walk_xarray(inode, offset)
|
|
|
|
return page
|
|
|
|
def get_page_contents(self, inode, idx):
|
|
page_addr = self.find_get_page(inode, idx)
|
|
|
|
if page_addr:
|
|
page = obj.Object("page", offset = page_addr, vm = self.addr_space)
|
|
phys_offset = page.to_paddr()
|
|
|
|
if page and phys_offset > 0:
|
|
phys_as = utils.load_as(self._config, astype = 'physical')
|
|
data = phys_as.zread(phys_offset, 4096)
|
|
else:
|
|
data = "\x00" * 4096
|
|
else:
|
|
data = "\x00" * 4096
|
|
|
|
return data
|
|
|
|
# main function to be called, handles getting all the pages of an inode
|
|
# and handles the last page not being page_size aligned
|
|
def get_file_contents(self, inode):
|
|
linux_common.set_plugin_members(self)
|
|
if self.addr_space.profile.metadata.get('memory_model', '32bit') == "32bit":
|
|
self.ptr_size = 4
|
|
else:
|
|
self.ptr_size = 8
|
|
|
|
data = ""
|
|
file_size = inode.i_size
|
|
|
|
if not inode.is_valid() or file_size == None:
|
|
raise StopIteration
|
|
|
|
extra = file_size % 4096
|
|
idxs = file_size / 4096
|
|
|
|
if extra > 0:
|
|
extra = 4096 - extra
|
|
idxs = idxs + 1
|
|
|
|
if idxs > 1000000000:
|
|
raise StopIteration
|
|
|
|
for idx in range(0, idxs):
|
|
data = self.get_page_contents(inode, idx)
|
|
|
|
# this is to chop off any extra data on the last page
|
|
if idx == idxs - 1:
|
|
if extra > 0:
|
|
extra = extra * -1
|
|
data = data[:extra]
|
|
|
|
yield data
|
|
|
|
|