-
Notifications
You must be signed in to change notification settings - Fork 37
/
ec2net-functions
223 lines (201 loc) · 5.83 KB
/
ec2net-functions
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# -*-Shell-script-*-
# Copyright (C) 2012 Amazon.com, Inc. or its affiliates.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
# OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the
# License.
# This file is not a stand-alone shell script; it provides functions
# to ec2 network scripts that source it.
# Set up a default search path.
PATH="/sbin:/usr/sbin:/bin:/usr/bin"
export PATH
# metadata query requires an interface and hardware address
if [ -z "${INTERFACE}" ]; then
exit
fi
HWADDR=$(cat /sys/class/net/${INTERFACE}/address 2>/dev/null)
if [ -z "${HWADDR}" ] && [ "${ACTION}" != "remove" ]; then
exit
fi
export HWADDR
# generate a routing table number
RTABLE=${INTERFACE#eth}
let RTABLE+=10000
metadata_base="http://169.254.169.254/latest/meta-data/network/interfaces/macs"
config_file="/etc/network/interfaces.d/${INTERFACE}"
dhclient_file="/etc/dhcp/dhclient-${INTERFACE}.conf"
# make no changes to unmanaged interfaces
if [ -s ${config_file} ]; then
unmanaged=$(LANG=C grep -l "^[[:space:]]*EC2SYNC=no\([[:space:]#]\|$\)" $config_file)
if [ "${config_file}" == "${unmanaged}" ]; then
exit
fi
fi
get_meta() {
attempts=10
false
while [ "${?}" -gt 0 ]; do
[ "${attempts}" -eq 0 ] && return
meta=$(curl -s -f ${metadata_base}/${HWADDR}/${1})
if [ "${?}" -gt 0 ]; then
let attempts--
sleep 3
false
fi
done
echo "${meta}"
}
get_cidr() {
cidr=$(get_meta 'subnet-ipv4-cidr-block')
echo "${cidr}"
}
get_ipv4s() {
ipv4s=$(get_meta 'local-ipv4s')
echo "${ipv4s}"
}
get_primary_ipv4() {
ipv4s=($(get_ipv4s))
echo "${ipv4s[0]}"
}
get_secondary_ipv4s() {
ipv4s=($(get_ipv4s))
echo "${ipv4s[@]:1}"
}
remove_primary() {
if [ "${INTERFACE}" == "eth0" ]; then
return
fi
rm -f ${config_file}
rm -f ${dhclient_file}
}
rewrite_primary() {
if [ "${INTERFACE}" == "eth0" ]; then
return
fi
cidr=$(get_cidr)
if [ -z ${cidr} ]; then
return
fi
network=$(echo ${cidr}|cut -d/ -f1)
router=$(( $(echo ${network}|cut -d. -f4) + 1))
gateway="$(echo ${network}|cut -d. -f1-3).${router}"
cat <<- EOF > ${config_file}
auto
inet dhcp
post-up ip route add default via ${gateway} dev ${INTERFACE} table ${RTABLE}
post-up ip route add default via ${gateway} dev ${INTERFACE} metric ${RTABLE}
EOF
# Use broadcast address instead of unicast dhcp server address.
# Works around an issue with two interfaces on the same subnet.
# Unicast lease requests go out the first available interface,
# and dhclient ignores the response. Broadcast requests go out
# the expected interface, and dhclient accepts the lease offer.
cat <<- EOF > ${dhclient_file}
supersede dhcp-server-identifier 255.255.255.255;
EOF
}
remove_aliases() {
/sbin/ip addr flush dev ${INTERFACE} secondary
}
rewrite_aliases() {
aliases=$(get_secondary_ipv4s)
if [ ${#aliases[*]} -eq 0 ]; then
remove_aliases
return
fi
# The network prefix can be provided in the environment by
# e.g. DHCP, but if it's not available then we need it to
# correctly configure secondary addresses.
if [ -z "${PREFIX}" ]; then
cidr=$(get_cidr)
PREFIX=$(echo ${cidr}|cut -d/ -f2)
fi
[ -n "${PREFIX##*[!0-9]*}" ] || return
# Retrieve a list of secondary IP addresses on the interface.
# Treat this as the stale list. For each IP address obtained
# from metadata, cross it off the stale list if present, or
# add it to the interface otherwise. Then, remove any address
# remaining in the stale list.
declare -A secondaries
for secondary in $(/sbin/ip addr list dev ${INTERFACE} secondary \
|grep "inet .* secondary ${INTERFACE}" \
|awk '{print $2}'|cut -d/ -f1); do
secondaries[${secondary}]=1
done
for alias in ${aliases}; do
if [[ ${secondaries[${alias}]} ]]; then
unset secondaries[${alias}]
else
/sbin/ip addr add ${alias}/${PREFIX} brd + dev ${INTERFACE}
fi
done
for secondary in "${!secondaries[@]}"; do
/sbin/ip addr del ${secondary}/${PREFIX} dev ${INTERFACE}
done
}
remove_rules() {
if [ "${INTERFACE}" == "eth0" ]; then
return
fi
for rule in $(/sbin/ip rule list \
|grep "from .* lookup ${RTABLE}" \
|awk -F: '{print $1}'); do
/sbin/ip rule delete pref "${rule}"
done
}
rewrite_rules() {
if [ "${INTERFACE}" == "eth0" ]; then
return
fi
ips=($(get_ipv4s))
if [ ${#ips[*]} -eq 0 ]; then
remove_rules
return
fi
# Retrieve a list of IP rules for the route table that belongs
# to this interface. Treat this as the stale list. For each IP
# address obtained from metadata, cross the corresponding rule
# off the stale list if present. Otherwise, add a rule sending
# outbound traffic from that IP to the interface route table.
# Then, remove all other rules found in the stale list.
declare -A rules
for rule in $(/sbin/ip rule list \
|grep "from .* lookup ${RTABLE}" \
|awk '{print $1$3}'); do
split=(${rule//:/ })
rules[${split[1]}]=${split[0]}
done
for ip in ${ips[@]}; do
if [[ ${rules[${ip}]} ]]; then
unset rules[${ip}]
else
/sbin/ip rule add from ${ip} lookup ${RTABLE}
fi
done
for rule in "${!rules[@]}"; do
/sbin/ip rule delete pref "${rules[${rule}]}"
done
}
plug_interface() {
logger "ABOUT TO CALL REWRITE PRIMARY"
rewrite_primary
}
unplug_interface() {
remove_rules
remove_aliases
}
activate_primary() {
/sbin/ifup ${INTERFACE}
}
deactivate_primary() {
/sbin/ifdown ${INTERFACE}
}