#!/bin/bash ############################################################################### # # # IPFire.org - A linux based firewall # # Copyright (C) 2010 Michael Tremer & Christian Schmidt # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation, either version 3 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # # # ############################################################################### # A simple print statement function print() { local fmt=${1}; shift printf "${fmt}\n" "$@" } # Print a pretty error message function error() { echo -e " ${COLOUR_ERROR}ERROR${COLOUR_NORMAL} : $@" >&2 } function error_log() { log ERROR "$@" } # Print a pretty warn message function warning() { echo -e " ${COLOUR_WARN}WARNING${COLOUR_NORMAL}: $@" >&2 } function warning_log() { log WARNING "$@" } function listsort() { local i for i in $@; do echo "${i}" done | sort | tr '\n' ' ' echo } function listmatch() { local match=${1} shift assert isset match local i for i in $@; do [ "${match}" = "${i}" ] && return ${EXIT_OK} done return ${EXIT_ERROR} } function listlength() { local length=0 local i for i in $@; do length=$(( ${length} + 1 )) done echo "${length}" } # Speedup function to avoid a call of the basename binary function basename() { echo "${1##*/}" } function touch() { local file=${1} : > ${file} } function enabled() { local param=${1} listmatch "${!param}" yes on true 1 } function mac_generate() { # Get a bunch of random hex digits # and remove all dashes from the input. local random=$(/dev/null } function seq() { if [ $# -eq 2 ]; then eval echo {${1}..${2}} elif [ $# -eq 3 ]; then eval echo {${1}..${3}..${2}} fi } function beautify_time() { local value=${1} local unit local limit for unit in s m h d w; do case "${unit}" in s|m|h) limit=60 ;; d) limit=24 ;; w) limit=7 ;; esac [ ${value} -lt ${limit} ] && break value=$(( ${value} / ${limit} )) done echo "${value}${unit}" } function beautify_bytes() { local value=${1} local unit local limit=1024 for unit in B k M G T; do [ ${value} -lt ${limit} ] && break value=$(( ${value} / ${limit} )) done echo "${value}${unit}" } function module_load() { local module=${1} if ! grep -q "^${module}" /proc/modules; then log DEBUG "Loading module '${module}'." modprobe ${module} fi } function binary_exists() { local binary=${1} if [ -n "$(type -p ${binary})" ]; then return ${EXIT_OK} fi return ${EXIT_ERROR} } function process_kill() { local process=${1} if ! isinteger process; then process=$(pidof ${process}) fi local pid local sig for pid in ${process}; do for sig in 15 9; do [ -d "/proc/${pid}" ] || break kill -${sig} ${pid} sleep 1 done done } function dec() { local hex=${1} if [ "${hex:0:2}" != "0x" ]; then hex="0x${hex}" fi printf "%d\n" "${hex}" } function network_is_running() { # Check, if the network service is running. service_is_active network }