]> git.ipfire.org Git - ipfire-2.x.git/blame - config/cfgroot/ids-functions.pl
ids-functions.pl: Add get_aliases()
[ipfire-2.x.git] / config / cfgroot / ids-functions.pl
CommitLineData
8dcebe53
SS
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) 2018 IPFire Team <info@ipfire.org>. #
21# #
22############################################################################
23
24package IDS;
25
26require '/var/ipfire/general-functions.pl';
8dcebe53 27
02844177 28# Location where all config and settings files are stored.
164eab66 29our $settingsdir = "${General::swroot}/suricata";
02844177 30
b02e30fd
SS
31# File where the used rulefiles are stored.
32our $used_rulefiles_file = "$settingsdir/suricata-used-rulefiles.yaml";
33
34# File where the addresses of the homenet are stored.
35our $homenet_file = "$settingsdir/suricata-homenet.yaml";
36
37# File which contains the enabled sids.
38our $enabled_sids_file = "$settingsdir/oinkmaster-enabled-sids.conf";
39
40# File which contains the disabled sids.
41our $disabled_sids_file = "$settingsdir/oinkmaster-disabled-sids.conf";
42
43# File which contains wheater the rules should be changed.
44our $modify_sids_file = "$settingsdir/oinkmaster-modify-sids.conf";
45
46# File which stores the configured IPS settings.
47our $ids_settings_file = "$settingsdir/settings";
48
49# File which stores the configured rules-settings.
50our $rules_settings_file = "$settingsdir/rules-settings";
51
52# File which stores the configured settings for whitelisted addresses.
53our $ignored_file = "$settingsdir/ignored";
54
eea2670b 55# Location and name of the tarball which contains the ruleset.
164eab66 56our $rulestarball = "/var/tmp/idsrules.tar.gz";
eea2670b 57
3983aebd 58# File to store any errors, which also will be read and displayed by the wui.
77910792 59our $storederrorfile = "/tmp/ids_storederror";
3983aebd 60
298ef5ba 61# Location where the rulefiles are stored.
21cab141 62our $rulespath = "/var/lib/suricata";
298ef5ba 63
b02e30fd
SS
64# File which contains the rules to whitelist addresses on suricata.
65our $whitelist_file = "$rulespath/whitelist.rules";
66
bce84f39
SS
67# File which contains a list of all supported ruleset sources.
68# (Sourcefire, Emergingthreads, etc..)
69our $rulesetsourcesfile = "$settingsdir/ruleset-sources";
70
796eea21
SS
71# The pidfile of the IDS.
72our $idspidfile = "/var/run/suricata.pid";
73
5240a809
SS
74# Location of suricatactrl.
75my $suricatactrl = "/usr/local/bin/suricatactrl";
76
77# Array with allowed commands of suricatactrl.
ed06bc81
SS
78my @suricatactrl_cmds = ( 'start', 'stop', 'restart', 'reload', 'fix-rules-dir', 'cron' );
79
80# Array with supported cron intervals.
81my @cron_intervals = ('off', 'daily', 'weekly' );
5240a809 82
b02e30fd
SS
83#
84## Function to check and create all IDS related files, if the does not exist.
85#
86sub check_and_create_filelayout() {
87 # Check if the files exist and if not, create them.
88 unless (-f "$enabled_sids_file") { &create_empty_file($enabled_sids_file); }
89 unless (-f "$disabled_sids_file") { &create_empty_file($disabled_sids_file); }
90 unless (-f "$modify_sids_file") { &create_empty_file($modify_sids_file); }
91 unless (-f "$used_rulefiles_file") { &create_empty_file($used_rulefiles_file); }
92 unless (-f "$ids_settings_file") { &create_empty_file($ids_settings_file); }
93 unless (-f "$rules_settings_file") { &create_empty_file($rules_settings_file); }
94 unless (-f "$ignored_file") { &create_empty_file($ignored_file); }
95 unless (-f "$whitelist_file" ) { &create_empty_file($whitelist_file); }
96}
97
8dcebe53
SS
98#
99## Function for checking if at least 300MB of free disk space are available
100## on the "/var" partition.
101#
102sub checkdiskspace () {
103 # Call diskfree to gather the free disk space of /var.
104 my @df = `/bin/df -B M /var`;
105
106 # Loop through the output.
107 foreach my $line (@df) {
108 # Ignore header line.
109 next if $line =~ m/^Filesystem/;
110
111 # Search for a line with the device information.
112 if ($line =~ m/dev/ ) {
113 # Split the line into single pieces.
114 my @values = split(' ', $line);
115 my ($filesystem, $blocks, $used, $available, $used_perenctage, $mounted_on) = @values;
116
117 # Check if the available disk space is more than 300MB.
118 if ($available < 300) {
434001d0
SS
119 # Log error to syslog.
120 &_log_to_syslog("Not enough free disk space on /var. Only $available MB from 300 MB available.");
8dcebe53 121
434001d0
SS
122 # Exit function and return "1" - False.
123 return 1;
8dcebe53
SS
124 }
125 }
126 }
127
128 # Everything okay, return nothing.
129 return;
130}
131
eea2670b 132#
b749416a 133## This function is responsible for downloading the configured IDS ruleset.
eea2670b 134##
b749416a 135## * At first it obtains from the stored rules settings which ruleset should be downloaded.
eea2670b
SS
136## * The next step is to get the download locations for all available rulesets.
137## * After that, the function will check if an upstream proxy should be used and grab the settings.
138## * The last step will be to generate the final download url, by obtaining the URL for the desired
139## ruleset, add the settings for the upstream proxy and final grab the rules tarball from the server.
140#
141sub downloadruleset {
b749416a
SS
142 # Get rules settings.
143 my %rulessettings=();
144 &General::readhash("$rules_settings_file", \%rulessettings);
eea2670b 145
be52c68a 146 # Check if a ruleset has been configured.
b749416a 147 unless($rulessettings{'RULES'}) {
be52c68a
SS
148 # Log that no ruleset has been configured and abort.
149 &_log_to_syslog("No ruleset source has been configured.");
150
151 # Return "1".
152 return 1;
153 }
154
eea2670b
SS
155 # Get all available ruleset locations.
156 my %rulesetsources=();
bce84f39 157 &General::readhash($rulesetsourcesfile, \%rulesetsources);
eea2670b
SS
158
159 # Read proxysettings.
160 my %proxysettings=();
161 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
162
163 # Load required perl module to handle the download.
164 use LWP::UserAgent;
165
166 # Init the download module.
167 my $downloader = LWP::UserAgent->new;
168
169 # Set timeout to 10 seconds.
170 $downloader->timeout(10);
171
172 # Check if an upstream proxy is configured.
173 if ($proxysettings{'UPSTREAM_PROXY'}) {
174 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
175 my $proxy_url;
176
177 # Check if we got a peer.
178 if ($peer) {
179 $proxy_url = "http://";
180
181 # Check if the proxy requires authentication.
182 if (($proxysettings{'UPSTREAM_USER'}) && ($proxysettings{'UPSTREAM_PASSWORD'})) {
183 $proxy_url .= "$proxysettings{'UPSTREAM_USER'}\:$proxysettings{'UPSTREAM_PASSWORD'}\@";
184 }
185
186 # Add proxy server address and port.
187 $proxy_url .= "$peer\:$peerport";
188 } else {
434001d0
SS
189 # Log error message and break.
190 &_log_to_syslog("Could not proper configure the proxy server access.");
191
192 # Return "1" - false.
193 return 1;
eea2670b
SS
194 }
195
196 # Setup proxy settings.
6994f001 197 $downloader->proxy(['http', 'https'], $proxy_url);
eea2670b
SS
198 }
199
200 # Grab the right url based on the configured vendor.
b749416a 201 my $url = $rulesetsources{$rulessettings{'RULES'}};
eea2670b
SS
202
203 # Check if the vendor requires an oinkcode and add it if needed.
b749416a 204 $url =~ s/\<oinkcode\>/$rulessettings{'OINKCODE'}/g;
eea2670b
SS
205
206 # Abort if no url could be determined for the vendor.
207 unless ($url) {
434001d0
SS
208 # Log error and abort.
209 &_log_to_syslog("Unable to gather a download URL for the selected ruleset.");
210 return 1;
eea2670b
SS
211 }
212
96da5803
SS
213 # Pass the requrested url to the downloader.
214 my $request = HTTP::Request->new(HEAD => $url);
215
216 # Accept the html header.
217 $request->header('Accept' => 'text/html');
218
219 # Perform the request and fetch the html header.
220 my $response = $downloader->request($request);
221
222 # Check if there was any error.
223 unless ($response->is_success) {
224 # Obtain error.
225 my $error = $response->content;
226
227 # Log error message.
228 &_log_to_syslog("Unable to download the ruleset. \($error\)");
229
230 # Return "1" - false.
231 return 1;
232 }
233
234 # Assign the fetched header object.
235 my $header = $response->headers;
236
237 # Grab the remote file size from the object and store it in the
238 # variable.
239 my $remote_filesize = $header->content_length;
240
25b6545a
SS
241 # Load perl module to deal with temporary files.
242 use File::Temp;
243
244 # Generate temporay file name, located in "/var/tmp" and with a suffix of ".tar.gz".
245 my $tmp = File::Temp->new( SUFFIX => ".tar.gz", DIR => "/var/tmp/", UNLINK => 0 );
246 my $tmpfile = $tmp->filename();
247
eea2670b
SS
248 # Pass the requested url to the downloader.
249 my $request = HTTP::Request->new(GET => $url);
250
25b6545a
SS
251 # Perform the request and save the output into the tmpfile.
252 my $response = $downloader->request($request, $tmpfile);
eea2670b
SS
253
254 # Check if there was any error.
255 unless ($response->is_success) {
88daf7eb
SS
256 # Obtain error.
257 my $error = $response->content;
258
434001d0 259 # Log error message.
88daf7eb 260 &_log_to_syslog("Unable to download the ruleset. \($error\)");
434001d0
SS
261
262 # Return "1" - false.
263 return 1;
eea2670b
SS
264 }
265
96da5803
SS
266 # Load perl stat module.
267 use File::stat;
268
25b6545a
SS
269 # Perform stat on the tmpfile.
270 my $stat = stat($tmpfile);
96da5803
SS
271
272 # Grab the local filesize of the downloaded tarball.
273 my $local_filesize = $stat->size;
274
275 # Check if both file sizes match.
276 unless ($remote_filesize eq $local_filesize) {
277 # Log error message.
278 &_log_to_syslog("Unable to completely download the ruleset. ");
279 &_log_to_syslog("Only got $local_filesize Bytes instead of $remote_filesize Bytes. ");
280
25b6545a
SS
281 # Delete temporary file.
282 unlink("$tmpfile");
283
96da5803
SS
284 # Return "1" - false.
285 return 1;
286 }
287
25b6545a
SS
288 # Load file copy module, which contains the move() function.
289 use File::Copy;
290
291 # Overwrite existing rules tarball with the new downloaded one.
292 move("$tmpfile", "$rulestarball");
293
eea2670b
SS
294 # If we got here, everything worked fine. Return nothing.
295 return;
296}
8dcebe53 297
25f5cb0d
SS
298#
299## A tiny wrapper function to call the oinkmaster script.
300#
301sub oinkmaster () {
330759d8
SS
302 # Check if the files in rulesdir have the correct permissions.
303 &_check_rulesdir_permissions();
304
883820bd
SS
305 # Cleanup the rules directory before filling it with the new rulest.
306 &_cleanup_rulesdir();
307
0e40e1e7
SS
308 # Load perl module to talk to the kernel syslog.
309 use Sys::Syslog qw(:DEFAULT setlogsock);
310
311 # Establish the connection to the syslog service.
312 openlog('oinkmaster', 'cons,pid', 'user');
313
25f5cb0d 314 # Call oinkmaster to generate ruleset.
d9711d91 315 open(OINKMASTER, "/usr/local/bin/oinkmaster.pl -v -s -u file://$rulestarball -C $settingsdir/oinkmaster.conf -o $rulespath|") or die "Could not execute oinkmaster $!\n";
0e40e1e7
SS
316
317 # Log output of oinkmaster to syslog.
318 while(<OINKMASTER>) {
319 # The syslog function works best with an array based input,
320 # so generate one before passing the message details to syslog.
321 my @syslog = ("INFO", "$_");
322
323 # Send the log message.
324 syslog(@syslog);
325 }
326
327 # Close the pipe to oinkmaster process.
328 close(OINKMASTER);
329
330 # Close the log handle.
331 closelog();
25f5cb0d
SS
332}
333
3983aebd
SS
334#
335## Function to do all the logging stuff if the downloading or updating of the ruleset fails.
336#
337sub log_error ($) {
338 my ($error) = @_;
339
340 # Remove any newline.
341 chomp($error);
342
eb5592c1
SS
343 # Call private function to log the error message to syslog.
344 &_log_to_syslog($error);
345
3983aebd
SS
346 # Call private function to write/store the error message in the storederrorfile.
347 &_store_error_message($error);
348}
349
eb5592c1
SS
350#
351## Function to log a given error message to the kernel syslog.
352#
353sub _log_to_syslog ($) {
354 my ($message) = @_;
355
356 # Load perl module to talk to the kernel syslog.
357 use Sys::Syslog qw(:DEFAULT setlogsock);
358
359 # The syslog function works best with an array based input,
360 # so generate one before passing the message details to syslog.
361 my @syslog = ("ERR", "<ERROR> $message");
362
363 # Establish the connection to the syslog service.
364 openlog('oinkmaster', 'cons,pid', 'user');
365
366 # Send the log message.
367 syslog(@syslog);
368
369 # Close the log handle.
370 closelog();
371}
372
3983aebd
SS
373#
374## Private function to write a given error message to the storederror file.
375#
376sub _store_error_message ($) {
377 my ($message) = @_;
378
379 # Remove any newline.
380 chomp($message);
381
382 # Open file for writing.
383 open (ERRORFILE, ">$storederrorfile") or die "Could not write to $storederrorfile. $!\n";
384
385 # Write error to file.
386 print ERRORFILE "$message\n";
387
388 # Close file.
389 close (ERRORFILE);
3c59b1fa
SS
390
391 # Set correct ownership for the file.
392 &set_ownership("$storederrorfile");
3983aebd
SS
393}
394
1cae702c
SS
395#
396## Function to get a list of all available network zones.
397#
398sub get_available_network_zones () {
399 # Get netsettings.
400 my %netsettings = ();
401 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
402
403 # Obtain the configuration type from the netsettings hash.
404 my $config_type = $netsettings{'CONFIG_TYPE'};
405
406 # Hash which contains the conversation from the config mode
407 # to the existing network interface names. They are stored like
408 # an array.
409 #
410 # Mode "0" red is a modem and green
411 # Mode "1" red is a netdev and green
412 # Mode "2" red, green and orange
413 # Mode "3" red, green and blue
414 # Mode "4" red, green, blue, orange
415 my %config_type_to_interfaces = (
416 "0" => [ "red", "green" ],
417 "1" => [ "red", "green" ],
418 "2" => [ "red", "green", "orange" ],
419 "3" => [ "red", "green", "blue" ],
420 "4" => [ "red", "green", "blue", "orange" ]
421 );
422
423 # Obtain and dereference the corresponding network interaces based on the read
424 # network config type.
425 my @network_zones = @{ $config_type_to_interfaces{$config_type} };
426
427 # Return them.
428 return @network_zones;
429}
430
796eea21
SS
431#
432## Function to check if the IDS is running.
433#
434sub ids_is_running () {
435 if(-f $idspidfile) {
436 # Open PID file for reading.
437 open(PIDFILE, "$idspidfile") or die "Could not open $idspidfile. $!\n";
438
439 # Grab the process-id.
440 my $pid = <PIDFILE>;
441
442 # Close filehandle.
443 close(PIDFILE);
444
445 # Remove any newline.
446 chomp($pid);
447
448 # Check if a directory for the process-id exists in proc.
449 if(-d "/proc/$pid") {
450 # The IDS daemon is running return the process id.
451 return $pid;
452 }
453 }
454
455 # Return nothing - IDS is not running.
456 return;
457}
458
5240a809
SS
459#
460## Function to call suricatactrl binary with a given command.
461#
462sub call_suricatactrl ($) {
463 # Get called option.
ed06bc81 464 my ($option, $interval) = @_;
5240a809
SS
465
466 # Loop through the array of supported commands and check if
467 # the given one is part of it.
468 foreach my $cmd (@suricatactrl_cmds) {
469 # Skip current command unless the given one has been found.
470 next unless($cmd eq $option);
471
ed06bc81
SS
472 # Check if the given command is "cron".
473 if ($option eq "cron") {
474 # Check if an interval has been given.
475 if ($interval) {
476 # Check if the given interval is valid.
477 foreach my $element (@cron_intervals) {
478 # Skip current element until the given one has been found.
479 next unless($element eq $interval);
480
481 # Call the suricatactrl binary and pass the "cron" command
482 # with the requrested interval.
483 system("$suricatactrl $option $interval &>/dev/null");
484
485 # Return "1" - True.
486 return 1;
487 }
488 }
5240a809 489
ed06bc81
SS
490 # If we got here, the given interval is not supported or none has been given. - Return nothing.
491 return;
492 } else {
493 # Call the suricatactrl binary and pass the requrested
494 # option to it.
495 system("$suricatactrl $option &>/dev/null");
496
497 # Return "1" - True.
498 return 1;
499 }
5240a809
SS
500 }
501
502 # Command not found - return nothing.
503 return;
504}
505
308ba5e7
SS
506#
507## Function to create a new empty file.
508#
509sub create_empty_file($) {
510 my ($file) = @_;
511
512 # Check if the given file exists.
513 if(-e $file) {
514 # Do nothing to prevent from overwriting existing files.
515 return;
516 }
517
518 # Open the file for writing.
519 open(FILE, ">$file") or die "Could not write to $file. $!\n";
520
521 # Close file handle.
522 close(FILE);
523
524 # Return true.
525 return 1;
526}
527
330759d8
SS
528#
529## Private function to check if the file permission of the rulespath are correct.
530## If not, call suricatactrl to fix them.
531#
532sub _check_rulesdir_permissions() {
e568796b
SS
533 # Check if the rulepath main directory is writable.
534 unless (-W $rulespath) {
535 # If not call suricatctrl to fix it.
536 &call_suricatactrl("fix-rules-dir");
537 }
538
330759d8
SS
539 # Open snort rules directory and do a directory listing.
540 opendir(DIR, $rulespath) or die $!;
541 # Loop through the direcory.
542 while (my $file = readdir(DIR)) {
543 # We only want files.
544 next unless (-f "$rulespath/$file");
545
546 # Check if the file is writable by the user.
547 if (-W "$rulespath/$file") {
548 # Everything is okay - go on to the next file.
549 next;
550 } else {
551 # There are wrong permissions, call suricatactrl to fix it.
552 &call_suricatactrl("fix-rules-dir");
553 }
554 }
555}
556
b59cdbee
SS
557#
558## Private function to cleanup the directory which contains
559## the IDS rules, before extracting and modifing the new ruleset.
560#
561sub _cleanup_rulesdir() {
8cf04a16
SS
562 # Open rules directory and do a directory listing.
563 opendir(DIR, $rulespath) or die $!;
564
565 # Loop through the direcory.
566 while (my $file = readdir(DIR)) {
567 # We only want files.
568 next unless (-f "$rulespath/$file");
569
570 # Skip element if it has config as file extension.
571 next if ($file =~ m/\.config$/);
b59cdbee 572
8cf04a16 573 # Delete the current processed file, if not, exit this function
b59cdbee 574 # and return an error message.
1201c1e7 575 unlink("$rulespath/$file") or return "Could not delete $rulespath/$file. $!\n";
b59cdbee
SS
576 }
577
4ce42488 578 # Return nothing;
b59cdbee
SS
579 return;
580}
581
b02e30fd
SS
582#
583## Function to generate the file which contains the home net information.
584#
585sub generate_home_net_file() {
586 my %netsettings;
587
588 # Read-in network settings.
589 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
590
591 # Get available network zones.
592 my @network_zones = &get_available_network_zones();
593
594 # Temporary array to store network address and prefix of the configured
595 # networks.
596 my @networks;
597
598 # Loop through the array of available network zones.
599 foreach my $zone (@network_zones) {
600 # Skip the red network - It never can be part to the home_net!
601 next if($zone eq "red");
602
603 # Convert current zone name into upper case.
604 $zone = uc($zone);
605
606 # Generate key to access the required data from the netsettings hash.
607 my $zone_netaddress = $zone . "_NETADDRESS";
608 my $zone_netmask = $zone . "_NETMASK";
609
610 # Obtain the settings from the netsettings hash.
611 my $netaddress = $netsettings{$zone_netaddress};
612 my $netmask = $netsettings{$zone_netmask};
613
614 # Convert the subnetmask into prefix notation.
615 my $prefix = &Network::convert_netmask2prefix($netmask);
616
617 # Generate full network string.
618 my $network = join("/", $netaddress,$prefix);
619
620 # Check if the network is valid.
621 if(&Network::check_subnet($network)) {
622 # Add the generated network to the array of networks.
623 push(@networks, $network);
624 }
625 }
626
627 # Format home net declaration.
628 my $line = "\"\[";
629
630 # Loop through the array of networks.
631 foreach my $network (@networks) {
632 # Add the network to the line.
633 $line = "$line" . "$network";
634
635 # Check if the current network was the last in the array.
636 if ($network eq $networks[-1]) {
637 # Close the line.
638 $line = "$line" . "\]\"";
639 } else {
640 # Add "," for the next network.
641 $line = "$line" . "\,";
642 }
643 }
644
645 # Open file to store the addresses of the home net.
646 open(FILE, ">$homenet_file") or die "Could not open $homenet_file. $!\n";
647
648 # Print yaml header.
649 print FILE "%YAML 1.1\n";
650 print FILE "---\n\n";
651
652 # Print notice about autogenerated file.
653 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
654
655 # Print the generated and required HOME_NET declaration to the file.
656 print FILE "HOME_NET:\t$line\n";
657
658 # Close file handle.
659 close(FILE);
660}
661
662#
663## Function to generate and write the file for used rulefiles.
664#
665sub write_used_rulefiles_file(@) {
666 my @files = @_;
667
668 # Open file for used rulefiles.
669 open (FILE, ">$used_rulefiles_file") or die "Could not write to $used_rulefiles_file. $!\n";
670
671 # Write yaml header to the file.
672 print FILE "%YAML 1.1\n";
673 print FILE "---\n\n";
674
675 # Write header to file.
676 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
677
678 # Allways use the whitelist.
679 print FILE " - whitelist.rules\n";
680
681 # Loop through the array of given files.
682 foreach my $file (@files) {
683 # Check if the given filename exists and write it to the file of used rulefiles.
684 if(-f "$rulespath/$file") {
685 print FILE " - $file\n";
686 }
687 }
688
689 # Close file after writing.
690 close(FILE);
691}
692
74cc8f5a
SS
693#
694## Function to generate and write the file for modify the ruleset.
695#
696sub write_modify_sids_file($) {
697 my ($ruleaction) = @_;
698
699 # Open modify sid's file for writing.
2ee51088 700 open(FILE, ">$modify_sids_file") or die "Could not write to $modify_sids_file. $!\n";
74cc8f5a
SS
701
702 # Write file header.
703 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
704
705 # Check if the traffic only should be monitored.
706 unless($ruleaction eq "alert") {
707 # Tell oinkmaster to switch all rules from alert to drop.
708 print FILE "modifysid \* \"alert\" \| \"drop\"\n";
709 }
710
711 # Close file handle.
712 close(FILE);
713}
714
04a0d07c
SS
715#
716## Function to gather the version of suricata.
717#
718sub get_suricata_version($) {
719 my ($format) = @_;
720
721 # Execute piped suricata command and return the version information.
722 open(SURICATA, "suricata -V |") or die "Couldn't execute program: $!";
723
724 # Grab and store the output of the piped program.
725 my $version_string = <SURICATA>;
726
727 # Close pipe.
728 close(SURICATA);
729
730 # Remove newlines.
731 chomp($version_string);
732
733 # Grab the version from the version string.
734 $version_string =~ /([0-9]+([.][0-9]+)+)/;
735
736 # Splitt the version into single chunks.
737 my ($major_ver, $minor_ver, $patchlevel) = split(/\./, $1);
738
739 # Check and return the requested version sheme.
740 if ($format eq "major") {
741 # Return the full version.
742 return "$major_ver";
743 } elsif ($format eq "minor") {
744 # Return the major and minor part.
745 return "$major_ver.$minor_ver";
746 } else {
747 # Return the full version string.
748 return "$major_ver.$minor_ver.$patchlevel";
749 }
750}
751
9283e9b9
SS
752#
753## Function to generate the rules file with whitelisted addresses.
754#
755sub generate_ignore_file() {
756 my %ignored = ();
757
758 # SID range 1000000-1999999 Reserved for Local Use
759 # Put your custom rules in this range to avoid conflicts
760 my $sid = 1500000;
761
762 # Read-in ignoredfile.
763 &General::readhasharray($IDS::ignored_file, \%ignored);
764
765 # Open ignorefile for writing.
766 open(FILE, ">$IDS::whitelist_file") or die "Could not write to $IDS::whitelist_file. $!\n";
767
768 # Config file header.
769 print FILE "# Autogenerated file.\n";
770 print FILE "# All user modifications will be overwritten.\n\n";
771
772 # Add all user defined addresses to the whitelist.
773 #
774 # Check if the hash contains any elements.
775 if (keys (%ignored)) {
776 # Loop through the entire hash and write the host/network
777 # and remark to the ignore file.
778 while ( (my $key) = each %ignored) {
779 my $address = $ignored{$key}[0];
780 my $remark = $ignored{$key}[1];
781 my $status = $ignored{$key}[2];
782
783 # Check if the status of the entry is "enabled".
784 if ($status eq "enabled") {
785 # Check if the address/network is valid.
786 if ((&General::validip($address)) || (&General::validipandmask($address))) {
787 # Write rule line to the file to pass any traffic from this IP
788 print FILE "pass ip $address any -> any any (msg:\"pass all traffic from/to $address\"\; sid:$sid\;)\n";
789
790 # Increment sid.
791 $sid++;
792 }
793 }
794 }
795 }
796
797 close(FILE);
798}
799
1fedede6
SS
800#
801## Function to set correct ownership for single files and directories.
802#
803
804sub set_ownership($) {
805 my ($target) = @_;
806
807 # User and group of the WUI.
808 my $uname = "nobody";
809 my $grname = "nobody";
810
811 # The chown function implemented in perl requies the user and group as nummeric id's.
812 my $uid = getpwnam($uname);
813 my $gid = getgrnam($grname);
814
815 # Check if the given target exists.
816 unless ($target) {
817 # Stop the script and print error message.
818 die "The $target does not exist. Cannot change the ownership!\n";
819 }
820
821 # Check weather the target is a file or directory.
822 if (-f $target) {
823 # Change ownership ot the single file.
824 chown($uid, $gid, "$target");
825 } elsif (-d $target) {
826 # Do a directory listing.
827 opendir(DIR, $target) or die $!;
828 # Loop through the direcory.
829 while (my $file = readdir(DIR)) {
830
831 # We only want files.
832 next unless (-f "$target/$file");
833
834 # Set correct ownership for the files.
835 chown($uid, $gid, "$target/$file");
836 }
837
838 closedir(DIR);
839
840 # Change ownership of the directory.
841 chown($uid, $gid, "$target");
842 }
843}
77c31301
SS
844
845#
846## Function to read-in the aliases file and returns all configured and enabled aliases.
847#
848sub get_aliases() {
849 # Location of the aliases file.
850 my $aliases_file = "${General::swroot}/ethernet/aliases";
851
852 # Array to store the aliases.
853 my @aliases;
854
855 # Check if the file is empty.
856 if (-z $aliases_file) {
857 # Abort nothing to do.
858 return;
859 }
860
861 # Open the aliases file.
862 open(ALIASES, $aliases_file) or die "Could not open $aliases_file. $!\n";
863
864 # Loop through the file content.
865 while (my $line = <ALIASES>) {
866 # Remove newlines.
867 chomp($line);
868
869 # Splitt line content into single chunks.
870 my ($address, $state, $remark) = split(/\,/, $line);
871
872 # Check if the state of the current processed alias is "on".
873 if ($state eq "on") {
874 # Check if the address is valid.
875 if(&Network::check_ip_address($address)) {
876 # Add the alias to the array of aliases.
877 push(@aliases, $address);
878 }
879 }
880 }
881
882 # Close file handle.
883 close(ALIASES);
884
885 # Return the array.
886 return @aliases;
887}
888
889
8dcebe53 8901;