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