]> git.ipfire.org Git - people/ms/network.git/blame - functions.util
Bump version to 004.
[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
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
190 local i
191 for i in $(seq ${start} ${#BASH_SOURCE[*]}); do
192 [ -z "${FUNCNAME[${i}]}" ] && continue
193 [ "${FUNCNAME[${i}]}" == "main" ] && continue
194
195 error_log " $(printf "%20s" "'${FUNCNAME[${i}]}'") called from ${BASH_SOURCE[$(( ${i} + 1 ))]}:${BASH_LINENO[${i}]}"
196 done
197}
198
1848564d
MT
199function assert() {
200 local assertion="$@"
201
202 if ! ${assertion}; then
4c670d7c 203 error_log "Assertion '${assertion}' failed."
711ffac1 204 backtrace
1848564d
MT
205 exit ${EXIT_ERROR}
206 fi
207
208 return ${EXIT_OK}
209}
cad8bd85 210
711ffac1
MT
211function exec_cmd() {
212 local cmd=$@
213
214 log DEBUG "Running command: ${cmd}"
215
b816e04b 216 DEBUG=${DEBUG} \
8c63fa13
MT
217 LOG_DISABLE_STDOUT="${LOG_DISABLE_STDOUT}" \
218 LOG_FACILITY="${LOG_FACILITY}" \
b816e04b 219 ${SHELL} ${cmd}
711ffac1
MT
220 local ret=$?
221
222 #log DEBUG "Returned with code '${ret}'"
223
224 if [ ${ret} -eq ${EXIT_ERROR_ASSERT} ]; then
225 error_log "Stopping parent process due to assertion error in child process: ${cmd}"
226 exit ${EXIT_ERROR_ASSERT}
227 fi
228
229 return ${ret}
230}
231
b816e04b
MT
232function cmd() {
233 local cmd=$@
234
235 log DEBUG "Running command: ${cmd}"
236
237 ${cmd}
238 local ret=$?
239
240 log DEBUG "Returned with code '${ret}'"
241
242 return ${ret}
243}
244
98146c00
MT
245function cmd_quiet() {
246 cmd $@ &>/dev/null
3efecbb3
MT
247}
248
249function seq() {
250 if [ $# -eq 2 ]; then
251 eval echo {${1}..${2}}
252 elif [ $# -eq 3 ]; then
253 eval echo {${1}..${3}..${2}}
254 fi
255}
256
d82cf370
MT
257function beautify_time() {
258 local value=${1}
259
260 local unit
261 local limit
262 for unit in s m h d w; do
263 case "${unit}" in
264 s|m|h)
265 limit=60
266 ;;
267 d)
268 limit=24
269 ;;
270 w)
271 limit=7
272 ;;
273 esac
274
275 [ ${value} -lt ${limit} ] && break
276
277 value=$(( ${value} / ${limit} ))
278 done
279
280 echo "${value}${unit}"
281}
711ffac1
MT
282
283function beautify_bytes() {
284 local value=${1}
285
286 local unit
287 local limit=1024
288 for unit in B k M G T; do
289 [ ${value} -lt ${limit} ] && break
290 value=$(( ${value} / ${limit} ))
291 done
292
293 echo "${value}${unit}"
294}
943e3f7e
MT
295
296function module_load() {
297 local module=${1}
298
299 if ! grep -q "^${module}" /proc/modules; then
300 log DEBUG "Loading module '${module}'."
301 modprobe ${module}
302 fi
303}
6b3f9c85
MT
304
305function binary_exists() {
306 local binary=${1}
307
308 if [ -n "$(type -p ${binary})" ]; then
309 return ${EXIT_OK}
310 fi
311
312 return ${EXIT_ERROR}
313}
d76f5107
MT
314
315function process_kill() {
316 local process=${1}
317
318 if ! isinteger process; then
319 process=$(pidof ${process})
320 fi
321
322 local pid
323 local sig
324 for pid in ${process}; do
325 for sig in 15 9; do
326 [ -d "/proc/${pid}" ] || break
327
328 kill -${sig} ${pid}
329 sleep 1
330 done
331 done
332}
feb76eaf
MT
333
334function dec() {
335 local hex=${1}
336
337 if [ "${hex:0:2}" != "0x" ]; then
338 hex="0x${hex}"
339 fi
340
341 printf "%d\n" "${hex}"
342}
3a7fef62
MT
343
344function network_is_running() {
345 # Check, if the network service is running.
346 service_is_active network
347}