]> git.ipfire.org Git - ipfire-2.x.git/blame - src/initscripts/system/suricata
suricata: Do not display messages when starting up
[ipfire-2.x.git] / src / initscripts / system / suricata
CommitLineData
d72b3e64
SS
1#!/bin/sh
2########################################################################
3# Begin $rc_base/init.d/suricata
4#
5# Description : Suricata Initscript
6#
7# Author : Stefan Schantl <stefan.schantl@ipfire.org>
8#
9# Version : 01.00
10#
11# Notes :
12#
13########################################################################
14
15. /etc/sysconfig/rc
16. ${rc_functions}
17
18PATH=/usr/local/sbin:/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin; export PATH
19
d72b3e64
SS
20eval $(/usr/local/bin/readhash /var/ipfire/suricata/settings)
21
3c2c5483
SS
22# Name of the firewall chain.
23FW_CHAIN="IPS"
24
25# Optional options for the Netfilter queue.
26NFQ_OPTS="--queue-bypass "
27
28# Array containing the 4 possible network zones.
29network_zones=( red green blue orange )
30
31# Mark and Mask options.
f5ad510e
SS
32MARK="0x2"
33MASK="0x2"
3c2c5483 34
00a03114
SS
35# PID file of suricata.
36PID_FILE="/var/run/suricata.pid"
37
c9b07d6a
SS
38# Function to get the amount of CPU cores of the system.
39function get_cpu_count {
40 CPUCOUNT=0
41
42 # Loop through "/proc/cpuinfo" and count the amount of CPU cores.
43 while read line; do
44 [ "$line" ] && [ -z "${line%processor*}" ] && ((CPUCOUNT++))
45 done </proc/cpuinfo
46
47 echo $CPUCOUNT
48}
49
50# Function to create the firewall rules to pass the traffic to suricata.
51function generate_fw_rules {
52 cpu_count=$(get_cpu_count)
53
54 # Flush the firewall chain.
55 iptables -F "$FW_CHAIN"
56
57 # Loop through the array of network zones.
58 for zone in "${network_zones[@]}"; do
59 # Convert zone into upper case.
60 zone_upper=${zone^^}
61
62 # Generate variable name for checking if the IDS is
63 # enabled on the zone.
64 enable_ids_zone="ENABLE_IDS_$zone_upper"
65
66 # Check if the IDS is enabled for this network zone.
67 if [ "${!enable_ids_zone}" == "on" ]; then
68 # Generate name of the network interface.
69 network_device=$zone
70 network_device+="0"
71
72 # Assign NFQ_OPTS
73 NFQ_OPTIONS=$NFQ_OPTS
74
75 # Check if there are multiple cpu cores available.
76 if [ "$cpu_count" -gt "1" ]; then
77 # Balance beetween all queues.
78 NFQ_OPTIONS+="--queue-balance 0:"
79 NFQ_OPTIONS+=$(($cpu_count-1))
80 else
81 # Send all packets to queue 0.
82 NFQ_OPTIONS+="--queue-num 0"
83 fi
84
85 # Create firewall rules to queue the traffic and pass to
86 # the IDS.
87 iptables -I "$FW_CHAIN" -i "$network_device" -m mark ! --mark "$MARK"/"$MASK" -j NFQUEUE $NFQ_OPTIONS
88 iptables -I "$FW_CHAIN" -o "$network_device" -m mark ! --mark "$MARK"/"$MASK" -j NFQUEUE $NFQ_OPTIONS
89 fi
90 done
91}
92
93# Function to flush the firewall chain.
94function flush_fw_chain {
95 # Call iptables and flush the chain
96 iptables -F "$FW_CHAIN"
97}
98
d72b3e64
SS
99case "$1" in
100 start)
101 # Get amount of CPU cores.
c9b07d6a
SS
102 cpu_count=$(get_cpu_count)
103
104 # Numer of NFQUES.
d72b3e64 105 NFQUEUES=
c9b07d6a
SS
106
107 for i in $(seq 0 $cpu_count); do
108 NFQUEUES+="-q $i "
109 done
d72b3e64 110
3c2c5483
SS
111 # Check if the IDS should be started.
112 if [ "$ENABLE_IDS" == "on" ]; then
3c2c5483
SS
113 # Start the IDS.
114 boot_mesg "Starting Intrusion Detection System..."
af006569 115 /usr/bin/suricata -c /etc/suricata/suricata.yaml -D $NFQUEUES >/dev/null 2>/dev/null
3c2c5483 116 evaluate_retval
00a03114
SS
117
118 # Allow reading the pidfile.
119 chmod 644 $PID_FILE
c9b07d6a
SS
120
121 # Flush the firewall chain
122 flush_fw_chain
123
124 # Generate firewall rules
125 generate_fw_rules
3c2c5483 126 fi
d72b3e64
SS
127 ;;
128
129 stop)
130 boot_mesg "Stopping Intrusion Detection System..."
00a03114 131 killproc -p $PID_FILE /var/run
d72b3e64 132
3c2c5483 133 # Flush firewall chain.
c9b07d6a 134 flush_fw_chain
3c2c5483 135
d72b3e64
SS
136 # Remove suricata control socket.
137 rm /var/run/suricata/* >/dev/null 2>/dev/null
138
139 # Don't report returncode of rm if suricata was not started
140 exit 0
141 ;;
142
143 status)
144 statusproc /usr/bin/suricata
145 ;;
146
147 restart)
148 $0 stop
149 $0 start
150 ;;
6187da50
SS
151 reload)
152 # Send SIGUSR2 to the suricata process to perform a reload
153 # of the ruleset.
154 kill -USR2 $(pidof suricata)
c9b07d6a
SS
155
156 # Flush the firewall chain.
157 flush_fw_chain
158
159 # Generate firewall rules.
160 generate_fw_rules
6187da50 161 ;;
d72b3e64
SS
162
163 *)
6187da50 164 echo "Usage: $0 {start|stop|restart|reload|status}"
d72b3e64
SS
165 exit 1
166 ;;
167esac
168
169chmod 644 /var/log/suricata/* 2>/dev/null
170
171# End $rc_base/init.d/suricata