summaryrefslogtreecommitdiff
path: root/net-misc/wakeonlan/files/wakeonlan-0.41-ethers-lookup-r1.patch
blob: 3e01c3e52c38b32da67d62b37e293eef800cd80b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
--- wakeonlan-0.41.orig/wakeonlan
+++ wakeonlan-0.41/wakeonlan
@@ -5,6 +5,7 @@
 #########################################################################       
 
 use strict;
+use Net::hostent;
 use Socket;
 use Getopt::Std;
 use vars qw($VERSION $opt_v $opt_h $opt_i $opt_p $opt_f);
@@ -44,19 +45,64 @@
 
 sub wake
 {
-	my $hwaddr  = shift;
+	my $host    = shift;
 	my $ipaddr  = shift || $DEFAULT_IP;
 	my $port    = shift || $DEFAULT_PORT;
 
 	my ($raddr, $them, $proto);
-	my ($hwaddr_re, $pkt);
+	my ($hwaddr, $hwaddr_re, $pkt);
 	
-	# Validate hardware address (ethernet address)
+	# get the hardware address (ethernet address)
 
 	$hwaddr_re = join(':', ('[0-9A-Fa-f]{1,2}') x 6);
-	if ($hwaddr !~ m/^$hwaddr_re$/) {
-		warn "Invalid hardware address: $hwaddr\n";
-		return undef;
+	if ($host =~ m/^$hwaddr_re$/) {
+		$hwaddr = $host;
+	} else {
+		# $host is not a hardware address, try to resolve it
+		my $ip_re = join('\.', ('([0-9]|[1-9][0-9]|1[0-9]{2}|2([0-4][0-9]|5[0-5]))') x 4);
+		my $ip_addr;
+		if ($host =~ m/^$ip_re$/) {
+			$ip_addr = $host;
+		} else {
+			my $h;
+			unless ($h = gethost($host)) {
+				warn "$host is not a hardware address and I could not resolve it as to an IP address.\n";
+				return undef;
+			}
+			$ip_addr = inet_ntoa($h->addr);
+		}
+		# look up ip in /etc/ethers
+		unless (open (ETHERS, '<', '/etc/ethers')) {
+			warn "$host is not a hardware address and I could not open /etc/ethers.\n";
+			return undef;
+		}
+		while (<ETHERS>) {
+			if (($_ !~ m/^$/) && ($_ !~ m/^#/)) { # ignore comments
+				my ($mac, $ip);
+				($mac, $ip) = split(' ', $_, 3);
+				if ($ip =~ m/^$ip_re$/) {
+					if ($ip eq $ip_addr) {
+						$hwaddr = $mac;
+						last;
+					}
+					next;
+				} else {
+					my $h2;
+					unless ($h2 = gethost($ip)) {
+						next;
+					}
+					if (inet_ntoa($h2->addr) eq $ip_addr) {
+						$hwaddr = $mac;
+						last;
+					}
+				}
+			}
+		}
+		close (ETHERS);
+		unless (defined($hwaddr)) {
+			warn "Could not find $host in /etc/ethers\n";
+			return undef;
+		}
 	}
 
 	# Generate magic sequence
@@ -68,7 +114,7 @@
 
 	# Allocate socket and send packet
 
-	$raddr = gethostbyname($ipaddr);
+	$raddr = gethostbyname($ipaddr)->addr;
 	$them = pack_sockaddr_in($port, $raddr);
 	$proto = getprotobyname('udp');