Update Debconf templates PO file.
[sliver-openvswitch.git] / debian / openflow-switch.init
1 #! /bin/sh
2 #
3 # /etc/init.d/openflow-switch
4 #
5 # Written by Miquel van Smoorenburg <miquels@cistron.nl>.
6 # Modified for Debian by Ian Murdock <imurdock@gnu.ai.mit.edu>.
7 # Further changes by Javier Fernandez-Sanguino <jfs@debian.org>
8 # Modified for openflow-switch.
9 #
10 # Version:      @(#)skeleton  1.9  26-Feb-2001  miquels@cistron.nl
11 #
12 ### BEGIN INIT INFO
13 # Provides:          openflow-switch
14 # Required-Start:    $network $named $remote_fs $syslog
15 # Required-Stop:
16 # Default-Start:     2 3 4 5
17 # Default-Stop:      0 1 6
18 # Short-Description: OpenFlow switch
19 ### END INIT INFO
20
21 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
22 DAEMON=/usr/sbin/secchan
23 NAME=secchan
24 DESC=secchan
25
26 test -x $DAEMON || exit 0
27
28 LOGDIR=/var/log/openflow
29 PIDFILE=/var/run/$NAME.pid
30 DHCLIENT_PIDFILE=/var/run/dhclient.of0.pid
31 DODTIME=1                   # Time to wait for the server to die, in seconds
32                             # If this value is set too low you might not
33                             # let some servers to die gracefully and
34                             # 'restart' will not work
35
36 # Include secchan defaults if available
37 default=/etc/default/openflow-switch
38 if [ -f $default ] ; then
39         . $default
40 fi
41
42 set -e
43
44 running_pid()
45 {
46     # Check if a given process pid's cmdline matches a given name
47     pid=$1
48     name=$2
49     [ -z "$pid" ] && return 1 
50     [ ! -d /proc/$pid ] &&  return 1
51     cmd=`cat /proc/$pid/cmdline | tr "\000" "\n"|head -n 1 |cut -d : -f 1`
52     # Is this the expected child?
53     case $cmd in
54         $name|*/$name)
55             return 0
56             ;;
57         *)
58             return 1
59             ;;
60     esac
61 }
62
63 running()
64 {
65 # Check if the process is running looking at /proc
66 # (works for all users)
67
68     # No pidfile, probably no daemon present
69     [ ! -f "$PIDFILE" ] && return 1
70     # Obtain the pid and check it against the binary name
71     pid=`cat $PIDFILE`
72     running_pid $pid $NAME || return 1
73     return 0
74 }
75
76 force_stop() {
77 # Forcefully kill the process
78     [ ! -f "$PIDFILE" ] && return
79     if running ; then
80         kill -15 $pid
81         # Is it really dead?
82         [ -n "$DODTIME" ] && sleep "$DODTIME"s
83         if running ; then
84             kill -9 $pid
85             [ -n "$DODTIME" ] && sleep "$DODTIME"s
86             if running ; then
87                 echo "Cannot kill $LABEL (pid=$pid)!"
88                 exit 1
89             fi
90         fi
91     fi
92     rm -f $PIDFILE
93     return 0
94 }
95
96 must_succeed() {
97     echo -n "$1: "
98     shift
99     if "$@"; then
100         echo "success."
101     else
102         echo " ERROR."
103         exit 1
104     fi
105 }
106
107 check_op() {
108     echo -n "$1: "
109     shift
110     if "$@"; then
111         echo "success."
112     else
113         echo " ERROR."
114     fi
115 }
116
117 configure_ssl() {
118     if test ! -e "$PRIVKEY" || test ! -e "$CERT" || test ! -e "$CACERT"; then
119         if test ! -e "$PRIVKEY"; then
120             echo "$PRIVKEY: private key missing" >&2
121         fi
122         if test ! -e "$CERT"; then
123             echo "$CERT: certificate for private key missing" >&2
124         fi
125         if test ! -e "$CACERT"; then
126             echo "$CACERT: CA certificate missing" >&2
127         fi
128         echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
129         if test "$MODE" = discovery; then
130             echo "You may also delete or rename $PRIVKEY to disable SSL requirement" >&2
131         fi
132         exit 1
133     fi
134     SSL_OPTS="--private-key=$PRIVKEY --certificate=$CERT --ca-cert=$CACERT"
135 }
136
137 case "$1" in
138     start)
139         if test -z "$NETDEVS"; then
140             echo "$default: No network devices configured, switch disabled" >&2
141             echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
142             exit 0
143         fi
144         if test "$MODE" = discovery; then
145             unset CONTROLLER
146         elif test "$MODE" = in-band || test "$MODE" = out-of-band; then
147             if test -z "$CONTROLLER"; then
148                 echo "$default: No controller configured and not configured for discovery, switch disabled" >&2
149                 echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
150                 exit 0
151             fi
152         else
153             echo "$default: MODE must set to 'discovery', 'in-band', or 'out-of-band'" >&2
154             echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
155             exit 1
156         fi
157         : ${PRIVKEY:=/etc/openflow-switch/of0-privkey.pem}
158         : ${CERT:=/etc/openflow-switch/of0-cert.pem}
159         : ${CACERT:=/etc/openflow-switch/cacert.pem}
160         case $CONTROLLER in
161             '')
162                 # Discovery mode.
163                 if test -e "$PRIVKEY"; then
164                     configure_ssl
165                 fi
166                 ;;
167             tcp:*)
168                 ;;
169             ssl:*)
170                 configure_ssl
171                 ;;
172             *)
173                 echo "$default: CONTROLLER must be in the form 'ssl:HOST[:PORT]' or 'tcp:HOST[:PORT]' when not in discovery mode" >&2
174                 echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
175                 exit 1
176         esac
177
178         echo -n "Loading openflow_mod: "
179         if modprobe openflow_mod; then
180             echo "success."
181         else
182             echo " ERROR."
183             echo "openflow_mod has probably not been built for this kernel."
184             if ! test -d /usr/share/doc/openflow-datapath-source; then
185                 echo "Install the openflow-datapath-source package, then read"
186                 echo "/usr/share/doc/openflow-datapath-source/README.Debian"
187             else
188                 echo "For instructions, read"
189                 echo "/usr/share/doc/openflow-datapath-source/README.Debian"
190             fi
191             exit 1
192         fi
193
194         must_succeed "Adding datapath" dpctl adddp nl:0
195         for netdev in $NETDEVS; do
196             must_succeed "Adding $netdev to datapath" dpctl addif nl:0 $netdev
197         done
198
199         if test "$MODE" = in-band; then
200             if test "$SWITCH_IP" = dhcp; then
201                 must_succeed "Temporarily disabling of0" ifconfig of0 down
202             else
203                 must_succeed "Configuring of0 as $SWITCH_IP" ifconfig of0 $SWITCH_IP
204             fi
205         else
206             must_succeed "Disabling of0" ifconfig of0 down
207         fi
208
209         echo -n "Starting $DESC: "
210         start-stop-daemon --start --quiet --pidfile $PIDFILE \
211             --exec $DAEMON -- nl:0 $CONTROLLER --detach --pidfile=$PIDFILE \
212             --verbose=ANY:console:emer $DAEMON_OPTS $SSL_OPTS
213         if running; then
214             echo "$NAME."
215         else
216             echo " ERROR."
217         fi
218
219         if test "$MODE" = in-band && test "$SWITCH_IP" = dhcp; then
220             echo -n "Starting dhclient on of0: "
221             start-stop-daemon --start --quiet --pidfile $DHCLIENT_PIDFILE \
222                 --exec /sbin/dhclient -- -q -pf $DHCLIENT_PIDFILE of0
223             if running; then
224                 echo "dhclient."
225             else
226                 echo " ERROR."
227             fi
228         fi
229         ;;
230     stop)
231         if test -e /var/run/dhclient.of0.pid; then
232             echo -n "Stopping dhclient on of0: "
233             start-stop-daemon --stop --quiet --oknodo \
234                 --pidfile $DHCLIENT_PIDFILE --exec /sbin/dhclient
235             echo "dhclient."
236         fi            
237
238         echo -n "Stopping $DESC: "
239         start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE \
240             --exec $DAEMON
241         echo "$NAME."
242
243         for netdev in $NETDEVS; do
244             check_op "Removing $netdev from datapath" dpctl delif nl:0 $netdev
245         done
246         check_op "Deleting datapath" dpctl deldp nl:0
247         ;;
248     force-stop)
249         echo -n "Forcefully stopping $DESC: "
250         force_stop
251         if ! running; then
252             echo "$NAME."
253         else
254             echo " ERROR."
255         fi
256         ;;
257     reload)
258         ;;
259     force-reload)
260         start-stop-daemon --stop --test --quiet --pidfile \
261             $PIDFILE --exec $DAEMON \
262             && $0 restart \
263             || exit 0
264         ;;
265     restart)
266         $0 stop || true
267         $0 start
268         ;;
269     status)
270         echo -n "$LABEL is "
271         if running ;  then
272             echo "running"
273         else
274             echo " not running."
275             exit 1
276         fi
277         ;;
278     *)
279         N=/etc/init.d/$NAME
280         echo "Usage: $N {start|stop|restart|force-reload|status|force-stop}" >&2
281         exit 1
282         ;;
283 esac
284
285 exit 0