svn:keywords
[bootmanager.git] / source / steps / ValidateNodeInstall.py
1 #!/usr/bin/python
2 #
3 # $Id$
4 # $URL$
5 #
6 # Copyright (c) 2003 Intel Corporation
7 # All rights reserved.
8 #
9 # Copyright (c) 2004-2006 The Trustees of Princeton University
10 # All rights reserved.
11
12 import os
13
14 from Exceptions import *
15 import utils
16 import systeminfo
17 import ModelOptions
18
19
20 def Run( vars, log ):
21     """
22     See if a node installation is valid. More checks should certainly be
23     done in the future, but for now, make sure that the sym links kernel-boot
24     exist in /boot
25     
26     Expect the following variables to be set:
27     SYSIMG_PATH              the path where the system image will be mounted
28                              (always starts with TEMP_PATH)
29     ROOT_MOUNTED             the node root file system is mounted
30     NODE_ID                  The db node_id for this machine
31     PLCONF_DIR               The directory to store the configuration file in
32     
33     Set the following variables upon successfully running:
34     ROOT_MOUNTED             the node root file system is mounted
35     """
36
37     log.write( "\n\nStep: Validating node installation.\n" )
38
39     # make sure we have the variables we need
40     try:
41         SYSIMG_PATH= vars["SYSIMG_PATH"]
42         if SYSIMG_PATH == "":
43             raise ValueError, "SYSIMG_PATH"
44
45         NODE_ID= vars["NODE_ID"]
46         if NODE_ID == "":
47             raise ValueError, "NODE_ID"
48
49         PLCONF_DIR= vars["PLCONF_DIR"]
50         if PLCONF_DIR == "":
51             raise ValueError, "PLCONF_DIR"
52         
53         NODE_MODEL_OPTIONS= vars["NODE_MODEL_OPTIONS"]
54
55         PARTITIONS= vars["PARTITIONS"]
56         if PARTITIONS == None:
57             raise ValueError, "PARTITIONS"
58
59     except KeyError, var:
60         raise BootManagerException, "Missing variable in vars: %s\n" % var
61     except ValueError, var:
62         raise BootManagerException, "Variable in vars, shouldn't be: %s\n" % var
63
64
65     ROOT_MOUNTED= 0
66     if vars.has_key('ROOT_MOUNTED'):
67         ROOT_MOUNTED= vars['ROOT_MOUNTED']
68
69     # mount the root system image if we haven't already.
70     # capture BootManagerExceptions during the vgscan/change and mount
71     # calls, so we can return 0 instead
72     if ROOT_MOUNTED == 0:
73             
74         # simply creating an instance of this class and listing the system
75         # block devices will make them show up so vgscan can find the planetlab
76         # volume group
77         systeminfo.get_block_device_list(vars, log)
78
79         try:
80             utils.sysexec( "vgscan", log )
81             utils.sysexec( "vgchange -ay planetlab", log )
82         except BootManagerException, e:
83             log.write( "BootManagerException during vgscan/vgchange: %s\n" %
84                        str(e) )
85             return 0
86             
87         utils.makedirs( SYSIMG_PATH )
88
89         for filesystem in ("root","vservers"):
90             try:
91                 # first run fsck to prevent fs corruption from hanging mount...
92                 log.write( "fsck %s file system\n" % filesystem )
93                 utils.sysexec("e2fsck -v -p %s" % (PARTITIONS[filesystem]),log)
94             except BootManagerException, e:
95                 log.write( "BootManagerException during fsck of %s (%s) filesystem : %s\n" %
96                            (filesystem, PARTITIONS[filesystem], str(e)) )
97                 return -1
98
99         try:
100             # then attempt to mount them
101             log.write( "mounting root file system\n" )
102             utils.sysexec("mount -t ext3 %s %s" % (PARTITIONS["root"],SYSIMG_PATH),log)
103         except BootManagerException, e:
104             log.write( "BootManagerException during mount of /root: %s\n" % str(e) )
105             return -2
106             
107         try:
108             PROC_PATH = "%s/proc" % SYSIMG_PATH
109             utils.makedirs(PROC_PATH)
110             log.write( "mounting /proc\n" )
111             utils.sysexec( "mount -t proc none %s" % PROC_PATH, log )
112         except BootManagerException, e:
113             log.write( "BootManagerException during mount of /proc: %s\n" % str(e) )
114             return -2
115
116         try:
117             VSERVERS_PATH = "%s/vservers" % SYSIMG_PATH
118             utils.makedirs(VSERVERS_PATH)
119             log.write( "mounting vserver partition in root file system\n" )
120             utils.sysexec("mount -t ext3 %s %s" % (PARTITIONS["vservers"], VSERVERS_PATH), log)
121         except BootManagerException, e:
122             log.write( "BootManagerException during mount of /vservers: %s\n" % str(e) )
123             return -2
124
125         ROOT_MOUNTED= 1
126         vars['ROOT_MOUNTED']= 1
127         
128     # check if the base kernel is installed 
129     # these 2 links are created by our kernel's post-install scriplet
130     log.write("Checking for a custom kernel\n")
131     try:
132         os.stat("%s/boot/kernel-boot" % SYSIMG_PATH)
133     except OSError, e:            
134         log.write( "Couldn't locate base kernel (you might be using the stock kernel).\n")
135         return -3
136
137     # check if the model specified kernel is installed
138     option = ''
139     if NODE_MODEL_OPTIONS & ModelOptions.SMP:
140         option = 'smp'
141         try:
142             os.stat("%s/boot/kernel-boot%s" % (SYSIMG_PATH,option))
143         except OSError, e:
144             # smp kernel is not there; remove option from modeloptions
145             # such that the rest of the code base thinks we are just
146             # using the base kernel.
147             NODE_MODEL_OPTIONS = NODE_MODEL_OPTIONS & ~ModelOptions.SMP
148             vars["NODE_MODEL_OPTIONS"] = NODE_MODEL_OPTIONS
149             log.write( "WARNING: Couldn't locate smp kernel.\n")
150             
151     # write out the node id to /etc/planetlab/node_id. if this fails, return
152     # 0, indicating the node isn't a valid install.
153     try:
154         node_id_file_path= "%s/%s/node_id" % (SYSIMG_PATH,PLCONF_DIR)
155         node_id_file= file( node_id_file_path, "w" )
156         node_id_file.write( str(NODE_ID) )
157         node_id_file.close()
158         node_id_file= None
159         log.write( "Updated /etc/planetlab/node_id\n" )
160     except IOError, e:
161         log.write( "Unable to write out /etc/planetlab/node_id\n" )
162         return 0
163
164     log.write( "Node installation appears to be ok\n" )
165     
166     return 1