8 from subprocess import call, PIPE, Popen
9 from invirt.config import structs as config
18 subcommand = sys.argv[1]
20 def ensureoff(machine):
21 # Make sure the machine is off, but we don't care about errors if it is already off.
22 rv = call(["/usr/sbin/xm", "destroy", prefix + machine],
25 if subcommand == "lvcreate-all":
26 from invirt import database
29 for d in Disk.select():
30 check(re.match('^[A-Za-z0-9]+$', d.guest_device_name))
31 machine = Machine.get(d.machine_id)
32 check(re.match('^[A-Za-z0-9][A-Za-z0-9._-]*$', machine.name))
33 lvname = prefix + machine.name + "_" + d.guest_device_name
34 if not os.path.exists("/dev/%s/%s" % (vg, lvname)):
36 print >>sys.stderr, "Creating LV %s..." % (lvname,)
37 rv = call(["/sbin/lvcreate", "-L", str(d.size) + "M", "-n", lvname, vg])
39 print >>sys.stderr, "Error creating LV %s\n" %(lvname,)
44 lvname = prefix + machine + "_" + disk
45 lvpath = "/dev/" + vg + "/" + lvname
46 if subcommand == "lvremove":
48 print >>sys.stderr, "Error removing LV %s\n" % lvname
51 # Rename the LV to something else so we can wipe it before reusing
54 new_lvname = "old_%s_%s" % (lvname, ''.join(random.choice(string.ascii_letters) for i in xrange(6)))
55 new_lvpath = "/dev/%s/%s" % (vg, new_lvname)
56 p = Popen(["/sbin/lvrename", lvpath, new_lvpath], stdout=PIPE, stderr=PIPE)
58 if rv == 5 and 'already exists in volume group' in p.stderr.read():
66 # Fork. The child process wipes the LV and then deletes
67 # it. There's not really anything sane to do with errors (since
68 # this is running non-interactively), so let's just drop them on
71 call(["/bin/dd", "if=/dev/zero", "of=%s" % new_lvpath])
72 call(["/sbin/lvchange", "-a", "n", new_lvpath])
73 call(["/sbin/lvchange", "-a", "ey", new_lvpath])
74 call(["/sbin/lvremove", "--force", new_lvpath])
75 elif subcommand == "lvresize":
78 p = Popen(["/sbin/lvresize", "-L", size + "M", lvpath],
79 stdin=PIPE, stderr=PIPE)
82 if p.wait() != 0 and 'matches existing size' not in err:
83 print >> sys.stderr, "Error resizing LV %s:\n" %(lvname,)
84 print >> sys.stderr, err
86 print >> sys.stderr, err
87 elif subcommand == "lvrename":
88 newmachine = sys.argv[4]
89 newlvname = prefix + newmachine + "_" + disk
92 rv = call(["/sbin/lvrename", vg, lvname, newlvname])
94 print >>sys.stderr, "Error renaming LV %s\n" %(lvname,)
96 elif subcommand == "lvcreate":
98 rv = call(["/sbin/lvcreate", "-L", size + "M", "-n", lvname, vg])
100 print >>sys.stderr, "Error creating LV %s\n" %(lvname,)