fix other typo
[bootmanager.git] / source / steps / InstallPartitionDisks.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, sys
11 import string
12 import popen2
13
14
15 from Exceptions import *
16 import utils
17 import BootServerRequest
18
19 import ModelOptions
20
21 def Run( vars, log ):
22     """
23     Setup the block devices for install, partition them w/ LVM
24     
25     Expect the following variables from the store:
26     INSTALL_BLOCK_DEVICES    list of block devices to install onto
27     TEMP_PATH                somewhere to store what we need to run
28     ROOT_SIZE                the size of the root logical volume
29     SWAP_SIZE                the size of the swap partition
30     """
31
32     log.write( "\n\nStep: Install: partitioning disks.\n" )
33         
34     # make sure we have the variables we need
35     try:
36         TEMP_PATH= vars["TEMP_PATH"]
37         if TEMP_PATH == "":
38             raise ValueError, "TEMP_PATH"
39
40         INSTALL_BLOCK_DEVICES= vars["INSTALL_BLOCK_DEVICES"]
41         if( len(INSTALL_BLOCK_DEVICES) == 0 ):
42             raise ValueError, "INSTALL_BLOCK_DEVICES is empty"
43
44         ROOT_SIZE= vars["ROOT_SIZE"]
45         if ROOT_SIZE == "" or ROOT_SIZE == 0:
46             raise ValueError, "ROOT_SIZE invalid"
47
48         SWAP_SIZE= vars["SWAP_SIZE"]
49         if SWAP_SIZE == "" or SWAP_SIZE == 0:
50             raise ValueError, "SWAP_SIZE invalid"
51
52         NODE_MODEL_OPTIONS= vars["NODE_MODEL_OPTIONS"]
53
54         PARTITIONS= vars["PARTITIONS"]
55         if PARTITIONS == None:
56             raise ValueError, "PARTITIONS"
57
58         if NODE_MODEL_OPTIONS & ModelOptions.RAWDISK:
59             VSERVERS_SIZE= "-1"
60             if "VSERVER_SIZE" in vars:
61                 VSERVERS_SIZE= vars["VSERVERS_SIZE"]
62                 if VSERVERS_SIZE == "" or VSERVERS_SIZE == 0:
63                     raise ValueError, "VSERVERS_SIZE"
64
65     except KeyError, var:
66         raise BootManagerException, "Missing variable in vars: %s\n" % var
67     except ValueError, var:
68         raise BootManagerException, "Variable in vars, shouldn't be: %s\n" % var
69
70     bs_request= BootServerRequest.BootServerRequest(vars)
71
72     
73     # disable swap if its on
74     utils.sysexec_noerr( "swapoff %s" % PARTITIONS["swap"], log )
75
76     # shutdown and remove any lvm groups/volumes
77     utils.sysexec_noerr( "vgscan", log )
78     utils.sysexec_noerr( "vgchange -ay", log )        
79     utils.sysexec_noerr( "lvremove -f %s" % PARTITIONS["root"], log )
80     utils.sysexec_noerr( "lvremove -f %s" % PARTITIONS["swap"], log )
81     utils.sysexec_noerr( "lvremove -f %s" % PARTITIONS["vservers"], log )
82     utils.sysexec_noerr( "vgchange -an", log )
83     utils.sysexec_noerr( "vgremove planetlab", log )
84
85     log.write( "Running vgscan for devices\n" )
86     utils.sysexec_noerr( "vgscan", log )
87     
88     used_devices= []
89
90     INSTALL_BLOCK_DEVICES.sort()
91     for device in INSTALL_BLOCK_DEVICES:
92
93         if single_partition_device( device, vars, log ):
94             if (len(used_devices) > 0 and
95                 (vars['NODE_MODEL_OPTIONS'] & ModelOptions.RAWDISK)):
96                 log.write( "Running in raw disk mode, not using %s.\n" % device )
97             else:
98                 used_devices.append( device )
99                 log.write( "Successfully initialized %s\n" % device )
100         else:
101             log.write( "Unable to partition %s, not using it.\n" % device )
102             continue
103
104     # list of devices to be used with vgcreate
105     vg_device_list= ""
106
107     # initialize the physical volumes
108     for device in used_devices:
109
110         part_path= get_partition_path_from_device( device, vars, log )
111         
112         if not create_lvm_physical_volume( part_path, vars, log ):
113             raise BootManagerException, "Could not create lvm physical volume " \
114                   "on partition %s" % part_path
115         
116         vg_device_list = vg_device_list + " " + part_path
117
118     # create an lvm volume group
119     utils.sysexec( "vgcreate -s32M planetlab %s" % vg_device_list, log)
120
121     # create swap logical volume
122     utils.sysexec( "lvcreate -L%s -nswap planetlab" % SWAP_SIZE, log )
123
124     # create root logical volume
125     utils.sysexec( "lvcreate -L%s -nroot planetlab" % ROOT_SIZE, log )
126
127     if vars['NODE_MODEL_OPTIONS'] & ModelOptions.RAWDISK and VSERVERS_SIZE != "-1":
128         utils.sysexec( "lvcreate -L%s -nvservers planetlab" % VSERVERS_SIZE, log )
129         remaining_extents= get_remaining_extents_on_vg( vars, log )
130         utils.sysexec( "lvcreate -l%s -nrawdisk planetlab" % remaining_extents, log )
131     else:
132         # create vservers logical volume with all remaining space
133         # first, we need to get the number of remaining extents we can use
134         remaining_extents= get_remaining_extents_on_vg( vars, log )
135         
136         utils.sysexec( "lvcreate -l%s -nvservers planetlab" % remaining_extents, log )
137
138     # activate volume group (should already be active)
139     #utils.sysexec( TEMP_PATH + "vgchange -ay planetlab", log )
140
141     # make swap
142     utils.sysexec( "mkswap %s" % PARTITIONS["swap"], log )
143
144     # check if badhd option has been set
145     option = ''
146     txt = ''
147     if NODE_MODEL_OPTIONS & ModelOptions.BADHD:
148         option = '-c'
149         txt = " with bad block search enabled, which may take a while"
150     
151     # filesystems partitions names and their corresponding
152     # reserved-blocks-percentages
153     filesystems = {"root":5,"vservers":0}
154
155     # make the file systems
156     for fs in filesystems.keys():
157         # get the reserved blocks percentage
158         rbp = filesystems[fs]
159         devname = PARTITIONS[fs]
160         log.write("formatting %s partition (%s)%s.\n" % (fs,devname,txt))
161         utils.sysexec( "mkfs.ext2 -q %s -m %d -j %s" % (option,rbp,devname), log )
162
163     # disable time/count based filesystems checks
164     for filesystem in ("root","vservers"):
165         utils.sysexec_noerr( "tune2fs -c -1 -i 0 %s" % PARTITIONS[filesystem], log)
166
167     # save the list of block devices in the log
168     log.write( "Block devices used (in lvm): %s\n" % repr(used_devices))
169
170     # list of block devices used may be updated
171     vars["INSTALL_BLOCK_DEVICES"]= used_devices
172
173     return 1
174
175
176 import parted
177 def single_partition_device( device, vars, log ):
178     """
179     initialize a disk by removing the old partition tables,
180     and creating a new single partition that fills the disk.
181
182     return 1 if sucessful, 0 otherwise
183     """
184
185     # two forms, depending on which version of pyparted we have
186     try:
187         version=parted.version()
188         return single_partition_device_2_x (device, vars, log)
189     except:
190         return single_partition_device_1_x (device, vars, log)
191
192         
193
194 def single_partition_device_1_x ( device, vars, log):
195     
196     lvm_flag= parted.partition_flag_get_by_name('lvm')
197     
198     try:
199         print >>log, "Using pyparted 1.x"
200         # wipe the old partition table
201         utils.sysexec( "dd if=/dev/zero of=%s bs=512 count=1" % device, log )
202
203         # get the device
204         dev= parted.PedDevice.get(device)
205
206         # create a new partition table
207         disk= dev.disk_new_fresh(parted.disk_type_get("msdos"))
208
209         # create one big partition on each block device
210         constraint= dev.constraint_any()
211
212         new_part= disk.partition_new(
213             parted.PARTITION_PRIMARY,
214             parted.file_system_type_get("ext2"),
215             0, 1 )
216
217         # make it an lvm partition
218         new_part.set_flag(lvm_flag,1)
219
220         # actually add the partition to the disk
221         disk.add_partition(new_part, constraint)
222
223         disk.maximize_partition(new_part,constraint)
224
225         disk.commit()
226         del disk
227             
228     except BootManagerException, e:
229         log.write( "BootManagerException while running: %s\n" % str(e) )
230         return 0
231
232     except parted.error, e:
233         log.write( "parted exception while running: %s\n" % str(e) )
234         return 0
235                    
236     return 1
237
238
239
240 def single_partition_device_2_x ( device, vars, log):
241     try:
242         print >>log, "Using pyparted 2.x"
243         # wipe the old partition table
244         utils.sysexec( "dd if=/dev/zero of=%s bs=512 count=1" % device, log )
245         # get the device
246         dev= parted.Device(device)
247         # create a new partition table
248         disk= parted.freshDisk(dev,'msdos')
249         # create one big partition on each block device
250         constraint= parted.constraint.Constraint (device=dev)
251         geometry = parted.geometry.Geometry (device=dev, start=0, end=1)
252         fs = parted.filesystem.FileSystem (type="ext2",geometry=geometry)
253         new_part= parted.partition.Partition (disk, type=parted.PARTITION_NORMAL, 
254                                               fs=fs, geometry=geometry)
255         # make it an lvm partition
256         new_part.setFlag(parted.PARTITION_LVM)
257         # actually add the partition to the disk
258         disk.addPartition(new_part, constraint)
259         disk.maximizePartition(new_part,constraint)
260         disk.commit()
261         print >>log, 'Current disk for %s'%device,disk
262         print >>log, 'Current dev for %s'%device,dev
263         del disk
264     except Exception, e:
265         log.write( "Exception inside single_partition_device_2_x : %s\n" % str(e) )
266         import traceback
267         traceback.print_exc(file=log)
268         return 0
269                    
270     return 1
271
272
273
274 def create_lvm_physical_volume( part_path, vars, log ):
275     """
276     make the specificed partition a lvm physical volume.
277
278     return 1 if successful, 0 otherwise.
279     """
280
281     try:
282         # again, wipe any old data, this time on the partition
283         utils.sysexec( "dd if=/dev/zero of=%s bs=512 count=1" % part_path, log )
284         ### patch Thierry Parmentelat, required on some hardware
285         import time
286         time.sleep(1)
287         utils.sysexec( "pvcreate -ffy %s" % part_path, log )
288     except BootManagerException, e:
289         log.write( "create_lvm_physical_volume failed.\n" )
290         return 0
291
292     return 1
293
294
295
296 def get_partition_path_from_device( device, vars, log ):
297     """
298     given a device, return the path of the first partition on the device
299     """
300
301     # those who wrote the cciss driver just had to make it difficult
302     cciss_test= "/dev/cciss"
303     if device[:len(cciss_test)] == cciss_test:
304         part_path= device + "p1"
305     else:
306         part_path= device + "1"
307
308     return part_path
309
310
311
312 def get_remaining_extents_on_vg( vars, log ):
313     """
314     return the free amount of extents on the planetlab volume group
315     """
316     
317     c_stdout, c_stdin = popen2.popen2("vgdisplay -c planetlab")
318     result= string.strip(c_stdout.readline())
319     c_stdout.close()
320     c_stdin.close()
321     remaining_extents= string.split(result,":")[15]
322     
323     return remaining_extents