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 # Touch a file corresponding to the new name of the LV; a separate
67 # daemon will handle wiping and deleting it.
68 open(os.path.join('/var/lib/invirt-remote/cleanup', new_lvname), 'w')
69 elif subcommand == "lvresize":
72 p = Popen(["/sbin/lvresize", "-L", size + "M", lvpath],
73 stdin=PIPE, stderr=PIPE)
76 if p.wait() != 0 and 'matches existing size' not in err:
77 print >> sys.stderr, "Error resizing LV %s:\n" %(lvname,)
78 print >> sys.stderr, err
80 print >> sys.stderr, err
81 elif subcommand == "lvrename":
82 newmachine = sys.argv[4]
83 newlvname = prefix + newmachine + "_" + disk
86 rv = call(["/sbin/lvrename", vg, lvname, newlvname])
88 print >>sys.stderr, "Error renaming LV %s\n" %(lvname,)
90 elif subcommand == "lvcreate":
92 rv = call(["/sbin/lvcreate", "-L", size + "M", "-n", lvname, vg])
94 print >>sys.stderr, "Error creating LV %s\n" %(lvname,)