]> git.ipfire.org Git - people/stevee/network.git/blob - src/functions/functions.settings
a7d94640546b5402e677d331638bb78f280c539e
[people/stevee/network.git] / src / functions / functions.settings
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
22 settings_read() {
23 local file="${1}"
24 assert isset file
25 shift
26
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
40 done <<< "$(args $@)"
41
42 if [ -d "${file}" ]; then
43 error "Not a configuration file: '${file}'"
44 return ${EXIT_ERROR}
45 fi
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
58 list_match ${key} ${valid_keys} || continue
59 fi
60
61 val=$(cli_get_val ${line})
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
74 settings_read_array() {
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
96 if ! list_match ${key} ${valid_keys}; then
97 log DEBUG "Ignoring configuration setting: ${key}"
98 continue
99 fi
100 fi
101
102 val=$(cli_get_val ${line})
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.
116 settings_strip() {
117 local var="$@"
118
119 # Do nothing for strings that contain spaces.
120 #if contains_spaces ${var}; then
121 # print "${var}"
122 # return ${EXIT_OK}
123 #fi
124
125 unquote "${var}"
126 }
127
128 settings_write() {
129 local settings_file="${1}"
130 assert isset settings_file
131 shift
132
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
149 done <<< "$(args $@)"
150
151 # Check if all values to be written are sane
152 if isset check_func && ! settings_check "${check_func}"; then
153 return ${EXIT_ERROR}
154 fi
155
156 log DEBUG "Writing settings file '${settings_file}'"
157
158 mkdir -p $(dirname ${settings_file}) 2>/dev/null
159 > ${settings_file}
160
161 local param
162 for param in $(list_sort $@); do
163 echo "${param}=\"${!param}\"" >> ${settings_file}
164 done
165 }
166
167 settings_remove() {
168 local settings_file="${1}"
169
170 local abspath="$(readlink -e "${settings_file}")"
171 if [ "${settings_file}" != "${abspath}" ]; then
172 log ERROR "Can only handle absolute paths"
173 return ${EXIT_ERROR}
174 fi
175
176 file_delete "${settings_file}"
177 }
178
179 settings_print() {
180 local param
181
182 for param in $(list_sort $@); do
183 printf "%-32s = %s\n" "${param}" "${!param}"
184 done
185 }
186
187 settings_check() {
188 local check_func="${1}"
189
190 # Execute the check function
191 "${check_func}"
192 local ret="${?}"
193
194 case "${ret}" in
195 # OK
196 ${EXIT_OK}|${EXIT_TRUE})
197 log DEBUG "Configuration check succeeded."
198 return ${EXIT_TRUE}
199 ;;
200
201 # Error
202 ${EXIT_ERROR}|${EXIT_FALSE})
203 log CRITICAL "Configuration check failed. No settings have been written."
204 return ${EXIT_FALSE}
205 ;;
206
207 # Command not found
208 ${EXIT_COMMAND_NOT_FOUND})
209 log CRITICAL "Configuration check function '${check_func}' was not found."
210 return ${EXIT_FALSE}
211 ;;
212 esac
213
214 log CRITICAL "Unhandled exit code for '${check_func}': ${ret}"
215 return ${EXIT_ERROR}
216 }
217
218 settings_set() {
219 while [ $# -gt 0 ]; do
220 case "${1}" in
221 *=*)
222 local key=$(cli_get_key ${1})
223 local val=$(cli_get_val ${1})
224
225 log INFO "Setting configuration option '${key}=${val}'".
226
227 printf -v ${key} "%s" "${val}"
228 ;;
229 *)
230 warning "Invalid parameter given: ${1}"
231 ;;
232 esac
233 shift
234 done
235 }
236
237 network_settings_read() {
238 local options="${NETWORK_SETTINGS_FILE_PARAMS}"
239
240 # If the DEBUG variable has already been set,
241 # don't overwrite it.
242 if [ -n "${DEBUG}" ]; then
243 list_remove options DEBUG
244 fi
245
246 settings_read "${NETWORK_SETTINGS_FILE}" ${options}
247 }
248
249 network_settings_write() {
250 settings_write "${NETWORK_SETTINGS_FILE}" ${NETWORK_SETTINGS_FILE_PARAMS}
251 }
252
253 network_settings_set() {
254 # Process any settings that require immediate actin
255 while [ $# -gt 0 ]; do
256 local arg=${1}
257 shift
258
259 case "${arg}" in
260 *=*)
261 local key=$(cli_get_key ${arg})
262 local val=$(cli_get_val ${arg})
263
264 case "${key}" in
265 DNS_RANDOMIZE|DNS_SEARCH_DOMAIN|DNS_USE_LOCAL_RESOLVER)
266 dns_generate_resolvconf
267 ;;
268
269 WIRELESS_REGULATORY_DOMAIN)
270 if ! wireless_valid_reg_domain "${val}"; then
271 warning "Ignoring invalid wireless regulatory domain: ${val}"
272 continue
273 fi
274
275 if ! wireless_set_reg_domain "${val}"; then
276 error "Error setting wireless regulatory domain: ${val}"
277 fi
278 ;;
279 esac
280 ;;
281 esac
282
283 # Save setting
284 settings_set ${arg}
285 done
286
287 return ${EXIT_OK}
288 }
289
290 network_settings_print() {
291 settings_print ${NETWORK_SETTINGS_FILE_PARAMS}
292 }
293
294 network_settings_list() {
295 print "${NETWORK_SETTINGS_FILE_PARAMS}"
296 }
297
298 firewall_settings_read() {
299 settings_read "${FIREWALL_SETTINGS_FILE}" "${FIREWALL_SETTINGS_PARAMS}"
300 }
301
302 firewall_settings_write() {
303 settings_write "${FIREWALL_SETTINGS_FILE}" "${FIREWALL_SETTINGS_PARAMS}"
304 }
305
306 firewall_settings_print() {
307 settings_print "${FIREWALL_SETTINGS_PARAMS}"
308 }