884c65de69a841abc653e456a6e8af7e74ba3ae4
[bootmanager.git] / source / steps / InstallUninitHardware.py
1 # Copyright (c) 2003 Intel Corporation
2 # All rights reserved.
3
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
7
8 #     * Redistributions of source code must retain the above copyright
9 #       notice, this list of conditions and the following disclaimer.
10
11 #     * Redistributions in binary form must reproduce the above
12 #       copyright notice, this list of conditions and the following
13 #       disclaimer in the documentation and/or other materials provided
14 #       with the distribution.
15
16 #     * Neither the name of the Intel Corporation nor the names of its
17 #       contributors may be used to endorse or promote products derived
18 #       from this software without specific prior written permission.
19
20 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INTEL OR
24 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32 # EXPORT LAWS: THIS LICENSE ADDS NO RESTRICTIONS TO THE EXPORT LAWS OF
33 # YOUR JURISDICTION. It is licensee's responsibility to comply with any
34 # export regulations applicable in licensee's jurisdiction. Under
35 # CURRENT (May 2000) U.S. export regulations this software is eligible
36 # for export from the U.S. and can be downloaded by or otherwise
37 # exported or reexported worldwide EXCEPT to U.S. embargoed destinations
38 # which include Cuba, Iraq, Libya, North Korea, Iran, Syria, Sudan,
39 # Afghanistan and any other country to which the U.S. has embargoed
40 # goods and services.
41
42
43 import os
44
45 from Exceptions import *
46 import utils
47
48
49
50 def Run( vars, log ):
51     """
52     Unitializes hardware:
53     - unmount everything mounted during install, except the
54     /dev/planetlab/root and /dev/planetlab/vservers. This includes
55     calling swapoff for /dev/planetlab/swap.
56
57     Except the following variables from the store:
58     TEMP_PATH         the path to download and store temp files to
59     SYSIMG_PATH       the path where the system image will be mounted
60                       (always starts with TEMP_PATH)
61     PARTITIONS        dictionary of generic part. types (root/swap)
62                       and their associated devices.
63
64     Sets the following variables:
65     None
66     
67     """
68
69     log.write( "\n\nStep: Install: Shutting down installer.\n" )
70
71     # make sure we have the variables we need
72     try:
73         TEMP_PATH= vars["TEMP_PATH"]
74         if TEMP_PATH == "":
75             raise ValueError, "TEMP_PATH"
76
77         SYSIMG_PATH= vars["SYSIMG_PATH"]
78         if SYSIMG_PATH == "":
79             raise ValueError, "SYSIMG_PATH"
80
81         PARTITIONS= vars["PARTITIONS"]
82         if PARTITIONS == None:
83             raise ValueError, "PARTITIONS"
84
85     except KeyError, var:
86         raise BootManagerException, "Missing variable in vars: %s\n" % var
87     except ValueError, var:
88         raise BootManagerException, "Variable in vars, shouldn't be: %s\n" % var
89
90
91     try:
92         # make sure the required partitions exist
93         val= PARTITIONS["root"]
94         val= PARTITIONS["swap"]
95         val= PARTITIONS["vservers"]
96     except KeyError, part:
97         raise BootManagerException, "Missing partition in PARTITIONS: %s\n" % part
98
99     try:
100         # backwards compat, though, we should never hit this case post PL 3.2
101         os.stat("%s/rcfs/taskclass"%SYSIMG_PATH)
102         utils.sysexec_noerr( "chroot %s umount /rcfs" % SYSIMG_PATH, log )
103     except OSError, e:
104         pass
105             
106     log.write( "Unmounting proc.\n" )
107     utils.sysexec( "umount %s/proc" % SYSIMG_PATH, log )
108
109     log.write( "Shutting down swap\n" )
110     utils.sysexec( "swapoff %s" % PARTITIONS["swap"], log )
111
112     return 1