Files
webmin/mount/linux-lib.pl
2009-02-27 23:01:55 +00:00

2558 lines
83 KiB
Perl

# linux-lib.pl
# Mount table functions for linux
if (!$no_check_support) {
if (&has_command("amd")) {
local $amd = &read_amd_conf();
$amd_support = $amd =~ /\[\s*global\s*\]/i ? 2 : 1;
}
$autofs_support = &has_command("automount");
if (&has_command("mount.cifs")) {
$cifs_support = 4;
}
if (&has_command("mount.smbfs")) {
$smbfs_support = &backquote_command("mount.smbfs -v", 1) =~ /username=/i ? 4 : 3;
$smbfs_fs = "smbfs";
}
elsif (&has_command("mount.smb")) {
$smbfs_support = &backquote_command("mount.smb -v", 1) =~ /username=/i ? 4 : 3;
$smbfs_fs = "smb";
}
elsif (&has_command("smbmount")) {
$smbfs_support = &backquote_command("smbmount -v", 1) =~ /Version\s+2/i ? 2 : 1;
$smbfs_fs = "smbfs";
}
$swaps_support = -r "/proc/swaps";
if (`uname -r` =~ /^(\d+\.\d+)/ && $1 >= 2.4) {
$tmpfs_support = 1;
$ext3_support = 1;
$no_mount_check = 1;
$bind_support = 1; # XXX which version?
}
if (&has_command("mkfs.xfs")) {
$xfs_support = 1;
}
if (&has_command("mkfs.jfs")) {
$jfs_support = 1;
}
}
# We always need to check this, to fix up LABEL= mounts
if (&has_command("e2label")) {
$has_e2label = 1;
}
if (&has_command("xfs_db")) {
$has_xfs_db = 1;
}
if (&has_command("vol_id")) {
$has_volid = 1;
}
if (&has_command("reiserfstune")) {
$has_reiserfstune = 1;
}
$uuid_directory = "/dev/disk/by-uuid";
# Return information about a filesystem, in the form:
# directory, device, type, options, fsck_order, mount_at_boot
# If a field is unused or ignored, a - appears instead of the value.
# Swap-filesystems (devices or files mounted for VM) have a type of 'swap',
# and 'swap' in the directory field
sub list_mounts
{
return @list_mounts_cache if (@list_mounts_cache);
local(@rv, @p, @o, $_, $i, $j); $i = 0;
# Get /etc/fstab mounts
open(FSTAB, $config{fstab_file});
while(<FSTAB>) {
local(@o, $at_boot);
chop; s/#.*$//g;
if (!/\S/ || /\signore\s/) { next; }
@p = split(/\s+/, $_);
if ($p[2] eq "proc") { $p[0] = "proc"; }
elsif ($p[2] eq "auto") { $p[2] = "*"; }
elsif ($p[2] eq "swap") { $p[1] = "swap"; }
elsif ($p[2] eq $smbfs_fs || $p[2] eq "cifs") {
$p[0] =~ s/\\040/ /g;
$p[0] =~ s/\//\\/g;
}
$rv[$i] = [ $p[1], $p[0], $p[2] ];
$rv[$i]->[5] = "yes";
@o = split(/,/ , $p[3] eq "defaults" ? "" : $p[3]);
if (($j = &indexof("noauto", @o)) >= 0) {
# filesytem is not mounted at boot
splice(@o, $j, 1);
$rv[$i]->[5] = "no";
}
if (($j = &indexof("bind", @o)) >= 0) {
# Special bind option, which indicates a loopback filesystem
splice(@o, $j, 1);
$p[0] = "bind";
}
$rv[$i]->[3] = (@o ? join(',' , @o) : "-");
$rv[$i]->[4] = (@p >= 5 ? $p[5] : 0);
$i++;
}
close(FSTAB);
if ($amd_support == 1) {
# Get old automounter configuration, as used by redhat
local $amd = &read_amd_conf();
if ($amd =~ /MOUNTPTS='(.*)'/) {
@p = split(/\s+/, $1);
for($j=0; $j<@p; $j+=2) {
$rv[$i++] = [ $p[$j], $p[$j+1], "auto",
"-", 0, "yes" ];
}
}
}
elsif ($amd_support == 2) {
# Guess what? There's now a *new* amd config file format, introduced
# in redhat 6.1 and caldera 2.3
local @amd = &parse_amd_conf();
local @sp = split(/:/, $amd[0]->{'opts'}->{'search_path'});
local ($am, $sp);
foreach $am (@amd) {
local $mn = $am->{'opts'}->{'map_name'};
if ($mn !~ /^\//) {
foreach $sp (@sp) {
if (-r "$sp/$mn") {
$mn = "$sp/$mn";
last;
}
}
}
$rv[$i++] = [ $am->{'dir'}, $mn,
"auto", $am->{'opts'}, 0, "yes" ]
if ($am->{'dir'} ne 'global');
}
}
# Get kernel automounter configuration
if ($autofs_support) {
open(AUTO, $config{'autofs_file'});
while(<AUTO>) {
chop;
s/#.*$//g;
if (/^\s*(\S+)\s+(\S+)\s*(.*)$/) {
$rv[$i++] = [ $1, $2, "autofs",
($3 ? &autofs_options($3) : "-"),
0, "yes" ];
}
}
close(AUTO);
}
@list_mounts_cache = @rv;
return @rv;
}
# create_mount(directory, device, type, options, fsck_order, mount_at_boot)
# Add a new entry to the fstab file, old or new automounter file
sub create_mount
{
local(@mlist, @amd, $_); local($opts);
if ($_[2] eq "auto") {
if ($amd_support == 1) {
# Adding an old automounter mount
local $amd = &read_amd_conf();
local $m = "$_[0] $_[1]";
if ($amd =~ /MOUNTPTS=''/) {
$amd =~ s/MOUNTPTS=''/MOUNTPTS='$m'/;
}
else {
$amd =~ s/MOUNTPTS='(.*)'/MOUNTPTS='$1 $m'/;
}
&write_amd_conf($amd);
}
elsif ($amd_support == 2) {
# Adding a new automounter mount
local @amfs = split(/\s+/, $config{'auto_file'});
&open_tempfile(AMD, ">>$amfs[0]");
&print_tempfile(AMD, "\n");
&print_tempfile(AMD, "[ $_[0] ]\n");
&print_tempfile(AMD, "map_name = $_[1]\n");
&close_tempfile(AMD);
}
}
elsif ($_[2] eq "autofs") {
# Adding a new automounter mount
&open_tempfile(AUTO, ">> $config{'autofs_file'}");
&print_tempfile(AUTO, "$_[0] $_[1]");
if ($_[3]) {
&print_tempfile(AUTO, " ",&autofs_args($_[3]));
}
&print_tempfile(AUTO, "\n");
&close_tempfile(AUTO);
}
else {
# Adding a normal mount to the fstab file
local $dev = $_[1];
if ($_[2] eq $smbfs_fs || $_[2] eq "cifs") {
$dev =~ s/\\/\//g;
$dev =~ s/ /\\040/g;
}
&open_tempfile(FSTAB, ">> $config{fstab_file}");
&print_tempfile(FSTAB, "$dev $_[0] $_[2]");
local @opts = $_[3] eq "-" ? ( ) : split(/,/, $_[3]);
if ($_[5] eq "no") {
push(@opts, "noauto");
}
else {
@opts = grep { $_ !~ /^(auto|noauto)$/ } @opts;
}
if ($_[2] eq "bind") {
push(@opts, "bind");
}
if (!@opts) { &print_tempfile(FSTAB, " defaults"); }
else { &print_tempfile(FSTAB, " ".join(",", @opts)); }
&print_tempfile(FSTAB, " 0 ");
&print_tempfile(FSTAB, $_[4] eq "-" ? "0\n" : "$_[4]\n");
&close_tempfile(FSTAB);
}
undef(@list_mounts_cache);
}
# change_mount(num, directory, device, type, options, fsck_order, mount_at_boot)
# Change an existing permanent mount
sub change_mount
{
local($i, @fstab, $line, $opts, $j, @amd);
$i = 0;
# Update fstab file
open(FSTAB, $config{fstab_file});
@fstab = <FSTAB>;
close(FSTAB);
&open_tempfile(FSTAB, "> $config{fstab_file}");
foreach (@fstab) {
chop; ($line = $_) =~ s/#.*$//g;
if ($line =~ /\S/ && $line !~ /\signore\s/ && $i++ == $_[0]) {
# Found the line to replace
local $dev = $_[2];
$dev =~ s/ /\\040/g;
&print_tempfile(FSTAB, "$dev $_[1] $_[3]");
local @opts = $_[4] eq "-" ? ( ) : split(/,/, $_[4]);
if ($_[6] eq "no") {
push(@opts, "noauto");
}
else {
@opts = grep { $_ !~ /^(auto|noauto)$/ } @opts;
}
if ($_[3] eq "bind") {
push(@opts, "bind");
}
if (!@opts) { &print_tempfile(FSTAB, " defaults"); }
else { &print_tempfile(FSTAB, " ".join(",", @opts)); }
&print_tempfile(FSTAB, " 0 ");
&print_tempfile(FSTAB, $_[5] eq "-" ? "0\n" : "$_[5]\n");
}
else { &print_tempfile(FSTAB, $_,"\n"); }
}
&close_tempfile(FSTAB);
if ($amd_support == 1) {
# Update older amd configuration
local $amd = &read_amd_conf();
if ($amd =~ /MOUNTPTS='(.*)'/) {
# found mount points line..
local @mpts = split(/\s+/, $1);
for($j=0; $j<@mpts; $j+=2) {
if ($i++ == $_[0]) {
$mpts[$j] = $_[1];
$mpts[$j+1] = $_[2];
}
}
local $mpts = join(" ", @mpts);
$amd =~ s/MOUNTPTS='(.*)'/MOUNTPTS='$mpts'/;
}
&write_amd_conf($amd);
}
elsif ($amd_support == 2) {
# Update new amd configuration
local @amd = &parse_amd_conf();
foreach $am (@amd) {
next if ($am->{'dir'} eq 'global');
if ($i++ == $_[0]) {
local $lref = &read_file_lines($am->{'file'});
local @nl = ( "[ $_[1] ]" );
local %opts = %{$am->{'opts'}};
$opts{'map_name'} = $_[2];
foreach $o (keys %opts) {
push(@nl, "$o = $opts{$o}");
}
splice(@$lref, $am->{'line'},
$am->{'eline'} - $am->{'line'} + 1, @nl);
&flush_file_lines();
}
}
}
# Update autofs configuration
if ($autofs_support) {
open(AUTO, $config{'autofs_file'});
@auto = <AUTO>;
close(AUTO);
&open_tempfile(AUTO, "> $config{'autofs_file'}");
foreach (@auto) {
chop; ($line = $_) =~ s/#.*$//g;
if ($line =~ /\S/ && $i++ == $_[0]) {
&print_tempfile(AUTO, "$_[1] $_[2]");
if ($_[4]) {
&print_tempfile(AUTO, " ",&autofs_args($_[4]));
}
&print_tempfile(AUTO, "\n");
}
else {
&print_tempfile(AUTO, $_,"\n");
}
}
&close_tempfile(AUTO);
}
undef(@list_mounts_cache);
}
# delete_mount(index)
# Delete an existing permanent mount
sub delete_mount
{
local($i, @fstab, $line, $opts, $j, @amd);
$i = 0;
# Update fstab file
open(FSTAB, $config{fstab_file});
@fstab = <FSTAB>;
close(FSTAB);
&open_tempfile(FSTAB, ">$config{fstab_file}");
foreach (@fstab) {
chop; ($line = $_) =~ s/#.*$//g;
if ($line !~ /\S/ || $line =~ /\signore\s/ || $i++ != $_[0]) {
# Don't delete this line
&print_tempfile(FSTAB, $_,"\n");
}
}
&close_tempfile(FSTAB);
if ($amd_support == 1) {
# Update older amd configuration
local $foundamd = 0;
local $amd = &read_amd_conf();
if ($amd =~ /MOUNTPTS='(.*)'/) {
# found mount points line..
local @mpts = split(/\s+/, $1);
for($j=0; $j<@mpts; $j+=2) {
if ($i++ == $_[0]) {
splice(@mpts, $j, 2);
$foundamd = 1;
}
}
local $mpts = join(" ", @mpts);
$amd =~ s/MOUNTPTS='(.*)'/MOUNTPTS='$mpts'/;
}
&write_amd_conf($amd) if ($foundamd);
}
elsif ($amd_support == 2) {
# Update new amd configuration
local @amd = &parse_amd_conf();
foreach $am (@amd) {
next if ($am->{'dir'} eq 'global');
if ($i++ == $_[0]) {
local $lref = &read_file_lines($am->{'file'});
splice(@$lref, $am->{'line'},
$am->{'eline'} - $am->{'line'} + 1);
&flush_file_lines();
}
}
}
# Update AMD file
if ($amd_support) {
open(AMD, $config{auto_file});
@amd = <AMD>;
close(AMD);
&open_tempfile(AMD, ">$config{auto_file}");
foreach (@amd) {
if (/MOUNTPTS='(.*)'/) {
# found mount points line..
@mpts = split(/\s+/, $1);
for($j=0; $j<@mpts; $j+=2) {
if ($i++ != $_[0]) {
push(@nmpts, $mpts[$j]);
push(@nmpts, $mpts[$j+1]);
}
}
&print_tempfile(AMD, "MOUNTPTS='".join(' ', @nmpts)."'\n");
}
else { &print_tempfile(AMD, $_); }
}
&close_tempfile(AMD);
}
# Update autofs file
if ($autofs_support) {
open(AUTO, $config{'autofs_file'});
@auto = <AUTO>;
close(AUTO);
&open_tempfile(AUTO, ">$config{'autofs_file'}");
foreach (@auto) {
chop; ($line = $_) =~ s/#.*$//g;
if ($line !~ /\S/ || $i++ != $_[0]) {
# keep this line
&print_tempfile(AUTO, $_,"\n");
}
}
&close_tempfile(AUTO);
}
undef(@list_mounts_cache);
}
# list_mounted([no-label])
# Return a list of all the currently mounted filesystems and swap files.
# The list is in the form:
# directory device type options
sub list_mounted
{
return @list_mounted_cache
if (@list_mounted_cache && $list_mounted_cache_mode == $_[0]);
local(@rv, @p, @o, $mo, $_, %smbopts);
local @mounts = &list_mounts();
&read_smbopts();
open(MTAB, "/etc/mtab");
while(<MTAB>) {
chop;
s/#.*$//g; if (!/\S/) { next; }
@p = split(/\s+/, $_);
if ($p[2] eq "auto" || $p[0] =~ /^\S+:\(pid\d+\)$/) {
# Automounter map.. turn the map= option into the device
@o = split(/,/ , $p[3]);
($mo) = grep {/^map=/} (@o);
$mo =~ /^map=(.*)$/; $p[0] = $1;
$p[3] = join(',' , grep {!/^map=/} (@o));
$p[2] = "auto";
}
elsif ($p[2] eq "autofs") {
# Kernel automounter map.. use the pid to find the map
$p[0] =~ /automount\(pid(\d+)\)/ || next;
$out = &backquote_command("ps hwwww $1", 1);
$out =~ /automount\s+(.*)\s*(\S+)\s+(file|program|yp)(,\S+)?\s+(\S+)/ || next;
$p[0] = $5;
$p[3] = $1 ? &autofs_options($1) : "-";
}
elsif ($p[2] eq $smbfs_fs || $p[2] eq "cifs") {
# Change from //FOO/BAR to \\foo\bar
$p[0] =~ s/\//\\/g;
$p[0] = lc($p[0]);
$p[3] = $smbopts{$p[1]};
}
elsif ($p[2] eq "proc") {
# The source for proc mounts is always proc
$p[0] = "proc";
}
if (!$_[0] && ($p[2] =~ /^ext[23]$/ && $has_e2label ||
$p[2] eq "xfs" && $has_xfs_db ||
$p[2] eq "reiserfs" && $has_reiserfstune)) {
# Check for a label on this partition, and there is one
# and this filesystem is in fstab with the label, change
# the device.
local $label;
if ($p[2] eq "xfs") {
local $out = &backquote_command("xfs_db -x -p xfs_admin -c label -r $p[0] 2>&1", 1);
$label = $1 if ($out =~ /label\s*=\s*"(.*)"/ &&
$1 ne '(null)');
}
elsif ($p[2] eq "reiserfs") {
local $out = &backquote_command("reiserfstune $p[0] 2>&1");
if ($out =~ /LABEL:\s*(\S+)/) {
$label = $1;
}
}
else {
$label = &backquote_command("e2label $p[0] 2>&1", 1);
chop($label);
}
if (!$?) {
foreach $m (@mounts) {
if ($m->[0] eq $p[1] &&
$m->[1] eq "LABEL=$label") {
$p[0] = "LABEL=$label";
last;
}
}
}
}
# Check for a UUID on this partition, and if there is one
# and the filesystem is in fstab with the label, change
# the device.
if (!$_[0]) {
local $uuid = &device_to_uuid($p[0], \@mounts);
if ($uuid) {
$p[0] = "UUID=$uuid";
}
}
# check fstab for a mount on the same dir which is a symlink
# to the device
local @st = stat($p[0]);
foreach $m (@mounts) {
if ($m->[0] eq $p[1]) {
local @fst = stat($m->[1]);
if ($fst[0] == $st[0] && $fst[1] == $st[1]) {
# symlink to the same place!
$p[0] = $m->[1];
last;
}
}
}
push(@rv, [ $p[1], $p[0], $p[2], $p[3] ]);
}
close(MTAB);
open(SWAPS, "/proc/swaps");
while(<SWAPS>) {
chop;
if (/^(\/\S+)\s+/) {
local $sf = $1;
if ($sf =~ /^\/dev\/ide\// || $sf =~ /^\/dev\/mapper\//) {
# check fstab for a mount on a device which is a symlink
local @st = stat($sf);
foreach $m (@mounts) {
local @fst = stat($m->[1]);
if ($m->[2] eq 'swap' && $fst[0] == $st[0] &&
$fst[1] == $st[1]) {
$sf = $m->[1];
last;
}
}
}
# Convert to UUID format if used in fstab
if (!$_[0]) {
local $uuid = &device_to_uuid($sf, \@mounts);
if ($uuid) {
$sf = "UUID=$uuid";
}
}
push(@rv, [ "swap", $sf, "swap", "-" ]);
}
}
close(SWAPS);
@list_mounted_cache = @rv;
$list_mounted_cache_mode = $_[0];
return @rv;
}
# device_to_uuid(device, [&mounts])
# Given a device name like /dev/sda1, return the UUID for it.
# If a list of mounts are given, only match if found in mount list.
sub device_to_uuid
{
local ($device, $mounts) = @_;
local $uuid;
if ($device =~ /^\/dev\// && ($has_volid || -d $uuid_directory)) {
if (-d $uuid_directory) {
# Use UUID mapping directory
opendir(DIR, $uuid_directory);
foreach my $f (readdir(DIR)) {
local $linkdest = &simplify_path(
&resolve_links("$uuid_directory/$f"));
if ($linkdest eq $device) {
$uuid = $f;
last;
}
}
closedir(DIR);
}
else {
# Use vol_id command
local $out = &backquote_command(
"vol_id ".quotemeta($device)." 2>&1", 1);
if ($out =~ /ID_FS_UUID=(\S+)/) {
$uuid = $1;
}
}
}
if ($uuid && @$mounts) {
my $found;
foreach my $m (@$mounts) {
if ($m->[1] eq "UUID=$uuid") {
$found++;
last;
}
}
$uuid = undef if (!$found);
}
return $uuid;
}
# mount_dir(directory, device, type, options)
# Mount a new directory from some device, with some options. Returns 0 if ok,
# or an error string if failed
sub mount_dir
{
local($out, $opts, $shar, %options, %smbopts);
local @opts = $_[3] eq "-" || $_[3] eq "" ? ( ) :
grep { $_ ne "noauto" } split(/,/, $_[3]);
if ($_[2] eq "bind") {
push(@opts, "bind");
}
$opts = @opts ? "-o ".quotemeta(join(",", @opts)) : "";
&parse_options($_[2], $_[3]);
# Work out args for label or UUID
local $devargs;
if ($_[1] =~ /LABEL=(.*)/) {
$devargs = "-L ".quotemeta($1);
}
elsif ($_[1] =~ /UUID=(\S+)/) {
$devargs = "-U ".quotemeta($1);
}
else {
$devargs = quotemeta($_[1]);
}
if ($_[2] eq "swap") {
# Use swapon to add the swap space..
local $priarg = $options{'pri'} ne "" ? "-p $options{'pri'}" : "";
$out = &backquote_logged("swapon $priarg $devargs 2>&1");
if ($out =~ /Invalid argument/) {
# looks like this swap partition isn't ready yet.. set it up
$out = &backquote_logged("mkswap $devargs 2>&1");
if ($?) { return "mkswap failed : <pre>$out</pre>"; }
$out = &backquote_logged("swapon $devargs 2>&1");
}
if ($?) { return "<pre>$out</pre>"; }
}
elsif ($_[2] eq "auto") {
# Old automounter filesystem
$out = &backquote_logged("amd $_[0] $_[1] >/dev/null 2>/dev/null");
if ($?) { return $text{'linux_eamd'}; }
}
elsif ($_[2] eq "autofs") {
# New automounter filesystem
$opts = &autofs_args($_[3]);
$type = $_[1] !~ /^\// ? "yp" :
(-x $_[1]) ? "program" : "file";
$out = &backquote_logged("automount $opts $_[0] $type $_[1] 2>&1");
if ($?) { return &text('linux_eauto', "<pre>$out</pre>"); }
}
elsif ($_[2] eq $smbfs_fs || $_[2] eq "cifs") {
local $shar = $_[1];
$shar =~ s/\\/\//g if ($shar =~ /^\\/);
local $support = $_[2] eq $smbfs_fs ? $smbfs_support : $cifs_support;
return uc($_[2])." not supported" if (!$support);
local $qshar = quotemeta($shar);
if ($support >= 3) {
# SMB filesystem mounted with mount command
local $temp = &transname();
local $ex = &system_logged("mount -t $_[2] $opts $qshar $_[0] >$temp 2>&1 </dev/null");
local $out = `cat $temp`;
unlink($temp);
if ($ex || $out =~ /failed|error/i) {
&system_logged("umount $_[0] >/dev/null 2>&1");
return "<pre>$out</pre>";
}
}
elsif ($support == 2) {
# SMB filesystem mounted with version 2.x smbmount
$opts =
($options{'user'} ? "-U $options{'user'} " : "").
($options{'passwd'} ? "" : "-N ").
($options{'workgroup'} ? "-W $options{'workgroup'} " : "").
($options{'clientname'} ? "-n $options{'clientname'} " : "").
($options{'machinename'} ? "-I $options{'machinename'} " : "");
&foreign_require("proc");
local ($fh, $fpid) = &proc::pty_process_exec_logged(
"sh -c 'smbmount $shar $_[0] -d 0 $opts'");
if ($options{'passwd'}) {
local $w = &wait_for($fh, "word:");
if ($w < 0) {
&system_logged("umount $_[0] >/dev/null 2>&1");
return $text{'linux_esmbconn'};
}
local $p = "$options{'passwd'}\n";
syswrite($fh, $p, length($p));
}
local $got;
while(<$fh>) {
$got .= $_;
}
if ($got =~ /failed/) {
&system_logged("umount $_[0] >/dev/null 2>&1");
return "<pre>$got</pre>\n";
}
close($fh);
}
elsif ($support == 1) {
# SMB filesystem mounted with older smbmount
$shortname = &get_system_hostname();
if ($shortname =~ /^([^\.]+)\.(.+)$/) { $shortname = $1; }
$opts =
($options{servername} ? "-s $options{servername} " : "").
($options{clientname} ? "-c $options{clientname} "
: "-c $shortname ").
($options{machinename} ? "-I $options{machinename} " : "").
($options{user} ? "-U $options{user} " : "").
($options{passwd} ? "-P $options{passwd} " : "-n ").
($options{uid} ? "-u $options{uid} " : "").
($options{gid} ? "-g $options{gid} " : "").
($options{fmode} ? "-f $options{fmode} " : "").
($options{dmode} ? "-d $options{dmode} " : "");
$out = &backquote_logged("smbmount $shar $_[0] $opts 2>&1 </dev/null");
if ($out) {
&system_logged("umount $_[0] >/dev/null 2>&1");
return "<pre>$out</pre>";
}
}
&read_smbopts();
$smbopts{$_[0]} = $_[3] eq "-" ? "dummy=1" : $_[3];
&write_smbopts();
}
else {
# some filesystem supported by mount
local $fs = $_[2] eq "*" ? "auto" : $_[2];
$cmd = "mount -t $fs $opts $devargs ".quotemeta($_[0]);
$out = &backquote_logged("$cmd 2>&1 </dev/null");
if ($?) { return "<pre>$out</pre>"; }
}
undef(@list_mounted_cache);
return 0;
}
# os_remount_dir(directory, device, type, options)
# Adjusts the options for some mounted filesystem, by re-mounting
sub os_remount_dir
{
if ($_[2] eq "swap" || $_[2] eq "auto" || $_[2] eq "autofs" ||
$_[2] eq $smbfs_fs || $_[2] eq "cifs") {
# Cannot use remount
local $err = &unmount_dir(@_);
return $err if ($err);
return &mount_dir(@_);
}
else {
# Attempt to use remount
local @opts = $_[3] eq "-" || $_[3] eq "" ? ( ) :
grep { $_ ne "noauto" } split(/,/, $_[3]);
push(@opts, "remount");
local $opts = @opts ? "-o ".quotemeta(join(",", @opts)) : "";
local $fs = $_[2] eq "*" ? "auto" : $_[2];
if ($_[1] =~ /LABEL=(.*)/) {
$cmd = "mount -t $fs -L $1 $opts $_[0]";
}
elsif ($_[1] =~ /UUID=(\S+)/) {
$cmd = "mount -t $fs -U $1 $opts $_[0]";
}
else {
$cmd = "mount -t $fs $opts $_[1] $_[0]";
}
$out = &backquote_logged("$cmd 2>&1 </dev/null");
if ($?) { return "<pre>$out</pre>"; }
undef(@list_mounted_cache);
return undef;
}
}
# unmount_dir(directory, device, type, options, [force])
# Unmount a directory that is currently mounted. Returns 0 if ok,
# or an error string if failed
sub unmount_dir
{
local($out, %smbopts, $dir);
if ($_[2] eq "swap") {
# Use swapoff to remove the swap space..
$out = &backquote_logged("swapoff $_[1]");
if ($?) { return "<pre>$out</pre>"; }
}
elsif ($_[2] eq "auto") {
# Kill the amd process
$dir = $_[0];
if (&backquote_command("cat /etc/mtab") =~ /:\(pid([0-9]+)\)\s+$dir\s+(auto|nfs)\s+/) {
&kill_logged('TERM', $1) || return $text{'linux_ekillamd'};
}
sleep(2);
}
elsif ($_[2] eq "autofs") {
# Kill the automount process
$dir = $_[0];
&backquote_command("cat /etc/mtab") =~ /automount\(pid([0-9]+)\)\s+$dir\s+autofs\s+/;
&kill_logged('TERM', $1) || return $text{'linux_ekillauto'};
sleep(2);
}
else {
local $fflag = $_[4] ? "-l" : "";
$out = &backquote_logged("umount $fflag $_[0] 2>&1");
if ($?) { return "<pre>$out</pre>"; }
if ($_[2] eq $smbfs_fs || $_[2] eq "cifs") {
# remove options from list
&read_smbopts();
delete($smbopts{$_[0]});
&write_smbopts();
&execute_command("rmmod smbfs");
&execute_command("rmmod cifs");
}
}
undef(@list_mounted_cache);
return 0;
}
# can_force_unmount_dir(directory, device, type)
# Returns 1 if some directory can be forcibly un-mounted
sub can_force_unmount_dir
{
if ($_[2] ne "swap" && $_[2] ne "auto" && $_[2] ne "autofs") {
# All filesystems using the normal 'mount' command can be
return 1;
}
else {
return 0;
}
}
# mount_modes(type)
# Given a filesystem type, returns 4 numbers that determine how the file
# system can be mounted, and whether it can be fsck'd
# 0 - cannot be permanently recorded
# (smbfs under linux before 2.2)
# 1 - can be permanently recorded, and is always mounted at boot
# (swap under linux)
# 2 - can be permanently recorded, and may or may not be mounted at boot
# (most normal filesystems)
# The second is:
# 0 - mount is always permanent => mounted when saved
# (swap under linux before 2.2, or any filesystem that is always
# mounted at boot by some script)
# 1 - doesn't have to be permanent
# (normal fs types)
# The third is:
# 0 - cannot be fsck'd at boot time
# 1 - can be be fsck'd at boot
# The fourth is:
# 0 - can be unmounted
# 1 - cannot be unmounted
# The (optional) fourth is:
# 0 - can be edited
# 1 - cannot be edited (because is always mounted at boot by some script)
sub mount_modes
{
if ($_[0] eq "swap")
{ return (1, $swaps_support ? 1 : 0, 0, 0); }
elsif ($_[0] eq "auto" || $_[0] eq "autofs")
{ return (1, 1, 0, 0); }
elsif ($_[0] eq $smbfs_fs)
{ return ($smbfs_support >= 3 ? 2 : 0, 1, 0, 0); }
elsif ($_[0] eq "cifs") { return (2, 1, 0, 0); }
elsif ($_[0] eq "ext2" || $_[0] eq "ext3" || $_[0] eq "minix" ||
$_[0] eq "xiafs" || $_[0] eq "xfs")
{ return (2, 1, 1, 0); }
else
{ return (2, 1, 0, 0); }
}
# disk_space(type, directory)
# Returns the amount of total and free space for some filesystem, or an
# empty array if not appropriate.
sub disk_space
{
if (&get_mounted($_[1], "*") < 0) { return (); }
if ($_[0] eq "proc" || $_[0] eq "swap" ||
$_[0] eq "auto" || $_[0] eq "autofs") { return (); }
local $out = &backquote_command("LC_ALL='' LANG='' df -k ".quotemeta($_[1]), 1);
if ($out =~ /Mounted on\n\S+\s+(\S+)\s+\S+\s+(\S+)/) {
return ($1, $2);
}
return ( );
}
# inode_space(type, directory)
# Returns the total and free number of inodes for some filesystem.
sub inode_space
{
if (&get_mounted($_[1], "*") < 0) { return (); }
if (&backquote_command("LC_ALL='' LANG='' df -i $_[1]", 1) =~
/Mounted on\n\S+\s+(\S+)\s+\S+\s+(\S+)/) {
return ($1, $2);
}
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 @sup = ("ext2", "minix", "msdos", "nfs", "nfs4", "iso9660", "ext",
"xiafs", "hpfs", "fat", "vfat", "umsdos", "sysv", "reiserfs",
"ntfs", "hfs", "fatx");
push(@sup, $smbfs_fs) if ($smbfs_support);
push(@sup, "cifs") if ($cifs_support);
push(@sup, "auto") if ($amd_support);
push(@sup, "autofs") if ($autofs_support);
push(@sup, "tmpfs") if ($tmpfs_support);
push(@sup, "ext3") if ($ext3_support);
push(@sup, "xfs") if ($xfs_support);
push(@sup, "jfs") if ($jfs_support);
push(@sup, "bind") if ($bind_support);
push(@sup, "swap");
return @sup;
}
# fstype_name(type)
# Given a short filesystem type, return a human-readable name for it
sub fstype_name
{
local(%fsmap);
%fsmap = ("ext2","Old Linux Native Filesystem",
"ext3","Linux Native Filesystem",
"minix","Minix Filesystem",
"msdos","MS-DOS Filesystem",
"nfs","Network Filesystem",
"nfs4","Network Filesystem v4",
$smbfs_fs,"Windows Networking Filesystem",
"cifs","Common Internet Filesystem",
"iso9660","ISO9660 CD-ROM",
"ext","Old EXT Linux Filesystem",
"xiafs","Old XIAFS Linux Filesystem",
"hpfs","OS/2 Filesystem",
"fat","MS-DOS Filesystem",
"vfat","Windows Filesystem",
"umsdos","Linux on top of MS-DOS Filesystem",
"sysv","System V Filesystem",
"swap","Virtual Memory",
"proc","Kernel Filesystem",
"devpts","PTS Filesystem",
"auto",($autofs_support ? "Old " : "")."Automounter Filesystem",
"reiserfs","Reiser Filesystem",
"autofs","New Automounter Filesystem",
"usbdevfs","USB Devices",
"shm","SysV Shared Memory",
"tmpfs","RAM Disk",
"xfs","SGI Filesystem",
"jfs","IBM Journalling Filesystem",
"ntfs","Windows NT Filesystem",
"bind","Loopback Filesystem",
"hfs","Apple Filesystem",
"fatx","XBOX 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" || $_[0] eq "nfs4" || $_[0] eq "auto" || $_[0] eq "autofs" ||
$_[0] eq "bind");
}
# generate_location(type, location)
# Output HTML for editing the mount location of some filesystem.
sub generate_location
{
if (($_[0] eq "nfs") || ($_[0] eq "nfs4")) {
# NFS mount from some host and directory
$_[1] =~ /^([^:]+):(.*)$/;
print "<tr> <td>", &hlink("<b>$text{'linux_nfshost'}</b>", "nfshost"), "</td>\n";
print "<td><input name=nfs_host size=20 value=\"$1\">\n";
&nfs_server_chooser_button("nfs_host");
print "&nbsp;", &hlink("<b>$text{'linux_nfsdir'}</b>", "nfsdir"), "\n";
printf "<input name=nfs_dir size=20 value=%s>\n",
($_[0] eq "nfs4") && ($2 eq "") ? "/" : $2;
&nfs_export_chooser_button("nfs_host", "nfs_dir");
print "</td> </tr>\n";
}
elsif ($_[0] eq "auto") {
# Using some automounter map
print "<tr> <td><b>$text{'linux_map'}</b></td>\n";
print "<td><input name=auto_map size=20 value=\"$_[1]\">\n";
print &file_chooser_button("auto_map", 0);
print "</td> <td colspan=2></td> </tr>\n";
}
elsif ($_[0] eq "autofs") {
# Using some kernel automounter map
print "<tr> <td><b>$text{'linux_map'}</b></td>\n";
print "<td><input name=autofs_map size=20 value=\"$_[1]\">\n";
print &file_chooser_button("autofs_map", 0);
print "</td> <td colspan=2></td> </tr>\n";
}
elsif ($_[0] eq "swap") {
# Swap file or device
&foreign_require("fdisk");
printf "<tr> <td valign=top><b>$text{'linux_swapfile'}</b></td>\n";
print "<td colspan=3>\n";
local ($found, $ufound);
# Show partitions input
local $sel = &fdisk::partition_select("lnx_disk", $_[1], 3, \$found);
printf "<input type=radio name=lnx_dev value=0 %s> %s %s<br>\n",
$found ? "checked" : "", $text{'linux_disk'}, $sel;
# Show UUID input
if ($has_volid || -d $uuid_directory) {
local $u = $_[1] =~ /UUID=(\S+)/ ? $1 : undef;
local $usel = &fdisk::volid_select("lnx_uuid", $u, \$ufound);
if ($usel) {
printf "<input type=radio name=lnx_dev value=5 %s> %s %s<br>\n", $ufound ? "checked" : "", $text{'linux_usel'}, $usel;
}
}
# Show other file input
printf "<input type=radio name=lnx_dev value=1 %s> %s\n",
$found || $ufound ? "" : "checked", $text{'linux_swapfile'};
printf "<input name=lnx_other size=35 value='%s'> %s<br>\n",
$found || $ufound ? "" : $_[1],
&file_chooser_button("lnx_other");
print "</td> </tr>\n";
}
elsif ($_[0] eq $smbfs_fs || $_[0] eq "cifs") {
# Windows filesystem
$_[1] =~ /^\\\\(.*)\\(.*)$/;
local ($server, $share) = ($1, $2);
print "<tr> <td><b>$text{'linux_smbserver'}</b></td>\n";
print "<td><input name=smbfs_server value=\"$server\" size=20>\n";
&smb_server_chooser_button("smbfs_server");
print "</td>\n";
print "<td><b>$text{'linux_smbshare'}</b></td>\n";
print "<td><input name=smbfs_share value=\"$share\" size=20>\n";
&smb_share_chooser_button("smbfs_server", "smbfs_share");
print "</td> </tr>\n";
}
elsif ($_[0] eq "tmpfs") {
# RAM disk (no location needed)
}
elsif ($_[0] eq "bind") {
# Loopback filesystem, mounted from some other directory
print "<tr> <td><b>$text{'linux_bind'}</b></td> <td colspan=3>\n";
printf "<input name=bind_dir value='%s' size=35> %s</td> </tr>\n",
$_[1], &file_chooser_button("bind_dir", 1);
}
else {
# This is some linux disk-based filesystem
&foreign_require("fdisk");
printf "<tr> <td valign=top><b>%s</b></td>\n", &fstype_name($_[0]);
print "<td colspan=3>\n";
local ($found, $rfound, $lfound, $vfound, $ufound, $rsel, $c);
# Show regular partition input
local $sel = &fdisk::partition_select("lnx_disk", $_[1], 0, \$found);
printf "<input type=radio name=lnx_dev value=0 %s> %s %s<br>\n",
$found ? "checked" : "", $text{'linux_disk'}, $sel;
# Show RAID input
if (&foreign_check("raid")) {
&foreign_require("raid");
local $conf = &raid::get_raidtab();
foreach $c (@$conf) {
if ($c->{'active'}) {
$rsel .= sprintf "<option value=%s %s>%s\n",
$c->{'value'},
$_[1] eq $c->{'value'} ? 'selected' : '',
&text('linux_rdev', substr($c->{'value'}, -1));
$rfound++ if ($_[1] eq $c->{'value'});
}
}
if ($rsel) {
printf "<input type=radio name=lnx_dev value=2 %s> %s\n",
$rfound ? "checked" : " ", $text{'linux_raid'};
print "<select name=lnx_raid>\n",$rsel,"</select><br>\n";
}
}
# Show LVM input
if (&foreign_check("lvm")) {
&foreign_require("lvm");
local @vgs = &lvm::list_volume_groups();
local @lvs;
foreach $v (@vgs) {
push(@lvs, &lvm::list_logical_volumes($v->{'name'}));
}
if (@lvs) {
local $lsel;
foreach $l (@lvs) {
local $sf = &same_file($_[1], $l->{'device'});
$lsel .= sprintf "<option value=%s %s>%s\n",
$l->{'device'},
$sf ? 'selected' : '',
&text('linux_ldev', $l->{'vg'},
$l->{'name'});
$vfound++ if ($sf);
}
printf "<input type=radio name=lnx_dev value=4 %s> %s\n",
$vfound ? "checked" : " ", $text{'linux_lvm'};
print "<select name=lnx_lvm>\n",$lsel,"</select><br>\n";
}
}
# Show label input
if ($has_e2label || $has_xfs_db || $has_reiserfstune) {
local $l = $_[1] =~ /LABEL=(.*)/ ? $1 : undef;
local $esel = &fdisk::label_select("lnx_label", $l, \$lfound);
if ($esel) {
printf "<input type=radio name=lnx_dev value=3 %s> %s %s<br>\n", $lfound ? "checked" : "", $text{'linux_lsel'}, $esel;
}
}
# Show UUID input
if ($has_volid || -d $uuid_directory) {
local $u = $_[1] =~ /UUID=(\S+)/ ? $1 : undef;
local $usel = &fdisk::volid_select("lnx_uuid", $u, \$ufound);
if ($usel) {
printf "<input type=radio name=lnx_dev value=5 %s> %s %s<br>\n", $ufound ? "checked" : "", $text{'linux_usel'}, $usel;
}
}
# Show other device input
local $anyfound = $found || $rfound || $lfound || $vfound || $ufound;
printf "<input type=radio name=lnx_dev value=1 %s> %s\n",
$anyfound ? "" : "checked",
$text{'linux_other'};
printf "<input name=lnx_other size=35 value='%s'> %s<br>\n",
$anyfound ? "" : $_[1],
&file_chooser_button("lnx_other");
print "</td> </tr>\n";
}
}
# generate_options(type, newmount)
# Output HTML for editing mount options for a particular filesystem
# under this OS
sub generate_options
{
if ($_[0] ne "swap" && $_[0] ne "auto" &&
$_[0] ne "autofs" && $_[0] ne $smbfs_fs && $_[0] ne "cifs") {
# Lots of options are common to all linux filesystems
print "<tr $tb> <td colspan=4><b>$text{'edit_comm_opt'}</b></td> </tr>\n";
print "<tr> <td>", &hlink("<b>$text{'linux_ro'}</b>", "linux_ro"),"</td>\n";
printf "<td nowrap><input type=radio name=lnx_ro value=1 %s> $text{'yes'}\n",
defined($options{"ro"}) ? "checked" : "";
printf "<input type=radio name=lnx_ro value=0 %s> $text{'no'}</td>\n",
defined($options{"ro"}) ? "" : "checked";
print "<td>", &hlink("<b>$text{'linux_sync'}</b>", "linux_sync"), "</td>\n";
printf"<td nowrap><input type=radio name=lnx_sync value=0 %s> $text{'yes'}\n",
defined($options{"sync"}) ? "" : "checked";
printf "<input type=radio name=lnx_sync value=1 %s> $text{'no'}</td> </tr>\n",
defined($options{"sync"}) ? "checked" : "";
local $nodev = defined($options{"nodev"}) ||
defined($options{"user"}) && !defined($options{"dev"});
print "<tr> <td>", &hlink("<b>$text{'linux_nodev'}</b>", "linux_nodev"), "</td>\n";
printf "<td nowrap><input type=radio name=lnx_nodev value=0 %s> $text{'yes'}\n",
$nodev ? "" : "checked";
printf "<input type=radio name=lnx_nodev value=1 %s> $text{'no'}</td>\n",
$nodev ? "checked" : "";
local $noexec = defined($options{"noexec"}) ||
defined($options{"user"}) && !defined($options{"exec"});
print "<td>", &hlink("<b>$text{'linux_noexec'}</b>", "linux_noexec"), "</td>\n";
printf"<td nowrap><input type=radio name=lnx_noexec value=0 %s> $text{'yes'}\n",
$noexec ? "" : "checked";
printf "<input type=radio name=lnx_noexec value=1 %s> $text{'no'}</td> </tr>\n",
$noexec ? "checked" : "";
local $nosuid = defined($options{"nosuid"}) ||
defined($options{"user"}) && !defined($options{"suid"});
print "<tr> <td>", &hlink("<b>$text{'linux_nosuid'}</b>", "linux_nosuid"), "</td>\n";
printf "<td nowrap><input type=radio name=lnx_nosuid value=1 %s> $text{'yes'}\n",
$nosuid ? "checked" : "";
printf "<input type=radio name=lnx_nosuid value=0 %s> $text{'no'}</td>\n",
$nosuid ? "" : "checked";
print "<td>", &hlink("<b>$text{'linux_user'}</b>", "linux_user"), "</td>\n";
printf"<td nowrap><input type=radio name=lnx_user value=1 %s> $text{'yes'}\n",
defined($options{"user"}) ? "checked" : "";
printf "<input type=radio name=lnx_user value=0 %s> $text{'no'}</td> </tr>\n",
defined($options{"user"}) ? "" : "checked";
}
if ($_[0] eq "ext2" || $_[0] eq "ext3") {
# Ext2 has lots more options..
print "<tr $tb> <td colspan=4><b>$text{'edit_ext_opt'}</b></td> </tr>\n";
if ($no_mount_check) {
print "<tr> <td><b>$text{'linux_df'}</b></td>\n";
printf "<td><input type=radio name=ext2_df value=1 %s> %s\n",
defined($options{"minixdf"}) ? "checked" : "", $text{'yes'};
printf "<input type=radio name=ext2_df value=0 %s> %s</td>\n",
defined($options{"minixdf"}) ? "" : "checked", $text{'no'};
}
else {
print "<tr> <td><b>$text{'linux_check'}</b></td>\n";
print "<td><select name=ext2_check>\n";
printf "<option value=normal %s> $text{'linux_normal'}\n",
$options{"check"} eq "" ||
$options{"check"} eq "normal" ? "selected" : "";
printf "<option value=strict %s> $text{'linux_strict'}\n",
$options{"check"} eq "strict" ? "selected" : "";
printf "<option value=none %s> $text{'linux_none'}\n",
$options{"check"} eq "none" ||
defined($options{"nocheck"}) ? "selected" : "";
print "</select></td>\n";
}
print "<td><b>$text{'linux_errors'}</b></td>\n";
print "<td><select name=ext2_errors>\n";
printf "<option value=default %s> $text{'default'}\n",
!defined($options{"errors"}) ? "selected" : "";
printf "<option value=continue %s> $text{'linux_continue'}\n",
$options{"error"} eq "continue" ? "selected" : "";
printf "<option value=remount-ro %s> $text{'linux_remount_ro'}\n",
$options{"error"} eq "remount-ro" ? "selected" : "";
printf "<option value=panic %s> $text{'linux_panic'}\n",
$options{"error"} eq "panic" ? "selected" : "";
print "</select></td> </tr>\n";
print "<tr> <td><b>$text{'linux_grpid'}</b></td>\n";
printf "<td nowrap><input type=radio name=ext2_grpid value=1 %s> %s\n",
defined($options{"grpid"}) || defined($options{"bsdgroups"}) ?
"checked" : "", $text{'yes'};
printf "<input type=radio name=ext2_grpid value=0 %s> %s</td>\n",
defined($options{"grpid"}) || defined($options{"bsdgroups"}) ?
"" : "checked", $text{'no'};
print "<td><b>$text{'linux_quotas'}</b></td>\n";
local $usrquota = defined($options{"usrquota"});
local $grpquota = defined($options{"grpquota"});
print "<td nowrap><select name=ext2_quota>\n";
printf "<option value=0 %s> $text{'no'}\n",
$usrquota || $grpquota ? "" : "selected";
printf "<option value=1 %s> $text{'linux_usrquota'}\n",
$usrquota && !$grpquota ? "selected" : "";
printf "<option value=2 %s> $text{'linux_grpquota'}\n",
$grpquota && !$usrquota ? "selected" : "";
if (`uname -r` =~ /^2\.0\.(\d+)/ && $1 < 31) {
printf "<option value=3 %s> $text{'linux_usrgrpquota2'}\n",
$usrquota && $grpquota ? "selected" : "";
}
else {
printf "<option value=3 %s> $text{'linux_usrgrpquota'}\n",
$usrquota && $grpquota ? "selected" : "";
}
print "</select></td> </tr>\n";
print "<tr> <td><b>$text{'linux_resuid'}</b></td>\n";
printf "<td><input name=ext2_resuid size=8 value=\"%s\">\n",
defined($options{"resuid"}) ? getpwuid($options{"resuid"}) : "";
print &user_chooser_button("ext2_resuid", 0),"</td>\n";
print "<td><b>$text{'linux_resgid'}</b></td>\n";
printf "<td><input name=ext2_resgid size=8 value=\"%s\">\n",
defined($options{"resgid"}) ? getgrgid($options{"resgid"}) : "";
print &group_chooser_button("ext2_resgid", 0),"</td> </tr>\n";
print "<tr> <td><b>$text{'linux_noatime'}</b></td>\n";
printf "<td><input type=radio name=ext2_noatime value=1 %s> %s\n",
defined($options{"noatime"}) ? "checked" : "", $text{'yes'};
printf "<input type=radio name=ext2_noatime value=0 %s> %s</td>\n",
defined($options{"noatime"}) ? "" : "checked", $text{'no'};
}
elsif (($_[0] eq "nfs") || ($_[0] eq "nfs4")) {
# Linux nfs has some more options...
print "<tr $tb> <td colspan=4><b>$text{'edit_nfs_opt'}</b></td> </tr>\n";
print "<tr> <td>", &hlink("<b>$text{'linux_vers'}</b>", "linux_vers"), "</td>\n";
if ($_[0] eq "nfs4") {
print "<td nowrap><input type=radio name=nfs_vers value=4 checked> 4</td>\n";
} else {
print "<td nowrap><input type=radio name=nfs_vers value=3 checked> $text{'edit_3_or_lower'}</td>\n";
}
print "<td>", &hlink("<b>$text{'linux_port'}</b>", "linux_port"), "</td>\n";
printf "<td nowrap><input type=radio name=nfs_port_def value=1 %s> $text{'default'}\n",
defined($options{"port"}) ? "" : "checked";
printf "<input type=radio name=nfs_port_def value=0 %s>\n",
defined($options{"port"}) ? "checked" : "";
print "<input size=5 name=nfs_port value=$options{port}></td> </tr>\n";
print "<tr> <td>", &hlink("<b>$text{'linux_bg'}</b>", "linux_bg"), "</td>\n";
printf "<td nowrap><input type=radio name=nfs_bg value=1 %s> $text{'yes'}\n",
defined($options{"bg"}) ? "checked" : "";
printf "<input type=radio name=nfs_bg value=0 %s> $text{'no'}</td>\n",
defined($options{"bg"}) ? "" : "checked";
print "<td>", &hlink("<b>$text{'linux_soft'}</b>", "linux_soft"), "</td>\n";
printf "<td nowrap><input type=radio name=nfs_soft value=1 %s> $text{'yes'}\n",
defined($options{"soft"}) ? "checked" : "";
printf "<input type=radio name=nfs_soft value=0 %s> $text{'no'}</td> </tr>\n",
defined($options{"soft"}) ? "" : "checked";
print "<tr> <td>", &hlink("<b>$text{'linux_timeo'}</b>", "linux_timeo"), "</td>\n";
printf "<td nowrap><input type=radio name=nfs_timeo_def value=1 %s> $text{'default'}\n",
defined($options{"timeo"}) ? "" : "checked";
printf "<input type=radio name=nfs_timeo_def value=0 %s>\n",
defined($options{"timeo"}) ? "checked" : "";
printf "<input size=5 name=nfs_timeo value=$options{timeo}></td>\n";
print "<td>", &hlink("<b>$text{'linux_retrans'}</b>", "linux_retrans"), "</td>\n";
printf "<td nowrap><input type=radio name=nfs_retrans_def value=1 %s> $text{'default'}\n",
defined($options{"retrans"}) ? "" : "checked";
printf "<input type=radio name=nfs_retrans_def value=0 %s>\n",
defined($options{"retrans"}) ? "checked" : "";
print "<input size=5 name=nfs_retrans value=$options{retrans}></td> </tr>\n";
print "<tr> <td>", &hlink("<b>$text{'linux_intr'}</b>", "linux_intr"), "</td>\n";
printf "<td nowrap><input type=radio name=nfs_intr value=1 %s> $text{'yes'}\n",
defined($options{"intr"}) ? "checked" : "";
printf "<input type=radio name=nfs_intr value=0 %s> $text{'no'}</td>\n",
defined($options{"intr"}) ? "" : "checked";
local $proto = defined($options{"udp"}) ? "udp" :
defined($options{"tcp"}) ? "tcp" :
$_[0] eq "nfs" ? "udp" : "tcp";
print "<td>", &hlink("<b>$text{'linux_transfert'}</b>", "linux_transfert"), "</td>\n";
print "<td nowrap><select name=nfs_transfert>\n";
printf "<option value=tcp %s>TCP</option>\n",
$proto eq "tcp" ? "selected" : "";
printf "<option value=udp %s %s>UDP</option>\n",
$proto eq "udp" ? "selected" : "", ($_[0] eq "nfs4") ? "disabled" : "";
print "</select></td> </tr>\n";
print "<tr> <td>", &hlink("<b>$text{'linux_rsize'}</b>", "linux_rsize"), "</td>\n";
printf "<td nowrap><input type=radio name=nfs_rsize_def value=1 %s> $text{'default'}\n",
defined($options{"rsize"}) ? "" : "checked";
printf "<input type=radio name=nfs_rsize_def value=0 %s>\n",
defined($options{"rsize"}) ? "checked" : "";
printf "<input size=5 name=nfs_rsize value=$options{rsize}></td>\n";
print "<td>", &hlink("<b>$text{'linux_wsize'}</b>", "linux_wsize"), "</td>\n";
printf "<td nowrap><input type=radio name=nfs_wsize_def value=1 %s> $text{'default'}\n",
defined($options{"wsize"}) ? "" : "checked";
printf "<input type=radio name=nfs_wsize_def value=0 %s>\n",
defined($options{"wsize"}) ? "checked" : "";
print "<input size=5 name=nfs_wsize value=$options{wsize}></td> </tr>\n";
print "<tr> <td>", &hlink("<b>$text{'linux_auth'}</b>", "linux_auth"), "</td>\n";
printf "<td nowrap colspan=2><input type=radio name=nfs_auth value=0 %s onclick=enable_sec(0)> sys\n",
!defined($options{"sec"}) ? "checked" : "";
printf "<input type=radio name=nfs_auth value=1 %s onclick=enable_sec(1)> krb5\n",
($options{"sec"} =~ /krb5/) ? "checked" : "";
printf "<input type=radio name=nfs_auth value=2 %s disabled> lipkey\n",
($options{"sec"} =~ /lipkey/) ? "checked" : "";
printf "<input type=radio name=nfs_auth value=3 %s disabled> spkm-3</td></tr>\n",
($options{"sec"} =~ /spkm/) ? "checked" : "";
print "<tr> <td>", &hlink("<b>$text{'linux_sec'}</b>", "linux_sec"), "</td>\n";
printf "<td nowrap colspan=2><input type=radio name=nfs_sec value=0 %s> $text{'config_none'}\n",
(!defined($options{"sec"}) || ($options{"sec"} !~ /[ip]$/)) ? "checked" : "";
printf "<input type=radio name=nfs_sec value=1 %s> $text{'linux_integrity'}\n",
($options{"sec"} =~ /i$/) ? "checked" : "";
printf "<input type=radio name=nfs_sec value=2 %s> $text{'linux_privacy'}</td></tr>\n",
($options{"sec"} =~ /p$/) ? "checked" : "";
print "<script type=\"text/javascript\">\n";
print "function enable_sec(level) {\n";
print " if (level) {\n";
print " document.forms[0].nfs_sec[1].disabled=0;\n";
print " document.forms[0].nfs_sec[2].disabled=0;\n";
print " } else {\n";
print " document.forms[0].nfs_sec[1].disabled=1;\n";
print " document.forms[0].nfs_sec[2].disabled=1;\n";
print " document.forms[0].nfs_sec[0].checked=1;\n";
print " } }\n";
print "window.onload = function() {;\n";
printf " enable_sec(%d);\n", !defined($options{"sec"}) ? 0 : 1;
print " }\n";
print "</script>\n";
}
elsif ($_[0] eq "fat" || $_[0] eq "vfat" || $_[0] eq "msdos" ||
$_[0] eq "umsdos" || $_[0] eq "fatx"){
# All dos-based filesystems share some options
print "<tr $tb> <td colspan=4><b>$text{'edit_dos_opt'}</b></td> </tr>\n";
print "<tr> <td><b>$text{'linux_uid'}</b></td>\n";
printf "<td><input name=fat_uid size=8 value=\"%s\">\n",
defined($options{'uid'}) ? getpwuid($options{'uid'}) : "";
print &user_chooser_button("fat_uid", 0),"</td>\n";
print "<td><b>$text{'linux_gid'}</b></td>\n";
printf "<td><input name=fat_gid size=8 value=\"%s\">\n",
defined($options{'gid'}) ? getgrgid($options{'gid'}) : "";
print &group_chooser_button("fat_gid", 0),"</td> </tr>\n";
print "<tr> <td><b>$text{'linux_rules'}</b></td>\n";
print "<td><select name=fat_check>\n";
printf "<option value=\"\" %s> $text{'default'}\n",
defined($options{"check"}) ? "" : "selected";
printf "<option value=r %s> $text{'linux_relaxed'}\n",
$options{"check"} =~ /^r/ ? "selected" : "";
printf "<option value=n %s> $text{'linux_normal'}\n",
$options{"check"} =~ /^n/ ? "selected" : "";
printf "<option value=s %s> $text{'linux_strict'}\n",
$options{"check"} =~ /^s/ ? "selected" : "";
print "</select></td>\n";
print "<td><b>$text{'linux_conv'}</b></td>\n";
print "<td><select name=fat_conv>\n";
printf "<option value=\"\" %s> $text{'linux_none'}\n",
$options{"conv"} =~ /^b/ || !defined($options{"conv"}) ?
"selected" : "";
printf "<option value=t %s> $text{'linux_allfiles'}\n",
$options{"conv"} =~ /^t/ ? "selected" : "";
printf "<option value=a %s> $text{'linux_textfiles'}\n",
$options{"conv"} =~ /^a/ ? "selected" : "";
print "</select></td> </tr>\n";
print "<tr> <td><b>$text{'linux_umask'}</b></td>\n";
printf "<td><input type=radio name=fat_umask_def value=1 %s> $text{'default'}\n",
defined($options{"umask"}) ? "" : "checked";
printf "<input type=radio name=fat_umask_def value=0 %s>\n",
defined($options{"umask"}) ? "checked" : "";
print "<input size=5 name=fat_umask value=\"$options{umask}\"></td>\n";
print "<td><b>$text{'linux_quiet'}</b></td>\n";
printf "<td nowrap><input type=radio name=fat_quiet value=0 %s> $text{'yes'}\n",
defined($options{"quiet"}) ? "" : "checked";
printf "<input type=radio name=fat_quiet value=1 %s> $text{'no'}</td> </tr>\n",
defined($options{"quiet"}) ? "checked" : "";
if ($_[0] eq "vfat") {
# vfat has some extra options beyond fat
print "<tr> <td><b>$text{'linux_uni_xlate'}</b></td>\n";
printf "<td><input type=radio name=fat_uni_xlate value=1 %s> $text{'yes'}\n",
defined($options{"uni_xlate"}) ? "checked" : "";
printf "<input type=radio name=fat_uni_xlate value=0 %s> $text{'no'}</td>\n",
defined($options{"uni_xlate"}) ? "" : "checked";
print "<td><b>$text{'linux_posix'}</b></td>\n";
printf "<td nowrap><input type=radio name=fat_posix value=1 %s> $text{'yes'}\n",
defined($options{"posix"}) ? "checked" : "";
printf "<input type=radio name=fat_posix value=0 %s> $text{'no'}</td> </tr>\n",
defined($options{"posix"}) ? "" : "checked";
}
}
elsif ($_[0] eq "hpfs") {
# OS/2 filesystems has some more options..
print "<tr $tb> <td colspan=4><b>$text{'edit_hpfs_opt'}</b></td> </tr>\n";
print "<tr> <td><b>$text{'linux_uid'}</b></td>\n";
printf "<td><input name=hpfs_uid size=8 value=\"%s\">\n",
defined($options{"uid"}) ? getpwuid($options{"uid"}) : "";
print &user_chooser_button("hpfs_uid", 0),"</td>\n";
print "<td><b>$text{'linux_gid'}</b></td>\n";
printf "<td><input name=hpfs_gid size=8 value=\"%s\">\n",
defined($options{"gid"}) ? getgrgid($options{"gid"}) : "";
print &group_chooser_button("hpfs_gid", 0),"</td> </tr>\n";
print "<tr> <td><b>$text{'linux_umask'}</b></td>\n";
printf"<td><input type=radio name=hpfs_umask_def value=1 %s> Default\n",
defined($options{"umask"}) ? "" : "checked";
printf "<input type=radio name=hpfs_umask_def value=0 %s>\n",
defined($options{"umask"}) ? "checked" : "";
print "<input size=5 name=hpfs_umask value=\"$options{umask}\"></td>\n";
print "<td><b>$text{'linux_conv2'}</b></td>\n";
print "<td><select name=hpfs_conv>\n";
printf "<option value=b %s> $text{'linux_none'}\n",
$options{"conv"} =~ /^b/ || !defined($options{"conv"}) ?
"selected" : "";
printf "<option value=t %s> $text{'linux_allfiles'}\n",
$options{"conv"} =~ /^t/ ? "selected" : "";
printf "<option value=a %s> $text{'linux_textfiles'}\n",
$options{"conv"} =~ /^a/ ? "selected" : "";
print "</select></td> </tr>\n";
}
elsif ($_[0] eq "iso9660") {
# CD-ROM filesystems have some more options..
print "<tr $tb> <td colspan=4><b>$text{'edit_iso9660_opt'}</b></td> </tr>\n";
print "<tr> <td><b>$text{'linux_uid'}</b></td>\n";
printf "<td><input name=iso9660_uid size=8 value=\"%s\">\n",
defined($options{"uid"}) ? getpwuid($options{"uid"}) : "";
print &user_chooser_button("iso9660_uid", 0),"</td>\n";
print "<td><b>$text{'linux_gid'}</b></td>\n";
printf "<td><input name=iso9660_gid size=8 value=\"%s\">\n",
defined($options{"gid"}) ? getgrgid($options{"gid"}) : "";
print &group_chooser_button("iso9660_gid", 0),"</td>\n";
print "<tr> <td><b>$text{'linux_rock'}</b></td>\n";
printf "<td><input type=radio name=iso9660_norock value=1 %s> $text{'yes'}\n",
defined($options{"norock"}) ? "checked" : "";
printf "<input type=radio name=iso9660_norock value=0 %s> $text{'no'}</td>\n",
defined($options{"norock"}) ? "" : "checked";
print "<td><b>$text{'linux_mode'}</b></td>\n";
printf"<td><input size=10 name=iso9660_mode value=\"%s\"></td> </tr>\n",
defined($options{"mode"}) ? $options{"mode"} : "444";
}
elsif ($_[0] eq "auto") {
# Don't know how to set options for auto filesystems yet..
print "<tr> <td><i>$text{'linux_noopts'}</i></td> </tr>\n";
}
elsif ($_[0] eq "autofs") {
print "<tr $tb> <td colspan=4><b>$text{'edit_autofs_opt'}</b></td> </tr>\n";
print "<tr> <td><b>$text{'linux_timeout'}</b></td> <td>\n";
printf"<input type=radio name=autofs_timeout_def value=1 %s> $text{'default'}\n",
defined($options{'timeout'}) ? "" : "checked";
printf "<input type=radio name=autofs_timeout_def value=0 %s>\n",
defined($options{'timeout'}) ? "checked" : "";
printf "<input name=autofs_timeout size=5 value=\"%s\"> $text{'linux_secs'}</td>\n",
$options{'timeout'};
print "<td><b>$text{'linux_pid_file'}</b>?</td>\n";
printf"<td><input type=radio name=autofs_pid-file_def value=1 %s> $text{'no'}\n",
defined($options{'pid-file'}) ? "" : "checked";
printf "<input type=radio name=autofs_pid-file_def value=0 %s> $text{'yes'}\n",
defined($options{'pid-file'}) ? "checked" : "";
printf "<input name=autofs_pid-file size=20 value=\"%s\">\n",
$options{'pid-file'};
print &file_chooser_button("autofs_pid-file", 1);
print "</td> </tr>\n";
}
elsif ($_[0] eq "swap") {
# Swap has no options..
print "<tr> <td width=25%><b>$text{'linux_swappri'}</b></td>\n";
print "<td width=25%>",&ui_opt_textbox("swap_pri", $options{'pri'}, 6,
$text{'default'}),"</td>\n";
print "<td width=50% colspan=2></td>\n";
print "</tr>\n";
}
elsif ($_[0] eq $smbfs_fs || $_[0] eq "cifs") {
# SMB filesystems have a few options..
print "<tr $tb> <td colspan=4><b>$text{'edit_smbfs_opt'}</b></td> </tr>\n";
$support = $_[0] eq $smbfs_fs ? $smbfs_support : $cifs_support;
if (keys(%options) == 0 && !$_[1]) {
print "<tr> <td colspan=4><i>$text{'linux_smbwarn'}</i></td> </tr>\n";
}
print "<tr> <td><b>$text{'linux_username'}</b></td>\n";
printf "<td><input name=smbfs_user size=15 value=\"%s\"></td>\n",
$support == 4 ? $options{'username'} : $options{'user'};
print "<td><b>$text{'linux_password'}</b></td>\n";
printf "<td><input type=password name=smbfs_passwd size=15 value=\"%s\"></td> </tr>\n",
$support == 4 ? $options{'password'} : $options{'passwd'};
print "<td><b>$text{'linux_credentials'}</b></td>\n";
if ($support == 4) {
printf "<td><input name=smbfs_creds size=30 value=\"%s\"> ",
defined($options{"credentials"}) ? $options{'credentials'} : "";
if ($access{'browse'}) {
print &file_chooser_button("smbfs_creds", 0);
}
}
print "</td>\n";
if (!$access{'simopts'}) {
if ($support != 2) {
print "<tr> <td><b>$text{'linux_uid'}</b></td>\n";
printf "<td><input name=smbfs_uid size=8 value=\"%s\">\n",
defined($options{"uid"}) ? getpwuid($options{"uid"}) : "";
print &user_chooser_button("smbfs_uid", 0),"</td>\n";
print "<td><b>$text{'linux_gid'}</b></td>\n";
printf "<td><input name=smbfs_gid size=8 value=\"%s\">\n",
defined($options{"gid"}) ? getgrgid($options{"gid"}) : "";
print &group_chooser_button("smbfs_gid", 0),"</td>\n";
}
if ($support == 1) {
print "<tr> <td><b>$text{'linux_sname'}</b></td>\n";
printf "<td><input type=radio name=smbfs_sname_def value=1 %s> $text{'linux_auto'}\n",
defined($options{"servername"}) ? "" : "checked";
printf "<input type=radio name=smbfs_sname_def value=0 %s>\n",
defined($options{"servername"}) ? "checked" : "";
print "<input size=10 name=smbfs_sname value=\"$options{servername}\"></td>\n";
}
elsif ($support == 2) {
print "<tr> <td><b>$text{'linux_wg'}</b></td>\n";
printf "<td><input type=radio name=smbfs_wg_def value=1 %s> $text{'linux_auto'}\n",
defined($options{"workgroup"}) ? "" : "checked";
printf "<input type=radio name=smbfs_wg_def value=0 %s>\n",
defined($options{"workgroup"}) ? "checked" : "";
print "<input size=10 name=smbfs_wg value=\"$options{'workgroup'}\"></td>\n";
}
if ($support < 3) {
print "<td><b>$text{'linux_cname'}</b></td>\n";
printf "<td><input type=radio name=smbfs_cname_def value=1 %s> $text{'linux_auto'}\n",
defined($options{"clientname"}) ? "" : "checked";
printf "<input type=radio name=smbfs_cname_def value=0 %s>\n",
defined($options{"clientname"}) ? "checked" : "";
print "<input size=10 name=smbfs_cname value=\"$options{clientname}\"></td> </tr>\n";
print "<tr> <td><b>$text{'linux_mname'}</b></td>\n";
printf "<td colspan=3><input type=radio name=smbfs_mname_def value=1 %s> %s\n",
defined($options{"machinename"}) ? "" : "checked", $text{'linux_auto'};
printf "<input type=radio name=smbfs_mname_def value=0 %s>\n",
defined($options{"machinename"}) ? "checked" : "";
print "<input size=30 name=smbfs_mname value=\"$options{machinename}\"></td> </tr>\n";
}
if ($support == 1) {
print "<tr> <td><b>$text{'linux_fmode'}</b></td>\n";
printf
"<td><input name=smbfs_fmode size=5 value=\"%s\"></td>\n",
defined($options{'fmode'}) ? $options{'fmode'} : "755";
print "<td><b>$text{'linux_dmode'}</b></td>\n";
printf
"<td><input name=smbfs_dmode size=5 value=\"%s\"></td>\n",
defined($options{'dmode'}) ? $options{'dmode'} : "755";
print "</tr>\n";
}
elsif ($support >= 3) {
print "<tr> <td><b>$text{'linux_fmode'}</b></td> <td>\n";
printf"<input type=radio name=smbfs_fmask_def value=1 %s> %s\n",
defined($options{'fmask'}) ? "" : "checked",
$text{'default'};
printf"<input type=radio name=smbfs_fmask_def value=0 %s>\n",
defined($options{'fmask'}) ? "checked" : "";
printf "<input name=smbfs_fmask size=5 value='%s'></td>\n",
$options{'fmask'};
print "<td><b>$text{'linux_dmode'}</b></td> <td>\n";
printf"<input type=radio name=smbfs_dmask_def value=1 %s> %s\n",
defined($options{'dmask'}) ? "" : "checked",
$text{'default'};
printf"<input type=radio name=smbfs_dmask_def value=0 %s>\n",
defined($options{'dmask'}) ? "checked" : "";
printf "<input name=smbfs_dmask size=5 value='%s'></td></tr>\n",
$options{'dmask'};
print "<tr> <td><b>$text{'linux_ro'}</b></td>\n";
printf "<td><input type=radio name=smbfs_ro value=1 %s> $text{'yes'}\n",
defined($options{"ro"}) ? "checked" : "";
printf "<input type=radio name=smbfs_ro value=0 %s> $text{'no'}</td>\n",
defined($options{"ro"}) ? "" : "checked";
}
if ($support == 4) {
print "<td><b>$text{'linux_user'}</b></td>\n";
printf "<td><input type=radio name=smbfs_user2 value=1 %s> $text{'yes'}\n",
defined($options{"user"}) ? "checked" : "";
printf "<input type=radio name=smbfs_user2 value=0 %s> $text{'no'}</td> </tr>\n",
defined($options{"user"}) ? "" : "checked";
print "<tr> <td><b>$text{'linux_cname'}</b></td>\n";
printf "<td colspan=3><input type=radio name=smbfs_cname_def value=1 %s> $text{'linux_auto'}\n",
defined($options{"netbiosname"}) ? "" : "checked";
printf "<input type=radio name=smbfs_cname_def value=0 %s>\n",
defined($options{"netbiosname"}) ? "checked" : "";
print "<input size=40 name=smbfs_cname value=\"$options{netbiosname}\"></td> </tr>\n";
print "<tr> <td><b>$text{'linux_mname'}</b></td>\n";
printf "<td colspan=3><input type=radio name=smbfs_mname_def value=1 %s> %s\n",
defined($options{"ip"}) ? "" : "checked", $text{'linux_auto'};
printf "<input type=radio name=smbfs_mname_def value=0 %s>\n",
defined($options{"ip"}) ? "checked" : "";
print "<input size=40 name=smbfs_mname value=\"$options{ip}\"></td> </tr>\n";
print "<tr> <td><b>$text{'linux_wg'}</b></td>\n";
printf "<td><input type=radio name=smbfs_wg_def value=1 %s> $text{'linux_auto'}\n",
defined($options{"workgroup"}) ? "" : "checked";
printf "<input type=radio name=smbfs_wg_def value=0 %s>\n",
defined($options{"workgroup"}) ? "checked" : "";
print "<input size=10 name=smbfs_wg value=\"$options{'workgroup'}\"></td>\n";
}
if ($support >= 3) {
print "</tr>\n";
}
}
if ($_[0] eq "cifs") {
# Show cifs-only options
print "<tr> <td><b>$text{'linux_codepage'}</b></td>\n";
print "<td>",&ui_opt_textbox("smbfs_codepage",
$options{'codepage'}, 10, $text{'default'}),"</td>\n";
print "<td><b>$text{'linux_iocharset'}</b></td>\n";
print "<td>",&ui_opt_textbox("smbfs_iocharset",
$options{'iocharset'}, 10, $text{'default'}),"</td> </tr>\n";
}
}
elsif ($_[0] eq "reiserfs") {
# Reiserfs is a new super-efficient filesystem
print "<tr $tb> <td colspan=4><b>$text{'edit_reiserfs_opt'}</b></td> </tr>\n";
print "<tr> <td><b>$text{'linux_notail'}</b></td>\n";
printf "<td><input type=radio name=lnx_notail value=1 %s> $text{'yes'}\n",
defined($options{"notail"}) ? "checked" : "";
printf "<input type=radio name=lnx_notail value=0 %s> $text{'no'}</td> </tr>\n",
defined($options{"notail"}) ? "" : "checked";
}
elsif ($_[0] eq "tmpfs") {
# Tmpfs has some size options
print "<tr $tb> <td colspan=4><b>$text{'edit_tmpfs_opt'}</b></td> </tr>\n";
print "<tr> <td><b>$text{'linux_tmpsize'}</b></td>\n";
printf "<td><input type=radio name=lnx_tmpsize_def value=1 %s> %s\n",
!defined($options{"size"}) ? "checked" : "",
$text{'linux_unlimited'};
printf "<input type=radio name=lnx_tmpsize_def value=0 %s>\n",
!defined($options{"size"}) ? "" : "checked";
printf "<input name=lnx_tmpsize size=6 value='%s'></td>\n",
$options{"size"};
print "<td><b>$text{'linux_nr_blocks'}</b></td>\n";
printf "<td><input type=radio name=lnx_nr_blocks_def value=1 %s> %s\n",
!defined($options{"nr_blocks"}) ? "checked" : "",
$text{'linux_unlimited'};
printf "<input type=radio name=lnx_nr_blocks_def value=0 %s>\n",
!defined($options{"nr_blocks"}) ? "" : "checked";
printf "<input name=lnx_nr_blocks size=6 value='%s'></td> </tr>\n",
$options{"nr_blocks"};
print "<tr> <td><b>$text{'linux_nr_inodes'}</b></td>\n";
printf "<td><input type=radio name=lnx_nr_inodes_def value=1 %s> %s\n",
!defined($options{"nr_inodes"}) ? "checked" : "",
$text{'linux_unlimited'};
printf "<input type=radio name=lnx_nr_inodes_def value=0 %s>\n",
!defined($options{"nr_inodes"}) ? "" : "checked";
printf "<input name=lnx_nr_inodes size=6 value='%s'></td>\n",
$options{"nr_inodes"};
print "<td><b>$text{'linux_tmpmode'}</b></td>\n";
printf "<td><input type=radio name=lnx_tmpmode_def value=1 %s> %s\n",
!defined($options{"mode"}) ? "checked" : "", $text{'default'};
printf "<input type=radio name=lnx_tmpmode_def value=0 %s>\n",
!defined($options{"mode"}) ? "" : "checked";
printf "<input name=lnx_tmpmode size=3 value='%s'></td> </tr>\n",
$options{"mode"};
}
elsif ($_[0] eq "xfs") {
# Show options for XFS
print "<tr $tb> <td colspan=4><b>$text{'edit_xfs_opt'}</b></td> </tr>\n";
print "<tr> <td><b>$text{'linux_usrquotas'}</b></td>\n";
print "<td colspan=3>\n";
printf "<input type=radio name=xfs_usrquota value=1 %s> %s\n",
defined($options{"quota"}) || defined($options{"usrquota"}) ?
"checked" : "", $text{'yes'};
printf "<input type=radio name=xfs_usrquota value=2 %s> %s\n",
defined($options{"uqnoenforce"}) ? "checked" : "",
$text{'linux_noenforce'};
printf "<input type=radio name=xfs_usrquota value=0 %s> %s</td></tr>\n",
defined($options{"quota"}) || defined($options{"usrquota"}) ||
defined($options{"uqnoenforce"}) ? "" : "checked", $text{'no'};
print "<tr> <td><b>$text{'linux_grpquotas'}</b></td>\n";
print "<td colspan=3>\n";
printf "<input type=radio name=xfs_grpquota value=1 %s> %s\n",
defined($options{"grpquota"}) ? "checked" : "", $text{'yes'};
printf "<input type=radio name=xfs_grpquota value=2 %s> %s\n",
defined($options{"gqnoenforce"}) ? "checked" : "",
$text{'linux_noenforce'};
printf "<input type=radio name=xfs_grpquota value=0 %s> %s</td></tr>\n",
defined($options{"grpquota"}) ||
defined($options{"gqnoenforce"}) ? "" : "checked", $text{'no'};
}
elsif ($_[0] eq "jfs") {
# No other JFS options yet!
}
elsif ($_[0] eq "ntfs") {
# Windows NT/XP/2000 filesystem
print "<tr $tb> <td colspan=4><b>$text{'edit_ntfs_opt'}</b></td> </tr>\n";
print "<tr> <td><b>$text{'linux_uid'}</b></td>\n";
printf "<td><input name=ntfs_uid size=8 value=\"%s\">\n",
defined($options{"uid"}) ? getpwuid($options{"uid"}) : "";
print &user_chooser_button("ntfs_uid", 0),"</td>\n";
print "<td><b>$text{'linux_gid'}</b></td>\n";
printf "<td><input name=ntfs_gid size=8 value=\"%s\">\n",
defined($options{"gid"}) ? getgrgid($options{"gid"}) : "";
print &group_chooser_button("ntfs_gid", 0),"</td>\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") || ($_[0] eq "nfs4")) {
local($out, $temp, $mout, $dirlist);
if (&has_command("showmount")) {
# Use ping and showmount to see if the host exists and is up
if ($in{nfs_host} !~ /^\S+$/) {
&error(&text('linux_ehost', $in{'nfs_host'}));
}
$out = &backquote_command("ping -c 1 '$in{nfs_host}' 2>&1");
if ($out =~ /unknown host/) {
&error(&text('linux_ehost2', $in{'nfs_host'}));
}
elsif ($out =~ /100\% packet loss/) {
&error(&text('linux_edown', $in{'nfs_host'}));
}
$out = &backquote_command("showmount -e '$in{nfs_host}' 2>&1");
if ($out =~ /Unable to receive/) {
&error(&text('linux_enfs', $in{'nfs_host'}));
}
elsif ($?) {
&error(&text('linux_elist', $out));
}
# Validate directory name for NFSv3 (in v4 '/' exists)
foreach (split(/\n/, $out)) {
if (/^(\/\S+)/) { $dirlist .= "$1\n"; }
}
if (($_[0] ne "nfs4") && ($in{nfs_dir} !~ /^\/.*$/)) {
&error(&text('linux_enfsdir', $in{'nfs_dir'},
$in{'nfs_host'}, "<pre>$dirlist</pre>"));
}
}
# Try a test mount to see if filesystem is available
$temp = &tempname();
&make_dir($temp, 0755);
&execute_command("mount -t $_[0] ".
quotemeta("$in{nfs_host}:$in{nfs_dir}")." ".
quotemeta($temp),
undef, \$mout, \$mout);
if ($mout =~ /No such file or directory/i) {
&error(&text('linux_enfsdir', $in{'nfs_dir'},
$in{'nfs_host'}, "<pre>$dirlist</pre>"));
}
elsif ($mout =~ /Permission denied/i) {
&error(&text('linux_enfsperm', $in{'nfs_dir'}, $in{'nfs_host'}));
}
elsif ($?) {
&error(&text('linux_enfsmount', "<tt>$mout</tt>"));
}
# It worked! unmount
local $umout;
&execute_command("umount ".quotemeta($temp), undef, \$umout, \$umout);
if ($?) {
&error(&text('linux_enfsmount', "<tt>$umout</tt>"));
}
rmdir(&translate_filename($temp)); # Don't delete mounted files!
return "$in{nfs_host}:$in{nfs_dir}";
}
elsif ($_[0] eq "auto") {
# Check if the automounter map exists..
(-r $in{auto_map}) || &error(&text('linux_eautomap', $in{'auto_map'}));
return $in{auto_map};
}
elsif ($_[0] eq "autofs") {
# Check if the map exists (if it is a file)
if ($in{'autofs_map'} =~ /^\// && !(-r $in{'autofs_map'})) {
&error(&text('linux_eautomap', $in{'autofs_map'}));
}
return $in{autofs_map};
}
elsif ($_[0] eq $smbfs_fs || $_[0] eq "cifs") {
# No real checking done
$in{'smbfs_server'} =~ /\S/ || &error($text{'linux_eserver'});
$in{'smbfs_share'} =~ /\S/ || &error($text{'linux_eshare'});
return "\\\\".lc($in{'smbfs_server'})."\\".lc($in{'smbfs_share'});
}
elsif ($_[0] eq "tmpfs") {
# No location needed
return "tmpfs";
}
elsif ($_[0] eq "bind") {
# Just check the directory
-d $in{'bind_dir'} || &error($text{'linux_ebind'});
return $in{'bind_dir'};
}
else {
# This is some kind of disk-based linux filesystem.. get the device name
if ($in{'lnx_dev'} == 0) {
$dv = $in{'lnx_disk'};
}
elsif ($in{'lnx_dev'} == 2) {
$dv = $in{'lnx_raid'};
}
elsif ($in{'lnx_dev'} == 3) {
$dv = "LABEL=".$in{'lnx_label'};
}
elsif ($in{'lnx_dev'} == 4) {
$dv = $in{'lnx_lvm'};
}
elsif ($in{'lnx_dev'} == 5) {
$dv = "UUID=".$in{'lnx_uuid'};
}
else {
$dv = $in{'lnx_other'};
$dv || &error($text{'linux_edev'});
}
# 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
if (!-r $dv && $dv !~ /LABEL=/ && $dv !~ /UUID=/) {
if ($_[0] eq "swap" && $dv !~ /\/dev/) {
&swap_form($dv);
}
else {
&error(&text('linux_edevfile', $dv));
}
}
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" && $_[0] ne "auto" &&
$_[0] ne "autofs" && $_[0] ne $smbfs_fs && $_[0] ne "cifs") {
delete($options{"ro"}); delete($options{"rw"});
if ($in{lnx_ro}) { $options{"ro"} = ""; }
delete($options{"sync"}); delete($options{"async"});
if ($in{lnx_sync}) { $options{"sync"} = ""; }
delete($options{"dev"}); delete($options{"nodev"});
if ($in{lnx_nodev}) { $options{"nodev"} = ""; }
else { $options{"dev"} = ""; }
delete($options{"exec"}); delete($options{"noexec"});
if ($in{lnx_noexec}) { $options{"noexec"} = ""; }
else { $options{"exec"} = ""; }
delete($options{"suid"}); delete($options{"nosuid"});
if ($in{lnx_nosuid}) { $options{"nosuid"} = ""; }
else { $options{"suid"} = ""; }
delete($options{"user"}); delete($options{"nouser"});
if ($in{lnx_user}) { $options{"user"} = ""; }
}
if (($_[0] eq "nfs") || ($_[0] eq "nfs4")) {
# NFS has a few specific options..
delete($options{"bg"}); delete($options{"fg"});
if ($in{nfs_bg}) { $options{"bg"} = ""; }
delete($options{"soft"}); delete($options{"hard"});
if ($in{nfs_soft}) { $options{"soft"} = ""; }
delete($options{"timeo"});
if (!$in{nfs_timeo_def}) { $options{"timeo"} = $in{nfs_timeo}; }
delete($options{"port"});
if (!$in{nfs_port_def}) { $options{"port"} = $in{nfs_port}; }
delete($options{"intr"}); delete($options{"nointr"});
if ($in{nfs_intr}) { $options{"intr"} = ""; }
delete($options{"tcp"}); delete($options{"udp"});
local $dproto = $_[0] eq "nfs" ? "udp" : "tcp";
if ($in{nfs_transfert} eq "tcp" && $dproto ne "tcp") {
$options{"tcp"} = "";
}
elsif ($in{nfs_transfert} eq "udp" && $dproto ne "udp" && $_[0] ne "nfs4") {
$options{"udp"} = "";
}
delete($options{"wsize"});
if (!$in{nfs_wsize_def}) { $options{"wsize"} = $in{nfs_wsize}; }
delete($options{"rsize"});
if (!$in{nfs_rsize_def}) { $options{"rsize"} = $in{nfs_rsize}; }
delete($options{"sec"});
# Only sys and krb5 for the moment
if ($in{nfs_auth}) {
if ($in{nfs_sec} == 0) { $options{"sec"} = "krb5"; }
if ($in{nfs_sec} == 1) { $options{"sec"} = "krb5i"; }
if ($in{nfs_sec} == 2) { $options{"sec"} = "krb5p"; }
}
}
elsif ($_[0] eq "ext2" || $_[0] eq "ext3") {
# More options for ext2..
if ($no_mount_check) {
delete($options{"bsddf"}); delete($options{"minixdf"});
$options{"minixdf"} = "" if ($in{'ext2_df'});
}
else {
delete($options{"check"}); delete($options{"nocheck"});
if ($in{ext2_check} ne "normal") {
$options{"check"} = $in{ext2_check};
}
}
delete($options{"errors"});
if ($in{ext2_errors} ne "default") {
$options{"errors"} = $in{ext2_errors};
}
delete($options{"grpid"}); delete($options{"bsdgroups"});
delete($options{"sysvgroups"}); delete($options{"nogrpid"});
if ($in{ext2_grpid}) {
$options{"grpid"} = "";
}
delete($options{"resuid"}); delete($options{"resgid"});
if ($in{'ext2_resuid'})
{ $options{"resuid"} = getpwnam($in{'ext2_resuid'}); }
if ($in{'ext2_resgid'})
{ $options{"resgid"} = getgrnam($in{'ext2_resgid'}); }
delete($options{"quota"}); delete($options{"noquota"});
delete($options{"usrquota"}); delete($options{"grpquota"});
if ($in{'ext2_quota'} == 1) { $options{'usrquota'} = ""; }
elsif ($in{'ext2_quota'} == 2) { $options{'grpquota'} = ""; }
elsif ($in{'ext2_quota'} == 3)
{ $options{'usrquota'} = $options{'grpquota'} = ""; }
delete($options{"noatime"});
$options{"noatime"} = "" if ($in{'ext2_noatime'});
}
elsif ($_[0] eq "fat" || $_[0] eq "vfat" ||
$_[0] eq "msdos" || $_[0] eq "umsdos" || $_[0] eq "fatx") {
# All dos-based filesystems have similar options
delete($options{"uid"}); delete($options{"gid"});
if ($in{fat_uid} ne "") { $options{"uid"} = getpwnam($in{'fat_uid'}); }
if ($in{fat_gid} ne "") { $options{"gid"} = getgrnam($in{'fat_gid'}); }
delete($options{"check"});
if ($in{fat_check} ne "") { $options{"check"} = $in{fat_check}; }
delete($options{"conv"});
if ($in{fat_conv} ne "") { $options{"conv"} = $in{fat_conv}; }
delete($options{"umask"});
if (!$in{fat_umask_def}) {
$in{fat_umask} =~ /^[0-7]{3}$/ ||
&error(&text('linux_emask', $in{'fat_umask'}));
$options{"umask"} = $in{fat_umask};
}
delete($options{"quiet"});
if ($in{fat_quiet}) {
$options{"quiet"} = "";
}
if ($_[0] eq "vfat") {
# Parse extra vfat options..
delete($options{"uni_xlate"});
if ($in{fat_uni_xlate}) { $options{"uni_xlate"} = ""; }
delete($options{"posix"});
if ($in{fat_posix}) { $options{"posix"} = ""; }
}
}
elsif ($_[0] eq "hpfs") {
# OS/2 filesystem options..
delete($options{"uid"}); delete($options{"gid"});
if ($in{hpfs_uid} ne "") { $options{"uid"} = getpwnam($in{hpfs_uid}); }
if ($in{hpfs_gid} ne "") { $options{"gid"} = getgrnam($in{hpfs_gid}); }
delete($options{"umask"});
if (!$in{hpfs_umask_def}) {
$in{hpfs_umask} =~ /^[0-7]{3}$/ ||
&error(&text('linux_emask', $in{'hpfs_umask'}));
$options{"umask"} = $in{hpfs_umask};
}
delete($options{"conv"});
if ($in{hpfs_conv} ne "") { $options{"conv"} = $in{hpfs_conv}; }
}
elsif ($_[0] eq "iso9660") {
# Options for iso9660 cd-roms
delete($options{"uid"}); delete($options{"gid"});
if ($in{iso9660_uid} ne "")
{ $options{"uid"} = getpwnam($in{iso9660_uid}); }
if ($in{iso9660_gid} ne "")
{ $options{"gid"} = getgrnam($in{iso9660_gid}); }
delete($options{"norock"});
if ($in{iso9660_norock}) { $options{"norock"} = ""; }
delete($options{"mode"});
$in{iso9660_mode} =~ /^[0-7]{3}$/ ||
&error(&text('linux_emask', $in{'iso9660_mode'}));
$options{"mode"} = $in{iso9660_mode};
}
elsif ($_[0] eq "autofs") {
# Options for automounter filesystems
delete($options{'timeout'});
if (!$in{'autofs_timeout_def'}) {
$in{'autofs_timeout'} =~ /^\d+$/ ||
&error(&text('linux_etimeout', $in{'autofs_timeout'}));
$options{'timeout'} = $in{'autofs_timeout'};
}
delete($options{'pid-file'});
if (!$in{'autofs_pid-file_def'}) {
$in{'autofs_pid-file'} =~ /^\/\S+$/ ||
&error(&text('linux_epidfile', $in{'autofs_pid-file'}));
$options{'pid-file'} = $in{'autofs_pid-file'};
}
}
elsif ($_[0] eq $smbfs_fs || $_[0] eq "cifs") {
# Options for smb filesystems..
local $support = $_[0] eq $smbfs_fs ? $smbfs_support : $cifs_support;
delete($options{'user'}); delete($options{'username'});
if ($in{smbfs_user}) {
$options{$support == 4 ? 'username' : 'user'} = $in{smbfs_user};
}
delete($options{'passwd'}); delete($options{'password'});
if ($in{smbfs_passwd}) {
$options{$support == 4 ? 'password' : 'passwd'} = $in{smbfs_passwd};
}
if ($support == 4) {
delete($options{'credentials'});
if ($in{smbfs_creds}) {
$options{'credentials'} = $in{smbfs_creds};
}
}
if (!$access{'simopts'}) {
if ($support != 2) {
delete($options{uid});
if ($in{smbfs_uid} ne "") { $options{uid} = getpwnam($in{smbfs_uid}); }
delete($options{gid});
if ($in{smbfs_gid} ne "") { $options{gid} = getgrnam($in{smbfs_gid}); }
}
if ($support == 1) {
delete($options{servername});
if (!$in{smbfs_sname_def})
{ $options{servername} = $in{smbfs_sname}; }
}
elsif ($support == 2 || $support == 4) {
delete($options{workgroup});
if (!$in{smbfs_wg_def})
{ $options{workgroup} = $in{smbfs_wg}; }
}
if ($support < 3) {
delete($options{clientname});
if (!$in{smbfs_cname_def})
{ $options{clientname} = $in{smbfs_cname}; }
delete($options{machinename});
if (!$in{smbfs_mname_def})
{ $options{machinename} = $in{smbfs_mname}; }
elsif (!gethostbyname($in{'smbfs_server'})) {
# No hostname found for the server.. try to guess
local($out, $sname);
$sname = $in{'smbfs_server'};
$out = &backquote_command("$config{'nmblookup_path'} -d 0 $sname 2>&1");
if (!$? && $out =~ /^([0-9\.]+)\s+$sname\n/) {
$options{machinename} = $1;
}
}
}
elsif ($support == 4) {
delete($options{"netbiosname"});
if (!$in{"smbfs_cname_def"}) {
$in{"smbfs_cname"} =~ /^\S+$/ ||
&error($text{'linux_ecname'});
$options{"netbiosname"} = $in{"smbfs_cname"};
}
delete($options{"ip"});
if (!$in{"smbfs_mname_def"}) {
gethostbyname($in{"smbfs_mname"}) ||
&check_ipaddress($in{"smbfs_mname"}) ||
&error($text{'linux_emname'});
$options{"ip"} = $in{"smbfs_mname"};
}
}
if ($support == 1) {
delete($options{fmode});
if ($in{smbfs_fmode} !~ /^[0-7]{3}$/) {
&error(&text('linux_efmode', $in{'smbfs_fmode'}));
}
elsif ($in{smbfs_fmode} ne "755")
{ $options{fmode} = $in{smbfs_fmode}; }
delete($options{dmode});
if ($in{smbfs_dmode} !~ /^[0-7]{3}$/) {
&error(&text('linux_edmode', $in{'smbfs_dmode'}));
}
elsif ($in{smbfs_dmode} ne "755")
{ $options{dmode} = $in{smbfs_dmode}; }
}
elsif ($support >= 3) {
if ($in{'smbfs_fmask_def'}) {
delete($options{'fmask'});
}
else {
$in{'smbfs_fmask'} =~ /^[0-7]{3}$/ ||
&error(&text('linux_efmode', $in{'smbfs_fmask'}));
$options{'fmask'} = $in{'smbfs_fmask'};
}
if ($in{'smbfs_dmask_def'}) {
delete($options{'dmask'});
}
else {
$in{'smbfs_dmask'} =~ /^[0-7]{3}$/ ||
&error(&text('linux_edmode', $in{'smbfs_dmask'}));
$options{'dmask'} = $in{'smbfs_dmask'};
}
delete($options{'ro'}); delete($options{'rw'});
if ($in{'smbfs_ro'}) { $options{'ro'} = ''; }
}
if ($support == 4) {
delete($options{'user'});
if ($in{'smbfs_user2'}) { $options{'user'} = ''; }
}
}
if ($_[0] eq "cifs") {
# Parse CIFS-specific options
delete($options{'codepage'});
if (!$in{'smbfs_codepage_def'}) {
$in{'smbfs_codepage'} =~ /^\S+$/ ||
&error($text{'linux_ecodepage'});
$options{'codepage'} = $in{'smbfs_codepage'};
}
delete($options{'iocharset'});
if (!$in{'smbfs_iocharset_def'}) {
$in{'smbfs_iocharset'} =~ /^\S+$/ ||
&error($text{'linux_eiocharset'});
$options{'iocharset'} = $in{'smbfs_iocharset'};
}
}
}
elsif ($_[0] eq "reiserfs") {
# Save reiserfs options
delete($options{'notail'});
$options{'notail'} = "" if ($in{'lnx_notail'});
if ($in{'lnx_user'} && !$in{'lnx_noexec'}) {
# Have to force on the exec option
$options{"exec"} = "";
}
}
elsif ($_[0] eq "tmpfs") {
# Save tmpfs options
if ($in{'lnx_tmpsize_def'}) {
delete($options{'size'});
}
else {
$in{'lnx_tmpsize'} =~ /^(\d+)([kmg]?)$/ ||
&error($text{'lnx_etmpsize'});
$options{'size'} = $in{'lnx_tmpsize'};
}
if ($in{'lnx_nr_blocks_def'}) {
delete($options{'nr_blocks'});
}
else {
$in{'lnx_nr_blocks'} =~ /^\d+$/ ||
&error($text{'lnx_enr_blocks'});
$options{'nr_blocks'} = $in{'lnx_nr_blocks'};
}
if ($in{'lnx_nr_inodes_def'}) {
delete($options{'nr_inodes'});
}
else {
$in{'lnx_nr_inodes'} =~ /^\d+$/ ||
&error($text{'lnx_enr_inodes'});
$options{'nr_inodes'} = $in{'lnx_nr_inodes'};
}
if ($in{'lnx_tmpmode_def'}) {
delete($options{'mode'});
}
else {
$in{'lnx_tmpmode'} =~ /^[0-7]{3,4}$/ ||
&error($text{'lnx_etmpmode'});
$options{'mode'} = $in{'lnx_tmpmode'};
}
}
elsif ($_[0] eq "xfs") {
# Save XFS options
delete($options{'quota'});
delete($options{'usrquota'});
delete($options{'uqnoenforce'});
$options{'usrquota'} = "" if ($in{'xfs_usrquota'} == 1);
$options{'uqnoenforce'} = "" if ($in{'xfs_usrquota'} == 2);
delete($options{'grpquota'});
delete($options{'gqnoenforce'});
$options{'grpquota'} = "" if ($in{'xfs_grpquota'} == 1);
$options{'gqnoenforce'} = "" if ($in{'xfs_grpquota'} == 2);
}
elsif ($_[0] eq "ntfs") {
# Save NTFS options
delete($options{"uid"}); delete($options{"gid"});
if ($in{ntfs_uid} ne "")
{ $options{"uid"} = getpwnam($in{ntfs_uid}); }
if ($in{ntfs_gid} ne "")
{ $options{"gid"} = getgrnam($in{ntfs_gid}); }
}
elsif ($_[0] eq "swap") {
# Save SWAP options
if ($in{'swap_pri_def'}) {
delete($options{'pri'});
}
else {
$in{'swap_pri'} =~ /^\d+$/ && $in{'swap_pri'} <= 32767 ||
&error($text{'linux_eswappri'});
$options{'pri'} = $in{'swap_pri'};
}
}
# Add loop option if mounting a normal file
if ($_[0] ne "swap" && $_[0] ne "auto" && $_[0] ne "autofs" &&
$_[0] ne $smbfs_fs && $_[0] ne "cifs" && $_[0] ne "nfs" &&
$_[0] ne "nfs4" && $_[0] ne "tmpfs") {
local(@st);
@st = stat($_[1]);
if (@st && ($st[2] & 0xF000) == 0x8000) {
# a regular file.. add the loop option
if (!$options{'loop'}) {
$options{'loop'} = "";
}
}
}
# Return options string
foreach $k (sort { ($b eq "user" ? 1 : 0) <=> ($a eq "user" ? 1 : 0) } (keys %options)) {
if ($options{$k} eq "") { push(@rv, $k); }
else { push(@rv, "$k=$options{$k}"); }
}
return @rv ? join(',' , @rv) : "-";
}
# Get the smbfs options from 'smbfs_opts' file in the current directory. This
# is sadly necessary because there is no way to get the current options for
# an existing smbfs mount... so webmin has to save them in a file when
# mounting. Blech.
sub read_smbopts
{
local($_);
open(SMBOPTS, "$module_config_directory/smbfs");
while(<SMBOPTS>) {
/^(\S+)\s+(\S+)$/;
$smbopts{$1} = $2;
}
close(SMBOPTS);
}
sub write_smbopts
{
local($_);
&open_tempfile(SMBOPTS, "> $module_config_directory/smbfs");
foreach (keys %smbopts) {
&print_tempfile(SMBOPTS, "$_\t$smbopts{$_}\n");
}
&close_tempfile(SMBOPTS);
}
# create_swap(file, size, units)
# Calls dd and mkswap to setup a swap file
sub create_swap
{
local($out, $bl);
$bl = $_[1] * ($_[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; }
# Add '/' if the server is in NFSv4
if (nfs_max_version($_[0]) >= 4) {
push(@$dref, "/"); push(@$cref, "*"); }
foreach (split(/\n/, $out)) {
if (/^(\/\S*)\s+(.*)$/) {
push(@$dref, $1); push(@$cref, $2);
}
}
return undef;
}
# nfs_max_version(host)
# Return the max NFS version allowed on a server
sub nfs_max_version
{
local($_, $max, $out);
$max = 0;
$out = &backquote_command("/usr/sbin/rpcinfo -p ".quotemeta($_[0])." 2>&1", 1);
if ($?) { return $out; }
foreach (split(/\n/, $out)) {
if ((/ +(\d) +.*nfs/) && ($1 > $max)) {
$max = $1; }
}
return $max;
}
# 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 =~ /(eth|tr)\d\s+.*\n.*Bcast:(\S+)\s+/) { return $2; }
return "255.255.255.255";
}
# autofs_options(string)
# Converts a string of options line --timeout 60 to something like timeout=60
sub autofs_options
{
local(@options);
if ($_[0] =~ /--timeout\s+(\d+)/ || $_[0] =~ /-t\s+(\d+)/) {
push(@options, "timeout=$1");
}
if ($_[0] =~ /--pid-file\s+(\S+)/ || $_[0] =~ /-p\s+(\d+)/) {
push(@options, "pid-file=$1");
}
return join(',', @options);
}
# autofs_args(string)
# Convert a comma-separated options string into args for automount
sub autofs_args
{
local(%options, $args);
&parse_options("autofs", $_[0]);
if (defined($options{'timeout'})) {
$args .= " --timeout $options{'timeout'}";
}
if (defined($options{'pid-file'})) {
$args .= " --pid-file $options{'pid-file'}";
}
return $args;
}
# read_amd_conf()
# Returns the entire amd config file as a string
sub read_amd_conf
{
local $sl = $/;
$/ = undef;
local $rv;
foreach $f (split(/\s+/, $config{'auto_file'})) {
open(AMD, $f);
$rv .= <AMD>;
close(AMD);
}
$/ = $sl;
return $rv;
}
# write_amd_conf(text)
sub write_amd_conf
{
local @af = split(/\s+/, $config{'auto_file'});
&open_tempfile(AMD, ">$config{'auto_file'}");
&print_tempfile(AMD, $_[0]);
&close_tempfile(AMD);
}
# parse_amd_conf()
# Parses a new-style amd.conf file into a hashtable
sub parse_amd_conf
{
local (@rv, $str);
foreach $f (split(/\s+/, $config{'auto_file'})) {
local $lnum = 0;
open(AMD, $f);
while(<AMD>) {
s/\r|\n//g;
s/#.*$//g;
if (/\[\s*(\S+)\s*\]/) {
$str = { 'dir' => $1,
'line' => $lnum,
'eline' => $lnum,
'file' => $f };
push(@rv, $str);
}
elsif (/(\S+)\s*=\s*"(.*)"/ || /(\S+)\s*=\s*(\S+)/) {
$str->{'opts'}->{$1} = $2;
$str->{'eline'} = $lnum;
}
$lnum++;
}
close(AMD);
}
return @rv;
}
# device_name(device)
# Converts a device name to a human-readable form
sub device_name
{
if (!$text{'select_part'}) {
local %flang = &load_language('fdisk');
foreach $k (keys %flang) {
$text{$k} = $flang{$k} if ($k =~ /^select_/);
}
}
return $_[0] =~ /^\/dev\/(s|h)d([a-z])(\d+)$/ ?
&text('select_part', $1 eq 's' ? 'SCSI' : 'IDE', uc($2), "$3") :
$_[0] =~ /^\/dev\/(s|h)d([a-z])$/ ?
&text('select_device', $1 eq 's' ? 'SCSI' : 'IDE', uc($2)) :
$_[0] =~ /rd\/c(\d+)d(\d+)p(\d+)$/ ?
&text('select_mpart', "$1", "$2", "$3") :
$_[0] =~ /ida\/c(\d+)d(\d+)p(\d+)$/ ?
&text('select_cpart', "$1", "$2", "$3") :
$_[0] =~ /cciss\/c(\d+)d(\d+)p(\d+)$/ ?
&text('select_smartpart', "$1", "$2", "$3") :
$_[0] =~ /scsi\/host(\d+)\/bus(\d+)\/target(\d+)\/lun(\d+)\/part(\d+)/ ?
&text('select_spart', "$1", "$2", "$3", "$4", "$5") :
$_[0] =~ /scsi\/host(\d+)\/bus(\d+)\/target(\d+)\/lun(\d+)\/disc/ ?
&text('select_scsi', "$1", "$2", "$3", "$4") :
$_[0] =~ /ide\/host(\d+)\/bus(\d+)\/target(\d+)\/lun(\d+)\/part(\d+)/ ?
&text('select_snewide', "$1", "$2", "$3", "$4", "$5") :
$_[0] =~ /ide\/host(\d+)\/bus(\d+)\/target(\d+)\/lun(\d+)\/disc/ ?
&text('select_newide', "$1", "$2", "$3", "$4") :
$_[0] =~ /ataraid\/disc(\d+)\/part(\d+)$/ ?
&text('select_ppart', "$1", "$2") :
$_[0] =~ /fd(\d+)$/ ?
&text('select_fd', "$1") :
$_[0] =~ /md(\d+)$/ ?
&text('linux_rdev', "$1") :
$_[0] =~ /\/dev\/([^\/]+)\/([^\/]+)$/ && $1 ne "cdroms" ?
&text('linux_ldev', "$1", "$2") :
$_[0] =~ /LABEL=(\S+)/i ?
&text('linux_label', "$1") :
$_[0] =~ /UUID=(\S+)/i ?
&text('linux_uuid', "$1") :
$_[0] eq '/dev/cdrom' ?
$text{'linux_cddev'} :
$_[0] eq '/dev/burner' ?
$text{'linux_burnerdev'} :
$_[0] =~ /cdroms\/cdrom(\d+)$/ ?
&text('linux_cddev2', "$1") :
$_[0];
}
sub files_to_lock
{
return ( $config{'fstab_file'}, $config{'autofs_file'},
split(/\s+/, $config{'auto_file'}) );
}
1;