]> git.ipfire.org Git - ipfire-2.x.git/blob - config/cfgroot/network-functions.pl
network-functions.pl: declare use of smartmatch
[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 sub random_mac {
435 my $address = "02";
436
437 for my $i (0 .. 4) {
438 $address = sprintf("$address:%02x", int(rand(255)));
439 }
440
441 return $address;
442 }
443
444 sub get_mac_by_name($) {
445 my $mac = shift;
446
447 if ((!&valid_mac($mac)) && ($mac ne "")) {
448 if (-e "/sys/class/net/$mac/") {
449 $mac = get_nic_property($mac, "address");
450 }
451 }
452
453 return $mac;
454 }
455
456 #
457 ## Function to get a list of all available network zones.
458 #
459 sub get_available_network_zones () {
460 # Obtain the configuration type from the netsettings hash.
461 my $config_type = $ethernet_settings{'CONFIG_TYPE'};
462
463 # Hash which contains the conversation from the config mode
464 # to the existing network interface names. They are stored like
465 # an array.
466 #
467 # Mode "0" red is a modem and green
468 # Mode "1" red is a netdev and green
469 # Mode "2" red, green and orange
470 # Mode "3" red, green and blue
471 # Mode "4" red, green, blue, orange
472 my %config_type_to_interfaces = (
473 "0" => [ "red", "green" ],
474 "1" => [ "red", "green" ],
475 "2" => [ "red", "green", "orange" ],
476 "3" => [ "red", "green", "blue" ],
477 "4" => [ "red", "green", "blue", "orange" ]
478 );
479
480 # Obtain and dereference the corresponding network interaces based on the read
481 # network config type.
482 my @network_zones = @{ $config_type_to_interfaces{$config_type} };
483
484 # Return them.
485 return @network_zones;
486 }
487
488 #
489 ## Function to check if a network zone is available in the current configuration
490 #
491 sub is_zone_available() {
492 my $zone = lc shift;
493
494 # Make sure the zone is valid
495 die("Unknown network zone '$zone'") unless ($zone ~~ @known_network_zones);
496
497 # Get available zones and return result
498 my @available_zones = get_available_network_zones();
499 return ($zone ~~ @available_zones);
500 }
501
502 #
503 ## Function to determine if the RED zone is in standard IP (or modem, PPP, VDSL, ...) mode
504 #
505 sub is_red_mode_ip() {
506 # Obtain the settings from the netsettings hash
507 my $config_type = $ethernet_settings{'CONFIG_TYPE'};
508 my $red_type = $ethernet_settings{'RED_TYPE'};
509
510 # RED must be a network device (configuration 1-4) with dynamic or static IP
511 return (($config_type ~~ [1..4]) && ($red_type ~~ ["DHCP", "STATIC"]));
512 }
513
514 1;
515
516 # Remove the next line to enable the testsuite
517 __END__
518
519 sub assert($$) {
520 my $tst = shift;
521 my $ret = shift;
522
523 if ($ret) {
524 return;
525 }
526
527 print "ASSERTION ERROR - $tst\n";
528 exit(1);
529 }
530
531 sub testsuite() {
532 my $result;
533
534 my $address1 = &ip2bin("8.8.8.8");
535 assert('ip2bin("8.8.8.8")', $address1 == 134744072);
536
537 my $address2 = &bin2ip($address1);
538 assert("bin2ip($address1)", $address2 eq "8.8.8.8");
539
540 # Check if valid IP addresses are correctly recognised.
541 foreach my $address ("1.2.3.4", "192.168.180.1", "127.0.0.1") {
542 if (!&check_ip_address($address)) {
543 print "$address is not correctly recognised as a valid IP address!\n";
544 exit 1;
545 };
546 }
547
548 # Check if invalid IP addresses are correctly found.
549 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") {
550 if (&check_ip_address($address)) {
551 print "$address is recognised as a valid IP address!\n";
552 exit 1;
553 };
554 }
555
556 $result = &check_ip_address_and_netmask("192.168.180.0/255.255.255.0");
557 assert('check_ip_address_and_netmask("192.168.180.0/255.255.255.0")', $result);
558
559 $result = &convert_netmask2prefix("255.255.254.0");
560 assert('convert_netmask2prefix("255.255.254.0")', $result == 23);
561
562 $result = &convert_prefix2netmask(8);
563 assert('convert_prefix2netmask(8)', $result eq "255.0.0.0");
564
565 $result = &find_next_ip_address("1.2.3.4", 2);
566 assert('find_next_ip_address("1.2.3.4", 2)', $result eq "1.2.3.6");
567
568 $result = &network_equal("192.168.0.0/24", "192.168.0.0/255.255.255.0");
569 assert('network_equal("192.168.0.0/24", "192.168.0.0/255.255.255.0")', $result);
570
571 $result = &network_equal("192.168.0.0/24", "192.168.0.0/25");
572 assert('network_equal("192.168.0.0/24", "192.168.0.0/25")', !$result);
573
574 $result = &network_equal("192.168.0.0/24", "192.168.0.128/25");
575 assert('network_equal("192.168.0.0/24", "192.168.0.128/25")', !$result);
576
577 $result = &network_equal("192.168.0.1/24", "192.168.0.XXX/24");
578 assert('network_equal("192.168.0.1/24", "192.168.0.XXX/24")', !$result);
579
580 $result = &ip_address_in_network("10.0.1.4", "10.0.0.0/8");
581 assert('ip_address_in_network("10.0.1.4", "10.0.0.0/8"', $result);
582
583 $result = &ip_address_in_network("192.168.30.11", "192.168.30.0/255.255.255.0");
584 assert('ip_address_in_network("192.168.30.11", "192.168.30.0/255.255.255.0")', $result);
585
586 $result = &ip_address_in_network("192.168.30.11", "0.0.0.0/8");
587 assert('ip_address_in_network("192.168.30.11", "0.0.0.0/8")', !$result);
588
589 print "Testsuite completed successfully!\n";
590
591 return 0;
592 }
593
594 &testsuite();