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