]> git.ipfire.org Git - people/ms/network.git/blame - src/header-config
Fix creating new configs
[people/ms/network.git] / src / header-config
CommitLineData
711ffac1
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###############################################################################
2a6b2397 21
fdd9ac5f
MT
22# Allow only one instance of this hook
23HOOK_UNIQUE="true"
24
2a6b2397 25hook_new() {
46a28dcd
MT
26 local zone="${1}"
27 shift
28
fdd9ac5f
MT
29 # Check if we are allowed to have multiple configurations of $HOOK
30 if enabled HOOK_UNIQUE && zone_config_hook_is_configured "${zone}" "${HOOK}"; then
31 error "You can only have one configuration of type ${HOOK}"
32 return ${EXIT_CONF_ERROR}
33 fi
34
320f1fda
JS
35 local id=$(zone_config_get_new_id ${zone})
36 log DEBUG "ID for the config is: ${id}"
37
636f1b96
MT
38 # Import all default variables
39 hook_set_defaults
40
46a28dcd 41 # Parse command line arguments
320f1fda
JS
42 if ! hook_parse_cmdline "${id}" "$@"; then
43 # Return an error if the parsing of the cmd line fails
46a28dcd
MT
44 return ${EXIT_ERROR}
45 fi
46
47 # Write configuration to disk
f1081966 48 if ! zone_config_settings_write "${zone}" "${HOOK}" "${id}"; then
46a28dcd
MT
49 return ${EXIT_ERROR}
50 fi
51
52 return ${EXIT_OK}
2a6b2397 53}
a14382e2
JS
54
55hook_edit() {
56 local zone=${1}
57 local config=${2}
58 shift 2
59
60 local hook=$(config_get_hook_from_config ${config})
61 local id=$(config_get_id_from_config ${config})
62
63 assert isset hook
64 assert isset id
65
66 if ! zone_exists ${zone}; then
67 error "Zone '${zone}' doesn't exist."
68 exit ${EXIT_ERROR}
69 fi
70
71 # Bring the config down
72 if device_exists ${zone}; then
73 if ! hook_config_cmd "down" "${zone}" "${hook}" "${hook}.${id}"; then
74 log ERROR "Could not bring config ${config} down for zone ${zone}"
75 return ${EXIT_ERROR}
76 fi
77 fi
78
636f1b96 79 local ${HOOK_SETTINGS}
a14382e2
JS
80
81 # If reading the config fails we cannot go on
82 if ! zone_config_settings_read "${zone}" "${config}"; then
83 log ERROR "Could read the config ${config} for zone ${zone}"
84 return ${EXIT_ERROR}
85 fi
86
320f1fda 87 if ! hook_parse_cmdline "${id}" "$@"; then
a14382e2
JS
88 # Return an error if the parsing of the cmd line fails
89 return ${EXIT_ERROR}
90 fi
91
92 # Write the settings to the config file
93 if ! zone_config_settings_write "${zone}" "${hook}" ${id}; then
94 log ERROR "Could not write config settings file ${config} for ${zone}"
95 return ${EXIT_ERROR}
96 fi
97
98 # Bring the config up
99 if device_exists ${zone}; then
100 if ! hook_config_cmd "up" "${zone}" "${hook}" "${hook}.${id}"; then
101 log ERROR "Could not bring config ${config} up for zone ${zone}"
102 return ${EXIT_ERROR}
103 fi
104 fi
105
106 exit ${EXIT_OK}
107}
a6ef0714
JS
108
109hook_destroy() {
110 return ${EXIT_OK}
111}
196b3149
JS
112
113
114# Returns the ID as a unique identifier
115# Should always be overwritten by a hook
116hook_hid() {
117 local zone=${1}
118 local config=${2}
119
120 config_get_id_from_config "${config}"
121}