]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/cfgroot/ids-functions.pl
ids-functions.pl: Add get_providers_mode() function.
[people/pmueller/ipfire-2.x.git] / config / cfgroot / ids-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) 2018-2019 IPFire Team <info@ipfire.org> #
21 # #
22 ############################################################################
23
24 use strict;
25
26 package IDS;
27
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/network-functions.pl";
30 require "${General::swroot}/suricata/ruleset-sources";
31
32 # Load perl module to deal with Archives.
33 use Archive::Tar;
34
35 # Load perl module to deal with files and path.
36 use File::Basename;
37
38 # Load module to move files.
39 use File::Copy;
40
41 # Load module to recursely remove files and a folder.
42 use File::Path qw(rmtree);
43
44 # Load module to get file stats.
45 use File::stat;
46
47 # Load module to deal with temporary files.
48 use File::Temp;
49
50 # Load module to deal with the date formats used by the HTTP protocol.
51 use HTTP::Date;
52
53 # Load the libwwwperl User Agent module.
54 use LWP::UserAgent;
55
56 # Load function from posix module to format time strings.
57 use POSIX qw (strftime);
58
59 # Load module to talk to the kernel log daemon.
60 use Sys::Syslog qw(:DEFAULT setlogsock);
61
62 # Location where all config and settings files are stored.
63 our $settingsdir = "${General::swroot}/suricata";
64
65 # File where the main file for providers ruleset inclusion exists.
66 our $suricata_used_providers_file = "$settingsdir/suricata-used-providers.yaml";
67
68 # File for static ruleset inclusions.
69 our $suricata_default_rulefiles_file = "$settingsdir/suricata-default-rules.yaml";
70
71 # File where the addresses of the homenet are stored.
72 our $homenet_file = "$settingsdir/suricata-homenet.yaml";
73
74 # File where the addresses of the used DNS servers are stored.
75 our $dns_servers_file = "$settingsdir/suricata-dns-servers.yaml";
76
77 # File where the HTTP ports definition is stored.
78 our $http_ports_file = "$settingsdir/suricata-http-ports.yaml";
79
80 # File which contains includes for provider specific rule modifications.
81 our $oinkmaster_provider_includes_file = "$settingsdir/oinkmaster-provider-includes.conf";
82
83 # File which contains wheater the rules should be changed.
84 our $modify_sids_file = "$settingsdir/oinkmaster-modify-sids.conf";
85
86 # File which stores the configured IPS settings.
87 our $ids_settings_file = "$settingsdir/settings";
88
89 # File which stores the used and configured ruleset providers.
90 our $providers_settings_file = "$settingsdir/providers-settings";
91
92 # File which stores the configured settings for whitelisted addresses.
93 our $ignored_file = "$settingsdir/ignored";
94
95 # Location where the downloaded rulesets are stored.
96 our $dl_rules_path = "/var/tmp";
97
98 # File to store any errors, which also will be read and displayed by the wui.
99 our $storederrorfile = "/tmp/ids_storederror";
100
101 # File to lock the WUI, while the autoupdate script runs.
102 our $ids_page_lock_file = "/tmp/ids_page_locked";
103
104 # Location where the rulefiles are stored.
105 our $rulespath = "/var/lib/suricata";
106
107 # Location where the default rulefils are stored.
108 our $default_rulespath = "/usr/share/suricata/rules";
109
110 # Location where the addition config files are stored.
111 our $configspath = "/usr/share/suricata";
112
113 # Location of the classification file.
114 our $classification_file = "$configspath/classification.config";
115
116 # Location of the sid to msg mappings file.
117 our $sid_msg_file = "$rulespath/sid-msg.map";
118
119 # Location to store local rules. This file will not be touched.
120 our $local_rules_file = "$rulespath/local.rules";
121
122 # File which contains the rules to whitelist addresses on suricata.
123 our $whitelist_file = "$rulespath/whitelist.rules";
124
125 # File which contains a list of all supported ruleset sources.
126 # (Sourcefire, Emergingthreads, etc..)
127 our $rulesetsourcesfile = "$settingsdir/ruleset-sources";
128
129 # The pidfile of the IDS.
130 our $idspidfile = "/var/run/suricata.pid";
131
132 # Location of suricatactrl.
133 my $suricatactrl = "/usr/local/bin/suricatactrl";
134
135 # Prefix for each downloaded ruleset.
136 my $dl_rulesfile_prefix = "idsrules";
137
138 # Temporary directory where the rulesets will be extracted.
139 my $tmp_directory = "/tmp/ids_tmp";
140
141 # Temporary directory where the extracted rules files will be stored.
142 my $tmp_rules_directory = "$tmp_directory/rules";
143
144 # Temporary directory where the extracted additional config files will be stored.
145 my $tmp_conf_directory = "$tmp_directory/conf";
146
147 # Array with allowed commands of suricatactrl.
148 my @suricatactrl_cmds = ( 'start', 'stop', 'restart', 'reload', 'fix-rules-dir', 'cron' );
149
150 # Array with supported cron intervals.
151 my @cron_intervals = ('off', 'daily', 'weekly' );
152
153 # Array which contains the HTTP ports, which statically will be declared as HTTP_PORTS in the
154 # http_ports_file.
155 my @http_ports = ('80', '81');
156
157 # Array which contains a list of rulefiles which always will be included if they exist.
158 my @static_included_rulefiles = ('local.rules', 'whitelist.rules');
159
160 # Array which contains a list of allways enabled application layer protocols.
161 my @static_enabled_app_layer_protos = ('app-layer', 'decoder', 'files', 'stream');
162
163 # Hash which allows to convert the download type (dl_type) to a file suffix.
164 my %dl_type_to_suffix = (
165 "archive" => ".tar.gz",
166 "plain" => ".rules",
167 );
168
169 # Hash to translate an application layer protocol to the application name.
170 my %tr_app_layer_proto = (
171 "ikev2" => "ipsec",
172 "krb5" => "kerberos",
173 );
174
175 #
176 ## Function to check and create all IDS related files, if the does not exist.
177 #
178 sub check_and_create_filelayout() {
179 # Check if the files exist and if not, create them.
180 unless (-f "$oinkmaster_provider_includes_file") { &create_empty_file($oinkmaster_provider_includes_file); }
181 unless (-f "$modify_sids_file") { &create_empty_file($modify_sids_file); }
182 unless (-f "$suricata_used_providers_file") { &create_empty_file($suricata_used_providers_file); }
183 unless (-f "$suricata_default_rulefiles_file") { &create_empty_file($suricata_default_rulefiles_file); }
184 unless (-f "$ids_settings_file") { &create_empty_file($ids_settings_file); }
185 unless (-f "$providers_settings_file") { &create_empty_file($providers_settings_file); }
186 unless (-f "$whitelist_file" ) { &create_empty_file($whitelist_file); }
187 }
188
189 #
190 ## Function to get a list of all available ruleset providers.
191 ##
192 ## They will be returned as a sorted array.
193 #
194 sub get_ruleset_providers() {
195 my @providers;
196
197 # Loop through the hash of providers.
198 foreach my $provider ( keys %IDS::Ruleset::Providers ) {
199 # Add the provider to the array.
200 push(@providers, $provider);
201 }
202
203 # Sort and return the array.
204 return sort(@providers);
205 }
206
207 #
208 ## Function to get a list of all enabled ruleset providers.
209 ##
210 ## They will be returned as an array.
211 #
212 sub get_enabled_providers () {
213 my %used_providers = ();
214
215 # Array to store the enabled providers.
216 my @enabled_providers = ();
217
218 # Read-in the providers config file.
219 &General::readhasharray("$providers_settings_file", \%used_providers);
220
221 # Loop through the hash of used_providers.
222 foreach my $id (keys %used_providers) {
223 # Skip disabled providers.
224 next unless ($used_providers{$id}[3] eq "enabled");
225
226 # Grab the provider handle.
227 my $provider = "$used_providers{$id}[0]";
228
229 # Add the provider to the array of enabled providers.
230 push(@enabled_providers, $provider);
231 }
232
233 # Return the array.
234 return @enabled_providers;
235 }
236
237 #
238 ## Function to get a hash of provider handles and their configured modes (IDS/IPS).
239 #
240 sub get_providers_mode () {
241 my %used_providers = ();
242
243 # Hash to store the providers and their configured modes.
244 my %providers_mode = ();
245
246 # Read-in the providers config file.
247 &General::readhasharray("$providers_settings_file", \%used_providers);
248
249 # Loop through the hash of used_providers.
250 foreach my $id (keys %used_providers) {
251 # Skip disabled providers.
252 next unless ($used_providers{$id}[3] eq "enabled");
253
254 # Grab the provider handle.
255 my $provider = "$used_providers{$id}[0]";
256
257 # Grab the provider mode.
258 my $mode = "$used_providers{$id}[4]";
259
260 # Fall back to IDS if no mode could be obtained.
261 unless($mode) {
262 $mode = "IDS";
263 }
264
265 # Add details to provider_modes hash.
266 $providers_mode{$provider} = $mode;
267 }
268
269 # Return the hash.
270 return %providers_mode;
271 }
272
273 #
274 ## Function for checking if at least 300MB of free disk space are available
275 ## on the "/var" partition.
276 #
277 sub checkdiskspace () {
278 # Call diskfree to gather the free disk space of /var.
279 my @df = &General::system_output("/bin/df", "-B", "M", "/var");
280
281 # Loop through the output.
282 foreach my $line (@df) {
283 # Ignore header line.
284 next if $line =~ m/^Filesystem/;
285
286 # Search for a line with the device information.
287 if ($line =~ m/dev/ ) {
288 # Split the line into single pieces.
289 my @values = split(' ', $line);
290 my ($filesystem, $blocks, $used, $available, $used_perenctage, $mounted_on) = @values;
291
292 # Check if the available disk space is more than 300MB.
293 if ($available < 300) {
294 # Exit function and return the available disk space.
295 return $available;
296 }
297 }
298 }
299
300 # Everything okay, return nothing.
301 return;
302 }
303
304 #
305 ## This function is responsible for downloading the ruleset for a given provider.
306 ##
307 ## * At first it initialize the downloader and sets an upstream proxy if configured.
308 ## * The next step will be to generate the final download url, by obtaining the URL for the desired
309 ## ruleset and add the settings for the upstream proxy.
310 ## * Finally the function will grab the rule file or tarball from the server.
311 ## It tries to reduce the amount of download by using the "If-Modified-Since" HTTP header.
312 #
313 ## Return codes:
314 ##
315 ## * "no url" - If no download URL could be gathered for the provider.
316 ## * "not modified" - In case the already stored rules file is up to date.
317 ## * "incomplete download" - When the remote file size differs from the downloaded file size.
318 ## * "$error" - The error message generated from the LWP::User Agent module.
319 #
320 sub downloadruleset ($) {
321 my ($provider) = @_;
322
323 # The amount of download attempts before giving up and
324 # logging an error.
325 my $max_dl_attempts = 3;
326
327 # Read proxysettings.
328 my %proxysettings=();
329 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
330
331 # Init the download module.
332 #
333 # Request SSL hostname verification and specify path
334 # to the CA file.
335 my $downloader = LWP::UserAgent->new(
336 ssl_opts => {
337 SSL_ca_file => '/etc/ssl/cert.pem',
338 verify_hostname => 1,
339 }
340 );
341
342 # Set timeout to 10 seconds.
343 $downloader->timeout(10);
344
345 # Check if an upstream proxy is configured.
346 if ($proxysettings{'UPSTREAM_PROXY'}) {
347 my $proxy_url;
348
349 $proxy_url = "http://";
350
351 # Check if the proxy requires authentication.
352 if (($proxysettings{'UPSTREAM_USER'}) && ($proxysettings{'UPSTREAM_PASSWORD'})) {
353 $proxy_url .= "$proxysettings{'UPSTREAM_USER'}\:$proxysettings{'UPSTREAM_PASSWORD'}\@";
354 }
355
356 # Add proxy server address and port.
357 $proxy_url .= $proxysettings{'UPSTREAM_PROXY'};
358
359 # Setup proxy settings.
360 $downloader->proxy(['http', 'https'], $proxy_url);
361 }
362
363 # Grab the download url for the provider.
364 my $url = $IDS::Ruleset::Providers{$provider}{'dl_url'};
365
366 # Check if the provider requires a subscription.
367 if ($IDS::Ruleset::Providers{$provider}{'requires_subscription'} eq "True") {
368 # Grab the subscription code.
369 my $subscription_code = &get_subscription_code($provider);
370
371 # Add the subscription code to the download url.
372 $url =~ s/\<subscription_code\>/$subscription_code/g;
373
374 }
375
376 # Abort and return "no url", if no url could be determined for the provider.
377 return "no url" unless ($url);
378
379 # Pass the requested URL to the downloader.
380 my $request = HTTP::Request->new(GET => $url);
381
382 # Generate temporary file name, located in "/var/tmp" and with a suffix of ".tmp".
383 # The downloaded file will be stored there until some sanity checks are performed.
384 my $tmp = File::Temp->new( SUFFIX => ".tmp", DIR => "/var/tmp/", UNLINK => 0 );
385 my $tmpfile = $tmp->filename();
386
387 # Call function to get the final path and filename for the downloaded file.
388 my $dl_rulesfile = &_get_dl_rulesfile($provider);
389
390 # Check if the rulesfile already exits, because it has been downloaded in the past.
391 #
392 # In this case we are requesting the server if the remote file has been changed or not.
393 # This will be done by sending the modification time in a special HTTP header.
394 if (-f $dl_rulesfile) {
395 # Call stat on the file.
396 my $stat = stat($dl_rulesfile);
397
398 # Omit the mtime of the existing file.
399 my $mtime = $stat->mtime;
400
401 # Convert the timestamp into right format.
402 my $http_date = time2str($mtime);
403
404 # Add the If-Modified-Since header to the request to ask the server if the
405 # file has been modified.
406 $request->header( 'If-Modified-Since' => "$http_date" );
407 }
408
409 my $dl_attempt = 1;
410 my $response;
411
412 # Download and retry on failure.
413 while ($dl_attempt <= $max_dl_attempts) {
414 # Perform the request and save the output into the tmpfile.
415 $response = $downloader->request($request, $tmpfile);
416
417 # Check if the download was successfull.
418 if($response->is_success) {
419 # Break loop.
420 last;
421
422 # Check if the server responds with 304 (Not Modified).
423 } elsif ($response->code == 304) {
424 # Return "not modified".
425 return "not modified";
426
427 # Check if we ran out of download re-tries.
428 } elsif ($dl_attempt eq $max_dl_attempts) {
429 # Obtain error.
430 my $error = $response->content;
431
432 # Return the error message from response..
433 return "$error";
434 }
435
436 # Remove temporary file, if one exists.
437 unlink("$tmpfile") if (-e "$tmpfile");
438
439 # Increase download attempt counter.
440 $dl_attempt++;
441 }
442
443 # Obtain the connection headers.
444 my $headers = $response->headers;
445
446 # Get the timestamp from header, when the file has been modified the
447 # last time.
448 my $last_modified = $headers->last_modified;
449
450 # Get the remote size of the downloaded file.
451 my $remote_filesize = $headers->content_length;
452
453 # Perform stat on the tmpfile.
454 my $stat = stat($tmpfile);
455
456 # Grab the local filesize of the downloaded tarball.
457 my $local_filesize = $stat->size;
458
459 # Check if both file sizes match.
460 if (($remote_filesize) && ($remote_filesize ne $local_filesize)) {
461 # Delete temporary file.
462 unlink("$tmpfile");
463
464 # Return "1" - false.
465 return "incomplete download";
466 }
467
468 # Overwrite the may existing rulefile or tarball with the downloaded one.
469 move("$tmpfile", "$dl_rulesfile");
470
471 # Check if we got a last-modified value from the server.
472 if ($last_modified) {
473 # Assign the last-modified timestamp as mtime to the
474 # rules file.
475 utime(time(), "$last_modified", "$dl_rulesfile");
476 }
477
478 # Delete temporary file.
479 unlink("$tmpfile");
480
481 # Set correct ownership for the tarball.
482 set_ownership("$dl_rulesfile");
483
484 # If we got here, everything worked fine. Return nothing.
485 return;
486 }
487
488 #
489 ## Function to extract a given ruleset.
490 ##
491 ## In case the ruleset provider offers a plain file, it simply will
492 ## be copied.
493 #
494 sub extractruleset ($) {
495 my ($provider) = @_;
496
497 # Disable chown functionality when uncompressing files.
498 $Archive::Tar::CHOWN = "0";
499
500 # Get full path and downloaded rulesfile for the given provider.
501 my $tarball = &_get_dl_rulesfile($provider);
502
503 # Check if the file exists.
504 unless (-f $tarball) {
505 &_log_to_syslog("Could not find ruleset file: $tarball");
506
507 # Return nothing.
508 return;
509 }
510
511 # Check if the temporary directories exist, otherwise create them.
512 mkdir("$tmp_directory") unless (-d "$tmp_directory");
513 mkdir("$tmp_rules_directory") unless (-d "$tmp_rules_directory");
514 mkdir("$tmp_conf_directory") unless (-d "$tmp_conf_directory");
515
516 # Omit the type (dl_type) of the stored ruleset.
517 my $type = $IDS::Ruleset::Providers{$provider}{'dl_type'};
518
519 # Handle the different ruleset types.
520 if ($type eq "plain") {
521 # Generate destination filename an full path.
522 my $destination = "$tmp_rules_directory/$provider\-ruleset.rules";
523
524 # Copy the file into the temporary rules directory.
525 copy($tarball, $destination);
526
527 } elsif ( $type eq "archive") {
528 # Initialize the tar module.
529 my $tar = Archive::Tar->new($tarball);
530
531 # Get the filelist inside the tarball.
532 my @packed_files = $tar->list_files;
533
534 # Loop through the filelist.
535 foreach my $packed_file (@packed_files) {
536 my $destination;
537
538 # Splitt the packed file into chunks.
539 my $file = fileparse($packed_file);
540
541 # Handle msg-id.map file.
542 if ("$file" eq "sid-msg.map") {
543 # Set extract destination to temporary config_dir.
544 $destination = "$tmp_conf_directory/$provider\-sid-msg.map";
545
546 # Handle classification.conf
547 } elsif ("$file" eq "classification.config") {
548 # Set extract destination to temporary config_dir.
549 $destination = "$tmp_conf_directory/$provider\-classification.config";
550
551 # Handle rules files.
552 } elsif ($file =~ m/\.rules$/) {
553 # Skip rule files which are not located in the rules directory or archive root.
554 next unless(($packed_file =~ /^rules\//) || ($packed_file !~ /\//));
555
556 # Skip deleted.rules.
557 #
558 # Mostly they have been taken out for correctness or performance reasons and therfore
559 # it is not a great idea to enable any of them.
560 next if($file =~ m/deleted.rules$/);
561
562 my $rulesfilename;
563
564 # Splitt the filename into chunks.
565 my @filename = split("-", $file);
566
567 # Reverse the array.
568 @filename = reverse(@filename);
569
570 # Get the amount of elements in the array.
571 my $elements = @filename;
572
573 # Remove last element of the hash.
574 # It contains the vendor name, which will be replaced.
575 if ($elements >= 3) {
576 # Remove last element from hash.
577 pop(@filename);
578 }
579
580 # Check if the last element of the filename does not
581 # contain the providers name.
582 if ($filename[-1] ne "$provider") {
583 # Add provider name as last element.
584 push(@filename, $provider);
585 }
586
587 # Reverse the array back.
588 @filename = reverse(@filename);
589
590 # Generate the name for the rulesfile.
591 $rulesfilename = join("-", @filename);
592
593 # Set extract destination to temporaray rules_dir.
594 $destination = "$tmp_rules_directory/$rulesfilename";
595 } else {
596 # Skip all other files.
597 next;
598 }
599
600 # Check if the destination file exists.
601 unless(-e "$destination") {
602 # Extract the file to the temporary directory.
603 $tar->extract_file("$packed_file", "$destination");
604 } else {
605 # Generate temporary file name, located in the temporary rules directory and a suffix of ".tmp".
606 my $tmp = File::Temp->new( SUFFIX => ".tmp", DIR => "$tmp_rules_directory", UNLINK => 0 );
607 my $tmpfile = $tmp->filename();
608
609 # Extract the file to the new temporary file name.
610 $tar->extract_file("$packed_file", "$tmpfile");
611
612 # Open the the existing file.
613 open(DESTFILE, ">>", "$destination") or die "Could not open $destination. $!\n";
614 open(TMPFILE, "<", "$tmpfile") or die "Could not open $tmpfile. $!\n";
615
616 # Loop through the content of the temporary file.
617 while (<TMPFILE>) {
618 # Append the content line by line to the destination file.
619 print DESTFILE "$_";
620 }
621
622 # Close the file handles.
623 close(TMPFILE);
624 close(DESTFILE);
625
626 # Remove the temporary file.
627 unlink("$tmpfile");
628 }
629 }
630 }
631 }
632
633 #
634 ## A wrapper function to call the oinkmaster script, setup the rules structues and
635 ## call the functions to merge the additional config files. (classification, sid-msg, etc.).
636 #
637 sub oinkmaster () {
638 # Check if the files in rulesdir have the correct permissions.
639 &_check_rulesdir_permissions();
640
641 # Cleanup the rules directory before filling it with the new rulests.
642 &_cleanup_rulesdir();
643
644 # Get all enabled providers.
645 my @enabled_providers = &get_enabled_providers();
646
647 # Loop through the array of enabled providers.
648 foreach my $provider (@enabled_providers) {
649 # Call the extractruleset function.
650 &extractruleset($provider);
651 }
652
653 # Establish the connection to the syslog service.
654 openlog('oinkmaster', 'cons,pid', 'user');
655
656 # Call oinkmaster to generate ruleset.
657 open(OINKMASTER, "/usr/local/bin/oinkmaster.pl -s -u dir://$tmp_rules_directory -C $settingsdir/oinkmaster.conf -o $rulespath 2>&1 |") or die "Could not execute oinkmaster $!\n";
658
659 # Log output of oinkmaster to syslog.
660 while(<OINKMASTER>) {
661 # The syslog function works best with an array based input,
662 # so generate one before passing the message details to syslog.
663 my @syslog = ("INFO", "$_");
664
665 # Send the log message.
666 syslog(@syslog);
667 }
668
669 # Close the pipe to oinkmaster process.
670 close(OINKMASTER);
671
672 # Close the log handle.
673 closelog();
674
675 # Call function to merge the classification files.
676 &merge_classifications(@enabled_providers);
677
678 # Call function to merge the sid to message mapping files.
679 &merge_sid_msg(@enabled_providers);
680
681 # Cleanup temporary directory.
682 &cleanup_tmp_directory();
683 }
684
685 #
686 ## Function to merge the classifications for a given amount of providers and write them
687 ## to the classifications file.
688 #
689 sub merge_classifications(@) {
690 my @providers = @_;
691
692 # Hash to store all collected classifications.
693 my %classifications = ();
694
695 # Loop through the given array of providers.
696 foreach my $provider (@providers) {
697 # Generate full path to classification file.
698 my $classification_file = "$tmp_conf_directory/$provider\-classification.config";
699
700 # Skip provider if no classification file exists.
701 next unless (-f "$classification_file");
702
703 # Open the classification file.
704 open(CLASSIFICATION, $classification_file) or die "Could not open file $classification_file. $!\n";
705
706 # Loop through the file content.
707 while(<CLASSIFICATION>) {
708 # Parse the file and grab the classification details.
709 if ($_ =~/.*config classification\: (.*)/) {
710 # Split the grabbed details.
711 my ($short_name, $short_desc, $priority) = split("\,", $1);
712
713 # Check if the grabbed classification is allready known and the priority value is greater
714 # than the stored one (which causes less priority in the IDS).
715 if (($classifications{$short_name}) && ($classifications{$short_name}[1] >= $priority)) {
716 #Change the priority value to the stricter one.
717 $classifications{$short_name} = [ "$classifications{$short_name}[0]", "$priority" ];
718 } else {
719 # Add the classification to the hash.
720 $classifications{$short_name} = [ "$short_desc", "$priority" ];
721 }
722 }
723 }
724
725 # Close the file.
726 close(CLASSIFICATION);
727 }
728
729 # Open classification file for writing.
730 open(FILE, ">", "$classification_file") or die "Could not write to $classification_file. $!\n";
731
732 # Print notice about autogenerated file.
733 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n\n";
734
735 # Sort and loop through the hash of classifications.
736 foreach my $key (sort keys %classifications) {
737 # Assign some nice variable names for the items.
738 my $short_name = $key;
739 my $short_desc = $classifications{$key}[0];
740 my $priority = $classifications{$key}[1];
741
742 # Write the classification to the file.
743 print FILE "config classification: $short_name,$short_desc,$priority\n";
744 }
745
746 # Close file handle.
747 close(FILE);
748 }
749
750 #
751 ## Function to merge the "sid to message mapping" files of various given providers.
752 #
753 sub merge_sid_msg (@) {
754 my @providers = @_;
755
756 # Hash which contains all the sid to message mappings.
757 my %mappings = ();
758
759 # Loop through the array of given providers.
760 foreach my $provider (@providers) {
761 # Generate full path and filename.
762 my $sid_msg_file = "$tmp_conf_directory/$provider\-sid-msg.map";
763
764 # Skip provider if no sid to msg mapping file for this provider exists.
765 next unless (-f $sid_msg_file);
766
767 # Open the file.
768 open(MAPPING, $sid_msg_file) or die "Could not open $sid_msg_file. $!\n";
769
770 # Loop through the file content.
771 while (<MAPPING>) {
772 # Remove newlines.
773 chomp($_);
774
775 # Skip lines which do not start with a number,
776 next unless ($_ =~ /^\d+/);
777
778 # Split line content and assign it to an array.
779 my @line = split(/ \|\| /, $_);
780
781 # Grab the first element (and remove it) from the line array.
782 # It contains the sid.
783 my $sid = shift(@line);
784
785 # Store the grabbed sid and the remain array as hash value.
786 # It still contains the messages, references etc.
787 $mappings{$sid} = [@line];
788 }
789
790 # Close file handle.
791 close(MAPPING);
792 }
793
794 # Open mappings file for writing.
795 open(FILE, ">", $sid_msg_file) or die "Could not write $sid_msg_file. $!\n";
796
797 # Write notice about autogenerated file.
798 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n\n";
799
800 # Loop through the hash of mappings.
801 foreach my $sid ( sort keys %mappings) {
802 # Grab data for the sid.
803 my @data = @{$mappings{$sid}};
804
805 # Add the sid to the data array.
806 unshift(@data, $sid);
807
808 # Generate line.
809 my $line = join(" \|\| ", @data);
810
811 print FILE "$line\n";
812
813 }
814
815 # Close file handle.
816 close(FILE);
817 }
818
819 #
820 ## A very tiny function to move an extracted ruleset from the temporary directory into
821 ## the rules directory.
822 #
823 sub move_tmp_ruleset() {
824 # Do a directory listing of the temporary directory.
825 opendir DH, $tmp_rules_directory;
826
827 # Loop over all files.
828 while(my $file = readdir DH) {
829 # Move them to the rules directory.
830 move "$tmp_rules_directory/$file" , "$rulespath/$file";
831 }
832
833 # Close directory handle.
834 closedir DH;
835 }
836
837 #
838 ## Function to cleanup the temporary IDS directroy.
839 #
840 sub cleanup_tmp_directory () {
841
842 # Delete temporary directory and all containing files.
843 rmtree([ "$tmp_directory" ]);
844 }
845
846 #
847 ## Function to do all the logging stuff if the downloading or updating of the ruleset fails.
848 #
849 sub log_error ($) {
850 my ($error) = @_;
851
852 # Remove any newline.
853 chomp($error);
854
855 # Call private function to log the error message to syslog.
856 &_log_to_syslog($error);
857
858 # Call private function to write/store the error message in the storederrorfile.
859 &_store_error_message($error);
860 }
861
862 #
863 ## Function to log a given error message to the kernel syslog.
864 #
865 sub _log_to_syslog ($) {
866 my ($message) = @_;
867
868 # The syslog function works best with an array based input,
869 # so generate one before passing the message details to syslog.
870 my @syslog = ("ERR", "<ERROR> $message");
871
872 # Establish the connection to the syslog service.
873 openlog('oinkmaster', 'cons,pid', 'user');
874
875 # Send the log message.
876 syslog(@syslog);
877
878 # Close the log handle.
879 closelog();
880 }
881
882 #
883 ## Private function to write a given error message to the storederror file.
884 #
885 sub _store_error_message ($) {
886 my ($message) = @_;
887
888 # Remove any newline.
889 chomp($message);
890
891 # Open file for writing.
892 open (ERRORFILE, ">$storederrorfile") or die "Could not write to $storederrorfile. $!\n";
893
894 # Write error to file.
895 print ERRORFILE "$message\n";
896
897 # Close file.
898 close (ERRORFILE);
899
900 # Set correct ownership for the file.
901 &set_ownership("$storederrorfile");
902 }
903
904 #
905 ## Private function to get the path and filename for a downloaded ruleset by a given provider.
906 #
907 sub _get_dl_rulesfile($) {
908 my ($provider) = @_;
909
910 # Gather the download type for the given provider.
911 my $dl_type = $IDS::Ruleset::Providers{$provider}{'dl_type'};
912
913 # Obtain the file suffix for the download file type.
914 my $suffix = $dl_type_to_suffix{$dl_type};
915
916 # Check if a suffix has been found.
917 unless ($suffix) {
918 # Abort return - nothing.
919 return;
920 }
921
922 # Generate the full filename and path for the stored rules file.
923 my $rulesfile = "$dl_rules_path/$dl_rulesfile_prefix-$provider$suffix";
924
925 # Return the generated filename.
926 return $rulesfile;
927 }
928
929 #
930 ## Tiny function to delete the stored ruleset file or tarball for a given provider.
931 #
932 sub drop_dl_rulesfile ($) {
933 my ($provider) = @_;
934
935 # Gather the full path and name of the stored rulesfile.
936 my $rulesfile = &_get_dl_rulesfile($provider);
937
938 # Check if the given rulesfile exists.
939 if (-f $rulesfile) {
940 # Delete the stored rulesfile.
941 unlink($rulesfile) or die "Could not delete $rulesfile. $!\n";
942 }
943 }
944
945 #
946 ## Tiny function to get/generate the full path and filename for the providers oinkmaster
947 ## modified sids file.
948 #
949 sub get_oinkmaster_provider_modified_sids_file ($) {
950 my ($provider) = @_;
951
952 # Generate the filename.
953 my $filename = "$settingsdir/oinkmaster-$provider-modified-sids.conf";
954
955 # Return the filename.
956 return $filename;
957 }
958
959 #
960 ## Function to directly altering the oinkmaster provider includes file.
961 ##
962 ## Requires tha acition "remove" or "add" and a provider handle.
963 #
964 sub alter_oinkmaster_provider_includes_file ($$) {
965 my ($action, $provider) = @_;
966
967 # Call function to get the path and name for the given providers
968 # oinkmaster modified sids file.
969 my $provider_modified_sids_file = &get_oinkmaster_provider_modified_sids_file($provider);
970
971 # Open the file for reading..
972 open (FILE, $oinkmaster_provider_includes_file) or die "Could not read $oinkmaster_provider_includes_file. $!\n";
973
974 # Read-in file content.
975 my @lines = <FILE>;
976
977 # Close file after reading.
978 close(FILE);
979
980 # Re-open the file for writing.
981 open(FILE, ">", $oinkmaster_provider_includes_file) or die "Could not write to $oinkmaster_provider_includes_file. $!\n";
982
983 # Loop through the file content.
984 foreach my $line (@lines) {
985 # Remove newlines.
986 chomp($line);
987
988 # Skip line if we found our given provider and the action should be remove.
989 next if (($line =~ /$provider/) && ($action eq "remove"));
990
991 # Write the read-in line back to the file.
992 print FILE "$line\n";
993 }
994
995 # Check if the file exists and add the provider if requested.
996 if ((-f $provider_modified_sids_file) && ($action eq "add")) {
997 print FILE "include $provider_modified_sids_file\n";
998 }
999
1000 # Close file handle.
1001 close(FILE);
1002 }
1003
1004 #
1005 ## Function to read-in the given enabled or disables sids file.
1006 #
1007 sub read_enabled_disabled_sids_file($) {
1008 my ($file) = @_;
1009
1010 # Temporary hash to store the sids and their state. It will be
1011 # returned at the end of this function.
1012 my %temphash;
1013
1014 # Open the given filename.
1015 open(FILE, "$file") or die "Could not open $file. $!\n";
1016
1017 # Loop through the file.
1018 while(<FILE>) {
1019 # Remove newlines.
1020 chomp $_;
1021
1022 # Skip blank lines.
1023 next if ($_ =~ /^\s*$/);
1024
1025 # Skip coments.
1026 next if ($_ =~ /^\#/);
1027
1028 # Splitt line into sid and state part.
1029 my ($state, $sid) = split(" ", $_);
1030
1031 # Skip line if the sid is not numeric.
1032 next unless ($sid =~ /\d+/ );
1033
1034 # Check if the sid was enabled.
1035 if ($state eq "enablesid") {
1036 # Add the sid and its state as enabled to the temporary hash.
1037 $temphash{$sid} = "enabled";
1038 # Check if the sid was disabled.
1039 } elsif ($state eq "disablesid") {
1040 # Add the sid and its state as disabled to the temporary hash.
1041 $temphash{$sid} = "disabled";
1042 # Invalid state - skip the current sid and state.
1043 } else {
1044 next;
1045 }
1046 }
1047
1048 # Close filehandle.
1049 close(FILE);
1050
1051 # Return the hash.
1052 return %temphash;
1053 }
1054
1055 #
1056 ## Function to check if the IDS is running.
1057 #
1058 sub ids_is_running () {
1059 if(-f $idspidfile) {
1060 # Open PID file for reading.
1061 open(PIDFILE, "$idspidfile") or die "Could not open $idspidfile. $!\n";
1062
1063 # Grab the process-id.
1064 my $pid = <PIDFILE>;
1065
1066 # Close filehandle.
1067 close(PIDFILE);
1068
1069 # Remove any newline.
1070 chomp($pid);
1071
1072 # Check if a directory for the process-id exists in proc.
1073 if(-d "/proc/$pid") {
1074 # The IDS daemon is running return the process id.
1075 return $pid;
1076 }
1077 }
1078
1079 # Return nothing - IDS is not running.
1080 return;
1081 }
1082
1083 #
1084 ## Function to call suricatactrl binary with a given command.
1085 #
1086 sub call_suricatactrl ($) {
1087 # Get called option.
1088 my ($option, $interval) = @_;
1089
1090 # Loop through the array of supported commands and check if
1091 # the given one is part of it.
1092 foreach my $cmd (@suricatactrl_cmds) {
1093 # Skip current command unless the given one has been found.
1094 next unless($cmd eq $option);
1095
1096 # Check if the given command is "cron".
1097 if ($option eq "cron") {
1098 # Check if an interval has been given.
1099 if ($interval) {
1100 # Check if the given interval is valid.
1101 foreach my $element (@cron_intervals) {
1102 # Skip current element until the given one has been found.
1103 next unless($element eq $interval);
1104
1105 # Call the suricatactrl binary and pass the "cron" command
1106 # with the requrested interval.
1107 &General::system("$suricatactrl", "$option", "$interval");
1108
1109 # Return "1" - True.
1110 return 1;
1111 }
1112 }
1113
1114 # If we got here, the given interval is not supported or none has been given. - Return nothing.
1115 return;
1116 } else {
1117 # Call the suricatactrl binary and pass the requrested
1118 # option to it.
1119 &General::system("$suricatactrl", "$option");
1120
1121 # Return "1" - True.
1122 return 1;
1123 }
1124 }
1125
1126 # Command not found - return nothing.
1127 return;
1128 }
1129
1130 #
1131 ## Function to create a new empty file.
1132 #
1133 sub create_empty_file($) {
1134 my ($file) = @_;
1135
1136 # Check if the given file exists.
1137 if(-e $file) {
1138 # Do nothing to prevent from overwriting existing files.
1139 return;
1140 }
1141
1142 # Open the file for writing.
1143 open(FILE, ">$file") or die "Could not write to $file. $!\n";
1144
1145 # Close file handle.
1146 close(FILE);
1147
1148 # Return true.
1149 return 1;
1150 }
1151
1152 #
1153 ## Private function to check if the file permission of the rulespath are correct.
1154 ## If not, call suricatactrl to fix them.
1155 #
1156 sub _check_rulesdir_permissions() {
1157 # Check if the rulepath main directory is writable.
1158 unless (-W $rulespath) {
1159 # If not call suricatctrl to fix it.
1160 &call_suricatactrl("fix-rules-dir");
1161 }
1162
1163 # Open snort rules directory and do a directory listing.
1164 opendir(DIR, $rulespath) or die $!;
1165 # Loop through the direcory.
1166 while (my $file = readdir(DIR)) {
1167 # We only want files.
1168 next unless (-f "$rulespath/$file");
1169
1170 # Check if the file is writable by the user.
1171 if (-W "$rulespath/$file") {
1172 # Everything is okay - go on to the next file.
1173 next;
1174 } else {
1175 # There are wrong permissions, call suricatactrl to fix it.
1176 &call_suricatactrl("fix-rules-dir");
1177 }
1178 }
1179 }
1180
1181 #
1182 ## Private function to cleanup the directory which contains
1183 ## the IDS rules, before extracting and modifing the new ruleset.
1184 #
1185 sub _cleanup_rulesdir() {
1186 # Open rules directory and do a directory listing.
1187 opendir(DIR, $rulespath) or die $!;
1188
1189 # Loop through the direcory.
1190 while (my $file = readdir(DIR)) {
1191 # We only want files.
1192 next unless (-f "$rulespath/$file");
1193
1194 # Skip rules file for whitelisted hosts.
1195 next if ("$rulespath/$file" eq $whitelist_file);
1196
1197 # Skip rules file with local rules.
1198 next if ("$rulespath/$file" eq $local_rules_file);
1199
1200 # Delete the current processed file, if not, exit this function
1201 # and return an error message.
1202 unlink("$rulespath/$file") or return "Could not delete $rulespath/$file. $!\n";
1203 }
1204
1205 # Return nothing;
1206 return;
1207 }
1208
1209 #
1210 ## Function to generate the file which contains the home net information.
1211 #
1212 sub generate_home_net_file() {
1213 my %netsettings;
1214
1215 # Read-in network settings.
1216 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
1217
1218 # Get available network zones.
1219 my @network_zones = &Network::get_available_network_zones();
1220
1221 # Temporary array to store network address and prefix of the configured
1222 # networks.
1223 my @networks;
1224
1225 # Loop through the array of available network zones.
1226 foreach my $zone (@network_zones) {
1227 # Check if the current processed zone is red.
1228 if($zone eq "red") {
1229 # Grab the IP-address of the red interface.
1230 my $red_address = &get_red_address();
1231
1232 # Check if an address has been obtained.
1233 if ($red_address) {
1234 # Generate full network string.
1235 my $red_network = join("/", $red_address, "32");
1236
1237 # Add the red network to the array of networks.
1238 push(@networks, $red_network);
1239 }
1240
1241 # Check if the configured RED_TYPE is static.
1242 if ($netsettings{'RED_TYPE'} eq "STATIC") {
1243 # Get configured and enabled aliases.
1244 my @aliases = &get_aliases();
1245
1246 # Loop through the array.
1247 foreach my $alias (@aliases) {
1248 # Add "/32" prefix.
1249 my $network = join("/", $alias, "32");
1250
1251 # Add the generated network to the array of networks.
1252 push(@networks, $network);
1253 }
1254 }
1255 # Process remaining network zones.
1256 } else {
1257 # Convert current zone name into upper case.
1258 $zone = uc($zone);
1259
1260 # Generate key to access the required data from the netsettings hash.
1261 my $zone_netaddress = $zone . "_NETADDRESS";
1262 my $zone_netmask = $zone . "_NETMASK";
1263
1264 # Obtain the settings from the netsettings hash.
1265 my $netaddress = $netsettings{$zone_netaddress};
1266 my $netmask = $netsettings{$zone_netmask};
1267
1268 # Convert the subnetmask into prefix notation.
1269 my $prefix = &Network::convert_netmask2prefix($netmask);
1270
1271 # Generate full network string.
1272 my $network = join("/", $netaddress,$prefix);
1273
1274 # Check if the network is valid.
1275 if(&Network::check_subnet($network)) {
1276 # Add the generated network to the array of networks.
1277 push(@networks, $network);
1278 }
1279 }
1280 }
1281
1282 # Format home net declaration.
1283 my $line = "\"[" . join(',', @networks) . "]\"";
1284
1285 # Open file to store the addresses of the home net.
1286 open(FILE, ">$homenet_file") or die "Could not open $homenet_file. $!\n";
1287
1288 # Print yaml header.
1289 print FILE "%YAML 1.1\n";
1290 print FILE "---\n\n";
1291
1292 # Print notice about autogenerated file.
1293 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
1294
1295 # Print the generated and required HOME_NET declaration to the file.
1296 print FILE "HOME_NET:\t$line\n";
1297
1298 # Close file handle.
1299 close(FILE);
1300 }
1301
1302 #
1303 # Function to generate and write the file which contains the configured and used DNS servers.
1304 #
1305 sub generate_dns_servers_file() {
1306 # Get the used DNS servers.
1307 my @nameservers = &General::get_nameservers();
1308
1309 # Get network settings.
1310 my %netsettings;
1311 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
1312
1313 # Format dns servers declaration.
1314 my $line = "";
1315
1316 # Check if the system has configured nameservers.
1317 if (@nameservers) {
1318 # Add the GREEN address as DNS servers.
1319 push(@nameservers, $netsettings{'GREEN_ADDRESS'});
1320
1321 # Check if a BLUE zone exists.
1322 if ($netsettings{'BLUE_ADDRESS'}) {
1323 # Add the BLUE address to the array of nameservers.
1324 push(@nameservers, $netsettings{'BLUE_ADDRESS'});
1325 }
1326
1327 # Generate the line which will be written to the DNS servers file.
1328 $line = join(",", @nameservers);
1329 } else {
1330 # External net simply contains (any).
1331 $line = "\$EXTERNAL_NET";
1332 }
1333
1334 # Open file to store the used DNS server addresses.
1335 open(FILE, ">$dns_servers_file") or die "Could not open $dns_servers_file. $!\n";
1336
1337 # Print yaml header.
1338 print FILE "%YAML 1.1\n";
1339 print FILE "---\n\n";
1340
1341 # Print notice about autogenerated file.
1342 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
1343
1344 # Print the generated DNS declaration to the file.
1345 print FILE "DNS_SERVERS:\t\"[$line]\"\n";
1346
1347 # Close file handle.
1348 close(FILE);
1349 }
1350
1351 #
1352 # Function to generate and write the file which contains the HTTP_PORTS definition.
1353 #
1354 sub generate_http_ports_file() {
1355 my %proxysettings;
1356
1357 # Read-in proxy settings
1358 &General::readhash("${General::swroot}/proxy/advanced/settings", \%proxysettings);
1359
1360 # Check if the proxy is enabled.
1361 if (( -e "${General::swroot}/proxy/enable") || (-e "${General::swroot}/proxy/enable_blue")) {
1362 # Add the proxy port to the array of HTTP ports.
1363 push(@http_ports, $proxysettings{'PROXY_PORT'});
1364 }
1365
1366 # Check if the transparent mode of the proxy is enabled.
1367 if ((-e "${General::swroot}/proxy/transparent") || (-e "${General::swroot}/proxy/transparent_blue")) {
1368 # Add the transparent proxy port to the array of HTTP ports.
1369 push(@http_ports, $proxysettings{'TRANSPARENT_PORT'});
1370 }
1371
1372 # Format HTTP_PORTS declaration.
1373 my $line = "";
1374
1375 # Generate line which will be written to the http ports file.
1376 $line = join(",", @http_ports);
1377
1378 # Open file to store the HTTP_PORTS.
1379 open(FILE, ">$http_ports_file") or die "Could not open $http_ports_file. $!\n";
1380
1381 # Print yaml header.
1382 print FILE "%YAML 1.1\n";
1383 print FILE "---\n\n";
1384
1385 # Print notice about autogenerated file.
1386 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
1387
1388 # Print the generated HTTP_PORTS declaration to the file.
1389 print FILE "HTTP_PORTS:\t\"[$line]\"\n";
1390
1391 # Close file handle.
1392 close(FILE);
1393 }
1394
1395 #
1396 ## Function to generate and write the file for used rulefiles file for a given provider.
1397 ##
1398 ## The function requires as first argument a provider handle, and as second an array with files.
1399 #
1400 sub write_used_provider_rulefiles_file($@) {
1401 my ($provider, @files) = @_;
1402
1403 # Get the path and file for the provider specific used rulefiles file.
1404 my $used_provider_rulesfile_file = &get_used_provider_rulesfile_file($provider);
1405
1406 # Open file for used rulefiles.
1407 open (FILE, ">", "$used_provider_rulesfile_file") or die "Could not write to $used_provider_rulesfile_file. $!\n";
1408
1409 # Write yaml header to the file.
1410 print FILE "%YAML 1.1\n";
1411 print FILE "---\n\n";
1412
1413 # Write header to file.
1414 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
1415
1416 # Loop through the array of given files.
1417 foreach my $file (@files) {
1418 # Check if the given filename exists and write it to the file of used rulefiles.
1419 if(-f "$rulespath/$file") {
1420 print FILE " - $file\n";
1421 }
1422 }
1423
1424 # Close file after writing.
1425 close(FILE);
1426 }
1427
1428 #
1429 ## Function to write the main file for provider rulesfiles inclusions.
1430 ##
1431 ## This function requires an array of provider handles.
1432 #
1433 sub write_main_used_rulefiles_file (@) {
1434 my (@providers) = @_;
1435
1436 # Call function to write the static rulefiles file.
1437 &_write_default_rulefiles_file();
1438
1439 # Open file for used rulefils inclusion.
1440 open (FILE, ">", "$suricata_used_providers_file") or die "Could not write to $suricata_used_providers_file. $!\n";
1441
1442 # Write yaml header to the file.
1443 print FILE "%YAML 1.1\n";
1444 print FILE "---\n\n";
1445
1446 # Write header to file.
1447 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
1448
1449 # Loop through the list of given providers.
1450 foreach my $provider (@providers) {
1451 # Call function to get the providers used rulefiles file.
1452 my $filename = &get_used_provider_rulesfile_file($provider);
1453
1454 # Check if the file exists and write it into the used rulefiles file.
1455 if (-f $filename) {
1456 # Print the provider to the file.
1457 print FILE "include\: $filename\n";
1458 }
1459 }
1460
1461 # Close the filehandle after writing.
1462 close(FILE);
1463 }
1464
1465 sub _write_default_rulefiles_file () {
1466 # Get enabled application layer protocols.
1467 my @enabled_app_layer_protos = &get_suricata_enabled_app_layer_protos();
1468
1469 # Open file.
1470 open (FILE, ">", $suricata_default_rulefiles_file) or die "Could not write to $suricata_default_rulefiles_file. $!\n";
1471
1472 # Write yaml header to the file.
1473 print FILE "%YAML 1.1\n";
1474 print FILE "---\n\n";
1475
1476 # Write notice about autogenerated file.
1477 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
1478
1479 # Loop through the array of static included rulesfiles.
1480 foreach my $file (@static_included_rulefiles) {
1481 # Check if the file exists.
1482 if (-f "$rulespath/$file") {
1483 # Write the rulesfile name to the file.
1484 print FILE " - $rulespath/$file\n";
1485 }
1486 }
1487
1488 print FILE "\n#Default rules for used application layer protocols.\n";
1489 foreach my $enabled_app_layer_proto (@enabled_app_layer_protos) {
1490 # Check if the current processed app layer proto needs to be translated
1491 # into an application name.
1492 if (exists($tr_app_layer_proto{$enabled_app_layer_proto})) {
1493 # Obtain the translated application name for this protocol.
1494 $enabled_app_layer_proto = $tr_app_layer_proto{$enabled_app_layer_proto};
1495 }
1496
1497 # Generate filename.
1498 my $rulesfile = "$default_rulespath/$enabled_app_layer_proto\.rules";
1499
1500 # Check if such a file exists.
1501 if (-f "$rulesfile") {
1502 # Write the rulesfile name to the file.
1503 print FILE " - $rulesfile\n";
1504 }
1505
1506 # Generate filename with "events" in filename.
1507 $rulesfile = "$default_rulespath/$enabled_app_layer_proto\-events.rules";
1508
1509 # Check if this file exists.
1510 if (-f "$rulesfile" ) {
1511 # Write the rulesfile name to the file.
1512 print FILE " - $rulesfile\n";
1513 }
1514 }
1515
1516 # Close the file handle
1517 close(FILE);
1518 }
1519
1520 #
1521 ## Tiny function to generate the full path and name for the used_provider_rulesfile file of a given provider.
1522 #
1523 sub get_used_provider_rulesfile_file ($) {
1524 my ($provider) = @_;
1525
1526 my $filename = "$settingsdir/suricata\-$provider\-used\-rulefiles.yaml";
1527
1528 # Return the gernerated file.
1529 return $filename;
1530 }
1531
1532 #
1533 ## Function to generate and write the file for modify the ruleset.
1534 #
1535 sub write_modify_sids_file() {
1536 # Get configured settings.
1537 my %idssettings=();
1538 &General::readhash("$ids_settings_file", \%idssettings);
1539
1540 # Open modify sid's file for writing.
1541 open(FILE, ">$modify_sids_file") or die "Could not write to $modify_sids_file. $!\n";
1542
1543 # Write file header.
1544 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
1545
1546 # Check if the traffic only should be monitored.
1547 unless($idssettings{'MONITOR_TRAFFIC_ONLY'} eq 'on') {
1548 # Suricata is in IPS mode, which means that the rule actions have to be changed
1549 # from 'alert' to 'drop', however not all rules should be changed. Some rules
1550 # exist purely to set a flowbit which is used to convey other information, such
1551 # as a specific type of file being downloaded, to other rulewhich then check for
1552 # malware in that file. Rules which fall into the first category should stay as
1553 # alert since not all flows of that type contain malware.
1554
1555 # These types of rulesfiles contain meta-data which gives the action that should
1556 # be used when in IPS mode. Do the following:
1557 #
1558 # 1. Disable all rules and set the action to 'drop'
1559 # 2. Set the action back to 'alert' if the rule contains 'flowbits:noalert;'
1560 # This should give rules not in the policy a reasonable default if the user
1561 # manually enables them.
1562 # 3. Enable rules and set actions according to the meta-data strings.
1563
1564 my $policy = 'balanced'; # Placeholder to allow policy to be changed.
1565
1566 print FILE <<END;
1567 modifysid * "^#(?:alert|drop)(.+policy $policy-ips alert)" | "alert\${1}"
1568 modifysid * "^#(?:alert|drop)(.+policy $policy-ips drop)" | "drop\${1}"
1569 modifysid * "^(#?)(?:alert|drop)" | "\${1}drop"
1570 modifysid * "^(#?)drop(.+flowbits:noalert;)" | "\${1}alert\${2}"
1571 END
1572 }
1573
1574 # Close file handle.
1575 close(FILE);
1576 }
1577
1578 #
1579 ## Function to get the subscription code of a configured provider.
1580 #
1581 sub get_subscription_code($) {
1582 my ($provider) = @_;
1583
1584 my %configured_providers = ();
1585
1586 # Read-in providers settings file.
1587 &General::readhasharray($providers_settings_file, \%configured_providers);
1588
1589 # Loop through the hash of configured providers.
1590 foreach my $id (keys %configured_providers) {
1591 # Assign nice human-readable values to the data fields.
1592 my $provider_handle = $configured_providers{$id}[0];
1593 my $subscription_code = $configured_providers{$id}[1];
1594
1595 # Check if the current processed provider is the requested one.
1596 if ($provider_handle eq $provider) {
1597 # Return the obtained subscription code.
1598 return $subscription_code;
1599 }
1600 }
1601
1602 # No subscription code found - return nothing.
1603 return;
1604 }
1605
1606 #
1607 ## Function to get the ruleset date for a given provider.
1608 ##
1609 ## The function simply return the creation date in a human read-able format
1610 ## of the stored providers rulesfile.
1611 #
1612 sub get_ruleset_date($) {
1613 my ($provider) = @_;
1614 my $date;
1615 my $mtime;
1616
1617 # Get the stored rulesfile for this provider.
1618 my $stored_rulesfile = &_get_dl_rulesfile($provider);
1619
1620 # Check if we got a file.
1621 if (-f $stored_rulesfile) {
1622 # Call stat on the rulestarball.
1623 my $stat = stat("$stored_rulesfile");
1624
1625 # Get timestamp the file creation.
1626 $mtime = $stat->mtime;
1627 }
1628
1629 # Check if the timestamp has not been grabbed.
1630 unless ($mtime) {
1631 # Return N/A for Not available.
1632 return "N/A";
1633 }
1634
1635 # Convert into human read-able format.
1636 $date = strftime('%Y-%m-%d %H:%M:%S', localtime($mtime));
1637
1638 # Return the date.
1639 return $date;
1640 }
1641
1642 #
1643 ## Function to gather the version of suricata.
1644 #
1645 sub get_suricata_version($) {
1646 my ($format) = @_;
1647
1648 # Execute piped suricata command and return the version information.
1649 open(SURICATA, "suricata -V |") or die "Couldn't execute program: $!";
1650
1651 # Grab and store the output of the piped program.
1652 my $version_string = <SURICATA>;
1653
1654 # Close pipe.
1655 close(SURICATA);
1656
1657 # Remove newlines.
1658 chomp($version_string);
1659
1660 # Grab the version from the version string.
1661 $version_string =~ /([0-9]+([.][0-9]+)+)/;
1662
1663 # Splitt the version into single chunks.
1664 my ($major_ver, $minor_ver, $patchlevel) = split(/\./, $1);
1665
1666 # Check and return the requested version sheme.
1667 if ($format eq "major") {
1668 # Return the full version.
1669 return "$major_ver";
1670 } elsif ($format eq "minor") {
1671 # Return the major and minor part.
1672 return "$major_ver.$minor_ver";
1673 } else {
1674 # Return the full version string.
1675 return "$major_ver.$minor_ver.$patchlevel";
1676 }
1677 }
1678
1679 #
1680 ## Function to get the enabled application layer protocols.
1681 #
1682 sub get_suricata_enabled_app_layer_protos() {
1683 # Array to store and return the enabled app layer protos.
1684 my @enabled_app_layer_protos = ();
1685
1686 # Execute piped suricata command and return the list of
1687 # enabled application layer protocols.
1688 open(SURICATA, "suricata --list-app-layer-protos |") or die "Could not execute program: $!";
1689
1690 # Grab and store the list of enabled application layer protocols.
1691 my @output = <SURICATA>;
1692
1693 # Close pipe.
1694 close(SURICATA);
1695
1696 # Merge allways enabled static application layers protocols array.
1697 @enabled_app_layer_protos = @static_enabled_app_layer_protos;
1698
1699 # Loop through the array which contains the output of suricata.
1700 foreach my $line (@output) {
1701 # Skip header line which starts with "===".
1702 next if ($line =~ /^\s*=/);
1703
1704 # Skip info or warning lines.
1705 next if ($line =~ /\s*--/);
1706
1707 # Remove newlines.
1708 chomp($line);
1709
1710 # Add enabled app layer proto to the array.
1711 push(@enabled_app_layer_protos, $line);
1712 }
1713
1714 # Sort the array.
1715 @enabled_app_layer_protos = sort(@enabled_app_layer_protos);
1716
1717 # Return the array.
1718 return @enabled_app_layer_protos;
1719 }
1720
1721 #
1722 ## Function to generate the rules file with whitelisted addresses.
1723 #
1724 sub generate_ignore_file() {
1725 my %ignored = ();
1726
1727 # SID range 1000000-1999999 Reserved for Local Use
1728 # Put your custom rules in this range to avoid conflicts
1729 my $sid = 1500000;
1730
1731 # Read-in ignoredfile.
1732 &General::readhasharray($IDS::ignored_file, \%ignored);
1733
1734 # Open ignorefile for writing.
1735 open(FILE, ">$IDS::whitelist_file") or die "Could not write to $IDS::whitelist_file. $!\n";
1736
1737 # Config file header.
1738 print FILE "# Autogenerated file.\n";
1739 print FILE "# All user modifications will be overwritten.\n\n";
1740
1741 # Add all user defined addresses to the whitelist.
1742 #
1743 # Check if the hash contains any elements.
1744 if (keys (%ignored)) {
1745 # Loop through the entire hash and write the host/network
1746 # and remark to the ignore file.
1747 while ( (my $key) = each %ignored) {
1748 my $address = $ignored{$key}[0];
1749 my $remark = $ignored{$key}[1];
1750 my $status = $ignored{$key}[2];
1751
1752 # Check if the status of the entry is "enabled".
1753 if ($status eq "enabled") {
1754 # Check if the address/network is valid.
1755 if ((&General::validip($address)) || (&General::validipandmask($address))) {
1756 # Write rule line to the file to pass any traffic from this IP
1757 print FILE "pass ip $address any -> any any (msg:\"pass all traffic from/to $address\"\; bypass; sid:$sid\;)\n";
1758
1759 # Increment sid.
1760 $sid++;
1761 }
1762 }
1763 }
1764 }
1765
1766 close(FILE);
1767 }
1768
1769 #
1770 ## Function to set correct ownership for single files and directories.
1771 #
1772
1773 sub set_ownership($) {
1774 my ($target) = @_;
1775
1776 # User and group of the WUI.
1777 my $uname = "nobody";
1778 my $grname = "nobody";
1779
1780 # The chown function implemented in perl requies the user and group as nummeric id's.
1781 my $uid = getpwnam($uname);
1782 my $gid = getgrnam($grname);
1783
1784 # Check if the given target exists.
1785 unless ($target) {
1786 # Stop the script and print error message.
1787 die "The $target does not exist. Cannot change the ownership!\n";
1788 }
1789
1790 # Check weather the target is a file or directory.
1791 if (-f $target) {
1792 # Change ownership ot the single file.
1793 chown($uid, $gid, "$target");
1794 } elsif (-d $target) {
1795 # Do a directory listing.
1796 opendir(DIR, $target) or die $!;
1797 # Loop through the direcory.
1798 while (my $file = readdir(DIR)) {
1799
1800 # We only want files.
1801 next unless (-f "$target/$file");
1802
1803 # Set correct ownership for the files.
1804 chown($uid, $gid, "$target/$file");
1805 }
1806
1807 closedir(DIR);
1808
1809 # Change ownership of the directory.
1810 chown($uid, $gid, "$target");
1811 }
1812 }
1813
1814 #
1815 ## Function to read-in the aliases file and returns all configured and enabled aliases.
1816 #
1817 sub get_aliases() {
1818 # Location of the aliases file.
1819 my $aliases_file = "${General::swroot}/ethernet/aliases";
1820
1821 # Array to store the aliases.
1822 my @aliases;
1823
1824 # Check if the file is empty.
1825 if (-z $aliases_file) {
1826 # Abort nothing to do.
1827 return;
1828 }
1829
1830 # Open the aliases file.
1831 open(ALIASES, $aliases_file) or die "Could not open $aliases_file. $!\n";
1832
1833 # Loop through the file content.
1834 while (my $line = <ALIASES>) {
1835 # Remove newlines.
1836 chomp($line);
1837
1838 # Splitt line content into single chunks.
1839 my ($address, $state, $remark) = split(/\,/, $line);
1840
1841 # Check if the state of the current processed alias is "on".
1842 if ($state eq "on") {
1843 # Check if the address is valid.
1844 if(&Network::check_ip_address($address)) {
1845 # Add the alias to the array of aliases.
1846 push(@aliases, $address);
1847 }
1848 }
1849 }
1850
1851 # Close file handle.
1852 close(ALIASES);
1853
1854 # Return the array.
1855 return @aliases;
1856 }
1857
1858 #
1859 ## Function to grab the current assigned IP-address on red.
1860 #
1861 sub get_red_address() {
1862 # File, which contains the current IP-address of the red interface.
1863 my $file = "${General::swroot}/red/local-ipaddress";
1864
1865 # Check if the file exists.
1866 if (-e $file) {
1867 # Open the given file.
1868 open(FILE, "$file") or die "Could not open $file.";
1869
1870 # Obtain the address from the first line of the file.
1871 my $address = <FILE>;
1872
1873 # Close filehandle
1874 close(FILE);
1875
1876 # Remove newlines.
1877 chomp $address;
1878
1879 # Check if the grabbed address is valid.
1880 if (&General::validip($address)) {
1881 # Return the address.
1882 return $address;
1883 }
1884 }
1885
1886 # Return nothing.
1887 return;
1888 }
1889
1890 #
1891 ## Function to get the used rules files of a given provider.
1892 #
1893 sub read_used_provider_rulesfiles($) {
1894 my ($provider) = @_;
1895
1896 # Array to store the used rulefiles.
1897 my @used_rulesfiles = ();
1898
1899 # Get the used rulesefile file for the provider.
1900 my $rulesfile_file = &get_used_provider_rulesfile_file($provider);
1901
1902 # Check if the a used rulesfile exists for this provider.
1903 if (-f $rulesfile_file) {
1904 # Open the file or used rulefiles and read-in content.
1905 open(FILE, $rulesfile_file) or die "Could not open $rulesfile_file. $!\n";
1906
1907 while (<FILE>) {
1908 # Assign the current line to a nice variable.
1909 my $line = $_;
1910
1911 # Remove newlines.
1912 chomp($line);
1913
1914 # Skip comments.
1915 next if ($line =~ /\#/);
1916
1917 # Skip blank lines.
1918 next if ($line =~ /^\s*$/);
1919
1920 # Gather the rulefile.
1921 if ($line =~ /.*- (.*)/) {
1922 my $rulefile = $1;
1923
1924 # Add the rulefile to the array of used rulesfiles.
1925 push(@used_rulesfiles, $rulefile);
1926 }
1927 }
1928
1929 # Close the file.
1930 close(FILE);
1931 }
1932
1933 # Return the array of used rulesfiles.
1934 return @used_rulesfiles;
1935 }
1936
1937 #
1938 ## Function to write the lock file for locking the WUI, while
1939 ## the autoupdate script runs.
1940 #
1941 sub lock_ids_page() {
1942 # Call subfunction to create the file.
1943 &create_empty_file($ids_page_lock_file);
1944 }
1945
1946 #
1947 ## Function to release the lock of the WUI, again.
1948 #
1949 sub unlock_ids_page() {
1950 # Delete lock file.
1951 unlink($ids_page_lock_file);
1952 }
1953
1954 1;