]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/ids.cgi
ids-functions.pl: Display error if oinkmaster cannot be executed
[ipfire-2.x.git] / html / cgi-bin / ids.cgi
CommitLineData
ac1cfefa 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
9d18656b 5# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
70df8302
MT
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
ac1cfefa
MT
22use strict;
23
24# enable only the following on debugging purpose
90c2e164
CS
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
ac1cfefa 27
986e08d9 28require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
8dcebe53 31require "${General::swroot}/ids-functions.pl";
ac1cfefa 32
f2fdd0c1
CS
33my %color = ();
34my %mainsettings = ();
9d18656b 35my %idsrules = ();
1286e0d4 36my %idssettings=();
43263ea6 37my %rulesetsources = ();
298723b9 38my %cgiparams=();
ac1cfefa 39my %checked=();
5a3e0dca 40my %selected=();
0b89daee
SS
41
42# Read-in main settings, for language, theme and colors.
43&General::readhash("${General::swroot}/main/settings", \%mainsettings);
44&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
45
1286e0d4
SS
46# Get the available network zones, based on the config type of the system and store
47# the list of zones in an array.
48my @network_zones = &IDS::get_available_network_zones();
ac1cfefa 49
8d2f6b0b 50# File where the used rulefiles are stored.
101c8881 51my $idsusedrulefilesfile = "$IDS::settingsdir/suricata-used-rulefiles.yaml";
8d2f6b0b
SS
52
53# File where the addresses of the homenet are stored.
54my $idshomenetfile = "$IDS::settingsdir/suricata-homenet.yaml";
55
43263ea6
SS
56my $errormessage;
57
ac1cfefa
MT
58&Header::showhttpheaders();
59
298723b9
SS
60#Get GUI values
61&Header::getcgihash(\%cgiparams);
ac1cfefa 62
3983aebd
SS
63# Check if any error has been stored.
64if (-e $IDS::storederrorfile) {
65 # Open file to read in the stored error message.
66 open(FILE, "<$IDS::storederrorfile") or die "Could not open $IDS::storederrorfile. $!\n";
67
68 # Read the stored error message.
69 $errormessage = <FILE>;
70
71 # Close file.
72 close (FILE);
73
74 # Delete the file, which is now not longer required.
75 unlink($IDS::storederrorfile);
76}
77
78
9d18656b 79## Grab all available snort rules and store them in the idsrules hash.
3da6e01b 80#
422204ff 81# Open snort rules directory and do a directory listing.
298ef5ba 82opendir(DIR, $IDS::rulespath) or die $!;
422204ff
SS
83 # Loop through the direcory.
84 while (my $file = readdir(DIR)) {
85
86 # We only want files.
298ef5ba 87 next unless (-f "$IDS::rulespath/$file");
422204ff
SS
88
89 # Ignore empty files.
298ef5ba 90 next if (-z "$IDS::rulespath/$file");
422204ff 91
3da6e01b 92 # Use a regular expression to find files ending in .rules
422204ff
SS
93 next unless ($file =~ m/\.rules$/);
94
3da6e01b 95 # Ignore files which are not read-able.
298ef5ba 96 next unless (-R "$IDS::rulespath/$file");
395e3b90 97
3da6e01b 98 # Call subfunction to read-in rulefile and add rules to
9d18656b 99 # the idsrules hash.
3da6e01b 100 &readrulesfile("$file");
395e3b90 101 }
395e3b90 102
3da6e01b 103closedir(DIR);
395e3b90 104
e5738079
SS
105# Gather used rulefiles.
106#
107# Check if the file for activated rulefiles is not empty.
02844177 108if(-f $idsusedrulefilesfile) {
e5738079 109 # Open the file for used rulefile and read-in content.
02844177 110 open(FILE, $idsusedrulefilesfile) or die "Could not open $idsusedrulefilesfile. $!\n";
e5738079
SS
111
112 # Read-in content.
113 my @lines = <FILE>;
114
115 # Close file.
116 close(FILE);
117
118 # Loop through the array.
119 foreach my $line (@lines) {
120 # Remove newlines.
121 chomp($line);
122
123 # Skip comments.
124 next if ($line =~ /\#/);
125
126 # Skip blank lines.
127 next if ($line =~ /^\s*$/);
128
129 # Gather rule sid and message from the ruleline.
101c8881 130 if ($line =~ /.*- (.*)/) {
e5738079
SS
131 my $rulefile = $1;
132
9d18656b
SS
133 # Add the rulefile to the %idsrules hash.
134 $idsrules{$rulefile}{'Rulefile'}{'State'} = "on";
e5738079
SS
135 }
136 }
137}
138
298723b9
SS
139# Save ruleset.
140if ($cgiparams{'RULESET'} eq $Lang::tr{'update'}) {
02844177
SS
141 my $enabled_sids_file = "$IDS::settingsdir/oinkmaster-enabled-sids.conf";
142 my $disabled_sids_file = "$IDS::settingsdir/oinkmaster-disabled-sids.conf";
298723b9
SS
143
144 # Arrays to store sid which should be added to the corresponding files.
145 my @enabled_sids;
146 my @disabled_sids;
e5738079 147 my @enabled_rulefiles;
298723b9 148
9d18656b
SS
149 # Loop through the hash of idsrules.
150 foreach my $rulefile(keys %idsrules) {
e5738079
SS
151 # Check if the rulefile is enabled.
152 if ($cgiparams{$rulefile} eq "on") {
153 # Add rulefile to the array of enabled rulefiles.
154 push(@enabled_rulefiles, $rulefile);
b65b5ef3
SS
155
156 # Drop item from cgiparams hash.
157 delete $cgiparams{$rulefile};
e5738079 158 }
466c6779 159 }
e5738079 160
9d18656b
SS
161 # Loop through the hash of idsrules.
162 foreach my $rulefile (keys %idsrules) {
298723b9 163 # Loop through the single rules of the rulefile.
9d18656b 164 foreach my $sid (keys %{$idsrules{$rulefile}}) {
c51a044a
SS
165 # Skip the current sid if it is not numeric.
166 next unless ($sid =~ /\d+/ );
167
298723b9
SS
168 # Check if there exists a key in the cgiparams hash for this sid.
169 if (exists($cgiparams{$sid})) {
170 # Look if the rule is disabled.
9d18656b 171 if ($idsrules{$rulefile}{$sid}{'State'} eq "off") {
298723b9
SS
172 # Check if the state has been set to 'on'.
173 if ($cgiparams{$sid} eq "on") {
174 # Add the sid to the enabled_sids array.
175 push(@enabled_sids, $sid);
176
177 # Drop item from cgiparams hash.
60333473 178 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
179 }
180 }
181 } else {
182 # Look if the rule is enabled.
9d18656b 183 if ($idsrules{$rulefile}{$sid}{'State'} eq "on") {
298723b9
SS
184 # Check if the state is 'on' and should be disabled.
185 # In this case there is no entry
186 # for the sid in the cgiparams hash.
187 # Add it to the disabled_sids array.
188 push(@disabled_sids, $sid);
189
190 # Drop item from cgiparams hash.
60333473 191 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
192 }
193 }
194 }
195 }
196
37659505
SS
197 # Open enabled sid's file for writing.
198 open(FILE, ">$enabled_sids_file") or die "Could not write to $enabled_sids_file. $!\n";
298723b9 199
37659505
SS
200 # Write header to file.
201 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
298723b9 202
37659505
SS
203 # Check if the enabled_sids array contains any sid's.
204 if (@enabled_sids) {
298723b9
SS
205 # Loop through the array of enabled sids and write them to the file.
206 foreach my $sid (@enabled_sids) {
37659505 207 print FILE "enablesid $sid\n";
298723b9 208 }
298723b9
SS
209 }
210
37659505
SS
211 # Close file after writing.
212 close(FILE);
213
214 # Open disabled sid's file for writing.
215 open(FILE, ">$disabled_sids_file") or die "Could not write to $disabled_sids_file. $!\n";
298723b9 216
37659505
SS
217 # Write header to file.
218 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
298723b9 219
37659505
SS
220 # Check if the enabled_sids array contains any sid's.
221 if (@disabled_sids) {
222 # Loop through the array of disabled sids and write them to the file.
223 foreach my $sid (@disabled_sids) {
224 print FILE "disablesid $sid\n";
225 }
226 }
298723b9 227
37659505
SS
228 # Close file after writing.
229 close(FILE);
e5738079
SS
230
231 # Open file for used rulefiles.
02844177 232 open (FILE, ">$idsusedrulefilesfile") or die "Could not write to $idsusedrulefilesfile. $!\n";
e5738079 233
101c8881
SS
234 # Write yaml header to the file.
235 print FILE "%YAML 1.1\n";
236 print FILE "---\n\n";
237
e5738079
SS
238 # Write header to file.
239 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
240
241 # Check if the enabled_rulefiles array contains any entries.
242 if (@enabled_rulefiles) {
243 # Loop through the array of rulefiles which should be loaded and write the to the file.
244 foreach my $file (@enabled_rulefiles) {
101c8881 245 print FILE " - $file\n";
e5738079
SS
246 }
247 }
248
249 # Close file after writing.
250 close(FILE);
52599865 251
27760092
SS
252 # Lock the webpage and print message.
253 &working_notice("$Lang::tr{'snort working'}");
254
52599865 255 # Call oinkmaster to alter the ruleset.
27760092
SS
256 &IDS::oinkmaster();
257
e2e7880d
SS
258 # Check if the IDS is running.
259 if(&IDS::is_ids_running()) {
260 # Call suricatactrl to perform a reload.
261 &IDS::call_suricatactrl("reload");
262 }
263
27760092
SS
264 # Reload page.
265 &reload();
52599865
SS
266
267# Download new ruleset.
268} elsif ($cgiparams{'RULESET'} eq $Lang::tr{'download new ruleset'}) {
43263ea6
SS
269 # Check if the red device is active.
270 unless (-e "${General::swroot}/red/active") {
271 $errormessage = $Lang::tr{'could not download latest updates'};
272 }
52599865 273
3983aebd 274 # Check if enought free disk space is availabe.
434001d0
SS
275 if(&IDS::checkdiskspace()) {
276 $errormessage = "$Lang::tr{'not enough disk space'}";
277 }
52599865 278
43263ea6
SS
279 # Check if any errors happend.
280 unless ($errormessage) {
27760092
SS
281 # Lock the webpage and print notice about downloading
282 # a new ruleset.
283 &working_notice("$Lang::tr{'snort working'}");
3983aebd 284
43263ea6 285 # Call subfunction to download the ruleset.
434001d0
SS
286 if(&IDS::downloadruleset()) {
287 $errormessage = $Lang::tr{'could not download latest updates'};
8f22237b 288
3983aebd 289 # Call function to store the errormessage.
434001d0 290 &IDS::_store_error_message($errormessage);
52599865 291
3983aebd
SS
292 # Preform a reload of the page.
293 &reload();
294 } else {
295 # Call subfunction to launch oinkmaster.
296 &IDS::oinkmaster();
43263ea6 297
e2e7880d
SS
298 # Check if the IDS is running.
299 if(&IDS::is_ids_running()) {
300 # Call suricatactrl to perform a reload.
301 &IDS::call_suricatactrl("reload");
302 }
303
3983aebd
SS
304 # Perform a reload of the page.
305 &reload();
306 }
52599865 307 }
a232b58c 308# Save snort settings.
e0bfd338 309} elsif ($cgiparams{'IDS'} eq $Lang::tr{'save'}) {
a232b58c 310 # Prevent form name from been stored in conf file.
e0bfd338 311 delete $cgiparams{'IDS'};
a232b58c
SS
312
313 # Check if an oinkcode has been provided.
314 if ($cgiparams{'OINKCODE'}) {
315 # Check if the oinkcode contains unallowed chars.
316 unless ($cgiparams{'OINKCODE'} =~ /^[a-z0-9]+$/) {
317 $errormessage = $Lang::tr{'invalid input for oink code'};
318 }
f9c2147d 319 }
ac1cfefa 320
a232b58c
SS
321 # Go on if there are no error messages.
322 if (!$errormessage) {
323 # Store settings into settings file.
02844177 324 &General::writehash("$IDS::settingsdir/settings", \%cgiparams);
a9a91e5f 325 }
8d2f6b0b
SS
326
327 # Generate file to store the home net.
328 &generate_home_net_file();
e2e7880d
SS
329
330 # Check if the IDS currently is running.
331 if(&IDS::ids_is_running()) {
332 # Check if ENABLE_IDS is set to on.
333 if($cgiparams{'ENABLE_IDS'} eq "on") {
334 # Call suricatactrl to perform a reload of suricata.
335 &IDS::call_suricatactrl("reload");
336 } else {
337 # Call suricatactrl to stop suricata.
338 &IDS::call_suricatactrl("stop");
339 }
340 } else {
341 # Call suricatactrl to start suricata.
342 &IDS::call_suricatactrl("start");
343 }
ac1cfefa
MT
344}
345
1286e0d4
SS
346# Read-in idssettings
347&General::readhash("$IDS::settingsdir/settings", \%idssettings);
348
349$checked{'ENABLE_IDS'}{'off'} = '';
350$checked{'ENABLE_IDS'}{'on'} = '';
351$checked{'ENABLE_IDS'}{$idssettings{'ENABLE_IDS'}} = "checked='checked'";
5a3e0dca 352$selected{'RULES'}{'nothing'} = '';
5a3e0dca 353$selected{'RULES'}{'community'} = '';
a0fa489f 354$selected{'RULES'}{'emerging'} = '';
5a3e0dca
MT
355$selected{'RULES'}{'registered'} = '';
356$selected{'RULES'}{'subscripted'} = '';
1286e0d4 357$selected{'RULES'}{$idssettings{'RULES'}} = "selected='selected'";
ac1cfefa
MT
358
359&Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
360
17726644
SS
361### Java Script ###
362print <<END
363<script>
364 // Tiny java script function to show/hide the rules
365 // of a given category.
366 function showhide(tblname) {
367 \$("#" + tblname).toggle();
368 }
369</script>
370END
371;
372
ac1cfefa
MT
373&Header::openbigbox('100%', 'left', '', $errormessage);
374
375if ($errormessage) {
376 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
377 print "<class name='base'>$errormessage\n";
378 print "&nbsp;</class>\n";
379 &Header::closebox();
380}
381
87660964 382# Draw current state of the IDS
7cc8a0e5 383&Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
1504a375 384
87660964
SS
385# Check if the IDS is running and obtain the process-id.
386my $pid = &IDS::ids_is_running();
387
388# Display some useful information, if suricata daemon is running.
389if ($pid) {
390 # Gather used memory.
391 my $memory = &get_memory_usage($pid);
392
393 print <<END;
394 <table width='95%' cellspacing='0' class='tbl'>
395 <tr>
396 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
397 </tr>
398
399 <tr>
400 <td class='base'>$Lang::tr{'guardian daemon'}</td>
401 <td align='center' colspan='2' width='75%' bgcolor='${Header::colourgreen}'><font color='white'><strong>$Lang::tr{'running'}</strong></font></td>
402 </tr>
403
404 <tr>
405 <td class='base'></td>
406 <td bgcolor='$color{'color20'}' align='center'><strong>PID</strong></td>
407 <td bgcolor='$color{'color20'}' align='center'><strong>$Lang::tr{'memory'}</strong></td>
408 </tr>
409
410 <tr>
411 <td class='base'></td>
412 <td bgcolor='$color{'color22'}' align='center'>$pid</td>
413 <td bgcolor='$color{'color22'}' align='center'>$memory KB</td>
414 </tr>
415 </table>
416END
417} else {
418 # Otherwise display a hint that the service is not launched.
419 print <<END;
420 <table width='95%' cellspacing='0' class='tbl'>
421 <tr>
422 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
423 </tr>
424
425 <tr>
426 <td class='base'>$Lang::tr{'guardian daemon'}</td>
427 <td align='center' width='75%' bgcolor='${Header::colourred}'><font color='white'><strong>$Lang::tr{'stopped'}</strong></font></td>
428 </tr>
429 </table>
87660964
SS
430END
431}
432&Header::closebox();
433
434# Draw elements for IDS configuration.
435&Header::openbox('100%', 'center', $Lang::tr{'settings'});
436
1504a375
SS
437my $rulesdate;
438
439# Check if a ruleset allready has been downloaded.
a69b96d2 440if ( -f "$IDS::rulestarball"){
1504a375 441 # Call stat on the filename to obtain detailed information.
a69b96d2 442 my @Info = stat("$IDS::rulestarball");
1504a375
SS
443
444 # Grab details about the creation time.
445 $rulesdate = localtime($Info[9]);
446}
447
ac1cfefa 448print <<END
1504a375
SS
449<form method='post' action='$ENV{'SCRIPT_NAME'}'>
450 <table width='100%' border='0'>
451 <tr>
452 <td class='base' width='25%'>
1286e0d4
SS
453 <input type='checkbox' name='ENABLE_IDS' $checked{'ENABLE_IDS'}{'on'}>$Lang::tr{'ids activate'} $Lang::tr{'intrusion detection system'}
454 </td>
455
456 <td class='base' width='25%'>
457 &nbsp
1504a375 458 </td>
1286e0d4
SS
459 </tr>
460
461 <tr>
462 <td colspan='2'><br><br>
463 </tr>
1504a375 464
1286e0d4 465 <tr>
1504a375 466 <td class='base' width='25%'>
1286e0d4 467 <b>$Lang::tr{'ids analyze incomming traffic'}</b>
1504a375
SS
468 </td>
469
470 <td class='base' width='25%'>
1286e0d4
SS
471 <b>$Lang::tr{'ids analyze routing traffic'}</b>
472 </td>
473 </tr>
ac1cfefa
MT
474END
475;
1504a375 476
1286e0d4
SS
477# Loop through the array of available networks and print config options.
478foreach my $zone (@network_zones) {
479 my $checked_input;
480 my $checked_forward;
1504a375 481
1286e0d4
SS
482 # Convert current zone name to upper case.
483 my $zone_upper = uc($zone);
1504a375 484
1286e0d4
SS
485 # Grab checkbox status from settings hash.
486 if ($idssettings{"ENABLE_IDS_INPUT_$zone_upper"} eq "on") {
487 $checked_input = "checked = 'checked'";
488 }
1504a375 489
1286e0d4
SS
490 # Do the same for the forward setting.
491 if ($idssettings{"ENABLE_IDS_FORWARD_$zone_upper"} eq "on") {
492 $checked_forward = "checked = 'checked'";
493 }
494
495 print "<tr>\n";
496 print "<td class='base' width='25%'>\n";
497 print "<input type='checkbox' name='ENABLE_IDS_INPUT_$zone_upper' $checked_input>$Lang::tr{'ids active on'} $Lang::tr{$zone}\n";
498 print "</td>\n";
499
500 print "<td class='base' width='25%'>\n";
501 print "<input type='checkbox' name='ENABLE_IDS_FORWARD_$zone_upper' $checked_forward>$Lang::tr{'ids active on'} $Lang::tr{$zone}\n";
502 print "</td>\n";
503 print "</tr>\n";
ac1cfefa 504}
1b73b07e 505
ac1cfefa 506print <<END
1504a375
SS
507 </tr>
508
509 <tr>
510 <td colspan='4'><br><br></td>
511 </tr>
512
513 <tr>
514 <td colspan='4'><b>$Lang::tr{'ids rules update'}</b></td>
515 </tr>
516
517 <tr>
518 <td colspan='4'><select name='RULES'>
5a3e0dca 519 <option value='nothing' $selected{'RULES'}{'nothing'} >$Lang::tr{'no'}</option>
a0fa489f 520 <option value='emerging' $selected{'RULES'}{'emerging'} >$Lang::tr{'emerging rules'}</option>
5a3e0dca
MT
521 <option value='community' $selected{'RULES'}{'community'} >$Lang::tr{'community rules'}</option>
522 <option value='registered' $selected{'RULES'}{'registered'} >$Lang::tr{'registered user rules'}</option>
523 <option value='subscripted' $selected{'RULES'}{'subscripted'} >$Lang::tr{'subscripted user rules'}</option>
524 </select>
1504a375
SS
525 </td>
526 </tr>
527
528 <tr>
529 <td colspan='4'>
530 <br>$Lang::tr{'ids rules license'} <a href='https://www.snort.org/subscribe' target='_blank'>www.snort.org</a>$Lang::tr{'ids rules license1'}</br>
531 <br>$Lang::tr{'ids rules license2'} <a href='https://www.snort.org/account/oinkcode' target='_blank'>Get an Oinkcode</a>, $Lang::tr{'ids rules license3'}</br>
532 </td>
533 </tr>
534
535 <tr>
1286e0d4 536 <td colspan='4' nowrap='nowrap'>Oinkcode:&nbsp;<input type='text' size='40' name='OINKCODE' value='$idssettings{'OINKCODE'}'></td>
1504a375
SS
537 </tr>
538
539 <tr>
540 <td colspan='4' align='left'><br>
541 <input type='submit' name='RULESET' value='$Lang::tr{'download new ruleset'}'>&nbsp;$Lang::tr{'updates installed'}: $rulesdate
542 </td>
543
544 </tr>
545 </table>
546
547 <br><br>
548
549 <table width='100%'>
550 <tr>
e0bfd338 551 <td align='right'><input type='submit' name='IDS' value='$Lang::tr{'save'}' /></td>
1504a375
SS
552 </tr>
553 </table>
ac1cfefa
MT
554</form>
555END
556;
557
ac1cfefa 558&Header::closebox();
fbfdb241 559
f7fcd1c0 560&Header::openbox('100%', 'LEFT', $Lang::tr{'intrusion detection system rules'});
298723b9
SS
561 print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
562
f7fcd1c0 563 # Output display table for rule files
17726644 564 print "<table width='100%'>\n";
ce0e83b3 565
17726644
SS
566 # Local variable required for java script to show/hide
567 # rules of a rulefile.
568 my $rulesetcount = 1;
f7fcd1c0
SS
569
570 # Loop over each rule file
9d18656b 571 foreach my $rulefile (sort keys(%idsrules)) {
f7fcd1c0
SS
572 my $rulechecked = '';
573
f7fcd1c0 574 # Check if rule file is enabled
9d18656b 575 if ($idsrules{$rulefile}{'Rulefile'}{'State'} eq 'on') {
f7fcd1c0
SS
576 $rulechecked = 'CHECKED';
577 }
3ffee04b 578
17726644
SS
579 # Table and rows for the rule files.
580 print"<tr>\n";
581 print"<td class='base' width='5%'>\n";
e5738079 582 print"<input type='checkbox' name='$rulefile' $rulechecked>\n";
17726644
SS
583 print"</td>\n";
584 print"<td class='base' width='90%'><b>$rulefile</b></td>\n";
585 print"<td class='base' width='5%' align='right'>\n";
586 print"<a href=\"javascript:showhide('ruleset$rulesetcount')\">SHOW</a>\n";
587 print"</td>\n";
588 print"</tr>\n";
589
590 # Rows which will be hidden per default and will contain the single rules.
591 print"<tr style='display:none' id='ruleset$rulesetcount'>\n";
592 print"<td colspan='3'>\n";
593
594 # Local vars
595 my $lines;
596 my $rows;
597 my $col;
598
599 # New table for the single rules.
600 print "<table width='100%'>\n";
601
602 # Loop over rule file rules
9d18656b 603 foreach my $sid (sort {$a <=> $b} keys(%{$idsrules{$rulefile}})) {
f7fcd1c0 604 # Local vars
17726644 605 my $ruledefchecked = '';
f9c2147d 606
e5738079
SS
607 # Skip rulefile itself.
608 next if ($sid eq "Rulefile");
609
17726644
SS
610 # If 2 rules have been displayed, start a new row
611 if (($lines % 2) == 0) {
612 print "</tr><tr>\n";
3ffee04b 613
17726644
SS
614 # Increase rows by once.
615 $rows++;
616 }
f7fcd1c0 617
17726644
SS
618 # Colour lines.
619 if ($rows % 2) {
620 $col="bgcolor='$color{'color20'}'";
621 } else {
622 $col="bgcolor='$color{'color22'}'";
f7fcd1c0
SS
623 }
624
17726644 625 # Set rule state
9d18656b 626 if ($idsrules{$rulefile}{$sid}{'State'} eq 'on') {
17726644 627 $ruledefchecked = 'CHECKED';
f7fcd1c0 628 }
3ffee04b 629
17726644
SS
630 # Create rule checkbox and display rule description
631 print "<td class='base' width='5%' align='right' $col>\n";
632 print "<input type='checkbox' NAME='$sid' $ruledefchecked>\n";
633 print "</td>\n";
9d18656b 634 print "<td class='base' width='45%' $col>$idsrules{$rulefile}{$sid}{'Description'}</td>";
17726644
SS
635
636 # Increment rule count
637 $lines++;
638 }
639
640 # If do not have a second rule for row, create empty cell
641 if (($lines % 2) != 0) {
642 print "<td class='base'></td>";
f7fcd1c0
SS
643 }
644
645 # Close display table
17726644 646 print "</tr></table></td></tr>";
3ffee04b 647
17726644
SS
648 # Finished whith the rule file, increase count.
649 $rulesetcount++;
f7fcd1c0 650 }
17726644
SS
651
652 # Close display table
653 print "</table>";
654
f7fcd1c0 655print <<END
2999f1d2
CS
656<table width='100%'>
657<tr>
298723b9 658 <td width='100%' align='right'><input type='submit' name='RULESET' value='$Lang::tr{'update'}'>
3ffee04b
CS
659 &nbsp; <!-- space for future online help link -->
660 </td>
2999f1d2
CS
661</tr>
662</table>
298723b9 663</form>
3ffee04b
CS
664END
665;
f7fcd1c0 666&Header::closebox();
ac1cfefa
MT
667&Header::closebigbox();
668&Header::closepage();
669
27760092
SS
670#
671## A function to display a notice, to lock the webpage and
672## tell the user which action currently will be performed.
673#
674sub working_notice ($) {
675 my ($message) = @_;
676
677 &Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
678 &Header::openbigbox('100%', 'left', '', $errormessage);
679 &Header::openbox( 'Waiting', 1,);
680 print <<END;
681 <table>
682 <tr>
683 <td><img src='/images/indicator.gif' alt='$Lang::tr{'aktiv'}' /></td>
684 <td>$message</td>
685 </tr>
686 </table>
687END
688 &Header::closebox();
689 &Header::closebigbox();
690 &Header::closepage();
691}
692
3983aebd
SS
693#
694## A tiny function to perform a reload of the webpage after one second.
695#
696sub reload () {
697 print "<meta http-equiv='refresh' content='1'>\n";
698
699 # Stop the script.
700 exit;
a70d269a
SS
701}
702
25f5cb0d
SS
703#
704## Private function to read-in and parse rules of a given rulefile.
705#
706## The given file will be read, parsed and all valid rules will be stored by ID,
9d18656b 707## message/description and it's state in the idsrules hash.
25f5cb0d 708#
3da6e01b
SS
709sub readrulesfile ($) {
710 my $rulefile = shift;
711
712 # Open rule file and read in contents
298ef5ba 713 open(RULEFILE, "$IDS::rulespath/$rulefile") or die "Unable to read $rulefile!";
3da6e01b
SS
714
715 # Store file content in an array.
716 my @lines = <RULEFILE>;
717
718 # Close file.
719 close(RULEFILE);
720
721 # Loop over rule file contents
722 foreach my $line (@lines) {
723 # Remove whitespaces.
724 chomp $line;
725
726 # Skip blank lines.
727 next if ($line =~ /^\s*$/);
728
729 # Local vars.
730 my $sid;
731 my $msg;
732
733 # Gather rule sid and message from the ruleline.
734 if ($line =~ m/.*msg:\"(.*?)\"\; .* sid:(.*?); /) {
735 $msg = $1;
736 $sid = $2;
737
738 # Check if a rule has been found.
739 if ($sid && $msg) {
9d18656b
SS
740 # Add rule to the idsrules hash.
741 $idsrules{$rulefile}{$sid}{'Description'} = $msg;
3da6e01b
SS
742
743 # Grab status of the rule. Check if ruleline starts with a "dash".
744 if ($line =~ /^\#/) {
745 # If yes, the rule is disabled.
9d18656b 746 $idsrules{$rulefile}{$sid}{'State'} = "off";
3da6e01b
SS
747 } else {
748 # Otherwise the rule is enabled.
9d18656b 749 $idsrules{$rulefile}{$sid}{'State'} = "on";
3da6e01b
SS
750 }
751 }
752 }
753 }
754}
87660964 755
8d2f6b0b
SS
756#
757## Function to get the used memory of a given process-id.
758#
87660964
SS
759sub get_memory_usage($) {
760 my $pid = @_;
761
762 my $memory=0;
763
764 # Try to open statm file for the given process-id on the pseudo
765 # file system proc.
766 if (open(FILE, "/proc/$pid/statm")) {
767 # Read file content.
768 my $temp = <FILE>;
769
770 # Splitt file content and store in an array.
771 my @memory = split(/ /,$temp);
772
773 # Close file handle.
774 close(FILE);
775
776 # Calculate memory usage.
777 $memory+=$memory[0];
778
779 # Return memory usage.
780 return $memory;
781 }
782
783 # If the file could not be open, return nothing.
784 return;
785}
786
8d2f6b0b
SS
787#
788## Function to generate the file which contains the home net information.
789#
790sub generate_home_net_file() {
791 my %netsettings;
792
793 # Read-in network settings.
794 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
795
796 # Get available network zones.
797 my @network_zones = &IDS::get_available_network_zones();
798
799 # Temporary array to store network address and prefix of the configured
800 # networks.
801 my @networks;
802
803 # Loop through the array of available network zones.
804 foreach my $zone (@network_zones) {
805 # Skip the red network - It never can be part to the home_net!
806 next if($zone eq "red");
807
808 # Convert current zone name into upper case.
809 $zone = uc($zone);
810
811 # Generate key to access the required data from the netsettings hash.
812 my $zone_netaddress = $zone . "_NETADDRESS";
813 my $zone_netmask = $zone . "_NETMASK";
814
815 # Obtain the settings from the netsettings hash.
816 my $netaddress = $netsettings{$zone_netaddress};
817 my $netmask = $netsettings{$zone_netmask};
818
819 # Convert the subnetmask into prefix notation.
820 my $prefix = &Network::convert_netmask2prefix($netmask);
821
822 # Generate full network string.
823 my $network = join("/", $netaddress,$prefix);
824
825 # Check if the network is valid.
826 if(&Network::check_subnet($network)) {
827 # Add the generated network to the array of networks.
828 push(@networks, $network);
829 }
830 }
831
832 # Format home net declaration.
833 my $line = "\"\[";
834
835 # Loop through the array of networks.
836 foreach my $network (@networks) {
837 # Add the network to the line.
838 $line = "$line" . "$network";
839
840 # Check if the current network was the last in the array.
841 if ($network eq $networks[-1]) {
842 # Close the line.
843 $line = "$line" . "\]\"";
844 } else {
845 # Add "," for the next network.
846 $line = "$line" . "\,";
847 }
848 }
849
850 # Open file to store the addresses of the home net.
851 open(FILE, ">$idshomenetfile") or die "Could not open $idshomenetfile. $!\n";
852
853 # Print yaml header.
854 print FILE "%YAML 1.1\n";
855 print FILE "---\n\n";
856
857 # Print notice about autogenerated file.
858 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
859
860 # Print the generated and required HOME_NET declaration to the file.
861 print FILE "HOME_NET:\t$line\n";
862
863 # Close file handle.
864 close(FILE);
865
866}