]> git.ipfire.org Git - people/ms/network.git/blame - functions.util
Introduce concept of firewall zones.
[people/ms/network.git] / functions.util
CommitLineData
1848564d
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2010 Michael Tremer & Christian Schmidt #
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
97cb552e
MT
22# A simple print statement
23function print() {
acc9efd5
MT
24 local fmt=${1}; shift
25
40e3553f 26 printf -- "${fmt}\n" "$@"
97cb552e
MT
27}
28
1848564d
MT
29# Print a pretty error message
30function error() {
2ab7f50f 31 echo -e " ${COLOUR_ERROR}ERROR${COLOUR_NORMAL} : $@" >&2
1848564d
MT
32}
33
1b7a1578 34function error_log() {
1b7a1578
MT
35 log ERROR "$@"
36}
37
1848564d
MT
38# Print a pretty warn message
39function warning() {
2ab7f50f 40 echo -e " ${COLOUR_WARN}WARNING${COLOUR_NORMAL}: $@" >&2
1848564d
MT
41}
42
1b7a1578 43function warning_log() {
1b7a1578
MT
44 log WARNING "$@"
45}
46
1848564d
MT
47function listsort() {
48 local i
ae22de29 49 for i in $@; do
ab29f8c4 50 echo "${i}"
ae22de29 51 done | sort | tr '\n' ' '
ab29f8c4 52 echo
1848564d
MT
53}
54
711ffac1
MT
55function listmatch() {
56 local match=${1}
57 shift
58
711ffac1
MT
59 local i
60 for i in $@; do
61 [ "${match}" = "${i}" ] && return ${EXIT_OK}
62 done
63
64 return ${EXIT_ERROR}
65}
66
67function listlength() {
68 local length=0
69
70 local i
71 for i in $@; do
72 length=$(( ${length} + 1 ))
73 done
74
75 echo "${length}"
76}
77
1848564d
MT
78# Speedup function to avoid a call of the basename binary
79function basename() {
80 echo "${1##*/}"
81}
82
83function enabled() {
84 local param=${1}
85
acc9efd5 86 listmatch "${!param}" yes on true 1
1848564d
MT
87}
88
89function mac_generate() {
790b7ec9
MT
90 # Get a bunch of random hex digits
91 # and remove all dashes from the input.
92 local random=$(</proc/sys/kernel/random/uuid)
93 random=${random//-/}
94 assert isset random
1848564d
MT
95
96 local output
790b7ec9
MT
97
98 local i o
99 for i in $(seq 0 5); do
100 o="0x${random:0:2}"
101 random="${random:2:${#random}}"
102
103 case "${i}" in
104 0)
105 # Remove multicast bit
106 # and set address is software assigned
107 o=$(( ${o} & 0xfe ))
108 o=$(( ${o} | 0x02 ))
109
110 printf -v output "%02x" "${o}"
111 ;;
112 *)
113 printf -v output "%s:%02x" "${output}" "${o}"
114 ;;
115 esac
1848564d
MT
116 done
117
118 # Check if output is valid
119 assert mac_is_valid ${output}
120
790b7ec9 121 echo "${output}"
1848564d
MT
122}
123
18b43372
MT
124function mac_format() {
125 local mac=${1}
126
127 local output
128
129 if [ "${#mac}" = "12" ]; then
130 # Add colons (:) to mac address
131 output=${mac:0:2}
132 local i
133 for i in 2 4 6 8 10; do
134 output="${output}:${mac:${i}:2}"
135 done
136 fi
137
138 assert mac_is_valid ${output}
139
140 echo "${output}"
141}
142
1848564d
MT
143function mac_is_valid() {
144 local mac=${1}
145
146 [[ ${mac} =~ ^([0-9a-f]{2}\:){5}[0-9a-f]{2}$ ]]
147}
148
149function uuid() {
de543653 150 echo $(</proc/sys/kernel/random/uuid)
1848564d
MT
151}
152
153function isset() {
154 local var=${1}
155
156 [ -n "${!var}" ]
157}
158
159function isoneof() {
160 local var=${!1}
161 shift
162
3c09759f 163 listmatch "${var}" "$@"
1848564d
MT
164}
165
166function isbool() {
167 local var=${1}
168
169 isoneof ${var} 0 1 no yes on off
170}
171
172function isinteger() {
173 local var=${!1}
174
175 [[ ${var} =~ ^[0-9]+$ ]]
176}
177
178function ismac() {
179 local mac=${!1}
180
181 mac_is_valid ${mac}
182}
183
711ffac1
MT
184function backtrace() {
185 local start=1
186
187 echo # Empty line
188 error_log "Backtrace (most recent call in first line):"
189
04608623 190 local i source
711ffac1
MT
191 for i in $(seq ${start} ${#BASH_SOURCE[*]}); do
192 [ -z "${FUNCNAME[${i}]}" ] && continue
193 [ "${FUNCNAME[${i}]}" == "main" ] && continue
194
04608623
MT
195 source=${BASH_SOURCE[$(( ${i} + 1 ))]}
196 error_log " $(printf "%20s" "'${FUNCNAME[${i}]}'") called from ${source:-<shell>}:${BASH_LINENO[${i}]}"
711ffac1
MT
197 done
198}
199
1848564d
MT
200function assert() {
201 local assertion="$@"
202
203 if ! ${assertion}; then
4c670d7c 204 error_log "Assertion '${assertion}' failed."
711ffac1 205 backtrace
cfbe0802 206 exit ${EXIT_ERROR_ASSERT}
1848564d
MT
207 fi
208
209 return ${EXIT_OK}
210}
cad8bd85 211
b0b2f995
MT
212# This function checks, if the given argument is an assert error
213# exit code. If this is the case, the script will halt immediately.
214function assert_check_retval() {
215 local ret=${1}
216
217 if [ ${ret} -eq ${EXIT_ERROR_ASSERT} ]; then
218 exit ${EXIT_ERROR_ASSERT}
219 fi
220
221 return ${ret}
222}
223
711ffac1
MT
224function exec_cmd() {
225 local cmd=$@
226
227 log DEBUG "Running command: ${cmd}"
228
b816e04b 229 DEBUG=${DEBUG} \
8c63fa13
MT
230 LOG_DISABLE_STDOUT="${LOG_DISABLE_STDOUT}" \
231 LOG_FACILITY="${LOG_FACILITY}" \
b816e04b 232 ${SHELL} ${cmd}
711ffac1
MT
233 local ret=$?
234
235 #log DEBUG "Returned with code '${ret}'"
236
237 if [ ${ret} -eq ${EXIT_ERROR_ASSERT} ]; then
238 error_log "Stopping parent process due to assertion error in child process: ${cmd}"
239 exit ${EXIT_ERROR_ASSERT}
240 fi
241
242 return ${ret}
243}
244
b816e04b
MT
245function cmd() {
246 local cmd=$@
247
248 log DEBUG "Running command: ${cmd}"
249
250 ${cmd}
251 local ret=$?
252
253 log DEBUG "Returned with code '${ret}'"
254
255 return ${ret}
256}
257
98146c00
MT
258function cmd_quiet() {
259 cmd $@ &>/dev/null
3efecbb3
MT
260}
261
262function seq() {
263 if [ $# -eq 2 ]; then
264 eval echo {${1}..${2}}
265 elif [ $# -eq 3 ]; then
266 eval echo {${1}..${3}..${2}}
267 fi
268}
269
76e6cd51
MT
270function which() {
271 type -P $@
272}
273
d82cf370
MT
274function beautify_time() {
275 local value=${1}
276
277 local unit
278 local limit
279 for unit in s m h d w; do
280 case "${unit}" in
281 s|m|h)
282 limit=60
283 ;;
284 d)
285 limit=24
286 ;;
287 w)
288 limit=7
289 ;;
290 esac
291
292 [ ${value} -lt ${limit} ] && break
293
294 value=$(( ${value} / ${limit} ))
295 done
296
297 echo "${value}${unit}"
298}
711ffac1
MT
299
300function beautify_bytes() {
301 local value=${1}
302
303 local unit
304 local limit=1024
305 for unit in B k M G T; do
306 [ ${value} -lt ${limit} ] && break
307 value=$(( ${value} / ${limit} ))
308 done
309
310 echo "${value}${unit}"
311}
943e3f7e
MT
312
313function module_load() {
314 local module=${1}
315
316 if ! grep -q "^${module}" /proc/modules; then
317 log DEBUG "Loading module '${module}'."
318 modprobe ${module}
319 fi
320}
6b3f9c85
MT
321
322function binary_exists() {
323 local binary=${1}
324
325 if [ -n "$(type -p ${binary})" ]; then
326 return ${EXIT_OK}
327 fi
328
329 return ${EXIT_ERROR}
330}
d76f5107
MT
331
332function process_kill() {
333 local process=${1}
334
335 if ! isinteger process; then
336 process=$(pidof ${process})
337 fi
338
339 local pid
340 local sig
341 for pid in ${process}; do
342 for sig in 15 9; do
343 [ -d "/proc/${pid}" ] || break
344
345 kill -${sig} ${pid}
346 sleep 1
347 done
348 done
349}
feb76eaf
MT
350
351function dec() {
352 local hex=${1}
353
354 if [ "${hex:0:2}" != "0x" ]; then
355 hex="0x${hex}"
356 fi
357
358 printf "%d\n" "${hex}"
359}
3a7fef62
MT
360
361function network_is_running() {
362 # Check, if the network service is running.
363 service_is_active network
364}