]> git.ipfire.org Git - people/ms/network.git/blame - src/functions/functions.settings
firewall: Fix reading/writing settings
[people/ms/network.git] / src / functions / functions.settings
CommitLineData
e9df08ad
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2014 IPFire Network Development Team #
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
1c6a4e30 22settings_read() {
2472e0ea 23 local file="${1}"
e9df08ad
MT
24 assert isset file
25 shift
26
2472e0ea
MT
27 local valid_keys
28 local ignore_superfluous_settings="false"
29
30 local arg
31 while read -r arg; do
32 case "${arg}" in
33 --ignore-superfluous-settings)
34 ignore_superfluous_settings="true"
35 ;;
36 *)
37 list_append valid_keys "${arg}"
38 ;;
39 esac
2212045f 40 done <<< "$(args "$@")"
2472e0ea
MT
41
42 if [ -d "${file}" ]; then
43 error "Not a configuration file: '${file}'"
44 return ${EXIT_ERROR}
45 fi
e9df08ad
MT
46
47 # Exit if the file cannot be read.
48 [ -r "${file}" ] || return ${EXIT_ERROR}
49
50 local line key val
51 while read -r line; do
52 case "${line}" in
53 *=*)
54 key=$(cli_get_key ${line})
55
56 # If valid keys is set, key must be in the list.
57 if [ -n "${valid_keys}" ]; then
1ef1c5b4 58 list_match ${key} ${valid_keys} || continue
e9df08ad
MT
59 fi
60
2212045f 61 val=$(cli_get_val "${line}")
e9df08ad
MT
62 val=$(settings_strip ${val})
63
64 # Assign variable.
65 printf -v ${key} "%s" "${val}"
66 ;;
67 *)
68 log DEBUG "Invalid line in configuration file: ${line}"
69 ;;
70 esac
71 done < ${file}
72}
73
1c6a4e30 74settings_read_array() {
e9df08ad
MT
75 local file=${1}
76 assert isset file
77 shift
78
79 local array=${1}
80 assert isset array
81 shift
82
83 local valid_keys=$@
84
85 # Exit if the file cannot be read.
86 [ -r "${file}" ] || return ${EXIT_ERROR}
87
88 local line key val
89 while read -r line; do
90 case "${line}" in
91 *=*)
92 key=$(cli_get_key ${line})
93
94 # If valid_keys is set, key must be in the list.
95 if [ -n "${valid_keys}" ]; then
8c9205b1 96 if ! list_match ${key} ${valid_keys}; then
e9df08ad
MT
97 log DEBUG "Ignoring configuration setting: ${key}"
98 continue
99 fi
100 fi
101
2212045f 102 val=$(cli_get_val "${line}")
e9df08ad
MT
103 val=$(settings_strip ${val})
104
105 # Assign variable.
106 printf -v "${array}["${key}"]" "%s" "${val}"
107 ;;
108 *)
109 log DEBUG "Invalid line in configuration file: ${line}"
110 ;;
111 esac
112 done < ${file}
113}
114
115# Strip leading and trailing "s.
1c6a4e30 116settings_strip() {
e9df08ad
MT
117 local var="$@"
118
119 # Do nothing for strings that contain spaces.
1ba6a2bb
MT
120 #if contains_spaces ${var}; then
121 # print "${var}"
122 # return ${EXIT_OK}
123 #fi
e9df08ad
MT
124
125 unquote "${var}"
126}
127
1c6a4e30 128settings_write() {
1e6f187e 129 local settings_file="${1}"
e9df08ad
MT
130 assert isset settings_file
131 shift
132
1e6f187e
MT
133 local check_func
134
135 local arg
136 while read arg; do
137 case "${arg}" in
138 --check=*)
139 check_func="$(cli_get_val "${arg}")"
140 ;;
141
142 # Stop argument processing when reaching the first
143 # configuration parameter
144 *)
145 break
146 ;;
147 esac
148 shift
2212045f 149 done <<< "$(args "$@")"
1e6f187e 150
e9df08ad 151 # Check if all values to be written are sane
1e6f187e 152 if isset check_func && ! settings_check "${check_func}"; then
e9df08ad
MT
153 return ${EXIT_ERROR}
154 fi
155
39aae674
MT
156 if ! make_parent_directory "${settings_file}"; then
157 return ${EXIT_ERROR}
158 fi
e9df08ad 159
39aae674 160 log DEBUG "Writing settings file '${settings_file}'"
e9df08ad
MT
161
162 local param
2212045f 163 for param in $(list_sort "$@"); do
39aae674
MT
164 echo "${param}=\"${!param}\""
165 done > ${settings_file}
e9df08ad
MT
166}
167
1c6a4e30 168settings_remove() {
e9df08ad
MT
169 local settings_file="${1}"
170
171 local abspath="$(readlink -e "${settings_file}")"
172 if [ "${settings_file}" != "${abspath}" ]; then
173 log ERROR "Can only handle absolute paths"
174 return ${EXIT_ERROR}
175 fi
176
8f202217 177 file_delete "${settings_file}"
e9df08ad
MT
178}
179
1c6a4e30 180settings_print() {
e9df08ad
MT
181 local param
182
2212045f 183 for param in $(list_sort "$@"); do
e9df08ad
MT
184 printf "%-32s = %s\n" "${param}" "${!param}"
185 done
186}
187
1c6a4e30 188settings_check() {
1e6f187e
MT
189 local check_func="${1}"
190
191 # Execute the check function
192 "${check_func}"
193 local ret="${?}"
194
195 case "${ret}" in
196 # OK
197 ${EXIT_OK}|${EXIT_TRUE})
198 log DEBUG "Configuration check succeeded."
199 return ${EXIT_TRUE}
200 ;;
201
202 # Error
203 ${EXIT_ERROR}|${EXIT_FALSE})
204 log CRITICAL "Configuration check failed. No settings have been written."
205 return ${EXIT_FALSE}
206 ;;
207
208 # Command not found
209 ${EXIT_COMMAND_NOT_FOUND})
210 log CRITICAL "Configuration check function '${check_func}' was not found."
211 return ${EXIT_FALSE}
212 ;;
213 esac
214
215 log CRITICAL "Unhandled exit code for '${check_func}': ${ret}"
216 return ${EXIT_ERROR}
e9df08ad
MT
217}
218
1c6a4e30 219settings_set() {
e9df08ad
MT
220 while [ $# -gt 0 ]; do
221 case "${1}" in
222 *=*)
2212045f
JS
223 local key=$(cli_get_key "${1}")
224 local val=$(cli_get_val "${1}")
e9df08ad
MT
225
226 log INFO "Setting configuration option '${key}=${val}'".
227
228 printf -v ${key} "%s" "${val}"
229 ;;
230 *)
231 warning "Invalid parameter given: ${1}"
232 ;;
233 esac
234 shift
235 done
236}
237
1c6a4e30 238network_settings_read() {
e9df08ad
MT
239 local options="${NETWORK_SETTINGS_FILE_PARAMS}"
240
241 # If the DEBUG variable has already been set,
242 # don't overwrite it.
243 if [ -n "${DEBUG}" ]; then
244 list_remove options DEBUG
245 fi
246
247 settings_read "${NETWORK_SETTINGS_FILE}" ${options}
248}
249
1c6a4e30 250network_settings_write() {
e9df08ad 251 settings_write "${NETWORK_SETTINGS_FILE}" ${NETWORK_SETTINGS_FILE_PARAMS}
e9df08ad
MT
252}
253
cfa738f1 254network_settings_set() {
cfa738f1
MT
255 # Process any settings that require immediate actin
256 while [ $# -gt 0 ]; do
ab9e0fd0
MT
257 local arg=${1}
258 shift
259
260 case "${arg}" in
cfa738f1 261 *=*)
2212045f
JS
262 local key=$(cli_get_key "${arg}")
263 local val=$(cli_get_val "${arg}")
cfa738f1
MT
264
265 case "${key}" in
c8425c75
MT
266 DNS_RANDOMIZE|DNS_SEARCH_DOMAIN|DNS_USE_LOCAL_RESOLVER)
267 dns_generate_resolvconf
268 ;;
269
cfa738f1 270 WIRELESS_REGULATORY_DOMAIN)
ab9e0fd0
MT
271 if ! wireless_valid_reg_domain "${val}"; then
272 warning "Ignoring invalid wireless regulatory domain: ${val}"
273 continue
274 fi
275
276 if ! wireless_set_reg_domain "${val}"; then
277 error "Error setting wireless regulatory domain: ${val}"
278 fi
cfa738f1
MT
279 ;;
280 esac
281 ;;
282 esac
ab9e0fd0
MT
283
284 # Save setting
285 settings_set ${arg}
cfa738f1
MT
286 done
287
288 return ${EXIT_OK}
289}
290
1c6a4e30 291network_settings_print() {
e9df08ad
MT
292 settings_print ${NETWORK_SETTINGS_FILE_PARAMS}
293}
294
1c6a4e30 295network_settings_list() {
bae37360
MT
296 print "${NETWORK_SETTINGS_FILE_PARAMS}"
297}
298
1c6a4e30 299firewall_settings_read() {
c69adafd 300 settings_read "${FIREWALL_SETTINGS_FILE}" "${FIREWALL_SETTINGS[*]}"
e9df08ad
MT
301}
302
1c6a4e30 303firewall_settings_write() {
c69adafd 304 settings_write "${FIREWALL_SETTINGS_FILE}" "${FIREWALL_SETTINGS[*]}"
e9df08ad
MT
305}
306
1c6a4e30 307firewall_settings_print() {
c69adafd 308 settings_print "${FIREWALL_SETTINGS[*]}"
e9df08ad 309}