another angle to the 'try msdos, fallback to gpt' approach
[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 import time
14
15 from Exceptions import *
16 import utils
17 import BootServerRequest
18 import BootAPI
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 "VSERVERS_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 -f 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     # get partitions
108     partitions = []
109     for device in used_devices:
110         part_path= get_partition_path_from_device( device, vars, log )
111         partitions.append(part_path)
112    
113     # create raid partition
114     raid_partition = create_raid_partition(partitions, vars, log)
115     if raid_partition != None:
116         partitions = [raid_partition]      
117     log.write("PARTITIONS %s\n" %  str(partitions)) 
118     # initialize the physical volumes
119     for part_path in partitions:
120         if not create_lvm_physical_volume( part_path, vars, log ):
121             raise BootManagerException, "Could not create lvm physical volume " \
122                   "on partition %s" % part_path
123         vg_device_list = vg_device_list + " " + part_path
124
125     # create an lvm volume group
126     utils.sysexec( "vgcreate -s32M planetlab %s" % vg_device_list, log)
127
128     # create swap logical volume
129     utils.sysexec( "lvcreate -L%s -nswap planetlab" % SWAP_SIZE, log )
130
131     # create root logical volume
132     utils.sysexec( "lvcreate -L%s -nroot planetlab" % ROOT_SIZE, log )
133
134     if vars['NODE_MODEL_OPTIONS'] & ModelOptions.RAWDISK and VSERVERS_SIZE != "-1":
135         utils.sysexec( "lvcreate -L%s -nvservers planetlab" % VSERVERS_SIZE, log )
136         remaining_extents= get_remaining_extents_on_vg( vars, log )
137         utils.sysexec( "lvcreate -l%s -nrawdisk planetlab" % remaining_extents, log )
138     else:
139         # create vservers logical volume with all remaining space
140         # first, we need to get the number of remaining extents we can use
141         remaining_extents= get_remaining_extents_on_vg( vars, log )
142         
143         utils.sysexec( "lvcreate -l%s -nvservers planetlab" % remaining_extents, log )
144
145     # activate volume group (should already be active)
146     #utils.sysexec( TEMP_PATH + "vgchange -ay planetlab", log )
147
148     # make swap
149     utils.sysexec( "mkswap -f %s" % PARTITIONS["swap"], log )
150
151     # check if badhd option has been set
152     option = ''
153     txt = ''
154     if NODE_MODEL_OPTIONS & ModelOptions.BADHD:
155         option = '-c'
156         txt = " with bad block search enabled, which may take a while"
157     
158     # filesystems partitions names and their corresponding
159     # reserved-blocks-percentages
160     filesystems = {"root":5,"vservers":0}
161
162     # make the file systems
163     for fs in filesystems.keys():
164         # get the reserved blocks percentage
165         rbp = filesystems[fs]
166         devname = PARTITIONS[fs]
167         log.write("formatting %s partition (%s)%s.\n" % (fs,devname,txt))
168         utils.sysexec( "mkfs.ext2 -q %s -m %d -j %s" % (option,rbp,devname), log )
169
170     # disable time/count based filesystems checks
171     for filesystem in ("root","vservers"):
172         utils.sysexec_noerr( "tune2fs -c -1 -i 0 %s" % PARTITIONS[filesystem], log)
173
174     # save the list of block devices in the log
175     log.write( "Block devices used (in lvm): %s\n" % repr(used_devices))
176
177     # list of block devices used may be updated
178     vars["INSTALL_BLOCK_DEVICES"]= used_devices
179
180     return 1
181
182
183 import parted
184 def single_partition_device( device, vars, log ):
185     """
186     initialize a disk by removing the old partition tables,
187     and creating a new single partition that fills the disk.
188
189     return 1 if sucessful, 0 otherwise
190     """
191
192     # two forms, depending on which version of pyparted we have
193     # v1 does not have a 'version' method
194     # v2 and above does, but to make it worse, 
195     # parted-3.4 on f14 has parted.version broken and raises SystemError
196     try:
197         parted.version()
198         return single_partition_device_2_x (device, vars, log)
199     except AttributeError:
200         # old parted does not have version at all
201         return single_partition_device_1_x (device, vars, log)
202     except SystemError:
203         # let's assume this is >=2
204         return single_partition_device_2_x (device, vars, log)
205     except:
206         raise
207
208 def single_partition_device_1_x ( device, vars, log):
209     
210     lvm_flag= parted.partition_flag_get_by_name('lvm')
211     
212     try:
213         log.write("Using pyparted 1.x\n")
214         # wipe the old partition table
215         utils.sysexec( "dd if=/dev/zero of=%s bs=512 count=1" % device, log )
216
217         # get the device
218         dev= parted.PedDevice.get(device)
219
220         # create a new partition table
221         disk= dev.disk_new_fresh(parted.disk_type_get("msdos"))
222
223         # create one big partition on each block device
224         constraint= dev.constraint_any()
225
226         new_part= disk.partition_new(
227             parted.PARTITION_PRIMARY,
228             parted.file_system_type_get("ext2"),
229             0, 1 )
230
231         # make it an lvm partition
232         new_part.set_flag(lvm_flag,1)
233
234         # actually add the partition to the disk
235         disk.add_partition(new_part, constraint)
236
237         disk.maximize_partition(new_part,constraint)
238
239         disk.commit()
240         del disk
241             
242     except BootManagerException, e:
243         log.write( "BootManagerException while running: %s\n" % str(e) )
244         return 0
245
246     except parted.error, e:
247         log.write( "parted exception while running: %s\n" % str(e) )
248         return 0
249                    
250     return 1
251
252
253
254 def single_partition_device_2_x ( device, vars, log):
255     try:
256         log.write("Using pyparted 2.x\n")
257
258         # Thierry june 2012 -- for disks larger than 2TB
259         # calling this with part_type='msdos' would fail at the maximizePartition stage
260         # create a new partition table
261         def partition_table (device, part_type, fs_type):
262             # wipe the old partition table
263             utils.sysexec( "dd if=/dev/zero of=%s bs=512 count=1" % device, log )
264             # get the device
265             dev= parted.Device(device)
266             disk = parted.freshDisk(dev,part_type)
267             # create one big partition on each block device
268             constraint= parted.constraint.Constraint (device=dev)
269             geometry = parted.geometry.Geometry (device=dev, start=0, end=1)
270             fs = parted.filesystem.FileSystem (type=fs_type,geometry=geometry)
271             new_part= parted.partition.Partition (disk, type=parted.PARTITION_NORMAL,
272                                                   fs=fs, geometry=geometry)
273             # make it an lvm partition
274             new_part.setFlag(parted.PARTITION_LVM)
275             # actually add the partition to the disk
276             disk.addPartition(new_part, constraint)
277             disk.maximizePartition(new_part,constraint)
278             disk.commit()
279             print >>log, 'Current disk for %s - partition type %s'%(device,part_type),disk
280             print >>log, 'Current dev for %s'%device,dev
281             del disk
282
283         try:
284             partition_table (device, 'msdos', 'ext2')
285         except:
286             partition_table (device, 'gpt', 'ext2')
287
288     except Exception, e:
289         log.write( "Exception inside single_partition_device_2_x : %s\n" % str(e) )
290         import traceback
291         traceback.print_exc(file=log)
292         return 0
293                    
294     return 1
295
296
297
298 def create_lvm_physical_volume( part_path, vars, log ):
299     """
300     make the specificed partition a lvm physical volume.
301
302     return 1 if successful, 0 otherwise.
303     """
304
305     try:
306         # again, wipe any old data, this time on the partition
307         utils.sysexec( "dd if=/dev/zero of=%s bs=512 count=1" % part_path, log )
308         ### patch Thierry Parmentelat, required on some hardware
309         import time
310         time.sleep(1)
311         utils.sysexec( "pvcreate -ffy %s" % part_path, log )
312     except BootManagerException, e:
313         log.write( "create_lvm_physical_volume failed.\n" )
314         return 0
315
316     return 1
317
318
319 def create_raid_partition(partitions, vars, log):
320     """
321     create raid array using specified partitions.  
322     """ 
323     raid_part = None
324     raid_enabled = False
325     node_tags = BootAPI.call_api_function( vars, "GetNodeTags",
326                                         ({'node_id': vars['NODE_ID']},))
327     for node_tag in node_tags:
328         if node_tag['tagname'] == 'raid_enabled' and \
329            node_tag['value'] == '1':
330             raid_enabled = True
331             break
332     if not raid_enabled:
333         return raid_part
334
335     try:
336         log.write( "Software raid enabled.\n" )
337         # wipe everything
338         utils.sysexec_noerr("mdadm --stop /dev/md0", log)
339         time.sleep(1)
340         for part_path in partitions:
341             utils.sysexec_noerr("mdadm --zero-superblock %s " % part_path, log)
342
343         # assume each partiton is on a separate disk
344         num_parts = len(partitions)
345         if num_parts < 2:
346             log.write( "Not enough disks for raid. Found: %s\n" % partitions )
347             raise BootManagerException("Not enough disks for raid. Found: %s\n" % partitions)  
348         if num_parts == 2:
349             lvl = 1
350         else:
351             lvl = 5   
352         
353         # make the array
354         part_list = " ".join(partitions)
355         raid_part = "/dev/md0"
356         cmd = "mdadm --create %(raid_part)s --chunk=128 --level=raid%(lvl)s " % locals() + \
357               "--raid-devices=%(num_parts)s %(part_list)s" % locals()
358         utils.sysexec(cmd, log)        
359
360     except BootManagerException, e:
361         log.write("create_raid_partition failed.\n")
362         raid_part = None
363
364     return raid_part  
365
366
367 def get_partition_path_from_device( device, vars, log ):
368     """
369     given a device, return the path of the first partition on the device
370     """
371
372     # those who wrote the cciss driver just had to make it difficult
373     cciss_test= "/dev/cciss"
374     if device[:len(cciss_test)] == cciss_test:
375         part_path= device + "p1"
376     else:
377         part_path= device + "1"
378
379     return part_path
380
381
382
383 def get_remaining_extents_on_vg( vars, log ):
384     """
385     return the free amount of extents on the planetlab volume group
386     """
387     
388     c_stdout, c_stdin = popen2.popen2("vgdisplay -c planetlab")
389     result= string.strip(c_stdout.readline())
390     c_stdout.close()
391     c_stdin.close()
392     remaining_extents= string.split(result,":")[15]
393     
394     return remaining_extents