]> git.ipfire.org Git - ipfire-2.x.git/blob - src/initscripts/system/suricata
suricata: Do not display messages when starting up
[ipfire-2.x.git] / src / initscripts / system / suricata
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
18 PATH=/usr/local/sbin:/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin; export PATH
19
20 eval $(/usr/local/bin/readhash /var/ipfire/suricata/settings)
21
22 # Name of the firewall chain.
23 FW_CHAIN="IPS"
24
25 # Optional options for the Netfilter queue.
26 NFQ_OPTS="--queue-bypass "
27
28 # Array containing the 4 possible network zones.
29 network_zones=( red green blue orange )
30
31 # Mark and Mask options.
32 MARK="0x2"
33 MASK="0x2"
34
35 # PID file of suricata.
36 PID_FILE="/var/run/suricata.pid"
37
38 # Function to get the amount of CPU cores of the system.
39 function 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.
51 function 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.
94 function flush_fw_chain {
95 # Call iptables and flush the chain
96 iptables -F "$FW_CHAIN"
97 }
98
99 case "$1" in
100 start)
101 # Get amount of CPU cores.
102 cpu_count=$(get_cpu_count)
103
104 # Numer of NFQUES.
105 NFQUEUES=
106
107 for i in $(seq 0 $cpu_count); do
108 NFQUEUES+="-q $i "
109 done
110
111 # Check if the IDS should be started.
112 if [ "$ENABLE_IDS" == "on" ]; then
113 # Start the IDS.
114 boot_mesg "Starting Intrusion Detection System..."
115 /usr/bin/suricata -c /etc/suricata/suricata.yaml -D $NFQUEUES >/dev/null 2>/dev/null
116 evaluate_retval
117
118 # Allow reading the pidfile.
119 chmod 644 $PID_FILE
120
121 # Flush the firewall chain
122 flush_fw_chain
123
124 # Generate firewall rules
125 generate_fw_rules
126 fi
127 ;;
128
129 stop)
130 boot_mesg "Stopping Intrusion Detection System..."
131 killproc -p $PID_FILE /var/run
132
133 # Flush firewall chain.
134 flush_fw_chain
135
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 ;;
151 reload)
152 # Send SIGUSR2 to the suricata process to perform a reload
153 # of the ruleset.
154 kill -USR2 $(pidof suricata)
155
156 # Flush the firewall chain.
157 flush_fw_chain
158
159 # Generate firewall rules.
160 generate_fw_rules
161 ;;
162
163 *)
164 echo "Usage: $0 {start|stop|restart|reload|status}"
165 exit 1
166 ;;
167 esac
168
169 chmod 644 /var/log/suricata/* 2>/dev/null
170
171 # End $rc_base/init.d/suricata