Merge branch 'master' of ssh://git.onelab.eu/git/bootmanager
[bootmanager.git] / source / steps / ChainBootNode.py
1 #!/usr/bin/python
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
10 import string
11 import re
12 import os
13
14 import UpdateNodeConfiguration
15 import MakeInitrd
16 from Exceptions import *
17 import utils
18 import systeminfo
19 import BootAPI
20 import notify_messages
21 import time
22
23 import ModelOptions
24
25 def Run( vars, log ):
26     """
27     Load the kernel off of a node and boot to it.
28     This step assumes the disks are mounted on SYSIMG_PATH.
29     If successful, this function will not return. If it returns, no chain
30     booting has occurred.
31     
32     Expect the following variables:
33     SYSIMG_PATH           the path where the system image will be mounted
34                           (always starts with TEMP_PATH)
35     ROOT_MOUNTED          the node root file system is mounted
36     NODE_SESSION             the unique session val set when we requested
37                              the current boot state
38     PLCONF_DIR               The directory to store PL configuration files in
39     
40     Sets the following variables:
41     ROOT_MOUNTED          the node root file system is mounted
42     """
43
44     log.write( "\n\nStep: Chain booting node.\n" )
45
46     # make sure we have the variables we need
47     try:
48         SYSIMG_PATH= vars["SYSIMG_PATH"]
49         if SYSIMG_PATH == "":
50             raise ValueError, "SYSIMG_PATH"
51
52         PLCONF_DIR= vars["PLCONF_DIR"]
53         if PLCONF_DIR == "":
54             raise ValueError, "PLCONF_DIR"
55
56         # its ok if this is blank
57         NODE_SESSION= vars["NODE_SESSION"]
58
59         NODE_MODEL_OPTIONS= vars["NODE_MODEL_OPTIONS"]
60
61         PARTITIONS= vars["PARTITIONS"]
62         if PARTITIONS == None:
63             raise ValueError, "PARTITIONS"
64
65     except KeyError, var:
66         raise BootManagerException, "Missing variable in vars: %s\n" % var
67     except ValueError, var:
68         raise BootManagerException, "Variable in vars, shouldn't be: %s\n" % var
69
70     ROOT_MOUNTED= 0
71     if vars.has_key('ROOT_MOUNTED'):
72         ROOT_MOUNTED= vars['ROOT_MOUNTED']
73     
74     if ROOT_MOUNTED == 0:
75         log.write( "Mounting node partitions\n" )
76
77         # simply creating an instance of this class and listing the system
78         # block devices will make them show up so vgscan can find the planetlab
79         # volume group
80         systeminfo.get_block_device_list(vars, log)
81         
82         utils.sysexec( "vgscan", log )
83         utils.sysexec( "vgchange -ay planetlab", log )
84
85         utils.makedirs( SYSIMG_PATH )
86
87         cmd = "mount %s %s" % (PARTITIONS["root"],SYSIMG_PATH)
88         utils.sysexec( cmd, log )
89         cmd = "mount -t proc none %s/proc" % SYSIMG_PATH
90         utils.sysexec( cmd, log )
91         cmd = "mount %s %s/vservers" % (PARTITIONS["vservers"],SYSIMG_PATH)
92         utils.sysexec( cmd, log )
93
94         ROOT_MOUNTED= 1
95         vars['ROOT_MOUNTED']= 1
96         
97
98     # write out the session value /etc/planetlab/session
99     try:
100         session_file_path= "%s/%s/session" % (SYSIMG_PATH,PLCONF_DIR)
101         session_file= file( session_file_path, "w" )
102         session_file.write( str(NODE_SESSION) )
103         session_file.close()
104         session_file= None
105         log.write( "Updated /etc/planetlab/session\n" )
106     except IOError, e:
107         log.write( "Unable to write out /etc/planetlab/session, continuing anyway\n" )
108
109     # update configuration files
110     log.write( "Updating configuration files.\n" )
111     try:
112         cmd = "/etc/init.d/conf_files start --noscripts"
113         utils.sysexec_chroot( SYSIMG_PATH, cmd, log )
114     except IOError, e:
115         log.write("conf_files failed with \n %s" % e)
116
117     # update node packages
118     log.write( "Running node update.\n" )
119     if os.path.exists( SYSIMG_PATH + "/usr/bin/NodeUpdate.py" ):
120         cmd = "/usr/bin/NodeUpdate.py start noreboot"
121     else:
122         # for backwards compatibility
123         cmd = "/usr/local/planetlab/bin/NodeUpdate.py start noreboot"
124     utils.sysexec_chroot( SYSIMG_PATH, cmd, log )
125
126     # Re-generate initrd right before kexec call
127     MakeInitrd.Run( vars, log )
128
129     # the following step should be done by NM
130     UpdateNodeConfiguration.Run( vars, log )
131
132     log.write( "Updating ssh public host key with PLC.\n" )
133     ssh_host_key= ""
134     try:
135         ssh_host_key_file= file("%s/etc/ssh/ssh_host_rsa_key.pub"%SYSIMG_PATH,"r")
136         ssh_host_key= ssh_host_key_file.read().strip()
137         ssh_host_key_file.close()
138         ssh_host_key_file= None
139     except IOError, e:
140         pass
141
142     update_vals= {}
143     update_vals['ssh_rsa_key']= ssh_host_key
144     BootAPI.call_api_function( vars, "BootUpdateNode", (update_vals,) )
145
146     # get the kernel version
147     option = ''
148     if NODE_MODEL_OPTIONS & ModelOptions.SMP:
149         option = 'smp'
150
151     log.write( "Copying kernel and initrd for booting.\n" )
152     utils.sysexec( "cp %s/boot/kernel-boot%s /tmp/kernel" % (SYSIMG_PATH,option), log )
153     utils.sysexec( "cp %s/boot/initrd-boot%s /tmp/initrd" % (SYSIMG_PATH,option), log )
154
155     BootAPI.save(vars)
156
157     log.write( "Unmounting disks.\n" )
158     utils.sysexec( "umount %s/vservers" % SYSIMG_PATH, log )
159     utils.sysexec( "umount %s/proc" % SYSIMG_PATH, log )
160     utils.sysexec_noerr( "umount %s/dev" % SYSIMG_PATH, log )
161     utils.sysexec_noerr( "umount %s/sys" % SYSIMG_PATH, log )
162     utils.sysexec( "umount %s" % SYSIMG_PATH, log )
163     utils.sysexec( "vgchange -an", log )
164
165     ROOT_MOUNTED= 0
166     vars['ROOT_MOUNTED']= 0
167
168     log.write( "Unloading modules and chain booting to new kernel.\n" )
169
170     # further use of log after Upload will only output to screen
171     log.Upload("/root/.bash_eternal_history")
172
173     # regardless of whether kexec works or not, we need to stop trying to
174     # run anything
175     cancel_boot_flag= "/tmp/CANCEL_BOOT"
176     utils.sysexec( "touch %s" % cancel_boot_flag, log )
177
178     # on 2.x cds (2.4 kernel) for sure, we need to shutdown everything
179     # to get kexec to work correctly. Even on 3.x cds (2.6 kernel),
180     # there are a few buggy drivers that don't disable their hardware
181     # correctly unless they are first unloaded.
182     
183     utils.sysexec_noerr( "ifconfig eth0 down", log )
184
185     utils.sysexec_noerr( "killall dhclient", log )
186         
187     utils.sysexec_noerr( "umount -a -r -t ext2,ext3", log )
188     utils.sysexec_noerr( "modprobe -r lvm-mod", log )
189     
190     # modules that should not get unloaded
191     # unloading cpqphp causes a kernel panic
192     blacklist = [ "floppy", "cpqphp", "i82875p_edac", "mptspi"]
193     try:
194         modules= file("/tmp/loadedmodules","r")
195         
196         for line in modules:
197             module= string.strip(line)
198             if module in blacklist :
199                 log.write("Skipping unload of kernel module '%s'.\n"%module)
200             elif module != "":
201                 log.write( "Unloading %s\n" % module )
202                 utils.sysexec_noerr( "modprobe -r %s" % module, log )
203                 if "e1000" in module:
204                     log.write("Unloading e1000 driver; sleeping 4 seconds...\n")
205                     time.sleep(4)
206
207         modules.close()
208     except IOError:
209         log.write( "Couldn't read /tmp/loadedmodules, continuing.\n" )
210
211     try:
212         modules= file("/proc/modules", "r")
213
214         # Get usage count for USB
215         usb_usage = 0
216         for line in modules:
217             try:
218                 # Module Size UsageCount UsedBy State LoadAddress
219                 parts= string.split(line)
220
221                 if parts[0] == "usb_storage":
222                     usb_usage += int(parts[2])
223             except IndexError, e:
224                 log.write( "Couldn't parse /proc/modules, continuing.\n" )
225
226         modules.seek(0)
227
228         for line in modules:
229             try:
230                 # Module Size UsageCount UsedBy State LoadAddress
231                 parts= string.split(line)
232
233                 # While we would like to remove all "unused" modules,
234                 # you can't trust usage count, especially for things
235                 # like network drivers or RAID array drivers. Just try
236                 # and unload a few specific modules that we know cause
237                 # problems during chain boot, such as USB host
238                 # controller drivers (HCDs) (PL6577).
239                 # if int(parts[2]) == 0:
240                 if False and re.search('_hcd$', parts[0]):
241                     if usb_usage > 0:
242                         log.write( "NOT unloading %s since USB may be in use\n" % parts[0] )
243                     else:
244                         log.write( "Unloading %s\n" % parts[0] )
245                         utils.sysexec_noerr( "modprobe -r %s" % parts[0], log )
246             except IndexError, e:
247                 log.write( "Couldn't parse /proc/modules, continuing.\n" )
248     except IOError:
249         log.write( "Couldn't read /proc/modules, continuing.\n" )
250
251
252     kargs = "root=%s ramdisk_size=8192" % PARTITIONS["mapper-root"]
253     if NODE_MODEL_OPTIONS & ModelOptions.SMP:
254         kargs = kargs + " " + "acpi=off"
255     try:
256         kargsfb = open("/kargs.txt","r")
257         moreargs = kargsfb.readline()
258         kargsfb.close()
259         moreargs = moreargs.strip()
260         log.write( 'Parsed in "%s" kexec args from /kargs.txt\n' % moreargs )
261         kargs = kargs + " " + moreargs
262     except IOError:
263         # /kargs.txt does not exist, which is fine. Just kexec with default
264         # kargs, which is ramdisk_size=8192
265         pass 
266
267     utils.sysexec_noerr( 'hwclock --systohc --utc ', log )
268     utils.breakpoint ("Before kexec");
269     try:
270         utils.sysexec( 'kexec --force --initrd=/tmp/initrd --append="%s" /tmp/kernel' % kargs, log)
271     except BootManagerException, e:
272         # if kexec fails, we've shut the machine down to a point where nothing
273         # can run usefully anymore (network down, all modules unloaded, file
274         # systems unmounted. write out the error, and cancel the boot process
275
276         log.write( "\n\n" )
277         log.write( "-------------------------------------------------------\n" )
278         log.write( "kexec failed with the following error. Please report\n" )
279         log.write( "this problem to support@planet-lab.org.\n\n" )
280         log.write( str(e) + "\n\n" )
281         log.write( "The boot process has been canceled.\n" )
282         log.write( "-------------------------------------------------------\n\n" )
283
284     return