-
Notifications
You must be signed in to change notification settings - Fork 27
/
bfpxe
executable file
·205 lines (191 loc) · 6.08 KB
/
bfpxe
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
#!/bin/sh
# Copyright (c) 2017, Mellanox Technologies
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# The views and conclusions contained in the software and documentation are those
# of the authors and should not be interpreted as representing official policies,
# either expressed or implied, of the FreeBSD Project.
TMP_MNT=
usage() {
echo "syntax: bfpxe [-d <rootfs-device>]"
}
#
# Convert netmask to prefix length.
# For example, convert 255.255.255.0 to /24
#
netmask_to_prefix() {
c=0 x=0"$(printf '%o' "$(echo "$1" | sed -r 's/[\.]+/ /g')")"
while [ "$x" -gt 0 ]; do
c=$((c+$((x%2))))
x=$((x/2))
done
echo /$c
}
#
# Create network interfaces.
# Create network configuration if root_device is specified.
#
create_net() {
bfnet=""
bfmac=""
eval "$1"
if [ -n "$bfnet" ] || [ -n "$bfmac" ]; then
if [ -n "$bfnet" ]; then
ifname=$(echo $bfnet | cut -d: -f1)
ifaddr=$(echo $bfnet | cut -d: -f2)
ifnet=$(echo $bfnet | cut -d: -f3)
fi
if [ -n "$bfmac" ]; then
realbfmac=$(echo $bfmac | cut -d: -f1 | tr '-' ':')
ifname=$(grep $realbfmac /sys/class/net/*/address | awk -F\/ {'print $5'})
ifaddr=$(echo $bfmac | cut -d: -f2)
ifnet=$(echo $bfmac | cut -d: -f3)
fi
# vlan check
if echo "$ifname" | grep -q -E ".+\..+" >/dev/null; then
vname=$(echo "$ifname" | cut -d. -f1)
vid=$(echo "$ifname" | cut -d. -f2)
if [ -n "$vname" ] && [ -n "$vid" ]; then
modprobe 8021q
ip link add link "$vname" name "$ifname" type vlan id "$vid"
ifconfig "$vname" 0.0.0.0 up
if [ -n "$TMP_MNT" ]; then
mkdir -p "$TMP_MNT"/etc/systemd/network 2>/dev/null
cat >"$TMP_MNT"/etc/systemd/network/04-"${ifname}".netdev <<EOF
[NetDev]
Name = $ifname
Kind = vlan
[VLAN]
Id = $vid
EOF
cat >"$TMP_MNT"/etc/systemd/network/05-"${ifname}".network <<EOF
[Match]
Name = $ifname
[Network]
EOF
echo "VLAN=${ifname}" >> "$TMP_MNT"/etc/systemd/network/05-"${vname}".network
fi
fi
fi
# IPv6 address
if [ "$ifaddr" = "dhcp6" ]; then
if [ -x /sbin/dhclient ]; then
/sbin/dhclient -6 "$ifname"
fi
if [ -n "$TMP_MNT" ]; then
sed -i '/Address =/d' "$TMP_MNT"/etc/systemd/network/05-"${ifname}".network
echo "DHCP = ipv6" >> "$TMP_MNT"/etc/systemd/network/05-"${ifname}".network
fi
# IPv4 address
elif [ "$ifaddr" = "dhcp" ]; then
ifconfig "$ifname" 0.0.0.0 up
if [ -x /sbin/dhclient ]; then
/sbin/dhclient "$ifname"
else
udhcpc -R -b -A 5 -T 3 -t 10 -i "$ifname"
fi
if [ -n "$TMP_MNT" ]; then
sed -i '/Address =/d' "$TMP_MNT"/etc/systemd/network/05-"${ifname}".network
echo "DHCP = ipv4" >> "$TMP_MNT"/etc/systemd/network/05-"${ifname}".network
fi
else
ifconfig "$ifname" "$ifaddr" ${ifnet:+netmask $ifnet} up
if [ -n "$TMP_MNT" ]; then
sed -i '/DHCP =/d' "$TMP_MNT"/etc/systemd/network/05-"${ifname}".network
echo "Address = ${ifaddr}${ifnet:+$(netmask_to_prefix "$ifnet")}" \
>> "$TMP_MNT"/etc/systemd/network/05-"${ifname}".network
fi
fi
fi
}
# Parse the argument.
while getopts ":d:" opt; do
case $opt in
d)
root_device=$OPTARG
;;
\?)
usage >&2
exit 1
;;
esac
done
# Mount the root device.
if [ -e "$root_device" ]; then
TMP_MNT=/tmp/.bfmnt
mkdir -p $TMP_MNT 2>/dev/null
mount "$root_device" $TMP_MNT
if [ ! -d $TMP_MNT/bin ]; then
umount $TMP_MNT 2>/dev/null
TMP_MNT=
else
# Delete the default static IP address if bfnet is configured.
tmp=$(grep bfnet /proc/cmdline)
if [ -n "$tmp" ]; then
sed -i '/Address =/d' $TMP_MNT/etc/systemd/network/05-tmfifo_net0.network
fi
fi
fi
# Parse kernel arguments.
# Note: Disable check for reading lines, we are only reading words here.
# shellcheck disable=SC2013
for i in $(cat /proc/cmdline); do
# Network config.
if [ "$(echo "$i" | cut -c1-6)" = "bfnet=" ] || [ "$(echo "$i" | cut -c1-6)" = "bfmac=" ]; then
create_net "$i"
fi
# Kickstart script.
if [ "$(echo "$i" | cut -c1-5)" = "bfks=" ]; then
eval "$i"
fi
done
# Unmount the root device.
# It is provided for the kickstart script to install network cofiguration,
# so exit here once it's done.
if [ -n "$TMP_MNT" ]; then
umount $TMP_MNT 2>/dev/null
rmdir $TMP_MNT 2>/dev/null
exit
fi
# Run the kickstart script.
if [ -n "$bfks" ]; then
# shellcheck disable=SC2164
cd /tmp
count=0
# Networking is complicated and can be slow. This loop will fail fast
# when wget succeeds.
until wget "$bfks"; do
sleep 3
count=$((count+1))
if [ $count -eq 60 ]; then
break
fi
done
bfks=$(basename "$bfks")
if [ -f "$bfks" ]; then
chmod +x "$bfks"
./"$bfks"
else
echo "ERROR: Failed to download $bfks"
fi
fi