]> git.ipfire.org Git - people/stevee/network.git/blame - src/functions/functions.hook
wireless-ap: Bring up hostapd, too when device is plugged in
[people/stevee/network.git] / src / functions / functions.hook
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
2181765d
MT
22HOOK_COMMANDS_CONFIG="hook_create hook_down hook_status hook_up"
23
08c5b789
MT
24HOOK_COMMANDS_PORT="hook_create hook_down hook_edit hook_hotplug \
25 hook_hotplug_rename hook_info hook_status hook_up"
2181765d 26
2c2aa587 27HOOK_COMMANDS_ZONE="hook_add hook_create hook_discover hook_down hook_edit hook_help \
2181765d
MT
28 hook_info hook_remove hook_status hook_up \
29 \
30 hook_config_create hook_config_edit hook_config_remove hook_config_show \
31 \
32 hook_port hook_port_add hook_port_edit hook_port_remove hook_port_show \
33 hook_port_status hook_port_up hook_port_down \
34 \
35 hook_ppp_ip_pre_up hook_ppp_ipv4_down hook_ppp_ipv4_up \
36 hook_ipv6_down hook_ipv6_up hook_ppp_write_config"
37
d61a01d4
MT
38function hook_dir() {
39 local type=${1}
40
943e3f7e
MT
41 if [ -n "${type}" ]; then
42 type="/${type}s"
43 fi
44
d2a21d01 45 echo "${NETWORK_HOOKS_DIR}${type}"
d61a01d4 46}
f41fa3d7 47NETWORK_HOOKS_DIR_ZONES="$(hook_dir zone)"
d61a01d4 48
1848564d 49function hook_exists() {
d61a01d4
MT
50 local type=${1}
51 local hook=${2}
1848564d 52
943e3f7e
MT
53 assert isset type
54 assert isset hook
55
f41fa3d7
MT
56 # Add the path prefix.
57 hook="$(hook_dir ${type})/${hook}"
1848564d 58
f41fa3d7 59 [ ! -d "${hook}" ] && [ -x "${hook}" ]
1848564d
MT
60}
61
d61a01d4 62function hook_exec() {
2181765d 63 local type="${1}"
943e3f7e 64 assert isset type
2181765d
MT
65
66 local hook="${2}"
943e3f7e 67 assert isset hook
2181765d
MT
68
69 local cmd="${3}"
f41fa3d7
MT
70 assert isset cmd
71
72 assert hook_exists "${type}" "${hook}"
2181765d
MT
73 shift 3
74
75 # Complete the hook command by prepending "hook_"
76 local hook_cmd="hook_${cmd}"
77
78 # Check if the hook action is valid.
79 local valid_commands
80 case "${type}" in
81 "config")
82 valid_commands="${HOOK_COMMANDS_CONFIG}"
83 ;;
84 "port")
85 valid_commands="${HOOK_COMMANDS_PORT}"
86 ;;
87 "zone")
88 valid_commands="${HOOK_COMMANDS_ZONE}"
89 ;;
90 esac
91 isset valid_commands && assert list_match "${hook_cmd}" ${valid_commands}
92
93 local hook_path="$(hook_dir ${type})/${hook}"
f41fa3d7
MT
94
95 # For performance reasons, all hooks are executed
96 # in a subshell and so will inherit the currently
97 # running environment.
98 (
99 # Set the name of the hook.
100 HOOK=$(basename ${hook})
101
102 # Source the code of the hook.
2181765d 103 source "${hook_path}"
f41fa3d7
MT
104
105 # Make sure HOOK is still properly set.
106 assert isset HOOK
943e3f7e 107
f41fa3d7 108 # Execute the requested command.
2181765d 109 cmd "${hook_cmd}" "$@"
f41fa3d7
MT
110 )
111 local ret=$?
112
2181765d 113 case "${ret}" in
828eb94a
MT
114 ${EXIT_COMMAND_NOT_FOUND}|${EXIT_NOT_SUPPORTED})
115 log ERROR "Hook '${hook}' does not implement the method '${cmd}':"
116 log ERROR " arguments: $@"
2181765d
MT
117 exit ${EXIT_COMMAND_NOT_FOUND}
118 ;;
119 ${EXIT_ERROR_ASSERT})
120 log ERROR "Hook exited with an assertion error."
121 exit ${EXIT_ERROR_ASSERT}
122 ;;
123 esac
d61a01d4 124
f41fa3d7 125 return ${ret}
d61a01d4
MT
126}
127
128function config_get_hook() {
129 local config=${1}
130
943e3f7e 131 assert isset config
a5ebb169 132 assert [ -e "${config}" ]
943e3f7e 133
d61a01d4
MT
134 (
135 . ${config}
136 echo "${HOOK}"
137 )
138}
139
d61a01d4
MT
140function hook_zone_exists() {
141 hook_exists zone $@
142}
143
d61a01d4 144function hook_zone_config_exists() {
1848564d
MT
145 local hook_zone=${1}
146 local hook_config=${2}
147
f41fa3d7 148 hook_exists zone "${hook_zone}.configs/${hook_config}"
1848564d
MT
149}
150
d61a01d4 151function hook_zone_has_configs() {
1848564d
MT
152 local hook=${1}
153
f41fa3d7 154 [ -d "${NETWORK_HOOKS_DIR_ZONES}/${hook}.configs" ]
1848564d
MT
155}
156
d61a01d4
MT
157function hook_zone_exec() {
158 hook_exec zone $@
1848564d
MT
159}
160
d61a01d4 161function hook_zone_config_exec() {
1848564d 162 local hook_zone=${1}
f41fa3d7 163 local hook_port=${2}
1848564d
MT
164 shift 2
165
f41fa3d7 166 hook_zone_exec "${hook_zone}.configs/${hook_port}" $@
1848564d
MT
167}
168
d61a01d4 169function hook_zone_get_all() {
1848564d
MT
170 local type=${1}
171
172 local hook
d61a01d4 173 for hook in $(hook_dir zone)/*; do
1848564d 174 hook=$(basename ${hook})
d61a01d4 175 hook_zone_exists ${hook} && echo "${hook}"
03170817 176 done
1848564d
MT
177}
178
a5ebb169
MT
179function hook_zone_configs_get_all() {
180 local hook=${1}
181
182 if ! hook_exists zone ${hook}; then
183 error "Hook '${hook}' does not exist."
184 return ${EXIT_ERROR}
185 fi
186
187 # If the zone hook has got no configurations we exit silently
188 if ! hook_zone_has_configs ${hook}; then
189 return ${EXIT_OK}
190 fi
191
192 local h
193 for h in $(hook_dir zone)/${hook}.configs/*; do
194 h=$(basename ${h})
195 if hook_zone_config_exists ${hook} ${h}; then
196 echo "${h}"
197 fi
03170817 198 done
a5ebb169
MT
199
200 return ${EXIT_OK}
1848564d 201}