fix previous merge
[nodemanager.git] / sliver_lxc.py
1 #
2
3 """LXC slivers"""
4
5 import logger
6 import subprocess
7 import os, os.path
8 import libvirt
9 import sys
10 from string import Template
11 import bwlimit
12 import sliver_libvirt as lv
13
14 class Sliver_LXC(lv.Sliver_Libvirt):
15     """This class wraps LXC commands"""
16
17     SHELL = '/bin/sshsh'
18     TYPE = 'sliver.LXC'
19     # Need to add a tag at myplc to actually use this account
20     # type = 'sliver.LXC'
21
22     REF_IMG_BASE_DIR = '/vservers/.lvref'
23     CON_BASE_DIR     = '/vservers'
24
25     @staticmethod
26     def create(name, rec=None):
27         ''' Create dirs, copy fs image, lxc_create '''
28         logger.verbose ('sliver_lxc: %s create'%(name))
29         conn = lv.getConnection(Sliver_LXC.TYPE)
30
31         # Get the type of image from vref myplc tags specified as:
32         # pldistro = lxc
33         # fcdistro = squeeze
34         # arch x86_64
35         vref = rec['vref']
36         if vref is None:
37             logger.log('sliver_libvirt: %s: WARNING - no vref attached defaults to lxc-f14' % (name))
38             vref = "lxc-f14-x86_64"
39
40         refImgDir    = os.path.join(Sliver_LXC.REF_IMG_BASE_DIR, vref)
41         containerDir = os.path.join(Sliver_LXC.CON_BASE_DIR, name)
42
43         # check the template exists -- there's probably a better way..
44         if not os.path.isdir(refImgDir):
45             logger.log('sliver_lxc: %s: ERROR Could not create sliver - reference image %s not found' % (name,vref))
46             logger.log('sliver_lxc: %s: ERROR ctd expected reference image in %s'%(name,refImgDir))
47             return
48
49         # Snapshot the reference image fs (assume the reference image is in its own
50         # subvolume)
51         command = ['btrfs', 'subvolume', 'snapshot', refImgDir, containerDir]
52         logger.log_call(command, timeout=15*60)
53         command = ['chmod', '755', containerDir]
54         logger.log_call(command, timeout=15*60)
55
56         # TODO: set quotas...
57
58         # Set hostname. A valid hostname cannot have '_'
59         #with open(os.path.join(containerDir, 'etc/hostname'), 'w') as f:
60         #    print >>f, name.replace('_', '-')
61
62         # Add slices group if not already present
63         command = ['/usr/sbin/groupadd', 'slices']
64         logger.log_call(command, timeout=15*60)
65
66         # Add unix account (TYPE is specified in the subclass)
67         command = ['/usr/sbin/useradd', '-g', 'slices', '-s', Sliver_LXC.SHELL, name, '-p', '*']
68         logger.log_call(command, timeout=15*60)
69         command = ['mkdir', '/home/%s/.ssh'%name]
70         logger.log_call(command, timeout=15*60)
71
72         # Create PK pair keys to connect from the host to the guest without
73         # password... maybe remove the need for authentication inside the
74         # guest?
75         command = ['su', '-s', '/bin/bash', '-c', 'ssh-keygen -t rsa -N "" -f /home/%s/.ssh/id_rsa'%(name)]
76         logger.log_call(command, timeout=15*60)
77
78         command = ['chown', '-R', '%s.slices'%name, '/home/%s/.ssh'%name]
79         logger.log_call(command, timeout=15*60)
80
81         command = ['mkdir', '%s/root/.ssh'%containerDir]
82         logger.log_call(command, timeout=15*60)
83
84         command = ['cp', '/home/%s/.ssh/id_rsa.pub'%name, '%s/root/.ssh/authorized_keys'%containerDir]
85         logger.log_call(command, timeout=15*60)
86
87         # Lookup for xid and create template after the user is created so we
88         # can get the correct xid based on the name of the slice
89         xid = bwlimit.get_xid(name)
90
91         # Template for libvirt sliver configuration
92 #        template_filename = Sliver_LXC.REF_IMG_BASE_DIR + '/lxc_template.xml'
93         # for compat with lxc-reference package, hopefully temporary
94         template_filename_lxcreference = os.path.join(Sliver_LXC.REF_IMG_BASE_DIR,'config_template.xml')
95         template_filename_sliceimage = os.path.join(Sliver_LXC.REF_IMG_BASE_DIR,'lxc_template.xml')
96         if os.path.isfile (template_filename_lxcreference):
97             logger.log("WARNING: using compat template %s"%template_filename_lxcreference)
98             template_filename=template_filename_lxcreference
99         elif os.path.isfile (template_filename_sliceimage):
100             logger.log("WARNING: using compat template %s"%template_filename_sliceimage)
101             template_filename=template_filename_sliceimage
102         else:
103             logger.log("Cannot find XML template")
104             logger.log("neither %s"%template_filename_lxcreference)
105             logger.log("nor     %s"%template_filename_sliceimage)
106             return
107         try:
108             with open(template_filename) as f:
109                 template = Template(f.read())
110                 xml  = template.substitute(name=name, xid=xid)
111         except IOError:
112             logger.log('Failed to parse or use XML template file %s'%template_filename)
113             return
114
115         # Lookup for the sliver before actually
116         # defining it, just in case it was already defined.
117         try:
118             dom = conn.lookupByName(name)
119         except:
120             dom = conn.defineXML(xml)
121         logger.verbose('lxc_create: %s -> %s'%(name, lv.debuginfo(dom)))
122
123
124     @staticmethod
125     def destroy(name):
126         logger.verbose ('sliver_lxc: %s destroy'%(name))
127         conn = lv.getConnection(Sliver_LXC.TYPE)
128
129         containerDir = Sliver_LXC.CON_BASE_DIR + '/%s'%(name)
130
131         try:
132             # Destroy libvirt domain
133             dom = conn.lookupByName(name)
134         except:
135             logger.verbose('sliver_lxc: Domain %s does not exist! UNEXPECTED'%name)
136             return
137
138         try:
139             dom.destroy()
140         except:
141             logger.verbose('sliver_lxc: Domain %s not running... continuing.'%name)
142
143         dom.undefine()
144
145         # Remove user after destroy domain to force logout
146         command = ['/usr/sbin/userdel', '-f', '-r', name]
147         logger.log_call(command, timeout=15*60)
148
149         # Remove rootfs of destroyed domain
150         command = ['btrfs', 'subvolume', 'delete', containerDir]
151         logger.log_call(command, timeout=15*60)
152
153         logger.verbose('sliver_libvirt: %s destroyed.'%name)
154