Rewrite to use ansible.
[mclu.git] / mclu_migrate.py
1 #!/usr/bin/python
2 # mclu (mini cluster)
3 # Copyright (C) 2014 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19 import argparse
20 import fnmatch
21 import re
22 import sys
23 import libvirt
24
25 import lib
26
27 def cmdline (subparsers):
28     p = subparsers.add_parser (
29         'migrate',
30         help='live migrate virtual machine(s)',
31     )
32     p.add_argument (
33         'wildcards', nargs='+',
34         help='virtual machine(s) to be migrated'
35     )
36     p.add_argument (
37         'dest',
38         help='destination node'
39     )
40     p.set_defaults (run=run)
41
42 def run (c, args):
43     running, _ = lib.get_all_guests (c)
44
45     # Identify the VMs to be migrated.
46     migrate_vms = []
47     for vm in running.values():
48         node_name = vm['node']
49         vm_name = vm['vm']
50         # Form the name of this VM (eg. "ham0:vm") so we can match it
51         # against the wildcards (eg. "ham0:*")
52         name = node_name + ":" + vm_name
53         for wc in args.wildcards:
54             if fnmatch.fnmatch (name, wc) or fnmatch.fnmatch (vm_name, wc):
55                 migrate_vms.append (vm)
56
57     if not migrate_vms:
58         sys.exit ("error: no VMs are going to be migrated")
59
60     # Get destination node.  It can be written either 'dest' or 'dest:'
61     m = re.match (r'(.*):$', args.dest)
62     if m:
63         dest = m.group (1)
64     else:
65         dest = args.dest
66
67     dconn = libvirt.open (lib.uri_of_node (dest))
68     if dconn == None:
69         sys.exit ("error: could not open a libvirt connection to %s" % dest)
70
71     for vm in migrate_vms:
72         sconn = libvirt.open (lib.uri_of_node (vm['node']))
73         if sconn == None:
74             sys.exit ("error: could not open a libvirt connection to %s" %
75                       vm['node'])
76         dom = sconn.lookupByName (vm['vm'])
77         dom.migrate (dconn, libvirt.VIR_MIGRATE_LIVE)