another module to blacklist for poweredge 175
[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 UpdateBootStateWithPLC
15 import UpdateNodeConfiguration
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 %s %s/vservers" % (PARTITIONS["vservers"],SYSIMG_PATH)
90         utils.sysexec( cmd, log )
91         cmd = "mount -t proc none %s/proc" % 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 %s %s" % (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 = "chroot %s /usr/bin/NodeUpdate.py start noreboot" % SYSIMG_PATH
121     else:
122         # for backwards compatibility
123         cmd = "chroot %s /usr/local/planetlab/bin/NodeUpdate.py start noreboot" % SYSIMG_PATH
124     utils.sysexec( cmd, log )
125
126     # the following step should be done by NM
127     UpdateNodeConfiguration.Run( vars, log )
128
129     log.write( "Updating ssh public host key with PLC.\n" )
130     ssh_host_key= ""
131     try:
132         ssh_host_key_file= file("%s/etc/ssh/ssh_host_rsa_key.pub"%SYSIMG_PATH,"r")
133         ssh_host_key= ssh_host_key_file.read().strip()
134         ssh_host_key_file.close()
135         ssh_host_key_file= None
136     except IOError, e:
137         pass
138
139     update_vals= {}
140     update_vals['ssh_host_key']= ssh_host_key
141     BootAPI.call_api_function( vars, "BootUpdateNode", (update_vals,) )
142
143     # get the kernel version
144     option = ''
145     if NODE_MODEL_OPTIONS & ModelOptions.SMP:
146         option = 'smp'
147
148     log.write( "Copying kernel and initrd for booting.\n" )
149     utils.sysexec( "cp %s/boot/kernel-boot%s /tmp/kernel" % (SYSIMG_PATH,option), log )
150     utils.sysexec( "cp %s/boot/initrd-boot%s /tmp/initrd" % (SYSIMG_PATH,option), log )
151
152     BootAPI.save(vars)
153
154     log.write( "Unmounting disks.\n" )
155     try:
156         # backwards compat, though, we should never hit this case post PL 3.2
157         os.stat("%s/rcfs/taskclass"%SYSIMG_PATH)
158         utils.sysexec_noerr( "chroot %s umount /rcfs" % SYSIMG_PATH, log )
159     except OSError, e:
160         pass
161
162     utils.sysexec_noerr( "umount %s/proc" % SYSIMG_PATH, log )
163     utils.sysexec_noerr( "umount -r %s/vservers" % SYSIMG_PATH, log )
164     utils.sysexec_noerr( "umount -r %s" % SYSIMG_PATH, log )
165     utils.sysexec_noerr( "vgchange -an", log )
166
167     ROOT_MOUNTED= 0
168     vars['ROOT_MOUNTED']= 0
169
170     log.write( "Unloading modules and chain booting to new kernel.\n" )
171
172     # further use of log after Upload will only output to screen
173     log.Upload()
174
175     # regardless of whether kexec works or not, we need to stop trying to
176     # run anything
177     cancel_boot_flag= "/tmp/CANCEL_BOOT"
178     utils.sysexec( "touch %s" % cancel_boot_flag, log )
179
180     # on 2.x cds (2.4 kernel) for sure, we need to shutdown everything
181     # to get kexec to work correctly. Even on 3.x cds (2.6 kernel),
182     # there are a few buggy drivers that don't disable their hardware
183     # correctly unless they are first unloaded.
184     
185     utils.sysexec_noerr( "ifconfig eth0 down", log )
186
187     utils.sysexec_noerr( "killall dhclient", log )
188         
189     utils.sysexec_noerr( "umount -a -r -t ext2,ext3", log )
190     utils.sysexec_noerr( "modprobe -r lvm-mod", log )
191     
192     # modules that should not get unloaded
193     # unloading cpqphp causes a kernel panic
194     blacklist = [ "floppy", "cpqphp", "i82875p_edac", "mptspi"]
195     try:
196         modules= file("/tmp/loadedmodules","r")
197         
198         for line in modules:
199             module= string.strip(line)
200             if module in blacklist :
201                 log.write("Skipping unload of kernel module '%s'.\n"%module)
202             elif module != "":
203                 log.write( "Unloading %s\n" % module )
204                 utils.sysexec_noerr( "modprobe -r %s" % module, log )
205                 if "e1000" in module:
206                     log.write("Unloading e1000 driver; sleeping 4 seconds...\n")
207                     time.sleep(4)
208
209         modules.close()
210     except IOError:
211         log.write( "Couldn't read /tmp/loadedmodules, continuing.\n" )
212
213     try:
214         modules= file("/proc/modules", "r")
215
216         # Get usage count for USB
217         usb_usage = 0
218         for line in modules:
219             try:
220                 # Module Size UsageCount UsedBy State LoadAddress
221                 parts= string.split(line)
222
223                 if parts[0] == "usb_storage":
224                     usb_usage += int(parts[2])
225             except IndexError, e:
226                 log.write( "Couldn't parse /proc/modules, continuing.\n" )
227
228         modules.seek(0)
229
230         for line in modules:
231             try:
232                 # Module Size UsageCount UsedBy State LoadAddress
233                 parts= string.split(line)
234
235                 # While we would like to remove all "unused" modules,
236                 # you can't trust usage count, especially for things
237                 # like network drivers or RAID array drivers. Just try
238                 # and unload a few specific modules that we know cause
239                 # problems during chain boot, such as USB host
240                 # controller drivers (HCDs) (PL6577).
241                 # if int(parts[2]) == 0:
242                 if False and re.search('_hcd$', parts[0]):
243                     if usb_usage > 0:
244                         log.write( "NOT unloading %s since USB may be in use\n" % parts[0] )
245                     else:
246                         log.write( "Unloading %s\n" % parts[0] )
247                         utils.sysexec_noerr( "modprobe -r %s" % parts[0], log )
248             except IndexError, e:
249                 log.write( "Couldn't parse /proc/modules, continuing.\n" )
250     except IOError:
251         log.write( "Couldn't read /proc/modules, continuing.\n" )
252
253
254     kargs = "root=%s ramdisk_size=8192" % PARTITIONS["mapper-root"]
255     if NODE_MODEL_OPTIONS & ModelOptions.SMP:
256         kargs = kargs + " " + "acpi=off"
257     try:
258         kargsfb = open("/kargs.txt","r")
259         moreargs = kargsfb.readline()
260         kargsfb.close()
261         moreargs = moreargs.strip()
262         log.write( 'Parsed in "%s" kexec args from /kargs.txt\n' % moreargs )
263         kargs = kargs + " " + moreargs
264     except IOError:
265         # /kargs.txt does not exist, which is fine. Just kexec with default
266         # kargs, which is ramdisk_size=8192
267         pass 
268
269     utils.breakpoint ("Before kexec");
270     try:
271         utils.sysexec( 'kexec --force --initrd=/tmp/initrd ' \
272                        '--append="%s" /tmp/kernel' % kargs)
273     except BootManagerException, e:
274         # if kexec fails, we've shut the machine down to a point where nothing
275         # can run usefully anymore (network down, all modules unloaded, file
276         # systems unmounted. write out the error, and cancel the boot process
277
278         log.write( "\n\n" )
279         log.write( "-------------------------------------------------------\n" )
280         log.write( "kexec failed with the following error. Please report\n" )
281         log.write( "this problem to support@planet-lab.org.\n\n" )
282         log.write( str(e) + "\n\n" )
283         log.write( "The boot process has been canceled.\n" )
284         log.write( "-------------------------------------------------------\n\n" )
285
286     return