d22ed2a7d8b0003ad1300b58b8aa0ce3bd58f7e7
[bootmanager.git] / source / steps / InstallBootstrapFS.py
1 #!/usr/bin/python
2 #
3 # Copyright (c) 2003 Intel Corporation
4 # All rights reserved.
5 #
6 # Copyright (c) 2004-2007 The Trustees of Princeton University
7 # All rights reserved.
8 # expected /proc/partitions format
9
10 import os, sys, string
11 import popen2
12 import shutil
13 import traceback 
14 import time
15
16 from Exceptions import *
17 import utils
18 import BootServerRequest
19 import BootAPI
20
21
22 def Run( vars, log ):
23     """
24     Download core + extensions bootstrapfs tarballs and install on the hard drive
25     
26     Expect the following variables from the store:
27     SYSIMG_PATH          the path where the system image will be mounted
28     PARTITIONS           dictionary of generic part. types (root/swap)
29                          and their associated devices.
30     NODE_ID              the id of this machine
31     
32     Sets the following variables:
33     TEMP_BOOTCD_PATH     where the boot cd is remounted in the temp
34                          path
35     ROOT_MOUNTED         set to 1 when the the base logical volumes
36                          are mounted.
37     """
38
39     log.write( "\n\nStep: Install: bootstrapfs tarball.\n" )
40
41     # make sure we have the variables we need
42     try:
43         SYSIMG_PATH= vars["SYSIMG_PATH"]
44         if SYSIMG_PATH == "":
45             raise ValueError, "SYSIMG_PATH"
46
47         PARTITIONS= vars["PARTITIONS"]
48         if PARTITIONS == None:
49             raise ValueError, "PARTITIONS"
50
51         NODE_ID= vars["NODE_ID"]
52         if NODE_ID == "":
53             raise ValueError, "NODE_ID"
54
55         VERSION=vars['VERSION'] or 'unknown'
56
57     except KeyError, var:
58         raise BootManagerException, "Missing variable in vars: %s\n" % var
59     except ValueError, var:
60         raise BootManagerException, "Variable in vars, shouldn't be: %s\n" % var
61
62
63     try:
64         # make sure the required partitions exist
65         val= PARTITIONS["root"]
66         val= PARTITIONS["swap"]
67         val= PARTITIONS["vservers"]
68     except KeyError, part:
69         log.write( "Missing partition in PARTITIONS: %s\n" % part )
70         return 0   
71
72     bs_request= BootServerRequest.BootServerRequest(vars)
73     
74     log.write( "turning on swap space\n" )
75     utils.sysexec( "swapon %s" % PARTITIONS["swap"], log )
76
77     # make sure the sysimg dir is present
78     utils.makedirs( SYSIMG_PATH )
79
80     log.write( "mounting root file system\n" )
81     utils.sysexec( "mount -t ext3 %s %s" % (PARTITIONS["root"],SYSIMG_PATH), log )
82
83     log.write( "mounting vserver partition in root file system\n" )
84     utils.makedirs( SYSIMG_PATH + "/vservers" )
85     utils.sysexec( "mount -t ext3 %s %s/vservers" % (PARTITIONS["vservers"],
86                                                      SYSIMG_PATH), log )
87
88     vars['ROOT_MOUNTED']= 1
89
90     # call getNodeFlavour
91     try:
92         node_flavour = BootAPI.call_api_function(vars, "GetNodeFlavour", (NODE_ID,) )
93         nodefamily = node_flavour['nodefamily']
94         extensions = node_flavour['extensions']
95         plain = node_flavour['plain']
96     except:
97         raise BootManagerException ("Could not call GetNodeFlavour - need PLCAPI-5.0")
98     
99     log.write ("Retrieved 'virt' style %s from GetNodeFlavour\n"%node_flavour['virt'])
100     # the 'plain' option is for tests mostly
101     if plain:
102         download_suffix=".tar"
103         uncompress_option=""
104         log.write("Using plain bootstrapfs images\n")
105     else:
106         download_suffix=".tar.bz2"
107         uncompress_option="-j"
108         log.write("Using compressed bootstrapfs images\n")
109
110     log.write ("Using nodefamily=%s\n"%(nodefamily))
111     if not extensions:
112         log.write("Installing only core software\n")
113     else:
114         log.write("Requested extensions %r\n" % extensions)
115     
116     bootstrapfs_names = [ nodefamily ] + extensions
117
118     for name in bootstrapfs_names:
119         tarball = "bootstrapfs-%s%s"%(name,download_suffix)
120         source_file= "/boot/%s" % (tarball)
121         dest_file= "%s/%s" % (SYSIMG_PATH, tarball)
122
123         source_hash_file= "/boot/%s.sha1sum" % (tarball)
124         dest_hash_file= "%s/%s.sha1sum" % (SYSIMG_PATH, tarball)
125
126         time_beg=time.time()
127         log.write( "downloading %s\n" % source_file )
128         # 30 is the connect timeout, 14400 is the max transfer time in
129         # seconds (4 hours)
130         result = bs_request.DownloadFile( source_file, None, None,
131                                          1, 1, dest_file,
132                                          30, 14400)
133         time_end=time.time()
134         duration=int(time_end-time_beg)
135         log.write("Done downloading (%s seconds)\n"%duration)
136         if result:
137             # Download SHA1 checksum file
138             log.write( "downloading sha1sum for %s\n"%source_file)
139             result = bs_request.DownloadFile( source_hash_file, None, None,
140                                          1, 1, dest_hash_file,
141                                          30, 14400)
142  
143             log.write( "verifying sha1sum for %s\n"%source_file)
144             if not utils.check_file_hash(dest_file, dest_hash_file):
145                 raise BootManagerException, "FATAL: SHA1 checksum does not match between %s and %s" % (source_file, source_hash_file)
146                 
147             
148             time_beg=time.time()
149             log.write( "extracting %s in %s\n" % (dest_file,SYSIMG_PATH) )
150             result = utils.sysexec( "tar -C %s -xpf %s %s" % (SYSIMG_PATH,dest_file,uncompress_option), log )
151             time_end=time.time()
152             duration=int(time_end-time_beg)
153             log.write( "Done extracting (%s seconds)\n"%duration)
154             utils.removefile( dest_file )
155         else:
156             # the main tarball is required
157             if name == nodefamily:
158                 raise BootManagerException, "FATAL: Unable to download main tarball %s from server." % \
159                     source_file
160             # for extensions, just print a warning
161             else:
162                 log.write("WARNING: tarball for extension %s not found\n"%(name))
163
164     # copy resolv.conf from the base system into our temp dir
165     # so DNS lookups work correctly while we are chrooted
166     log.write( "Copying resolv.conf to temp dir\n" )
167     utils.sysexec( "cp /etc/resolv.conf %s/etc/" % SYSIMG_PATH, log )
168
169     # Copy the boot server certificate(s) and GPG public key to
170     # /usr/boot in the temp dir.
171     log.write( "Copying boot server certificates and public key\n" )
172
173     if os.path.exists("/usr/boot"):
174         utils.makedirs(SYSIMG_PATH + "/usr")
175         shutil.copytree("/usr/boot", SYSIMG_PATH + "/usr/boot")
176     elif os.path.exists("/usr/bootme"):
177         utils.makedirs(SYSIMG_PATH + "/usr/boot")
178         boot_server = file("/usr/bootme/BOOTSERVER").readline().strip()
179         shutil.copy("/usr/bootme/cacert/" + boot_server + "/cacert.pem",
180                     SYSIMG_PATH + "/usr/boot/cacert.pem")
181         file(SYSIMG_PATH + "/usr/boot/boot_server", "w").write(boot_server)
182         shutil.copy("/usr/bootme/pubring.gpg", SYSIMG_PATH + "/usr/boot/pubring.gpg")
183         
184     # For backward compatibility
185     if os.path.exists("/usr/bootme"):
186         utils.makedirs(SYSIMG_PATH + "/mnt/cdrom")
187         shutil.copytree("/usr/bootme", SYSIMG_PATH + "/mnt/cdrom/bootme")
188
189     # Import the GPG key into the RPM database so that RPMS can be verified
190     utils.makedirs(SYSIMG_PATH + "/etc/pki/rpm-gpg")
191     utils.sysexec("gpg --homedir=/root --export --armor" \
192                   " --no-default-keyring --keyring %s/usr/boot/pubring.gpg" \
193                   " >%s/etc/pki/rpm-gpg/RPM-GPG-KEY-planetlab" % (SYSIMG_PATH, SYSIMG_PATH), log)
194     utils.sysexec_chroot(SYSIMG_PATH, "rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-planetlab", log)
195
196     # keep a log on the installed hdd
197     stamp=file(SYSIMG_PATH + "/bm-install.txt",'w')
198     now=time.strftime("%Y-%b-%d @ %H:%M %Z", time.gmtime())
199     stamp.write("Hard drive installed by BootManager %s\n"%VERSION)
200     stamp.write("Finished extraction of bootstrapfs on %s\n"%now)
201     stamp.write("Using nodefamily %s\n"%nodefamily)
202     stamp.close()
203
204     return 1