]> git.ipfire.org Git - ipfire-2.x.git/blob - config/cfgroot/network-functions.pl
network-functions.pl: Add MAC address compare function
[ipfire-2.x.git] / config / cfgroot / network-functions.pl
1 #!/usr/bin/perl -w
2 ############################################################################
3 # #
4 # This file is part of the IPFire Firewall. #
5 # #
6 # IPFire is free software; you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation; either version 2 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # IPFire is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with IPFire; if not, write to the Free Software #
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19 # #
20 # Copyright (C) 2014 IPFire Team <info@ipfire.org>. #
21 # #
22 ############################################################################
23
24 package Network;
25
26 require "/var/ipfire/general-functions.pl";
27
28 use experimental 'smartmatch';
29 use Socket;
30
31 # System ethernet configuration
32 our %ethernet_settings = ();
33 &General::readhash("${General::swroot}/ethernet/settings", \%ethernet_settings);
34
35 # List of all possible network zones that can be configured
36 our @known_network_zones = ("red", "green", "orange", "blue");
37
38 # IPv4 netmask CIDR to dotted decimal notation conversion table
39 my %PREFIX2NETMASK = (
40 32 => "255.255.255.255",
41 31 => "255.255.255.254",
42 30 => "255.255.255.252",
43 29 => "255.255.255.248",
44 28 => "255.255.255.240",
45 27 => "255.255.255.224",
46 26 => "255.255.255.192",
47 25 => "255.255.255.128",
48 24 => "255.255.255.0",
49 23 => "255.255.254.0",
50 22 => "255.255.252.0",
51 21 => "255.255.248.0",
52 20 => "255.255.240.0",
53 19 => "255.255.224.0",
54 18 => "255.255.192.0",
55 17 => "255.255.128.0",
56 16 => "255.255.0.0",
57 15 => "255.254.0.0",
58 14 => "255.252.0.0",
59 13 => "255.248.0.0",
60 12 => "255.240.0.0",
61 11 => "255.224.0.0",
62 10 => "255.192.0.0",
63 9 => "255.128.0.0",
64 8 => "255.0.0.0",
65 7 => "254.0.0.0",
66 6 => "252.0.0.0",
67 5 => "248.0.0.0",
68 4 => "240.0.0.0",
69 3 => "224.0.0.0",
70 2 => "192.0.0.0",
71 1 => "128.0.0.0",
72 0 => "0.0.0.0"
73 );
74
75 my %NETMASK2PREFIX = reverse(%PREFIX2NETMASK);
76
77 # Takes an IP address in dotted decimal notation and
78 # returns a 32 bit integer representing that IP addresss.
79 # Will return undef for invalid inputs.
80 sub ip2bin($) {
81 my $address = shift;
82
83 # This function returns undef for undefined input.
84 if (!defined $address) {
85 return undef;
86 }
87
88 my $address_bin = &Socket::inet_pton(AF_INET, $address);
89 if ($address_bin) {
90 $address_bin = unpack('N', $address_bin);
91 }
92
93 return $address_bin;
94 }
95
96 # Does the reverse of ip2bin().
97 # Will return undef for invalid inputs.
98 sub bin2ip($) {
99 my $address_bin = shift;
100
101 # This function returns undef for undefined input.
102 if (!defined $address_bin) {
103 return undef;
104 }
105
106 my $address = pack('N', $address_bin);
107 if ($address) {
108 $address = &Socket::inet_ntop(AF_INET, $address);
109 }
110
111 return $address;
112 }
113
114 # Takes two network addresses, compares them against each other
115 # and returns true if equal or false if not
116 sub network_equal {
117 my $network1 = shift;
118 my $network2 = shift;
119
120 my @bin1 = &network2bin($network1);
121 my @bin2 = &network2bin($network2);
122
123 if (!defined $bin1 || !defined $bin2) {
124 return undef;
125 }
126
127 if ($bin1[0] == $bin2[0] && $bin1[1] == $bin2[1]) {
128 return 1;
129 }
130
131 return 0;
132 }
133
134 # Takes a network in either a.b.c.d/a.b.c.d or a.b.c.d/e notation
135 # and will return an 32 bit integer representing the start
136 # address and an other one representing the network mask.
137 sub network2bin($) {
138 my $network = shift;
139
140 my ($address, $netmask) = split(/\//, $network, 2);
141
142 if (&check_prefix($netmask)) {
143 $netmask = &convert_prefix2netmask($netmask);
144 }
145
146 my $address_bin = &ip2bin($address);
147 my $netmask_bin = &ip2bin($netmask);
148
149 if (!defined $address_bin || !defined $netmask_bin) {
150 return undef;
151 }
152
153 my $network_start = $address_bin & $netmask_bin;
154
155 return ($network_start, $netmask_bin);
156 }
157
158 # Deletes leading zeros in ip address
159 sub ip_remove_zero{
160 my $address = shift;
161 my @ip = split (/\./, $address);
162
163 foreach my $octet (@ip) {
164 $octet = int($octet);
165 }
166
167 $address = join (".", @ip);
168
169 return $address;
170 }
171 # Returns True for all valid IP addresses
172 sub check_ip_address($) {
173 my $address = shift;
174
175 # Normalise the IP address and compare the result with
176 # the input - which should obviously the same.
177 my $normalised_address = &_normalise_ip_address($address);
178
179 return ((defined $normalised_address) && ($address eq $normalised_address));
180 }
181
182 # Returns True for all valid prefixes.
183 sub check_prefix($) {
184 my $prefix = shift;
185
186 return (exists $PREFIX2NETMASK{$prefix});
187 }
188
189 # Returns True for all valid subnet masks.
190 sub check_netmask($) {
191 my $netmask = shift;
192
193 return (exists $NETMASK2PREFIX{$netmask});
194 }
195
196 # Returns True for all valid inputs like a.b.c.d/a.b.c.d.
197 sub check_ip_address_and_netmask($$) {
198 my $network = shift;
199
200 my ($address, $netmask) = split(/\//, $network, 2);
201
202 # Check if the IP address is fine.
203 #
204 my $result = &check_ip_address($address);
205 unless ($result) {
206 return $result;
207 }
208
209 return &check_netmask($netmask);
210 }
211
212 # Returns True for all valid subnets like a.b.c.d/e or a.b.c.d/a.b.c.d
213 sub check_subnet($) {
214 my $subnet = shift;
215
216 my ($address, $network) = split(/\//, $subnet, 2);
217
218 # Check if the IP address is fine.
219 my $result = &check_ip_address($address);
220 unless ($result) {
221 return $result;
222 }
223
224 return &check_prefix($network) || &check_netmask($network);
225 }
226
227 # For internal use only. Will take an IP address and
228 # return it in a normalised style. Like 8.8.8.010 -> 8.8.8.8.
229 sub _normalise_ip_address($) {
230 my $address = shift;
231
232 my $address_bin = &ip2bin($address);
233 if (!defined $address_bin) {
234 return undef;
235 }
236
237 return &bin2ip($address_bin);
238 }
239
240 # Returns the prefix for the given subnet mask.
241 sub convert_netmask2prefix($) {
242 my $netmask = shift;
243
244 if (exists $NETMASK2PREFIX{$netmask}) {
245 return $NETMASK2PREFIX{$netmask};
246 }
247
248 return undef;
249 }
250
251 # Returns the subnet mask for the given prefix.
252 sub convert_prefix2netmask($) {
253 my $prefix = shift;
254
255 if (exists $PREFIX2NETMASK{$prefix}) {
256 return $PREFIX2NETMASK{$prefix};
257 }
258
259 return undef;
260 }
261
262 # Takes an IP address and an offset and
263 # will return the offset'th IP address.
264 sub find_next_ip_address($$) {
265 my $address = shift;
266 my $offset = shift;
267
268 my $address_bin = &ip2bin($address);
269 $address_bin += $offset;
270
271 return &bin2ip($address_bin);
272 }
273
274 # Returns the network address of the given network.
275 sub get_netaddress($) {
276 my $network = shift;
277 my ($network_bin, $netmask_bin) = &network2bin($network);
278
279 if (defined $network_bin) {
280 return &bin2ip($network_bin);
281 }
282
283 return undef;
284 }
285
286 # Returns the broadcast of the given network.
287 sub get_broadcast($) {
288 my $network = shift;
289 my ($network_bin, $netmask_bin) = &network2bin($network);
290
291 return &bin2ip($network_bin ^ ~$netmask_bin);
292 }
293
294 # Returns True if $address is in $network.
295 sub ip_address_in_network($$) {
296 my $address = shift;
297 my $network = shift;
298
299 my $address_bin = &ip2bin($address);
300 return undef unless (defined $address_bin);
301
302 my ($network_bin, $netmask_bin) = &network2bin($network);
303
304 # Find end address
305 my $broadcast_bin = $network_bin ^ (~$netmask_bin % 2 ** 32);
306
307 return (($address_bin >= $network_bin) && ($address_bin <= $broadcast_bin));
308 }
309
310 sub setup_upstream_proxy() {
311 my %proxysettings = ();
312 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
313
314 if ($proxysettings{'UPSTREAM_PROXY'}) {
315 my $credentials = "";
316
317 if ($proxysettings{'UPSTREAM_USER'}) {
318 $credentials = $proxysettings{'UPSTREAM_USER'};
319
320 if ($proxysettings{'UPSTREAM_PASSWORD'}) {
321 $credentials .= ":" . $proxysettings{'UPSTREAM_PASSWORD'};
322 }
323
324 $credentials .= "@";
325 }
326
327 my $proxy = "http://" . $credentials . $proxysettings{'UPSTREAM_PROXY'};
328
329 $ENV{'http_proxy'} = $proxy;
330 $ENV{'https_proxy'} = $proxy;
331 $ENV{'ftp_proxy'} = $proxy;
332 }
333 }
334
335 my %wireless_status = ();
336
337 sub _get_wireless_status($) {
338 my $intf = shift;
339
340 if (!$wireless_status{$intf}) {
341 $wireless_status{$intf} = `iwconfig $intf`;
342 }
343
344 return $wireless_status{$intf};
345 }
346
347 sub wifi_get_essid($) {
348 my $status = &_get_wireless_status(shift);
349
350 my ($essid) = $status =~ /ESSID:\"(.*)\"/;
351
352 return $essid;
353 }
354
355 sub wifi_get_frequency($) {
356 my $status = &_get_wireless_status(shift);
357
358 my ($frequency) = $status =~ /Frequency:(\d+\.\d+ GHz)/;
359
360 return $frequency;
361 }
362
363 sub wifi_get_access_point($) {
364 my $status = &_get_wireless_status(shift);
365
366 my ($access_point) = $status =~ /Access Point: ([0-9A-F:]+)/;
367
368 return $access_point;
369 }
370
371 sub wifi_get_bit_rate($) {
372 my $status = &_get_wireless_status(shift);
373
374 my ($bit_rate) = $status =~ /Bit Rate=(\d+ [GM]b\/s)/;
375
376 return $bit_rate;
377 }
378
379 sub wifi_get_link_quality($) {
380 my $status = &_get_wireless_status(shift);
381
382 my ($cur, $max) = $status =~ /Link Quality=(\d+)\/(\d+)/;
383
384 return $cur * 100 / $max;
385 }
386
387 sub wifi_get_signal_level($) {
388 my $status = &_get_wireless_status(shift);
389
390 my ($signal_level) = $status =~ /Signal level=(\-\d+ dBm)/;
391
392 return $signal_level;
393 }
394
395 sub get_hardware_address($) {
396 my $ip_address = shift;
397 my $ret;
398
399 open(FILE, "/proc/net/arp") or die("Could not read ARP table");
400
401 while (<FILE>) {
402 my ($ip_addr, $hwtype, $flags, $hwaddr, $mask, $device) = split(/\s+/, $_);
403 if ($ip_addr eq $ip_address) {
404 $ret = $hwaddr;
405 last;
406 }
407 }
408
409 close(FILE);
410
411 return $ret;
412 }
413
414 sub get_nic_property {
415 my $nicname = shift;
416 my $property = shift;
417 my $result;
418
419 open(FILE, "/sys/class/net/$nicname/$property") or die("Could not read property");
420 $result = <FILE>;
421 close(FILE);
422
423 chomp($result);
424
425 return $result;
426 }
427
428 sub valid_mac($) {
429 my $mac = shift;
430
431 return $mac =~ /^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$/;
432 }
433
434 # Compares two MAC addresses and returns true if they are equal
435 sub is_mac_equal {
436 my $mac_1 = uc shift; # convert to upper case
437 my $mac_2 = uc shift;
438
439 if(valid_mac($mac_1) && valid_mac($mac_2) && ($mac_1 eq $mac_2)) {
440 return 1;
441 }
442
443 return 0;
444 }
445
446 sub random_mac {
447 my $address = "02";
448
449 for my $i (0 .. 4) {
450 $address = sprintf("$address:%02x", int(rand(255)));
451 }
452
453 return $address;
454 }
455
456 sub get_mac_by_name($) {
457 my $mac = shift;
458
459 if ((!&valid_mac($mac)) && ($mac ne "")) {
460 if (-e "/sys/class/net/$mac/") {
461 $mac = get_nic_property($mac, "address");
462 }
463 }
464
465 return $mac;
466 }
467
468 #
469 ## Function to get a list of all available network zones.
470 #
471 sub get_available_network_zones () {
472 # Obtain the configuration type from the netsettings hash.
473 my $config_type = $ethernet_settings{'CONFIG_TYPE'};
474
475 # Hash which contains the conversation from the config mode
476 # to the existing network interface names. They are stored like
477 # an array.
478 #
479 # Mode "0" red is a modem and green
480 # Mode "1" red is a netdev and green
481 # Mode "2" red, green and orange
482 # Mode "3" red, green and blue
483 # Mode "4" red, green, blue, orange
484 my %config_type_to_interfaces = (
485 "0" => [ "red", "green" ],
486 "1" => [ "red", "green" ],
487 "2" => [ "red", "green", "orange" ],
488 "3" => [ "red", "green", "blue" ],
489 "4" => [ "red", "green", "blue", "orange" ]
490 );
491
492 # Obtain and dereference the corresponding network interaces based on the read
493 # network config type.
494 my @network_zones = @{ $config_type_to_interfaces{$config_type} };
495
496 # Return them.
497 return @network_zones;
498 }
499
500 #
501 ## Function to check if a network zone is available in the current configuration
502 #
503 sub is_zone_available() {
504 my $zone = lc shift;
505
506 # Make sure the zone is valid
507 die("Unknown network zone '$zone'") unless ($zone ~~ @known_network_zones);
508
509 # Get available zones and return result
510 my @available_zones = get_available_network_zones();
511 return ($zone ~~ @available_zones);
512 }
513
514 #
515 ## Function to determine if the RED zone is in standard IP (or modem, PPP, VDSL, ...) mode
516 #
517 sub is_red_mode_ip() {
518 # Obtain the settings from the netsettings hash
519 my $config_type = $ethernet_settings{'CONFIG_TYPE'};
520 my $red_type = $ethernet_settings{'RED_TYPE'};
521
522 # RED must be a network device (configuration 1-4) with dynamic or static IP
523 return (($config_type ~~ [1..4]) && ($red_type ~~ ["DHCP", "STATIC"]));
524 }
525
526 1;
527
528 # Remove the next line to enable the testsuite
529 __END__
530
531 sub assert($$) {
532 my $tst = shift;
533 my $ret = shift;
534
535 if ($ret) {
536 return;
537 }
538
539 print "ASSERTION ERROR - $tst\n";
540 exit(1);
541 }
542
543 sub testsuite() {
544 my $result;
545
546 my $address1 = &ip2bin("8.8.8.8");
547 assert('ip2bin("8.8.8.8")', $address1 == 134744072);
548
549 my $address2 = &bin2ip($address1);
550 assert("bin2ip($address1)", $address2 eq "8.8.8.8");
551
552 # Check if valid IP addresses are correctly recognised.
553 foreach my $address ("1.2.3.4", "192.168.180.1", "127.0.0.1") {
554 if (!&check_ip_address($address)) {
555 print "$address is not correctly recognised as a valid IP address!\n";
556 exit 1;
557 };
558 }
559
560 # Check if invalid IP addresses are correctly found.
561 foreach my $address ("456.2.3.4", "192.768.180.1", "127.1", "1", "a.b.c.d", "1.2.3.4.5", "1.2.3.4/12") {
562 if (&check_ip_address($address)) {
563 print "$address is recognised as a valid IP address!\n";
564 exit 1;
565 };
566 }
567
568 $result = &check_ip_address_and_netmask("192.168.180.0/255.255.255.0");
569 assert('check_ip_address_and_netmask("192.168.180.0/255.255.255.0")', $result);
570
571 $result = &convert_netmask2prefix("255.255.254.0");
572 assert('convert_netmask2prefix("255.255.254.0")', $result == 23);
573
574 $result = &convert_prefix2netmask(8);
575 assert('convert_prefix2netmask(8)', $result eq "255.0.0.0");
576
577 $result = &find_next_ip_address("1.2.3.4", 2);
578 assert('find_next_ip_address("1.2.3.4", 2)', $result eq "1.2.3.6");
579
580 $result = &network_equal("192.168.0.0/24", "192.168.0.0/255.255.255.0");
581 assert('network_equal("192.168.0.0/24", "192.168.0.0/255.255.255.0")', $result);
582
583 $result = &network_equal("192.168.0.0/24", "192.168.0.0/25");
584 assert('network_equal("192.168.0.0/24", "192.168.0.0/25")', !$result);
585
586 $result = &network_equal("192.168.0.0/24", "192.168.0.128/25");
587 assert('network_equal("192.168.0.0/24", "192.168.0.128/25")', !$result);
588
589 $result = &network_equal("192.168.0.1/24", "192.168.0.XXX/24");
590 assert('network_equal("192.168.0.1/24", "192.168.0.XXX/24")', !$result);
591
592 $result = &ip_address_in_network("10.0.1.4", "10.0.0.0/8");
593 assert('ip_address_in_network("10.0.1.4", "10.0.0.0/8"', $result);
594
595 $result = &ip_address_in_network("192.168.30.11", "192.168.30.0/255.255.255.0");
596 assert('ip_address_in_network("192.168.30.11", "192.168.30.0/255.255.255.0")', $result);
597
598 $result = &ip_address_in_network("192.168.30.11", "0.0.0.0/8");
599 assert('ip_address_in_network("192.168.30.11", "0.0.0.0/8")', !$result);
600
601 print "Testsuite completed successfully!\n";
602
603 return 0;
604 }
605
606 &testsuite();