]> git.proxmox.com Git - mirror_ovs.git/blob - lib/stream.c
ovsdb-idl: Improve prototypes.
[mirror_ovs.git] / lib / stream.c
1 /*
2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2015 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-provider.h"
19 #include <errno.h>
20 #include <inttypes.h>
21 #include <sys/types.h>
22 #include <netinet/in.h>
23 #include <poll.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include "coverage.h"
27 #include "fatal-signal.h"
28 #include "flow.h"
29 #include "jsonrpc.h"
30 #include "openflow/nicira-ext.h"
31 #include "openflow/openflow.h"
32 #include "openvswitch/dynamic-string.h"
33 #include "openvswitch/ofp-print.h"
34 #include "openvswitch/ofpbuf.h"
35 #include "openvswitch/vlog.h"
36 #include "ovs-thread.h"
37 #include "packets.h"
38 #include "openvswitch/poll-loop.h"
39 #include "random.h"
40 #include "socket-util.h"
41 #include "util.h"
42
43 VLOG_DEFINE_THIS_MODULE(stream);
44
45 COVERAGE_DEFINE(pstream_open);
46 COVERAGE_DEFINE(stream_open);
47
48 /* State of an active stream.*/
49 enum stream_state {
50 SCS_CONNECTING, /* Underlying stream is not connected. */
51 SCS_CONNECTED, /* Connection established. */
52 SCS_DISCONNECTED /* Connection failed or connection closed. */
53 };
54
55 static const struct stream_class *stream_classes[] = {
56 &tcp_stream_class,
57 #ifndef _WIN32
58 &unix_stream_class,
59 #else
60 &windows_stream_class,
61 #endif
62 #ifdef HAVE_OPENSSL
63 &ssl_stream_class,
64 #endif
65 };
66
67 static const struct pstream_class *pstream_classes[] = {
68 &ptcp_pstream_class,
69 #ifndef _WIN32
70 &punix_pstream_class,
71 #else
72 &pwindows_pstream_class,
73 #endif
74 #ifdef HAVE_OPENSSL
75 &pssl_pstream_class,
76 #endif
77 };
78
79 /* Check the validity of the stream class structures. */
80 static void
81 check_stream_classes(void)
82 {
83 #ifndef NDEBUG
84 size_t i;
85
86 for (i = 0; i < ARRAY_SIZE(stream_classes); i++) {
87 const struct stream_class *class = stream_classes[i];
88 ovs_assert(class->name != NULL);
89 ovs_assert(class->open != NULL);
90 if (class->close || class->recv || class->send || class->run
91 || class->run_wait || class->wait) {
92 ovs_assert(class->close != NULL);
93 ovs_assert(class->recv != NULL);
94 ovs_assert(class->send != NULL);
95 ovs_assert(class->wait != NULL);
96 } else {
97 /* This class delegates to another one. */
98 }
99 }
100
101 for (i = 0; i < ARRAY_SIZE(pstream_classes); i++) {
102 const struct pstream_class *class = pstream_classes[i];
103 ovs_assert(class->name != NULL);
104 ovs_assert(class->listen != NULL);
105 if (class->close || class->accept || class->wait) {
106 ovs_assert(class->close != NULL);
107 ovs_assert(class->accept != NULL);
108 ovs_assert(class->wait != NULL);
109 } else {
110 /* This class delegates to another one. */
111 }
112 }
113 #endif
114 }
115
116 /* Prints information on active (if 'active') and passive (if 'passive')
117 * connection methods supported by the stream. */
118 void
119 stream_usage(const char *name, bool active, bool passive,
120 bool bootstrap OVS_UNUSED)
121 {
122 /* Really this should be implemented via callbacks into the stream
123 * providers, but that seems too heavy-weight to bother with at the
124 * moment. */
125
126 printf("\n");
127 if (active) {
128 printf("Active %s connection methods:\n", name);
129 printf(" tcp:HOST:PORT "
130 "PORT at remote HOST\n");
131 #ifdef HAVE_OPENSSL
132 printf(" ssl:HOST:PORT "
133 "SSL PORT at remote HOST\n");
134 #endif
135 printf(" unix:FILE "
136 "Unix domain socket named FILE\n");
137 }
138
139 if (passive) {
140 printf("Passive %s connection methods:\n", name);
141 printf(" ptcp:PORT[:IP] "
142 "listen to TCP PORT on IP\n");
143 #ifdef HAVE_OPENSSL
144 printf(" pssl:PORT[:IP] "
145 "listen for SSL on PORT on IP\n");
146 #endif
147 printf(" punix:FILE "
148 "listen on Unix domain socket FILE\n");
149 }
150
151 #ifdef HAVE_OPENSSL
152 printf("PKI configuration (required to use SSL):\n"
153 " -p, --private-key=FILE file with private key\n"
154 " -c, --certificate=FILE file with certificate for private key\n"
155 " -C, --ca-cert=FILE file with peer CA certificate\n");
156 if (bootstrap) {
157 printf(" --bootstrap-ca-cert=FILE file with peer CA certificate "
158 "to read or create\n");
159 }
160 printf("SSL options:\n"
161 " --ssl-protocols=PROTOS list of SSL protocols to enable\n"
162 " --ssl-ciphers=CIPHERS list of SSL ciphers to enable\n");
163 #endif
164 }
165
166 /* Given 'name', a stream name in the form "TYPE:ARGS", stores the class
167 * named "TYPE" into '*classp' and returns 0. Returns EAFNOSUPPORT and stores
168 * a null pointer into '*classp' if 'name' is in the wrong form or if no such
169 * class exists. */
170 static int
171 stream_lookup_class(const char *name, const struct stream_class **classp)
172 {
173 size_t prefix_len;
174 size_t i;
175
176 check_stream_classes();
177
178 *classp = NULL;
179 prefix_len = strcspn(name, ":");
180 if (name[prefix_len] == '\0') {
181 return EAFNOSUPPORT;
182 }
183 for (i = 0; i < ARRAY_SIZE(stream_classes); i++) {
184 const struct stream_class *class = stream_classes[i];
185 if (strlen(class->name) == prefix_len
186 && !memcmp(class->name, name, prefix_len)) {
187 *classp = class;
188 return 0;
189 }
190 }
191 return EAFNOSUPPORT;
192 }
193
194 /* Returns 0 if 'name' is a stream name in the form "TYPE:ARGS" and TYPE is
195 * a supported stream type, otherwise EAFNOSUPPORT. */
196 int
197 stream_verify_name(const char *name)
198 {
199 const struct stream_class *class;
200 return stream_lookup_class(name, &class);
201 }
202
203 /* Attempts to connect a stream to a remote peer. 'name' is a connection name
204 * in the form "TYPE:ARGS", where TYPE is an active stream class's name and
205 * ARGS are stream class-specific.
206 *
207 * Returns 0 if successful, otherwise a positive errno value. If successful,
208 * stores a pointer to the new connection in '*streamp', otherwise a null
209 * pointer. */
210 int
211 stream_open(const char *name, struct stream **streamp, uint8_t dscp)
212 {
213 const struct stream_class *class;
214 struct stream *stream;
215 char *suffix_copy;
216 int error;
217
218 COVERAGE_INC(stream_open);
219
220 /* Look up the class. */
221 error = stream_lookup_class(name, &class);
222 if (!class) {
223 goto error;
224 }
225
226 /* Call class's "open" function. */
227 suffix_copy = xstrdup(strchr(name, ':') + 1);
228 error = class->open(name, suffix_copy, &stream, dscp);
229 free(suffix_copy);
230 if (error) {
231 goto error;
232 }
233
234 /* Success. */
235 *streamp = stream;
236 return 0;
237
238 error:
239 *streamp = NULL;
240 return error;
241 }
242
243 /* Blocks until a previously started stream connection attempt succeeds or
244 * fails, but no more than 'timeout' milliseconds. 'error' should be the
245 * value returned by stream_open() and 'streamp' should point to the stream
246 * pointer set by stream_open(). Returns 0 if successful, otherwise a
247 * positive errno value other than EAGAIN or EINPROGRESS. If successful,
248 * leaves '*streamp' untouched; on error, closes '*streamp' and sets
249 * '*streamp' to null. Negative value of 'timeout' means infinite waiting.
250 *
251 * Typical usage:
252 * error = stream_open_block(stream_open("tcp:1.2.3.4:5", &stream), -1,
253 * &stream);
254 */
255 int
256 stream_open_block(int error, long long int timeout, struct stream **streamp)
257 {
258 struct stream *stream = *streamp;
259
260 fatal_signal_run();
261
262 if (!error) {
263 long long int deadline = (timeout >= 0
264 ? time_msec() + timeout
265 : LLONG_MAX);
266 while ((error = stream_connect(stream)) == EAGAIN) {
267 if (deadline != LLONG_MAX && time_msec() > deadline) {
268 error = ETIMEDOUT;
269 break;
270 }
271 stream_run(stream);
272 stream_run_wait(stream);
273 stream_connect_wait(stream);
274 if (deadline != LLONG_MAX) {
275 poll_timer_wait_until(deadline);
276 }
277 poll_block();
278 }
279 ovs_assert(error != EINPROGRESS);
280 }
281
282 if (error) {
283 stream_close(stream);
284 *streamp = NULL;
285 } else {
286 *streamp = stream;
287 }
288 return error;
289 }
290
291 /* Closes 'stream'. */
292 void
293 stream_close(struct stream *stream)
294 {
295 if (stream != NULL) {
296 char *name = stream->name;
297 char *peer_id = stream->peer_id;
298 (stream->class->close)(stream);
299 free(name);
300 free(peer_id);
301 }
302 }
303
304 /* Returns the name of 'stream', that is, the string passed to
305 * stream_open(). */
306 const char *
307 stream_get_name(const struct stream *stream)
308 {
309 return stream ? stream->name : "(null)";
310 }
311
312 static void
313 scs_connecting(struct stream *stream)
314 {
315 int retval = (stream->class->connect)(stream);
316 ovs_assert(retval != EINPROGRESS);
317 if (!retval) {
318 stream->state = SCS_CONNECTED;
319 } else if (retval != EAGAIN) {
320 stream->state = SCS_DISCONNECTED;
321 stream->error = retval;
322 }
323 }
324
325 /* Tries to complete the connection on 'stream'. If 'stream''s connection is
326 * complete, returns 0 if the connection was successful or a positive errno
327 * value if it failed. If the connection is still in progress, returns
328 * EAGAIN. */
329 int
330 stream_connect(struct stream *stream)
331 {
332 enum stream_state last_state;
333
334 do {
335 last_state = stream->state;
336 switch (stream->state) {
337 case SCS_CONNECTING:
338 scs_connecting(stream);
339 break;
340
341 case SCS_CONNECTED:
342 return 0;
343
344 case SCS_DISCONNECTED:
345 return stream->error;
346
347 default:
348 OVS_NOT_REACHED();
349 }
350 } while (stream->state != last_state);
351
352 return EAGAIN;
353 }
354
355 /* Tries to receive up to 'n' bytes from 'stream' into 'buffer', and returns:
356 *
357 * - If successful, the number of bytes received (between 1 and 'n').
358 *
359 * - On error, a negative errno value.
360 *
361 * - 0, if the connection has been closed in the normal fashion, or if 'n'
362 * is zero.
363 *
364 * The recv function will not block waiting for a packet to arrive. If no
365 * data have been received, it returns -EAGAIN immediately. */
366 int
367 stream_recv(struct stream *stream, void *buffer, size_t n)
368 {
369 int retval = stream_connect(stream);
370 return (retval ? -retval
371 : n == 0 ? 0
372 : (stream->class->recv)(stream, buffer, n));
373 }
374
375 /* Tries to send up to 'n' bytes of 'buffer' on 'stream', and returns:
376 *
377 * - If successful, the number of bytes sent (between 1 and 'n'). 0 is
378 * only a valid return value if 'n' is 0.
379 *
380 * - On error, a negative errno value.
381 *
382 * The send function will not block. If no bytes can be immediately accepted
383 * for transmission, it returns -EAGAIN immediately. */
384 int
385 stream_send(struct stream *stream, const void *buffer, size_t n)
386 {
387 int retval = stream_connect(stream);
388 return (retval ? -retval
389 : n == 0 ? 0
390 : (stream->class->send)(stream, buffer, n));
391 }
392
393 /* Allows 'stream' to perform maintenance activities, such as flushing
394 * output buffers. */
395 void
396 stream_run(struct stream *stream)
397 {
398 if (stream->class->run) {
399 (stream->class->run)(stream);
400 }
401 }
402
403 /* Arranges for the poll loop to wake up when 'stream' needs to perform
404 * maintenance activities. */
405 void
406 stream_run_wait(struct stream *stream)
407 {
408 if (stream->class->run_wait) {
409 (stream->class->run_wait)(stream);
410 }
411 }
412
413 /* Arranges for the poll loop to wake up when 'stream' is ready to take an
414 * action of the given 'type'. */
415 void
416 stream_wait(struct stream *stream, enum stream_wait_type wait)
417 {
418 ovs_assert(wait == STREAM_CONNECT || wait == STREAM_RECV
419 || wait == STREAM_SEND);
420
421 switch (stream->state) {
422 case SCS_CONNECTING:
423 wait = STREAM_CONNECT;
424 break;
425
426 case SCS_DISCONNECTED:
427 poll_immediate_wake();
428 return;
429 }
430 (stream->class->wait)(stream, wait);
431 }
432
433 void
434 stream_connect_wait(struct stream *stream)
435 {
436 stream_wait(stream, STREAM_CONNECT);
437 }
438
439 void
440 stream_recv_wait(struct stream *stream)
441 {
442 stream_wait(stream, STREAM_RECV);
443 }
444
445 void
446 stream_send_wait(struct stream *stream)
447 {
448 stream_wait(stream, STREAM_SEND);
449 }
450
451 void
452 stream_set_peer_id(struct stream *stream, const char *peer_id)
453 {
454 free(stream->peer_id);
455 stream->peer_id = xstrdup(peer_id);
456 }
457
458 const char *
459 stream_get_peer_id(const struct stream *stream)
460 {
461 return stream->peer_id;
462 }
463
464 /* Given 'name', a pstream name in the form "TYPE:ARGS", stores the class
465 * named "TYPE" into '*classp' and returns 0. Returns EAFNOSUPPORT and stores
466 * a null pointer into '*classp' if 'name' is in the wrong form or if no such
467 * class exists. */
468 static int
469 pstream_lookup_class(const char *name, const struct pstream_class **classp)
470 {
471 size_t prefix_len;
472 size_t i;
473
474 check_stream_classes();
475
476 *classp = NULL;
477 prefix_len = strcspn(name, ":");
478 if (name[prefix_len] == '\0') {
479 return EAFNOSUPPORT;
480 }
481 for (i = 0; i < ARRAY_SIZE(pstream_classes); i++) {
482 const struct pstream_class *class = pstream_classes[i];
483 if (strlen(class->name) == prefix_len
484 && !memcmp(class->name, name, prefix_len)) {
485 *classp = class;
486 return 0;
487 }
488 }
489 return EAFNOSUPPORT;
490 }
491
492 /* Returns 0 if 'name' is a pstream name in the form "TYPE:ARGS" and TYPE is
493 * a supported pstream type, otherwise EAFNOSUPPORT. */
494 int
495 pstream_verify_name(const char *name)
496 {
497 const struct pstream_class *class;
498 return pstream_lookup_class(name, &class);
499 }
500
501 /* Returns 1 if the stream or pstream specified by 'name' needs periodic probes
502 * to verify connectivity. For [p]streams which need probes, it can take a
503 * long time to notice the connection has been dropped. Returns 0 if the
504 * stream or pstream does not need probes, and -1 if 'name' is not valid. */
505 int
506 stream_or_pstream_needs_probes(const char *name)
507 {
508 const struct pstream_class *pclass;
509 const struct stream_class *class;
510
511 if (!stream_lookup_class(name, &class)) {
512 return class->needs_probes;
513 } else if (!pstream_lookup_class(name, &pclass)) {
514 return pclass->needs_probes;
515 } else {
516 return -1;
517 }
518 }
519
520 /* Attempts to start listening for remote stream connections. 'name' is a
521 * connection name in the form "TYPE:ARGS", where TYPE is an passive stream
522 * class's name and ARGS are stream class-specific.
523 *
524 * Returns 0 if successful, otherwise a positive errno value. If successful,
525 * stores a pointer to the new connection in '*pstreamp', otherwise a null
526 * pointer. */
527 int
528 pstream_open(const char *name, struct pstream **pstreamp, uint8_t dscp)
529 {
530 const struct pstream_class *class;
531 struct pstream *pstream;
532 char *suffix_copy;
533 int error;
534
535 COVERAGE_INC(pstream_open);
536
537 /* Look up the class. */
538 error = pstream_lookup_class(name, &class);
539 if (!class) {
540 goto error;
541 }
542
543 /* Call class's "open" function. */
544 suffix_copy = xstrdup(strchr(name, ':') + 1);
545 error = class->listen(name, suffix_copy, &pstream, dscp);
546 free(suffix_copy);
547 if (error) {
548 goto error;
549 }
550
551 /* Success. */
552 *pstreamp = pstream;
553 return 0;
554
555 error:
556 *pstreamp = NULL;
557 return error;
558 }
559
560 /* Returns the name that was used to open 'pstream'. The caller must not
561 * modify or free the name. */
562 const char *
563 pstream_get_name(const struct pstream *pstream)
564 {
565 return pstream->name;
566 }
567
568 /* Closes 'pstream'. */
569 void
570 pstream_close(struct pstream *pstream)
571 {
572 if (pstream != NULL) {
573 char *name = pstream->name;
574 (pstream->class->close)(pstream);
575 free(name);
576 }
577 }
578
579 /* Tries to accept a new connection on 'pstream'. If successful, stores the
580 * new connection in '*new_stream' and returns 0. Otherwise, returns a
581 * positive errno value.
582 *
583 * pstream_accept() will not block waiting for a connection. If no connection
584 * is ready to be accepted, it returns EAGAIN immediately. */
585 int
586 pstream_accept(struct pstream *pstream, struct stream **new_stream)
587 {
588 int retval = (pstream->class->accept)(pstream, new_stream);
589 if (retval) {
590 *new_stream = NULL;
591 } else {
592 ovs_assert((*new_stream)->state != SCS_CONNECTING
593 || (*new_stream)->class->connect);
594 }
595 return retval;
596 }
597
598 /* Tries to accept a new connection on 'pstream'. If successful, stores the
599 * new connection in '*new_stream' and returns 0. Otherwise, returns a
600 * positive errno value.
601 *
602 * pstream_accept_block() blocks until a connection is ready or until an error
603 * occurs. It will not return EAGAIN. */
604 int
605 pstream_accept_block(struct pstream *pstream, struct stream **new_stream)
606 {
607 int error;
608
609 fatal_signal_run();
610 while ((error = pstream_accept(pstream, new_stream)) == EAGAIN) {
611 pstream_wait(pstream);
612 poll_block();
613 }
614 if (error) {
615 *new_stream = NULL;
616 }
617 return error;
618 }
619
620 void
621 pstream_wait(struct pstream *pstream)
622 {
623 (pstream->class->wait)(pstream);
624 }
625
626 /* Returns the transport port on which 'pstream' is listening, or 0 if the
627 * concept doesn't apply. */
628 ovs_be16
629 pstream_get_bound_port(const struct pstream *pstream)
630 {
631 return pstream->bound_port;
632 }
633 \f
634 /* Initializes 'stream' as a new stream named 'name', implemented via 'class'.
635 * The initial connection status, supplied as 'connect_status', is interpreted
636 * as follows:
637 *
638 * - 0: 'stream' is connected. Its 'send' and 'recv' functions may be
639 * called in the normal fashion.
640 *
641 * - EAGAIN: 'stream' is trying to complete a connection. Its 'connect'
642 * function should be called to complete the connection.
643 *
644 * - Other positive errno values indicate that the connection failed with
645 * the specified error.
646 *
647 * After calling this function, stream_close() must be used to destroy
648 * 'stream', otherwise resources will be leaked.
649 *
650 * Takes ownership of 'name'. */
651 void
652 stream_init(struct stream *stream, const struct stream_class *class,
653 int connect_status, char *name)
654 {
655 memset(stream, 0, sizeof *stream);
656 stream->class = class;
657 stream->state = (connect_status == EAGAIN ? SCS_CONNECTING
658 : !connect_status ? SCS_CONNECTED
659 : SCS_DISCONNECTED);
660 stream->error = connect_status;
661 stream->name = name;
662 ovs_assert(stream->state != SCS_CONNECTING || class->connect);
663 }
664
665 /* Takes ownership of 'name'. */
666 void
667 pstream_init(struct pstream *pstream, const struct pstream_class *class,
668 char *name)
669 {
670 memset(pstream, 0, sizeof *pstream);
671 pstream->class = class;
672 pstream->name = name;
673 }
674
675 void
676 pstream_set_bound_port(struct pstream *pstream, ovs_be16 port)
677 {
678 pstream->bound_port = port;
679 }
680 \f
681 static int
682 count_fields(const char *s_)
683 {
684 char *s, *field, *save_ptr;
685 int n = 0;
686
687 save_ptr = NULL;
688 s = xstrdup(s_);
689 for (field = strtok_r(s, ":", &save_ptr); field != NULL;
690 field = strtok_r(NULL, ":", &save_ptr)) {
691 n++;
692 }
693 free(s);
694
695 return n;
696 }
697
698 /* Like stream_open(), but the port defaults to 'default_port' if no port
699 * number is given. */
700 int
701 stream_open_with_default_port(const char *name_,
702 uint16_t default_port,
703 struct stream **streamp,
704 uint8_t dscp)
705 {
706 char *name;
707 int error;
708
709 if ((!strncmp(name_, "tcp:", 4) || !strncmp(name_, "ssl:", 4))
710 && count_fields(name_) < 3) {
711 if (default_port == OFP_PORT) {
712 VLOG_WARN_ONCE("The default OpenFlow port number has changed "
713 "from %d to %d",
714 OFP_OLD_PORT, OFP_PORT);
715 } else if (default_port == OVSDB_PORT) {
716 VLOG_WARN_ONCE("The default OVSDB port number has changed "
717 "from %d to %d",
718 OVSDB_OLD_PORT, OVSDB_PORT);
719 }
720 name = xasprintf("%s:%d", name_, default_port);
721 } else {
722 name = xstrdup(name_);
723 }
724 error = stream_open(name, streamp, dscp);
725 free(name);
726
727 return error;
728 }
729
730 /* Like pstream_open(), but port defaults to 'default_port' if no port
731 * number is given. */
732 int
733 pstream_open_with_default_port(const char *name_,
734 uint16_t default_port,
735 struct pstream **pstreamp,
736 uint8_t dscp)
737 {
738 char *name;
739 int error;
740
741 if ((!strncmp(name_, "ptcp:", 5) || !strncmp(name_, "pssl:", 5))
742 && count_fields(name_) < 2) {
743 name = xasprintf("%s%d", name_, default_port);
744 } else {
745 name = xstrdup(name_);
746 }
747 error = pstream_open(name, pstreamp, dscp);
748 free(name);
749
750 return error;
751 }
752
753 /*
754 * This function extracts IP address and port from the target string.
755 *
756 * - On success, function returns true and fills *ss structure with port
757 * and IP address. If port was absent in target string then it will use
758 * corresponding default port value.
759 * - On error, function returns false and *ss contains garbage.
760 */
761 bool
762 stream_parse_target_with_default_port(const char *target, int default_port,
763 struct sockaddr_storage *ss)
764 {
765 return ((!strncmp(target, "tcp:", 4) || !strncmp(target, "ssl:", 4))
766 && inet_parse_active(target + 4, default_port, ss, true));
767 }
768
769 /* Attempts to guess the content type of a stream whose first few bytes were
770 * the 'size' bytes of 'data'. */
771 static enum stream_content_type
772 stream_guess_content(const uint8_t *data, ssize_t size)
773 {
774 if (size >= 2) {
775 #define PAIR(A, B) (((A) << 8) | (B))
776 switch (PAIR(data[0], data[1])) {
777 case PAIR(0x16, 0x03): /* Handshake, version 3. */
778 return STREAM_SSL;
779 case PAIR('{', '"'):
780 return STREAM_JSONRPC;
781 case PAIR(OFP10_VERSION, 0 /* OFPT_HELLO */):
782 return STREAM_OPENFLOW;
783 }
784 }
785
786 return STREAM_UNKNOWN;
787 }
788
789 /* Returns a string represenation of 'type'. */
790 static const char *
791 stream_content_type_to_string(enum stream_content_type type)
792 {
793 switch (type) {
794 case STREAM_UNKNOWN:
795 default:
796 return "unknown";
797
798 case STREAM_JSONRPC:
799 return "JSON-RPC";
800
801 case STREAM_OPENFLOW:
802 return "OpenFlow";
803
804 case STREAM_SSL:
805 return "SSL";
806 }
807 }
808
809 /* Attempts to guess the content type of a stream whose first few bytes were
810 * the 'size' bytes of 'data'. If this is done successfully, and the guessed
811 * content type is other than 'expected_type', then log a message in vlog
812 * module 'module', naming 'stream_name' as the source, explaining what
813 * content was expected and what was actually received. */
814 void
815 stream_report_content(const void *data, ssize_t size,
816 enum stream_content_type expected_type,
817 struct vlog_module *module, const char *stream_name)
818 {
819 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 5);
820 enum stream_content_type actual_type;
821
822 actual_type = stream_guess_content(data, size);
823 if (actual_type != expected_type && actual_type != STREAM_UNKNOWN) {
824 vlog_rate_limit(module, VLL_WARN, &rl,
825 "%s: received %s data on %s channel",
826 stream_name,
827 stream_content_type_to_string(actual_type),
828 stream_content_type_to_string(expected_type));
829 }
830 }