]> git.ipfire.org Git - people/stevee/network.git/blob - src/functions/functions.dns
pppoe-server: Enable IPv6
[people/stevee/network.git] / src / functions / functions.dns
1 #!/bin/bash
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2012 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 # Set this to true if localhost should be added as the first DNS server.
23 DNS_USE_LOCAL_RESOLVER=true
24 NETWORK_SETTINGS_FILE_PARAMS="${NETWORK_SETTINGS_FILE_PARAMS} DNS_USE_LOCAL_RESOLVER"
25
26 # Set this option to true if the DNS servers should be queried in a random order.
27 # This is useful to load balance between multiple servers.
28 DNS_RANDOMIZE=false
29 NETWORK_SETTINGS_FILE_PARAMS="${NETWORK_SETTINGS_FILE_PARAMS} DNS_RANDOMIZE"
30
31 DNS_SEARCH_DOMAINS=""
32 NETWORK_SETTINGS_FILE_PARAMS="${NETWORK_SETTINGS_FILE_PARAMS} DNS_SEARCH_DOMAINS"
33
34 # Set this option to true if the DNS servers should be advertised by
35 # radvd.
36 DNS_ADVERTISE_SERVERS="true"
37
38 DNS_SERVER_CONFIG_FILE="${NETWORK_CONFIG_DIR}/dns-servers"
39 NETWORK_CONFIG_DNS_SERVER_PARAMS="server priority"
40
41 # Set the default priority for DNS servers.
42 DNS_SERVER_DEFAULT_PRIORITY="100"
43 DNS_SERVER_DYNAMIC_PRIORITY="10"
44
45 # Path to the configuration file of the DNS resolver.
46 RESOLV_CONF="/etc/resolv.conf"
47
48 dns_get_hostname() {
49 local address=${1}
50 assert isset address
51
52 (
53 unset HOSTNAME
54 eval $(ipcalc -h ${address} 2>/dev/null)
55 echo "${HOSTNAME}"
56 )
57 }
58
59 dns_server_list() {
60 [ -r "${DNS_SERVER_CONFIG_FILE}" ] || return ${EXIT_OK}
61
62 local line
63 local ${NETWORK_CONFIG_DNS_SERVER_PARAMS}
64 while read line; do
65 dns_server_parse_line ${line} || continue
66
67 print "${server}"
68 done < ${DNS_SERVER_CONFIG_FILE}
69
70 return ${EXIT_OK}
71 }
72
73 dns_server_list_sorted() {
74 [ -r "${DNS_SERVER_CONFIG_FILE}" ] || return ${EXIT_OK}
75
76 local servers=$(
77 # First get all servers from the configuration file.
78 while read -r line; do
79 dns_server_parse_line ${line} || continue
80
81 print "%d %s" "${priority}" "${server}"
82 done < ${DNS_SERVER_CONFIG_FILE}
83
84 # Then get all dynamically assigned DNS servers.
85 dns_server_get_zone_name_servers
86 )
87
88 # Nothing to do if we have got no DNS servers.
89 isset servers || return ${EXIT_OK}
90
91 # Sort everything we have got.
92 servers=$(sort -g -k1 <<< "${servers}")
93
94 # Remove the priority bit.
95 local server server_list
96 while read -r priority server; do
97 list_append server_list "${server}"
98 done <<< "${servers}"
99
100 # Return the list but remove duplicate entries, keeping
101 # the first and removing all others.
102 list_unique ${server_list}
103
104 return ${EXIT_OK}
105 }
106
107 dns_server_show() {
108 [ -r "${DNS_SERVER_CONFIG_FILE}" ] || return ${EXIT_OK}
109
110 local line
111 local ${NETWORK_CONFIG_DNS_SERVER_PARAMS}
112
113 local format="%-20s %-8s"
114 print "${format}" "SERVER" "PRIORITY"
115
116 while read -r line; do
117 dns_server_parse_line ${line} || continue
118
119 print "${format}" "${server}" "${priority}"
120 done < ${DNS_SERVER_CONFIG_FILE}
121
122 return ${EXIT_OK}
123 }
124
125 dns_server_add() {
126 local server=${1}
127 assert isset server
128
129 local priority=${2}
130 if ! isset priority; then
131 priority="${DNS_SERVER_DEFAULT_PRIORITY}"
132 fi
133 assert isinteger priority
134
135 # Add a new line to the configuration file.
136 print "server=\"%s\" priority=\"%d\"" "${server}" "${priority}" \
137 >> ${DNS_SERVER_CONFIG_FILE}
138
139 return ${EXIT_OK}
140 }
141
142 dns_server_exists() {
143 local entry=${1}
144 assert isset entry
145
146 [ -r "${DNS_SERVER_CONFIG_FILE}" ] || return ${EXIT_FALSE}
147
148 local line ${NETWORK_CONFIG_DNS_SERVER_PARAMS}
149 while read -r line; do
150 dns_server_parse_line ${line} || continue
151
152 [ "${entry}" = "${server}" ] && return ${EXIT_TRUE}
153 done < ${DNS_SERVER_CONFIG_FILE}
154
155 return ${EXIT_FALSE}
156 }
157
158 dns_server_remove() {
159 local entry=${1}
160 assert isset entry
161
162 # Check if the DNS server configuration file exists.
163 [ -r "${DNS_SERVER_CONFIG_FILE}" ] || return ${EXIT_ERROR}
164
165 # Create a tempfile.
166 local tempfile=$(mktemp)
167
168 local line ${NETWORK_CONFIG_DNS_SERVER_PARAMS}
169 while read -r line; do
170 dns_server_parse_line ${line} || continue
171
172 # Skip the line with the server we are searching for.
173 [ "${entry}" = "${server}" ] && continue
174
175 # Re-add the old line.
176 print "${line}"
177 done < ${DNS_SERVER_CONFIG_FILE} > ${tempfile}
178
179 # Overwrite the old content without the entry that has just been removed.
180 fread "${tempfile}" > ${DNS_SERVER_CONFIG_FILE}
181
182 # Remove the temporary file.
183 rm -f ${tempfile}
184
185 return ${EXIT_OK}
186 }
187
188 dns_server_flush() {
189 : > ${DNS_SERVER_CONFIG_FILE}
190 }
191
192 dns_server_parse_line() {
193 local arg
194
195 for arg in ${NETWORK_CONFIG_DNS_SERVER_PARAMS}; do
196 assign "${arg}" ""
197 done
198
199 while read -r arg; do
200 case "${arg}" in
201 server=*)
202 server=$(cli_get_val ${arg})
203 ;;
204 priority=*)
205 priority=$(cli_get_val ${arg})
206 ;;
207 esac
208 done <<< "$(args $@)"
209
210 # The server address must be set.
211 isset server || return ${EXIT_ERROR}
212
213 # The server address must also be a valid IP address.
214 ip_is_valid ${server} || return ${EXIT_ERROR}
215
216 # If priority is set, it must be an integer number.
217 if isset priority; then
218 isinteger priority || return ${EXIT_ERROR}
219
220 # Otherwise assign the default priority.
221 else
222 priority=${DNS_SERVER_DEFAULT_PRIORITY}
223 fi
224
225 return ${EXIT_OK}
226 }
227
228 # Update resolv.conf(5) when initializing the network.
229 init_register dns_generate_resolvconf
230
231 dns_generate_resolvconf() {
232 local file=${RESOLV_CONF}
233
234 log INFO "Updating resolver configuration..."
235
236 config_header "resolver configutation file" > ${file}
237
238 if enabled DNS_RANDOMIZE; then
239 print "option rotate\n" >> ${file}
240 fi
241
242 # Write search domains to file.
243 print "# Search domains" >> ${file}
244
245 local domain
246 for domain in $(dns_get_search_domains); do
247 print "search ${domain}"
248 done >> ${file}
249
250 print "\n# Nameservers" >> ${file}
251
252 # Add the local resolver as the first DNS server if enabled.
253 if enabled DNS_USE_LOCAL_RESOLVER; then
254 print "nameserver ::1" >> ${file}
255 fi
256
257 # Dump all DNS servers.
258 for server in $(dns_server_list_sorted); do
259 print "nameserver ${server}"
260 done >> ${file}
261 }
262
263 dns_get_search_domains() {
264 # Add search domains.
265 local search_domains="$(unquote ${DNS_SEARCH_DOMAINS})"
266
267 # Get search domains from DHCP clients, etc.
268 local domain proto zone
269
270 for zone in $(zones_get_all); do
271 for proto in ${IP_SUPPORTED_PROTOCOLS}; do
272 domain="$(db_get "${zone}/${proto}/domain-name")"
273 isset domain || continue
274
275 list_append search_domains "${domainname}"
276 done
277 done
278
279 # Add our own domain
280 list_append search_domains "$(config_domainname)"
281
282 # Sort out duplicate entries.
283 list_unique ${search_domains}
284 }
285
286 dns_server_get_zone_name_servers() {
287 local priority proto server servers zone
288
289 for zone in $(zones_get_all); do
290 for proto in ${IP_SUPPORTED_PROTOCOLS}; do
291 priority="$(db_get "${zone}/${proto}/domain-name-servers-priority")"
292 isset priority || priority="${DNS_SERVER_DYNAMIC_PRIORITY}"
293
294 servers="$(db_get "${zone}/${proto}/domain-name-servers")"
295 for server in ${servers}; do
296 print "${priority} ${server}"
297 done
298 done
299 done
300 }