summaryrefslogtreecommitdiff
path: root/scripts/vyatta_net_name
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2011-01-24 20:59:13 +1000
committerStephen Hemminger <stephen.hemminger@vyatta.com>2011-01-24 11:54:44 -0800
commit4180f0bfb54ac3628e3f6f465bdc5284bd6d4d34 (patch)
tree08be8d7378e96ccd8997ede64e603f4afe4d84b6 /scripts/vyatta_net_name
parent16db4272b78fb6d50fc92f6a24fbf12e2762c64f (diff)
downloadvyatta-cfg-system-4180f0bfb54ac3628e3f6f465bdc5284bd6d4d34.tar.gz
vyatta-cfg-system-4180f0bfb54ac3628e3f6f465bdc5284bd6d4d34.zip
Add logging to coldplug
Log to file /dev/udev/net-name.log since that is available tmpfs (cherry picked from commit 15ce02d66348ed35308f5813991e171d74561248)
Diffstat (limited to 'scripts/vyatta_net_name')
-rwxr-xr-xscripts/vyatta_net_name37
1 files changed, 31 insertions, 6 deletions
diff --git a/scripts/vyatta_net_name b/scripts/vyatta_net_name
index 43bed36d..7e27fd38 100755
--- a/scripts/vyatta_net_name
+++ b/scripts/vyatta_net_name
@@ -21,12 +21,14 @@ use Sys::Syslog qw(:standard :macros);
use Fcntl qw(:flock);
my $BOOTFILE = "/opt/vyatta/etc/config/config.boot";
-my $UDEVDIR = "/dev/.udev";
-
-my $VYATTAUDEV = $UDEVDIR . "/vyatta";
-my $LOCKFILE = $UDEVDIR . "/.vyatta-lock";
my $VYATTACFG = "/opt/vyatta/config/active";
+my $UDEVDIR = "/dev/.udev/";
+my $VYATTAUDEV = $UDEVDIR . "vyatta";
+my $LOCKFILE = $UDEVDIR . ".vyatta-lock";
+my $UDEVLOG = $UDEVDIR . "log/";
+my $LOGFILE = $UDEVLOG . "vyatta-net-name";
+
# Check if interface name is free to use
sub is_available {
my ($interfaces, $ifname) = @_;
@@ -94,6 +96,13 @@ sub biosdevname {
# Determine network name to use based on Vyatta config during boot
sub coldplug {
my ($ifname, $hwaddr) = @_;
+
+ # at this time root directory is read-only so use log file instead
+ mkdir ($UDEVLOG);
+ open (my $log, '>>', $LOGFILE)
+ or warn "Can't open $LOGFILE : $!";
+
+ # parse config file to produce map of existing hw-id values
my $xcp = new XorpConfigParser();
$xcp->parse($BOOTFILE);
@@ -114,7 +123,11 @@ sub coldplug {
# is name already in config file
my $newname = $interfaces->{$hwaddr};
- return $newname if ($newname);
+ if ($newname) {
+ printf {$log} "hw-id %s in config mapped to '%s'", $hwaddr, $newname
+ if $log;
+ return $newname;
+ }
# add already assigned names
if (opendir(my $dir, $VYATTAUDEV)) {
@@ -130,11 +143,17 @@ sub coldplug {
}
$newname = biosdevname($ifname);
+ printf {$log} "biosdevname for %s returned '%s'\n", $ifname, $newname
+ if $log;
+
unless (is_available($interfaces, $newname)) {
$newname = find_available($interfaces, $newname);
}
+ print {$log} "new name for '%s' is '%s'", $ifname, $newname
+ if $log;
leave_rescan_hint($newname, $hwaddr);
+ close $log;
return $newname;
}
@@ -143,6 +162,7 @@ sub coldplug {
sub hotplug {
my ($ifname, $hwaddr) = @_;
+ # real filesystem available use real logging
openlog("vyatta-net-name", "", LOG_DAEMON);
# Parse active config
@@ -161,9 +181,14 @@ sub hotplug {
}
my $newname = $interfaces->{$hwaddr};
- return $newname if ($newname);
+ if ($newname) {
+ syslog(LOG_INFO, "hw-id %s in config mapped to '%s'", $hwaddr, $newname);
+ return $newname;
+ }
$newname = biosdevname($ifname);
+ syslog(LOG_DEBUG, "biosdevname for %s returned '%s'", $ifname, $newname);
+
unless (is_available($interfaces, $newname)) {
$newname = find_available($interfaces, $newname);
}