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