Stop and destroy working correctly. Unix accounts created on configure method.
[nodemanager.git] / sliver_libvirt.py
index de7fedc..bdb7b59 100644 (file)
@@ -9,6 +9,8 @@ import os
 import libvirt
 import sys
 
+from string import Template
+
 states = {
     libvirt.VIR_DOMAIN_NOSTATE: 'no state',
     libvirt.VIR_DOMAIN_RUNNING: 'running',
@@ -23,94 +25,96 @@ class Sliver_LV(accounts.Account):
     """This class wraps LibVirt commands"""
    
     SHELL = '/bin/sh' 
-    # Using /bin/bash triggers destroy root/site_admin (?!?)
-    TYPE = 'sliver.LIBVIRT'
+
     # Need to add a tag at myplc to actually use this account
     # type = 'sliver.LIBVIRT'
-
-    def __init__(self, rec):
-        self.name = rec['name']
-        print "LIBVIRT %s __init__"%(self.name)
-        logger.verbose ('sliver_libvirt: %s init'%(self.name))
-         
-        self.dir = '/vservers/%s'%(self.name)
-        
-        # Assume the directory with the image and config files
-        # are in place
-        
-        self.config = '%s/config.xml'%(self.dir)
-        self.lxc_log  = '%s/log'%(self.dir)
-        self.keys = ''
-        self.rspec = {}
-        self.slice_id = rec['slice_id']
-        self.disk_usage_initialized = False
-        self.initscript = ''
-        self.enabled = True
-        conn = Sliver_LV.getConnection()
-        try:
-            self.container = conn.lookupByName(self.name)
-        except:
-            print "Unexpected error:", sys.exc_info()[0]
+    TYPE = 'sliver.LIBVIRT'
+    
 
     @staticmethod
     def create(name, rec = None):
         ''' Create dirs, copy fs image, lxc_create '''
-        print "LIBVIRT %s create"%(name)
         logger.verbose ('sliver_libvirt: %s create'%(name))
         dir = '/vservers/%s'%(name)
-        config = '%s/config.xml'%(dir)
-        lxc_log = '%s/log'%(dir)
         
+        # Template for sliver configuration
+        template = Template(open('/vservers/config_template.xml').read())
+        config = template.substitute(name=name)
+        
+        lxc_log = '%s/log'%(dir)
+       
+        # TODO: copy the sliver FS to the correct path if sliver does not
+        # exist.
         if not (os.path.isdir(dir) and 
             os.access(dir, os.R_OK | os.W_OK | os.X_OK)):
             logger.verbose('lxc_create: directory %s does not exist or wrong perms'%(dir))
             return
-       
+
+        # Set hostname
+        file('/vservers/%s/rootfs/etc/hostname' % name, 'w').write(name)
+        
+        # Add unix account
+        command = ['/usr/sbin/useradd', '-s', '/bin/sh', name]
+        logger.log_call(command, timeout=15*60)
+
         # Get a connection and lookup for the sliver before actually
         # defining it, just in case it was already defined.
         conn = Sliver_LV.getConnection()
         try:
             dom = conn.lookupByName(name)
         except:
-            xml = open(config).read()  
-            dom = conn.defineXML(xml)
-        print Sliver_LV.info(dom)
+            dom = conn.defineXML(config)
+        logger.verbose('lxc_create: %s -> %s'%(name, Sliver_LV.info(dom)))
 
     @staticmethod
     def destroy(name):
-        ''' NEVER CALLED... Figure out when and what to do... '''
-        
-        print "LIBVIRT %s destroy"%(name)
         logger.verbose ('sliver_libvirt: %s destroy'%(name))
         
         dir = '/vservers/%s'%(name)
         lxc_log = '%s/lxc.log'%(dir)
 
-        conn = conn.Sliver_LV.getConnection()
+        conn = Sliver_LV.getConnection()
 
         try:
+            command = ['/usr/sbin/userdel', name]
+            logger.log_call(command, timeout=15*60)
+            
             dom = conn.lookupByName(name)
-            conn.destroy(dom)
-            conn.undefine(dom)
-            print Sliver_LV.info(dom)
+            dom.destroy()
+            dom.undefine()
         except:
-            logger.verbose('sliver_libvirt: %s domain does not exists'%(name))
+            logger.verbose('sliver_libvirt: Unexpected error on %s: %s'%(name, sys.exc_info()[0]))
+    
+    def __init__(self, rec):
+        self.name = rec['name']
+        logger.verbose ('sliver_libvirt: %s init'%(self.name))
+         
+        self.dir = '/vservers/%s'%(self.name)
+        
+        # Assume the directory with the image and config files
+        # are in place
+        
+        self.keys = ''
+        self.rspec = {}
+        self.slice_id = rec['slice_id']
+        self.disk_usage_initialized = False
+        self.initscript = ''
+        self.enabled = True
+        conn = Sliver_LV.getConnection()
+        try:
+            self.container = conn.lookupByName(self.name)
+        except:
+            logger.verbose('sliver_libvirt: Unexpected error on %s: %s'%(name, sys.exc_info()[0]))
             print "Unexpected error:", sys.exc_info()[0]
 
-
     def configure(self, rec):
         ''' Allocate resources and fancy configuration stuff '''
-        print "LIBVIRT %s configure"%(self.name) 
         logger.verbose('sliver_libvirt: %s configure'%(self.name)) 
-
+        accounts.Account.configure(self, rec)  
+    
     def start(self, delay=0):
         ''' Just start the sliver '''
         print "LIBVIRT %s start"%(self.name)
-        if self.rspec['enabled'] <= 0:
-            logger.log('sliver_libvirt: not starting %s, is not enabled'%(self.name))
-            return
-        else:
-            logger.log('sliver_libvirt: %s starting...' % (self.name))
 
         # Check if it's running to avoid throwing an exception if the
         # domain was already running, create actually means start
@@ -120,9 +124,6 @@ class Sliver_LV(accounts.Account):
             logger.verbose('sliver_libvirt: sliver %s already started'%(self.name))
             
     def stop(self):
-        ''' NEVER CALLED... Figure out when and what to do... '''
-        
-        print "LIBVIRT %s stop"%(self.name)
         logger.verbose('sliver_libvirt: %s stop'%(self.name))
         
         try:
@@ -132,7 +133,6 @@ class Sliver_LV(accounts.Account):
     
     def is_running(self):
         ''' Return True if the domain is running '''
-        print "LIBVIRT %s is_running"%(self.name)
         logger.verbose('sliver_libvirt: %s is_running'%(self.name))
         try:
             [state, _, _, _, _] = self.container.info()