not all platforms have the python2 hook
[bootmanager.git] / source / steps / InstallWriteConfig.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 # expected /proc/partitions format
9
10 import os, string
11
12 from Exceptions import *
13 import utils
14 import systeminfo
15 import BootAPI
16 import ModelOptions
17
18 def Run( vars, log ):
19
20     """
21     Writes out the following configuration files for the node:
22     /etc/fstab
23     /etc/resolv.conf (if applicable)
24     /etc/ssh/ssh_host_key
25     /etc/ssh/ssh_host_rsa_key
26     /etc/ssh/ssh_host_dsa_key
27     
28     Expect the following variables from the store:
29     VERSION                 the version of the install
30     SYSIMG_PATH             the path where the system image will be mounted
31                             (always starts with TEMP_PATH)
32     PARTITIONS              dictionary of generic part. types (root/swap)
33                             and their associated devices.
34     PLCONF_DIR              The directory to store the configuration file in
35     INTERFACE_SETTINGS  A dictionary of the values from the network
36                                 configuration file
37     BOOT_CD_VERSION          A tuple of the current bootcd version
38     
39     Sets the following variables:
40     None
41     
42     """
43
44     log.write( "\n\nStep: Install: Writing configuration files.\n" )
45     
46     # make sure we have the variables we need
47     try:
48         VERSION= vars["VERSION"]
49         if VERSION == "":
50             raise ValueError, "VERSION"
51
52         SYSIMG_PATH= vars["SYSIMG_PATH"]
53         if SYSIMG_PATH == "":
54             raise ValueError, "SYSIMG_PATH"
55
56         PARTITIONS= vars["PARTITIONS"]
57         if PARTITIONS == None:
58             raise ValueError, "PARTITIONS"
59
60         PLCONF_DIR= vars["PLCONF_DIR"]
61         if PLCONF_DIR == "":
62             raise ValueError, "PLCONF_DIR"
63
64         INTERFACE_SETTINGS= vars["INTERFACE_SETTINGS"]
65         if INTERFACE_SETTINGS == "":
66             raise ValueError, "INTERFACE_SETTINGS"
67
68         BOOT_CD_VERSION= vars["BOOT_CD_VERSION"]
69         if BOOT_CD_VERSION == "":
70             raise ValueError, "BOOT_CD_VERSION"
71
72     except KeyError, var:
73         raise BootManagerException, "Missing variable in vars: %s\n" % var
74     except ValueError, var:
75         raise BootManagerException, "Variable in vars, shouldn't be: %s\n" % var
76
77     log.write( "Setting local time to UTC\n" )
78     utils.sysexec( "chroot %s ln -sf /usr/share/zoneinfo/UTC /etc/localtime" % \
79                    SYSIMG_PATH, log )
80
81     log.write( "Enabling ntp at boot\n" )
82     utils.sysexec( "chroot %s chkconfig ntpd on" % SYSIMG_PATH, log )
83
84     log.write( "Creating system directory %s\n" % PLCONF_DIR )
85     if not utils.makedirs( "%s/%s" % (SYSIMG_PATH,PLCONF_DIR) ):
86         log.write( "Unable to create directory\n" )
87         return 0
88
89     log.write( "Writing system /etc/fstab\n" )
90     fstab= file( "%s/etc/fstab" % SYSIMG_PATH, "w" )
91     fstab.write( "%s           none        swap      sw        0 0\n" % \
92                  PARTITIONS["mapper-swap"] )
93     fstab.write( "%s           /           ext3      defaults  0 0\n" % \
94                  PARTITIONS["mapper-root"] )
95     fstab.write( "%s           /vservers   ext3      tagxid,defaults  0 0\n" % \
96                  PARTITIONS["mapper-vservers"] )
97     fstab.write( "none         /proc       proc      defaults  0 0\n" )
98     fstab.write( "none         /dev/shm    tmpfs     defaults  0 0\n" )
99     fstab.write( "none         /dev/pts    devpts    defaults  0 0\n" )
100     # no longer needed
101     # fstab.write( "none         /rcfs       rcfs      defaults  0 0\n" )
102     fstab.close()
103
104     log.write( "Writing system /etc/issue\n" )
105     issue= file( "%s/etc/issue" % SYSIMG_PATH, "w" )
106     issue.write( "PlanetLab Node: \\n\n" )
107     issue.write( "Kernel \\r on an \\m\n" )
108     issue.write( "http://www.planet-lab.org\n\n" )
109     issue.close()
110
111     log.write( "Setting up authentication (non-ssh)\n" )
112     utils.sysexec( "chroot %s authconfig --nostart --kickstart --enablemd5 " \
113                    "--enableshadow" % SYSIMG_PATH, log )
114     utils.sysexec( "sed -e 's/^root\:\:/root\:*\:/g' " \
115                    "%s/etc/shadow > %s/etc/shadow.new" % \
116                    (SYSIMG_PATH,SYSIMG_PATH), log )
117     utils.sysexec( "chroot %s mv " \
118                    "/etc/shadow.new /etc/shadow" % SYSIMG_PATH, log )
119     utils.sysexec( "chroot %s chmod 400 /etc/shadow" % SYSIMG_PATH, log )
120
121     # if we are setup with dhcp, copy the current /etc/resolv.conf into
122     # the system image so we can run programs inside that need network access
123     method= ""
124     try:
125         method= vars['INTERFACE_SETTINGS']['method']
126     except:
127         pass
128     
129     if method == "dhcp":
130         utils.sysexec( "cp /etc/resolv.conf %s/etc/" % SYSIMG_PATH, log )
131
132     log.write( "Writing node install version\n" )
133     utils.makedirs( "%s/etc/planetlab" % SYSIMG_PATH )
134     ver= file( "%s/etc/planetlab/install_version" % SYSIMG_PATH, "w" )
135     ver.write( "%s\n" % VERSION )
136     ver.close()
137
138     log.write( "Creating ssh host keys\n" )
139     key_gen_prog= "/usr/bin/ssh-keygen"
140
141     log.write( "Generating SSH1 RSA host key:\n" )
142     key_file= "/etc/ssh/ssh_host_key"
143     utils.sysexec( "chroot %s %s -q -t rsa1 -f %s -C '' -N ''" %
144                    (SYSIMG_PATH,key_gen_prog,key_file), log )
145     utils.sysexec( "chmod 600 %s/%s" % (SYSIMG_PATH,key_file), log )
146     utils.sysexec( "chmod 644 %s/%s.pub" % (SYSIMG_PATH,key_file), log )
147     
148     log.write( "Generating SSH2 RSA host key:\n" )
149     key_file= "/etc/ssh/ssh_host_rsa_key"
150     utils.sysexec( "chroot %s %s -q -t rsa -f %s -C '' -N ''" %
151                    (SYSIMG_PATH,key_gen_prog,key_file), log )
152     utils.sysexec( "chmod 600 %s/%s" % (SYSIMG_PATH,key_file), log )
153     utils.sysexec( "chmod 644 %s/%s.pub" % (SYSIMG_PATH,key_file), log )
154     
155     log.write( "Generating SSH2 DSA host key:\n" )
156     key_file= "/etc/ssh/ssh_host_dsa_key"
157     utils.sysexec( "chroot %s %s -q -t dsa -f %s -C '' -N ''" %
158                    (SYSIMG_PATH,key_gen_prog,key_file), log )
159     utils.sysexec( "chmod 600 %s/%s" % (SYSIMG_PATH,key_file), log )
160     utils.sysexec( "chmod 644 %s/%s.pub" % (SYSIMG_PATH,key_file), log )
161
162     return 1