Release new version 0.105.0
[grml-terminalserver.git] / grml-terminalserver
1 #!/bin/bash
2 # Filename:      terminalserver
3 # Purpose:       Program to do something
4 # Authors:       grml-team (grml.org), (c) Michael Gebetsroither <gebi@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 # Latest change: Sat Aug 06 14:14:40 CEST 2005
8 ################################################################################
9
10
11 ###
12 ### __INCLUDES
13 ###
14 . /etc/grml/sh-lib
15 #. /etc/grml/sysexits-sh
16
17
18
19 ###
20 ### __VARIABLES
21 ###
22
23 FORCE_='false'
24 verbose_=0
25
26 # this file holds all variable definitions
27 SHARED_PROG_VARS_="/usr/share/grml-terminalserver/shared_prog_vars"
28 isExistent $SHARED_PROG_VARS_ die
29 . $SHARED_PROG_VARS_
30
31
32 ###
33 ### __FUNCTIONS
34 ###
35
36 function printUsage
37 {
38   cat <<EOT
39 Usage: "$PROG_NAME__" [OPTIONS] <command>
40
41 $PROG_NAME__ is the config program for the terminalserver
42 comming with grml.
43
44 COMMANDS:
45    help             This help text
46    start <service>  Start services (if all services are started, configs will be updated)
47    stop <service>   Stop services
48    config <service> Update config of given service (or from all if no services given)
49    clean            Stop all + remove config and boot files from services
50    <default>        interactive
51
52 SERVICES:
53   tftp        Tftp daemon
54   dhcp        Dhcp daemon
55   ipt         Iptables setup (snat for clients)
56   nfs         All necessary nfs daemons
57   <>          ALL services
58
59 OPTIONS:
60    -v         verbose (show what is going on, v++)
61    -h         this help text
62    -f         Force
63
64 EOT
65 }
66
67 function killPortmapper
68 {
69   if [ -f /etc/init.d/portmap ] ; then
70     /etc/init.d/portmap stop >/dev/null &>/dev/null
71   elif [ -f /etc/init.d/rpcbind ] ; then
72     /etc/init.d/rpcbind stop >/dev/null &>/dev/null
73   fi
74   killall -9 portmap &>/dev/null
75   killall -9 rpcbind &>/dev/null
76 }
77
78 # DHCP SERVICE {{{
79 function createDhcpConf
80 {
81   if [ -e "$DHCPD_CONFIG_FILE_" ]; then
82     if grep $CONFIG_PATTERN_ $DHCPD_CONFIG_FILE_ &>/dev/null; then
83       execute "mv -fb \"$DHCPD_CONFIG_FILE_\" \"$DHCPD_CONFIG_FILE_.old\"" eprint &>/dev/null
84       execute "source $TEMPLATE_CONFIG_DIR_/dhcpd_config" die
85     else
86       if [[ $FORCE_ == "true" ]]; then
87         execute "mv -fb \"$DHCPD_CONFIG_FILE_\" \"$DHCPD_CONFIG_FILE_.old\"" eprint &>/dev/null
88         execute "source $TEMPLATE_CONFIG_DIR_/dhcpd_config" die
89       else
90         warn "Not updating user edited configfile $DHCPD_CONFIG_FILE_, user -f to override"
91       fi
92     fi
93   else
94     execute "source $TEMPLATE_CONFIG_DIR_/dhcpd_config" die
95   fi
96 }
97
98 function removeDhcpConf
99 {
100   if [ -e "$DHCPD_CONFIG_FILE_" ]; then
101     if grep $CONFIG_PATTERN_ $DHCPD_CONFIG_FILE_ &>/dev/null; then
102       rm -f "$DHCPD_CONFIG_FILE_"
103     else
104       if [[ $FORCE_ == "true" ]]; then
105         rm -f "$DHCPD_CONFIG_FILE_"
106       else
107         warn "Not deleting user edited configfile $DHCPD_CONFIG_FILE_, user -f to override"
108       fi
109     fi
110   fi
111 }
112
113
114 function stopDhcp
115 {
116   start-stop-daemon --stop --quiet --pidfile "$DHCPD_PID_"
117   rm -f $DHCPD_PID_
118   # ugly but necessary :-/
119   find  /var/lib/dhcp* -type f -name dhcpd.leases -delete
120   local dhcpdir
121   for dhcpdir in /var/lib/dhcp* ; do
122     touch ${dhcpdir}/dhcpd.leases
123   done
124 }
125
126 function startDhcp
127 {
128   local conf_file_="$DHCPD_CONFIG_FILE_"
129
130   test -f $DHCPD_BIN_ || die "could not find dhcpd \"$DHCPD_BIN_\""
131   start-stop-daemon --start --quiet --pidfile "$DHCPD_PID_" \
132     --exec "$DHCPD_BIN_" -- -cf "$conf_file_" -q "$INTERFACE_" || warn "problems starting dhcpd"
133 }
134
135 function runDhcp
136 {
137   isExistent "$DHCPD_CONFIG_FILE_" || \
138     warn "no config for dhcpd: \"$DHCPD_CONFIG_FILE_\" => not starting dhcpd" || return 1
139
140   stopDhcp
141   sleep 1
142   startDhcp
143 }
144 # }}}
145
146 # IPTABLES {{{
147 function runIptables
148 {
149   if [[ $IPTABLES_SNAT_ != "true" ]]; then
150     return
151   fi
152   startIptables
153 }
154
155 function startIptables
156 {
157   if [ -x /sbin/iptables ] ; then
158     if [[ $NAT_INTERFACE_ != "" ]]; then
159        local nat_source_ip_=`netGetIp "$NAT_INTERFACE_" warn`
160
161        if iptables -t nat -vnL POSTROUTING | grep -q "SNAT.*${NAT_INTERFACE_}.*to:${nat_source_ip_}" ; then
162           echo "Rule for SNAT already present, nothing to be done."
163        else
164           echo "Setting up SNAT for terminalserver clients on ${NAT_INTERFACE_}:"
165           echo    "* iptables -t nat -F POSTROUTING"
166           echo -n "* iptables -t nat -A POSTROUTING -o $NAT_INTERFACE_ -j SNAT --to-source $nat_source_ip_ ... "
167           { iptables -t nat -F POSTROUTING && \
168             iptables -t nat -A POSTROUTING -o "$NAT_INTERFACE_" -j SNAT --to-source "$nat_source_ip_" ; } && \
169             echo done || echo failed
170        fi
171        if [ `cat /proc/sys/net/ipv4/ip_forward` -eq 1 ]; then
172           echo "IP-Forwarding already enabled, nothing to be done."
173        else
174           echo -n "Enabling IP-Forwarding: "
175           echo 1 > /proc/sys/net/ipv4/ip_forward && echo done || echo failed
176        fi
177     fi
178   else
179     warn "iptables executable not avilable"
180   fi
181 }
182
183 function stopIptables
184 {
185   if [[ $IPTABLES_SNAT_ != "true" ]]; then
186     return
187   fi
188   if [ -x /sbin/iptables ] ; then
189     if [[ $NAT_INTERFACE_ != "" ]]; then
190        local nat_source_ip_=`netGetIp "$NAT_INTERFACE_" warn`
191
192        if iptables -t nat -vnL POSTROUTING | grep -q "SNAT.*${NAT_INTERFACE_}.*to:${nat_source_ip_}" ; then
193          iptables -t nat -F POSTROUTING &>/dev/null && \
194            iptables -t nat -D POSTROUTING -o "$NAT_INTERFACE_" -j SNAT --to-source "$nat_source_ip_"
195        fi
196        echo 0 > /proc/sys/net/ipv4/ip_forward
197     fi
198   fi
199 }
200 # }}}
201
202 # TFTP SERVICE {{{
203 function removeTftpConf
204 {
205   rm -rf $TFTPD_DATA_DIR_/*
206 }
207 function createTftpConf
208 {
209   removeTftpConf
210
211   execute "mkdir -p $TFTPD_DATA_DIR_/pxelinux.cfg" die
212   if [ -r /usr/lib/PXELINUX/pxelinux.0 ] ; then
213     execute "install -m 644 /usr/lib/PXELINUX/pxelinux.0 $TFTPD_DATA_DIR_" die
214   else # older versions of syslinux-common (<= 2:4.05+dfsg-6+deb7u1):
215     execute "install -m 644 /usr/lib/syslinux/pxelinux.0 $TFTPD_DATA_DIR_" die
216   fi
217   if [ -d "$MOUNT_POINT_"/boot/release ] ; then
218     cp -r "$MOUNT_POINT_"/boot/release "$TFTPD_DATA_DIR_"
219   fi
220   [ -f "$MEMTEST_IMAGE" ] && execute "install -m 644 $MEMTEST_IMAGE_ $TFTPD_DATA_DIR_/memtest" die
221   execute "install -m 644 $PXE_BOOT_MSG_ $TFTPD_DATA_DIR_" die
222   [ -f "$PXE_BOOT_LOGO_" ] && execute "install -m 644 $PXE_BOOT_LOGO_ $TFTPD_DATA_DIR_" die
223
224   execute "source $TEMPLATE_CONFIG_DIR_/grub-pxelinux_config" die
225 }
226
227 function stopTftp
228 {
229   start-stop-daemon --stop --quiet -p "$TFTPD_PID_"
230 }
231 function startTftp
232 {
233   test -f $TFTPD_BIN_ || die "could not find \"$TFTPD_BIN_\""
234   start-stop-daemon --start --quiet --exec "$TFTPD_BIN_" -- --daemon --no-multicast --pidfile "$TFTPD_PID_" --bind-address "$IP_" "$TFTPD_DATA_DIR_" || \
235     warn "problems starting tftpd server"
236 }
237 function runTftp
238 {
239   stopTftp
240   sleep 1
241   startTftp
242 }
243 # }}}
244
245
246 # NFS  {{{
247 function createNfsConfig
248 {
249   execute "exportfs -o ro,no_root_squash,async,nohide,fsid=42 $NETWORK_/$NETMASK_:$MOUNT_POINT_" warn
250 }
251
252 function removeNfsConfig
253 {
254   execute "exportfs -u -o ro,no_root_squash,async,nohide,fsid=42 $NETWORK_/$NETMASK_:$MOUNT_POINT_" warn
255 }
256
257 function startNfs
258 {
259   if [ -f /etc/init.d/portmap ] ; then
260     /etc/init.d/portmap start
261   elif [ -f /etc/init.d/rpcbind ] ; then
262     /etc/init.d/rpcbind start
263   else
264     echo "Warning: Could not start portmapper/rpcbind" >&2
265   fi
266   /etc/init.d/nfs-common start
267   # FIXME /etc/init.d/nfs-kernel-server start
268   $USR_SHARE_/nfs-kernel-server start
269   echo
270
271   createNfsConfig
272 }
273 function stopNfs
274 {
275   removeNfsConfig
276   if [[ `exportfs |wc -l` > 0 ]]; then
277     dprint "There are other exports, not stopping NFS serivces"
278   else
279     /etc/init.d/nfs-kernel-server stop >/dev/null 2>&1
280     /etc/init.d/nfs-common stop >/dev/null 2>&1
281     killPortmapper
282   fi
283 }
284 # }}}
285
286
287 function createConfig
288 {
289   # FIXME
290   execute "sed -i 's/^ALL/\#ALL/' /etc/hosts.deny" warn
291   execute "sed -i 's/^ALL : ALL@ALL : DENY/ALL : ALL@ALL : ALLOW/' /etc/hosts.allow" warn
292
293   createTftpConf
294   createDhcpConf
295 }
296
297 function actionStart
298 {
299   createConfig
300
301   echo -n "Starting tftpd: "
302   runTftp && echo done || echo failed
303
304   echo -n "Starting dhcpd: "
305   runDhcp && echo done || echo failed
306
307   runIptables
308
309   echo "Finally starting nfs services..."
310   startNfs && echo "Successfully finished startup of grml-terminalserver." || echo 'Startup of grml-terminalserver failed!'
311 }
312
313 function actionStop
314 {
315   stopTftp
316   stopDhcp
317   stopIptables
318   stopNfs
319   notice "Terminal-server stopped"
320 }
321
322 function actionClean
323 {
324   actionStop
325   removeTftpConf
326   removeDhcpConf
327   stopNfs
328 }
329
330 function updateConfig
331 {
332   local service_="$1"
333
334   case "$service_" in
335     "") createConfig ;;
336     tftp) createTftpConf ;;
337     dhcp) createDhcpConf ;;
338     nfs) removeNfsConfig; createNfsConfig ;;
339     *) warn "Service $service_ not available" ;;
340   esac
341 }
342
343 # SERVICES {{{
344 function serviceStart
345 {
346   local service_="$1"   # service to start, if nothing => all
347
348   case "$service_" in
349     "") actionStart ;;
350     tftp) runTftp ;;
351     dhcp) runDhcp ;;
352     ipt) startIptables ;;
353     nfs) startNfs ;;
354     *) warn "Service $service_ not available" ;;
355   esac
356 }
357
358 function serviceStop
359 {
360   local service_="$1"   # service to stop, if nothing => all
361
362   case "$service_" in
363     "") actionStop ;;
364     tftp) stopTftp ;;
365     dhcp) stopDhcp ;;
366     ipt) stopIptables ;;
367     nfs) stopNfs ;;
368     *) warn "Service $service_ not available" ;;
369   esac
370 }
371 # }}}
372
373 ###
374 ### __MAIN
375 ###
376
377 while getopts "fi:hv" opt; do
378   case "$opt" in
379     f) FORCE_='true' ;;
380     h) printUsage; exit ;;
381     v) let verbose_=$verbose_+1 ;;
382     ?) printUsage; exit 64 ;;
383   esac
384 done
385 shift $(($OPTIND - 1))  # set ARGV to the first not parsed commandline parameter
386 setVerbose $verbose_
387
388 case "$1" in
389   help)   printUsage; exit 0 ;;
390 esac
391
392 checkRoot die "You have to be root to use this program"
393 disableSyslog
394
395 isExistent $DEFAULT_CONFIG_ die
396 . $DEFAULT_CONFIG_
397 . $CONFIG_
398 # used config vars:
399 # MOUNT_POINT_
400 # MEMTEST_IMAGE_
401 # PXE_BOOT_MSG_
402 # PXE_BOOT_LOGO_
403 if [[ $MOUNT_POINT_ == "" || $MEMTEST_IMAGE_ == "" || \
404   $PXE_BOOT_MSG_ == "" || $PXE_BOOT_MSG_ == "" ]]; then
405   warn "MOUNT_POINT_=\"$MOUNT_POINT_\" \
406 MEMTEST_IMAGE_=\"$MEMTEST_IMAGE_\"
407 PXE_BOOT_MSG_=\"$PXE_BOOT_MSG_\"
408 PXE_BOOT_LOGO_=\"$PXE_BOOT_LOGO_\""
409   die "False configuration, please update $CONFIG_"
410 fi
411
412 case "$1" in
413   clean) actionClean; exit 0 ;;
414 esac
415
416
417 while true; do
418   isExistent "$CONF_FILE_" warn "sorry configfile \"$CONF_FILE_\" not found"
419   if [ $? -eq 1 ]; then
420     $CONFIG_PROG_ && continue
421     $DIALOG_ --clear --backtitle "$BACK_TITLE_" --title "Question" --yesno \
422       "grml-terminalserver-config returned an error, do you want to quit now?" 5 75 && exit 1
423   else
424     break
425   fi
426 done
427 source $CONF_FILE_
428
429 # check for necessary files
430 check_necessary_files_='no'
431 if [ "$1" == 'start' ]; then
432   case "$2" in
433     tftp|"") check_necessary_files_='yes' ;;
434   esac
435 fi
436 if [ $check_necessary_files_ == 'yes' ]; then
437   # test for files absolutly necessary for grml-terminalserver and created from -config
438   problem_=0
439   for i in $PATH_/initrd.img; do
440     isExistent $i warn || problem_=1
441   done
442   if [ $problem_ -eq 1 ]; then
443     die 'Some necessary files are missing, please rerun grml-terminalserver-config, or copy the files manually'
444   fi
445 fi
446
447
448 case "$1" in
449   start) serviceStart "$2" ;;
450   stop) serviceStop "$2" ;;
451   config) updateConfig "$2" ;;
452   "")  actionStart ;;
453   *)  printUsage ;;
454 esac
455
456 # END OF FILE
457 ################################################################################
458 # vim:foldmethod=marker tabstop=2 expandtab shiftwidth=2