]> git.ipfire.org Git - people/stevee/network.git/blame - src/hooks/zones/pppoe
Remove the function keyword which is a bashism
[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 51# Use IPv6 prefix delegation.
4cee7a5d 52PREFIX_DELEGATION="true"
08e40c8c 53
1c6a4e30 54hook_check_settings() {
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
1c6a4e30 64hook_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
1c6a4e30 104hook_up() {
1848564d 105 local zone=${1}
711ffac1
MT
106 assert isset zone
107
ac694a6a
MT
108 # If this zone's port is not set, we will return
109 # with EXIT_OK so that this zone will remain active,
110 # but we cannot start pppd.
111 local port=$(__hook_get_port "${zone}")
112 if ! isset port || ! port_exists "${port}"; then
113 log WARNING "Could not bring up zone '${zone}' because no port is attached"
114 exit ${EXIT_OK}
115 fi
116
1e6f187e 117 zone_settings_read "${zone}"
2044f591
MT
118
119 # Bring up the port.
529141df 120 port_up "${port}"
2044f591 121
97cb552e
MT
122 # Start the ppp daemon.
123 pppd_start ${zone}
da453c33 124
97cb552e 125 exit ${EXIT_OK}
1848564d
MT
126}
127
1c6a4e30 128hook_down() {
1848564d 129 local zone=${1}
97cb552e 130 assert isset zone
1848564d 131
1e6f187e 132 zone_settings_read "${zone}"
2044f591 133
97cb552e
MT
134 # Stop the ppp daemon.
135 pppd_stop ${zone}
1848564d 136
2044f591
MT
137 # Bring down the port.
138 log DEBUG "Bringing down port '${PORT}'."
139 port_down ${PORT}
140
1848564d
MT
141 exit ${EXIT_OK}
142}
143
1c6a4e30 144hook_hotplug() {
0994996d
MT
145 local zone="${1}"
146
147 case "$(hotplug_action)" in
148 add)
149 if hotplug_event_interface_is_port_of_zone "${zone}"; then
150 # Bring up the zone if it is enabled but not active, yet.
151 zone_start_auto "${zone}"
152
153 exit ${EXIT_OK}
154 fi
155 ;;
156 remove)
157 # PPPoE cannot work if the ethernet device has been removed
158 if hotplug_event_interface_is_port_of_zone "${zone}"; then
159 if zone_is_active "${zone}"; then
160 zone_stop "${zone}"
161 fi
162
163 exit ${EXIT_OK}
164 fi
165 ;;
166 esac
167
168 exit ${EXIT_NOT_HANDLED}
169}
170
1c6a4e30 171hook_discover() {
1848564d
MT
172 local device=${1}
173
5dfc94a8
MT
174 # This obviously only works on ethernet (or compatible) devices
175 if ! device_is_ethernet_compatible "${device}"; then
5b20e43a 176 exit ${EXIT_ERROR}
1848564d
MT
177 fi
178
179 local output
180 output=$(pppoe-discovery -I ${device} -U $(uuid) 2>&1)
181
182 # Exit if there was not output
183 [ -z "${output}" ] && exit ${DISCOVER_ERROR}
184
185 # Exit if PADI timed out
186 grep -q "Timeout" <<<${output} && exit ${DISCOVER_ERROR}
187
188 local ac
189 while read line; do
190 case "${line}" in
191 Access-Concentrator:*)
192 ac="${line#Access-Concentrator: }"
193 ;;
194 esac
195 done <<<"${output}"
196
197 echo "ACCESS_CONCENTRATOR=\"$ac\""
198
199 exit ${DISCOVER_OK}
200}
5b20e43a 201
1c6a4e30 202hook_status() {
8eadf1da 203 local zone=${1}
711ffac1
MT
204 assert isset zone
205
3cb2fc42 206 cli_device_headline ${zone}
8eadf1da 207
1e6f187e 208 zone_settings_read "${zone}"
711ffac1 209
3cb2fc42 210 cli_headline 2 "Configuration"
97cb552e
MT
211 cli_print_fmt1 2 "Username" "${USERNAME}"
212 cli_print_fmt1 2 "Password" "<hidden>"
529141df
MT
213
214 local port=$(__hook_get_port "${zone}")
215 if isset port; then
216 cli_print_fmt1 2 "Port" "${port}"
217 fi
3cb2fc42
MT
218 cli_space
219
8eadf1da
MT
220 # Exit if zone is down
221 if ! zone_is_up ${zone}; then
222 echo # Empty line
223 exit ${EXIT_ERROR}
224 fi
225
711ffac1
MT
226 # XXX display time since connection started
227
3cb2fc42 228 cli_headline 2 "Point-to-Point-over-Ethernet protocol"
201b7dff
MT
229 local proto
230 for proto in ${IP_SUPPORTED_PROTOCOLS}; do
231 routing_db_exists ${zone} ${proto} || continue
3cb2fc42
MT
232
233 local headline
234 case "${proto}" in
235 ipv6)
236 headline="Internet Protocol Version 6"
237 ;;
238 ipv4)
239 headline="Internet Protocol Version 4"
240 ;;
241 *)
242 headline="Unkown protocol"
243 ;;
244 esac
245 cli_headline 3 "${headline}"
246
247 cli_print_fmt1 3 "IP address" "$(routing_db_get ${zone} ${proto} local-ip-address)"
248 cli_print_fmt1 3 "Gateway" "$(routing_db_get ${zone} ${proto} remote-ip-address)"
249 cli_print_fmt1 3 "DNS servers" "$(routing_db_get ${zone} ${proto} dns)"
250 cli_space
251 cli_print_fmt1 3 "MAC-Remote" "$(routing_db_get ${zone} ${proto} remote-address)"
252 cli_space
201b7dff 253 done
3cb2fc42 254
8eadf1da
MT
255 exit ${EXIT_OK}
256}
257
1c6a4e30 258hook_ppp_write_config() {
97cb552e
MT
259 local zone=${1}
260 assert isset zone
261
262 local file=${2}
263 assert isset file
264
265 # Read in the configuration files.
1e6f187e 266 zone_settings_read "${zone}"
97cb552e 267
529141df
MT
268 # A port has to be assigned for this action
269 local port=$(__hook_get_port "${zone}")
270 if ! isset port; then
271 error "No port assigned to pppoe hook of zone '${zone}'"
272 exit ${EXIT_ERROR}
273 fi
274
97cb552e
MT
275 # Prepare the command line options for the pppoe plugin.
276 local plugin_options
277
278 # Add the access concentrator (if any).
279 if isset ACCESS_CONCENTRATOR; then
280 plugin_options="${plugin_options} rp_pppoe_ac '${ACCESS_CONCENTRATOR}'"
711ffac1
MT
281 fi
282
97cb552e
MT
283 # Add the service name (if any).
284 if isset SERVICE_NAME; then
285 plugin_options="${plugin_options} rp_pppoe_service '${SERVICE_NAME}'"
286 fi
711ffac1 287
97cb552e 288 # The last argument must be the interface.
529141df 289 plugin_options="${plugin_options} ${port}"
97cb552e
MT
290
291 pppd_write_config ${file} \
292 --interface="${zone}" \
6c74a64c
MT
293 --username="${USERNAME}" \
294 --password="${PASSWORD}" \
97cb552e
MT
295 --mtu="${MTU}" \
296 --auth="${AUTH}" \
69e93b3c 297 --ipv6="${IPV6}" \
97cb552e
MT
298 \
299 --plugin="${PPPOE_PLUGIN}" \
300 --plugin-options="${plugin_options}"
301
6c74a64c 302 exit ${EXIT_OK}
711ffac1 303}
529141df 304
1c6a4e30 305__hook_get_port() {
529141df
MT
306 local zone="${1}"
307
308 local port
309 for port in $(zone_get_ports "${zone}"); do
310 echo "${port}"
311 return ${EXIT_OK}
312 done
313
314 return ${EXIT_ERROR}
315}
316
1c6a4e30 317hook_port_attach() {
529141df
MT
318 # Excepting at least two arguments here
319 assert [ $# -ge 2 ]
320
321 local zone="${1}"
322 local port="${2}"
323 shift 2
324
325 # PPPoE can only use one port
326 local ports_num="$(zone_get_ports_num "${zone}")"
327 if [ ${ports_num} -ge 1 ]; then
ac694a6a 328 local ports="$(zone_get_ports "${zone}")"
529141df 329 error "The pppoe zone hook only supports assigning one port"
ac694a6a 330 error " port '${ports}' has already been assigned to zone '${zone}'"
529141df
MT
331 return ${EXIT_ERROR}
332 fi
333
ac694a6a
MT
334 if ! zone_port_settings_write "${zone}" "${port}"; then
335 exit ${EXIT_ERROR}
336 fi
529141df
MT
337
338 exit ${EXIT_OK}
339}
340
1c6a4e30 341hook_port_detach() {
529141df
MT
342 assert [ $# -eq 2 ]
343
344 local zone="${1}"
345 local port="${2}"
346
ac694a6a
MT
347 # Shut down the entire zone here, because it cannot
348 # run without a port any way and removing the port would
349 # create a hotplug event which will be processed after the
350 # port has already been detached...
351 zone_stop "${zone}"
529141df 352
ac694a6a
MT
353 if ! zone_port_settings_remove "${zone}" "${port}"; then
354 exit ${EXIT_ERROR}
355 fi
529141df
MT
356
357 exit ${EXIT_OK}
358}
4cee7a5d 359
1c6a4e30 360hook_ppp_ipv6_up() {
4cee7a5d
MT
361 local zone="${1}"
362
363 ppp_common_ipv6_up "${zone}"
364
365 # Read configuration
366 zone_settings_read "${zone}"
367
368 if enabled PREFIX_DELEGATION; then
369 dhclient_start "${zone}" ipv6
370 fi
371
372 exit ${EXIT_OK}
373}
374
1c6a4e30 375hook_ppp_ipv6_down() {
4cee7a5d
MT
376 local zone="${1}"
377
378 ppp_common_ipv6_down "${zone}"
379
380 # Read configuration
381 zone_settings_read "${zone}"
382
383 if enabled PREFIX_DELEGATION; then
384 dhclient_stop "${zone}" ipv6
385 fi
386
387 exit ${EXIT_OK}
388}