2009-11-04 15:02:32 -08:00
|
|
|
|
/*
|
2015-02-20 08:44:48 -08:00
|
|
|
|
* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2015 Nicira, Inc.
|
2009-11-04 15:02:32 -08:00
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include "stream-provider.h"
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <inttypes.h>
|
2017-11-06 14:42:32 -08:00
|
|
|
|
#include <sys/types.h>
|
2009-11-04 15:02:32 -08:00
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
#include <poll.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include "coverage.h"
|
2010-04-13 09:28:13 -07:00
|
|
|
|
#include "fatal-signal.h"
|
2009-11-04 15:02:32 -08:00
|
|
|
|
#include "flow.h"
|
2013-09-23 14:20:27 -07:00
|
|
|
|
#include "jsonrpc.h"
|
2009-11-04 15:02:32 -08:00
|
|
|
|
#include "openflow/nicira-ext.h"
|
|
|
|
|
#include "openflow/openflow.h"
|
2016-04-14 15:20:21 -07:00
|
|
|
|
#include "openvswitch/dynamic-string.h"
|
|
|
|
|
#include "openvswitch/ofp-print.h"
|
|
|
|
|
#include "openvswitch/ofpbuf.h"
|
|
|
|
|
#include "openvswitch/vlog.h"
|
2014-03-17 09:28:07 -07:00
|
|
|
|
#include "ovs-thread.h"
|
2009-11-04 15:02:32 -08:00
|
|
|
|
#include "packets.h"
|
2017-11-03 13:53:53 +08:00
|
|
|
|
#include "openvswitch/poll-loop.h"
|
2009-11-04 15:02:32 -08:00
|
|
|
|
#include "random.h"
|
2014-03-17 09:28:07 -07:00
|
|
|
|
#include "socket-util.h"
|
2009-11-04 15:02:32 -08:00
|
|
|
|
#include "util.h"
|
2013-09-23 14:20:27 -07:00
|
|
|
|
|
|
|
|
|
VLOG_DEFINE_THIS_MODULE(stream);
|
2010-07-16 11:02:49 -07:00
|
|
|
|
|
coverage: Make the coverage counters catalog program-specific.
Until now, the collection of coverage counters supported by a given OVS
program was not specific to that program. That means that, for example,
even though ovs-dpctl does not have anything to do with mac_learning, it
still has a coverage counter for it. This is confusing, at best.
This commit fixes the problem on some systems, in particular on ones that
use GCC and the GNU linker. It uses the feature of the GNU linker
described in its manual as:
If an orphaned section's name is representable as a C identifier then
the linker will automatically see PROVIDE two symbols: __start_SECNAME
and __end_SECNAME, where SECNAME is the name of the section. These
indicate the start address and end address of the orphaned section
respectively.
Systems that don't support these features retain the earlier behavior.
This commit also fixes the annoyance that files that include coverage
counters must be listed on COVERAGE_FILES in lib/automake.mk.
This commit also fixes the annoyance that modifying any source file that
includes a coverage counter caused all programs that link against
libopenvswitch.a to relink, even programs that the source file was not
linked into. For example, modifying ofproto/ofproto.c (which includes
coverage counters) caused tests/test-aes128 to relink, even though
test-aes128 does not link again ofproto.o.
2010-11-01 14:14:27 -07:00
|
|
|
|
COVERAGE_DEFINE(pstream_open);
|
|
|
|
|
COVERAGE_DEFINE(stream_open);
|
|
|
|
|
|
2009-11-04 15:02:32 -08:00
|
|
|
|
/* State of an active stream.*/
|
|
|
|
|
enum stream_state {
|
|
|
|
|
SCS_CONNECTING, /* Underlying stream is not connected. */
|
|
|
|
|
SCS_CONNECTED, /* Connection established. */
|
|
|
|
|
SCS_DISCONNECTED /* Connection failed or connection closed. */
|
|
|
|
|
};
|
|
|
|
|
|
2011-11-24 10:22:22 +09:00
|
|
|
|
static const struct stream_class *stream_classes[] = {
|
2009-11-04 15:02:32 -08:00
|
|
|
|
&tcp_stream_class,
|
2014-02-24 11:12:25 -08:00
|
|
|
|
#ifndef _WIN32
|
2009-11-04 15:02:32 -08:00
|
|
|
|
&unix_stream_class,
|
stream: Introduce [p]windows_[p]stream_class.
On Linux, we heavily use --remote=punix:* to listen for
connections through unix domain sockets. We also use, unix:*
to connect to a daemon that is listening on unix domain sockets.
Many times, we create default unix domain sockets for listening
and many utilities connect to these sockets by default.
Windows does not have unix domain sockets. So far, we could just use
ptcp:* and tcp:* for listening and initiating connections respectively.
The drawback here is that one has to provide a specific TCP port.
For unit tests, it looks useful to let kernel choose that port.
As such, we can let that chosen kernel port be stored in the
file specified with punix:* and unix:*. For this purpose, introduce
a new [p]windows_[p]stream_class. Since it is just a wrapper around
[p]tcp_[p]stream_class, add it to stream-tcp.c.
commit cb54a8c (unixctl: Add support for Windows.) used the above concept
for only control channel connections (i.e., --unixctl for daemons and its
interaction with ovs-appctl). This commit adds the same support for
all unix domain sockets. Now that we have a separate class
[p]stream_class for hiding kernel assigned TCP port inside a file meant for
unix domain sockets in windows, make unixctl use it.
Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
2014-04-04 14:13:32 -07:00
|
|
|
|
#else
|
|
|
|
|
&windows_stream_class,
|
2014-02-18 14:39:47 -08:00
|
|
|
|
#endif
|
2010-01-07 13:59:44 -08:00
|
|
|
|
#ifdef HAVE_OPENSSL
|
|
|
|
|
&ssl_stream_class,
|
|
|
|
|
#endif
|
2009-11-04 15:02:32 -08:00
|
|
|
|
};
|
|
|
|
|
|
2011-11-24 10:22:22 +09:00
|
|
|
|
static const struct pstream_class *pstream_classes[] = {
|
2009-11-04 15:02:32 -08:00
|
|
|
|
&ptcp_pstream_class,
|
2014-02-24 11:12:25 -08:00
|
|
|
|
#ifndef _WIN32
|
2009-11-04 15:02:32 -08:00
|
|
|
|
&punix_pstream_class,
|
stream: Introduce [p]windows_[p]stream_class.
On Linux, we heavily use --remote=punix:* to listen for
connections through unix domain sockets. We also use, unix:*
to connect to a daemon that is listening on unix domain sockets.
Many times, we create default unix domain sockets for listening
and many utilities connect to these sockets by default.
Windows does not have unix domain sockets. So far, we could just use
ptcp:* and tcp:* for listening and initiating connections respectively.
The drawback here is that one has to provide a specific TCP port.
For unit tests, it looks useful to let kernel choose that port.
As such, we can let that chosen kernel port be stored in the
file specified with punix:* and unix:*. For this purpose, introduce
a new [p]windows_[p]stream_class. Since it is just a wrapper around
[p]tcp_[p]stream_class, add it to stream-tcp.c.
commit cb54a8c (unixctl: Add support for Windows.) used the above concept
for only control channel connections (i.e., --unixctl for daemons and its
interaction with ovs-appctl). This commit adds the same support for
all unix domain sockets. Now that we have a separate class
[p]stream_class for hiding kernel assigned TCP port inside a file meant for
unix domain sockets in windows, make unixctl use it.
Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
2014-04-04 14:13:32 -07:00
|
|
|
|
#else
|
|
|
|
|
&pwindows_pstream_class,
|
2014-02-18 14:39:47 -08:00
|
|
|
|
#endif
|
2010-01-07 13:59:44 -08:00
|
|
|
|
#ifdef HAVE_OPENSSL
|
|
|
|
|
&pssl_pstream_class,
|
|
|
|
|
#endif
|
2009-11-04 15:02:32 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Check the validity of the stream class structures. */
|
|
|
|
|
static void
|
|
|
|
|
check_stream_classes(void)
|
|
|
|
|
{
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(stream_classes); i++) {
|
2011-11-24 10:22:22 +09:00
|
|
|
|
const struct stream_class *class = stream_classes[i];
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(class->name != NULL);
|
|
|
|
|
ovs_assert(class->open != NULL);
|
2010-01-06 14:26:48 -08:00
|
|
|
|
if (class->close || class->recv || class->send || class->run
|
|
|
|
|
|| class->run_wait || class->wait) {
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(class->close != NULL);
|
|
|
|
|
ovs_assert(class->recv != NULL);
|
|
|
|
|
ovs_assert(class->send != NULL);
|
|
|
|
|
ovs_assert(class->wait != NULL);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
} else {
|
|
|
|
|
/* This class delegates to another one. */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(pstream_classes); i++) {
|
2011-11-24 10:22:22 +09:00
|
|
|
|
const struct pstream_class *class = pstream_classes[i];
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(class->name != NULL);
|
|
|
|
|
ovs_assert(class->listen != NULL);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
if (class->close || class->accept || class->wait) {
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(class->close != NULL);
|
|
|
|
|
ovs_assert(class->accept != NULL);
|
|
|
|
|
ovs_assert(class->wait != NULL);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
} else {
|
|
|
|
|
/* This class delegates to another one. */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prints information on active (if 'active') and passive (if 'passive')
|
|
|
|
|
* connection methods supported by the stream. */
|
|
|
|
|
void
|
2009-12-21 13:13:48 -08:00
|
|
|
|
stream_usage(const char *name, bool active, bool passive,
|
2010-02-11 11:11:23 -08:00
|
|
|
|
bool bootstrap OVS_UNUSED)
|
2009-11-04 15:02:32 -08:00
|
|
|
|
{
|
|
|
|
|
/* Really this should be implemented via callbacks into the stream
|
|
|
|
|
* providers, but that seems too heavy-weight to bother with at the
|
|
|
|
|
* moment. */
|
|
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
|
if (active) {
|
|
|
|
|
printf("Active %s connection methods:\n", name);
|
|
|
|
|
printf(" tcp:IP:PORT "
|
|
|
|
|
"PORT at remote IP\n");
|
2009-12-21 13:13:48 -08:00
|
|
|
|
#ifdef HAVE_OPENSSL
|
|
|
|
|
printf(" ssl:IP:PORT "
|
|
|
|
|
"SSL PORT at remote IP\n");
|
|
|
|
|
#endif
|
2009-11-04 15:02:32 -08:00
|
|
|
|
printf(" unix:FILE "
|
|
|
|
|
"Unix domain socket named FILE\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (passive) {
|
|
|
|
|
printf("Passive %s connection methods:\n", name);
|
|
|
|
|
printf(" ptcp:PORT[:IP] "
|
|
|
|
|
"listen to TCP PORT on IP\n");
|
2009-12-21 13:13:48 -08:00
|
|
|
|
#ifdef HAVE_OPENSSL
|
|
|
|
|
printf(" pssl:PORT[:IP] "
|
|
|
|
|
"listen for SSL on PORT on IP\n");
|
|
|
|
|
#endif
|
2009-11-04 15:02:32 -08:00
|
|
|
|
printf(" punix:FILE "
|
|
|
|
|
"listen on Unix domain socket FILE\n");
|
|
|
|
|
}
|
2009-12-21 13:13:48 -08:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_OPENSSL
|
|
|
|
|
printf("PKI configuration (required to use SSL):\n"
|
|
|
|
|
" -p, --private-key=FILE file with private key\n"
|
|
|
|
|
" -c, --certificate=FILE file with certificate for private key\n"
|
|
|
|
|
" -C, --ca-cert=FILE file with peer CA certificate\n");
|
|
|
|
|
if (bootstrap) {
|
|
|
|
|
printf(" --bootstrap-ca-cert=FILE file with peer CA certificate "
|
|
|
|
|
"to read or create\n");
|
|
|
|
|
}
|
2017-06-07 10:54:52 -04:00
|
|
|
|
printf("SSL options:\n"
|
|
|
|
|
" --ssl-protocols=PROTOS list of SSL protocols to enable\n"
|
|
|
|
|
" --ssl-ciphers=CIPHERS list of SSL ciphers to enable\n");
|
2009-12-21 13:13:48 -08:00
|
|
|
|
#endif
|
2009-11-04 15:02:32 -08:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-23 15:30:17 -07:00
|
|
|
|
/* Given 'name', a stream name in the form "TYPE:ARGS", stores the class
|
|
|
|
|
* named "TYPE" into '*classp' and returns 0. Returns EAFNOSUPPORT and stores
|
|
|
|
|
* a null pointer into '*classp' if 'name' is in the wrong form or if no such
|
|
|
|
|
* class exists. */
|
|
|
|
|
static int
|
2011-11-24 10:22:22 +09:00
|
|
|
|
stream_lookup_class(const char *name, const struct stream_class **classp)
|
2009-11-04 15:02:32 -08:00
|
|
|
|
{
|
|
|
|
|
size_t prefix_len;
|
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
|
|
check_stream_classes();
|
|
|
|
|
|
2010-03-23 15:30:17 -07:00
|
|
|
|
*classp = NULL;
|
2009-11-04 15:02:32 -08:00
|
|
|
|
prefix_len = strcspn(name, ":");
|
2010-03-23 15:30:17 -07:00
|
|
|
|
if (name[prefix_len] == '\0') {
|
2009-11-04 15:02:32 -08:00
|
|
|
|
return EAFNOSUPPORT;
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(stream_classes); i++) {
|
2011-11-24 10:22:22 +09:00
|
|
|
|
const struct stream_class *class = stream_classes[i];
|
2009-11-04 15:02:32 -08:00
|
|
|
|
if (strlen(class->name) == prefix_len
|
|
|
|
|
&& !memcmp(class->name, name, prefix_len)) {
|
2010-03-23 15:30:17 -07:00
|
|
|
|
*classp = class;
|
|
|
|
|
return 0;
|
2009-11-04 15:02:32 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return EAFNOSUPPORT;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-23 15:30:17 -07:00
|
|
|
|
/* Returns 0 if 'name' is a stream name in the form "TYPE:ARGS" and TYPE is
|
|
|
|
|
* a supported stream type, otherwise EAFNOSUPPORT. */
|
|
|
|
|
int
|
|
|
|
|
stream_verify_name(const char *name)
|
|
|
|
|
{
|
2011-11-24 10:22:22 +09:00
|
|
|
|
const struct stream_class *class;
|
2010-03-23 15:30:17 -07:00
|
|
|
|
return stream_lookup_class(name, &class);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Attempts to connect a stream to a remote peer. 'name' is a connection name
|
|
|
|
|
* in the form "TYPE:ARGS", where TYPE is an active stream class's name and
|
|
|
|
|
* ARGS are stream class-specific.
|
|
|
|
|
*
|
|
|
|
|
* Returns 0 if successful, otherwise a positive errno value. If successful,
|
|
|
|
|
* stores a pointer to the new connection in '*streamp', otherwise a null
|
|
|
|
|
* pointer. */
|
|
|
|
|
int
|
2012-03-10 15:58:10 -08:00
|
|
|
|
stream_open(const char *name, struct stream **streamp, uint8_t dscp)
|
2010-03-23 15:30:17 -07:00
|
|
|
|
{
|
2011-11-24 10:22:22 +09:00
|
|
|
|
const struct stream_class *class;
|
2010-03-23 15:30:17 -07:00
|
|
|
|
struct stream *stream;
|
|
|
|
|
char *suffix_copy;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
COVERAGE_INC(stream_open);
|
|
|
|
|
|
|
|
|
|
/* Look up the class. */
|
|
|
|
|
error = stream_lookup_class(name, &class);
|
|
|
|
|
if (!class) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Call class's "open" function. */
|
|
|
|
|
suffix_copy = xstrdup(strchr(name, ':') + 1);
|
2012-03-10 15:58:10 -08:00
|
|
|
|
error = class->open(name, suffix_copy, &stream, dscp);
|
2010-03-23 15:30:17 -07:00
|
|
|
|
free(suffix_copy);
|
|
|
|
|
if (error) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Success. */
|
|
|
|
|
*streamp = stream;
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
*streamp = NULL;
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-18 12:59:32 -07:00
|
|
|
|
/* Blocks until a previously started stream connection attempt succeeds or
|
|
|
|
|
* fails. 'error' should be the value returned by stream_open() and 'streamp'
|
|
|
|
|
* should point to the stream pointer set by stream_open(). Returns 0 if
|
|
|
|
|
* successful, otherwise a positive errno value other than EAGAIN or
|
|
|
|
|
* EINPROGRESS. If successful, leaves '*streamp' untouched; on error, closes
|
|
|
|
|
* '*streamp' and sets '*streamp' to null.
|
|
|
|
|
*
|
|
|
|
|
* Typical usage:
|
|
|
|
|
* error = stream_open_block(stream_open("tcp:1.2.3.4:5", &stream), &stream);
|
|
|
|
|
*/
|
2009-11-04 15:02:32 -08:00
|
|
|
|
int
|
2010-03-18 12:59:32 -07:00
|
|
|
|
stream_open_block(int error, struct stream **streamp)
|
2009-11-04 15:02:32 -08:00
|
|
|
|
{
|
2010-03-18 12:59:32 -07:00
|
|
|
|
struct stream *stream = *streamp;
|
2009-11-04 15:02:32 -08:00
|
|
|
|
|
2010-04-13 09:28:13 -07:00
|
|
|
|
fatal_signal_run();
|
|
|
|
|
|
2010-06-11 15:58:14 -07:00
|
|
|
|
if (!error) {
|
|
|
|
|
while ((error = stream_connect(stream)) == EAGAIN) {
|
|
|
|
|
stream_run(stream);
|
|
|
|
|
stream_run_wait(stream);
|
|
|
|
|
stream_connect_wait(stream);
|
|
|
|
|
poll_block();
|
|
|
|
|
}
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(error != EINPROGRESS);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
}
|
2010-06-11 15:58:14 -07:00
|
|
|
|
|
2009-11-04 15:02:32 -08:00
|
|
|
|
if (error) {
|
|
|
|
|
stream_close(stream);
|
|
|
|
|
*streamp = NULL;
|
|
|
|
|
} else {
|
|
|
|
|
*streamp = stream;
|
|
|
|
|
}
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Closes 'stream'. */
|
|
|
|
|
void
|
|
|
|
|
stream_close(struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
if (stream != NULL) {
|
|
|
|
|
char *name = stream->name;
|
2017-05-01 10:13:02 -04:00
|
|
|
|
char *peer_id = stream->peer_id;
|
2009-11-04 15:02:32 -08:00
|
|
|
|
(stream->class->close)(stream);
|
|
|
|
|
free(name);
|
2017-05-01 10:13:02 -04:00
|
|
|
|
free(peer_id);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the name of 'stream', that is, the string passed to
|
|
|
|
|
* stream_open(). */
|
|
|
|
|
const char *
|
|
|
|
|
stream_get_name(const struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
return stream ? stream->name : "(null)";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
scs_connecting(struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
int retval = (stream->class->connect)(stream);
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(retval != EINPROGRESS);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
if (!retval) {
|
|
|
|
|
stream->state = SCS_CONNECTED;
|
|
|
|
|
} else if (retval != EAGAIN) {
|
|
|
|
|
stream->state = SCS_DISCONNECTED;
|
|
|
|
|
stream->error = retval;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-23 12:18:05 -07:00
|
|
|
|
/* Tries to complete the connection on 'stream'. If 'stream''s connection is
|
|
|
|
|
* complete, returns 0 if the connection was successful or a positive errno
|
|
|
|
|
* value if it failed. If the connection is still in progress, returns
|
|
|
|
|
* EAGAIN. */
|
2009-11-04 15:02:32 -08:00
|
|
|
|
int
|
|
|
|
|
stream_connect(struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
enum stream_state last_state;
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
last_state = stream->state;
|
|
|
|
|
switch (stream->state) {
|
|
|
|
|
case SCS_CONNECTING:
|
|
|
|
|
scs_connecting(stream);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SCS_CONNECTED:
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case SCS_DISCONNECTED:
|
|
|
|
|
return stream->error;
|
|
|
|
|
|
|
|
|
|
default:
|
2013-12-17 10:32:12 -08:00
|
|
|
|
OVS_NOT_REACHED();
|
2009-11-04 15:02:32 -08:00
|
|
|
|
}
|
|
|
|
|
} while (stream->state != last_state);
|
|
|
|
|
|
|
|
|
|
return EAGAIN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tries to receive up to 'n' bytes from 'stream' into 'buffer', and returns:
|
|
|
|
|
*
|
|
|
|
|
* - If successful, the number of bytes received (between 1 and 'n').
|
|
|
|
|
*
|
|
|
|
|
* - On error, a negative errno value.
|
|
|
|
|
*
|
|
|
|
|
* - 0, if the connection has been closed in the normal fashion, or if 'n'
|
|
|
|
|
* is zero.
|
|
|
|
|
*
|
|
|
|
|
* The recv function will not block waiting for a packet to arrive. If no
|
|
|
|
|
* data have been received, it returns -EAGAIN immediately. */
|
|
|
|
|
int
|
|
|
|
|
stream_recv(struct stream *stream, void *buffer, size_t n)
|
|
|
|
|
{
|
|
|
|
|
int retval = stream_connect(stream);
|
|
|
|
|
return (retval ? -retval
|
|
|
|
|
: n == 0 ? 0
|
|
|
|
|
: (stream->class->recv)(stream, buffer, n));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tries to send up to 'n' bytes of 'buffer' on 'stream', and returns:
|
|
|
|
|
*
|
|
|
|
|
* - If successful, the number of bytes sent (between 1 and 'n'). 0 is
|
|
|
|
|
* only a valid return value if 'n' is 0.
|
|
|
|
|
*
|
|
|
|
|
* - On error, a negative errno value.
|
|
|
|
|
*
|
|
|
|
|
* The send function will not block. If no bytes can be immediately accepted
|
|
|
|
|
* for transmission, it returns -EAGAIN immediately. */
|
|
|
|
|
int
|
|
|
|
|
stream_send(struct stream *stream, const void *buffer, size_t n)
|
|
|
|
|
{
|
|
|
|
|
int retval = stream_connect(stream);
|
|
|
|
|
return (retval ? -retval
|
|
|
|
|
: n == 0 ? 0
|
|
|
|
|
: (stream->class->send)(stream, buffer, n));
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-06 14:26:48 -08:00
|
|
|
|
/* Allows 'stream' to perform maintenance activities, such as flushing
|
|
|
|
|
* output buffers. */
|
|
|
|
|
void
|
|
|
|
|
stream_run(struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
if (stream->class->run) {
|
|
|
|
|
(stream->class->run)(stream);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Arranges for the poll loop to wake up when 'stream' needs to perform
|
|
|
|
|
* maintenance activities. */
|
|
|
|
|
void
|
|
|
|
|
stream_run_wait(struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
if (stream->class->run_wait) {
|
|
|
|
|
(stream->class->run_wait)(stream);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Arranges for the poll loop to wake up when 'stream' is ready to take an
|
|
|
|
|
* action of the given 'type'. */
|
2009-11-04 15:02:32 -08:00
|
|
|
|
void
|
|
|
|
|
stream_wait(struct stream *stream, enum stream_wait_type wait)
|
|
|
|
|
{
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(wait == STREAM_CONNECT || wait == STREAM_RECV
|
|
|
|
|
|| wait == STREAM_SEND);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
|
|
|
|
|
switch (stream->state) {
|
|
|
|
|
case SCS_CONNECTING:
|
|
|
|
|
wait = STREAM_CONNECT;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SCS_DISCONNECTED:
|
|
|
|
|
poll_immediate_wake();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
(stream->class->wait)(stream, wait);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
stream_connect_wait(struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
stream_wait(stream, STREAM_CONNECT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
stream_recv_wait(struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
stream_wait(stream, STREAM_RECV);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
stream_send_wait(struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
stream_wait(stream, STREAM_SEND);
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-01 10:13:02 -04:00
|
|
|
|
void
|
|
|
|
|
stream_set_peer_id(struct stream *stream, const char *peer_id)
|
|
|
|
|
{
|
|
|
|
|
free(stream->peer_id);
|
|
|
|
|
stream->peer_id = xstrdup(peer_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
|
stream_get_peer_id(const struct stream *stream)
|
|
|
|
|
{
|
|
|
|
|
return stream->peer_id;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-23 15:30:17 -07:00
|
|
|
|
/* Given 'name', a pstream name in the form "TYPE:ARGS", stores the class
|
|
|
|
|
* named "TYPE" into '*classp' and returns 0. Returns EAFNOSUPPORT and stores
|
|
|
|
|
* a null pointer into '*classp' if 'name' is in the wrong form or if no such
|
|
|
|
|
* class exists. */
|
|
|
|
|
static int
|
2011-11-24 10:22:22 +09:00
|
|
|
|
pstream_lookup_class(const char *name, const struct pstream_class **classp)
|
2009-11-04 15:02:32 -08:00
|
|
|
|
{
|
|
|
|
|
size_t prefix_len;
|
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
|
|
check_stream_classes();
|
|
|
|
|
|
2010-03-23 15:30:17 -07:00
|
|
|
|
*classp = NULL;
|
2009-11-04 15:02:32 -08:00
|
|
|
|
prefix_len = strcspn(name, ":");
|
2010-03-23 15:30:17 -07:00
|
|
|
|
if (name[prefix_len] == '\0') {
|
2009-11-04 15:02:32 -08:00
|
|
|
|
return EAFNOSUPPORT;
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(pstream_classes); i++) {
|
2011-11-24 10:22:22 +09:00
|
|
|
|
const struct pstream_class *class = pstream_classes[i];
|
2009-11-04 15:02:32 -08:00
|
|
|
|
if (strlen(class->name) == prefix_len
|
|
|
|
|
&& !memcmp(class->name, name, prefix_len)) {
|
2010-03-23 15:30:17 -07:00
|
|
|
|
*classp = class;
|
|
|
|
|
return 0;
|
2009-11-04 15:02:32 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return EAFNOSUPPORT;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-23 15:30:17 -07:00
|
|
|
|
/* Returns 0 if 'name' is a pstream name in the form "TYPE:ARGS" and TYPE is
|
|
|
|
|
* a supported pstream type, otherwise EAFNOSUPPORT. */
|
|
|
|
|
int
|
|
|
|
|
pstream_verify_name(const char *name)
|
|
|
|
|
{
|
2011-11-24 10:22:22 +09:00
|
|
|
|
const struct pstream_class *class;
|
2010-03-23 15:30:17 -07:00
|
|
|
|
return pstream_lookup_class(name, &class);
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-11 20:18:34 -07:00
|
|
|
|
/* Returns 1 if the stream or pstream specified by 'name' needs periodic probes
|
|
|
|
|
* to verify connectivity. For [p]streams which need probes, it can take a
|
|
|
|
|
* long time to notice the connection has been dropped. Returns 0 if the
|
|
|
|
|
* stream or pstream does not need probes, and -1 if 'name' is not valid. */
|
|
|
|
|
int
|
|
|
|
|
stream_or_pstream_needs_probes(const char *name)
|
|
|
|
|
{
|
|
|
|
|
const struct pstream_class *pclass;
|
|
|
|
|
const struct stream_class *class;
|
|
|
|
|
|
|
|
|
|
if (!stream_lookup_class(name, &class)) {
|
|
|
|
|
return class->needs_probes;
|
|
|
|
|
} else if (!pstream_lookup_class(name, &pclass)) {
|
|
|
|
|
return pclass->needs_probes;
|
|
|
|
|
} else {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-23 15:30:17 -07:00
|
|
|
|
/* Attempts to start listening for remote stream connections. 'name' is a
|
|
|
|
|
* connection name in the form "TYPE:ARGS", where TYPE is an passive stream
|
|
|
|
|
* class's name and ARGS are stream class-specific.
|
|
|
|
|
*
|
|
|
|
|
* Returns 0 if successful, otherwise a positive errno value. If successful,
|
|
|
|
|
* stores a pointer to the new connection in '*pstreamp', otherwise a null
|
|
|
|
|
* pointer. */
|
|
|
|
|
int
|
2012-03-10 15:58:10 -08:00
|
|
|
|
pstream_open(const char *name, struct pstream **pstreamp, uint8_t dscp)
|
2010-03-23 15:30:17 -07:00
|
|
|
|
{
|
2011-11-24 10:22:22 +09:00
|
|
|
|
const struct pstream_class *class;
|
2010-03-23 15:30:17 -07:00
|
|
|
|
struct pstream *pstream;
|
|
|
|
|
char *suffix_copy;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
COVERAGE_INC(pstream_open);
|
|
|
|
|
|
|
|
|
|
/* Look up the class. */
|
|
|
|
|
error = pstream_lookup_class(name, &class);
|
|
|
|
|
if (!class) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Call class's "open" function. */
|
|
|
|
|
suffix_copy = xstrdup(strchr(name, ':') + 1);
|
2012-03-10 15:58:10 -08:00
|
|
|
|
error = class->listen(name, suffix_copy, &pstream, dscp);
|
2010-03-23 15:30:17 -07:00
|
|
|
|
free(suffix_copy);
|
|
|
|
|
if (error) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Success. */
|
|
|
|
|
*pstreamp = pstream;
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
*pstreamp = NULL;
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-04 15:02:32 -08:00
|
|
|
|
/* Returns the name that was used to open 'pstream'. The caller must not
|
|
|
|
|
* modify or free the name. */
|
|
|
|
|
const char *
|
|
|
|
|
pstream_get_name(const struct pstream *pstream)
|
|
|
|
|
{
|
|
|
|
|
return pstream->name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Closes 'pstream'. */
|
|
|
|
|
void
|
|
|
|
|
pstream_close(struct pstream *pstream)
|
|
|
|
|
{
|
|
|
|
|
if (pstream != NULL) {
|
|
|
|
|
char *name = pstream->name;
|
|
|
|
|
(pstream->class->close)(pstream);
|
|
|
|
|
free(name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tries to accept a new connection on 'pstream'. If successful, stores the
|
|
|
|
|
* new connection in '*new_stream' and returns 0. Otherwise, returns a
|
|
|
|
|
* positive errno value.
|
|
|
|
|
*
|
|
|
|
|
* pstream_accept() will not block waiting for a connection. If no connection
|
|
|
|
|
* is ready to be accepted, it returns EAGAIN immediately. */
|
|
|
|
|
int
|
|
|
|
|
pstream_accept(struct pstream *pstream, struct stream **new_stream)
|
|
|
|
|
{
|
|
|
|
|
int retval = (pstream->class->accept)(pstream, new_stream);
|
|
|
|
|
if (retval) {
|
|
|
|
|
*new_stream = NULL;
|
|
|
|
|
} else {
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert((*new_stream)->state != SCS_CONNECTING
|
|
|
|
|
|| (*new_stream)->class->connect);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
}
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-12 12:52:12 -08:00
|
|
|
|
/* Tries to accept a new connection on 'pstream'. If successful, stores the
|
|
|
|
|
* new connection in '*new_stream' and returns 0. Otherwise, returns a
|
|
|
|
|
* positive errno value.
|
|
|
|
|
*
|
|
|
|
|
* pstream_accept_block() blocks until a connection is ready or until an error
|
|
|
|
|
* occurs. It will not return EAGAIN. */
|
|
|
|
|
int
|
|
|
|
|
pstream_accept_block(struct pstream *pstream, struct stream **new_stream)
|
|
|
|
|
{
|
|
|
|
|
int error;
|
|
|
|
|
|
2010-04-13 09:28:13 -07:00
|
|
|
|
fatal_signal_run();
|
2009-11-12 12:52:12 -08:00
|
|
|
|
while ((error = pstream_accept(pstream, new_stream)) == EAGAIN) {
|
|
|
|
|
pstream_wait(pstream);
|
|
|
|
|
poll_block();
|
|
|
|
|
}
|
|
|
|
|
if (error) {
|
|
|
|
|
*new_stream = NULL;
|
|
|
|
|
}
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-04 15:02:32 -08:00
|
|
|
|
void
|
|
|
|
|
pstream_wait(struct pstream *pstream)
|
|
|
|
|
{
|
|
|
|
|
(pstream->class->wait)(pstream);
|
|
|
|
|
}
|
2012-09-27 11:18:16 +09:00
|
|
|
|
|
2013-04-18 16:37:05 -07:00
|
|
|
|
/* Returns the transport port on which 'pstream' is listening, or 0 if the
|
|
|
|
|
* concept doesn't apply. */
|
|
|
|
|
ovs_be16
|
|
|
|
|
pstream_get_bound_port(const struct pstream *pstream)
|
|
|
|
|
{
|
|
|
|
|
return pstream->bound_port;
|
|
|
|
|
}
|
2009-11-04 15:02:32 -08:00
|
|
|
|
|
|
|
|
|
/* Initializes 'stream' as a new stream named 'name', implemented via 'class'.
|
|
|
|
|
* The initial connection status, supplied as 'connect_status', is interpreted
|
|
|
|
|
* as follows:
|
|
|
|
|
*
|
|
|
|
|
* - 0: 'stream' is connected. Its 'send' and 'recv' functions may be
|
|
|
|
|
* called in the normal fashion.
|
|
|
|
|
*
|
|
|
|
|
* - EAGAIN: 'stream' is trying to complete a connection. Its 'connect'
|
|
|
|
|
* function should be called to complete the connection.
|
|
|
|
|
*
|
|
|
|
|
* - Other positive errno values indicate that the connection failed with
|
|
|
|
|
* the specified error.
|
|
|
|
|
*
|
|
|
|
|
* After calling this function, stream_close() must be used to destroy
|
|
|
|
|
* 'stream', otherwise resources will be leaked.
|
|
|
|
|
*
|
2017-07-14 14:33:44 -07:00
|
|
|
|
* Takes ownership of 'name'. */
|
2009-11-04 15:02:32 -08:00
|
|
|
|
void
|
2011-11-24 10:22:22 +09:00
|
|
|
|
stream_init(struct stream *stream, const struct stream_class *class,
|
2017-07-14 14:33:44 -07:00
|
|
|
|
int connect_status, char *name)
|
2009-11-04 15:02:32 -08:00
|
|
|
|
{
|
2011-11-02 12:59:06 -07:00
|
|
|
|
memset(stream, 0, sizeof *stream);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
stream->class = class;
|
|
|
|
|
stream->state = (connect_status == EAGAIN ? SCS_CONNECTING
|
|
|
|
|
: !connect_status ? SCS_CONNECTED
|
|
|
|
|
: SCS_DISCONNECTED);
|
|
|
|
|
stream->error = connect_status;
|
2017-07-14 14:33:44 -07:00
|
|
|
|
stream->name = name;
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(stream->state != SCS_CONNECTING || class->connect);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-14 14:33:44 -07:00
|
|
|
|
/* Takes ownership of 'name'. */
|
2009-11-04 15:02:32 -08:00
|
|
|
|
void
|
2011-11-24 10:22:22 +09:00
|
|
|
|
pstream_init(struct pstream *pstream, const struct pstream_class *class,
|
2017-07-14 14:33:44 -07:00
|
|
|
|
char *name)
|
2009-11-04 15:02:32 -08:00
|
|
|
|
{
|
2013-04-18 16:37:05 -07:00
|
|
|
|
memset(pstream, 0, sizeof *pstream);
|
2009-11-04 15:02:32 -08:00
|
|
|
|
pstream->class = class;
|
2017-07-14 14:33:44 -07:00
|
|
|
|
pstream->name = name;
|
2009-11-04 15:02:32 -08:00
|
|
|
|
}
|
2013-04-18 16:37:05 -07:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
pstream_set_bound_port(struct pstream *pstream, ovs_be16 port)
|
|
|
|
|
{
|
|
|
|
|
pstream->bound_port = port;
|
|
|
|
|
}
|
2010-03-18 12:59:33 -07:00
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
count_fields(const char *s_)
|
|
|
|
|
{
|
|
|
|
|
char *s, *field, *save_ptr;
|
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
|
|
save_ptr = NULL;
|
|
|
|
|
s = xstrdup(s_);
|
|
|
|
|
for (field = strtok_r(s, ":", &save_ptr); field != NULL;
|
|
|
|
|
field = strtok_r(NULL, ":", &save_ptr)) {
|
|
|
|
|
n++;
|
|
|
|
|
}
|
|
|
|
|
free(s);
|
|
|
|
|
|
|
|
|
|
return n;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-23 14:33:09 -07:00
|
|
|
|
/* Like stream_open(), but the port defaults to 'default_port' if no port
|
|
|
|
|
* number is given. */
|
2010-03-18 12:59:33 -07:00
|
|
|
|
int
|
2013-09-23 14:33:09 -07:00
|
|
|
|
stream_open_with_default_port(const char *name_,
|
|
|
|
|
uint16_t default_port,
|
|
|
|
|
struct stream **streamp,
|
|
|
|
|
uint8_t dscp)
|
2010-03-18 12:59:33 -07:00
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
int error;
|
|
|
|
|
|
2013-09-23 14:33:09 -07:00
|
|
|
|
if ((!strncmp(name_, "tcp:", 4) || !strncmp(name_, "ssl:", 4))
|
|
|
|
|
&& count_fields(name_) < 3) {
|
2015-03-11 13:32:01 -07:00
|
|
|
|
if (default_port == OFP_PORT) {
|
|
|
|
|
VLOG_WARN_ONCE("The default OpenFlow port number has changed "
|
|
|
|
|
"from %d to %d",
|
2013-09-23 14:20:27 -07:00
|
|
|
|
OFP_OLD_PORT, OFP_PORT);
|
2015-03-11 13:32:01 -07:00
|
|
|
|
} else if (default_port == OVSDB_PORT) {
|
|
|
|
|
VLOG_WARN_ONCE("The default OVSDB port number has changed "
|
|
|
|
|
"from %d to %d",
|
2013-09-23 14:20:27 -07:00
|
|
|
|
OVSDB_OLD_PORT, OVSDB_PORT);
|
|
|
|
|
}
|
2013-09-23 14:33:09 -07:00
|
|
|
|
name = xasprintf("%s:%d", name_, default_port);
|
2010-03-18 12:59:33 -07:00
|
|
|
|
} else {
|
|
|
|
|
name = xstrdup(name_);
|
|
|
|
|
}
|
2012-03-10 15:58:10 -08:00
|
|
|
|
error = stream_open(name, streamp, dscp);
|
2010-03-18 12:59:33 -07:00
|
|
|
|
free(name);
|
|
|
|
|
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-23 14:33:09 -07:00
|
|
|
|
/* Like pstream_open(), but port defaults to 'default_port' if no port
|
|
|
|
|
* number is given. */
|
2010-03-18 12:59:33 -07:00
|
|
|
|
int
|
2013-09-23 14:33:09 -07:00
|
|
|
|
pstream_open_with_default_port(const char *name_,
|
|
|
|
|
uint16_t default_port,
|
|
|
|
|
struct pstream **pstreamp,
|
|
|
|
|
uint8_t dscp)
|
2010-03-18 12:59:33 -07:00
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
int error;
|
|
|
|
|
|
2013-09-23 14:33:09 -07:00
|
|
|
|
if ((!strncmp(name_, "ptcp:", 5) || !strncmp(name_, "pssl:", 5))
|
|
|
|
|
&& count_fields(name_) < 2) {
|
|
|
|
|
name = xasprintf("%s%d", name_, default_port);
|
2010-03-18 12:59:33 -07:00
|
|
|
|
} else {
|
|
|
|
|
name = xstrdup(name_);
|
|
|
|
|
}
|
2012-03-10 15:58:10 -08:00
|
|
|
|
error = pstream_open(name, pstreamp, dscp);
|
2010-03-18 12:59:33 -07:00
|
|
|
|
free(name);
|
|
|
|
|
|
|
|
|
|
return error;
|
|
|
|
|
}
|
2011-12-19 12:43:34 -08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This function extracts IP address and port from the target string.
|
|
|
|
|
*
|
2014-02-06 16:04:05 -08:00
|
|
|
|
* - On success, function returns true and fills *ss structure with port
|
2011-12-19 12:43:34 -08:00
|
|
|
|
* and IP address. If port was absent in target string then it will use
|
|
|
|
|
* corresponding default port value.
|
2014-02-06 16:04:05 -08:00
|
|
|
|
* - On error, function returns false and *ss contains garbage.
|
2011-12-19 12:43:34 -08:00
|
|
|
|
*/
|
|
|
|
|
bool
|
2013-09-23 14:33:09 -07:00
|
|
|
|
stream_parse_target_with_default_port(const char *target,
|
|
|
|
|
uint16_t default_port,
|
2014-02-06 16:04:05 -08:00
|
|
|
|
struct sockaddr_storage *ss)
|
2013-09-23 14:33:09 -07:00
|
|
|
|
{
|
|
|
|
|
return ((!strncmp(target, "tcp:", 4) || !strncmp(target, "ssl:", 4))
|
2014-02-06 16:04:05 -08:00
|
|
|
|
&& inet_parse_active(target + 4, default_port, ss));
|
2011-12-19 12:43:34 -08:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-05 10:31:44 -07:00
|
|
|
|
/* Attempts to guess the content type of a stream whose first few bytes were
|
|
|
|
|
* the 'size' bytes of 'data'. */
|
|
|
|
|
static enum stream_content_type
|
2011-02-23 11:29:37 -08:00
|
|
|
|
stream_guess_content(const uint8_t *data, ssize_t size)
|
2010-05-05 10:31:44 -07:00
|
|
|
|
{
|
|
|
|
|
if (size >= 2) {
|
|
|
|
|
#define PAIR(A, B) (((A) << 8) | (B))
|
|
|
|
|
switch (PAIR(data[0], data[1])) {
|
|
|
|
|
case PAIR(0x16, 0x03): /* Handshake, version 3. */
|
|
|
|
|
return STREAM_SSL;
|
|
|
|
|
case PAIR('{', '"'):
|
|
|
|
|
return STREAM_JSONRPC;
|
2012-07-19 23:23:17 -07:00
|
|
|
|
case PAIR(OFP10_VERSION, 0 /* OFPT_HELLO */):
|
2010-05-05 10:31:44 -07:00
|
|
|
|
return STREAM_OPENFLOW;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return STREAM_UNKNOWN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns a string represenation of 'type'. */
|
|
|
|
|
static const char *
|
|
|
|
|
stream_content_type_to_string(enum stream_content_type type)
|
|
|
|
|
{
|
|
|
|
|
switch (type) {
|
|
|
|
|
case STREAM_UNKNOWN:
|
|
|
|
|
default:
|
|
|
|
|
return "unknown";
|
2010-03-18 12:59:33 -07:00
|
|
|
|
|
2010-05-05 10:31:44 -07:00
|
|
|
|
case STREAM_JSONRPC:
|
|
|
|
|
return "JSON-RPC";
|
2010-03-18 12:59:33 -07:00
|
|
|
|
|
2010-05-05 10:31:44 -07:00
|
|
|
|
case STREAM_OPENFLOW:
|
|
|
|
|
return "OpenFlow";
|
|
|
|
|
|
|
|
|
|
case STREAM_SSL:
|
|
|
|
|
return "SSL";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Attempts to guess the content type of a stream whose first few bytes were
|
|
|
|
|
* the 'size' bytes of 'data'. If this is done successfully, and the guessed
|
|
|
|
|
* content type is other than 'expected_type', then log a message in vlog
|
|
|
|
|
* module 'module', naming 'stream_name' as the source, explaining what
|
|
|
|
|
* content was expected and what was actually received. */
|
|
|
|
|
void
|
2011-02-23 11:29:37 -08:00
|
|
|
|
stream_report_content(const void *data, ssize_t size,
|
2010-05-05 10:31:44 -07:00
|
|
|
|
enum stream_content_type expected_type,
|
2010-07-16 10:53:14 -07:00
|
|
|
|
struct vlog_module *module, const char *stream_name)
|
2010-05-05 10:31:44 -07:00
|
|
|
|
{
|
|
|
|
|
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 5);
|
|
|
|
|
enum stream_content_type actual_type;
|
|
|
|
|
|
|
|
|
|
actual_type = stream_guess_content(data, size);
|
|
|
|
|
if (actual_type != expected_type && actual_type != STREAM_UNKNOWN) {
|
|
|
|
|
vlog_rate_limit(module, VLL_WARN, &rl,
|
|
|
|
|
"%s: received %s data on %s channel",
|
|
|
|
|
stream_name,
|
2011-01-27 16:25:07 -08:00
|
|
|
|
stream_content_type_to_string(actual_type),
|
|
|
|
|
stream_content_type_to_string(expected_type));
|
2010-05-05 10:31:44 -07:00
|
|
|
|
}
|
|
|
|
|
}
|