2014-04-27 22:43:14 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-05-01 19:32:30 +02:00
|
|
|
from fuse import FUSE, FuseOSError, Operations
|
2014-05-01 18:59:51 +02:00
|
|
|
import errno
|
2014-04-27 22:43:14 +02:00
|
|
|
import stat
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import logging
|
|
|
|
import struct
|
|
|
|
import time
|
|
|
|
from cStringIO import StringIO
|
2014-05-05 19:47:20 +02:00
|
|
|
import gpgstore
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
magic = 'GPGFS1\n'
|
|
|
|
|
2014-05-05 19:47:20 +02:00
|
|
|
log = logging.getLogger('gpgfs')
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
class Entry:
|
|
|
|
'''
|
|
|
|
Filesystem object, either file or directory.
|
|
|
|
'''
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
for k,v in kwargs.iteritems():
|
|
|
|
setattr(self, k, v)
|
|
|
|
|
|
|
|
# entry types:
|
|
|
|
ENT_FILE = 0
|
|
|
|
ENT_DIR = 1
|
|
|
|
|
2014-05-05 19:47:20 +02:00
|
|
|
def read_index(store, path):
|
|
|
|
data = store.get(path)
|
2014-04-27 22:43:14 +02:00
|
|
|
buf = StringIO(data)
|
|
|
|
if buf.read(len(magic)) != magic:
|
|
|
|
raise IOError, 'index parse error: %s' % path
|
|
|
|
read_atom(buf)
|
|
|
|
root = Entry(**read_dict(buf))
|
|
|
|
return root
|
|
|
|
|
2014-05-05 19:47:20 +02:00
|
|
|
def write_index(store, path, root):
|
2014-04-27 22:43:14 +02:00
|
|
|
buf = StringIO()
|
|
|
|
buf.write(magic)
|
|
|
|
header = ''
|
|
|
|
write_atom(buf, header)
|
|
|
|
write_dict(buf, root)
|
2014-05-05 19:47:20 +02:00
|
|
|
store.put(buf.getvalue(), path=path)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def write_dict(fd, dct):
|
|
|
|
# breadth-first
|
|
|
|
children = []
|
|
|
|
buf = StringIO()
|
|
|
|
if not isinstance(dct, dict):
|
|
|
|
dct = dct.__dict__
|
|
|
|
for key in dct:
|
|
|
|
write_atom(buf, key.encode('utf8'))
|
|
|
|
val = dct[key]
|
|
|
|
if isinstance(val, dict):
|
|
|
|
buf.write('D')
|
|
|
|
children.append(val)
|
|
|
|
elif isinstance(val, Entry):
|
|
|
|
buf.write('E')
|
|
|
|
children.append(val)
|
2014-04-29 22:58:54 +02:00
|
|
|
elif isinstance(val, (int, long)):
|
2014-04-27 22:43:14 +02:00
|
|
|
buf.write('I')
|
|
|
|
buf.write(struct.pack('<I', val))
|
|
|
|
elif isinstance(val, str):
|
|
|
|
buf.write('S')
|
|
|
|
write_atom(buf, val)
|
|
|
|
elif isinstance(val, unicode):
|
|
|
|
buf.write('U')
|
|
|
|
write_atom(buf, val.encode('utf8'))
|
|
|
|
else:
|
2014-04-29 22:58:54 +02:00
|
|
|
raise TypeError, type(val)
|
2014-04-27 22:43:14 +02:00
|
|
|
write_atom(fd, buf.getvalue())
|
|
|
|
for c in children:
|
|
|
|
write_dict(fd, c)
|
|
|
|
|
|
|
|
def read_dict(fd):
|
|
|
|
dct = {}
|
|
|
|
buf = read_atom(fd)
|
|
|
|
buflen = len(buf)
|
|
|
|
buf = StringIO(buf)
|
|
|
|
while buf.tell() < buflen:
|
|
|
|
key = read_atom(buf).decode('utf8')
|
|
|
|
tag = buf.read(1)
|
|
|
|
if tag == 'D': val = read_dict(fd)
|
|
|
|
elif tag == 'E': val = Entry(**read_dict(fd))
|
|
|
|
elif tag == 'I': val = struct.unpack('<I', buf.read(4))[0]
|
|
|
|
elif tag == 'S': val = read_atom(buf)
|
|
|
|
elif tag == 'U': val = read_atom(buf).decode('utf8')
|
|
|
|
else: raise TypeError, tag
|
|
|
|
dct[key] = val
|
|
|
|
return dct
|
|
|
|
|
|
|
|
def write_atom(fd, atom):
|
|
|
|
assert isinstance(atom, str)
|
|
|
|
fd.write(struct.pack('<I', len(atom)))
|
|
|
|
fd.write(atom)
|
|
|
|
|
|
|
|
def read_atom(fd):
|
|
|
|
return fd.read(struct.unpack('<I', fd.read(4))[0])
|
|
|
|
|
|
|
|
class LoggingMixIn:
|
|
|
|
|
|
|
|
def __call__(self, op, path, *args):
|
|
|
|
if op=='write':
|
|
|
|
atxt = ' '.join([repr(args[0])[:10], repr(args[1]), repr(args[2])])
|
|
|
|
else:
|
|
|
|
atxt = ' '.join(map(repr, args))
|
2014-04-29 21:14:42 +02:00
|
|
|
log.debug('-> %s %s %s', op, repr(path), atxt)
|
2014-04-27 22:43:14 +02:00
|
|
|
ret = '[Unhandled Exception]'
|
|
|
|
try:
|
|
|
|
ret = getattr(self, op)(path, *args)
|
|
|
|
return ret
|
|
|
|
except OSError, e:
|
|
|
|
ret = str(e)
|
|
|
|
raise
|
|
|
|
finally:
|
|
|
|
rtxt = repr(ret)
|
|
|
|
if op=='read':
|
|
|
|
rtxt = rtxt[:10]
|
2014-04-29 21:14:42 +02:00
|
|
|
log.debug('<- %s %s', op, rtxt)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
2014-05-01 19:32:30 +02:00
|
|
|
class GpgFs(LoggingMixIn, Operations):
|
|
|
|
#class GpgFs(Operations):
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def __init__(self, encroot, keyid):
|
|
|
|
'''
|
|
|
|
:param encroot: Encrypted root directory
|
|
|
|
'''
|
2014-05-01 19:32:30 +02:00
|
|
|
self.encroot = encroot.rstrip('/')
|
|
|
|
assert os.path.exists(self.encroot)
|
|
|
|
assert os.path.isdir(self.encroot)
|
2014-04-27 22:43:14 +02:00
|
|
|
#self.cache = cache
|
2014-05-05 19:47:20 +02:00
|
|
|
self.store = gpgstore.GpgStore(self.encroot, keyid)
|
|
|
|
self.index_path = 'index'
|
|
|
|
if os.path.exists(self.encroot + '/' + self.index_path):
|
|
|
|
self.root = read_index(self.store, self.index_path)
|
2014-04-27 22:43:14 +02:00
|
|
|
else:
|
|
|
|
self.root = Entry(type=ENT_DIR, children={},
|
2014-04-29 22:58:54 +02:00
|
|
|
st_mode=0755,
|
2014-04-27 22:43:14 +02:00
|
|
|
st_mtime=int(time.time()),
|
|
|
|
st_ctime=int(time.time()))
|
|
|
|
self._write_index()
|
2014-04-29 21:14:42 +02:00
|
|
|
log.info('created %s', self.index_path)
|
2014-04-27 22:43:14 +02:00
|
|
|
self.fd = 0
|
2014-04-29 22:58:54 +02:00
|
|
|
self._clear_write_cache()
|
2014-04-27 22:43:14 +02:00
|
|
|
|
2014-05-05 19:47:20 +02:00
|
|
|
def _write_index(self):
|
|
|
|
write_index(self.store, self.index_path, self.root)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def _find(self, path, parent=False):
|
|
|
|
assert path.startswith('/')
|
|
|
|
if path == '/':
|
|
|
|
return self.root
|
|
|
|
node = self.root
|
|
|
|
path = path[1:].split('/')
|
|
|
|
if parent:
|
2014-05-01 19:32:30 +02:00
|
|
|
basename = path[-1]
|
2014-04-27 22:43:14 +02:00
|
|
|
path = path[:-1]
|
|
|
|
for name in path:
|
2014-05-01 19:32:30 +02:00
|
|
|
if name not in node.children:
|
|
|
|
raise FuseOSError(errno.ENOENT)
|
2014-04-27 22:43:14 +02:00
|
|
|
node = node.children[name]
|
2014-05-01 19:32:30 +02:00
|
|
|
if parent:
|
|
|
|
return node, basename
|
2014-04-27 22:43:14 +02:00
|
|
|
return node
|
|
|
|
|
2014-04-29 22:58:54 +02:00
|
|
|
def _clear_write_cache(self):
|
|
|
|
self.write_path = None
|
|
|
|
self.write_buf = []
|
|
|
|
self.write_len = 0
|
|
|
|
self.write_dirty = False
|
|
|
|
|
2014-04-27 22:43:14 +02:00
|
|
|
def chmod(self, path, mode):
|
2014-04-29 22:58:54 +02:00
|
|
|
# sanitize mode (clear setuid/gid/sticky bits)
|
|
|
|
mode &= 0777
|
|
|
|
ent = self._find(path)
|
|
|
|
if ent.type == ENT_DIR:
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_mode = ent.st_mode
|
2014-04-29 22:58:54 +02:00
|
|
|
ent.st_mode = mode
|
2014-05-01 21:22:00 +02:00
|
|
|
try:
|
|
|
|
self._write_index()
|
|
|
|
except:
|
|
|
|
ent.st_mode = prev_mode
|
|
|
|
raise
|
2014-04-29 22:58:54 +02:00
|
|
|
else:
|
|
|
|
encpath = self.encroot + '/' + ent.path
|
|
|
|
os.chmod(encpath, mode)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def chown(self, path, uid, gid):
|
2014-05-01 19:32:30 +02:00
|
|
|
raise FuseOSError(errno.ENOSYS)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def create(self, path, mode):
|
2014-05-01 19:32:30 +02:00
|
|
|
dir, path = self._find(path, parent=True)
|
|
|
|
if path in dir.children:
|
|
|
|
raise FuseOSError(errno.EEXIST)
|
2014-05-05 19:47:20 +02:00
|
|
|
# FIXME mode
|
|
|
|
encpath = self.store.put('')
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_mtime = dir.st_mtime
|
|
|
|
dir.children[path] = Entry(type=ENT_FILE, path=encpath, st_size=0)
|
|
|
|
log.debug('new path %s => %s', path, encpath)
|
2014-05-01 19:36:27 +02:00
|
|
|
dir.st_mtime = int(time.time())
|
2014-05-01 21:22:00 +02:00
|
|
|
try:
|
|
|
|
self._write_index()
|
|
|
|
except:
|
2014-05-05 19:47:20 +02:00
|
|
|
try: self.store.delete(encpath)
|
2014-05-01 21:22:00 +02:00
|
|
|
except: pass
|
|
|
|
del dir.children[path]
|
|
|
|
dir.st_mtime = prev_mtime
|
|
|
|
raise
|
2014-04-27 22:43:14 +02:00
|
|
|
self.fd += 1
|
|
|
|
return self.fd
|
|
|
|
|
|
|
|
def flush(self, path, fh):
|
2014-04-29 22:58:54 +02:00
|
|
|
if not self.write_dirty:
|
|
|
|
log.debug('nothing to flush')
|
2014-04-27 22:43:14 +02:00
|
|
|
return 0
|
|
|
|
buf = ''.join(self.write_buf)
|
|
|
|
self.write_buf = [buf]
|
2014-05-05 19:47:20 +02:00
|
|
|
ent = self._find(self.write_path)
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_size = ent.st_size
|
2014-05-05 19:47:20 +02:00
|
|
|
prev_path = ent.path
|
2014-05-01 21:22:00 +02:00
|
|
|
ent.st_size = len(buf)
|
2014-05-05 19:47:20 +02:00
|
|
|
ent.path = self.store.put(buf)
|
2014-05-01 21:22:00 +02:00
|
|
|
try:
|
2014-05-05 19:47:20 +02:00
|
|
|
self._write_index()
|
2014-05-01 21:22:00 +02:00
|
|
|
except:
|
2014-05-05 19:47:20 +02:00
|
|
|
self.store.delete(ent.path)
|
2014-05-01 21:22:00 +02:00
|
|
|
ent.st_size = prev_size
|
2014-05-05 19:47:20 +02:00
|
|
|
ent.path = prev_path
|
2014-05-01 21:22:00 +02:00
|
|
|
raise
|
2014-05-05 19:47:20 +02:00
|
|
|
self.store.delete(prev_path)
|
2014-04-27 22:43:14 +02:00
|
|
|
self.write_dirty = False
|
2014-04-29 22:58:54 +02:00
|
|
|
log.debug('flushed %d bytes to %s', len(buf), self.write_path)
|
2014-04-27 22:43:14 +02:00
|
|
|
return 0
|
|
|
|
|
2014-05-05 19:47:20 +02:00
|
|
|
def fsync(self, path, datasync, fh):
|
|
|
|
self.flush(path, fh)
|
|
|
|
return 0
|
|
|
|
|
2014-04-27 22:43:14 +02:00
|
|
|
def getattr(self, path, fh = None):
|
2014-05-01 19:32:30 +02:00
|
|
|
ent = self._find(path)
|
2014-04-27 22:43:14 +02:00
|
|
|
if ent.type == ENT_DIR:
|
2014-05-02 20:34:32 +02:00
|
|
|
return dict(st_mode = stat.S_IFDIR | ent.st_mode,
|
|
|
|
st_size = len(ent.children),
|
2014-04-27 22:43:14 +02:00
|
|
|
st_ctime = ent.st_ctime, st_mtime = ent.st_mtime,
|
|
|
|
st_atime = 0, st_nlink = 3)
|
2014-04-29 22:58:54 +02:00
|
|
|
# ensure st_size is up-to-date
|
|
|
|
self.flush(path, 0)
|
2014-04-27 22:43:14 +02:00
|
|
|
encpath = self.encroot + '/' + ent.path
|
|
|
|
s = os.stat(encpath)
|
|
|
|
return dict(st_mode = s.st_mode, st_size = ent.st_size,
|
|
|
|
st_atime = s.st_atime, st_mtime = s.st_mtime,
|
|
|
|
st_ctime = s.st_ctime, st_nlink = s.st_nlink)
|
|
|
|
|
|
|
|
def getxattr(self, path, name, position = 0):
|
2014-05-01 19:32:30 +02:00
|
|
|
raise FuseOSError(errno.ENODATA) # ENOATTR
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def listxattr(self, path):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def mkdir(self, path, mode):
|
2014-05-01 19:32:30 +02:00
|
|
|
dir, path = self._find(path, parent=True)
|
|
|
|
if path in dir.children:
|
|
|
|
raise FuseOSError(errno.EEXIST)
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_mtime = dir.st_mtime
|
2014-04-27 22:43:14 +02:00
|
|
|
dir.children[path] = Entry(type=ENT_DIR, children={},
|
2014-04-29 22:58:54 +02:00
|
|
|
st_mode=(mode & 0777),
|
2014-04-27 22:43:14 +02:00
|
|
|
st_mtime=int(time.time()),
|
|
|
|
st_ctime=int(time.time()))
|
2014-05-01 19:36:27 +02:00
|
|
|
dir.st_mtime = int(time.time())
|
2014-05-01 21:22:00 +02:00
|
|
|
try:
|
|
|
|
self._write_index()
|
|
|
|
except:
|
|
|
|
del dir.children[path]
|
|
|
|
dir.st_mtime = prev_mtime
|
|
|
|
raise
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def open(self, path, flags):
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def read(self, path, size, offset, fh):
|
2014-04-29 22:58:54 +02:00
|
|
|
self.flush(path, 0)
|
2014-04-27 22:43:14 +02:00
|
|
|
ent = self._find(path)
|
|
|
|
assert ent.type == ENT_FILE
|
2014-05-05 19:47:20 +02:00
|
|
|
data = self.store.get(ent.path)
|
2014-04-27 22:43:14 +02:00
|
|
|
return data[offset:offset + size]
|
|
|
|
|
|
|
|
def readdir(self, path, fh):
|
|
|
|
dir = self._find(path)
|
|
|
|
return ['.', '..'] + list(dir.children)
|
|
|
|
|
|
|
|
def readlink(self, path):
|
2014-05-01 19:32:30 +02:00
|
|
|
raise FuseOSError(errno.ENOSYS)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def removexattr(self, path, name):
|
2014-05-01 19:32:30 +02:00
|
|
|
raise FuseOSError(errno.ENOSYS)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def rename(self, old, new):
|
2014-04-29 22:58:54 +02:00
|
|
|
self.flush(old, 0)
|
|
|
|
self._clear_write_cache()
|
2014-05-02 20:23:11 +02:00
|
|
|
if new.startswith(old):
|
|
|
|
raise FuseOSError(errno.EINVAL)
|
2014-05-01 19:32:30 +02:00
|
|
|
old_dir, old_name = self._find(old, parent=True)
|
|
|
|
if old_name not in old_dir.children:
|
|
|
|
raise FuseOSError(errno.ENOENT)
|
|
|
|
new_dir, new_name = self._find(new, parent=True)
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_ent = new_dir.children.get(new_name)
|
2014-05-02 20:23:11 +02:00
|
|
|
if prev_ent:
|
|
|
|
if prev_ent.type == ENT_DIR:
|
|
|
|
if old_dir[old_name].type != ENT_DIR:
|
|
|
|
raise FuseOSError(errno.EISDIR)
|
|
|
|
if prev_ent.children:
|
|
|
|
raise FuseOSError(errno.ENOTEMPTY)
|
|
|
|
elif old_dir[old_name].type == ENT_DIR:
|
|
|
|
raise FuseOSError(errno.ENOTDIR)
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_old_mtime = old_dir.st_mtime
|
|
|
|
prev_new_mtime = new_dir.st_mtime
|
2014-04-29 22:58:54 +02:00
|
|
|
new_dir.children[new_name] = old_dir.children.pop(old_name)
|
2014-05-01 19:36:27 +02:00
|
|
|
old_dir.st_mtime = new_dir.st_mtime = int(time.time())
|
2014-05-01 21:22:00 +02:00
|
|
|
try:
|
|
|
|
self._write_index()
|
|
|
|
except:
|
|
|
|
old_dir.children[old_name] = new_dir.children.pop(new_name)
|
|
|
|
if prev_ent:
|
|
|
|
new_dir.children[new_name] = prev_ent
|
|
|
|
old_dir.st_mtime = prev_old_mtime
|
|
|
|
new_dir.st_mtime = prev_new_mtime
|
|
|
|
raise
|
|
|
|
if prev_ent and prev_ent.type == ENT_FILE:
|
|
|
|
os.remove(self.encroot + '/' + prev_ent.path)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def rmdir(self, path):
|
2014-05-01 19:32:30 +02:00
|
|
|
parent, path = self._find(path, parent=True)
|
|
|
|
if path not in parent.children:
|
|
|
|
raise FuseOSError(errno.ENOENT)
|
2014-05-01 18:59:51 +02:00
|
|
|
ent = parent.children[path]
|
|
|
|
if ent.type != ENT_DIR:
|
2014-05-01 19:32:30 +02:00
|
|
|
raise FuseOSError(errno.ENOTDIR)
|
2014-05-01 18:59:51 +02:00
|
|
|
if ent.children:
|
2014-05-01 19:32:30 +02:00
|
|
|
raise FuseOSError(errno.ENOTEMPTY)
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_mtime = parent.st_mtime
|
2014-05-01 18:59:51 +02:00
|
|
|
del parent.children[path]
|
2014-05-01 19:36:27 +02:00
|
|
|
parent.st_mtime = int(time.time())
|
2014-05-01 21:22:00 +02:00
|
|
|
try:
|
|
|
|
self._write_index()
|
|
|
|
except:
|
|
|
|
parent.children[path] = ent
|
|
|
|
parent.st_mtime = prev_mtime
|
|
|
|
raise
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def setxattr(self, path, name, value, options, position = 0):
|
2014-05-01 19:32:30 +02:00
|
|
|
raise FuseOSError(errno.ENOSYS)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def statfs(self, path):
|
2014-05-01 19:32:30 +02:00
|
|
|
raise FuseOSError(errno.ENOSYS)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def symlink(self, target, source):
|
2014-05-01 19:32:30 +02:00
|
|
|
raise FuseOSError(errno.ENOSYS)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def truncate(self, path, length, fh = None):
|
2014-04-29 22:58:54 +02:00
|
|
|
self.flush(path, 0)
|
|
|
|
self._clear_write_cache()
|
|
|
|
ent = self._find(path)
|
|
|
|
if length == 0:
|
2014-05-05 19:47:20 +02:00
|
|
|
buf = ''
|
2014-04-29 22:58:54 +02:00
|
|
|
else:
|
2014-05-05 19:47:20 +02:00
|
|
|
buf = self.store.get(ent.path)
|
2014-04-29 22:58:54 +02:00
|
|
|
buf = buf[:length]
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_size = ent.st_size
|
2014-05-05 19:47:20 +02:00
|
|
|
prev_path = ent.path
|
2014-04-29 22:58:54 +02:00
|
|
|
ent.st_size = length
|
2014-05-05 19:47:20 +02:00
|
|
|
ent.path = self.store.put(buf)
|
2014-05-01 21:22:00 +02:00
|
|
|
try:
|
2014-05-05 19:47:20 +02:00
|
|
|
self._write_index()
|
2014-05-01 21:22:00 +02:00
|
|
|
except:
|
2014-05-05 19:47:20 +02:00
|
|
|
os.remove(ent.path)
|
2014-05-01 21:22:00 +02:00
|
|
|
ent.st_size = prev_size
|
2014-05-05 19:47:20 +02:00
|
|
|
ent.path = prev_path
|
2014-05-01 21:22:00 +02:00
|
|
|
raise
|
2014-05-05 19:47:20 +02:00
|
|
|
self.store.delete(prev_path)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
2014-04-29 22:58:54 +02:00
|
|
|
def unlink(self, path):
|
|
|
|
if self.write_path == path:
|
|
|
|
# no need to flush afterwards
|
|
|
|
self._clear_write_cache()
|
2014-05-01 19:32:30 +02:00
|
|
|
dir, name = self._find(path, parent=True)
|
|
|
|
if name not in dir.children:
|
|
|
|
raise FuseOSError(errno.ENOENT)
|
2014-05-01 21:22:00 +02:00
|
|
|
ent = dir.children[name]
|
|
|
|
encpath = self.encroot + '/' + ent.path
|
2014-04-29 22:58:54 +02:00
|
|
|
del dir.children[name]
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_mtime = dir.st_mtime
|
2014-05-01 19:36:27 +02:00
|
|
|
dir.st_mtime = int(time.time())
|
2014-05-01 21:22:00 +02:00
|
|
|
try:
|
|
|
|
self._write_index()
|
|
|
|
except:
|
|
|
|
dir.children[name] = ent
|
|
|
|
dir.st_mtime = prev_mtime
|
|
|
|
raise
|
|
|
|
os.remove(encpath)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def utimens(self, path, times = None):
|
2014-04-29 22:58:54 +02:00
|
|
|
ent = self._find(path)
|
|
|
|
if ent.type == ENT_DIR:
|
2014-05-01 21:22:00 +02:00
|
|
|
prev_mtime = ent.st_mtime
|
2014-04-29 22:58:54 +02:00
|
|
|
if times is None:
|
|
|
|
ent.st_mtime = int(time.time())
|
|
|
|
else:
|
|
|
|
ent.st_mtime = times[1]
|
2014-05-01 21:22:00 +02:00
|
|
|
try:
|
|
|
|
self._write_index()
|
|
|
|
except:
|
|
|
|
ent.st_mtime = prev_mtime
|
|
|
|
raise
|
2014-04-29 22:58:54 +02:00
|
|
|
else:
|
|
|
|
# flush may mess with mtime
|
|
|
|
self.flush(path, 0)
|
|
|
|
encpath = self.encroot + '/' + ent.path
|
|
|
|
os.utime(encpath, times)
|
2014-04-27 22:43:14 +02:00
|
|
|
|
|
|
|
def write(self, path, data, offset, fh):
|
|
|
|
ent = self._find(path)
|
|
|
|
if path != self.write_path:
|
|
|
|
self.flush(self.write_path, None)
|
2014-05-05 19:47:20 +02:00
|
|
|
buf = self.store.get(ent.path)
|
2014-04-27 22:43:14 +02:00
|
|
|
self.write_buf = [buf]
|
2014-04-29 22:58:54 +02:00
|
|
|
self.write_len = len(buf)
|
2014-04-27 22:43:14 +02:00
|
|
|
self.write_path = path
|
2014-04-29 22:58:54 +02:00
|
|
|
if offset == self.write_len:
|
2014-04-27 22:43:14 +02:00
|
|
|
self.write_buf.append(data)
|
2014-04-29 22:58:54 +02:00
|
|
|
self.write_len += len(data)
|
2014-04-27 22:43:14 +02:00
|
|
|
else:
|
|
|
|
buf = ''.join(self.write_buf)
|
|
|
|
buf = buf[:offset] + data + buf[offset + len(data):]
|
|
|
|
self.write_buf = [buf]
|
2014-04-29 22:58:54 +02:00
|
|
|
self.write_len = len(buf)
|
2014-04-27 22:43:14 +02:00
|
|
|
self.write_dirty = True
|
|
|
|
return len(data)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if len(sys.argv) != 4:
|
|
|
|
sys.stderr.write('Usage: gpgfs <gpg_keyid> <encrypted_root> <mountpoint>\n')
|
|
|
|
sys.exit(1)
|
2014-04-29 21:14:42 +02:00
|
|
|
logpath = os.path.join(os.path.dirname(__file__), 'gpgfs.log')
|
|
|
|
log.addHandler(logging.FileHandler(logpath, 'w'))
|
|
|
|
log.setLevel(logging.DEBUG)
|
2014-04-27 22:43:14 +02:00
|
|
|
fs = GpgFs(sys.argv[2], sys.argv[1])
|
2014-05-01 19:32:30 +02:00
|
|
|
FUSE(fs, sys.argv[3], foreground=True)
|