]> git.ipfire.org Git - people/ms/network.git/blame - src/functions/functions.util
hotplug: Fall through to hotplug events for new devices
[people/ms/network.git] / src / functions / 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 22# A simple print statement
1c6a4e30 23print() {
acc9efd5
MT
24 local fmt=${1}; shift
25
40e3553f 26 printf -- "${fmt}\n" "$@"
97cb552e
MT
27}
28
cb965348
MT
29# The args() function takes a number of arguments like
30# var1="abc d" var2="abc" var3="abcd e"
31# and splits them into several arguments, devided by newline
1c6a4e30 32args() {
cb965348
MT
33 echo "$@" | xargs printf "%s\n"
34}
35
1c6a4e30 36unquote() {
04854c77
MT
37 local var="$@"
38
39 if [ "${var:0:1}" = "\"" ]; then
40 var=${var:1}
41 fi
42
43 local last=$(( ${#var} - 1 ))
44 if [ ${last} -ge 0 ] && [ "${var:${last}:1}" = "\"" ]; then
45 var=${var:0:${last}}
46 fi
47
48 print "${var}"
49}
50
1c6a4e30 51quote() {
04854c77
MT
52 print "\"%s\"" "$@"
53}
54
1c6a4e30 55strip() {
fe52c5e0
MT
56 local value="$@"
57
58 # remove leading whitespace characters
59 value="${value#"${value%%[![:space:]]*}"}"
60
61 # remove trailing whitespace characters
62 value="${value%"${value##*[![:space:]]}"}"
63
64 print "${value}"
65}
66
1848564d 67# Print a pretty error message
1c6a4e30 68error() {
fcbf6823 69 echo -e " ${CLR_RED_B}ERROR${CLR_RESET} : $@" >&2
1848564d
MT
70}
71
1c6a4e30 72error_log() {
1b7a1578
MT
73 log ERROR "$@"
74}
75
1848564d 76# Print a pretty warn message
1c6a4e30 77warning() {
fcbf6823 78 echo -e " ${CLR_YELLOW_B}WARNING${CLR_RESET}: $@" >&2
1848564d
MT
79}
80
1c6a4e30 81warning_log() {
1b7a1578
MT
82 log WARNING "$@"
83}
84
e726ef8d
MT
85# The next three functions are kept for backwards
86# compatibility. The need to be dropped at some time.
1c6a4e30 87listsort() {
e726ef8d 88 list_sort $@
1848564d
MT
89}
90
1c6a4e30 91listmatch() {
e726ef8d 92 list_match $@
711ffac1
MT
93}
94
1c6a4e30 95listlength() {
e726ef8d 96 list_length $@
711ffac1
MT
97}
98
1848564d 99# Speedup function to avoid a call of the basename binary
1c6a4e30 100basename() {
1848564d
MT
101 echo "${1##*/}"
102}
103
1c6a4e30 104format() {
e5651e17
MT
105 local key=${1}
106 assert isset key
107
108 local format=${2}
109 assert isset format
110
111 shift 2
112
113 printf -v "${key}" "${format}" "$@"
114}
115
d13929d4
MT
116format_time() {
117 local s=${1}
118 local ret m
119
120 local units="s m h"
121
122 local unit
123 for unit in ${units}; do
124 m=$(( ${s} % 60 ))
125 s=$(( ${s} / 60 ))
126
127 if [ ${m} -gt 0 ]; then
128 ret="${m}${unit} ${ret}"
129 fi
130 done
131
132 # Remove whitespace
133 echo ${ret}
134}
135
b383499d
MT
136parse_time() {
137 local ret=0
138
139 local arg
140 for arg in $@; do
141 local unit
142
143 case "${arg}" in
144 *h|*m|*s)
145 # Store unit
146 unit="${arg: -1}"
147
148 # Remove unit
149 arg="${arg:0:-1}"
150 ;;
151 esac
152
153 if ! isinteger arg; then
154 return ${EXIT_ERROR}
155 fi
156
157 # Convert hours and minutes into seconds
158 case "${unit}" in
159 h)
160 arg=$(( ${arg} * 3600 ))
161 ;;
162 m)
163 arg=$(( ${arg} * 60 ))
164 ;;
165 esac
166
167 # Add up everything
168 ret=$(( ${ret} + ${arg} ))
169 done
170
171 print "${ret}"
172}
173
1c6a4e30 174assign() {
b79ad79b
MT
175 local key=${1}
176 assert isset key
177 shift
178
e5651e17 179 format "${key}" "%s" "$@"
b79ad79b
MT
180}
181
1c6a4e30 182fread() {
b79ad79b
MT
183 local file=${1}
184 assert isset file
185
186 [ -r "${file}" ] || return ${EXIT_ERROR}
187
188 print "$(<${file})"
189}
190
1c6a4e30 191fwrite() {
b79ad79b
MT
192 local file=${1}
193 assert isset file
194 shift
195
8d4e0d52
MT
196 if [ ! -w "${file}" ]; then
197 log ERROR "${file}: No such file"
198 return ${EXIT_ERROR}
199 fi
200
201 print "%s" "$@" >> ${file} 2>/dev/null
b79ad79b
MT
202}
203
c041b631
MT
204make_parent_dir() {
205 local path="${1}"
206
207 local dirname="$(dirname "${path}")"
208 mkdir -p "${dirname}"
209}
210
1c6a4e30 211enabled() {
1848564d
MT
212 local param=${1}
213
e726ef8d 214 list_match "${!param}" yes on true 1
1848564d
MT
215}
216
1c6a4e30 217mac_generate() {
fb1416c6
MT
218 local b="$(random 12)"
219
220 # Remove multicast bit
221 # and set address is software assigned
222 local first_byte=$(( 0x${b:0:2} & 0xfe ))
223 first_byte=$(( ${first_byte} | 0x02 ))
1848564d
MT
224
225 local output
fb1416c6 226 printf -v output "%02x" "${first_byte}"
790b7ec9 227
fb1416c6 228 output="${output}:${b:2:2}:${b:4:2}:${b:6:2}:${b:8:2}:${b:10:2}"
1848564d
MT
229
230 # Check if output is valid
fb1416c6 231 assert mac_is_valid "${output}"
1848564d 232
790b7ec9 233 echo "${output}"
1848564d
MT
234}
235
1c6a4e30 236mac_format() {
18b43372 237 local mac=${1}
48bc31eb 238 assert isset mac
18b43372 239
48bc31eb
MT
240 # Remove all colons and make the rest lowercase.
241 mac=${mac//:/}
242 mac=${mac,,}
18b43372 243
48bc31eb 244 local output
18b43372
MT
245 if [ "${#mac}" = "12" ]; then
246 # Add colons (:) to mac address
247 output=${mac:0:2}
248 local i
249 for i in 2 4 6 8 10; do
250 output="${output}:${mac:${i}:2}"
251 done
48bc31eb
MT
252 else
253 output=${mac}
18b43372
MT
254 fi
255
256 assert mac_is_valid ${output}
257
48bc31eb 258 print "${output}"
18b43372
MT
259}
260
1c6a4e30 261mac_is_valid() {
1848564d
MT
262 local mac=${1}
263
264 [[ ${mac} =~ ^([0-9a-f]{2}\:){5}[0-9a-f]{2}$ ]]
265}
266
1c6a4e30 267uuid() {
de543653 268 echo $(</proc/sys/kernel/random/uuid)
1848564d
MT
269}
270
fb1416c6
MT
271rand() {
272 local uuid="$(uuid)"
273 echo "${uuid//-/}"
274}
275
276random() {
277 local length="${1:-8}"
278
279 local random
280 while [ ${#random} -lt ${length} ]; do
281 random="${random}$(rand)"
282 done
283
284 echo "${random:0:${length}}"
285}
286
1c6a4e30 287isset() {
1848564d
MT
288 local var=${1}
289
290 [ -n "${!var}" ]
291}
292
1c6a4e30 293isoneof() {
1848564d
MT
294 local var=${!1}
295 shift
296
e726ef8d 297 list_match "${var}" "$@"
1848564d
MT
298}
299
1c6a4e30 300isbool() {
1848564d
MT
301 local var=${1}
302
303 isoneof ${var} 0 1 no yes on off
304}
305
1c6a4e30 306isinteger() {
1848564d
MT
307 local var=${!1}
308
309 [[ ${var} =~ ^[0-9]+$ ]]
310}
311
1c6a4e30 312ismac() {
1848564d
MT
313 local mac=${!1}
314
315 mac_is_valid ${mac}
316}
317
1c6a4e30 318isipaddress() {
fef4edaf
MT
319 local addr=${!1}
320
321 ip_is_valid ${addr}
322}
323
1c6a4e30 324backtrace() {
711ffac1
MT
325 local start=1
326
327 echo # Empty line
328 error_log "Backtrace (most recent call in first line):"
329
04608623 330 local i source
711ffac1
MT
331 for i in $(seq ${start} ${#BASH_SOURCE[*]}); do
332 [ -z "${FUNCNAME[${i}]}" ] && continue
6396ccab
MT
333
334 # Print called binary with arguments.
335 if [ "${FUNCNAME[${i}]}" == "main" ]; then
336 local args="$(list_reverse ${BASH_ARGV[*]})"
337 printf -v source "%20s" "$0"
338 error_log " ${source} ${args}"
339 continue
340 fi
711ffac1 341
04608623
MT
342 source=${BASH_SOURCE[$(( ${i} + 1 ))]}
343 error_log " $(printf "%20s" "'${FUNCNAME[${i}]}'") called from ${source:-<shell>}:${BASH_LINENO[${i}]}"
711ffac1
MT
344 done
345}
346
1c6a4e30 347assert() {
1848564d
MT
348 local assertion="$@"
349
350 if ! ${assertion}; then
4c670d7c 351 error_log "Assertion '${assertion}' failed."
711ffac1 352 backtrace
cfbe0802 353 exit ${EXIT_ERROR_ASSERT}
1848564d
MT
354 fi
355
356 return ${EXIT_OK}
357}
cad8bd85 358
b0b2f995
MT
359# This function checks, if the given argument is an assert error
360# exit code. If this is the case, the script will halt immediately.
1c6a4e30 361assert_check_retval() {
b0b2f995
MT
362 local ret=${1}
363
364 if [ ${ret} -eq ${EXIT_ERROR_ASSERT} ]; then
365 exit ${EXIT_ERROR_ASSERT}
366 fi
367
368 return ${ret}
369}
370
2bb20bbd
SS
371# This function executes the given command and inverses the return code
372not() {
373 local command="$@"
374
375 ${command} && return ${EXIT_FALSE} || return ${EXIT_TRUE}
376}
377
1c6a4e30 378exec_cmd() {
711ffac1
MT
379 local cmd=$@
380
381 log DEBUG "Running command: ${cmd}"
382
b816e04b 383 DEBUG=${DEBUG} \
8c63fa13
MT
384 LOG_DISABLE_STDOUT="${LOG_DISABLE_STDOUT}" \
385 LOG_FACILITY="${LOG_FACILITY}" \
b816e04b 386 ${SHELL} ${cmd}
711ffac1
MT
387 local ret=$?
388
389 #log DEBUG "Returned with code '${ret}'"
390
391 if [ ${ret} -eq ${EXIT_ERROR_ASSERT} ]; then
392 error_log "Stopping parent process due to assertion error in child process: ${cmd}"
393 exit ${EXIT_ERROR_ASSERT}
394 fi
395
396 return ${ret}
397}
398
1c6a4e30 399cmd() {
b816e04b
MT
400 local cmd=$@
401
402 log DEBUG "Running command: ${cmd}"
403
404 ${cmd}
405 local ret=$?
406
407 log DEBUG "Returned with code '${ret}'"
408
409 return ${ret}
410}
411
1c6a4e30 412cmd_quiet() {
98146c00 413 cmd $@ &>/dev/null
3efecbb3
MT
414}
415
1c6a4e30 416cmd_exec() {
f80ce052
MT
417 local cmd=$@
418
419 log DEBUG "Exec'ing command: ${cmd}"
420
421 exec ${cmd}
422
423 log ERROR "Could not exec-ute: ${cmd}"
424 exit ${EXIT_ERROR}
425}
426
1c6a4e30 427cmd_not_implemented() {
2181765d
MT
428 assert false "not implemented"
429}
430
de3cecef
MT
431# Runs a command in a clean environment so that no confidential information
432# is leaked to any untrusted commands.
433cmd_clean_environment() {
434 local cmd=$@
435
436 log DEBUG "Running command in a clean environment: ${cmd}"
437 env -i -- ${cmd}
438 local ret=${?}
439
440 log DEBUG "Returned with code '${ret}'"
441 return ${ret}
442}
443
f5ee091e
MT
444# Executes the given command in background
445cmd_background() {
446 cmd_quiet $@ &
447}
448
449# Prints the PID of the process that was started last
450cmd_background_get_pid() {
451 print "${!}"
452}
453
454cmd_background_result() {
455 local pids=$@
456
457 wait ${pids}
458}
459
b8026986 460# Increase security of the read command
1c6a4e30 461read() {
b8026986
MT
462 builtin read -r $@
463}
464
1c6a4e30 465seq() {
3efecbb3
MT
466 if [ $# -eq 2 ]; then
467 eval echo {${1}..${2}}
468 elif [ $# -eq 3 ]; then
469 eval echo {${1}..${3}..${2}}
470 fi
471}
472
1c6a4e30 473which() {
76e6cd51
MT
474 type -P $@
475}
476
fe52c5e0 477# Prints the number of seconds since epoch.
1c6a4e30 478timestamp() {
fe52c5e0
MT
479 date -u "+%s"
480}
481
1c6a4e30 482beautify_time() {
d82cf370
MT
483 local value=${1}
484
485 local unit
486 local limit
487 for unit in s m h d w; do
488 case "${unit}" in
489 s|m|h)
490 limit=60
491 ;;
492 d)
493 limit=24
494 ;;
495 w)
496 limit=7
497 ;;
498 esac
499
500 [ ${value} -lt ${limit} ] && break
501
502 value=$(( ${value} / ${limit} ))
503 done
504
505 echo "${value}${unit}"
506}
711ffac1 507
1c6a4e30 508beautify_bytes() {
711ffac1
MT
509 local value=${1}
510
511 local unit
512 local limit=1024
513 for unit in B k M G T; do
514 [ ${value} -lt ${limit} ] && break
515 value=$(( ${value} / ${limit} ))
516 done
517
518 echo "${value}${unit}"
519}
943e3f7e 520
1c6a4e30 521module_load() {
943e3f7e
MT
522 local module=${1}
523
524 if ! grep -q "^${module}" /proc/modules; then
525 log DEBUG "Loading module '${module}'."
526 modprobe ${module}
527 fi
528}
6b3f9c85 529
1c6a4e30 530binary_exists() {
6b3f9c85
MT
531 local binary=${1}
532
533 if [ -n "$(type -p ${binary})" ]; then
534 return ${EXIT_OK}
535 fi
536
537 return ${EXIT_ERROR}
538}
d76f5107 539
1c6a4e30 540function_exists() {
1e6f187e
MT
541 local function="${1}"
542
543 if [ "$(type -t "${function}")" = "function" ]; then
544 return ${EXIT_TRUE}
545 fi
546
547 return ${EXIT_FALSE}
548}
549
1c6a4e30 550process_kill() {
d76f5107
MT
551 local process=${1}
552
553 if ! isinteger process; then
554 process=$(pidof ${process})
555 fi
556
557 local pid
558 local sig
559 for pid in ${process}; do
560 for sig in 15 9; do
561 [ -d "/proc/${pid}" ] || break
562
563 kill -${sig} ${pid}
564 sleep 1
565 done
566 done
567}
feb76eaf 568
1c6a4e30 569dec() {
feb76eaf
MT
570 local hex=${1}
571
572 if [ "${hex:0:2}" != "0x" ]; then
573 hex="0x${hex}"
574 fi
575
576 printf "%d\n" "${hex}"
577}
3a7fef62 578
1c6a4e30 579chr() {
5cf0edf9
MT
580 local char="${1}"
581
582 [ ${char} -lt 256 ] || return ${EXIT_ERROR}
583
584 printf "\\$(( ${char} / 64 * 100 + ${char} % 64 / 8 * 10 + ${char} % 8 ))\n"
585}
586
1c6a4e30 587ord() {
5cf0edf9
MT
588 LC_CTYPE="C" printf "%d\n" "'${1}"
589}
590
1c6a4e30 591hex() {
5cf0edf9
MT
592 printf "%X\n" "${1}"
593}
594
1c6a4e30 595network_is_running() {
3a7fef62
MT
596 # Check, if the network service is running.
597 service_is_active network
598}
f80ce052 599
1c6a4e30 600contains_spaces() {
f80ce052
MT
601 local var="$@"
602
603 # Eliminate spaces.
604 local var2=${var// /}
605
606 if [ ${#var} -ne ${#var2} ]; then
607 return ${EXIT_TRUE}
608 fi
609
610 return ${EXIT_FALSE}
611}
5cf0edf9 612
1c6a4e30 613string_split() {
5cf0edf9
MT
614 local string="$@"
615
616 local pos=0
617 while [ ${pos} -lt ${#string} ]; do
618 print "${string:${pos}:1}"
619 pos=$(( ${pos} + 1 ))
620 done
621
622 return ${EXIT_OK}
623}
624
1c6a4e30 625string_reverse() {
5cf0edf9
MT
626 local string="$@"
627
628 local output
629 local pos=0
630 while [ ${pos} -lt ${#string} ]; do
631 output="${string:${pos}:1}${output}"
632 pos=$(( ${pos} + 1 ))
633 done
634
635 print "${output}"
636 return ${EXIT_OK}
637}
638
1c6a4e30 639dec2bin() {
5cf0edf9
MT
640 local number="${1}"
641
642 local output
643
644 local i div
645 for i in 7 6 5 4 3 2 1; do
646 div=$(( 2 ** ${i} ))
647
648 if [ $(( ${number} / ${div} )) -eq 1 ]; then
649 output="${output}1"
650 else
651 output="${output}0"
652 fi
653 number="$(( ${number} % ${div} ))"
654 done
655
656 if [ $(( ${number} % 2 )) -eq 1 ]; then
657 output="${output}1"
658 else
659 output="${output}0"
660 fi
661
662 print "${output}"
663}
664
1c6a4e30 665bin2dec() {
5cf0edf9
MT
666 local string="${1}"
667 local number=0
668
669 local pos=0 char
670 while [ ${pos} -lt ${#string} ]; do
671 char="${string:${pos}:1}"
672 pos=$(( ${pos} + 1 ))
673
674 number=$(( ${number} << 1 ))
675
676 case "${char}" in
677 0) ;;
678 1)
679 number=$(( ${number} + 1 ))
680 ;;
681 *)
682 assert false "Invalid character: ${char}"
683 ;;
684 esac
685 done
686
687 print "${number}"
688 return ${EXIT_OK}
689}
690
1c6a4e30 691char2bin() {
5cf0edf9
MT
692 local dec="$(ord "${1}")"
693
694 dec2bin "${dec}"
695}
696
1c6a4e30 697bin2char() {
5cf0edf9
MT
698 local dec="$(bin2dec "$@")"
699
700 chr "${dec}"
701}
702
1c6a4e30 703bin2hex() {
5cf0edf9
MT
704 local dec="$(bin2dec "$@")"
705
706 dec2hex "${dec}"
707}
708
1c6a4e30 709hex2bin() {
5cf0edf9
MT
710 local dec="$(hex2dec "$@")"
711
712 dec2bin "${dec}"
713}
714
1c6a4e30 715hex2dec() {
5cf0edf9
MT
716 local hex="${1}"
717
718 # Prepend 0x if necessary.
719 [ "${hex:0:2}" = "0x" ] || hex="0x${hex}"
720
721 printf "%d\n" "${hex}"
722}
723
1c6a4e30 724dec2hex() {
5cf0edf9
MT
725 printf "%02x\n" "${1}"
726}