1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
package SystemInstaller::Partition;
# $Header: /cvsroot/systeminstaller/systeminstaller/lib/SystemInstaller/Partition.pm,v 1.27 2002/12/17 17:25:48 mchasal Exp $
# Copyright (c) 2001 International Business Machines
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# Stacy Woods <spwoods@us.ibm.com>
use strict;
use vars qw($VERSION @EXPORT @EXPORT_OK);
$VERSION = sprintf("%d.%02d", q$Revision: 1.27 $ =~ /(\d+)\.(\d+)/);
use base qw(Exporter);
@EXPORT=qw(read_partition_info partition_setup change_disk_type);
use FindBin qw($Bin);
use lib "$Bin/../lib";
use SIS::Image;
use SIS::DB;
use SystemInstaller::Log qw(verbose);
use SystemInstaller::Partition::IA;
use Data::Dumper;
use Carp;
sub read_partition_info {
# Reads in the partition info from the user and converts it
# to the %DISKS structure.
# Input: filehandle to the partition info (may be STDIN)
# Output: filled %DISKS structure.
my ($fh)=shift;
my $fn=shift;
my %DISKS=();
$DISKS{FILENAME}=$fn;
while (<$fh>){
chomp;
if ((/^\s*#/) || (/^\s*$/)) {
next;
}
# Not sure if this is the best way to handle this.
if (/=/) {
my($tag,$val)=split(/=/,$_);
$tag=uc($tag);
$DISKS{$tag}=$val;
next;
}
my ($part,$size,$type,$mnt,$opt,$boot) = split /\s+/,$_,6;
my $fstype=get_id($type);
if ($boot) {
$boot="*";
}
unless ($fstype == 0) {
my %DEV=parse_dev($part);
my $drive="/dev/".$DEV{DRIVE};
push(@{$DISKS{DRIVES}{$drive}},$part);
%{$DISKS{PARTITIONS}{$part}} = (
TYPE =>$fstype,
SIZE =>$size,
BOOTABLE =>$boot,
DEVICE =>$part,
DRIVE =>$drive,
PNUM =>$DEV{PARTNUM},
);
}
%{$DISKS{FILESYSTEMS}{$part}} = (
TYPE =>$type,
MOUNT =>$mnt,
DEVICE =>$part,
OPTIONS =>$opt,
);
}
%DISKS=&add_defaults(%DISKS);
@{$DISKS{MOUNTORDER}}=&mount_order(%DISKS);
return %DISKS;
} # read_partition_info
sub mount_order {
# Return a list of device ordered by their mount point depth
# Input: %DISKS structure
# Output: List of devices
my %DISKS=@_;
my @FS;
my @FSNONE;
my @FSAUTO;
# First split it up according to depth
foreach my $dev (keys %{$DISKS{FILESYSTEMS}}) {
# Put '/' first
if ($DISKS{FILESYSTEMS}{$dev}{MOUNT} eq "/") {
push @{$FS[0]},$dev;
} elsif ($DISKS{FILESYSTEMS}{$dev}{TYPE} =~ /^(none)$/) {
push @FSAUTO,$dev;
} elsif ($DISKS{FILESYSTEMS}{$dev}{TYPE} =~ /^(proc|devpts)$/) {
push @FSNONE,$dev;
} else {
# Count the number of '/' in the mount point
my $count=0;
while ($DISKS{FILESYSTEMS}{$dev}{MOUNT} =~/\//g) {
$count++;
}
push @{$FS[$count]},$dev;
}
}
# Now smush them all into 1 list
foreach (1..(scalar(@FS)-1)) {
if ( defined (@{$FS[$_]} ) ) {
push @{$FS[0]},@{$FS[$_]};
}
}
push @{$FS[0]},@FSAUTO;
push @{$FS[0]},@FSNONE;
return @{$FS[0]};
} # mount_order
sub add_defaults {
# Add some default filesystems if not defined.
# Input: %DISKS structure
# Output: %DISKS structure
my %DISKS=@_;
unless (defined $DISKS{FILESYSTEMS}{"/dev/fd0"}) {
%{$DISKS{FILESYSTEMS}{"/dev/fd0"}} = (
TYPE => "auto",
MOUNT => "/mnt/floppy",
DEVICE => "/dev/fd0",
OPTIONS => "noauto,owner",
);
}
unless (defined $DISKS{FILESYSTEMS}{"/proc"}) {
%{$DISKS{FILESYSTEMS}{"/proc"}} = (
TYPE => "proc",
MOUNT => "/proc",
DEVICE => "/proc",
OPTIONS => "defaults",
);
}
unless (defined $DISKS{FILESYSTEMS}{"/dev/pts"}) {
%{$DISKS{FILESYSTEMS}{"/dev/pts"}} = (
TYPE => "devpts",
MOUNT => "/dev/pts",
DEVICE => "/dev/pts",
OPTIONS => "mode=0622",
);
}
return %DISKS;
} # add_defaults
sub change_disk_type {
# Changes the disk type for all drives to the type given
# Input: disk type, %DISKS structure
# Returns: new %DISKS structure
#
my ($type,%DISKS) = @_;
my %NEWDISKS;
my $newpre;
# fs types we shouldn't touch.
my @ignores = qw(proc auto devpts nfs);
if ($type eq "ide") {
$newpre="/dev/hd";
} elsif ($type eq "scsi") {
$newpre="/dev/sd";
} else {
carp("Unrecognized device type $type");
return 0;
}
foreach my $cat (qw(FILESYSTEMS PARTITIONS)) {
foreach my $dev (sort keys %{$DISKS{$cat}}) {
# Skip non device filesystems (nfs)
if ( grep(/$DISKS{$cat}{$dev}{TYPE}/,@ignores) ) {
%{$NEWDISKS{$cat}{$dev}}=%{$DISKS{$cat}{$dev}};
next;
}
my %DEV=parse_dev($dev);
my $newdev=$newpre.$DEV{DLETTER}.$DEV{PARTNUM};
my $newdrive=$newpre.$DEV{DLETTER};
%{$NEWDISKS{$cat}{$newdev}}=%{$DISKS{$cat}{$dev}};
$NEWDISKS{$cat}{$newdev}{DEVICE}=$newdev;
if ($cat eq "PARTITIONS") {
$NEWDISKS{$cat}{$newdev}{DRIVE}=$newdrive;
push @{$NEWDISKS{DRIVES}{$newdrive}},$newdev;
}
}
}
# Transfer values and regen defaults and order
$NEWDISKS{FILENAME}=$DISKS{FILENAME};
%NEWDISKS=&add_defaults(%NEWDISKS);
@{$NEWDISKS{MOUNTORDER}}=&mount_order(%NEWDISKS);
return %NEWDISKS;
} #change_disk_type
sub parse_dev {
# Breaks a device into its components
# Input: Device name (eg /dev/hda1)
# Output: A hash with the following
# %DEV = (
# DEVICE #Same as the input
# DRIVE #drive name (hda)
# TYPE #Drive type (hd)
# DLETTER #Drive letter (a)
# PARTNUM #Part number (1)
# )
my %DEV=();
$DEV{DEVICE}=shift;
# Get the drive,(eg hda)
$DEV{DRIVE}=$DEV{DEVICE};
$DEV{DRIVE}=~s/\/dev\///;
$DEV{DRIVE}=~s/[0-9]*$//;
# Get the drive type, (hd)
$DEV{TYPE}=$DEV{DRIVE};
$DEV{TYPE}=~s/[a-z]$//;
# Get the drive letter, (a)
$DEV{DLETTER}=$DEV{DRIVE};
$DEV{DLETTER}=~s/$DEV{TYPE}//;
# Get the partition number
$DEV{PARTNUM}=$DEV{DEVICE};
$DEV{PARTNUM}=~s/\/dev\/$DEV{DRIVE}//;
return %DEV;
} #parse_dev
sub partition_setup {
# Create partition_file that includes the drive type, architecture, and
# partition information. Then call architecture specific routines to create
# partition input file.
#
# Input: image name, %DISKS structure
# Returns: 1 if failure, 0 if ok
#
my ($name,%DISKS) = @_;
my $image=list_image(name=>$name);
unless ($image) {
carp("Image $name does not exist\n");
return 1;
}
&verbose("Determining which routine to call based on architecture.");
if ($image->arch =~ /^(i.86|ia64)$/) {
if (&SystemInstaller::Partition::IA::create_partition_file($image->location,%DISKS)) {
return 1;
}
} elsif ( ($image->arch =~ /^(ppc.*)$/) && ( -d '/proc/iSeries' )) {
if (&SystemInstaller::Partition::IA::create_partition_file($image->location,%DISKS)) {
return 1;
}
} else {
print STDERR "$image->arch is not a recognized architecture\n";
return 1;
}
&verbose("Writing updateclient exclude file");
unless (&write_exclude_file($image->location,%DISKS)) {
carp("Failed to write exclude file to image");
return 1;
}
return 0;
} #partition_setup
sub write_exclude_file {
# Writes the remote (nfs) filesystems to the update client exclude file
# Input: Image path, %DISKS structure
# Output: Boolean
my ($ipath, %DISKS)=@_;
my @excludes;
my @lines;
my $filename="$ipath/etc/systemimager/updateclient.local.exclude";
# First read the old file into memory minus the SystemInstaller bits
if (-e $filename) {
unless (open(EXCLUDE,"<$filename")) {
carp("Unable to open exclude file: $filename");
return 0;
}
my $tossing=0;
while (<EXCLUDE>){
if ($tossing) {
if (/End SystemInstaller excludes/) {
$tossing=0;
}
} else {
if (/Start SystemInstaller excludes/) {
$tossing=1;
} else {
push @lines,$_;
}
}
}
close(EXCLUDE);
}
# Now get a list of nfs filesystems
foreach my $dev (keys %{$DISKS{FILESYSTEMS}}) {
if ($DISKS{FILESYSTEMS}{$dev}{TYPE} eq "nfs"){
push @excludes,$DISKS{FILESYSTEMS}{$dev}{MOUNT};
}
}
# Write out the new file.
unless (open(EXCLUDE,">$filename")) {
carp("Unable to open exclude file: $filename");
return 0;
}
if (@lines) {
foreach (@lines) {
print EXCLUDE "$_";
}
}
if (@excludes) {
print EXCLUDE "# Start SystemInstaller excludes\n";
print EXCLUDE "# These lines may be reconfigured by SystemInstaller\n";
print EXCLUDE "# So, don't put anything between this and the end comment\n";
print EXCLUDE "# that you want to keep!\n";
foreach (@excludes) {
print EXCLUDE "$_/*\n";
}
print EXCLUDE "# End SystemInstaller excludes\n";
}
close(EXCLUDE);
return 1;
} # write_exclude_file
sub get_id {
# Determine the filesystem id from the filesystem type.
# Input: filesystem type
# Returns: return filesystem id
my $fstype = shift;
$fstype =~ tr/A-Z/a-z/;
if ($fstype =~ /^(ext2|ext3|xfs|jfs|reiserfs)$/) {
return 83;
} elsif ($fstype =~ /^(swap)$/) {
return 82;
} elsif ($fstype =~ /^(extended)$/) {
return 5;
} elsif ($fstype =~ /^(fat16|vfat|msdos)$/) {
return 6;
} elsif ($fstype =~ /^(efi)$/) {
return "ef";
} elsif ($fstype =~ /^(prep)$/ ) {
return 41;
} elsif ($fstype =~ /^[0-9a-f][0-9a-f]*$/) {
# when the id given as input just return the same value.
return $fstype;
} elsif ($fstype =~ /^(nfs|proc|devpts|auto)$/) {
# remote and special fs's don't get a fs type
return 0;
} else {
# else just give linux standard fs type
return 83;
}
} # get_id
=head1 NAME
SystemInstaller::Partition - Interface for creating partition information files
=head1 SYNOPSIS
use SystemInstaller::Partition
open(FH,"</tmp/disktable");
%DISKS=&read_partition_info(*FH);
if (&partition_setup($imagename,%DISKS)) {
print "Partition setup failed!\n";
}
=head1 DESCRIPTION
SystemInstaller::Partition provides an interface for creating partitioning files.
It parses the partition file and creates the necessary files in the image to
initiate disk partitioning and filesystem creation when the image is installed.
The following routines are exported:
=over 4
=item %DISKS = read_partition_info(<FILEHANDLE>)
Read the partition info from the filehandle that is passed in. The file handle
may be STDIN. For details on the file format, see the I<mksidisk> man page. A
hash is returned that contains the information from the file to pass to the
other routines.
=item %DISKS = change_disk_type(<type>,%DISKS)
Given the desired disk type (eg ide) and a %DISKS hash, return a new %DISKS
hash in which B<ALL> drives have been changed to the desired type.
=item partition_setup(<imagename>,%DISKS)
Apply the partition and filesystem information in the %DISKS hash to the image
referenced by <imagename>
=back
=head1 DATA
The %DISKS hash stores all information from the partition file, as well as some
items that are added as execution progresses. The data has the following format:
$DISKS{FILESYSTEMS}{$devicename} = (
TYPE => $fstype,
MOUNT => $mountpoint,
DEVICE => $devicename,
OPTIONS => $mountoptions,
);
$DISKS{PARTITIONS}{$devicename} = (
TYPE => $partition_type,
SIZE => $size,
BOOTABLE => $boot,
DEVICE => $devicename,
);
=head1 AUTHOR
Michael Chase-Salerno <mchasal@users.sf.net>,
Stacy Woods <spwoods@us.ibm.com>
=head1 SEE ALSO
L<SystemInstaller::Partition::IA>,
mksidisk(1)
=cut
1;
|