cleaned up imports
[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 import time
14
15 import utils
16 import systeminfo
17 import notify_messages
18 import BootAPI
19 import Exceptions
20 import ModelOptions
21
22 import UpdateNodeConfiguration
23 import StopRunlevelAgent
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 Exceptions.BootManagerException, "Missing variable in vars: %s\n" % var
67     except ValueError, var:
68         raise Exceptions.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
147     # get the kernel version
148     option = ''
149     if NODE_MODEL_OPTIONS & ModelOptions.SMP:
150         option = 'smp'
151
152     log.write( "Copying kernel and initrd for booting.\n" )
153     kversion = os.popen('rpm -r /tmp/mnt/sysimg -qa kernel | tail -1 | cut -c 8-').read().rstrip()
154
155     utils.sysexec( "cp %s/boot/vmlinuz-%s /tmp/kernel" % (SYSIMG_PATH,kversion), log )
156     utils.sysexec( "cp %s/boot/initramfs-%s.img /tmp/initrd" % (SYSIMG_PATH,kversion), log )
157
158     BootAPI.save(vars)
159
160     log.write( "Unmounting disks.\n" )
161     utils.sysexec( "umount %s/vservers" % SYSIMG_PATH, log )
162     utils.sysexec( "umount %s/proc" % SYSIMG_PATH, log )
163     utils.sysexec_noerr( "umount %s/dev" % SYSIMG_PATH, log )
164     utils.sysexec_noerr( "umount %s/sys" % SYSIMG_PATH, log )
165     utils.sysexec( "umount %s" % SYSIMG_PATH, log )
166     utils.sysexec( "vgchange -an", log )
167
168     ROOT_MOUNTED= 0
169     vars['ROOT_MOUNTED']= 0
170
171     # Change runlevel to 'boot' prior to kexec.
172     StopRunlevelAgent.Run( vars, log )
173
174     log.write( "Unloading modules and chain booting to new kernel.\n" )
175
176     # further use of log after Upload will only output to screen
177     log.Upload("/root/.bash_eternal_history")
178
179     # regardless of whether kexec works or not, we need to stop trying to
180     # run anything
181     cancel_boot_flag= "/tmp/CANCEL_BOOT"
182     utils.sysexec( "touch %s" % cancel_boot_flag, log )
183
184     # on 2.x cds (2.4 kernel) for sure, we need to shutdown everything
185     # to get kexec to work correctly. Even on 3.x cds (2.6 kernel),
186     # there are a few buggy drivers that don't disable their hardware
187     # correctly unless they are first unloaded.
188     
189     utils.sysexec_noerr( "ifconfig eth0 down", log )
190
191     utils.sysexec_noerr( "killall dhclient", log )
192         
193     utils.sysexec_noerr( "umount -a -r -t ext2,ext3,btrfs", log )
194     utils.sysexec_noerr( "modprobe -r lvm-mod", log )
195     
196     # modules that should not get unloaded
197     # unloading cpqphp causes a kernel panic
198     blacklist = [ "floppy", "cpqphp", "i82875p_edac", "mptspi"]
199     try:
200         modules= file("/tmp/loadedmodules","r")
201         
202         for line in modules:
203             module= string.strip(line)
204             if module in blacklist :
205                 log.write("Skipping unload of kernel module '%s'.\n"%module)
206             elif module != "":
207                 log.write( "Unloading %s\n" % module )
208                 utils.sysexec_noerr( "modprobe -r %s" % module, log )
209                 if "e1000" in module:
210                     log.write("Unloading e1000 driver; sleeping 4 seconds...\n")
211                     time.sleep(4)
212
213         modules.close()
214     except IOError:
215         log.write( "Couldn't read /tmp/loadedmodules, continuing.\n" )
216
217     try:
218         modules= file("/proc/modules", "r")
219
220         # Get usage count for USB
221         usb_usage = 0
222         for line in modules:
223             try:
224                 # Module Size UsageCount UsedBy State LoadAddress
225                 parts= string.split(line)
226
227                 if parts[0] == "usb_storage":
228                     usb_usage += int(parts[2])
229             except IndexError, e:
230                 log.write( "Couldn't parse /proc/modules, continuing.\n" )
231
232         modules.seek(0)
233
234         for line in modules:
235             try:
236                 # Module Size UsageCount UsedBy State LoadAddress
237                 parts= string.split(line)
238
239                 # While we would like to remove all "unused" modules,
240                 # you can't trust usage count, especially for things
241                 # like network drivers or RAID array drivers. Just try
242                 # and unload a few specific modules that we know cause
243                 # problems during chain boot, such as USB host
244                 # controller drivers (HCDs) (PL6577).
245                 # if int(parts[2]) == 0:
246                 if False and re.search('_hcd$', parts[0]):
247                     if usb_usage > 0:
248                         log.write( "NOT unloading %s since USB may be in use\n" % parts[0] )
249                     else:
250                         log.write( "Unloading %s\n" % parts[0] )
251                         utils.sysexec_noerr( "modprobe -r %s" % parts[0], log )
252             except IndexError, e:
253                 log.write( "Couldn't parse /proc/modules, continuing.\n" )
254     except IOError:
255         log.write( "Couldn't read /proc/modules, continuing.\n" )
256
257
258     kargs = "root=%s ramdisk_size=8192" % PARTITIONS["mapper-root"]
259     if NODE_MODEL_OPTIONS & ModelOptions.SMP:
260         kargs = kargs + " " + "acpi=off"
261     try:
262         kargsfb = open("/kargs.txt","r")
263         moreargs = kargsfb.readline()
264         kargsfb.close()
265         moreargs = moreargs.strip()
266         log.write( 'Parsed in "%s" kexec args from /kargs.txt\n' % moreargs )
267         kargs = kargs + " " + moreargs
268     except IOError:
269         # /kargs.txt does not exist, which is fine. Just kexec with default
270         # kargs, which is ramdisk_size=8192
271         pass 
272
273     utils.sysexec_noerr( 'hwclock --systohc --utc ', log )
274     utils.breakpoint ("Before kexec");
275     try:
276         utils.sysexec( 'kexec --force --initrd=/tmp/initrd --append="%s" /tmp/kernel' % kargs, log)
277     except Exceptions.BootManagerException, e:
278         # if kexec fails, we've shut the machine down to a point where nothing
279         # can run usefully anymore (network down, all modules unloaded, file
280         # systems unmounted. write out the error, and cancel the boot process
281
282         log.write( "\n\n" )
283         log.write( "-------------------------------------------------------\n" )
284         log.write( "kexec failed with the following error. Please report\n" )
285         log.write( "this problem to support@planet-lab.org.\n\n" )
286         log.write( str(e) + "\n\n" )
287         log.write( "The boot process has been canceled.\n" )
288         log.write( "-------------------------------------------------------\n\n" )
289
290     return