]> git.ipfire.org Git - people/stevee/network.git/blame - src/hooks/zones/pppoe
Rename all "config" to "settings"
[people/stevee/network.git] / src / hooks / zones / pppoe
CommitLineData
1848564d
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
97cb552e 5# Copyright (C) 2012 IPFire Network Development Team #
1848564d
MT
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
f41fa3d7 22. /usr/lib/network/header-zone
1848564d 23
97cb552e 24HOOK_SETTINGS="HOOK ACCESS_CONCENTRATOR AUTH USERNAME PASSWORD"
529141df 25HOOK_SETTINGS="${HOOK_SETTINGS} SERVICE_NAME MTU IPV6 PREFIX_DELEGATION"
1848564d 26
97cb552e
MT
27# User credentials for the dialin.
28USERNAME=""
29PASSWORD=""
1848564d 30
97cb552e 31# Set the authentication mechanism.
1848564d 32AUTH=
97cb552e 33
97cb552e
MT
34# Access Concentrator.
35ACCESS_CONCENTRATOR=""
36
37# Service name.
38SERVICE_NAME=""
39
40# Maximum Transmission Unit.
41# 1492 is a very common value for that.
1848564d 42MTU=1492
1848564d 43
97cb552e 44# This hook can work with all authentication methods supported by pppd.
3a829636 45PPPOE_SUPPORTED_AUTH_METHODS="${PPP_SUPPORTED_AUTH_METHODS}"
1848564d
MT
46PPPOE_PLUGIN="rp-pppoe.so"
47
69e93b3c
MT
48# Request an IPv6 address.
49IPV6="true"
50
08e40c8c
MT
51# Use IPv6 prefix delegation.
52PREFIX_DELEGATION="false"
53
2181765d 54function hook_check() {
97cb552e
MT
55 assert isset USERNAME
56 assert isset PASSWORD
261132f9 57
3a829636 58 isset AUTH && assert isoneof AUTH ${PPPOE_SUPPORTED_AUTH_METHODS}
261132f9 59
69e93b3c 60 assert isset IPV6
08e40c8c 61 assert isset PREFIX_DELEGATION
1848564d
MT
62}
63
2181765d 64function hook_parse_cmdline() {
1848564d 65 while [ $# -gt 0 ]; do
97cb552e
MT
66 case "${1}" in
67 --access-concentrator=*)
68 ACCESS_CONCENTRATOR=$(cli_get_val ${1})
1848564d 69 ;;
97cb552e
MT
70 --auth=*)
71 AUTH=$(cli_get_val ${1})
1848564d 72 ;;
69e93b3c
MT
73 --ipv6=*)
74 local value="$(cli_get_val "${1}")"
75 if enabled value; then
76 IPV6="true"
77 else
78 IPV6="false"
79 fi
80 ;;
1848564d 81 --mtu=*)
97cb552e 82 MTU=$(cli_get_val ${1})
1848564d 83 ;;
97cb552e
MT
84 --password=*)
85 PASSWORD=$(cli_get_val ${1})
1848564d 86 ;;
08e40c8c
MT
87 --prefix-delegation=*)
88 PREFIX_DELEGATION="$(cli_get_bool "${1}")"
89 ;;
97cb552e
MT
90 --service-name=*)
91 SERVICE_NAME=$(cli_get_val ${1})
1848564d 92 ;;
97cb552e
MT
93 --username=*)
94 USERNAME=$(cli_get_val ${1})
201b7dff 95 ;;
1848564d 96 *)
97cb552e 97 warning "Unknown argument: ${1}" >&2
1848564d
MT
98 ;;
99 esac
100 shift
101 done
1848564d
MT
102}
103
2181765d 104function hook_up() {
1848564d 105 local zone=${1}
711ffac1
MT
106 assert isset zone
107
e9df08ad 108 zone_settings_read "${zone}" ${HOOK_SETTINGS}
2044f591
MT
109
110 # Bring up the port.
529141df
MT
111 local port=$(__hook_get_port "${zone}")
112 port_up "${port}"
2044f591 113
97cb552e
MT
114 # Start the ppp daemon.
115 pppd_start ${zone}
da453c33 116
97cb552e 117 exit ${EXIT_OK}
1848564d
MT
118}
119
2181765d 120function hook_down() {
1848564d 121 local zone=${1}
97cb552e 122 assert isset zone
1848564d 123
e9df08ad 124 zone_settings_read "${zone}" ${HOOK_SETTINGS}
2044f591 125
97cb552e
MT
126 # Stop the ppp daemon.
127 pppd_stop ${zone}
1848564d 128
2044f591
MT
129 # Bring down the port.
130 log DEBUG "Bringing down port '${PORT}'."
131 port_down ${PORT}
132
1848564d
MT
133 exit ${EXIT_OK}
134}
135
2181765d 136function hook_discover() {
1848564d
MT
137 local device=${1}
138
139 if [ "$(device_get_type ${device})" != "real" ]; then
5b20e43a 140 exit ${EXIT_ERROR}
1848564d
MT
141 fi
142
143 local output
144 output=$(pppoe-discovery -I ${device} -U $(uuid) 2>&1)
145
146 # Exit if there was not output
147 [ -z "${output}" ] && exit ${DISCOVER_ERROR}
148
149 # Exit if PADI timed out
150 grep -q "Timeout" <<<${output} && exit ${DISCOVER_ERROR}
151
152 local ac
153 while read line; do
154 case "${line}" in
155 Access-Concentrator:*)
156 ac="${line#Access-Concentrator: }"
157 ;;
158 esac
159 done <<<"${output}"
160
161 echo "ACCESS_CONCENTRATOR=\"$ac\""
162
163 exit ${DISCOVER_OK}
164}
5b20e43a 165
2181765d 166function hook_status() {
8eadf1da 167 local zone=${1}
711ffac1
MT
168 assert isset zone
169
3cb2fc42 170 cli_device_headline ${zone}
8eadf1da 171
e9df08ad 172 zone_settings_read "${zone}" ${HOOK_SETTINGS}
711ffac1 173
3cb2fc42 174 cli_headline 2 "Configuration"
97cb552e
MT
175 cli_print_fmt1 2 "Username" "${USERNAME}"
176 cli_print_fmt1 2 "Password" "<hidden>"
529141df
MT
177
178 local port=$(__hook_get_port "${zone}")
179 if isset port; then
180 cli_print_fmt1 2 "Port" "${port}"
181 fi
3cb2fc42
MT
182 cli_space
183
8eadf1da
MT
184 # Exit if zone is down
185 if ! zone_is_up ${zone}; then
186 echo # Empty line
187 exit ${EXIT_ERROR}
188 fi
189
711ffac1
MT
190 # XXX display time since connection started
191
3cb2fc42 192 cli_headline 2 "Point-to-Point-over-Ethernet protocol"
201b7dff
MT
193 local proto
194 for proto in ${IP_SUPPORTED_PROTOCOLS}; do
195 routing_db_exists ${zone} ${proto} || continue
3cb2fc42
MT
196
197 local headline
198 case "${proto}" in
199 ipv6)
200 headline="Internet Protocol Version 6"
201 ;;
202 ipv4)
203 headline="Internet Protocol Version 4"
204 ;;
205 *)
206 headline="Unkown protocol"
207 ;;
208 esac
209 cli_headline 3 "${headline}"
210
211 cli_print_fmt1 3 "IP address" "$(routing_db_get ${zone} ${proto} local-ip-address)"
212 cli_print_fmt1 3 "Gateway" "$(routing_db_get ${zone} ${proto} remote-ip-address)"
213 cli_print_fmt1 3 "DNS servers" "$(routing_db_get ${zone} ${proto} dns)"
214 cli_space
215 cli_print_fmt1 3 "MAC-Remote" "$(routing_db_get ${zone} ${proto} remote-address)"
216 cli_space
201b7dff 217 done
3cb2fc42 218
8eadf1da
MT
219 exit ${EXIT_OK}
220}
221
2181765d 222function hook_ppp_write_config() {
97cb552e
MT
223 local zone=${1}
224 assert isset zone
225
226 local file=${2}
227 assert isset file
228
229 # Read in the configuration files.
e9df08ad 230 zone_settings_read "${zone}" ${HOOK_SETTINGS}
97cb552e 231
529141df
MT
232 # A port has to be assigned for this action
233 local port=$(__hook_get_port "${zone}")
234 if ! isset port; then
235 error "No port assigned to pppoe hook of zone '${zone}'"
236 exit ${EXIT_ERROR}
237 fi
238
97cb552e
MT
239 # Prepare the command line options for the pppoe plugin.
240 local plugin_options
241
242 # Add the access concentrator (if any).
243 if isset ACCESS_CONCENTRATOR; then
244 plugin_options="${plugin_options} rp_pppoe_ac '${ACCESS_CONCENTRATOR}'"
711ffac1
MT
245 fi
246
97cb552e
MT
247 # Add the service name (if any).
248 if isset SERVICE_NAME; then
249 plugin_options="${plugin_options} rp_pppoe_service '${SERVICE_NAME}'"
250 fi
711ffac1 251
97cb552e 252 # The last argument must be the interface.
529141df 253 plugin_options="${plugin_options} ${port}"
97cb552e
MT
254
255 pppd_write_config ${file} \
256 --interface="${zone}" \
6c74a64c
MT
257 --username="${USERNAME}" \
258 --password="${PASSWORD}" \
97cb552e
MT
259 --mtu="${MTU}" \
260 --auth="${AUTH}" \
69e93b3c 261 --ipv6="${IPV6}" \
97cb552e
MT
262 \
263 --plugin="${PPPOE_PLUGIN}" \
264 --plugin-options="${plugin_options}"
265
6c74a64c 266 exit ${EXIT_OK}
711ffac1 267}
529141df
MT
268
269function __hook_get_port() {
270 local zone="${1}"
271
272 local port
273 for port in $(zone_get_ports "${zone}"); do
274 echo "${port}"
275 return ${EXIT_OK}
276 done
277
278 return ${EXIT_ERROR}
279}
280
281function hook_port_add() {
282 # Excepting at least two arguments here
283 assert [ $# -ge 2 ]
284
285 local zone="${1}"
286 local port="${2}"
287 shift 2
288
289 # PPPoE can only use one port
290 local ports_num="$(zone_get_ports_num "${zone}")"
291 if [ ${ports_num} -ge 1 ]; then
292 local port=$(__hook_get_port "${zone}")
293 error "The pppoe zone hook only supports assigning one port"
294 error " port '${port}' has already been assigned to zone '${zone}'"
295 return ${EXIT_ERROR}
296 fi
297
e9df08ad 298 zone_port_settings_write "${zone}" "${port}"
529141df
MT
299 log INFO "Port '${port}' has been added to zone '${zone}'"
300
301 exit ${EXIT_OK}
302}
303
304function hook_port_remove() {
305 assert [ $# -eq 2 ]
306
307 local zone="${1}"
308 local port="${2}"
309
310 # Shut down the port (if possible)
311 port_down "${port}"
312
313 log INFO "Port '${port}' has been removed from zone '${zone}'"
e9df08ad 314 zone_port_settings_remove "${zone}" "${port}"
529141df
MT
315
316 exit ${EXIT_OK}
317}