aboutsummaryrefslogtreecommitdiffstats
path: root/config/snort-dev/snort.inc
diff options
context:
space:
mode:
authorrobiscool <robrob2626@yahoo.com>2009-12-12 18:22:53 -0800
committerrobiscool <robrob2626@yahoo.com>2009-12-12 18:22:53 -0800
commit5ec6d77ddbf7a8f7bb1dc4fd03e4abeaba358d4a (patch)
tree961f6fca69d2bf8776eccf89cc66a3758d99901a /config/snort-dev/snort.inc
parent170685ff702e1ea99a1cd39439e8370090f2d156 (diff)
downloadpfsense-packages-5ec6d77ddbf7a8f7bb1dc4fd03e4abeaba358d4a.tar.gz
pfsense-packages-5ec6d77ddbf7a8f7bb1dc4fd03e4abeaba358d4a.tar.bz2
pfsense-packages-5ec6d77ddbf7a8f7bb1dc4fd03e4abeaba358d4a.zip
snort-dev, add rule update copy func, add remove tmp dir
Diffstat (limited to 'config/snort-dev/snort.inc')
-rw-r--r--config/snort-dev/snort.inc47
1 files changed, 24 insertions, 23 deletions
diff --git a/config/snort-dev/snort.inc b/config/snort-dev/snort.inc
index a9e876d9..12a68f23 100644
--- a/config/snort-dev/snort.inc
+++ b/config/snort-dev/snort.inc
@@ -433,22 +433,6 @@ function sync_package_snort()
{
global $config, $g, $id, $if_real, $interface_fake;
conf_mount_rw();
-
- /* snort advanced features - bpf tuning */
-// if($bpfbufsize)
-// $start .= "sysctl net.bpf.bufsize={$bpfbufsize}\n";
-// if($bpfmaxbufsize)
-// $start .= "sysctl net.bpf.maxbufsize={$bpfmaxbufsize}\n";
-// if($bpfmaxinsns)
-// $start .= "sysctl net.bpf.maxinsns={$bpfmaxinsns}\n";
-
- /* go ahead and issue bpf changes */
-// if($bpfbufsize)
-// mwexec_bg("sysctl net.bpf.bufsize={$bpfbufsize}");
-// if($bpfmaxbufsize)
-// mwexec_bg("sysctl net.bpf.maxbufsize={$bpfmaxbufsize}");
-// if($bpfmaxinsns)
-// mwexec_bg("sysctl net.bpf.maxinsns={$bpfmaxinsns}");
/* RedDevil suggested code */
/* TODO: more testing needs to be done */
@@ -477,7 +461,10 @@ exec("/sbin/sysctl net.inet.tcp.rfc1323=1");
create_snort_conf();
/* create snort.sh file */
- create_snort_sh();
+ create_snort_sh();
+
+ /* if rules exist cp rules to each iface */
+ create_rules_iface();
/* create barnyard2 configuration file */
$snortbarnyardlog_info_chk = $config['installedpackages']['snortglobal']['rule'][$id]['barnyard_enable'];
@@ -493,6 +480,9 @@ exec("/sbin/sysctl net.inet.tcp.rfc1323=1");
/* create snort.sh file */
create_snort_sh();
+
+ /* if rules exist cp rules to each iface */
+ create_rules_iface();
/* create barnyard2 configuration file */
$snortbarnyardlog_info_chk = $config['installedpackages']['snortglobal']['rule'][$id]['barnyard_enable'];
@@ -523,14 +513,25 @@ exec("/sbin/sysctl net.inet.tcp.rfc1323=1");
/* Start of main config files */
/* Start of main config files */
+
+
/* if rules exist copy to new interfaces */
-$if_rule_dir = "/usr/local/etc/snort/snort_$id$if_real/rules";
-$folder_chk = (count(glob("$if_rule_dir/*")) === 0) ? 'empty' : 'full';
+function create_rules_iface()
+{
-if($folder_chk == "empty") {
- exec("/bin/cp -R /usr/local/etc/snort/rules /usr/local/etc/snort/snort_$id$if_real");
- if(file_exists("/usr/local/etc/snort/custom_rules/local_$id$if_real.rules")) {
- exec("/bin/cp /usr/local/etc/snort/custom_rules/local_$id$if_real.rules /usr/local/etc/snort/snort_$id$if_real/rules/local_$id$if_real.rules");
+ global $config, $g, $id, $if_real;
+ conf_mount_rw();
+
+ $if_rule_dir = "/usr/local/etc/snort/snort_$id$if_real/rules";
+ $folder_chk = (count(glob("$if_rule_dir/*")) === 0) ? 'empty' : 'full';
+
+ if ($folder_chk == "empty")
+ {
+ exec("/bin/cp -R /usr/local/etc/snort/rules /usr/local/etc/snort/snort_$id$if_real");
+ if (file_exists("/usr/local/etc/snort/custom_rules/local_$id$if_real.rules"))
+ {
+ exec("/bin/cp /usr/local/etc/snort/custom_rules/local_$id$if_real.rules /usr/local/etc/snort/snort_$id$if_real/rules/local_$id$if_real.rules");
+ }
}
}