1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
/*
* Copyright (c) 2008, 2009, 2010, 2011, 2013, 2014 Nicira, Inc.
*
* 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 "collectors.h"
#include <errno.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <unistd.h>
#include "socket-util.h"
#include "sset.h"
#include "util.h"
#include "openvswitch/vlog.h"
VLOG_DEFINE_THIS_MODULE(collectors);
struct collectors {
int *fds; /* Sockets. */
size_t n_fds; /* Number of sockets. */
};
/* Opens the targets specified in 'targets' for sending UDP packets. This is
* useful for e.g. sending NetFlow or sFlow packets. Returns 0 if successful,
* otherwise a positive errno value if opening at least one collector failed.
*
* Each target in 'targets' should be a string in the format "<host>[:<port>]".
* <port> may be omitted if 'default_port' is nonnegative, in which case it
* defaults to 'default_port'.
*
* '*collectorsp' is set to a null pointer if no targets were successfully
* added, otherwise to a new collectors object if at least one was successfully
* added. Thus, even on a failure return, it is possible that '*collectorsp'
* is nonnull, and even on a successful return, it is possible that
* '*collectorsp' is null, if 'target's is an empty sset. */
int
collectors_create(const struct sset *targets, int default_port,
struct collectors **collectorsp)
{
struct collectors *c;
const char *name;
int retval = 0;
c = xmalloc(sizeof *c);
c->fds = xmalloc(sizeof *c->fds * sset_count(targets));
c->n_fds = 0;
SSET_FOR_EACH (name, targets) {
int error;
int fd;
error = inet_open_active(SOCK_DGRAM, name, default_port, NULL, &fd, 0);
if (fd >= 0) {
c->fds[c->n_fds++] = fd;
} else {
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
VLOG_WARN_RL(&rl, "couldn't open connection to collector %s (%s)",
name, ovs_strerror(error));
if (!retval) {
retval = error;
}
}
}
if (c->n_fds) {
*collectorsp = c;
} else {
collectors_destroy(c);
*collectorsp = NULL;
}
return retval;
}
/* Destroys 'c'. */
void
collectors_destroy(struct collectors *c)
{
if (c) {
size_t i;
for (i = 0; i < c->n_fds; i++) {
closesocket(c->fds[i]);
}
free(c->fds);
free(c);
}
}
/* Sends the 'n'-byte 'payload' to each of the collectors in 'c'.
* Return the number of IPFIX packets which were sent unsuccessfully*/
size_t
collectors_send(const struct collectors *c, const void *payload, size_t n)
{
size_t errors = 0;
if (c) {
size_t i;
for (i = 0; i < c->n_fds; i++) {
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
if (send(c->fds[i], payload, n, 0) == -1) {
char *s = describe_fd(c->fds[i]);
VLOG_WARN_RL(&rl, "%s: sending to collector failed (%s)",
s, ovs_strerror(errno));
free(s);
errors++;
}
}
}
return errors;
}
int
collectors_count(const struct collectors *c)
{
return c ? c->n_fds : 0;
}
|