\d+)/) {
return ("$+{total}", "$+{free}", "$+{used}", "$+{percent}");
}
return ( );
}
# list_fstypes()
# Returns an array of all the supported filesystem types. If a filesystem is
# found that is not one of the supported types, generate_location() and
# generate_options() will not be called for it.
sub list_fstypes
{
local @rv = ("ffs", "nfs", "cd9660", "msdos", "swap");
push(@rv, "ext2fs") if (&has_command("mount_ext2fs"));
return @rv;
}
# fstype_name(type)
# Given a short filesystem type, return a human-readable name for it
sub fstype_name
{
local(%fsmap);
%fsmap = ("ffs", "NetBSD Unix Filesystem",
"nfs","Network Filesystem",
"cd9660","ISO9660 CD-ROM",
"msdos","MS-DOS Filesystem",
"ext2fs","Linux Filesystem",
"swap","Virtual Memory",
"proc","Process Image Filesystem");
return $config{long_fstypes} && $fsmap{$_[0]} ? $fsmap{$_[0]} : uc($_[0]);
}
# multiple_mount(type)
# Returns 1 if filesystems of this type can be mounted multiple times, 0 if not
sub multiple_mount
{
return $_[0] eq "nfs";
}
# generate_location(type, location)
# Output HTML for editing the mount location of some filesystem.
sub generate_location
{
local ($type, $loc) = @_;
if ($type eq "nfs") {
# NFS mount from some host and directory
local ($host, $dir) = $loc =~ /^([^:]+):(.*)$/ ? ( $1, $2 ) : ( );
print &ui_table_row(&hlink($text{'linux_nfshost'}, "nfshost"),
&ui_textbox("nfs_host", $host, 30).
&nfs_server_chooser_button("nfs_host").
" ".
"".&hlink($text{'linux_nfsdir'}, "nfsdir")." ".
&ui_textbox("nfs_dir",
($type eq "nfs4") && ($dir eq "") ? "/" : $dir, 30).
&nfs_export_chooser_button("nfs_host", "nfs_dir"));
}
else {
local $msg;
if ($type eq "swap") {
# Swap file or device
$msg = $text{'linux_swapfile'};
}
else {
# Disk-based filesystem
$msg = &fstype_name($type);
}
local ($disk_dev, $ide_t, $ide_s, $ide_p, $scsi_t, $scsi_s, $scsi_p);
if ($loc =~ /^\/dev\/wd(\d)s(\d)([a-z]*)$/) {
$disk_dev = 0; $ide_t = $1; $ide_s = $2; $ide_p = $3;
}
elsif ($loc =~ /^\/dev\/sd(\d)s(\d)([a-z]*)$/) {
$disk_dev = 1; $scsi_t = $1; $scsi_s = $2; $scsi_p = $3;
}
else { $disk_dev = 2; }
print &ui_table_row($msg,
&ui_radio_table("disk_dev", $disk_dev,
[ [ 0, $text{'freebsd_ide'},
$text{'freebsd_device'}." ".
&ui_textbox("ide_t", $ide_t, 4)." ".
$text{'freebsd_slice'}." ".
&ui_textbox("ide_s", $ide_s, 4)." ".
$text{'freebsd_part'}." ".
&ui_textbox("ide_p", $ide_p, 4) ],
[ 1, $text{'freebsd_scsi'},
$text{'freebsd_device'}." ".
&ui_textbox("scsi_t", $scsi_t, 4)." ".
$text{'freebsd_slice'}." ".
&ui_textbox("scsi_s", $scsi_s, 4)." ".
$text{'freebsd_part'}." ".
&ui_textbox("scsi_p", $scsi_p, 4) ],
[ 2, $text{'freebsd_other'},
&ui_textbox("dev_path", $disk_dev == 2 ? $loc : "", 40).
" ".&file_chooser_button("dev_path", 0) ] ]));
}
}
# generate_options(type, newmount)
# Output HTML for editing mount options for a particular filesystem
# under this OS
sub generate_options
{
if ($_[0] ne "swap") {
# These options are common to all filesystems
print " | Read-only? | \n";
printf " Yes\n",
defined($options{"rdonly"}) || defined($options{"ro"})
? "checked" : "";
printf " No | \n",
defined($options{"rdonly"}) || defined($options{"ro"})
? "" : "checked";
print "Buffer writes to filesystem? | \n";
printf" Yes\n",
defined($options{"sync"}) ? "" : "checked";
printf " No |
\n",
defined($options{"sync"}) ? "checked" : "";
print " | Allow device files? | \n";
printf " Yes\n",
defined($options{"nodev"}) ? "" : "checked";
printf " No | \n",
defined($options{"nodev"}) ? "checked" : "";
print "Allow execution of binaries? | \n";
printf" Yes\n",
defined($options{"noexec"}) ? "" : "checked";
printf " No |
\n",
defined($options{"noexec"}) ? "checked" : "";
print " | Disallow setuid programs? | \n";
printf " Yes\n",
defined($options{"nosuid"}) ? "checked" : "";
printf " No | \n",
defined($options{"nosuid"}) ? "" : "checked";
print "Update access times? | \n";
printf" Yes\n",
defined($options{"noatime"}) ? "" : "checked";
printf " No |
\n",
defined($options{"noatime"}) ? "checked" : "";
}
if ($_[0] eq "ffs") {
# FFS filesystems support quotas
print " | User quotas at boot | \n";
printf " Disabled\n",
defined($options{'userquota'}) ? "" : "checked";
printf " Enabled\n",
defined($options{'userquota'}) && $options{'userquota'} eq ""
? "checked" : "";
printf "\n",
$options{'userquota'} ? "checked" : "";
print "Enabled, use file\n";
printf "\n",
$options{'userquota'};
print " |
\n";
print " | Group quotas at boot | \n";
printf " Disabled\n",
defined($options{'groupquota'}) ? "" : "checked";
printf " Enabled\n",
defined($options{'groupquota'}) && $options{'groupquota'} eq ""
? "checked" : "";
printf "\n",
$options{'groupquota'} ? "checked" : "";
print "Enabled, use file\n";
printf "\n",
$options{'groupquota'};
print " |
\n";
}
elsif ($_[0] eq "nfs") {
# NFS filesystems have lots more options
print " | Retry mounts in background? | \n";
printf " Yes\n",
defined($options{"-b"}) ? "checked" : "";
printf " No | \n",
defined($options{"-b"}) ? "" : "checked";
print "Return error on timeouts? | \n";
printf " Yes\n",
defined($options{"-s"}) ? "checked" : "";
printf " No |
\n",
defined($options{"-s"}) ? "" : "checked";
print " | Timeout | \n";
printf " Default\n",
defined($options{"-t"}) ? "" : "checked";
printf "\n",
defined($options{"-t"}) ? "checked" : "";
printf " | \n";
print "Number of Retransmissions | \n";
printf " Default\n",
defined($options{"-x"}) ? "" : "checked";
printf "\n",
defined($options{"-x"}) ? "checked" : "";
print " |
\n";
print " | NFS version | \n";
local $v = defined($options{"-2"}) ? 2 :
defined($options{"-3"}) ? 3 : 0;
printf " Auto\n",
$v ? "" : "checked";
printf " V2\n",
$v == 2 ? "checked" : "";
printf " V3 | \n",
$v == 3 ? "checked" : "";
print "Mount retries | \n";
printf " Default\n",
defined($options{"-R"}) ? "" : "checked";
printf "\n",
defined($options{"-R"}) ? "checked" : "";
print " |
\n";
print " | Read-ahead blocks | \n";
printf " Default\n",
defined($options{"-a"}) ? "" : "checked";
printf "\n",
defined($options{"-a"}) ? "checked" : "";
print " |
\n";
print " | RPC Protocol | \n";
printf " TCP\n",
defined($options{"-T"}) ? "checked" : "";
printf " UDP |
\n",
defined($options{"-T"}) ? "" : "checked";
}
elsif ($_[0] eq "msdos"){
# MS-DOS filesystems options deal with filling in
# missing unix functionality
print " | User files are owned by | \n";
printf "\n",
defined($options{"-u"}) ? getpwuid($options{"-u"}) : "";
print &user_chooser_button("msdos_u", 0)," | \n";
print "Group files are owned by | \n";
printf "\n",
defined($options{"-g"}) ? getgrgid($options{"-g"}) : "";
print &group_chooser_button("msdos_g", 0)," | \n";
print "
| File permissions mask | \n";
printf " Default\n",
defined($options{"-m"}) ? "" : "checked";
printf "\n",
defined($options{"-m"}) ? "checked" : "";
print " | \n";
}
elsif ($_[0] eq "cd9660") {
# CDROM filesystem
print "
| Ignore Unix Attributes? | \n";
printf " Yes\n",
defined($options{"-r"}) ? "checked" : "";
printf " No | \n",
defined($options{"-r"}) ? "" : "checked";
print "Show version numbers? | \n";
printf " Yes\n",
defined($options{"-g"}) ? "checked" : "";
printf " No |
\n",
defined($options{"-g"}) ? "" : "checked";
print " | Use extended attributes? | \n";
printf " Yes\n",
defined($options{"-e"}) ? "checked" : "";
printf " No |
\n",
defined($options{"-e"}) ? "" : "checked";
}
elsif ($_[0] eq "swap") {
# Swap has no options..
print " | No Options Available |
\n";
}
}
# check_location(type)
# Parse and check inputs from %in, calling &error() if something is wrong.
# Returns the location string for storing in the fstab file
sub check_location
{
if ($_[0] eq "nfs") {
local($out, $temp, $mout, $dirlist);
if ($config{'nfs_check'}) {
# Use ping and showmount to see if the host exists and is up
if ($in{nfs_host} !~ /^\S+$/) {
&error("'$in{nfs_host}' is not a valid hostname");
}
$out = &backquote_command("ping -c 1 '$in{nfs_host}' 2>&1");
if ($out =~ /unknown host/i) {
&error("The host '$in{nfs_host}' does not exist");
}
elsif ($out =~ /100\% packet loss/) {
&error("The host '$in{nfs_host}' is down");
}
$out = &backquote_command("showmount -e '$in{nfs_host}' 2>&1");
if ($out =~ /Unable to receive/) {
&error("The host '$in{nfs_host}' does not support NFS");
}
elsif ($?) {
&error("Failed to get mount list : $out");
}
}
# Validate directory name
foreach (split(/\n/, $out)) {
if (/^(\/\S+)/) { $dirlist .= "$1\n"; }
}
if ($in{nfs_dir} !~ /^\/\S+$/) {
&error("'$in{nfs_dir}' is not a valid directory name. The ".
"available directories on $in{nfs_host} are:".
"$dirlist
");
}
# Try a test mount to see if filesystem is available
$temp = &transname();
&make_dir($temp, 0755);
$mout = &backquote_command("mount $in{nfs_host}:$in{nfs_dir} $temp 2>&1");
if ($mout =~ /No such file or directory/) {
&error("The directory '$in{nfs_dir}' does not exist on the ".
"host $in{nfs_host}. The available directories are:".
"$dirlist
");
}
elsif ($mout =~ /Permission denied/) {
&error("This host is not allowed to mount the directory ".
"$in{nfs_dir} from $in{nfs_host}");
}
elsif ($?) {
&error("NFS Error - $mout");
}
# It worked! unmount
&execute_command("umount $temp");
&unlink_file($temp);
return "$in{nfs_host}:$in{nfs_dir}";
}
else {
# This is some kind of disk-based filesystem.. get the device name
if ($in{'disk_dev'} == 0) {
$in{'ide_t'} =~ /^\d+$/ ||
&error("'$in{ide_t}' is not a valid device number");
$in{'ide_s'} =~ /^\d+$/ ||
&error("'$in{ide_s}' is not a valid slice number");
$in{'ide_p'} =~ /^[a-z]*$/ ||
&error("'$in{ide_p}' is not a valid partition letter");
$dv = "/dev/wd$in{ide_t}s$in{ide_s}$in{ide_p}";
}
elsif ($in{'disk_dev'} == 1) {
$in{'scsi_t'} =~ /^\d+$/ ||
&error("'$in{scsi_t}' is not a valid device number");
$in{'scsi_s'} =~ /^\d+$/ ||
&error("'$in{scsi_s}' is not a valid slice number");
$in{'scsi_p'} =~ /^[a-z]*$/ ||
&error("'$in{scsi_p}' is not a valid partition letter");
$dv = "/dev/sd$in{scsi_t}s$in{scsi_s}$in{scsi_p}";
}
else {
$dv = $in{'dev_path'};
}
# If the device entered is a symlink, follow it
if ($dvlink = readlink($dv)) {
if ($dvlink =~ /^\//) { $dv = $dvlink; }
else { $dv =~ /^(.*\/)[^\/]+$/;
$dv = $1.$dvlink;
}
}
# Check if the device actually exists and uses the right filesystem
(-r $dv) || &error("The device file '$dv' does not exist");
return $dv;
}
}
# check_options(type, device, directory)
# Read options for some filesystem from %in, and use them to update the
# %options array. Options handled by the user interface will be set or
# removed, while unknown options will be left untouched.
sub check_options
{
local($k, @rv);
# Parse the common options first..
if ($_[0] ne "swap") {
delete($options{"ro"}); delete($options{"rw"});
delete($options{"rdonly"});
if ($in{'bsd_ro'}) { $options{'ro'} = ''; }
else { $options{'rw'} = ""; }
delete($options{"sync"}); delete($options{"async"});
if ($in{'bsd_sync'}) { $options{'sync'} = ''; }
delete($options{'nodev'});
if ($in{'bsd_nodev'}) { $options{'nodev'} = ''; }
delete($options{'noexec'});
if ($in{'bsd_noexec'}) { $options{'noexec'} = ''; }
delete($options{'nosuid'});
if ($in{'bsd_nosuid'}) { $options{'nosuid'} = ''; }
delete($options{'noatime'});
if ($in{'bsd_noatime'}) { $options{'noatime'} = ''; }
}
else {
# Swap always has the sw option
$options{'sw'} = "";
}
if ($_[0] eq "ffs") {
# Parse FFS quota options
delete($options{'userquota'}) if ($in{'ffs_userquota'} == 0);
$options{'userquota'} = "" if ($in{'ffs_userquota'} == 1);
$options{'userquota'} = $in{'ffs_groupquota_file'}
if ($in{'ffs_userquota'} == 2);
delete($options{'groupquota'}) if ($in{'ffs_groupquota'} == 0);
$options{'groupquota'} = "" if ($in{'ffs_groupquota'} == 1);
$options{'groupquota'} = $in{'ffs_groupquota_file'}
if ($in{'ffs_groupquota'} == 2);
}
elsif ($_[0] eq "nfs") {
# NFS has a few specific options..
delete($options{'-b'});
$options{'-b'} = "" if ($in{'nfs_b'});
delete($options{'-s'});
$options{'-s'} = "" if ($in{'nfs_s'});
delete($options{'-t'});
$options{'-t'} = $in{'nfs_t'} if (!$in{'nfs_t_def'});
delete($options{'-x'});
$options{'-x'} = $in{'nfs_x'} if (!$in{'nfs_x_def'});
delete($options{'-2'}); delete($options{'-3'});
$options{'-2'} = "" if ($in{'nfs_ver'} == 2);
$options{'-3'} = "" if ($in{'nfs_ver'} == 3);
delete($options{'-R'});
$options{'-R'} = $in{'nfs_r'} if (!$in{'nfs_r_def'});
delete($options{'-a'});
$options{'-a'} = $in{'nfs_a'} if (!$in{'nfs_a_def'});
delete($options{'-T'});
$options{'-T'} = "" if ($in{'nfs_t2'});
}
elsif ($_[0] eq "msdos") {
# MSDOS options for file ownership/perms
delete($options{"-u"}); delete($options{"-g"});
if ($in{'msdos_u'} ne "") { $options{'-u'} = getpwnam($in{'msdos_u'}); }
if ($in{'msdos_g'} ne "") { $options{'-g'} = getgrnam($in{'msdos_g'}); }
delete($options{"-m"});
if (!$in{'msdos_m_def'}) {
$in{'msdos_m'} =~ /^[0-7]{3}$/ ||
&error("'$in{'msdos_m'}' is not a valid octal mask");
$options{'-m'} = $in{'msdos_m'};
}
}
elsif ($_[0] eq "cd9660") {
# Options for iso9660 cd-roms
delete($options{'-r'});
$options{'-r'} = "" if ($in{'cd9660_r'});
delete($options{'-g'});
$options{'-g'} = "" if ($in{'cd9660_g'});
delete($options{'-e'});
$options{'-e'} = "" if ($in{'cd9660_e'});
}
# Return options string
foreach $k (keys %options) {
if ($options{$k} eq "") { push(@rv, $k); }
else { push(@rv, "$k=$options{$k}"); }
}
return @rv ? join(',' , @rv) : "-";
}
# create_swap(file, size, units)
# Calls dd and mkswap to setup a swap file
sub create_swap
{
local($out, $bl);
$bl = $_[1] * ($_[2] eq "t" ? 1024*1024*1024 :
$_[2] eq "g" ? 1024*1024 :
$_[2] eq "m" ? 1024 : 1);
$out = &backquote_logged("dd if=/dev/zero of=$_[0] bs=1024 count=$bl 2>&1");
if ($?) { return "dd failed : $out"; }
$out = &backquote_logged("mkswap $_[0] $bl 2>&1");
if ($?) { return "mkswap failed : $out"; }
&system_logged("sync >/dev/null 2>&1");
return 0;
}
# exports_list(host, dirarray, clientarray)
# Fills the directory and client array references with exports from some
# host. Returns an error string if something went wrong
sub exports_list
{
local($dref, $cref, $out, $_);
$dref = $_[1]; $cref = $_[2];
$out = &backquote_command("showmount -e ".quotemeta($_[0])." 2>&1", 1);
if ($?) { return $out; }
foreach (split(/\n/, $out)) {
if (/^(\/\S*)\s+(.*)$/) {
push(@$dref, $1); push(@$cref, $2);
}
}
return undef;
}
# broadcast_addr()
# Returns a useable broadcast address for finding NFS servers
sub broadcast_addr
{
local($out);
$out = &backquote_command("ifconfig -a 2>&1", 1);
if ($out =~ /broadcast\s+(\S+)\s+/) { return $1; }
return "255.255.255.255";
}
sub device_name
{
return $_[0];
}
sub files_to_lock
{
return ( $config{'fstab_file'} );
}
1;