Changed NodeUpdate's path. Nothing should exist in /usr/local.
[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     # write out the session value /etc/planetlab/session
107     try:
108         session_file_path= "%s/%s/session" % (SYSIMG_PATH,PLCONF_DIR)
109         session_file= file( session_file_path, "w" )
110         session_file.write( str(NODE_SESSION) )
111         session_file.close()
112         session_file= None
113         log.write( "Updated /etc/planetlab/session\n" )
114     except IOError, e:
115         log.write( "Unable to write out /etc/planetlab/session, continuing anyway\n" )
116
117     # update configuration files
118     log.write( "Updating configuration files.\n" )
119     if os.path.exists( SYSIMG_PATH + "/etc/init.d/conf_files" ):
120         cmd = "/etc/init.d/conf_files start --noscripts"
121     else:
122         cmd = "/usr/bin/PlanetLabConf.py noscripts"
123     utils.sysexec( "chroot %s %s" % (SYSIMG_PATH, cmd), log )
124
125     # update node packages
126     log.write( "Running node update.\n" )
127     if os.path.exists( SYSIMG_PATH + "/usr/bin/NodeUpdate.py" ):
128         cmd = "chroot %s /usr/bin/NodeUpdate.py start noreboot" % SYSIMG_PATH
129     else:
130         # for backwards compatibility
131         cmd = "chroot %s /usr/local/planetlab/bin/NodeUpdate.py start noreboot" % SYSIMG_PATH
132     utils.sysexec( cmd, log )
133
134     log.write( "Updating ssh public host key with PLC.\n" )
135     ssh_host_key= ""
136     try:
137         ssh_host_key_file= file("%s/etc/ssh/ssh_host_rsa_key.pub"%SYSIMG_PATH,"r")
138         ssh_host_key= ssh_host_key_file.read().strip()
139         ssh_host_key_file.close()
140         ssh_host_key_file= None
141     except IOError, e:
142         pass
143
144     update_vals= {}
145     update_vals['ssh_host_key']= ssh_host_key
146     BootAPI.call_api_function( vars, "BootUpdateNode", (update_vals,) )
147
148     # get the kernel version
149     option = ''
150     if NODE_MODEL_OPTIONS & ModelOptions.SMP:
151         option = 'smp'
152
153     log.write( "Copying kernel and initrd for booting.\n" )
154     utils.sysexec( "cp %s/boot/kernel-boot%s /tmp/kernel" % (SYSIMG_PATH,option), log )
155     utils.sysexec( "cp %s/boot/initrd-boot%s /tmp/initrd" % (SYSIMG_PATH,option), log )
156
157     log.write( "Unmounting disks.\n" )
158     try:
159         # backwards compat, though, we should never hit this case post PL 3.2
160         os.stat("%s/rcfs/taskclass"%SYSIMG_PATH)
161         utils.sysexec_noerr( "chroot %s umount /rcfs" % SYSIMG_PATH, log )
162     except OSError, e:
163         pass
164
165     utils.sysexec_noerr( "umount %s/proc" % SYSIMG_PATH, log )
166     utils.sysexec_noerr( "umount -r %s/vservers" % SYSIMG_PATH, log )
167     utils.sysexec_noerr( "umount -r %s" % SYSIMG_PATH, log )
168     utils.sysexec_noerr( "vgchange -an", log )
169
170     ROOT_MOUNTED= 0
171     vars['ROOT_MOUNTED']= 0
172
173     log.write( "Unloading modules and chain booting to new kernel.\n" )
174
175     # further use of log after Upload will only output to screen
176     log.Upload()
177
178     # regardless of whether kexec works or not, we need to stop trying to
179     # run anything
180     cancel_boot_flag= "/tmp/CANCEL_BOOT"
181     utils.sysexec( "touch %s" % cancel_boot_flag, log )
182
183     # on 2.x cds (2.4 kernel) for sure, we need to shutdown everything
184     # to get kexec to work correctly. Even on 3.x cds (2.6 kernel),
185     # there are a few buggy drivers that don't disable their hardware
186     # correctly unless they are first unloaded.
187     
188     utils.sysexec_noerr( "ifconfig eth0 down", log )
189
190     if BOOT_CD_VERSION[0] == 2:
191         utils.sysexec_noerr( "killall dhcpcd", log )
192     elif BOOT_CD_VERSION[0] == 3:
193         utils.sysexec_noerr( "killall dhclient", log )
194         
195     utils.sysexec_noerr( "umount -a -r -t ext2,ext3", log )
196     utils.sysexec_noerr( "modprobe -r lvm-mod", log )
197     
198     try:
199         modules= file("/tmp/loadedmodules","r")
200         
201         for line in modules:
202             module= string.strip(line)
203             if module != "":
204                 log.write( "Unloading %s\n" % module )
205                 utils.sysexec_noerr( "modprobe -r %s" % module, log )
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 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     try:
268         utils.sysexec( 'kexec --force --initrd=/tmp/initrd ' \
269                        '--append="%s" /tmp/kernel' % kargs)
270     except BootManagerException, e:
271         # if kexec fails, we've shut the machine down to a point where nothing
272         # can run usefully anymore (network down, all modules unloaded, file
273         # systems unmounted. write out the error, and cancel the boot process
274
275         log.write( "\n\n" )
276         log.write( "-------------------------------------------------------\n" )
277         log.write( "kexec failed with the following error. Please report\n" )
278         log.write( "this problem to support@planet-lab.org.\n\n" )
279         log.write( str(e) + "\n\n" )
280         log.write( "The boot process has been canceled.\n" )
281         log.write( "-------------------------------------------------------\n\n" )
282
283     return