summaryrefslogtreecommitdiff
path: root/src/etc/dhcp/dhclient-exit-hooks.d/99-ipsec-dhclient-hook
blob: ebb100e8b67d282dad75694efd4245c2448ac76d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
#
# Copyright (C) 2021 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

DHCP_HOOK_IFLIST="/tmp/ipsec_dhcp_interfaces"

if ! { [ -f $DHCP_HOOK_IFLIST ] && grep -qw $interface $DHCP_HOOK_IFLIST; }; then
    exit 0
fi

# Re-generate the config on the following events:
# - BOUND: always re-generate
# - RENEW: re-generate if the IP address changed
# - REBIND: re-generate if the IP address changed
if [ "$reason" == "RENEW" ] || [ "$reason" == "REBIND" ]; then
    if [ "$old_ip_address" == "$new_ip_address" ]; then
        exit 0
    fi
elif [ "$reason" != "BOUND" ]; then
    exit 0
fi

# Best effort wait for any active commit to finish
sudo python3 - <<PYEND
from vyos.utils.commit import wait_for_commit_lock

if __name__ == '__main__':
    wait_for_commit_lock()
    exit(0)
PYEND

# Now re-generate the config
sudo /usr/libexec/vyos/conf_mode/vpn_ipsec.py