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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
|
/*
* Copyright (c) 2011, 2012, 2013, 2014 Nicira, Inc.
* Copyright (c) 2013 InMon Corp.
*
* 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 <arpa/inet.h>
#include <errno.h>
#include <getopt.h>
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include <setjmp.h>
#include "command-line.h"
#include "daemon.h"
#include "dynamic-string.h"
#include "netflow.h"
#include "ofpbuf.h"
#include "packets.h"
#include "poll-loop.h"
#include "socket-util.h"
#include "unixctl.h"
#include "util.h"
#include "vlog.h"
#include "ovstest.h"
static void usage(void) NO_RETURN;
static void parse_options(int argc, char *argv[]);
static unixctl_cb_func test_sflow_exit;
/* Datagram. */
#define SFLOW_VERSION_5 5
#define SFLOW_MIN_LEN 36
/* Sample tag numbers. */
#define SFLOW_FLOW_SAMPLE 1
#define SFLOW_COUNTERS_SAMPLE 2
#define SFLOW_FLOW_SAMPLE_EXPANDED 3
#define SFLOW_COUNTERS_SAMPLE_EXPANDED 4
/* Structure element tag numbers. */
#define SFLOW_TAG_CTR_IFCOUNTERS 1
#define SFLOW_TAG_PKT_HEADER 1
#define SFLOW_TAG_PKT_SWITCH 1001
struct sflow_addr {
enum {
SFLOW_ADDRTYPE_undefined = 0,
SFLOW_ADDRTYPE_IP4,
SFLOW_ADDRTYPE_IP6
} type;
union {
ovs_be32 ip4;
ovs_be32 ip6[4];
} a;
};
struct sflow_xdr {
/* Exceptions. */
jmp_buf env;
int errline;
/* Cursor. */
ovs_be32 *datap;
uint32_t i;
uint32_t quads;
/* Agent. */
struct sflow_addr agentAddr;
char agentIPStr[INET6_ADDRSTRLEN + 2];
uint32_t subAgentId;
uint32_t uptime_mS;
/* Datasource. */
uint32_t dsClass;
uint32_t dsIndex;
/* Sequence numbers. */
uint32_t dgramSeqNo;
uint32_t fsSeqNo;
uint32_t csSeqNo;
/* Structure offsets. */
struct {
uint32_t HEADER;
uint32_t SWITCH;
uint32_t IFCOUNTERS;
} offset;
/* Flow sample fields. */
uint32_t meanSkipCount;
uint32_t samplePool;
uint32_t dropEvents;
uint32_t inputPortFormat;
uint32_t inputPort;
uint32_t outputPortFormat;
uint32_t outputPort;
};
#define SFLOWXDR_try(x) ((x->errline = setjmp(x->env)) == 0)
#define SFLOWXDR_throw(x) longjmp(x->env, __LINE__)
#define SFLOWXDR_assert(x, t) if (!(t)) SFLOWXDR_throw(x)
static void
sflowxdr_init(struct sflow_xdr *x, void *buf, size_t len)
{
x->datap = buf;
x->quads = len >> 2;
}
static uint32_t
sflowxdr_next(struct sflow_xdr *x)
{
return ntohl(x->datap[x->i++]);
}
static ovs_be32
sflowxdr_next_n(struct sflow_xdr *x)
{
return x->datap[x->i++];
}
static bool
sflowxdr_more(const struct sflow_xdr *x, uint32_t q)
{
return q + x->i <= x->quads;
}
static void
sflowxdr_skip(struct sflow_xdr *x, uint32_t q)
{
x->i += q;
}
static uint32_t
sflowxdr_mark(const struct sflow_xdr *x, uint32_t q)
{
return x->i + q;
}
static bool
sflowxdr_mark_ok(const struct sflow_xdr *x, uint32_t m)
{
return m == x->i;
}
static void
sflowxdr_mark_unique(struct sflow_xdr *x, uint32_t *pi)
{
if (*pi) {
SFLOWXDR_throw(x);
}
*pi = x->i;
}
static void
sflowxdr_setc(struct sflow_xdr *x, uint32_t j)
{
x->i = j;
}
static const char *
sflowxdr_str(const struct sflow_xdr *x)
{
return (const char *) (x->datap + x->i);
}
static uint64_t
sflowxdr_next_int64(struct sflow_xdr *x)
{
uint64_t scratch;
scratch = sflowxdr_next(x);
scratch <<= 32;
scratch += sflowxdr_next(x);
return scratch;
}
static void
process_counter_sample(struct sflow_xdr *x)
{
if (x->offset.IFCOUNTERS) {
sflowxdr_setc(x, x->offset.IFCOUNTERS);
printf("IFCOUNTERS");
printf(" dgramSeqNo=%"PRIu32, x->dgramSeqNo);
printf(" ds=%s>%"PRIu32":%"PRIu32,
x->agentIPStr, x->dsClass, x->dsIndex);
printf(" csSeqNo=%"PRIu32, x->csSeqNo);
printf(" ifindex=%"PRIu32, sflowxdr_next(x));
printf(" type=%"PRIu32, sflowxdr_next(x));
printf(" ifspeed=%"PRIu64, sflowxdr_next_int64(x));
printf(" direction=%"PRIu32, sflowxdr_next(x));
printf(" status=%"PRIu32, sflowxdr_next(x));
printf(" in_octets=%"PRIu64, sflowxdr_next_int64(x));
printf(" in_unicasts=%"PRIu32, sflowxdr_next(x));
printf(" in_multicasts=%"PRIu32, sflowxdr_next(x));
printf(" in_broadcasts=%"PRIu32, sflowxdr_next(x));
printf(" in_discards=%"PRIu32, sflowxdr_next(x));
printf(" in_errors=%"PRIu32, sflowxdr_next(x));
printf(" in_unknownprotos=%"PRIu32, sflowxdr_next(x));
printf(" out_octets=%"PRIu64, sflowxdr_next_int64(x));
printf(" out_unicasts=%"PRIu32, sflowxdr_next(x));
printf(" out_multicasts=%"PRIu32, sflowxdr_next(x));
printf(" out_broadcasts=%"PRIu32, sflowxdr_next(x));
printf(" out_discards=%"PRIu32, sflowxdr_next(x));
printf(" out_errors=%"PRIu32, sflowxdr_next(x));
printf(" promiscuous=%"PRIu32, sflowxdr_next(x));
printf("\n");
}
}
static char
bin_to_hex(int hexit)
{
return "0123456789ABCDEF"[hexit];
}
static int
print_hex(const char *a, int len, char *buf, int bufLen)
{
unsigned char nextByte;
int b = 0;
int i;
for (i = 0; i < len; i++) {
if (b > bufLen - 10) {
break;
}
nextByte = a[i];
buf[b++] = bin_to_hex(nextByte >> 4);
buf[b++] = bin_to_hex(nextByte & 0x0f);
if (i < len - 1) {
buf[b++] = '-';
}
}
buf[b] = '\0';
return b;
}
#define SFLOW_HEX_SCRATCH 1024
static void
process_flow_sample(struct sflow_xdr *x)
{
if (x->offset.HEADER) {
uint32_t headerLen;
char scratch[SFLOW_HEX_SCRATCH];
printf("HEADER");
printf(" dgramSeqNo=%"PRIu32, x->dgramSeqNo);
printf(" ds=%s>%"PRIu32":%"PRIu32,
x->agentIPStr, x->dsClass, x->dsIndex);
printf(" fsSeqNo=%"PRIu32, x->fsSeqNo);
if (x->offset.SWITCH) {
sflowxdr_setc(x, x->offset.SWITCH);
printf(" in_vlan=%"PRIu32, sflowxdr_next(x));
printf(" in_priority=%"PRIu32, sflowxdr_next(x));
printf(" out_vlan=%"PRIu32, sflowxdr_next(x));
printf(" out_priority=%"PRIu32, sflowxdr_next(x));
}
sflowxdr_setc(x, x->offset.HEADER);
printf(" meanSkip=%"PRIu32, x->meanSkipCount);
printf(" samplePool=%"PRIu32, x->samplePool);
printf(" dropEvents=%"PRIu32, x->dropEvents);
printf(" in_ifindex=%"PRIu32, x->inputPort);
printf(" in_format=%"PRIu32, x->inputPortFormat);
printf(" out_ifindex=%"PRIu32, x->outputPort);
printf(" out_format=%"PRIu32, x->outputPortFormat);
printf(" hdr_prot=%"PRIu32, sflowxdr_next(x));
printf(" pkt_len=%"PRIu32, sflowxdr_next(x));
printf(" stripped=%"PRIu32, sflowxdr_next(x));
headerLen = sflowxdr_next(x);
printf(" hdr_len=%"PRIu32, headerLen);
print_hex(sflowxdr_str(x), headerLen, scratch, SFLOW_HEX_SCRATCH);
printf(" hdr=%s", scratch);
printf("\n");
}
}
static void
process_datagram(struct sflow_xdr *x)
{
uint32_t samples, s;
SFLOWXDR_assert(x, (sflowxdr_next(x) == SFLOW_VERSION_5));
/* Read the sFlow header. */
x->agentAddr.type = sflowxdr_next(x);
switch (x->agentAddr.type) {
case SFLOW_ADDRTYPE_IP4:
x->agentAddr.a.ip4 = sflowxdr_next_n(x);
break;
case SFLOW_ADDRTYPE_IP6:
x->agentAddr.a.ip6[0] = sflowxdr_next_n(x);
x->agentAddr.a.ip6[1] = sflowxdr_next_n(x);
x->agentAddr.a.ip6[2] = sflowxdr_next_n(x);
x->agentAddr.a.ip6[3] = sflowxdr_next_n(x);
break;
case SFLOW_ADDRTYPE_undefined:
default:
SFLOWXDR_throw(x);
break;
}
x->subAgentId = sflowxdr_next(x);
x->dgramSeqNo = sflowxdr_next(x);
x->uptime_mS = sflowxdr_next(x);
/* Store the agent address as a string. */
if (x->agentAddr.type == SFLOW_ADDRTYPE_IP6) {
char ipstr[INET6_ADDRSTRLEN];
inet_ntop(AF_INET6, (const void *) &x->agentAddr.a.ip6,
ipstr, INET6_ADDRSTRLEN);
snprintf(x->agentIPStr, sizeof x->agentIPStr, "[%s]", ipstr);
} else {
snprintf(x->agentIPStr, sizeof x->agentIPStr,
IP_FMT, IP_ARGS(x->agentAddr.a.ip4));
}
/* Array of flow/counter samples. */
samples = sflowxdr_next(x);
for (s = 0; s < samples; s++) {
uint32_t sType = sflowxdr_next(x);
uint32_t sQuads = sflowxdr_next(x) >> 2;
uint32_t sMark = sflowxdr_mark(x, sQuads);
SFLOWXDR_assert(x, sflowxdr_more(x, sQuads));
switch (sType) {
case SFLOW_COUNTERS_SAMPLE_EXPANDED:
case SFLOW_COUNTERS_SAMPLE:
{
uint32_t csElements, e;
uint32_t ceTag, ceQuads, ceMark, csEnd;
x->csSeqNo = sflowxdr_next(x);
if (sType == SFLOW_COUNTERS_SAMPLE_EXPANDED) {
x->dsClass = sflowxdr_next(x);
x->dsIndex = sflowxdr_next(x);
} else {
uint32_t dsCombined = sflowxdr_next(x);
x->dsClass = dsCombined >> 24;
x->dsIndex = dsCombined & 0x00FFFFFF;
}
csElements = sflowxdr_next(x);
for (e = 0; e < csElements; e++) {
SFLOWXDR_assert(x, sflowxdr_more(x,2));
ceTag = sflowxdr_next(x);
ceQuads = sflowxdr_next(x) >> 2;
ceMark = sflowxdr_mark(x, ceQuads);
SFLOWXDR_assert(x, sflowxdr_more(x,ceQuads));
/* Only care about selected structures. Just record their
* offsets here. We'll read the fields out later. */
switch (ceTag) {
case SFLOW_TAG_CTR_IFCOUNTERS:
sflowxdr_mark_unique(x, &x->offset.IFCOUNTERS);
break;
/* Add others here... */
}
sflowxdr_skip(x, ceQuads);
SFLOWXDR_assert(x, sflowxdr_mark_ok(x, ceMark));
}
csEnd = sflowxdr_mark(x, 0);
process_counter_sample(x);
/* Make sure we pick up the decoding where we left off. */
sflowxdr_setc(x, csEnd);
/* Clear the offsets for the next sample. */
memset(&x->offset, 0, sizeof x->offset);
}
break;
case SFLOW_FLOW_SAMPLE:
case SFLOW_FLOW_SAMPLE_EXPANDED:
{
uint32_t fsElements, e;
uint32_t feTag, feQuads, feMark, fsEnd;
x->fsSeqNo = sflowxdr_next(x);
if (sType == SFLOW_FLOW_SAMPLE_EXPANDED) {
x->dsClass = sflowxdr_next(x);
x->dsIndex = sflowxdr_next(x);
} else {
uint32_t dsCombined = sflowxdr_next(x);
x->dsClass = dsCombined >> 24;
x->dsIndex = dsCombined & 0x00FFFFFF;
}
x->meanSkipCount = sflowxdr_next(x);
x->samplePool = sflowxdr_next(x);
x->dropEvents = sflowxdr_next(x);
if (sType == SFLOW_FLOW_SAMPLE_EXPANDED) {
x->inputPortFormat = sflowxdr_next(x);
x->inputPort = sflowxdr_next(x);
x->outputPortFormat = sflowxdr_next(x);
x->outputPort = sflowxdr_next(x);
} else {
uint32_t inp, outp;
inp = sflowxdr_next(x);
outp = sflowxdr_next(x);
x->inputPortFormat = inp >> 30;
x->inputPort = inp & 0x3fffffff;
x->outputPortFormat = outp >> 30;
x->outputPort = outp & 0x3fffffff;
}
fsElements = sflowxdr_next(x);
for (e = 0; e < fsElements; e++) {
SFLOWXDR_assert(x, sflowxdr_more(x,2));
feTag = sflowxdr_next(x);
feQuads = sflowxdr_next(x) >> 2;
feMark = sflowxdr_mark(x, feQuads);
SFLOWXDR_assert(x, sflowxdr_more(x,feQuads));
/* Only care about selected structures. Just record their
* offsets here. We'll read the fields out below. */
switch (feTag) {
case SFLOW_TAG_PKT_HEADER:
sflowxdr_mark_unique(x, &x->offset.HEADER);
break;
case SFLOW_TAG_PKT_SWITCH:
sflowxdr_mark_unique(x, &x->offset.SWITCH);
break;
/* Add others here... */
}
sflowxdr_skip(x, feQuads);
SFLOWXDR_assert(x, sflowxdr_mark_ok(x, feMark));
}
fsEnd = sflowxdr_mark(x, 0);
process_flow_sample(x);
/* Make sure we pick up the decoding where we left off. */
sflowxdr_setc(x, fsEnd);
/* Clear the offsets for the next counter/flow sample. */
memset(&x->offset, 0, sizeof x->offset);
}
break;
default:
/* Skip other sample types. */
sflowxdr_skip(x, sQuads);
}
SFLOWXDR_assert(x, sflowxdr_mark_ok(x, sMark));
}
}
static void
print_sflow(struct ofpbuf *buf)
{
char *dgram_buf;
int dgram_len = ofpbuf_size(buf);
struct sflow_xdr xdrDatagram;
struct sflow_xdr *x = &xdrDatagram;
memset(x, 0, sizeof *x);
if (SFLOWXDR_try(x)) {
SFLOWXDR_assert(x, (dgram_buf = ofpbuf_try_pull(buf, ofpbuf_size(buf))));
sflowxdr_init(x, dgram_buf, dgram_len);
SFLOWXDR_assert(x, dgram_len >= SFLOW_MIN_LEN);
process_datagram(x);
} else {
// CATCH
printf("\n>>>>> ERROR in " __FILE__ " at line %u\n", x->errline);
}
}
static void
test_sflow_main(int argc, char *argv[])
{
struct unixctl_server *server;
enum { MAX_RECV = 1500 };
const char *target;
struct ofpbuf buf;
bool exiting = false;
int error;
int sock;
proctitle_init(argc, argv);
set_program_name(argv[0]);
parse_options(argc, argv);
if (argc - optind != 1) {
ovs_fatal(0, "exactly one non-option argument required "
"(use --help for help)");
}
target = argv[optind];
sock = inet_open_passive(SOCK_DGRAM, target, 0, NULL, 0);
if (sock < 0) {
ovs_fatal(0, "%s: failed to open (%s)", argv[1], ovs_strerror(-sock));
}
daemon_save_fd(STDOUT_FILENO);
daemonize_start();
error = unixctl_server_create(NULL, &server);
if (error) {
ovs_fatal(error, "failed to create unixctl server");
}
unixctl_command_register("exit", "", 0, 0, test_sflow_exit, &exiting);
daemonize_complete();
ofpbuf_init(&buf, MAX_RECV);
for (;;) {
int retval;
unixctl_server_run(server);
ofpbuf_clear(&buf);
do {
retval = read(sock, ofpbuf_data(&buf), buf.allocated);
} while (retval < 0 && errno == EINTR);
if (retval > 0) {
ofpbuf_put_uninit(&buf, retval);
print_sflow(&buf);
fflush(stdout);
}
if (exiting) {
break;
}
poll_fd_wait(sock, POLLIN);
unixctl_server_wait(server);
poll_block();
}
}
static void
parse_options(int argc, char *argv[])
{
enum {
DAEMON_OPTION_ENUMS,
VLOG_OPTION_ENUMS
};
static const struct option long_options[] = {
{"verbose", optional_argument, NULL, 'v'},
{"help", no_argument, NULL, 'h'},
DAEMON_LONG_OPTIONS,
VLOG_LONG_OPTIONS,
{NULL, 0, NULL, 0},
};
char *short_options = long_options_to_short_options(long_options);
for (;;) {
int c = getopt_long(argc, argv, short_options, long_options, NULL);
if (c == -1) {
break;
}
switch (c) {
case 'h':
usage();
DAEMON_OPTION_HANDLERS
VLOG_OPTION_HANDLERS
case '?':
exit(EXIT_FAILURE);
default:
abort();
}
}
free(short_options);
}
static void
usage(void)
{
printf("%s: sflow collector test utility\n"
"usage: %s [OPTIONS] PORT[:IP]\n"
"where PORT is the UDP port to listen on and IP is optionally\n"
"the IP address to listen on.\n",
program_name, program_name);
daemon_usage();
vlog_usage();
printf("\nOther options:\n"
" -h, --help display this help message\n");
exit(EXIT_SUCCESS);
}
static void
test_sflow_exit(struct unixctl_conn *conn,
int argc OVS_UNUSED, const char *argv[] OVS_UNUSED,
void *exiting_)
{
bool *exiting = exiting_;
*exiting = true;
unixctl_command_reply(conn, NULL);
}
OVSTEST_REGISTER("test-sflow", test_sflow_main);
|