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