2009-12-15 14:26:01 +00:00
|
|
|
#
|
2010-02-23 13:20:05 +00:00
|
|
|
# sysutils.py
|
2010-01-12 11:45:54 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This program 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.
|
|
|
|
#
|
|
|
|
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
# Red Hat Author(s): Martin Gracik <mgracik@redhat.com>
|
2009-12-15 14:26:01 +00:00
|
|
|
#
|
|
|
|
|
2010-11-16 11:25:05 +00:00
|
|
|
__all__ = ["joinpaths", "touch", "replace", "chown_", "chmod_",
|
2010-10-19 15:35:50 +00:00
|
|
|
"create_loop_dev", "remove_loop_dev",
|
2010-10-12 16:23:29 +00:00
|
|
|
"create_dm_dev", "remove_dm_dev"]
|
2010-02-23 13:20:05 +00:00
|
|
|
|
|
|
|
|
2009-12-15 14:26:01 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import re
|
2010-10-12 16:23:29 +00:00
|
|
|
import fileinput
|
2010-11-16 08:36:07 +00:00
|
|
|
import pwd
|
|
|
|
import grp
|
|
|
|
import glob
|
2010-10-12 16:23:29 +00:00
|
|
|
import subprocess
|
2009-12-15 14:26:01 +00:00
|
|
|
|
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
def joinpaths(*args, **kwargs):
|
|
|
|
path = os.path.sep.join(args)
|
2009-12-15 14:26:01 +00:00
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
if kwargs.get("follow_symlinks"):
|
|
|
|
return os.path.realpath(path)
|
2009-12-15 14:26:01 +00:00
|
|
|
else:
|
2010-10-12 16:23:29 +00:00
|
|
|
return path
|
2009-12-15 14:26:01 +00:00
|
|
|
|
|
|
|
|
2010-10-19 15:35:50 +00:00
|
|
|
def touch(fname):
|
|
|
|
with open(fname, "w") as fobj:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
def replace(fname, find, replace):
|
2010-02-23 13:20:05 +00:00
|
|
|
fin = fileinput.input(fname, inplace=1)
|
|
|
|
pattern = re.compile(find)
|
2009-12-15 14:26:01 +00:00
|
|
|
|
|
|
|
for line in fin:
|
2010-02-23 13:20:05 +00:00
|
|
|
line = pattern.sub(replace, line)
|
2009-12-15 14:26:01 +00:00
|
|
|
sys.stdout.write(line)
|
|
|
|
|
|
|
|
fin.close()
|
|
|
|
|
|
|
|
|
2010-11-16 08:36:07 +00:00
|
|
|
def chown_(path, user=None, group=None, recursive=False):
|
|
|
|
uid = gid = -1
|
|
|
|
|
|
|
|
if user is not None:
|
|
|
|
uid = pwd.getpwnam(user)[2]
|
|
|
|
if group is not None:
|
|
|
|
gid = grp.getgrnam(group)[2]
|
|
|
|
|
|
|
|
for fname in glob.iglob(path):
|
|
|
|
os.chown(fname, uid, gid)
|
|
|
|
|
|
|
|
if recursive and os.path.isdir(fname):
|
|
|
|
for nested in os.listdir(fname):
|
|
|
|
nested = joinpaths(fname, nested)
|
|
|
|
chown_(nested, user, group, recursive)
|
|
|
|
|
|
|
|
|
|
|
|
def chmod_(path, mode, recursive=False):
|
|
|
|
for fname in glob.iglob(path):
|
|
|
|
os.chmod(fname, mode)
|
|
|
|
|
|
|
|
if recursive and os.path.isdir(fname):
|
|
|
|
for nested in os.listdir(fname):
|
|
|
|
nested = joinpaths(fname, nested)
|
|
|
|
chmod_(nested, mode, recursive)
|
|
|
|
|
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
def create_loop_dev(fname):
|
|
|
|
cmd = ["losetup", "-f"]
|
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
|
|
|
|
rc = p.wait()
|
|
|
|
if not rc == 0:
|
|
|
|
return None
|
2009-12-15 14:26:01 +00:00
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
loopdev = p.stdout.read().strip()
|
2009-12-15 14:26:01 +00:00
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
cmd = ["losetup", loopdev, fname]
|
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
|
|
|
|
rc = p.wait()
|
|
|
|
if not rc == 0:
|
|
|
|
return None
|
2010-02-25 16:59:49 +00:00
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
return loopdev
|
2010-02-23 13:20:05 +00:00
|
|
|
|
2009-12-15 14:26:01 +00:00
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
def remove_loop_dev(dev):
|
|
|
|
cmd = ["losetup", "-d", dev]
|
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
|
|
|
|
rc = p.wait()
|
2009-12-15 14:26:01 +00:00
|
|
|
|
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
def create_dm_dev(name, size, loopdev):
|
|
|
|
table = '0 {0} linear {1} 0'.format(size, loopdev)
|
2009-12-15 14:26:01 +00:00
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
cmd = ["dmsetup", "create", name, "--table", table]
|
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
|
|
|
|
rc = p.wait()
|
|
|
|
if not rc == 0:
|
|
|
|
return None
|
2009-12-15 14:26:01 +00:00
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
return joinpaths("/dev/mapper", name)
|
2009-12-15 14:26:01 +00:00
|
|
|
|
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
def remove_dm_dev(dev):
|
|
|
|
cmd = ["dmsetup", "remove", dev]
|
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
|
|
|
|
rc = p.wait()
|