File: 10-ifcfg-rh-routes.sh

package info (click to toggle)
network-manager 1.52.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 71,048 kB
  • sloc: ansic: 480,022; python: 11,394; xml: 8,504; sh: 5,535; perl: 596; cpp: 178; javascript: 130; ruby: 107; makefile: 57; lisp: 22
file content (121 lines) | stat: -rwxr-xr-x 3,840 bytes parent folder | download | duplicates (5)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/bin/bash

# This script applies policy-based routing rules defined for the
# connection in the /etc/sysconfig/network-scripts/ directory.
#
# This should be installed in both dispatcher.d/ and
# dispatcher.d/pre-up.d/
#
# pre-up scripts delay activation of the device. To reduce the delay,
# it is advised to install the script as symlink to no-wait.d directory.
#
# This file is derived from scripts 'if{up,down}-routes' from
# Fedora/RHEL initscripts.

if [ "$2" != "pre-up" ] && [ "$2" != "down" ]; then
    exit 0
fi

file_regex='^/etc/sysconfig/network-scripts/ifcfg-([^/]+)$'

[[ "$CONNECTION_FILENAME" =~ $file_regex ]] || exit 0

profile="${BASH_REMATCH[1]}"

if [ ! -f "/etc/sysconfig/network-scripts/rule-$profile" ] && [ ! -f "/etc/sysconfig/network-scripts/rule6-$profile" ]; then
    exit 0
fi

MATCH='^[[:space:]]*(\#.*)?$'

handle_file () {
    . $1
    routenum=0
    while [ "x$(eval echo '$'ADDRESS$routenum)x" != "xx" ]; do
        eval $(ipcalc -p $(eval echo '$'ADDRESS$routenum) $(eval echo '$'NETMASK$routenum))
        line="$(eval echo '$'ADDRESS$routenum)/$PREFIX"
        if [ "x$(eval echo '$'GATEWAY$routenum)x" != "xx" ]; then
            line="$line via $(eval echo '$'GATEWAY$routenum)"
        fi
        line="$line dev $2"
        /sbin/ip route add $line
        routenum=$(($routenum+1))
    done
}

handle_ip_file() {
    local f t type= file=$1 proto="-4"
    f=${file##*/}
    t=${f%%-*}
    type=${t%%6}
    if [ "$type" != "$t" ]; then
        proto="-6"
    fi
    { cat "$file" ; echo ; } | while read line; do
        if [[ ! "$line" =~ $MATCH ]]; then
            /sbin/ip $proto $type add $line
        fi
    done
}


case "$2" in
    pre-up)
        # Routes
        FILES="/etc/sysconfig/network-scripts/route-$DEVICE_IP_IFACE"
        FILES="$FILES /etc/sysconfig/network-scripts/route6-$DEVICE_IP_IFACE"
        if [ "$profile" != "$DEVICE_IP_IFACE" ]; then
            FILES="$FILES /etc/sysconfig/network-scripts/route-$profile"
            FILES="$FILES /etc/sysconfig/network-scripts/route6-$profile"
        fi

        for file in $FILES; do
            if [ -f "$file" ]; then
                if grep -Eq '^[[:space:]]*ADDRESS[0-9]+=' $file ; then
                    # new format
                    handle_file $file ${1%:*}
                else
                    # older format
                    handle_ip_file $file
                fi
            fi
        done

        # Rules
        FILES="/etc/sysconfig/network-scripts/rule-$DEVICE_IP_IFACE"
        FILES="$FILES /etc/sysconfig/network-scripts/rule6-$DEVICE_IP_IFACE"
        if [ "$profile" != "$DEVICE_IP_IFACE" ]; then
            FILES="$FILES /etc/sysconfig/network-scripts/rule-$profile"
            FILES="$FILES /etc/sysconfig/network-scripts/rule6-$profile"
        fi

        for file in $FILES; do
            if [ -f "$file" ]; then
                handle_ip_file $file
            fi
        done
        ;;
    down)
        # Routes are deleted by NetworkManager
        # Rules
        FILES="/etc/sysconfig/network-scripts/rule-$DEVICE_IP_IFACE"
        FILES="$FILES /etc/sysconfig/network-scripts/rule6-$DEVICE_IP_IFACE"
        if [ "$profile" != "$DEVICE_IP_IFACE" ]; then
            FILES="$FILES /etc/sysconfig/network-scripts/rule-$profile"
            FILES="$FILES /etc/sysconfig/network-scripts/rule6-$profile"
        fi
        for file in $FILES; do
            if [ -f "$file" ]; then
                proto=
                if [ "$file" != "${file##*/rule6-}" ]; then
                    proto="-6"
                fi
                { cat "$file" ; echo ; } | while read line; do
                    if [[ ! "$line" =~ $MATCH ]]; then
                        /sbin/ip $proto rule del $line
                    fi
                done
            fi
        done
        ;;
esac