]> git.ipfire.org Git - people/ms/network.git/blob - src/helpers/ipsec-updown
ipsec: Add prototype-level support for VTI
[people/ms/network.git] / src / helpers / ipsec-updown
1 #!/bin/bash
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2017 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 LOG_DISABLE_STDOUT="true"
23
24 . /usr/lib/network/functions
25
26 # Read network settings
27 network_settings_read
28
29 # Make sure we are called by strongSwan
30 assert isset PLUTO_VERSION
31
32 CONNECTION="${PLUTO_CONNECTION}"
33
34 # Interface name for this IPsec connection
35 INTERFACE="ipsec-${CONNECTION}"
36
37 if ! ipsec_connection_read_config "${CONNECTION}"; then
38 log ERROR "Could not read configuration for ${CONNECTION}"
39 exit ${EXIT_ERROR}
40 fi
41
42 log DEBUG "${0} called for ${CONNECTION}: ${PLUTO_VERB}"
43
44 case "${PLUTO_VERB}" in
45 up-client)
46 case "${MODE}" in
47 vti)
48 if device_exists "${INTERFACE}"; then
49 ip_tunnel_change_keys "${INTERFACE}" \
50 --ikey="${PLUTO_MARK_IN%/*}" \
51 --okey="${PLUTO_MARK_OUT%/*}"
52
53 else
54 if ! ip_tunnel_add "${INTERFACE}" \
55 --mode="vti" \
56 --local-address="${PLUTO_ME}" \
57 --remote-address="${PLUTO_PEER}" \
58 --ikey="${PLUTO_MARK_IN%/*}" \
59 --okey="${PLUTO_MARK_OUT%/*}"; then
60 log ERROR "Could not create VTI device for ${CONNECTION}"
61 fi
62 fi
63
64 device_set_up "${INTERFACE}"
65 ;;
66 esac
67 ;;
68
69 down-client)
70 case "${MODE}" in
71 vti)
72 if device_exists "${INTERFACE}"; then
73 device_set_down "${INTERFACE}"
74
75 ip_tunnel_del "${INTERFACE}"
76 fi
77 ;;
78 esac
79 ;;
80 esac
81
82 exit ${EXIT_OK}