# Networking functions for Gentoo 2006+ do 'linux-lib.pl'; $gentoo_net_config = "/etc/conf.d/net"; $min_virtual_number = 1; # parse_gentoo_net() # Parses the Gentoo net config file into an array of named sections sub parse_gentoo_net { my @rv; my $sect; my $lnum = 0; open(CONF, "<".$gentoo_net_config); while(<CONF>) { s/\r|\n//g; s/#.*$//; if (/^\s*(\S+)\s*=\s*\((.*)/) { # Start of some section, which may span several lines $sect = { 'name' => $1, 'line' => $lnum }; push(@rv, $sect); my $v = $2; if ($v =~ /^(.*)\)/) { # Ends on same line $sect->{'values'} = [ &split_gentoo_values("$1") ]; $sect->{'eline'} = $lnum; $sect = undef; } else { # May span multiple $sect->{'values'} = [ &split_gentoo_values($v) ]; } } elsif (/^\s*\)/ && $sect) { # End of a section $sect->{'eline'} = $lnum; $sect = undef; } elsif (/^\s*(".*")\s*\)/ && $sect) { # End of a section, but with some values before it push(@{$sect->{'values'}}, &split_gentoo_values("$1")); $sect->{'eline'} = $lnum; $sect = undef; } elsif (/^\s*(".*")/ && $sect) { # Values within a section push(@{$sect->{'values'}}, &split_gentoo_values("$1")); } $lnum++; } close(CONF); return @rv; } # save_gentoo_net(&old, &new) # Update or create a Gentoo net config file section sub save_gentoo_net { my ($old, $new) = @_; my @lines; if ($new) { push(@lines, $new->{'name'}."=("); foreach my $v (@{$new->{'values'}}) { push(@lines," \"$v\""); } push(@lines, ")"); } my $lref = &read_file_lines($gentoo_net_config); if ($old && $new) { # Replace section splice(@$lref, $old->{'line'}, $old->{'eline'}-$old->{'line'}+1, @lines); $new->{'eline'} = $new->{'line'}+scalar(@lines)-1; } elsif ($old && !$new) { # Delete section splice(@$lref, $old->{'line'}, $old->{'eline'}-$old->{'line'}+1); } elsif (!$old && $new) { # Add section $new->{'line'} = scalar(@$lref); $new->{'eline'} = $new->{'line'}+scalar(@lines)-1; push(@$lref, @lines); } &flush_file_lines($gentoo_net_config); } # split_gentoo_values(string) # Splits a string like "foo bar" "smeg spod" into an array sub split_gentoo_values { my ($str) = @_; my @rv; while($str =~ /^\s*"([^"]+)",?(.*)/) { push(@rv, $1); $str = $2; } return @rv; } # boot_interfaces() # Returns a list of interfaces brought up at boot time sub boot_interfaces { my @rv; foreach my $g (&parse_gentoo_net()) { if ($g->{'name'} =~ /^config_(\S+)/) { my $gn = $1; my $n = 0; foreach my $v (@{$g->{'values'}}) { # An interface definition my $iface = { 'name' => $gn, 'up' => 1, 'edit' => 1, 'index' => scalar(@rv) }; if ($n == 0) { $iface->{'fullname'} = $gn; } else { $iface->{'fullname'} = $gn.":".$n; $iface->{'virtual'} = $n; } my @w = split(/\s+/, $v); if ($w[0] eq "dhcp") { $iface->{'dhcp'} = 1; } elsif ($w[0] eq "noop") { # Skipped, but still uses a up a number $n++; next; } if (&check_ipaddress($w[0])) { $iface->{'address'} = $w[0]; } elsif ($w[0] =~ /^([0-9\.]+)\/(\d+)$/) { $iface->{'address'} = $1; $iface->{'netmask'} = &prefix_to_mask($2); } for($i=1; $i<@w; $i++) { if ($w[$i] eq "netmask") { $iface->{'netmask'} = $w[++$i]; } elsif ($w[$i] eq "broadcast") { $iface->{'broadcast'} = $w[++$i]; } elsif ($w[$i] eq "mtu") { $iface->{'mtu'} = $w[++$i]; } } if ($iface->{'address'} && $iface->{'netmask'}) { $iface->{'broadcast'} ||= &compute_broadcast( $iface->{'address'}, $iface->{'netmask'}); } $iface->{'gentoo'} = $g; push(@rv, $iface); $n++; } } elsif ($g->{'name'} =~ /^routes_(\S+)/) { # A route definition for an interface my ($iface) = grep { $_->{'fullname'} eq $1 } @rv; my $spec = $g->{'values'}->[0]; if ($iface) { if ($spec =~ /default\s+via\s+([0-9\.]+)/ || $spec =~ /default\s+([0-9\.]+)/) { $iface->{'gateway'} = $1; $iface->{'gentoogw'} = $g; } } } $lnum++; } return @rv; } # save_interface(&details) # Create or update a boot-time interface sub save_interface { my ($iface) = @_; &lock_file($gentoo_net_config); # Build the interface line my @w; if ($iface->{'dhcp'}) { push(@w, "dhcp"); } else { push(@w, $iface->{'address'}); if ($iface->{'netmask'}) { push(@w, "netmask", $iface->{'netmask'}); } if ($iface->{'broadcast'}) { push(@w, "broadcast", $iface->{'broadcast'}); } if ($iface->{'mtu'}) { push(@w, "mtu", $iface->{'mtu'}); } } # Find the current block for this interface my @gentoo = &parse_gentoo_net(); my ($g) = grep { $_->{'name'} eq 'config_'.$iface->{'name'} } @gentoo; if ($g) { # Found it .. append or replace while (!$g->{'values'}->[$iface->{'virtual'}]) { push(@{$g->{'values'}}, "noop"); } $g->{'values'}->[$iface->{'virtual'}] = join(" ", @w); &save_gentoo_net($g, $g); } else { # Needs a new block $g = { 'name' => $iface->{'name'}, 'values' => [ join(" ", @w) ] }; &save_gentoo_net(undef, $g); } &unlock_file($gentoo_net_config); } # delete_interface(&details) # Delete a boot-time interface sub delete_interface { my ($iface) = @_; # Find the current block for this interface &lock_file($gentoo_net_config); my @gentoo = &parse_gentoo_net(); my ($g) = grep { $_->{'name'} eq 'config_'.$iface->{'name'} } @gentoo; if ($g) { # Found it .. take out the interface if ($iface->{'virtual'} == scalar(@{$g->{'values'}})-1) { # Last one pop(@{$g->{'values'}}); } else { $g->{'values'}->[$iface->{'virtual'}] = 'noop'; } &save_gentoo_net($g, $g); } &unlock_file($gentoo_net_config); } # can_edit(what) # Can some boot-time interface parameter be edited? sub can_edit { return $_[0] ne 'up' && $_[0] ne 'bootp'; } sub can_broadcast_def { return 0; } # valid_boot_address(address) # Is some address valid for a bootup interface sub valid_boot_address { return &check_ipaddress($_[0]); } # get_hostname() sub get_hostname { my %host; &read_env_file("/etc/conf.d/hostname", \%host); if ($host{'HOSTNAME'}) { return $host{'HOSTNAME'}; } return &get_system_hostname(); } # save_hostname(name) sub save_hostname { my ($hostname) = @_; my %host; &read_env_file("/etc/conf.d/hostname", \%host); $host{'HOSTNAME'} = $hostname; &write_env_file("/etc/conf.d/hostname", \%host); &system_logged("hostname ".quotemeta($hostname)." >/dev/null 2>&1"); } # routing_input() # Prints HTML for editing routing settings sub routing_input { my ($gw, $dev) = &get_default_gateway(); my @ifaces = grep { $_->{'virtual'} eq '' } &boot_interfaces(); print &ui_table_row($text{'routes_def'}, &ui_radio("route_def", $gw ? 0 : 1, [ [ 1, $text{'routes_nogw'}."<br>" ], [ 0, &text('routes_ggw', &ui_textbox("gw", $gw, 20), &ui_select("dev", $dev, [ map { $_->{'name'} } @ifaces ])) ] ])); } # parse_routing() # Applies settings from routing_input form sub parse_routing { if ($in{'route_def'}) { &set_default_gateway(); } else { &check_ipaddress($in{'gw'}) || &error(&text('routes_edefault', &html_escape($in{'gw'}))); &set_default_gateway($in{'gw'}, $in{'dev'}); } } # apply_network() # Apply the interface and routing settings sub apply_network { opendir(DIR, "/etc/init.d"); foreach my $f (readdir(DIR)) { if ($f =~ /^net.(\S+)/ && $1 ne "lo") { &system_logged("cd / ; /etc/init.d/$f restart >/dev/null 2>&1 </dev/null"); } } closedir(DIR); } # get_default_gateway() # Returns the default gateway IP (if one is set) and device (if set) boot time # settings. sub get_default_gateway { my @ifaces = &boot_interfaces(); my ($iface) = grep { $_->{'gateway'} } @ifaces; if ($iface) { return ( $iface->{'gateway'}, $iface->{'name'} ); } else { return ( ); } } # set_default_gateway(gateway, device) # Sets the default gateway to the given IP accessible via the given device, # in the boot time settings. sub set_default_gateway { my ($gw, $dev) = @_; &lock_file($gentoo_net_config); my @ifaces = &boot_interfaces(); my ($iface) = grep { $_->{'gateway'} } @ifaces; if ($iface && $gw) { # Change existing default route $g = $iface->{'gentoogw'}; $g->{'name'} = 'routes_'.$dev; $g->{'values'}->[0] = "default via $gw"; &save_gentoo_net($g, $g); } elsif ($iface && !$gw) { # Deleting existing default route $g = $iface->{'gentoogw'}; &save_gentoo_net($g, undef); } elsif (!$iface && $gw) { # Adding new default route $g = { 'name' => 'routes_'.$dev, 'values' => [ "default via $gw" ] }; &save_gentoo_net(undef, $g); } &unlock_file($gentoo_net_config); } # supports_address6([&iface]) # Returns 1 if managing IPv6 interfaces is supported sub supports_address6 { my ($iface) = @_; return 0; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
images | Folder | 0755 |
|
|
lang | Folder | 0755 |
|
|
CHANGELOG | File | 5.55 KB | 0644 |
|
acl_security.pl | File | 3.08 KB | 0755 |
|
apply.cgi | File | 184 B | 0755 |
|
backup_config.pl | File | 1005 B | 0755 |
|
cgi_args.pl | File | 752 B | 0755 |
|
cobalt-linux-lib.pl | File | 32.85 KB | 0755 |
|
coherent-linux-lib.pl | File | 32.85 KB | 0755 |
|
config | File | 48 B | 0644 |
|
config-ALL-linux | File | 48 B | 0644 |
|
config-cygwin | File | 82 B | 0644 |
|
config-freebsd | File | 48 B | 0644 |
|
config-macos | File | 48 B | 0644 |
|
config-netbsd | File | 48 B | 0644 |
|
config-openbsd | File | 48 B | 0644 |
|
config-solaris | File | 79 B | 0644 |
|
config-syno-linux | File | 48 B | 0644 |
|
config-unixware | File | 48 B | 0644 |
|
config-windows | File | 78 B | 0644 |
|
config.info | File | 193 B | 0644 |
|
config.info.ca | File | 241 B | 0644 |
|
config.info.cs | File | 205 B | 0644 |
|
config.info.de | File | 219 B | 0644 |
|
config.info.es | File | 175 B | 0644 |
|
config.info.fa | File | 255 B | 0644 |
|
config.info.fr | File | 246 B | 0644 |
|
config.info.hu | File | 0 B | 0644 |
|
config.info.ja | File | 68 B | 0644 |
|
config.info.nl | File | 197 B | 0644 |
|
config.info.no | File | 208 B | 0644 |
|
config.info.pl | File | 240 B | 0644 |
|
config.info.pt_BR | File | 229 B | 0644 |
|
config.info.ru | File | 361 B | 0644 |
|
config.info.sk | File | 225 B | 0644 |
|
config.info.sv | File | 42 B | 0644 |
|
config.info.tr | File | 65 B | 0644 |
|
config.info.uk | File | 87 B | 0644 |
|
config.info.zh | File | 43 B | 0644 |
|
config.info.zh_TW | File | 44 B | 0644 |
|
create_route.cgi | File | 1004 B | 0755 |
|
cygwin-lib.pl | File | 11.28 KB | 0755 |
|
debian-linux-lib.pl | File | 33.58 KB | 0755 |
|
defaultacl | File | 114 B | 0644 |
|
delete_aifcs.cgi | File | 537 B | 0755 |
|
delete_bifcs.cgi | File | 1.44 KB | 0755 |
|
delete_hosts.cgi | File | 523 B | 0755 |
|
delete_ipnodes.cgi | File | 542 B | 0755 |
|
delete_routes.cgi | File | 458 B | 0755 |
|
edit_aifc.cgi | File | 5.09 KB | 0755 |
|
edit_bifc.cgi | File | 10.42 KB | 0755 |
|
edit_host.cgi | File | 1.13 KB | 0755 |
|
edit_ipnode.cgi | File | 1.04 KB | 0755 |
|
edit_range.cgi | File | 1.34 KB | 0755 |
|
freebsd-lib.pl | File | 19.22 KB | 0755 |
|
gentoo-linux-lib.pl | File | 8.47 KB | 0755 |
|
index.cgi | File | 1.25 KB | 0755 |
|
interface_chooser.cgi | File | 3.8 KB | 0755 |
|
linux-lib.pl | File | 27.58 KB | 0755 |
|
list_dns.cgi | File | 2.3 KB | 0755 |
|
list_hosts.cgi | File | 1.36 KB | 0755 |
|
list_ifcs.cgi | File | 7.96 KB | 0755 |
|
list_ipnodes.cgi | File | 1.07 KB | 0755 |
|
list_routes.cgi | File | 3.38 KB | 0755 |
|
log_parser.pl | File | 1.24 KB | 0755 |
|
macos-lib.pl | File | 11.57 KB | 0755 |
|
mandrake-linux-lib.pl | File | 32.85 KB | 0755 |
|
mod_aifc.cgi | File | 720 B | 0755 |
|
module.info | File | 485 B | 0644 |
|
module.info.af | File | 0 B | 0644 |
|
module.info.af.auto | File | 123 B | 0644 |
|
module.info.ar | File | 0 B | 0644 |
|
module.info.ar.auto | File | 170 B | 0644 |
|
module.info.be | File | 0 B | 0644 |
|
module.info.be.auto | File | 226 B | 0644 |
|
module.info.bg | File | 0 B | 0644 |
|
module.info.bg.auto | File | 261 B | 0644 |
|
module.info.ca | File | 127 B | 0644 |
|
module.info.ca.auto | File | 25 B | 0644 |
|
module.info.cs | File | 27 B | 0644 |
|
module.info.cs.auto | File | 111 B | 0644 |
|
module.info.da | File | 0 B | 0644 |
|
module.info.da.auto | File | 129 B | 0644 |
|
module.info.de | File | 121 B | 0644 |
|
module.info.de.auto | File | 19 B | 0644 |
|
module.info.el | File | 0 B | 0644 |
|
module.info.el.auto | File | 229 B | 0644 |
|
module.info.es | File | 30 B | 0644 |
|
module.info.es.auto | File | 116 B | 0644 |
|
module.info.eu | File | 0 B | 0644 |
|
module.info.eu.auto | File | 142 B | 0644 |
|
module.info.fa | File | 0 B | 0644 |
|
module.info.fa.auto | File | 194 B | 0644 |
|
module.info.fi | File | 0 B | 0644 |
|
module.info.fi.auto | File | 145 B | 0644 |
|
module.info.fr | File | 30 B | 0644 |
|
module.info.fr.auto | File | 128 B | 0644 |
|
module.info.he | File | 0 B | 0644 |
|
module.info.he.auto | File | 161 B | 0644 |
|
module.info.hr | File | 0 B | 0644 |
|
module.info.hr.auto | File | 148 B | 0644 |
|
module.info.hu | File | 34 B | 0644 |
|
module.info.hu.auto | File | 148 B | 0644 |
|
module.info.it | File | 28 B | 0644 |
|
module.info.it.auto | File | 112 B | 0644 |
|
module.info.ja | File | 33 B | 0644 |
|
module.info.ja.auto | File | 153 B | 0644 |
|
module.info.ko | File | 28 B | 0644 |
|
module.info.ko.auto | File | 105 B | 0644 |
|
module.info.lt | File | 0 B | 0644 |
|
module.info.lt.auto | File | 157 B | 0644 |
|
module.info.lv | File | 0 B | 0644 |
|
module.info.lv.auto | File | 157 B | 0644 |
|
module.info.ms | File | 136 B | 0644 |
|
module.info.ms.auto | File | 18 B | 0644 |
|
module.info.mt | File | 0 B | 0644 |
|
module.info.mt.auto | File | 144 B | 0644 |
|
module.info.nl | File | 29 B | 0644 |
|
module.info.nl.auto | File | 105 B | 0644 |
|
module.info.no | File | 31 B | 0644 |
|
module.info.no.auto | File | 99 B | 0644 |
|
module.info.pl | File | 122 B | 0644 |
|
module.info.pl.auto | File | 19 B | 0644 |
|
module.info.pt | File | 31 B | 0644 |
|
module.info.pt.auto | File | 125 B | 0644 |
|
module.info.pt_BR | File | 34 B | 0644 |
|
module.info.pt_BR.auto | File | 131 B | 0644 |
|
module.info.ro | File | 0 B | 0644 |
|
module.info.ro.auto | File | 143 B | 0644 |
|
module.info.ru | File | 36 B | 0644 |
|
module.info.ru.auto | File | 167 B | 0644 |
|
module.info.sk | File | 28 B | 0644 |
|
module.info.sk.auto | File | 113 B | 0644 |
|
module.info.sl | File | 0 B | 0644 |
|
module.info.sl.auto | File | 140 B | 0644 |
|
module.info.sv | File | 31 B | 0644 |
|
module.info.sv.auto | File | 103 B | 0644 |
|
module.info.th | File | 0 B | 0644 |
|
module.info.th.auto | File | 327 B | 0644 |
|
module.info.tr | File | 30 B | 0644 |
|
module.info.tr.auto | File | 130 B | 0644 |
|
module.info.uk | File | 0 B | 0644 |
|
module.info.uk.auto | File | 223 B | 0644 |
|
module.info.ur | File | 0 B | 0644 |
|
module.info.ur.auto | File | 210 B | 0644 |
|
module.info.vi | File | 0 B | 0644 |
|
module.info.vi.auto | File | 170 B | 0644 |
|
module.info.zh | File | 21 B | 0644 |
|
module.info.zh.auto | File | 90 B | 0644 |
|
module.info.zh_TW | File | 24 B | 0644 |
|
module.info.zh_TW.auto | File | 96 B | 0644 |
|
msc-linux-lib.pl | File | 32.85 KB | 0755 |
|
net-lib.pl | File | 12 KB | 0755 |
|
netbsd-lib.pl | File | 19.22 KB | 0755 |
|
netplan-lib.pl | File | 21.01 KB | 0644 |
|
open-linux-lib.pl | File | 7.2 KB | 0755 |
|
openbsd-lib.pl | File | 12.6 KB | 0755 |
|
openmamba-linux-lib.pl | File | 32.85 KB | 0755 |
|
pardus-linux-lib.pl | File | 32.85 KB | 0755 |
|
rbac-mapping | File | 180 B | 0644 |
|
rc.inet1 | File | 1.95 KB | 0644 |
|
redhat-linux-lib.pl | File | 32.85 KB | 0755 |
|
save_aifc.cgi | File | 5.78 KB | 0755 |
|
save_bifc.cgi | File | 10.12 KB | 0755 |
|
save_dns.cgi | File | 3.65 KB | 0755 |
|
save_host.cgi | File | 1.18 KB | 0755 |
|
save_ipnode.cgi | File | 1.26 KB | 0755 |
|
save_range.cgi | File | 1.42 KB | 0755 |
|
save_routes.cgi | File | 283 B | 0755 |
|
slackware-linux-9.1-ALL-lib.pl | File | 7.85 KB | 0755 |
|
slackware-linux-lib.pl | File | 6.71 KB | 0755 |
|
solaris-lib.pl | File | 20.79 KB | 0755 |
|
suse-linux-8.0-lib.pl | File | 7.31 KB | 0755 |
|
suse-linux-8.2-lib.pl | File | 7.31 KB | 0755 |
|
suse-linux-9.0-lib.pl | File | 8.74 KB | 0755 |
|
suse-linux-9.1-lib.pl | File | 8.74 KB | 0755 |
|
suse-linux-9.2-ALL-lib.pl | File | 11.23 KB | 0755 |
|
suse-linux-lib.pl | File | 9.08 KB | 0755 |
|
system_info.pl | File | 2.42 KB | 0644 |
|
trustix-linux-lib.pl | File | 32.85 KB | 0755 |
|
turbo-linux-lib.pl | File | 32.85 KB | 0755 |
|
united-linux-lib.pl | File | 7.31 KB | 0755 |
|
unixware-lib.pl | File | 9.9 KB | 0755 |
|
windows-lib.pl | File | 11.28 KB | 0755 |
|