Support controller discovery in Debian packages.
[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     [ "$cmd" != "$name" ] &&  return 1
54     return 0
55 }
56
57 running()
58 {
59 # Check if the process is running looking at /proc
60 # (works for all users)
61
62     # No pidfile, probably no daemon present
63     [ ! -f "$PIDFILE" ] && return 1
64     # Obtain the pid and check it against the binary name
65     pid=`cat $PIDFILE`
66     running_pid $pid $NAME || return 1
67     return 0
68 }
69
70 force_stop() {
71 # Forcefully kill the process
72     [ ! -f "$PIDFILE" ] && return
73     if running ; then
74         kill -15 $pid
75         # Is it really dead?
76         [ -n "$DODTIME" ] && sleep "$DODTIME"s
77         if running ; then
78             kill -9 $pid
79             [ -n "$DODTIME" ] && sleep "$DODTIME"s
80             if running ; then
81                 echo "Cannot kill $LABEL (pid=$pid)!"
82                 exit 1
83             fi
84         fi
85     fi
86     rm -f $PIDFILE
87     return 0
88 }
89
90 must_succeed() {
91     echo -n "$1: "
92     shift
93     if "$@"; then
94         echo "success."
95     else
96         echo " ERROR."
97         exit 1
98     fi
99 }
100
101 check_op() {
102     echo -n "$1: "
103     shift
104     if "$@"; then
105         echo "success."
106     else
107         echo " ERROR."
108     fi
109 }
110
111 configure_ssl() {
112     if test ! -e "$PRIVKEY" || test ! -e "$CERT" || test ! -e "$CACERT"; then
113         if test ! -e "$PRIVKEY"; then
114             echo "$PRIVKEY: private key missing" >&2
115         fi
116         if test ! -e "$CERT"; then
117             echo "$CERT: certificate for private key missing" >&2
118         fi
119         if test ! -e "$CACERT"; then
120             echo "$CACERT: CA certificate missing" >&2
121         fi
122         echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
123         exit 1
124     fi
125     SSL_OPTS="--private-key=$PRIVKEY --certificate=$CERT --ca-cert=$CACERT"
126 }
127
128 case "$1" in
129     start)
130         if test -z "$NETDEVS"; then
131             echo "$default: No network devices configured, switch disabled" >&2
132             echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
133             exit 0
134         fi
135         if test "$MODE" = discovery; then
136             unset CONTROLLER
137         elif test "$MODE" = in-band || test "$MODE" = out-of-band; then
138             if test -z "$CONTROLLER"; then
139                 echo "$default: No controller configured and not configured for discovery, switch disabled" >&2
140                 echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
141                 exit 0
142             fi
143         else
144             echo "$default: MODE must set to 'discovery', 'in-band', or 'out-of-band'" >&2
145             echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
146             exit 1
147         fi
148         : ${PRIVKEY:=/etc/openflow-switch/of0-privkey.pem}
149         : ${CERT:=/etc/openflow-switch/of0-cert.pem}
150         : ${CACERT:=/etc/openflow-switch/cacert.pem}
151         case $CONTROLLER in
152             '')
153                 # Discovery mode.
154                 if test -e "$PRIVKEY"; then
155                     configure_ssl
156                 fi
157                 ;;
158             tcp:*)
159                 ;;
160             ssl:*)
161                 configure_ssl
162                 ;;
163             *)
164                 echo "$default: CONTROLLER must be in the form 'ssl:HOST[:PORT]' or 'tcp:HOST[:PORT]' when not in discovery mode" >&2
165                 echo "Run ofp-switch-setup or edit /etc/default/openflow-switch to configure" >&2
166                 exit 1
167         esac
168
169         echo -n "Loading openflow_mod: "
170         if modprobe openflow_mod; then
171             echo "success."
172         else
173             echo " ERROR."
174             echo "openflow_mod has probably not been built for this kernel."
175             if ! test -d /usr/share/doc/openflow-datapath-source; then
176                 echo "Install the openflow-datapath-source package, then read"
177                 echo "/usr/share/doc/openflow-datapath-source/README.Debian"
178             else
179                 echo "For instructions, read"
180                 echo "/usr/share/doc/openflow-datapath-source/README.Debian"
181             fi
182             exit 1
183         fi
184
185         must_succeed "Adding datapath" dpctl adddp nl:0
186         for netdev in $NETDEVS; do
187             must_succeed "Adding $netdev to datapath" dpctl addif nl:0 $netdev
188         done
189
190         if test "$MODE" = in-band; then
191             if test "$SWITCH_IP" = dhcp; then
192                 must_succeed "Temporarily disabling of0" ifconfig of0 down
193             else
194                 must_succeed "Configuring of0 as $SWITCH_IP" ifconfig of0 $SWITCH_IP
195             fi
196         else
197             must_succeed "Disabling of0" ifconfig of0 down
198         fi
199
200         echo -n "Starting $DESC: "
201         start-stop-daemon --start --quiet --pidfile $PIDFILE \
202             --exec $DAEMON -- nl:0 $CONTROLLER --detach --pidfile=$PIDFILE \
203             $DAEMON_OPTS $SSL_OPTS
204         if running; then
205             echo "$NAME."
206         else
207             echo " ERROR."
208         fi
209
210         if test "$MODE" = in-band && test "$SWITCH_IP" = dhcp; then
211             echo -n "Starting dhclient on of0: "
212             start-stop-daemon --start --quiet --pidfile $DHCLIENT_PIDFILE \
213                 --exec /sbin/dhclient -- -q -pf $DHCLIENT_PIDFILE of0
214             if running; then
215                 echo "dhclient."
216             else
217                 echo " ERROR."
218             fi
219         fi
220         ;;
221     stop)
222         if test -e /var/run/dhclient.of0.pid; then
223             echo -n "Stopping dhclient on of0: "
224             start-stop-daemon --stop --quiet --oknodo \
225                 --pidfile $DHCLIENT_PIDFILE --exec /sbin/dhclient
226             echo "dhclient."
227         fi            
228
229         echo -n "Stopping $DESC: "
230         start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE \
231             --exec $DAEMON
232         echo "$NAME."
233
234         for netdev in $NETDEVS; do
235             check_op "Removing $netdev from datapath" dpctl delif nl:0 $netdev
236         done
237         check_op "Deleting datapath" dpctl deldp nl:0
238         ;;
239     force-stop)
240         echo -n "Forcefully stopping $DESC: "
241         force_stop
242         if ! running; then
243             echo "$NAME."
244         else
245             echo " ERROR."
246         fi
247         ;;
248     reload)
249         ;;
250     force-reload)
251         start-stop-daemon --stop --test --quiet --pidfile \
252             $PIDFILE --exec $DAEMON \
253             && $0 restart \
254             || exit 0
255         ;;
256     restart)
257         $0 stop || true
258         $0 start
259         ;;
260     status)
261         echo -n "$LABEL is "
262         if running ;  then
263             echo "running"
264         else
265             echo " not running."
266             exit 1
267         fi
268         ;;
269     *)
270         N=/etc/init.d/$NAME
271         echo "Usage: $N {start|stop|restart|force-reload|status|force-stop}" >&2
272         exit 1
273         ;;
274 esac
275
276 exit 0