]> git.ipfire.org Git - people/ms/network.git/blame - src/functions/functions.routing
dns: Add local domain name to DNS domain search list
[people/ms/network.git] / src / functions / functions.routing
CommitLineData
ff8ec5ef
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
1c6a4e30 22routing_has_default() {
ff8ec5ef
MT
23 ip route | grep -q "^default"
24}
25
1c6a4e30 26routing_default_update() {
ff8ec5ef
MT
27 local routes
28
b816e04b
MT
29 local zones=$(zones_get_nonlocal)
30 if [ -z "${zones}" ]; then
31 zones=$(zones_get_local)
32 fi
33
ff8ec5ef 34 local gateway
201b7dff 35 local proto
ff8ec5ef 36 local weight
b816e04b 37 local zone
e817357d 38 local cmd
ff8ec5ef 39
201b7dff
MT
40 for proto in ${IP_SUPPORTED_PROTOCOLS}; do
41 # Clear routes
42 routes=""
ff8ec5ef 43
e817357d
MT
44 cmd="ip $([ "${proto}" = "ipv6" ] && echo "-6") route"
45
201b7dff
MT
46 for zone in ${zones}; do
47 # Skip if zone is not up
c041b631 48 db_exists "${zone}/${proto}" || continue
ff8ec5ef 49
c041b631
MT
50 if [ "$(db_get "${zone}/${proto}/active")" = "1" ]; then
51 gateway="$(db_get "${zone}/${proto}/remote-ip-address")"
ff8ec5ef 52
6c74a64c
MT
53 # Go on if the device is not there anymore.
54 device_exists ${zone} || continue
28f0b4ab 55
8fdc3a35
SS
56 # On other devices, we will use the gateway if we got one.
57 if isset gateway; then
58 routes="${routes} nexthop via ${gateway}"
59
00b2c5c9 60 # If we have got a Point-to-Point device, we will directly send all
28f0b4ab 61 # packets into the pipe.
8fdc3a35 62 elif device_is_ptp ${zone}; then
59187e11 63 routes="${routes} dev ${zone}"
28f0b4ab 64
28f0b4ab
MT
65 # If none of the cases above apply, we cannot go on.
66 else
67 continue
e817357d 68 fi
b816e04b 69
28f0b4ab 70 # Apply weight.
c041b631 71 weight="$(db_get "${zone}/${proto}/weight")"
28f0b4ab 72 if isinteger ${weight}; then
201b7dff
MT
73 routes="${routes} weight ${weight}"
74 fi
75 else
76 log DEBUG "Ignoring zone '${zone}' which is not active."
ff8ec5ef 77 fi
201b7dff 78 done
ff8ec5ef 79
e817357d
MT
80 # Remove too much spaces.
81 routes=$(echo ${routes})
b816e04b 82
e817357d
MT
83 # Remove all default routes.
84 while ${cmd} | grep -q "^default"; do
85 ${cmd} del default
86 done
87
88 if [ -z "${routes}" ]; then
89 log INFO "Removed default route for ${proto}."
201b7dff 90 return ${EXIT_OK}
ff8ec5ef 91 fi
ff8ec5ef 92
201b7dff 93 log INFO "Setting default route for ${proto}: ${routes}"
b816e04b 94
28f0b4ab 95 cmd ${cmd} add default ${routes}
201b7dff 96 assert [ $? -eq 0 ]
e817357d
MT
97
98 case "${proto}" in
99 ipv6)
100 # Apply radvd configuration.
101 radvd_update
102 ;;
103 esac
201b7dff 104 done
ff8ec5ef
MT
105}
106
1c6a4e30 107routing_db_from_ppp() {
b816e04b
MT
108 local zone=${1}
109 local proto=${2}
110
2c973348
MT
111 assert isset zone
112 assert isset proto
113
b816e04b 114 # Save ppp configuration
c041b631 115 db_set "${zone}/${proto}/type" "ppp"
201b7dff
MT
116
117 if [ "${proto}" = "ipv6" ]; then
c041b631
MT
118 db_set "${zone}/${proto}/local-ip-address" "${PPP_LLLOCAL}"
119 db_set "${zone}/${proto}/remote-ip-address" "${PPP_LLREMOTE}"
201b7dff 120 elif [ "${proto}" = "ipv4" ]; then
c041b631
MT
121 db_set "${zone}/${proto}/local-ip-address" "${PPP_IPLOCAL}"
122 db_set "${zone}/${proto}/remote-ip-address" "${PPP_IPREMOTE}"
201b7dff 123 fi
b816e04b 124
c041b631
MT
125 # Save the transmitted DNS servers
126 if isset PPP_DNS1 || isset PPP_DNS2; then
127 db_set "${zone}/${proto}/domain-name-servers" "${PPP_DNS1} ${PPP_DNS2}"
128 else
129 db_set "${zone}/${proto}/domain-name-servers"
130 fi
b816e04b 131
c041b631
MT
132 # Save the MAC address of the remote DSLAM
133 if isset PPP_MACREMOTE; then
134 db_set "${zone}/${proto}/remote-address" "${PPP_MACREMOTE,,}"
135 fi
b816e04b
MT
136}
137
1c6a4e30 138routing_update() {
b816e04b 139 local zone=${1}
2c973348 140 assert isset zone
b816e04b
MT
141
142 # Nothing to do for local zones.
143 if zone_is_local ${zone}; then
144 return ${EXIT_OK}
145 fi
146
147 local proto=${2}
148 local table=${zone}
2c973348 149 assert isset proto
b816e04b 150
28f0b4ab
MT
151 local ip_cmd="ip"
152 if [ "${proto}" = "ipv6" ]; then
153 ip_cmd="${ip_cmd} -6"
154 fi
155
b816e04b 156 # Create routing table if not exists
8bd6339d 157 route_table_create ${table}
b816e04b
MT
158
159 log DEBUG "Flushing routing table ${table}"
28f0b4ab 160 cmd ${ip_cmd} route flush table ${table}
b816e04b 161
f5a771cf 162 # Exit here if there is no routing information.
c041b631 163 if ! db_exists "${zone}/${proto}"; then
f5a771cf
MT
164 return ${EXIT_OK}
165 fi
166
c041b631
MT
167 local local_ip_address="$(db_get "${zone}/${proto}/local-ip-address")"
168 local remote_ip_address="$(db_get "${zone}/${proto}/remote-ip-address")"
b816e04b 169
d5bace8d
MT
170 case "${proto}" in
171 ipv4)
172 local net_address=$(ipv4_get_netaddress ${local_ip_address})
173
174 log DEBUG "Adding route for subnet ${local_ip_address} to table ${table}"
28f0b4ab 175 cmd ${ip_cmd} route add table ${table} ${net_address} dev ${zone}
d5bace8d
MT
176 ;;
177 esac
b816e04b 178
28f0b4ab
MT
179 log DEBUG "Adding default route for table ${table}"
180 local routing_cmd="${ip_cmd} route add table ${table} default"
b816e04b 181 if isset remote_ip_address; then
28f0b4ab
MT
182 routing_cmd="${routing_cmd} via ${remote_ip_address}"
183 else
184 routing_cmd="${routing_cmd} dev ${zone}"
b816e04b 185 fi
28f0b4ab 186 cmd ${routing_cmd}
b816e04b 187
28f0b4ab 188 cmd ${ip_cmd} rule add from ${local_ip_address} lookup ${table}
b816e04b 189}