0dc832de98eb47477cb3dae680ab5f10ba744b00
[sliver-openvswitch.git] / lib / stream-ssl.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
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 <ctype.h>
21 #include <errno.h>
22 #include <inttypes.h>
23 #include <string.h>
24 #include <sys/types.h>
25 #include <sys/socket.h>
26 #include <netinet/tcp.h>
27 #include <openssl/err.h>
28 #include <openssl/rand.h>
29 #include <openssl/ssl.h>
30 #include <openssl/x509v3.h>
31 #include <poll.h>
32 #include <fcntl.h>
33 #include <sys/stat.h>
34 #include <unistd.h>
35 #include "coverage.h"
36 #include "dynamic-string.h"
37 #include "entropy.h"
38 #include "ofpbuf.h"
39 #include "openflow/openflow.h"
40 #include "packets.h"
41 #include "poll-loop.h"
42 #include "shash.h"
43 #include "socket-util.h"
44 #include "util.h"
45 #include "stream-provider.h"
46 #include "stream.h"
47 #include "timeval.h"
48 #include "vlog.h"
49
50 #ifdef _WIN32
51 /* Ref: https://www.openssl.org/support/faq.html#PROG2
52  * Your application must link against the same version of the Win32 C-Runtime
53  * against which your openssl libraries were linked.  The default version for
54  * OpenSSL is /MD - "Multithreaded DLL". If we compile Open vSwitch with
55  * something other than /MD, instead of re-compiling OpenSSL
56  * toolkit, openssl/applink.c can be #included. Also, it is important
57  * to add CRYPTO_malloc_init prior first call to OpenSSL.
58  *
59  * XXX: The behavior of the following #include when Open vSwitch is
60  * compiled with /MD is not tested. */
61 #include <openssl/applink.c>
62 #define SHUT_RDWR SD_BOTH
63 #else
64 #define closesocket close
65 #endif
66
67 VLOG_DEFINE_THIS_MODULE(stream_ssl);
68
69 /* Active SSL. */
70
71 enum ssl_state {
72     STATE_TCP_CONNECTING,
73     STATE_SSL_CONNECTING
74 };
75
76 enum session_type {
77     CLIENT,
78     SERVER
79 };
80
81 struct ssl_stream
82 {
83     struct stream stream;
84     enum ssl_state state;
85     enum session_type type;
86     int fd;
87     HANDLE wevent;
88     SSL *ssl;
89     struct ofpbuf *txbuf;
90     unsigned int session_nr;
91
92     /* rx_want and tx_want record the result of the last call to SSL_read()
93      * and SSL_write(), respectively:
94      *
95      *    - If the call reported that data needed to be read from the file
96      *      descriptor, the corresponding member is set to SSL_READING.
97      *
98      *    - If the call reported that data needed to be written to the file
99      *      descriptor, the corresponding member is set to SSL_WRITING.
100      *
101      *    - Otherwise, the member is set to SSL_NOTHING, indicating that the
102      *      call completed successfully (or with an error) and that there is no
103      *      need to block.
104      *
105      * These are needed because there is no way to ask OpenSSL what a data read
106      * or write would require without giving it a buffer to receive into or
107      * data to send, respectively.  (Note that the SSL_want() status is
108      * overwritten by each SSL_read() or SSL_write() call, so we can't rely on
109      * its value.)
110      *
111      * A single call to SSL_read() or SSL_write() can perform both reading
112      * and writing and thus invalidate not one of these values but actually
113      * both.  Consider this situation, for example:
114      *
115      *    - SSL_write() blocks on a read, so tx_want gets SSL_READING.
116      *
117      *    - SSL_read() laters succeeds reading from 'fd' and clears out the
118      *      whole receive buffer, so rx_want gets SSL_READING.
119      *
120      *    - Client calls stream_wait(STREAM_RECV) and stream_wait(STREAM_SEND)
121      *      and blocks.
122      *
123      *    - Now we're stuck blocking until the peer sends us data, even though
124      *      SSL_write() could now succeed, which could easily be a deadlock
125      *      condition.
126      *
127      * On the other hand, we can't reset both tx_want and rx_want on every call
128      * to SSL_read() or SSL_write(), because that would produce livelock,
129      * e.g. in this situation:
130      *
131      *    - SSL_write() blocks, so tx_want gets SSL_READING or SSL_WRITING.
132      *
133      *    - SSL_read() blocks, so rx_want gets SSL_READING or SSL_WRITING,
134      *      but tx_want gets reset to SSL_NOTHING.
135      *
136      *    - Client calls stream_wait(STREAM_RECV) and stream_wait(STREAM_SEND)
137      *      and blocks.
138      *
139      *    - Client wakes up immediately since SSL_NOTHING in tx_want indicates
140      *      that no blocking is necessary.
141      *
142      * The solution we adopt here is to set tx_want to SSL_NOTHING after
143      * calling SSL_read() only if the SSL state of the connection changed,
144      * which indicates that an SSL-level renegotiation made some progress, and
145      * similarly for rx_want and SSL_write().  This prevents both the
146      * deadlock and livelock situations above.
147      */
148     int rx_want, tx_want;
149
150     /* A few bytes of header data in case SSL negotiation fails. */
151     uint8_t head[2];
152     short int n_head;
153 };
154
155 /* SSL context created by ssl_init(). */
156 static SSL_CTX *ctx;
157
158 struct ssl_config_file {
159     bool read;                  /* Whether the file was successfully read. */
160     char *file_name;            /* Configured file name, if any. */
161     struct timespec mtime;      /* File mtime as of last time we read it. */
162 };
163
164 /* SSL configuration files. */
165 static struct ssl_config_file private_key;
166 static struct ssl_config_file certificate;
167 static struct ssl_config_file ca_cert;
168
169 /* Ordinarily, the SSL client and server verify each other's certificates using
170  * a CA certificate.  Setting this to false disables this behavior.  (This is a
171  * security risk.) */
172 static bool verify_peer_cert = true;
173
174 /* Ordinarily, we require a CA certificate for the peer to be locally
175  * available.  We can, however, bootstrap the CA certificate from the peer at
176  * the beginning of our first connection then use that certificate on all
177  * subsequent connections, saving it to a file for use in future runs also.  In
178  * this case, 'bootstrap_ca_cert' is true. */
179 static bool bootstrap_ca_cert;
180
181 /* Session number.  Used in debug logging messages to uniquely identify a
182  * session. */
183 static unsigned int next_session_nr;
184
185 /* Who knows what can trigger various SSL errors, so let's throttle them down
186  * quite a bit. */
187 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(10, 25);
188
189 static int ssl_init(void);
190 static int do_ssl_init(void);
191 static bool ssl_wants_io(int ssl_error);
192 static void ssl_close(struct stream *);
193 static void ssl_clear_txbuf(struct ssl_stream *);
194 static void interpret_queued_ssl_error(const char *function);
195 static int interpret_ssl_error(const char *function, int ret, int error,
196                                int *want);
197 static DH *tmp_dh_callback(SSL *ssl, int is_export OVS_UNUSED, int keylength);
198 static void log_ca_cert(const char *file_name, X509 *cert);
199 static void stream_ssl_set_ca_cert_file__(const char *file_name,
200                                           bool bootstrap, bool force);
201 static void ssl_protocol_cb(int write_p, int version, int content_type,
202                             const void *, size_t, SSL *, void *sslv_);
203 static bool update_ssl_config(struct ssl_config_file *, const char *file_name);
204 static int sock_errno(void);
205 static void clear_handle(int fd, HANDLE wevent);
206
207 static short int
208 want_to_poll_events(int want)
209 {
210     switch (want) {
211     case SSL_NOTHING:
212         OVS_NOT_REACHED();
213
214     case SSL_READING:
215         return POLLIN;
216
217     case SSL_WRITING:
218         return POLLOUT;
219
220     default:
221         OVS_NOT_REACHED();
222     }
223 }
224
225 static int
226 new_ssl_stream(const char *name, int fd, enum session_type type,
227                enum ssl_state state, struct stream **streamp)
228 {
229     struct sockaddr_storage local;
230     socklen_t local_len = sizeof local;
231     struct ssl_stream *sslv;
232     SSL *ssl = NULL;
233     int on = 1;
234     int retval;
235
236     /* Check for all the needful configuration. */
237     retval = 0;
238     if (!private_key.read) {
239         VLOG_ERR("Private key must be configured to use SSL");
240         retval = ENOPROTOOPT;
241     }
242     if (!certificate.read) {
243         VLOG_ERR("Certificate must be configured to use SSL");
244         retval = ENOPROTOOPT;
245     }
246     if (!ca_cert.read && verify_peer_cert && !bootstrap_ca_cert) {
247         VLOG_ERR("CA certificate must be configured to use SSL");
248         retval = ENOPROTOOPT;
249     }
250     if (!retval && !SSL_CTX_check_private_key(ctx)) {
251         VLOG_ERR("Private key does not match certificate public key: %s",
252                  ERR_error_string(ERR_get_error(), NULL));
253         retval = ENOPROTOOPT;
254     }
255     if (retval) {
256         goto error;
257     }
258
259     /* Get the local IP and port information */
260     retval = getsockname(fd, (struct sockaddr *) &local, &local_len);
261     if (retval) {
262         memset(&local, 0, sizeof local);
263     }
264
265     /* Disable Nagle. */
266     retval = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on);
267     if (retval) {
268         retval = sock_errno();
269         VLOG_ERR("%s: setsockopt(TCP_NODELAY): %s", name,
270                  sock_strerror(retval));
271         goto error;
272     }
273
274     /* Create and configure OpenSSL stream. */
275     ssl = SSL_new(ctx);
276     if (ssl == NULL) {
277         VLOG_ERR("SSL_new: %s", ERR_error_string(ERR_get_error(), NULL));
278         retval = ENOPROTOOPT;
279         goto error;
280     }
281     if (SSL_set_fd(ssl, fd) == 0) {
282         VLOG_ERR("SSL_set_fd: %s", ERR_error_string(ERR_get_error(), NULL));
283         retval = ENOPROTOOPT;
284         goto error;
285     }
286     if (!verify_peer_cert || (bootstrap_ca_cert && type == CLIENT)) {
287         SSL_set_verify(ssl, SSL_VERIFY_NONE, NULL);
288     }
289
290     /* Create and return the ssl_stream. */
291     sslv = xmalloc(sizeof *sslv);
292     stream_init(&sslv->stream, &ssl_stream_class, EAGAIN, name);
293     sslv->state = state;
294     sslv->type = type;
295     sslv->fd = fd;
296 #ifdef _WIN32
297     sslv->wevent = CreateEvent(NULL, FALSE, FALSE, NULL);
298 #endif
299     sslv->ssl = ssl;
300     sslv->txbuf = NULL;
301     sslv->rx_want = sslv->tx_want = SSL_NOTHING;
302     sslv->session_nr = next_session_nr++;
303     sslv->n_head = 0;
304
305     if (VLOG_IS_DBG_ENABLED()) {
306         SSL_set_msg_callback(ssl, ssl_protocol_cb);
307         SSL_set_msg_callback_arg(ssl, sslv);
308     }
309
310     *streamp = &sslv->stream;
311     return 0;
312
313 error:
314     if (ssl) {
315         SSL_free(ssl);
316     }
317     closesocket(fd);
318     return retval;
319 }
320
321 static struct ssl_stream *
322 ssl_stream_cast(struct stream *stream)
323 {
324     stream_assert_class(stream, &ssl_stream_class);
325     return CONTAINER_OF(stream, struct ssl_stream, stream);
326 }
327
328 static int
329 ssl_open(const char *name, char *suffix, struct stream **streamp, uint8_t dscp)
330 {
331     int error, fd;
332
333     error = ssl_init();
334     if (error) {
335         return error;
336     }
337
338     error = inet_open_active(SOCK_STREAM, suffix, OFP_OLD_PORT, NULL, &fd,
339                              dscp);
340     if (fd >= 0) {
341         int state = error ? STATE_TCP_CONNECTING : STATE_SSL_CONNECTING;
342         return new_ssl_stream(name, fd, CLIENT, state, streamp);
343     } else {
344         VLOG_ERR("%s: connect: %s", name, ovs_strerror(error));
345         return error;
346     }
347 }
348
349 static int
350 do_ca_cert_bootstrap(struct stream *stream)
351 {
352     struct ssl_stream *sslv = ssl_stream_cast(stream);
353     STACK_OF(X509) *chain;
354     X509 *cert;
355     FILE *file;
356     int error;
357     int fd;
358
359     chain = SSL_get_peer_cert_chain(sslv->ssl);
360     if (!chain || !sk_X509_num(chain)) {
361         VLOG_ERR("could not bootstrap CA cert: no certificate presented by "
362                  "peer");
363         return EPROTO;
364     }
365     cert = sk_X509_value(chain, sk_X509_num(chain) - 1);
366
367     /* Check that 'cert' is self-signed.  Otherwise it is not a CA
368      * certificate and we should not attempt to use it as one. */
369     error = X509_check_issued(cert, cert);
370     if (error) {
371         VLOG_ERR("could not bootstrap CA cert: obtained certificate is "
372                  "not self-signed (%s)",
373                  X509_verify_cert_error_string(error));
374         if (sk_X509_num(chain) < 2) {
375             VLOG_ERR("only one certificate was received, so probably the peer "
376                      "is not configured to send its CA certificate");
377         }
378         return EPROTO;
379     }
380
381     fd = open(ca_cert.file_name, O_CREAT | O_EXCL | O_WRONLY, 0444);
382     if (fd < 0) {
383         if (errno == EEXIST) {
384             VLOG_INFO_RL(&rl, "reading CA cert %s created by another process",
385                          ca_cert.file_name);
386             stream_ssl_set_ca_cert_file__(ca_cert.file_name, true, true);
387             return EPROTO;
388         } else {
389             VLOG_ERR("could not bootstrap CA cert: creating %s failed: %s",
390                      ca_cert.file_name, ovs_strerror(errno));
391             return errno;
392         }
393     }
394
395     file = fdopen(fd, "w");
396     if (!file) {
397         error = errno;
398         VLOG_ERR("could not bootstrap CA cert: fdopen failed: %s",
399                  ovs_strerror(error));
400         unlink(ca_cert.file_name);
401         return error;
402     }
403
404     if (!PEM_write_X509(file, cert)) {
405         VLOG_ERR("could not bootstrap CA cert: PEM_write_X509 to %s failed: "
406                  "%s", ca_cert.file_name,
407                  ERR_error_string(ERR_get_error(), NULL));
408         fclose(file);
409         unlink(ca_cert.file_name);
410         return EIO;
411     }
412
413     if (fclose(file)) {
414         error = errno;
415         VLOG_ERR("could not bootstrap CA cert: writing %s failed: %s",
416                  ca_cert.file_name, ovs_strerror(error));
417         unlink(ca_cert.file_name);
418         return error;
419     }
420
421     VLOG_INFO("successfully bootstrapped CA cert to %s", ca_cert.file_name);
422     log_ca_cert(ca_cert.file_name, cert);
423     bootstrap_ca_cert = false;
424     ca_cert.read = true;
425
426     /* SSL_CTX_add_client_CA makes a copy of cert's relevant data. */
427     SSL_CTX_add_client_CA(ctx, cert);
428
429     /* SSL_CTX_use_certificate() takes ownership of the certificate passed in.
430      * 'cert' is owned by sslv->ssl, so we need to duplicate it. */
431     cert = X509_dup(cert);
432     if (!cert) {
433         out_of_memory();
434     }
435     SSL_CTX_set_cert_store(ctx, X509_STORE_new());
436     if (SSL_CTX_load_verify_locations(ctx, ca_cert.file_name, NULL) != 1) {
437         VLOG_ERR("SSL_CTX_load_verify_locations: %s",
438                  ERR_error_string(ERR_get_error(), NULL));
439         return EPROTO;
440     }
441     VLOG_INFO("killing successful connection to retry using CA cert");
442     return EPROTO;
443 }
444
445 static int
446 ssl_connect(struct stream *stream)
447 {
448     struct ssl_stream *sslv = ssl_stream_cast(stream);
449     int retval;
450
451     switch (sslv->state) {
452     case STATE_TCP_CONNECTING:
453         retval = check_connection_completion(sslv->fd);
454         if (retval) {
455             return retval;
456         }
457         sslv->state = STATE_SSL_CONNECTING;
458         /* Fall through. */
459
460     case STATE_SSL_CONNECTING:
461         /* Capture the first few bytes of received data so that we can guess
462          * what kind of funny data we've been sent if SSL negotiation fails. */
463         if (sslv->n_head <= 0) {
464             sslv->n_head = recv(sslv->fd, sslv->head, sizeof sslv->head,
465                                 MSG_PEEK);
466         }
467
468         retval = (sslv->type == CLIENT
469                    ? SSL_connect(sslv->ssl) : SSL_accept(sslv->ssl));
470         if (retval != 1) {
471             int error = SSL_get_error(sslv->ssl, retval);
472             if (retval < 0 && ssl_wants_io(error)) {
473                 return EAGAIN;
474             } else {
475                 int unused;
476
477                 interpret_ssl_error((sslv->type == CLIENT ? "SSL_connect"
478                                      : "SSL_accept"), retval, error, &unused);
479                 shutdown(sslv->fd, SHUT_RDWR);
480                 stream_report_content(sslv->head, sslv->n_head, STREAM_SSL,
481                                       THIS_MODULE, stream_get_name(stream));
482                 return EPROTO;
483             }
484         } else if (bootstrap_ca_cert) {
485             return do_ca_cert_bootstrap(stream);
486         } else if (verify_peer_cert
487                    && ((SSL_get_verify_mode(sslv->ssl)
488                        & (SSL_VERIFY_NONE | SSL_VERIFY_PEER))
489                        != SSL_VERIFY_PEER)) {
490             /* Two or more SSL connections completed at the same time while we
491              * were in bootstrap mode.  Only one of these can finish the
492              * bootstrap successfully.  The other one(s) must be rejected
493              * because they were not verified against the bootstrapped CA
494              * certificate.  (Alternatively we could verify them against the CA
495              * certificate, but that's more trouble than it's worth.  These
496              * connections will succeed the next time they retry, assuming that
497              * they have a certificate against the correct CA.) */
498             VLOG_INFO("rejecting SSL connection during bootstrap race window");
499             return EPROTO;
500         } else {
501             return 0;
502         }
503     }
504
505     OVS_NOT_REACHED();
506 }
507
508 static void
509 ssl_close(struct stream *stream)
510 {
511     struct ssl_stream *sslv = ssl_stream_cast(stream);
512     ssl_clear_txbuf(sslv);
513
514     /* Attempt clean shutdown of the SSL connection.  This will work most of
515      * the time, as long as the kernel send buffer has some free space and the
516      * SSL connection isn't renegotiating, etc.  That has to be good enough,
517      * since we don't have any way to continue the close operation in the
518      * background. */
519     SSL_shutdown(sslv->ssl);
520
521     /* SSL_shutdown() might have signaled an error, in which case we need to
522      * flush it out of the OpenSSL error queue or the next OpenSSL operation
523      * will falsely signal an error. */
524     ERR_clear_error();
525
526     SSL_free(sslv->ssl);
527     clear_handle(sslv->fd, sslv->wevent);
528     closesocket(sslv->fd);
529     free(sslv);
530 }
531
532 static void
533 interpret_queued_ssl_error(const char *function)
534 {
535     int queued_error = ERR_get_error();
536     if (queued_error != 0) {
537         VLOG_WARN_RL(&rl, "%s: %s",
538                      function, ERR_error_string(queued_error, NULL));
539     } else {
540         VLOG_ERR_RL(&rl, "%s: SSL_ERROR_SSL without queued error", function);
541     }
542 }
543
544 static int
545 interpret_ssl_error(const char *function, int ret, int error,
546                     int *want)
547 {
548     *want = SSL_NOTHING;
549
550     switch (error) {
551     case SSL_ERROR_NONE:
552         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_NONE", function);
553         break;
554
555     case SSL_ERROR_ZERO_RETURN:
556         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_ZERO_RETURN", function);
557         break;
558
559     case SSL_ERROR_WANT_READ:
560         *want = SSL_READING;
561         return EAGAIN;
562
563     case SSL_ERROR_WANT_WRITE:
564         *want = SSL_WRITING;
565         return EAGAIN;
566
567     case SSL_ERROR_WANT_CONNECT:
568         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_WANT_CONNECT", function);
569         break;
570
571     case SSL_ERROR_WANT_ACCEPT:
572         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_WANT_ACCEPT", function);
573         break;
574
575     case SSL_ERROR_WANT_X509_LOOKUP:
576         VLOG_ERR_RL(&rl, "%s: unexpected SSL_ERROR_WANT_X509_LOOKUP",
577                     function);
578         break;
579
580     case SSL_ERROR_SYSCALL: {
581         int queued_error = ERR_get_error();
582         if (queued_error == 0) {
583             if (ret < 0) {
584                 int status = errno;
585                 VLOG_WARN_RL(&rl, "%s: system error (%s)",
586                              function, ovs_strerror(status));
587                 return status;
588             } else {
589                 VLOG_WARN_RL(&rl, "%s: unexpected SSL connection close",
590                              function);
591                 return EPROTO;
592             }
593         } else {
594             VLOG_WARN_RL(&rl, "%s: %s",
595                          function, ERR_error_string(queued_error, NULL));
596             break;
597         }
598     }
599
600     case SSL_ERROR_SSL:
601         interpret_queued_ssl_error(function);
602         break;
603
604     default:
605         VLOG_ERR_RL(&rl, "%s: bad SSL error code %d", function, error);
606         break;
607     }
608     return EIO;
609 }
610
611 static ssize_t
612 ssl_recv(struct stream *stream, void *buffer, size_t n)
613 {
614     struct ssl_stream *sslv = ssl_stream_cast(stream);
615     int old_state;
616     ssize_t ret;
617
618     /* Behavior of zero-byte SSL_read is poorly defined. */
619     ovs_assert(n > 0);
620
621     old_state = SSL_get_state(sslv->ssl);
622     ret = SSL_read(sslv->ssl, buffer, n);
623     if (old_state != SSL_get_state(sslv->ssl)) {
624         sslv->tx_want = SSL_NOTHING;
625     }
626     sslv->rx_want = SSL_NOTHING;
627
628     if (ret > 0) {
629         return ret;
630     } else {
631         int error = SSL_get_error(sslv->ssl, ret);
632         if (error == SSL_ERROR_ZERO_RETURN) {
633             return 0;
634         } else {
635             return -interpret_ssl_error("SSL_read", ret, error,
636                                         &sslv->rx_want);
637         }
638     }
639 }
640
641 static void
642 ssl_clear_txbuf(struct ssl_stream *sslv)
643 {
644     ofpbuf_delete(sslv->txbuf);
645     sslv->txbuf = NULL;
646 }
647
648 static int
649 ssl_do_tx(struct stream *stream)
650 {
651     struct ssl_stream *sslv = ssl_stream_cast(stream);
652
653     for (;;) {
654         int old_state = SSL_get_state(sslv->ssl);
655         int ret = SSL_write(sslv->ssl, sslv->txbuf->data, sslv->txbuf->size);
656         if (old_state != SSL_get_state(sslv->ssl)) {
657             sslv->rx_want = SSL_NOTHING;
658         }
659         sslv->tx_want = SSL_NOTHING;
660         if (ret > 0) {
661             ofpbuf_pull(sslv->txbuf, ret);
662             if (sslv->txbuf->size == 0) {
663                 return 0;
664             }
665         } else {
666             int ssl_error = SSL_get_error(sslv->ssl, ret);
667             if (ssl_error == SSL_ERROR_ZERO_RETURN) {
668                 VLOG_WARN_RL(&rl, "SSL_write: connection closed");
669                 return EPIPE;
670             } else {
671                 return interpret_ssl_error("SSL_write", ret, ssl_error,
672                                            &sslv->tx_want);
673             }
674         }
675     }
676 }
677
678 static ssize_t
679 ssl_send(struct stream *stream, const void *buffer, size_t n)
680 {
681     struct ssl_stream *sslv = ssl_stream_cast(stream);
682
683     if (sslv->txbuf) {
684         return -EAGAIN;
685     } else {
686         int error;
687
688         sslv->txbuf = ofpbuf_clone_data(buffer, n);
689         error = ssl_do_tx(stream);
690         switch (error) {
691         case 0:
692             ssl_clear_txbuf(sslv);
693             return n;
694         case EAGAIN:
695             return n;
696         default:
697             sslv->txbuf = NULL;
698             return -error;
699         }
700     }
701 }
702
703 static void
704 ssl_run(struct stream *stream)
705 {
706     struct ssl_stream *sslv = ssl_stream_cast(stream);
707
708     if (sslv->txbuf && ssl_do_tx(stream) != EAGAIN) {
709         ssl_clear_txbuf(sslv);
710     }
711 }
712
713 static void
714 ssl_run_wait(struct stream *stream)
715 {
716     struct ssl_stream *sslv = ssl_stream_cast(stream);
717
718     if (sslv->tx_want != SSL_NOTHING) {
719         poll_fd_wait_event(sslv->fd, sslv->wevent,
720                            want_to_poll_events(sslv->tx_want));
721     }
722 }
723
724 static void
725 ssl_wait(struct stream *stream, enum stream_wait_type wait)
726 {
727     struct ssl_stream *sslv = ssl_stream_cast(stream);
728
729     switch (wait) {
730     case STREAM_CONNECT:
731         if (stream_connect(stream) != EAGAIN) {
732             poll_immediate_wake();
733         } else {
734             switch (sslv->state) {
735             case STATE_TCP_CONNECTING:
736                 poll_fd_wait_event(sslv->fd, sslv->wevent, POLLOUT);
737                 break;
738
739             case STATE_SSL_CONNECTING:
740                 /* ssl_connect() called SSL_accept() or SSL_connect(), which
741                  * set up the status that we test here. */
742                 poll_fd_wait_event(sslv->fd, sslv->wevent,
743                                    want_to_poll_events(SSL_want(sslv->ssl)));
744                 break;
745
746             default:
747                 OVS_NOT_REACHED();
748             }
749         }
750         break;
751
752     case STREAM_RECV:
753         if (sslv->rx_want != SSL_NOTHING) {
754             poll_fd_wait_event(sslv->fd, sslv->wevent,
755                                want_to_poll_events(sslv->rx_want));
756         } else {
757             poll_immediate_wake();
758         }
759         break;
760
761     case STREAM_SEND:
762         if (!sslv->txbuf) {
763             /* We have room in our tx queue. */
764             poll_immediate_wake();
765         } else {
766             /* stream_run_wait() will do the right thing; don't bother with
767              * redundancy. */
768         }
769         break;
770
771     default:
772         OVS_NOT_REACHED();
773     }
774 }
775
776 const struct stream_class ssl_stream_class = {
777     "ssl",                      /* name */
778     true,                       /* needs_probes */
779     ssl_open,                   /* open */
780     ssl_close,                  /* close */
781     ssl_connect,                /* connect */
782     ssl_recv,                   /* recv */
783     ssl_send,                   /* send */
784     ssl_run,                    /* run */
785     ssl_run_wait,               /* run_wait */
786     ssl_wait,                   /* wait */
787 };
788 \f
789 /* Passive SSL. */
790
791 struct pssl_pstream
792 {
793     struct pstream pstream;
794     int fd;
795     HANDLE wevent;
796 };
797
798 const struct pstream_class pssl_pstream_class;
799
800 static struct pssl_pstream *
801 pssl_pstream_cast(struct pstream *pstream)
802 {
803     pstream_assert_class(pstream, &pssl_pstream_class);
804     return CONTAINER_OF(pstream, struct pssl_pstream, pstream);
805 }
806
807 static int
808 pssl_open(const char *name OVS_UNUSED, char *suffix, struct pstream **pstreamp,
809           uint8_t dscp)
810 {
811     char bound_name[SS_NTOP_BUFSIZE + 16];
812     char addrbuf[SS_NTOP_BUFSIZE];
813     struct sockaddr_storage ss;
814     struct pssl_pstream *pssl;
815     uint16_t port;
816     int retval;
817     int fd;
818
819     retval = ssl_init();
820     if (retval) {
821         return retval;
822     }
823
824     fd = inet_open_passive(SOCK_STREAM, suffix, OFP_OLD_PORT, &ss, dscp);
825     if (fd < 0) {
826         return -fd;
827     }
828
829     port = ss_get_port(&ss);
830     snprintf(bound_name, sizeof bound_name, "ptcp:%"PRIu16":%s",
831              port, ss_format_address(&ss, addrbuf, sizeof addrbuf));
832
833     pssl = xmalloc(sizeof *pssl);
834     pstream_init(&pssl->pstream, &pssl_pstream_class, bound_name);
835     pstream_set_bound_port(&pssl->pstream, htons(port));
836     pssl->fd = fd;
837 #ifdef _WIN32
838     pssl->wevent = CreateEvent(NULL, FALSE, FALSE, NULL);
839 #endif
840     *pstreamp = &pssl->pstream;
841     return 0;
842 }
843
844 static void
845 pssl_close(struct pstream *pstream)
846 {
847     struct pssl_pstream *pssl = pssl_pstream_cast(pstream);
848     clear_handle(pssl->fd, pssl->wevent);
849     closesocket(pssl->fd);
850     free(pssl);
851 }
852
853 static int
854 pssl_accept(struct pstream *pstream, struct stream **new_streamp)
855 {
856     struct pssl_pstream *pssl = pssl_pstream_cast(pstream);
857     char name[SS_NTOP_BUFSIZE + 16];
858     char addrbuf[SS_NTOP_BUFSIZE];
859     struct sockaddr_storage ss;
860     socklen_t ss_len = sizeof ss;
861     int new_fd;
862     int error;
863
864     new_fd = accept(pssl->fd, (struct sockaddr *) &ss, &ss_len);
865     if (new_fd < 0) {
866         error = sock_errno();
867 #ifdef _WIN32
868         if (error == WSAEWOULDBLOCK) {
869             error = EAGAIN;
870         }
871 #endif
872         if (error != EAGAIN) {
873             VLOG_DBG_RL(&rl, "accept: %s", sock_strerror(error));
874         }
875         return error;
876     }
877
878     error = set_nonblocking(new_fd);
879     if (error) {
880         closesocket(new_fd);
881         return error;
882     }
883
884     snprintf(name, sizeof name, "tcp:%s:%"PRIu16,
885              ss_format_address(&ss, addrbuf, sizeof addrbuf),
886              ss_get_port(&ss));
887     return new_ssl_stream(name, new_fd, SERVER, STATE_SSL_CONNECTING,
888                           new_streamp);
889 }
890
891 static void
892 pssl_wait(struct pstream *pstream)
893 {
894     struct pssl_pstream *pssl = pssl_pstream_cast(pstream);
895     poll_fd_wait_event(pssl->fd, pssl->wevent, POLLIN);
896 }
897
898 static int
899 pssl_set_dscp(struct pstream *pstream, uint8_t dscp)
900 {
901     struct pssl_pstream *pssl = pssl_pstream_cast(pstream);
902     return set_dscp(pssl->fd, dscp);
903 }
904
905 const struct pstream_class pssl_pstream_class = {
906     "pssl",
907     true,
908     pssl_open,
909     pssl_close,
910     pssl_accept,
911     pssl_wait,
912     pssl_set_dscp,
913 };
914 \f
915 /*
916  * Returns true if OpenSSL error is WANT_READ or WANT_WRITE, indicating that
917  * OpenSSL is requesting that we call it back when the socket is ready for read
918  * or writing, respectively.
919  */
920 static bool
921 ssl_wants_io(int ssl_error)
922 {
923     return (ssl_error == SSL_ERROR_WANT_WRITE
924             || ssl_error == SSL_ERROR_WANT_READ);
925 }
926
927 static int
928 ssl_init(void)
929 {
930     static int init_status = -1;
931     if (init_status < 0) {
932         init_status = do_ssl_init();
933         ovs_assert(init_status >= 0);
934     }
935     return init_status;
936 }
937
938 static int
939 do_ssl_init(void)
940 {
941     SSL_METHOD *method;
942
943 #ifdef _WIN32
944     /* The following call is needed if we "#include <openssl/applink.c>". */
945     CRYPTO_malloc_init();
946 #endif
947     SSL_library_init();
948     SSL_load_error_strings();
949
950     if (!RAND_status()) {
951         /* We occasionally see OpenSSL fail to seed its random number generator
952          * in heavily loaded hypervisors.  I suspect the following scenario:
953          *
954          * 1. OpenSSL calls read() to get 32 bytes from /dev/urandom.
955          * 2. The kernel generates 10 bytes of randomness and copies it out.
956          * 3. A signal arrives (perhaps SIGALRM).
957          * 4. The kernel interrupts the system call to service the signal.
958          * 5. Userspace gets 10 bytes of entropy.
959          * 6. OpenSSL doesn't read again to get the final 22 bytes.  Therefore
960          *    OpenSSL doesn't have enough entropy to consider itself
961          *    initialized.
962          *
963          * The only part I'm not entirely sure about is #6, because the OpenSSL
964          * code is so hard to read. */
965         uint8_t seed[32];
966         int retval;
967
968         VLOG_WARN("OpenSSL random seeding failed, reseeding ourselves");
969
970         retval = get_entropy(seed, sizeof seed);
971         if (retval) {
972             VLOG_ERR("failed to obtain entropy (%s)",
973                      ovs_retval_to_string(retval));
974             return retval > 0 ? retval : ENOPROTOOPT;
975         }
976
977         RAND_seed(seed, sizeof seed);
978     }
979
980     /* New OpenSSL changed TLSv1_method() to return a "const" pointer, so the
981      * cast is needed to avoid a warning with those newer versions. */
982     method = CONST_CAST(SSL_METHOD *, TLSv1_method());
983     if (method == NULL) {
984         VLOG_ERR("TLSv1_method: %s", ERR_error_string(ERR_get_error(), NULL));
985         return ENOPROTOOPT;
986     }
987
988     ctx = SSL_CTX_new(method);
989     if (ctx == NULL) {
990         VLOG_ERR("SSL_CTX_new: %s", ERR_error_string(ERR_get_error(), NULL));
991         return ENOPROTOOPT;
992     }
993     SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3);
994     SSL_CTX_set_tmp_dh_callback(ctx, tmp_dh_callback);
995     SSL_CTX_set_mode(ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);
996     SSL_CTX_set_mode(ctx, SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
997     SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
998                        NULL);
999
1000     return 0;
1001 }
1002
1003 static DH *
1004 tmp_dh_callback(SSL *ssl OVS_UNUSED, int is_export OVS_UNUSED, int keylength)
1005 {
1006     struct dh {
1007         int keylength;
1008         DH *dh;
1009         DH *(*constructor)(void);
1010     };
1011
1012     static struct dh dh_table[] = {
1013         {1024, NULL, get_dh1024},
1014         {2048, NULL, get_dh2048},
1015         {4096, NULL, get_dh4096},
1016     };
1017
1018     struct dh *dh;
1019
1020     for (dh = dh_table; dh < &dh_table[ARRAY_SIZE(dh_table)]; dh++) {
1021         if (dh->keylength == keylength) {
1022             if (!dh->dh) {
1023                 dh->dh = dh->constructor();
1024                 if (!dh->dh) {
1025                     out_of_memory();
1026                 }
1027             }
1028             return dh->dh;
1029         }
1030     }
1031     VLOG_ERR_RL(&rl, "no Diffie-Hellman parameters for key length %d",
1032                 keylength);
1033     return NULL;
1034 }
1035
1036 /* Returns true if SSL is at least partially configured. */
1037 bool
1038 stream_ssl_is_configured(void)
1039 {
1040     return private_key.file_name || certificate.file_name || ca_cert.file_name;
1041 }
1042
1043 static bool
1044 update_ssl_config(struct ssl_config_file *config, const char *file_name)
1045 {
1046     struct timespec mtime;
1047     int error;
1048
1049     if (ssl_init() || !file_name) {
1050         return false;
1051     }
1052
1053     /* If the file name hasn't changed and neither has the file contents, stop
1054      * here. */
1055     error = get_mtime(file_name, &mtime);
1056     if (error && error != ENOENT) {
1057         VLOG_ERR_RL(&rl, "%s: stat failed (%s)",
1058                     file_name, ovs_strerror(error));
1059     }
1060     if (config->file_name
1061         && !strcmp(config->file_name, file_name)
1062         && mtime.tv_sec == config->mtime.tv_sec
1063         && mtime.tv_nsec == config->mtime.tv_nsec) {
1064         return false;
1065     }
1066
1067     /* Update 'config'. */
1068     config->mtime = mtime;
1069     if (file_name != config->file_name) {
1070         free(config->file_name);
1071         config->file_name = xstrdup(file_name);
1072     }
1073     return true;
1074 }
1075
1076 static void
1077 stream_ssl_set_private_key_file__(const char *file_name)
1078 {
1079     if (SSL_CTX_use_PrivateKey_file(ctx, file_name, SSL_FILETYPE_PEM) == 1) {
1080         private_key.read = true;
1081     } else {
1082         VLOG_ERR("SSL_use_PrivateKey_file: %s",
1083                  ERR_error_string(ERR_get_error(), NULL));
1084     }
1085 }
1086
1087 void
1088 stream_ssl_set_private_key_file(const char *file_name)
1089 {
1090     if (update_ssl_config(&private_key, file_name)) {
1091         stream_ssl_set_private_key_file__(file_name);
1092     }
1093 }
1094
1095 static void
1096 stream_ssl_set_certificate_file__(const char *file_name)
1097 {
1098     if (SSL_CTX_use_certificate_chain_file(ctx, file_name) == 1) {
1099         certificate.read = true;
1100     } else {
1101         VLOG_ERR("SSL_use_certificate_file: %s",
1102                  ERR_error_string(ERR_get_error(), NULL));
1103     }
1104 }
1105
1106 void
1107 stream_ssl_set_certificate_file(const char *file_name)
1108 {
1109     if (update_ssl_config(&certificate, file_name)) {
1110         stream_ssl_set_certificate_file__(file_name);
1111     }
1112 }
1113
1114 /* Sets the private key and certificate files in one operation.  Use this
1115  * interface, instead of calling stream_ssl_set_private_key_file() and
1116  * stream_ssl_set_certificate_file() individually, in the main loop of a
1117  * long-running program whose key and certificate might change at runtime.
1118  *
1119  * This is important because of OpenSSL's behavior.  If an OpenSSL context
1120  * already has a certificate, and stream_ssl_set_private_key_file() is called
1121  * to install a new private key, OpenSSL will report an error because the new
1122  * private key does not match the old certificate.  The other order, of setting
1123  * a new certificate, then setting a new private key, does work.
1124  *
1125  * If this were the only problem, calling stream_ssl_set_certificate_file()
1126  * before stream_ssl_set_private_key_file() would fix it.  But, if the private
1127  * key is changed before the certificate (e.g. someone "scp"s or "mv"s the new
1128  * private key in place before the certificate), then OpenSSL would reject that
1129  * change, and then the change of certificate would succeed, but there would be
1130  * no associated private key (because it had only changed once and therefore
1131  * there was no point in re-reading it).
1132  *
1133  * This function avoids both problems by, whenever either the certificate or
1134  * the private key file changes, re-reading both of them, in the correct order.
1135  */
1136 void
1137 stream_ssl_set_key_and_cert(const char *private_key_file,
1138                             const char *certificate_file)
1139 {
1140     if (update_ssl_config(&private_key, private_key_file)
1141         || update_ssl_config(&certificate, certificate_file)) {
1142         stream_ssl_set_certificate_file__(certificate_file);
1143         stream_ssl_set_private_key_file__(private_key_file);
1144     }
1145 }
1146
1147 /* Reads the X509 certificate or certificates in file 'file_name'.  On success,
1148  * stores the address of the first element in an array of pointers to
1149  * certificates in '*certs' and the number of certificates in the array in
1150  * '*n_certs', and returns 0.  On failure, stores a null pointer in '*certs', 0
1151  * in '*n_certs', and returns a positive errno value.
1152  *
1153  * The caller is responsible for freeing '*certs'. */
1154 static int
1155 read_cert_file(const char *file_name, X509 ***certs, size_t *n_certs)
1156 {
1157     FILE *file;
1158     size_t allocated_certs = 0;
1159
1160     *certs = NULL;
1161     *n_certs = 0;
1162
1163     file = fopen(file_name, "r");
1164     if (!file) {
1165         VLOG_ERR("failed to open %s for reading: %s",
1166                  file_name, ovs_strerror(errno));
1167         return errno;
1168     }
1169
1170     for (;;) {
1171         X509 *certificate;
1172         int c;
1173
1174         /* Read certificate from file. */
1175         certificate = PEM_read_X509(file, NULL, NULL, NULL);
1176         if (!certificate) {
1177             size_t i;
1178
1179             VLOG_ERR("PEM_read_X509 failed reading %s: %s",
1180                      file_name, ERR_error_string(ERR_get_error(), NULL));
1181             for (i = 0; i < *n_certs; i++) {
1182                 X509_free((*certs)[i]);
1183             }
1184             free(*certs);
1185             *certs = NULL;
1186             *n_certs = 0;
1187             return EIO;
1188         }
1189
1190         /* Add certificate to array. */
1191         if (*n_certs >= allocated_certs) {
1192             *certs = x2nrealloc(*certs, &allocated_certs, sizeof **certs);
1193         }
1194         (*certs)[(*n_certs)++] = certificate;
1195
1196         /* Are there additional certificates in the file? */
1197         do {
1198             c = getc(file);
1199         } while (isspace(c));
1200         if (c == EOF) {
1201             break;
1202         }
1203         ungetc(c, file);
1204     }
1205     fclose(file);
1206     return 0;
1207 }
1208
1209
1210 /* Sets 'file_name' as the name of a file containing one or more X509
1211  * certificates to send to the peer.  Typical use in OpenFlow is to send the CA
1212  * certificate to the peer, which enables a switch to pick up the controller's
1213  * CA certificate on its first connection. */
1214 void
1215 stream_ssl_set_peer_ca_cert_file(const char *file_name)
1216 {
1217     X509 **certs;
1218     size_t n_certs;
1219     size_t i;
1220
1221     if (ssl_init()) {
1222         return;
1223     }
1224
1225     if (!read_cert_file(file_name, &certs, &n_certs)) {
1226         for (i = 0; i < n_certs; i++) {
1227             if (SSL_CTX_add_extra_chain_cert(ctx, certs[i]) != 1) {
1228                 VLOG_ERR("SSL_CTX_add_extra_chain_cert: %s",
1229                          ERR_error_string(ERR_get_error(), NULL));
1230             }
1231         }
1232         free(certs);
1233     }
1234 }
1235
1236 /* Logs fingerprint of CA certificate 'cert' obtained from 'file_name'. */
1237 static void
1238 log_ca_cert(const char *file_name, X509 *cert)
1239 {
1240     unsigned char digest[EVP_MAX_MD_SIZE];
1241     unsigned int n_bytes;
1242     struct ds fp;
1243     char *subject;
1244
1245     ds_init(&fp);
1246     if (!X509_digest(cert, EVP_sha1(), digest, &n_bytes)) {
1247         ds_put_cstr(&fp, "<out of memory>");
1248     } else {
1249         unsigned int i;
1250         for (i = 0; i < n_bytes; i++) {
1251             if (i) {
1252                 ds_put_char(&fp, ':');
1253             }
1254             ds_put_format(&fp, "%02x", digest[i]);
1255         }
1256     }
1257     subject = X509_NAME_oneline(X509_get_subject_name(cert), NULL, 0);
1258     VLOG_INFO("Trusting CA cert from %s (%s) (fingerprint %s)", file_name,
1259               subject ? subject : "<out of memory>", ds_cstr(&fp));
1260     OPENSSL_free(subject);
1261     ds_destroy(&fp);
1262 }
1263
1264 static void
1265 stream_ssl_set_ca_cert_file__(const char *file_name,
1266                               bool bootstrap, bool force)
1267 {
1268     X509 **certs;
1269     size_t n_certs;
1270     struct stat s;
1271
1272     if (!update_ssl_config(&ca_cert, file_name) && !force) {
1273         return;
1274     }
1275
1276     if (!strcmp(file_name, "none")) {
1277         verify_peer_cert = false;
1278         VLOG_WARN("Peer certificate validation disabled "
1279                   "(this is a security risk)");
1280     } else if (bootstrap && stat(file_name, &s) && errno == ENOENT) {
1281         bootstrap_ca_cert = true;
1282     } else if (!read_cert_file(file_name, &certs, &n_certs)) {
1283         size_t i;
1284
1285         /* Set up list of CAs that the server will accept from the client. */
1286         for (i = 0; i < n_certs; i++) {
1287             /* SSL_CTX_add_client_CA makes a copy of the relevant data. */
1288             if (SSL_CTX_add_client_CA(ctx, certs[i]) != 1) {
1289                 VLOG_ERR("failed to add client certificate %"PRIuSIZE" from %s: %s",
1290                          i, file_name,
1291                          ERR_error_string(ERR_get_error(), NULL));
1292             } else {
1293                 log_ca_cert(file_name, certs[i]);
1294             }
1295             X509_free(certs[i]);
1296         }
1297         free(certs);
1298
1299         /* Set up CAs for OpenSSL to trust in verifying the peer's
1300          * certificate. */
1301         SSL_CTX_set_cert_store(ctx, X509_STORE_new());
1302         if (SSL_CTX_load_verify_locations(ctx, file_name, NULL) != 1) {
1303             VLOG_ERR("SSL_CTX_load_verify_locations: %s",
1304                      ERR_error_string(ERR_get_error(), NULL));
1305             return;
1306         }
1307
1308         bootstrap_ca_cert = false;
1309     }
1310     ca_cert.read = true;
1311 }
1312
1313 /* Sets 'file_name' as the name of the file from which to read the CA
1314  * certificate used to verify the peer within SSL connections.  If 'bootstrap'
1315  * is false, the file must exist.  If 'bootstrap' is false, then the file is
1316  * read if it is exists; if it does not, then it will be created from the CA
1317  * certificate received from the peer on the first SSL connection. */
1318 void
1319 stream_ssl_set_ca_cert_file(const char *file_name, bool bootstrap)
1320 {
1321     stream_ssl_set_ca_cert_file__(file_name, bootstrap, false);
1322 }
1323 \f
1324 /* SSL protocol logging. */
1325
1326 static const char *
1327 ssl_alert_level_to_string(uint8_t type)
1328 {
1329     switch (type) {
1330     case 1: return "warning";
1331     case 2: return "fatal";
1332     default: return "<unknown>";
1333     }
1334 }
1335
1336 static const char *
1337 ssl_alert_description_to_string(uint8_t type)
1338 {
1339     switch (type) {
1340     case 0: return "close_notify";
1341     case 10: return "unexpected_message";
1342     case 20: return "bad_record_mac";
1343     case 21: return "decryption_failed";
1344     case 22: return "record_overflow";
1345     case 30: return "decompression_failure";
1346     case 40: return "handshake_failure";
1347     case 42: return "bad_certificate";
1348     case 43: return "unsupported_certificate";
1349     case 44: return "certificate_revoked";
1350     case 45: return "certificate_expired";
1351     case 46: return "certificate_unknown";
1352     case 47: return "illegal_parameter";
1353     case 48: return "unknown_ca";
1354     case 49: return "access_denied";
1355     case 50: return "decode_error";
1356     case 51: return "decrypt_error";
1357     case 60: return "export_restriction";
1358     case 70: return "protocol_version";
1359     case 71: return "insufficient_security";
1360     case 80: return "internal_error";
1361     case 90: return "user_canceled";
1362     case 100: return "no_renegotiation";
1363     default: return "<unknown>";
1364     }
1365 }
1366
1367 static const char *
1368 ssl_handshake_type_to_string(uint8_t type)
1369 {
1370     switch (type) {
1371     case 0: return "hello_request";
1372     case 1: return "client_hello";
1373     case 2: return "server_hello";
1374     case 11: return "certificate";
1375     case 12: return "server_key_exchange";
1376     case 13: return "certificate_request";
1377     case 14: return "server_hello_done";
1378     case 15: return "certificate_verify";
1379     case 16: return "client_key_exchange";
1380     case 20: return "finished";
1381     default: return "<unknown>";
1382     }
1383 }
1384
1385 static void
1386 ssl_protocol_cb(int write_p, int version OVS_UNUSED, int content_type,
1387                 const void *buf_, size_t len, SSL *ssl OVS_UNUSED, void *sslv_)
1388 {
1389     const struct ssl_stream *sslv = sslv_;
1390     const uint8_t *buf = buf_;
1391     struct ds details;
1392
1393     if (!VLOG_IS_DBG_ENABLED()) {
1394         return;
1395     }
1396
1397     ds_init(&details);
1398     if (content_type == 20) {
1399         ds_put_cstr(&details, "change_cipher_spec");
1400     } else if (content_type == 21) {
1401         ds_put_format(&details, "alert: %s, %s",
1402                       ssl_alert_level_to_string(buf[0]),
1403                       ssl_alert_description_to_string(buf[1]));
1404     } else if (content_type == 22) {
1405         ds_put_format(&details, "handshake: %s",
1406                       ssl_handshake_type_to_string(buf[0]));
1407     } else {
1408         ds_put_format(&details, "type %d", content_type);
1409     }
1410
1411     VLOG_DBG("%s%u%s%s %s (%"PRIuSIZE" bytes)",
1412              sslv->type == CLIENT ? "client" : "server",
1413              sslv->session_nr, write_p ? "-->" : "<--",
1414              stream_get_name(&sslv->stream), ds_cstr(&details), len);
1415
1416     ds_destroy(&details);
1417 }
1418
1419 static void
1420 clear_handle(int fd OVS_UNUSED, HANDLE wevent OVS_UNUSED)
1421 {
1422 #ifdef _WIN32
1423     if (fd) {
1424         WSAEventSelect(fd, NULL, 0);
1425     }
1426     if (wevent) {
1427         CloseHandle(wevent);
1428     }
1429 #endif
1430 }