This repository has been archived by the owner on Apr 16, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
vm.py
executable file
·401 lines (347 loc) · 18 KB
/
vm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
#!/usr/bin/env python
###############################################################################
#
# SageMathCloud: A collaborative web-based interface to Sage, IPython, LaTeX and the Terminal.
#
# Copyright (C) 2014, William Stein
#
# 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 3 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/>.
#
###############################################################################
"""
vm.py -- create and run a virtual machine based on the standard
salvus_base template with the given memory and vcpus, and add
the vm to our tinc VPN. Also, there is a stop option that destroys
the vm, removes the tinc auth, etc. and the temporary
image file associated with it is deleted.
"""
#######################################################################
# Copyright (c) William Stein, 2012, 2013, 2014. Not open source or free.
#######################################################################
import logging, os, shutil, socket, tempfile, time
from vm_gce import cmd
from admin import run
import admin
sh = admin.SH(maxtime=600)
conf_path = os.path.join(os.path.split(os.path.realpath(__file__))[0], 'conf')
###########################################
# kvm -- via libvirt
###########################################
qemu="system"
# qemu="session"
def virsh(command, name):
return run(['virsh', '--connect', 'qemu:///%s'%qemu, command, name], verbose=False, maxtime=600).strip()
def get_local_address(host, maxtime=120):
t = time.time()
while time.time()-t < maxtime:
addr = os.popen('kvm_addresses.py %s'%host).read().strip()
if addr:
return addr
log.info("waiting for %s to boot up so we can get ethernet address...", host)
time.sleep(1)
raise RuntimeError("unable to determine address")
def ssh(name, command, user='salvus', maxtries=10):
"""
ssh from the host (running this script) into vm with given name
running on the local machine and run the given command, returning
the output.
"""
address = get_local_address(name)
s = 'ssh -o StrictHostKeyChecking=no -o ConnectTimeout=%s %s@%s "%s"'%(timeout, user, address, command)
tries = 0
while tries < max_tries:
try:
return cmd(s, verbose=2, stderr=False)
except RuntimeError, msg:
tries += 1
log.info("FAIL (%s/%s): %s", tries, max_tries, msg)
log.info("trying again in 3 seconds...")
time.sleep(3)
raise RuntimeError("failed too many times: %s"%s)
def run_kvm(ip_address, hostname, stop, vcpus, ram, vnc, disk, base, fstab):
#################################
# create the copy-on-write image
#################################
t = time.time()
img_path = os.path.join(os.environ['HOME'], 'vm', 'images')
base_img_path = os.path.join(img_path, 'base3')
if not os.path.exists(base_img_path):
os.makedirs(base_img_path)
persistent_img_path = os.path.join(img_path, 'persistent')
if not os.path.exists(persistent_img_path):
os.makedirs(persistent_img_path)
temporary_img_path = os.path.join(img_path, 'temporary')
if not os.path.exists(temporary_img_path):
os.makedirs(temporary_img_path)
new_img = os.path.join(temporary_img_path, hostname + '.img')
tincname = hostname.replace('-','_')
if stop:
log.info("stopping ephemeral vm '%s'"%hostname)
try:
log.info("virsh shutdown '%s'"%hostname)
log.info(virsh('shutdown', hostname))
except: pass
time.sleep(30) # give it at least 30 seconds to actually shut down.
try:
log.info("virsh destroy '%s'"%hostname)
a = virsh('destroy', hostname)
log.info(a)
except:
pass
try:
i = a.index('Failed to terminate process')
if i != -1:
log.info("couldn't destroy -- trying to kill directly")
pid = a[i+len('Failed to terminate process'):].strip().split()[0]
run(['kill', '-9', pid])
except: pass
try:
log.info("virsh undefine '%s'"%hostname)
log.info(virsh('undefine', hostname))
except: pass
try:
path = os.path.join(conf_path, 'tinc_hosts', tincname)
log.info("remove tinc public key '%s'"%path)
os.unlink(path)
except: pass
try:
log.info("remove ephemeral image '%s'"%new_img)
os.unlink(new_img)
except: pass
if os.path.exists(new_img):
raise RuntimeError("the image '%s' already exists; maybe the virtual machine is already running?"%new_img)
if not base.endswith('.img'): base += '.img'
base_img = os.path.join(base_img_path, base)
try:
#################################
# create disk images
#################################
tmp_path = tempfile.mkdtemp() # put here so finally below will work.
# Transient image based on our template
sh['qemu-img', 'create', '-b', base_img, '-f', 'qcow2', new_img]
log.info("created %s in %s seconds", new_img, time.time()-t); t = time.time()
# Persistent image(s)
persistent_images = []
for name, size, fstype, format in disk:
if name.startswith('/dev'):
# NOTE: size="mount point" for raw disk images
persistent_images.append((name, size, fstype, format))
else:
# TODO: this functionality will be removed as soon as I move *all* UW vm's to use zvol's.
persistent_images.append((os.path.join(persistent_img_path, '%s-%s.img'%(hostname, name)),
'/mnt/'+name, fstype, format))
img = persistent_images[-1][0]
if not os.path.exists(img):
os.chdir(persistent_img_path)
temp = None
try:
# Unfortunately, guestfish doesn't support xfs.
sh['qemu-img', 'create', '-f', format, img, '%sG'%size]
# See salvus/salvus/scripts/salvus_nbd_format.py
if fstype != 'none':
log.info("WARNING: formatting filesystem can take a long time...")
run(['sudo', '/usr/local/bin/salvus_nbd_format.py', fstype, img], maxtime=1800)
sh['chgrp', 'kvm', img]
sh['chmod', 'g+rw', img]
finally:
if temp is not None:
shutil.rmtree(temp)
if os.path.exists('test1.img'):
os.unlink('test1.img')
else:
pass
# TODO: else -- if too small, enlarge image if possible
#################################
# configure the vm's image
#################################
# - mount the image in a temp directory
vmhost_tincname = socket.gethostname().replace('-','_')
try:
run(['guestmount', '-i', '-a', new_img, '--rw', tmp_path], maxtime=600)
#### hostname ####
hostname_file = os.path.join(tmp_path,'etc/hostname')
if not os.path.exists(hostname_file):
raise RuntimeError("missing /etc/hostname in the VM image; probably the guestmount command is not working, and the fix is probably to type 'sudo chmod a+r /boot/vmlinuz-*; sudo chmod a+rw /dev/fuse'")
os.unlink(hostname_file)
open(hostname_file,'w').write(hostname)
hosts_file = os.path.join(tmp_path, 'etc/hosts')
hosts = open(hosts_file).read()
os.unlink(hosts_file)
open(hosts_file,'w').write("%s\n127.0.1.1 %s\n"%(hosts, hostname))
#### tinc vpn ####
tinc_path = os.path.join(tmp_path, 'home/salvus/salvus/salvus/data/local/etc/tinc/')
open(os.path.join(tinc_path, 'tinc-up'),'w').write(
"#!/bin/sh\nifconfig $INTERFACE %s netmask 255.192.0.0 txqueuelen 10000"%ip_address)
open(os.path.join(tinc_path, 'tinc.conf'),'w').write(
"Name = %s\nKeyExpire = 2592000\nConnectTo = %s"%(tincname, vmhost_tincname))
rsa_key_priv = os.path.join(tinc_path, 'rsa_key.priv')
rsa_key_pub = os.path.join(tinc_path, 'hosts', tincname)
if os.path.exists(rsa_key_priv): os.unlink(rsa_key_priv)
if os.path.exists(rsa_key_pub): os.unlink(rsa_key_pub)
sh['tincd', '--config', tinc_path, '-K']
host_file = os.path.join(tinc_path, 'hosts', tincname)
public_key = open(rsa_key_pub).read().strip()
open(host_file,'w').write("TCPonly=yes\nCompression=10\nCipher = aes-128-cbc\nSubnet = %s/32\n%s"%(ip_address, public_key))
# put the tinc public key in our local db, so that the vm can connect to host.
shutil.copyfile(host_file, os.path.join(conf_path, 'tinc_hosts', tincname))
#### persisent disks ####
fstab_file = os.path.join(tmp_path, 'etc/fstab')
try:
f = open(fstab_file,'a')
for i,x in enumerate(persistent_images):
if x[1] and x[2] not in ['none','zfs']: # using defaults instead of nobootwait, since nobootwait causes trouble with firstboot.py
f.write("\n/dev/vd%s1 %s %s defaults 0 2\n"%(chr(98+i),x[1],x[2]))
mnt_point = os.path.join(tmp_path, x[1].lstrip('/'))
os.makedirs(mnt_point)
f.write('\n'+fstab+'\n')
for x in fstab.splitlines():
v = x.split()
if not x.lstrip().startswith('#') and len(v) >= 2:
mnt_point = os.path.join(tmp_path, v[1].lstrip('/'))
os.makedirs(mnt_point)
finally:
f.close()
finally:
# - unmount image and remove tmp_path
sh['fusermount', '-u', tmp_path]
finally:
shutil.rmtree(tmp_path)
log.info("configured image in %s seconds", time.time()-t); t = time.time()
#################################
# create and start the vm itself
#################################
try:
cmd = ['virt-install',
'--connect', 'qemu:///%s'%qemu,
#'--cpu', 'core2duo', # definitely fails
#'--cpu', 'core2duo,+wdt,+skinit,+osvw,+3dnowprefetch,+misalignsse,+sse4a,+abm,+cr8legacy,+extapic,+svm,+cmp_legacy,+lahf_lm,+rdtscp,+pdpe1gb,+fxsr_opt,+mmxext,+aes,+popcnt,+sse4.2,+sse4.1,+cx16,+ht', # definitely does NOT work
'--cpu', 'host', # definitely fails
'--network', 'network:default,model=virtio',
'--name', hostname,
'--vcpus', vcpus,
'--ram', 1024*ram,
'--import',
'--disk', (new_img + ',device=disk,bus=virtio,format=qcow2,cache=writeback'),
'--noautoconsole']
if vnc:
cmd.extend(['--graphics', 'vnc,port=%s'%vnc])
for x in persistent_images:
cmd.extend(['--disk', '%s,bus=virtio,cache=writeback,format=%s'%(x[0],x[3])])
os.system("ls -lh %s"%new_img)
sh['chgrp', 'kvm', new_img]
sh['chmod', 'g+rw', new_img]
os.system("ls -lh %s"%new_img)
log.info(run(cmd, maxtime=600))
log.info("created new virtual machine in %s seconds -- now running", time.time()-t); t = time.time()
##########################################################################
# - run until vm terminates or we receive term signal, undefined, destroy
##########################################################################
while virsh('domstate', hostname) == 'running':
# TODO: this is polling, which violates an axiom. We absolutely
# must rewrite this to be event driven!!!?
time.sleep(1)
except Exception, e:
log.info("error creating virtual machine -- %s"%e)
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(description="vm.py -- starts and stops virtual machine with given IP address and type on this computer")
parser.add_argument("-d", dest="daemon", default=False, action="store_const", const=True,
help="daemon mode (default: False)")
parser.add_argument("--ip_address", dest="ip_address", type=str, required=True,
help="ip address of the virtual machine on the VPN")
parser.add_argument("--hostname", dest="hostname", type=str, default='',
help="hostname of the virtual machine on the VPN")
parser.add_argument("--stop", dest="stop", action="store_const", const=True, default=False, help="if given, stop the given machine rather than creating it")
parser.add_argument("--vcpus", dest="vcpus", type=str, default="2",
help="number of virtual cpus")
parser.add_argument("--ram", dest="ram", type=int, default=4,
help="Gigabytes of ram")
parser.add_argument("--vnc", dest="vnc", type=int, default=0,
help="VNC console port (default: 0 -- no VNC)")
parser.add_argument("--pidfile", dest="pidfile", type=str, default='',
help="store pid in this file")
parser.add_argument("-l", dest='log_level', type=str, default='INFO',
help="log level (default: INFO) useful options include WARNING and DEBUG")
parser.add_argument("--logfile", dest="logfile", type=str, default='',
help="store log in this file (default: '' = don't log to a file)")
parser.add_argument("--disk", dest="disk", type=str, default="",
help="persistent disks: '--disk=cassandra:64:ext4:qcow2,backup:10:xfs:qcow2,/dev/sdd1,/dev/sdd2:foo:ext4' makes two sparse qcow2 images of size 64GB and 10GB if they don't exist, one formated ext4 the other xfs, and mounted as /mnt/cassandra and /mnt/backup, also makes /dev/sdd1 available in the vm, and makes /dev/sdd2 available and mount as /mnt/foo; if they exist and are smaller than the given size, they are automatically expanded. The disks are stored as ~/vm/images/ip_address-cassandra.img, etc. More precisely, the format is --disk=[name]:[size]:[ext4|xfs|zfs|none]:[raw|qcow2]. If format is none (the default), then the disk is not mounted in fstab. If name is a device the format is --disk=[devicename]:[mountpoint]:[format]")
parser.add_argument("--fstab", dest="fstab", type=str, default="", help="custom string to add to the end of /etc/fstab; each mountpoint in that string will be created if necessary")
parser.add_argument('--base', dest='base', type=str, default='salvus',
help="template image in ~/vm/images/base3 on which to base this machine; must *not* be running (default: salvus).")
args = parser.parse_args()
if args.logfile:
args.logfile = os.path.abspath(args.logfile)
if args.pidfile:
args.pidfile = os.path.abspath(args.pidfile)
if args.ip_address.count('.') == 0:
args.ip_address = '10.1.1.' + args.ip_address
elif args.ip_address.count('.') == 1:
args.ip_address = '10.1.' + args.ip_address
elif args.ip_address.count('.') == 2:
args.ip_address = '10.' + args.ip_address
assert args.ip_address.startswith('10.'), "ip address must belong to the class A network 10."
args.hostname = args.hostname if args.hostname else args.ip_address.replace('.','dot')
try:
disk = []
if args.disk:
for x in args.disk.split(','):
a = x.split(':')
if len(a) == 1:
a.append('1') # default size = 1GB; this size is ignored for raw devices.
if len(a) == 2:
a.append('none') # default filesystem type = none = do not format
if len(a) == 3:
a.append('raw')
assert len(a) == 4
if a[2] == '':
a[2] = 'none' # default filesystem type = none
if a[3] == '':
a[3] = 'raw'
disk.append(a)
except (IndexError, ValueError):
raise RuntimeError("--disk option invalid; see usage info")
def main():
global log
logging.basicConfig()
log = logging.getLogger('vm')
log.setLevel(logging.INFO)
if args.log_level:
level = getattr(logging, args.log_level.upper())
log.setLevel(level)
if args.logfile:
log.addHandler(logging.FileHandler(args.logfile))
import admin # take over the admin logger
admin.log = log
log.info("logger started")
if args.pidfile:
open(args.pidfile,'w').write(str(os.getpid()))
run_kvm(ip_address = args.ip_address, hostname = args.hostname, stop=args.stop, vcpus=args.vcpus,
ram=args.ram, vnc=args.vnc, disk=disk, base=args.base, fstab=args.fstab)
try:
if args.daemon:
import daemon
daemon.daemonize(args.pidfile)
try:
main()
except Exception, err:
import traceback
log.error("Traceback: %s", traceback.format_exc())
log.error("Exception running daemon script -- %s", err)
raise
else:
main()
finally:
if args.pidfile and os.path.exists(args.pidfile):
os.unlink(args.pidfile)