Merge "master" into "next".
[cascardo/ovs.git] / lib / stream-ssl.c
1 /*
2  * Copyright (c) 2008, 2009, 2010 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include "stream-ssl.h"
19 #include "dhparams.h"
20 #include <assert.h>
21 #include <ctype.h>
22 #include <errno.h>
23 #include <inttypes.h>
24 #include <string.h>
25 #include <netinet/tcp.h>
26 #include <openssl/err.h>
27 #include <openssl/ssl.h>
28 #include <openssl/x509v3.h>
29 #include <poll.h>
30 #include <sys/fcntl.h>
31 #include <sys/stat.h>
32 #include <unistd.h>
33 #include "dynamic-string.h"
34 #include "leak-checker.h"
35 #include "ofpbuf.h"
36 #include "openflow/openflow.h"
37 #include "packets.h"
38 #include "poll-loop.h"
39 #include "socket-util.h"
40 #include "socket-util.h"
41 #include "util.h"
42 #include "stream-provider.h"
43 #include "stream.h"
44
45 #include "vlog.h"
46 #define THIS_MODULE VLM_stream_ssl
47
48 /* Active SSL. */
49
50 enum ssl_state {
51     STATE_TCP_CONNECTING,
52     STATE_SSL_CONNECTING
53 };
54
55 enum session_type {
56     CLIENT,
57     SERVER
58 };
59
60 struct ssl_stream
61 {
62     struct stream stream;
63     enum ssl_state state;
64     int connect_error;
65     enum session_type type;
66     int fd;
67     SSL *ssl;
68     struct ofpbuf *txbuf;
69
70     /* rx_want and tx_want record the result of the last call to SSL_read()
71      * and SSL_write(), respectively:
72      *
73      *    - If the call reported that data needed to be read from the file
74      *      descriptor, the corresponding member is set to SSL_READING.
75      *
76      *    - If the call reported that data needed to be written to the file
77      *      descriptor, the corresponding member is set to SSL_WRITING.
78      *
79      *    - Otherwise, the member is set to SSL_NOTHING, indicating that the
80      *      call completed successfully (or with an error) and that there is no
81      *      need to block.
82      *
83      * These are needed because there is no way to ask OpenSSL what a data read
84      * or write would require without giving it a buffer to receive into or
85      * data to send, respectively.  (Note that the SSL_want() status is
86      * overwritten by each SSL_read() or SSL_write() call, so we can't rely on
87      * its value.)
88      *
89      * A single call to SSL_read() or SSL_write() can perform both reading
90      * and writing and thus invalidate not one of these values but actually
91      * both.  Consider this situation, for example:
92      *
93      *    - SSL_write() blocks on a read, so tx_want gets SSL_READING.
94      *
95      *    - SSL_read() laters succeeds reading from 'fd' and clears out the
96      *      whole receive buffer, so rx_want gets SSL_READING.
97      *
98      *    - Client calls stream_wait(STREAM_RECV) and stream_wait(STREAM_SEND)
99      *      and blocks.
100      *
101      *    - Now we're stuck blocking until the peer sends us data, even though
102      *      SSL_write() could now succeed, which could easily be a deadlock
103      *      condition.
104      *
105      * On the other hand, we can't reset both tx_want and rx_want on every call
106      * to SSL_read() or SSL_write(), because that would produce livelock,
107      * e.g. in this situation:
108      *
109      *    - SSL_write() blocks, so tx_want gets SSL_READING or SSL_WRITING.
110      *
111      *    - SSL_read() blocks, so rx_want gets SSL_READING or SSL_WRITING,
112      *      but tx_want gets reset to SSL_NOTHING.
113      *
114      *    - Client calls stream_wait(STREAM_RECV) and stream_wait(STREAM_SEND)
115      *      and blocks.
116      *
117      *    - Client wakes up immediately since SSL_NOTHING in tx_want indicates
118      *      that no blocking is necessary.
119      *
120      * The solution we adopt here is to set tx_want to SSL_NOTHING after
121      * calling SSL_read() only if the SSL state of the connection changed,
122      * which indicates that an SSL-level renegotiation made some progress, and
123      * similarly for rx_want and SSL_write().  This prevents both the
124      * deadlock and livelock situations above.
125      */
126     int rx_want, tx_want;
127 };
128
129 /* SSL context created by ssl_init(). */
130 static SSL_CTX *ctx;
131
132 /* Required configuration. */
133 static bool has_private_key, has_certificate, has_ca_cert;
134
135 /* Ordinarily, we require a CA certificate for the peer to be locally
136  * available.  'has_ca_cert' is true when this is the case, and neither of the
137  * following variables matter.
138  *
139  * We can, however, bootstrap the CA certificate from the peer at the beginning
140  * of our first connection then use that certificate on all subsequent
141  * connections, saving it to a file for use in future runs also.  In this case,
142  * 'has_ca_cert' is false, 'bootstrap_ca_cert' is true, and 'ca_cert_file'
143  * names the file to be saved. */
144 static bool bootstrap_ca_cert;
145 static char *ca_cert_file;
146
147 /* Who knows what can trigger various SSL errors, so let's throttle them down
148  * quite a bit. */
149 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(10, 25);
150
151 static int ssl_init(void);
152 static int do_ssl_init(void);
153 static bool ssl_wants_io(int ssl_error);
154 static void ssl_close(struct stream *);
155 static void ssl_clear_txbuf(struct ssl_stream *);
156 static int interpret_ssl_error(const char *function, int ret, int error,
157                                int *want);
158 static DH *tmp_dh_callback(SSL *ssl, int is_export OVS_UNUSED, int keylength);
159 static void log_ca_cert(const char *file_name, X509 *cert);
160
161 static short int
162 want_to_poll_events(int want)
163 {
164     switch (want) {
165     case SSL_NOTHING:
166         NOT_REACHED();
167
168     case SSL_READING:
169         return POLLIN;
170
171     case SSL_WRITING:
172         return POLLOUT;
173
174     default:
175         NOT_REACHED();
176     }
177 }
178
179 static int
180 new_ssl_stream(const char *name, int fd, enum session_type type,
181               enum ssl_state state, const struct sockaddr_in *remote,
182               struct stream **streamp)
183 {
184     struct sockaddr_in local;
185     socklen_t local_len = sizeof local;
186     struct ssl_stream *sslv;
187     SSL *ssl = NULL;
188     int on = 1;
189     int retval;
190
191     /* Check for all the needful configuration. */
192     retval = 0;
193     if (!has_private_key) {
194         VLOG_ERR("Private key must be configured to use SSL");
195         retval = ENOPROTOOPT;
196     }
197     if (!has_certificate) {
198         VLOG_ERR("Certificate must be configured to use SSL");
199         retval = ENOPROTOOPT;
200     }
201     if (!has_ca_cert && !bootstrap_ca_cert) {
202         VLOG_ERR("CA certificate must be configured to use SSL");
203         retval = ENOPROTOOPT;
204     }
205     if (!SSL_CTX_check_private_key(ctx)) {
206         VLOG_ERR("Private key does not match certificate public key: %s",
207                  ERR_error_string(ERR_get_error(), NULL));
208         retval = ENOPROTOOPT;
209     }
210     if (retval) {
211         goto error;
212     }
213
214     /* Get the local IP and port information */
215     retval = getsockname(fd, (struct sockaddr *) &local, &local_len);
216     if (retval) {
217         memset(&local, 0, sizeof local);
218     }
219
220     /* Disable Nagle. */
221     retval = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on);
222     if (retval) {
223         VLOG_ERR("%s: setsockopt(TCP_NODELAY): %s", name, strerror(errno));
224         retval = errno;
225         goto error;
226     }
227
228     /* Create and configure OpenSSL stream. */
229     ssl = SSL_new(ctx);
230     if (ssl == NULL) {
231         VLOG_ERR("SSL_new: %s", ERR_error_string(ERR_get_error(), NULL));
232         retval = ENOPROTOOPT;
233         goto error;
234     }
235     if (SSL_set_fd(ssl, fd) == 0) {
236         VLOG_ERR("SSL_set_fd: %s", ERR_error_string(ERR_get_error(), NULL));
237         retval = ENOPROTOOPT;
238         goto error;
239     }
240     if (bootstrap_ca_cert && type == CLIENT) {
241         SSL_set_verify(ssl, SSL_VERIFY_NONE, NULL);
242     }
243
244     /* Create and return the ssl_stream. */
245     sslv = xmalloc(sizeof *sslv);
246     stream_init(&sslv->stream, &ssl_stream_class, EAGAIN, name);
247     stream_set_remote_ip(&sslv->stream, remote->sin_addr.s_addr);
248     stream_set_remote_port(&sslv->stream, remote->sin_port);
249     stream_set_local_ip(&sslv->stream, local.sin_addr.s_addr);
250     stream_set_local_port(&sslv->stream, local.sin_port);
251     sslv->state = state;
252     sslv->type = type;
253     sslv->fd = fd;
254     sslv->ssl = ssl;
255     sslv->txbuf = NULL;
256     sslv->rx_want = sslv->tx_want = SSL_NOTHING;
257     *streamp = &sslv->stream;
258     return 0;
259
260 error:
261     if (ssl) {
262         SSL_free(ssl);
263     }
264     close(fd);
265     return retval;
266 }
267
268 static struct ssl_stream *
269 ssl_stream_cast(struct stream *stream)
270 {
271     stream_assert_class(stream, &ssl_stream_class);
272     return CONTAINER_OF(stream, struct ssl_stream, stream);
273 }
274
275 static int
276 ssl_open(const char *name, char *suffix, struct stream **streamp)
277 {
278     struct sockaddr_in sin;
279     int error, fd;
280
281     error = ssl_init();
282     if (error) {
283         return error;
284     }
285
286     error = inet_open_active(SOCK_STREAM, suffix, OFP_SSL_PORT, &sin, &fd);
287     if (fd >= 0) {
288         int state = error ? STATE_TCP_CONNECTING : STATE_SSL_CONNECTING;
289         return new_ssl_stream(name, fd, CLIENT, state, &sin, streamp);
290     } else {
291         VLOG_ERR("%s: connect: %s", name, strerror(error));
292         return error;
293     }
294 }
295
296 static int
297 do_ca_cert_bootstrap(struct stream *stream)
298 {
299     struct ssl_stream *sslv = ssl_stream_cast(stream);
300     STACK_OF(X509) *chain;
301     X509 *ca_cert;
302     FILE *file;
303     int error;
304     int fd;
305
306     chain = SSL_get_peer_cert_chain(sslv->ssl);
307     if (!chain || !sk_X509_num(chain)) {
308         VLOG_ERR("could not bootstrap CA cert: no certificate presented by "
309                  "peer");
310         return EPROTO;
311     }
312     ca_cert = sk_X509_value(chain, sk_X509_num(chain) - 1);
313
314     /* Check that 'ca_cert' is self-signed.  Otherwise it is not a CA
315      * certificate and we should not attempt to use it as one. */
316     error = X509_check_issued(ca_cert, ca_cert);
317     if (error) {
318         VLOG_ERR("could not bootstrap CA cert: obtained certificate is "
319                  "not self-signed (%s)",
320                  X509_verify_cert_error_string(error));
321         if (sk_X509_num(chain) < 2) {
322             VLOG_ERR("only one certificate was received, so probably the peer "
323                      "is not configured to send its CA certificate");
324         }
325         return EPROTO;
326     }
327
328     fd = open(ca_cert_file, O_CREAT | O_EXCL | O_WRONLY, 0444);
329     if (fd < 0) {
330         VLOG_ERR("could not bootstrap CA cert: creating %s failed: %s",
331                  ca_cert_file, strerror(errno));
332         return errno;
333     }
334
335     file = fdopen(fd, "w");
336     if (!file) {
337         int error = errno;
338         VLOG_ERR("could not bootstrap CA cert: fdopen failed: %s",
339                  strerror(error));
340         unlink(ca_cert_file);
341         return error;
342     }
343
344     if (!PEM_write_X509(file, ca_cert)) {
345         VLOG_ERR("could not bootstrap CA cert: PEM_write_X509 to %s failed: "
346                  "%s", ca_cert_file, ERR_error_string(ERR_get_error(), NULL));
347         fclose(file);
348         unlink(ca_cert_file);
349         return EIO;
350     }
351
352     if (fclose(file)) {
353         int error = errno;
354         VLOG_ERR("could not bootstrap CA cert: writing %s failed: %s",
355                  ca_cert_file, strerror(error));
356         unlink(ca_cert_file);
357         return error;
358     }
359
360     VLOG_INFO("successfully bootstrapped CA cert to %s", ca_cert_file);
361     log_ca_cert(ca_cert_file, ca_cert);
362     bootstrap_ca_cert = false;
363     has_ca_cert = true;
364
365     /* SSL_CTX_add_client_CA makes a copy of ca_cert's relevant data. */
366     SSL_CTX_add_client_CA(ctx, ca_cert);
367
368     /* SSL_CTX_use_certificate() takes ownership of the certificate passed in.
369      * 'ca_cert' is owned by sslv->ssl, so we need to duplicate it. */
370     ca_cert = X509_dup(ca_cert);
371     if (!ca_cert) {
372         out_of_memory();
373     }
374     if (SSL_CTX_load_verify_locations(ctx, ca_cert_file, NULL) != 1) {
375         VLOG_ERR("SSL_CTX_load_verify_locations: %s",
376                  ERR_error_string(ERR_get_error(), NULL));
377         return EPROTO;
378     }
379     VLOG_INFO("killing successful connection to retry using CA cert");
380     return EPROTO;
381 }
382
383 static int
384 ssl_connect(struct stream *stream)
385 {
386     struct ssl_stream *sslv = ssl_stream_cast(stream);
387     int retval;
388
389     switch (sslv->state) {
390     case STATE_TCP_CONNECTING:
391         retval = check_connection_completion(sslv->fd);
392         if (retval) {
393             return retval;
394         }
395         sslv->state = STATE_SSL_CONNECTING;
396         /* Fall through. */
397
398     case STATE_SSL_CONNECTING:
399         retval = (sslv->type == CLIENT
400                    ? SSL_connect(sslv->ssl) : SSL_accept(sslv->ssl));
401         if (retval != 1) {
402             int error = SSL_get_error(sslv->ssl, retval);
403             if (retval < 0 && ssl_wants_io(error)) {
404                 return EAGAIN;
405             } else {
406                 int unused;
407                 interpret_ssl_error((sslv->type == CLIENT ? "SSL_connect"
408                                      : "SSL_accept"), retval, error, &unused);
409                 shutdown(sslv->fd, SHUT_RDWR);
410                 return EPROTO;
411             }
412         } else if (bootstrap_ca_cert) {
413             return do_ca_cert_bootstrap(stream);
414         } else if ((SSL_get_verify_mode(sslv->ssl)
415                     & (SSL_VERIFY_NONE | SSL_VERIFY_PEER))
416                    != SSL_VERIFY_PEER) {
417             /* Two or more SSL connections completed at the same time while we
418              * were in bootstrap mode.  Only one of these can finish the
419              * bootstrap successfully.  The other one(s) must be rejected
420              * because they were not verified against the bootstrapped CA
421              * certificate.  (Alternatively we could verify them against the CA
422              * certificate, but that's more trouble than it's worth.  These
423              * connections will succeed the next time they retry, assuming that
424              * they have a certificate against the correct CA.) */
425             VLOG_ERR("rejecting SSL connection during bootstrap race window");
426             return EPROTO;
427         } else {
428             return 0;
429         }
430     }
431
432     NOT_REACHED();
433 }
434
435 static void
436 ssl_close(struct stream *stream)
437 {
438     struct ssl_stream *sslv = ssl_stream_cast(stream);
439     ssl_clear_txbuf(sslv);
440
441     /* Attempt clean shutdown of the SSL connection.  This will work most of
442      * the time, as long as the kernel send buffer has some free space and the
443      * SSL connection isn't renegotiating, etc.  That has to be good enough,
444      * since we don't have any way to continue the close operation in the
445      * background. */
446     SSL_shutdown(sslv->ssl);
447
448     SSL_free(sslv->ssl);
449     close(sslv->fd);
450     free(sslv);
451 }
452
453 static int
454 interpret_ssl_error(const char *function, int ret, int error,
455                     int *want)
456 {
457     *want = SSL_NOTHING;
458
459     switch (error) {
460     case SSL_ERROR_NONE:
461         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_NONE", function);
462         break;
463
464     case SSL_ERROR_ZERO_RETURN:
465         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_ZERO_RETURN", function);
466         break;
467
468     case SSL_ERROR_WANT_READ:
469         *want = SSL_READING;
470         return EAGAIN;
471
472     case SSL_ERROR_WANT_WRITE:
473         *want = SSL_WRITING;
474         return EAGAIN;
475
476     case SSL_ERROR_WANT_CONNECT:
477         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_WANT_CONNECT", function);
478         break;
479
480     case SSL_ERROR_WANT_ACCEPT:
481         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_WANT_ACCEPT", function);
482         break;
483
484     case SSL_ERROR_WANT_X509_LOOKUP:
485         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_WANT_X509_LOOKUP",
486                     function);
487         break;
488
489     case SSL_ERROR_SYSCALL: {
490         int queued_error = ERR_get_error();
491         if (queued_error == 0) {
492             if (ret < 0) {
493                 int status = errno;
494                 VLOG_WARN_RL(&rl, "%s: system error (%s)",
495                              function, strerror(status));
496                 return status;
497             } else {
498                 VLOG_WARN_RL(&rl, "%s: unexpected SSL connection close",
499                              function);
500                 return EPROTO;
501             }
502         } else {
503             VLOG_WARN_RL(&rl, "%s: %s",
504                          function, ERR_error_string(queued_error, NULL));
505             break;
506         }
507     }
508
509     case SSL_ERROR_SSL: {
510         int queued_error = ERR_get_error();
511         if (queued_error != 0) {
512             VLOG_WARN_RL(&rl, "%s: %s",
513                          function, ERR_error_string(queued_error, NULL));
514         } else {
515             VLOG_ERR_RL(&rl, "%s: SSL_ERROR_SSL without queued error",
516                         function);
517         }
518         break;
519     }
520
521     default:
522         VLOG_ERR_RL(&rl, "%s: bad SSL error code %d", function, error);
523         break;
524     }
525     return EIO;
526 }
527
528 static ssize_t
529 ssl_recv(struct stream *stream, void *buffer, size_t n)
530 {
531     struct ssl_stream *sslv = ssl_stream_cast(stream);
532     int old_state;
533     ssize_t ret;
534
535     /* Behavior of zero-byte SSL_read is poorly defined. */
536     assert(n > 0);
537
538     old_state = SSL_get_state(sslv->ssl);
539     ret = SSL_read(sslv->ssl, buffer, n);
540     if (old_state != SSL_get_state(sslv->ssl)) {
541         sslv->tx_want = SSL_NOTHING;
542     }
543     sslv->rx_want = SSL_NOTHING;
544
545     if (ret > 0) {
546         return ret;
547     } else {
548         int error = SSL_get_error(sslv->ssl, ret);
549         if (error == SSL_ERROR_ZERO_RETURN) {
550             return 0;
551         } else {
552             return -interpret_ssl_error("SSL_read", ret, error,
553                                         &sslv->rx_want);
554         }
555     }
556 }
557
558 static void
559 ssl_clear_txbuf(struct ssl_stream *sslv)
560 {
561     ofpbuf_delete(sslv->txbuf);
562     sslv->txbuf = NULL;
563 }
564
565 static int
566 ssl_do_tx(struct stream *stream)
567 {
568     struct ssl_stream *sslv = ssl_stream_cast(stream);
569
570     for (;;) {
571         int old_state = SSL_get_state(sslv->ssl);
572         int ret = SSL_write(sslv->ssl, sslv->txbuf->data, sslv->txbuf->size);
573         if (old_state != SSL_get_state(sslv->ssl)) {
574             sslv->rx_want = SSL_NOTHING;
575         }
576         sslv->tx_want = SSL_NOTHING;
577         if (ret > 0) {
578             ofpbuf_pull(sslv->txbuf, ret);
579             if (sslv->txbuf->size == 0) {
580                 return 0;
581             }
582         } else {
583             int ssl_error = SSL_get_error(sslv->ssl, ret);
584             if (ssl_error == SSL_ERROR_ZERO_RETURN) {
585                 VLOG_WARN_RL(&rl, "SSL_write: connection closed");
586                 return EPIPE;
587             } else {
588                 return interpret_ssl_error("SSL_write", ret, ssl_error,
589                                            &sslv->tx_want);
590             }
591         }
592     }
593 }
594
595 static ssize_t
596 ssl_send(struct stream *stream, const void *buffer, size_t n)
597 {
598     struct ssl_stream *sslv = ssl_stream_cast(stream);
599
600     if (sslv->txbuf) {
601         return -EAGAIN;
602     } else {
603         int error;
604
605         sslv->txbuf = ofpbuf_clone_data(buffer, n);
606         error = ssl_do_tx(stream);
607         switch (error) {
608         case 0:
609             ssl_clear_txbuf(sslv);
610             return n;
611         case EAGAIN:
612             leak_checker_claim(buffer);
613             return n;
614         default:
615             sslv->txbuf = NULL;
616             return -error;
617         }
618     }
619 }
620
621 static void
622 ssl_run(struct stream *stream)
623 {
624     struct ssl_stream *sslv = ssl_stream_cast(stream);
625
626     if (sslv->txbuf && ssl_do_tx(stream) != EAGAIN) {
627         ssl_clear_txbuf(sslv);
628     }
629 }
630
631 static void
632 ssl_run_wait(struct stream *stream)
633 {
634     struct ssl_stream *sslv = ssl_stream_cast(stream);
635
636     if (sslv->tx_want != SSL_NOTHING) {
637         poll_fd_wait(sslv->fd, want_to_poll_events(sslv->tx_want));
638     }
639 }
640
641 static void
642 ssl_wait(struct stream *stream, enum stream_wait_type wait)
643 {
644     struct ssl_stream *sslv = ssl_stream_cast(stream);
645
646     switch (wait) {
647     case STREAM_CONNECT:
648         if (stream_connect(stream) != EAGAIN) {
649             poll_immediate_wake();
650         } else {
651             switch (sslv->state) {
652             case STATE_TCP_CONNECTING:
653                 poll_fd_wait(sslv->fd, POLLOUT);
654                 break;
655
656             case STATE_SSL_CONNECTING:
657                 /* ssl_connect() called SSL_accept() or SSL_connect(), which
658                  * set up the status that we test here. */
659                 poll_fd_wait(sslv->fd,
660                              want_to_poll_events(SSL_want(sslv->ssl)));
661                 break;
662
663             default:
664                 NOT_REACHED();
665             }
666         }
667         break;
668
669     case STREAM_RECV:
670         if (sslv->rx_want != SSL_NOTHING) {
671             poll_fd_wait(sslv->fd, want_to_poll_events(sslv->rx_want));
672         } else {
673             poll_immediate_wake();
674         }
675         break;
676
677     case STREAM_SEND:
678         if (!sslv->txbuf) {
679             /* We have room in our tx queue. */
680             poll_immediate_wake();
681         } else {
682             /* stream_run_wait() will do the right thing; don't bother with
683              * redundancy. */
684         }
685         break;
686
687     default:
688         NOT_REACHED();
689     }
690 }
691
692 struct stream_class ssl_stream_class = {
693     "ssl",                      /* name */
694     ssl_open,                   /* open */
695     ssl_close,                  /* close */
696     ssl_connect,                /* connect */
697     ssl_recv,                   /* recv */
698     ssl_send,                   /* send */
699     ssl_run,                    /* run */
700     ssl_run_wait,               /* run_wait */
701     ssl_wait,                   /* wait */
702 };
703 \f
704 /* Passive SSL. */
705
706 struct pssl_pstream
707 {
708     struct pstream pstream;
709     int fd;
710 };
711
712 struct pstream_class pssl_pstream_class;
713
714 static struct pssl_pstream *
715 pssl_pstream_cast(struct pstream *pstream)
716 {
717     pstream_assert_class(pstream, &pssl_pstream_class);
718     return CONTAINER_OF(pstream, struct pssl_pstream, pstream);
719 }
720
721 static int
722 pssl_open(const char *name OVS_UNUSED, char *suffix, struct pstream **pstreamp)
723 {
724     struct pssl_pstream *pssl;
725     struct sockaddr_in sin;
726     char bound_name[128];
727     int retval;
728     int fd;
729
730     retval = ssl_init();
731     if (retval) {
732         return retval;
733     }
734
735     fd = inet_open_passive(SOCK_STREAM, suffix, OFP_SSL_PORT, &sin);
736     if (fd < 0) {
737         return -fd;
738     }
739     sprintf(bound_name, "pssl:%"PRIu16":"IP_FMT,
740             ntohs(sin.sin_port), IP_ARGS(&sin.sin_addr.s_addr));
741
742     pssl = xmalloc(sizeof *pssl);
743     pstream_init(&pssl->pstream, &pssl_pstream_class, bound_name);
744     pssl->fd = fd;
745     *pstreamp = &pssl->pstream;
746     return 0;
747 }
748
749 static void
750 pssl_close(struct pstream *pstream)
751 {
752     struct pssl_pstream *pssl = pssl_pstream_cast(pstream);
753     close(pssl->fd);
754     free(pssl);
755 }
756
757 static int
758 pssl_accept(struct pstream *pstream, struct stream **new_streamp)
759 {
760     struct pssl_pstream *pssl = pssl_pstream_cast(pstream);
761     struct sockaddr_in sin;
762     socklen_t sin_len = sizeof sin;
763     char name[128];
764     int new_fd;
765     int error;
766
767     new_fd = accept(pssl->fd, &sin, &sin_len);
768     if (new_fd < 0) {
769         int error = errno;
770         if (error != EAGAIN) {
771             VLOG_DBG_RL(&rl, "accept: %s", strerror(error));
772         }
773         return error;
774     }
775
776     error = set_nonblocking(new_fd);
777     if (error) {
778         close(new_fd);
779         return error;
780     }
781
782     sprintf(name, "ssl:"IP_FMT, IP_ARGS(&sin.sin_addr));
783     if (sin.sin_port != htons(OFP_SSL_PORT)) {
784         sprintf(strchr(name, '\0'), ":%"PRIu16, ntohs(sin.sin_port));
785     }
786     return new_ssl_stream(name, new_fd, SERVER, STATE_SSL_CONNECTING, &sin,
787                          new_streamp);
788 }
789
790 static void
791 pssl_wait(struct pstream *pstream)
792 {
793     struct pssl_pstream *pssl = pssl_pstream_cast(pstream);
794     poll_fd_wait(pssl->fd, POLLIN);
795 }
796
797 struct pstream_class pssl_pstream_class = {
798     "pssl",
799     pssl_open,
800     pssl_close,
801     pssl_accept,
802     pssl_wait,
803 };
804 \f
805 /*
806  * Returns true if OpenSSL error is WANT_READ or WANT_WRITE, indicating that
807  * OpenSSL is requesting that we call it back when the socket is ready for read
808  * or writing, respectively.
809  */
810 static bool
811 ssl_wants_io(int ssl_error)
812 {
813     return (ssl_error == SSL_ERROR_WANT_WRITE
814             || ssl_error == SSL_ERROR_WANT_READ);
815 }
816
817 static int
818 ssl_init(void)
819 {
820     static int init_status = -1;
821     if (init_status < 0) {
822         init_status = do_ssl_init();
823         assert(init_status >= 0);
824     }
825     return init_status;
826 }
827
828 static int
829 do_ssl_init(void)
830 {
831     SSL_METHOD *method;
832
833     SSL_library_init();
834     SSL_load_error_strings();
835
836     method = TLSv1_method();
837     if (method == NULL) {
838         VLOG_ERR("TLSv1_method: %s", ERR_error_string(ERR_get_error(), NULL));
839         return ENOPROTOOPT;
840     }
841
842     ctx = SSL_CTX_new(method);
843     if (ctx == NULL) {
844         VLOG_ERR("SSL_CTX_new: %s", ERR_error_string(ERR_get_error(), NULL));
845         return ENOPROTOOPT;
846     }
847     SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3);
848     SSL_CTX_set_tmp_dh_callback(ctx, tmp_dh_callback);
849     SSL_CTX_set_mode(ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);
850     SSL_CTX_set_mode(ctx, SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
851     SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
852                        NULL);
853
854     return 0;
855 }
856
857 static DH *
858 tmp_dh_callback(SSL *ssl OVS_UNUSED, int is_export OVS_UNUSED, int keylength)
859 {
860     struct dh {
861         int keylength;
862         DH *dh;
863         DH *(*constructor)(void);
864     };
865
866     static struct dh dh_table[] = {
867         {1024, NULL, get_dh1024},
868         {2048, NULL, get_dh2048},
869         {4096, NULL, get_dh4096},
870     };
871
872     struct dh *dh;
873
874     for (dh = dh_table; dh < &dh_table[ARRAY_SIZE(dh_table)]; dh++) {
875         if (dh->keylength == keylength) {
876             if (!dh->dh) {
877                 dh->dh = dh->constructor();
878                 if (!dh->dh) {
879                     ovs_fatal(ENOMEM, "out of memory constructing "
880                               "Diffie-Hellman parameters");
881                 }
882             }
883             return dh->dh;
884         }
885     }
886     VLOG_ERR_RL(&rl, "no Diffie-Hellman parameters for key length %d",
887                 keylength);
888     return NULL;
889 }
890
891 /* Returns true if SSL is at least partially configured. */
892 bool
893 stream_ssl_is_configured(void) 
894 {
895     return has_private_key || has_certificate || has_ca_cert;
896 }
897
898 void
899 stream_ssl_set_private_key_file(const char *file_name)
900 {
901     if (ssl_init()) {
902         return;
903     }
904     if (SSL_CTX_use_PrivateKey_file(ctx, file_name, SSL_FILETYPE_PEM) != 1) {
905         VLOG_ERR("SSL_use_PrivateKey_file: %s",
906                  ERR_error_string(ERR_get_error(), NULL));
907         return;
908     }
909     has_private_key = true;
910 }
911
912 void
913 stream_ssl_set_certificate_file(const char *file_name)
914 {
915     if (ssl_init()) {
916         return;
917     }
918     if (SSL_CTX_use_certificate_chain_file(ctx, file_name) != 1) {
919         VLOG_ERR("SSL_use_certificate_file: %s",
920                  ERR_error_string(ERR_get_error(), NULL));
921         return;
922     }
923     has_certificate = true;
924 }
925
926 /* Reads the X509 certificate or certificates in file 'file_name'.  On success,
927  * stores the address of the first element in an array of pointers to
928  * certificates in '*certs' and the number of certificates in the array in
929  * '*n_certs', and returns 0.  On failure, stores a null pointer in '*certs', 0
930  * in '*n_certs', and returns a positive errno value.
931  *
932  * The caller is responsible for freeing '*certs'. */
933 static int
934 read_cert_file(const char *file_name, X509 ***certs, size_t *n_certs)
935 {
936     FILE *file;
937     size_t allocated_certs = 0;
938
939     *certs = NULL;
940     *n_certs = 0;
941
942     file = fopen(file_name, "r");
943     if (!file) {
944         VLOG_ERR("failed to open %s for reading: %s",
945                  file_name, strerror(errno));
946         return errno;
947     }
948
949     for (;;) {
950         X509 *certificate;
951         int c;
952
953         /* Read certificate from file. */
954         certificate = PEM_read_X509(file, NULL, NULL, NULL);
955         if (!certificate) {
956             size_t i;
957
958             VLOG_ERR("PEM_read_X509 failed reading %s: %s",
959                      file_name, ERR_error_string(ERR_get_error(), NULL));
960             for (i = 0; i < *n_certs; i++) {
961                 X509_free((*certs)[i]);
962             }
963             free(*certs);
964             *certs = NULL;
965             *n_certs = 0;
966             return EIO;
967         }
968
969         /* Add certificate to array. */
970         if (*n_certs >= allocated_certs) {
971             *certs = x2nrealloc(*certs, &allocated_certs, sizeof **certs);
972         }
973         (*certs)[(*n_certs)++] = certificate;
974
975         /* Are there additional certificates in the file? */
976         do {
977             c = getc(file);
978         } while (isspace(c));
979         if (c == EOF) {
980             break;
981         }
982         ungetc(c, file);
983     }
984     fclose(file);
985     return 0;
986 }
987
988
989 /* Sets 'file_name' as the name of a file containing one or more X509
990  * certificates to send to the peer.  Typical use in OpenFlow is to send the CA
991  * certificate to the peer, which enables a switch to pick up the controller's
992  * CA certificate on its first connection. */
993 void
994 stream_ssl_set_peer_ca_cert_file(const char *file_name)
995 {
996     X509 **certs;
997     size_t n_certs;
998     size_t i;
999
1000     if (ssl_init()) {
1001         return;
1002     }
1003
1004     if (!read_cert_file(file_name, &certs, &n_certs)) {
1005         for (i = 0; i < n_certs; i++) {
1006             if (SSL_CTX_add_extra_chain_cert(ctx, certs[i]) != 1) {
1007                 VLOG_ERR("SSL_CTX_add_extra_chain_cert: %s",
1008                          ERR_error_string(ERR_get_error(), NULL));
1009             }
1010         }
1011         free(certs);
1012     }
1013 }
1014
1015 /* Logs fingerprint of CA certificate 'cert' obtained from 'file_name'. */
1016 static void
1017 log_ca_cert(const char *file_name, X509 *cert)
1018 {
1019     unsigned char digest[EVP_MAX_MD_SIZE];
1020     unsigned int n_bytes;
1021     struct ds fp;
1022     char *subject;
1023
1024     ds_init(&fp);
1025     if (!X509_digest(cert, EVP_sha1(), digest, &n_bytes)) {
1026         ds_put_cstr(&fp, "<out of memory>");
1027     } else {
1028         unsigned int i;
1029         for (i = 0; i < n_bytes; i++) {
1030             if (i) {
1031                 ds_put_char(&fp, ':');
1032             }
1033             ds_put_format(&fp, "%02hhx", digest[i]);
1034         }
1035     }
1036     subject = X509_NAME_oneline(X509_get_subject_name(cert), NULL, 0);
1037     VLOG_INFO("Trusting CA cert from %s (%s) (fingerprint %s)", file_name,
1038               subject ? subject : "<out of memory>", ds_cstr(&fp));
1039     free(subject);
1040     ds_destroy(&fp);
1041 }
1042
1043 /* Sets 'file_name' as the name of the file from which to read the CA
1044  * certificate used to verify the peer within SSL connections.  If 'bootstrap'
1045  * is false, the file must exist.  If 'bootstrap' is false, then the file is
1046  * read if it is exists; if it does not, then it will be created from the CA
1047  * certificate received from the peer on the first SSL connection. */
1048 void
1049 stream_ssl_set_ca_cert_file(const char *file_name, bool bootstrap)
1050 {
1051     X509 **certs;
1052     size_t n_certs;
1053     struct stat s;
1054
1055     if (ssl_init()) {
1056         return;
1057     }
1058
1059     if (bootstrap && stat(file_name, &s) && errno == ENOENT) {
1060         bootstrap_ca_cert = true;
1061         ca_cert_file = xstrdup(file_name);
1062     } else if (!read_cert_file(file_name, &certs, &n_certs)) {
1063         size_t i;
1064
1065         /* Set up list of CAs that the server will accept from the client. */
1066         for (i = 0; i < n_certs; i++) {
1067             /* SSL_CTX_add_client_CA makes a copy of the relevant data. */
1068             if (SSL_CTX_add_client_CA(ctx, certs[i]) != 1) {
1069                 VLOG_ERR("failed to add client certificate %d from %s: %s",
1070                          i, file_name,
1071                          ERR_error_string(ERR_get_error(), NULL));
1072             } else {
1073                 log_ca_cert(file_name, certs[i]);
1074             }
1075             X509_free(certs[i]);
1076         }
1077         free(certs);
1078
1079         /* Set up CAs for OpenSSL to trust in verifying the peer's
1080          * certificate. */
1081         if (SSL_CTX_load_verify_locations(ctx, file_name, NULL) != 1) {
1082             VLOG_ERR("SSL_CTX_load_verify_locations: %s",
1083                      ERR_error_string(ERR_get_error(), NULL));
1084             return;
1085         }
1086
1087         has_ca_cert = true;
1088     }
1089 }