IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Преглед изворни кода

Selective unlocking and selective backups.

master
Stanislaw Adaszewski пре 4 година
родитељ
комит
1656857d00
3 измењених фајлова са 25 додато и 6 уклоњено
  1. +7
    -2
      focker/compose.py
  2. +11
    -3
      focker/jail.py
  3. +7
    -1
      focker/snapshot.py

+ 7
- 2
focker/compose.py Прегледај датотеку

@@ -16,12 +16,15 @@ from .zfs import AmbiguousValueError, \
zfs_set_props zfs_set_props
from .jail import jail_fs_create, \ from .jail import jail_fs_create, \
jail_create, \ jail_create, \
jail_remove
jail_remove, \
backup_file
from .misc import random_sha256_hexdigest, \ from .misc import random_sha256_hexdigest, \
find_prefix find_prefix
import subprocess import subprocess
import jailconf import jailconf
import os import os
from .misc import focker_lock, \
focker_unlock
def build_volumes(spec): def build_volumes(spec):
@@ -55,7 +58,9 @@ def build_images(spec, path, args):
os.path.join(path, focker_dir), '-t', tag] os.path.join(path, focker_dir), '-t', tag]
if args.squeeze: if args.squeeze:
cmd.append('--squeeze') cmd.append('--squeeze')
focker_unlock()
res = subprocess.run(cmd) res = subprocess.run(cmd)
focker_lock()
if res.returncode != 0: if res.returncode != 0:
raise RuntimeError('Image build failed: ' + str(res.returncode)) raise RuntimeError('Image build failed: ' + str(res.returncode))
@@ -65,6 +70,7 @@ def build_jails(spec):
# conf = jailconf.load('/etc/jail.conf') # conf = jailconf.load('/etc/jail.conf')
#else: #else:
# conf = jailconf.JailConf() # conf = jailconf.JailConf()
backup_file('/etc/jail.conf')
for (jailname, jailspec) in spec.items(): for (jailname, jailspec) in spec.items():
try: try:
name, _ = zfs_find(jailname, focker_type='jail') name, _ = zfs_find(jailname, focker_type='jail')
@@ -105,6 +111,5 @@ def command_compose_build(args):
build_jails(spec['jails']) build_jails(spec['jails'])
def command_compose_run(args): def command_compose_run(args):
raise NotImplementedError raise NotImplementedError

+ 11
- 3
focker/jail.py Прегледај датотеку

@@ -16,9 +16,11 @@ import jailconf
from .mount import getmntinfo from .mount import getmntinfo
import shlex import shlex
import stat import stat
from .misc import focker_lock, \
focker_unlock
def backup_file(fname, nbackups=10):
def backup_file(fname, nbackups=10, chmod=0o600):
existing_backups = [] existing_backups = []
for i in range(nbackups): for i in range(nbackups):
bakname = '%s.%d' % (fname, i) bakname = '%s.%d' % (fname, i)
@@ -27,17 +29,17 @@ def backup_file(fname, nbackups=10):
existing_backups.append((bakname, st.st_mtime)) existing_backups.append((bakname, st.st_mtime))
else: else:
shutil.copyfile(fname, bakname) shutil.copyfile(fname, bakname)
os.chmod(bakname, chmod)
return bakname return bakname
existing_backups.sort(key=lambda a: a[1]) existing_backups.sort(key=lambda a: a[1])
# overwrite the oldest # overwrite the oldest
bakname = existing_backups[0][0] bakname = existing_backups[0][0]
shutil.copyfile(fname, bakname) shutil.copyfile(fname, bakname)
os.chmod(bakname, chmod)
return bakname return bakname
def jail_conf_write(conf): def jail_conf_write(conf):
bakname = backup_file('/etc/jail.conf')
os.chmod(bakname, 0o600)
conf.write('/etc/jail.conf') conf.write('/etc/jail.conf')
@@ -201,6 +203,7 @@ def jail_remove(path):
def command_jail_create(args): def command_jail_create(args):
backup_file('/etc/jail.conf')
name = jail_fs_create(args.image) name = jail_fs_create(args.image)
if args.tags: if args.tags:
zfs_tag(name, args.tags) zfs_tag(name, args.tags)
@@ -238,17 +241,22 @@ def command_jail_exec(args):
name, _ = zfs_find(args.reference, focker_type='jail') name, _ = zfs_find(args.reference, focker_type='jail')
path = zfs_mountpoint(name) path = zfs_mountpoint(name)
jid = get_jid(path) jid = get_jid(path)
focker_unlock()
subprocess.run(['jexec', str(jid)] + args.command) subprocess.run(['jexec', str(jid)] + args.command)
focker_lock()
def jail_oneshot(image, command, env, mounts): def jail_oneshot(image, command, env, mounts):
# pdb.set_trace() # pdb.set_trace()
backup_file('/etc/jail.conf')
name = jail_fs_create(image) name = jail_fs_create(image)
path = zfs_mountpoint(name) path = zfs_mountpoint(name)
jailname = jail_create(path, jailname = jail_create(path,
' '.join(map(shlex.quote, command or ['/bin/sh'])), ' '.join(map(shlex.quote, command or ['/bin/sh'])),
env, mounts) env, mounts)
focker_unlock()
subprocess.run(['jail', '-c', jailname]) subprocess.run(['jail', '-c', jailname])
focker_lock()
jail_remove(path) jail_remove(path)


+ 7
- 1
focker/snapshot.py Прегледај датотеку

@@ -6,6 +6,8 @@
# #
from .zfs import * from .zfs import *
from .misc import focker_lock, \
focker_unlock
def new_snapshot(base, fun, name): def new_snapshot(base, fun, name):
@@ -17,7 +19,11 @@ def new_snapshot(base, fun, name):
name = root + '/' + name name = root + '/' + name
zfs_run(['zfs', 'clone', base, name]) zfs_run(['zfs', 'clone', base, name])
try: try:
fun()
try:
focker_unlock()
fun()
finally:
focker_lock()
zfs_run(['zfs', 'set', 'readonly=on', name]) zfs_run(['zfs', 'set', 'readonly=on', name])
snap_name = name + '@1' snap_name = name + '@1'
zfs_run(['zfs', 'snapshot', snap_name]) zfs_run(['zfs', 'snapshot', snap_name])


Loading…
Откажи
Сачувај