mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
98 lines
3.1 KiB
Python
98 lines
3.1 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 as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# 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 volatility.obj as obj
|
|
import volatility.plugins.linux.common as linux_common
|
|
|
|
class linux_dmesg(linux_common.AbstractLinuxCommand):
|
|
"""Gather dmesg buffer"""
|
|
|
|
def _get_log_info(self):
|
|
|
|
ptr_addr = self.addr_space.profile.get_symbol("log_buf")
|
|
log_buf_addr = obj.Object("unsigned long", offset = ptr_addr, vm = self.addr_space)
|
|
log_buf_len = obj.Object("int", self.addr_space.profile.get_symbol("log_buf_len"), vm = self.addr_space)
|
|
|
|
return (log_buf_addr, log_buf_len)
|
|
|
|
# pre 3.x
|
|
def _pre_3(self, buf_addr, buf_len):
|
|
|
|
return obj.Object("String", offset = buf_addr, vm = self.addr_space, length = buf_len)
|
|
|
|
def _ver_3(self, buf_addr, buf_len):
|
|
'''
|
|
During 3.x, the kernel switched the kernel debug buffer from just a big char array to the variable now
|
|
holding variable sized records tracked by inline 'log' structures
|
|
We deal with this by walking all the logs and building the buffer up and then returning it
|
|
This produces the same results as the old way
|
|
'''
|
|
|
|
ret = ""
|
|
|
|
size_of_log = self.profile.get_obj_size("log")
|
|
|
|
cur_addr = buf_addr
|
|
end_addr = buf_addr + buf_len
|
|
|
|
log = obj.Object("log", offset = cur_addr, vm = self.addr_space)
|
|
cur_len = log.len
|
|
|
|
while cur_addr < end_addr and cur_len != 0:
|
|
|
|
msg_len = log.text_len
|
|
cur_ts = log.ts_nsec
|
|
|
|
buf = obj.Object("String", offset = cur_addr + size_of_log, vm = self.addr_space, length = msg_len)
|
|
|
|
ret = ret + "[{0}.{1}] {2}\n".format(cur_ts, cur_ts / 1000000000, buf)
|
|
|
|
cur_addr = cur_addr + cur_len
|
|
|
|
log = obj.Object("log", offset = cur_addr, vm = self.addr_space)
|
|
cur_len = log.len
|
|
|
|
return ret
|
|
|
|
def calculate(self):
|
|
linux_common.set_plugin_members(self)
|
|
(log_buf_addr, log_buf_len) = self._get_log_info()
|
|
|
|
if self.profile.has_type("log") and self.profile.obj_has_member("log", "ts_nsec"):
|
|
yield self._ver_3(log_buf_addr, log_buf_len)
|
|
|
|
else:
|
|
yield self._pre_3(log_buf_addr, log_buf_len)
|
|
|
|
def render_text(self, outfd, data):
|
|
|
|
for buf in data:
|
|
outfd.write("{0:s}\n".format(buf))
|
|
|
|
|
|
|
|
|