1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
#!/usr/bin/python
#
# Copyright 2011, Michael Cohen <scudette@gmail.com>.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import images
import pytsk3
import stat
from errno import *
import pdb
import os, sys, re
# pull in some spaghetti to make this stuff work without fuse-py being installed
try:
import _find_fuse_parts
except ImportError:
pass
import fuse
from fuse import Fuse
if not hasattr(fuse, '__version__'):
raise RuntimeError, \
"your fuse-py doesn't know of fuse.__version__, probably it's too old."
fuse.fuse_python_api = (0, 2)
fuse.feature_assert('stateful_files', 'has_init')
int_re = re.compile("^(\d+)([kKmMgGs]?)$")
def parse_int(string):
""" Parses an integer from a string. Supports suffixes """
try:
m = int_re.match(string)
except TypeError:
return int(string)
if not m: raise ValueError("%r is not an integer" % string)
base = int(m.group(1))
suffix = m.group(2).lower()
if not suffix:
return base
if suffix == 's':
return base * 512
if suffix == 'k':
return base * 1024
if suffix == 'm':
return base * 1024 * 1024
if suffix == 'g':
return base * 1024 * 1024 * 1024
raise ValueError("Unknown suffix '%r'" % suffix)
## A stub to allow for overriding later
Img_Info = pytsk3.Img_Info
def make_stat(meta):
""" Return a stat structure from TSK metadata struct """
meta_type_dispatcher = {
pytsk3.TSK_FS_META_TYPE_DIR: stat.S_IFDIR,
pytsk3.TSK_FS_META_TYPE_REG: stat.S_IFREG,
pytsk3.TSK_FS_META_TYPE_FIFO: stat.S_IFIFO,
pytsk3.TSK_FS_META_TYPE_CHR: stat.S_IFCHR,
pytsk3.TSK_FS_META_TYPE_LNK: stat.S_IFLNK,
pytsk3.TSK_FS_META_TYPE_BLK: stat.S_IFBLK,
}
s = fuse.Stat()
s.st_ino = meta.addr
s.st_dev = 0
s.st_nlink = meta.nlink
s.st_uid = meta.uid
s.st_gid = meta.gid
s.st_size = meta.size
s.st_atime = meta.atime
s.st_mtime = meta.mtime
s.st_ctime = meta.crtime
s.st_blocks = 2
s.st_rdev = 0
s.st_mode = meta_type_dispatcher.get(int(meta.type), 0)
s.st_mode |= int(meta.mode)
return s
class TSKFuse(Fuse):
""" A class that makes a filesystem appear in a fuse
filesystem. This is kind of like mounting it, but it uses the
sleuthkit.
"""
offset = '0'
def __init__(self, *args, **kw):
Fuse.__init__(self, *args, **kw)
def main(self):
options, args = self.parser.parse_args()
self.img = images.SelectImage(options.type, args)
self.offset = parse_int(options.offset)
self.fs = pytsk3.FS_Info(self.img, offset = self.offset)
## Prepare the file class - this will be used to read specific
## files:
self.file_class = self.TSKFuseFile
self.file_class.fs = self.fs
return Fuse.main(self)
def getattr(self, path):
try:
f = self.fs.open(path)
except RuntimeError: return None
s = make_stat(f.info.meta)
s.st_blksize = self.fs.info.block_size
return s
def readdir(self, path, offset):
for f in self.fs.open_dir(path):
try:
result = fuse.Direntry(f.info.name.name)
if f.info.meta.type == pytsk3.TSK_FS_META_TYPE_DIR:
result.type = stat.S_IFDIR
else:
result.type = stat.S_IFREG
except AttributeError: pass
yield result
def unlink(self, path):
pass
def rmdir(self, path):
pass
def symlink(self, path, path1):
pass
def rename(self, path, path1):
pass
def link(self, path, path1):
pass
def chmod(self, path, mode):
pass
def chown(self, path, user, group):
pass
def truncate(self, path, len):
pass
def mknod(self, path, mode, dev):
pass
def mkdir(self, path, mode):
pass
def utime(self, path, times):
pass
def access(self, path, mode):
pass
def statfs(self):
"""
Should return an object with statvfs attributes (f_bsize, f_frsize...).
Eg., the return value of os.statvfs() is such a thing (since py 2.2).
If you are not reusing an existing statvfs object, start with
fuse.StatVFS(), and define the attributes.
To provide usable information (ie., you want sensible df(1)
output, you are suggested to specify the following attributes:
- f_bsize - preferred size of file blocks, in bytes
- f_frsize - fundamental size of file blcoks, in bytes
[if you have no idea, use the same as blocksize]
- f_blocks - total number of blocks in the filesystem
- f_bfree - number of free blocks
- f_files - total number of file inodes
- f_ffree - nunber of free file inodes
"""
s=fuse.StatVfs()
info = self.fs.info
s.f_bsize = info.dev_bsize
s.f_frsize = 0
s.f_blocks = info.block_count
s.f_bfree = 0
s.f_files = info.inum_count
s.f_ffree = 0
return s
def fsinit(self):
pass
class TSKFuseFile(object):
""" This is a file created on the AFF4 universe """
direct_io = False
keep_cache = True
def __init__(self, path, flags, *mode):
self.path = path
try:
self.fd = self.fs.open(path = path)
except RuntimeError:
raise IOError("unable to open %s" % path)
def read(self, length, offset):
return self.fd.read_random(offset, length)
def _fflush(self):
pass
def fsync(self, isfsyncfile):
pass
def flush(self):
pass
def fgetattr(self):
s = make_stat(self.fd.info.meta)
s.st_blksize = self.fs.info.block_size
return s
def ftruncate(self, len):
pass
def write(self, *args, **kwargs):
return -EOPNOTSUPP
def lock(self, cmd, owner, **kw):
return -EOPNOTSUPP
def close(self):
self.fd.close()
def main():
global server
usage = """
Userspace tsk-fuse: mount a filesystem through fuse.
%prog [options] image_name mount_point
"""
server = TSKFuse(version="%prog " + fuse.__version__,
usage=usage,
dash_s_do='setsingle')
# Disable multithreading: if you want to use it, protect all method of
# XmlFile class with locks, in order to prevent race conditions
server.multithreaded = False
server.parser.add_option("-O", "--offset", default="0",
help="Offset of filesystem [default: %default]")
server.parser.add_option("-t", "--type", default="raw",
help="Type of image. Currently supported options 'raw', "
"'ewf'")
server.parse(values = server, errex=1)
## Try to fix up the mount point if it was given relative to the
## CWD
if server.fuse_args.mountpoint and not os.access(os.path.join("/",server.fuse_args.mountpoint), os.W_OK):
server.fuse_args.mountpoint = os.path.join(os.getcwd(), server.fuse_args.mountpoint)
server.main()
if __name__ == '__main__':
main()
|