7fced849def066ca634f42b3ab20f27708c9bc94
[automated-distro-installer] / pxe-server
1 #!/bin/bash
2 # Copyright (C) 2016 Ian Kelling
3
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18
19
20 x="$(readlink -f "$BASH_SOURCE")"; source "${x%/*}/bash-trace"
21
22
23 usage() {
24 cat <<EOF
25 Usage: ${0##*/} [OPTIONS] [HOST TYPE]
26 Configure dnsmasq boot options and fai-chboot if appropriate.
27
28 Without HOST TYPE, disable server and fai server.
29
30 HOST A hostname known to the dhcp server, or default for all.
31 TYPE One of arch, plain, fai.
32
33 -d Don't alter dhcp config. Only make sense for fai type, and on network
34 other than home network.
35 -r Don't redeploy fai config. For example, if there is a different host
36 that is mid-install.
37
38 -a Don't setup pxe, just Wait for 2 dhcp acks, then disable the pxe
39 server after a delay. First ack is for pxe boot, 2nd ack is
40 for os boot. Sometimes on debian, there is a 3rd one shortly
41 after the 2nd. I can't remember exactly why this caused a
42 problem, but I'm hoping the sleep will take care of it.
43 -S sets FAI_ACTION=sysinfo, see myfai-chboot for more info.
44 -w Setup pxe, then wait like -a.
45 -h|--help Print help and exit
46
47
48 Note, when switching between plain and arch, you will need to
49 do something like:
50 ssh wrt
51 cd /mnt/usb
52 rm tftpboot
53 ln -s <arch/debian iso dir> tftpboot
54
55
56 Note: Uses GNU getopt options parsing style
57 EOF
58 exit $1
59 }
60
61 ##### begin command line parsing ########
62
63 dhcp=true
64 redep=true
65 acks=2
66 wait=false
67 temp=$(getopt -l help harSw "$@") || usage 1
68 eval set -- "$temp"
69 while true; do
70 case $1 in
71 -a) wait=true; set=false; shift ;;
72 -d) dhcp=false; shift ;;
73 -r) redep=false; shift ;;
74 -S) chboot_arg=-S; shift ;;
75 -w) wait=true; set=true; shift ;;
76 -h|--help) usage ;;
77 --) shift; break ;;
78 *) echo "$0: Internal error!" ; exit 1 ;;
79 esac
80 done
81
82 read -r host type <<<"$@"
83
84 case $# in
85 0|2);;
86 *)
87 echo "$0: error: expected 0 or 2 arguments"
88 echo
89 usage 1
90 ;;
91 esac
92
93 if [[ $host && $host != default ]]; then
94 host_tag="tag:$host,"
95 fi
96
97 ##### end command line parsing ########
98
99 e() {
100 echo "$@"
101 "$@"
102 }
103
104 arch() {
105 cat <<EOF
106 dhcp-option-force=209,boot/syslinux/archiso.cfg
107 dhcp-option-force=210,/arch/
108 dhcp-boot=${host_tag}/arch/boot/syslinux/lpxelinux.0
109 EOF
110 }
111
112 plain() {
113 # if arch was used before, this additionally needs
114 # the tftp link in /mnt/usb to be changed.
115 cat <<EOF
116 dhcp-boot=${host_tag}pxelinux.0
117 EOF
118 }
119
120 fai() {
121 cat <<EOF
122 dhcp-boot=${host_tag}pxelinux.0,faiserver.b8.nz,faiserver.b8.nz
123 EOF
124 }
125
126 ack-wait() {
127 wait_count=$1
128 if [[ $host ]]; then
129 host_regex=" $host"
130 fi
131 regex=".*DHCPACK.*$host_regex$"
132 i=0
133 while (( i != wait_count )) && read -r line; do
134 if [[ $line =~ $regex ]]; then
135 i=$((i+1))
136 echo $line
137 fi
138 done < <(ssh wrt logread -f)
139 e sleep 20
140 }
141
142 set-pxe() {
143 $dhcp || return 0
144 echo "$0: updating dnsmasq.conf:"
145 $type
146 ${type:-:}|ssh wrt "cedit pxe /etc/dnsmasq.conf || /etc/init.d/dnsmasq restart
147 $([[ $type == arch ]] && echo arch-pxe-mount)"
148 }
149
150
151 if $set; then
152 set-pxe
153 if [[ $type == fai ]]; then
154 e myfai-chboot $chboot_arg $host
155 if $redep; then
156 e fai-redep
157 fi
158 else
159 # This will fail if faiserver is not setup, so ignore any
160 # failure and don't bother us about it.
161 myfai-chboot &>/dev/null ||:
162 fi
163 fi
164
165 if $wait; then
166 # fai's debian jessie 8.5ish does 2 dhcp requests when booting,
167 # roughly 4 seconds apart. Earlier
168 # versions did just 1. Now testing on a vm, it does 1.
169 # bleh.
170 echo "waiting for $acks dhcp acks then disabling pxe"
171 ack-wait $acks
172 type=
173 set-pxe
174
175 # previously tried waiting for one more ack then disabling faiserver,
176 # since it can contain sensitive info, so turn it off when not in use,
177 # but disabling that for now as it's inconvenient to clean this
178 # up and run it in the background etc.
179
180 # if [[ $type == fai ]]; then
181 # echo "waiting for 1 dhcp ack then disabling fai server"
182 # ack-wait 1
183 # faiserver-disable
184 # fi
185 fi