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
|
/*
* This file is part of libtrace
*
* Copyright (c) 2007,2008,2009,2010 The University of Waikato, Hamilton,
* New Zealand.
*
* Authors: Daniel Lawson
* Perry Lorier
* Shane Alcock
*
* All rights reserved.
*
* This code has been developed by the University of Waikato WAND
* research group. For further information please see http://www.wand.net.nz/
*
* libtrace is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* libtrace is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with libtrace; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id: format_dag24.c 1508 2010-02-03 21:36:53Z salcock $
*
*/
#define _GNU_SOURCE
#include "config.h"
#include "common.h"
#include "libtrace.h"
#include "libtrace_int.h"
#include "format_helper.h"
#include "format_erf.h"
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/mman.h>
#ifdef WIN32
# include <io.h>
# include <share.h>
# define PATH_MAX _MAX_PATH
# define snprintf sprintf_s
#else
# include <netdb.h>
# ifndef PATH_MAX
# define PATH_MAX 4096
# endif
# include <sys/ioctl.h>
#endif
/* This format deals with DAG cards that are using drivers from the 2.4.X
* versions.
*
* DAG is a LIVE capture format.
*
* We do not support writing using this format, as transmit support was not
* added until a subsequent version of the DAG software (see format_dag25.c).
* Instead, you should write the packets read using this format as ERF traces.
*/
static struct libtrace_format_t dag;
#define DATA(x) ((struct dag_format_data_t *)x->format_data)
#define DUCK DATA(libtrace)->duck
#define FORMAT_DATA DATA(libtrace)
/* "Global" data that is stored for each DAG input trace */
struct dag_format_data_t {
/* Data required for regular DUCK reporting */
struct {
/* Timestamp of the last DUCK report */
uint32_t last_duck;
/* The number of seconds between each DUCK report */
uint32_t duck_freq;
/* Timestamp of the last packet read from the DAG card */
uint32_t last_pkt;
/* Dummy trace to ensure DUCK packets are dealt with using
* the DUCK format functions */
libtrace_t *dummy_duck;
} duck;
/* File descriptor for the DAG card */
int fd;
/* Pointer to DAG memory hole */
void *buf;
/* Difference between the top and bottom pointers in the DAG memory
* hole, i.e. the amount of available data to read */
uint32_t diff;
/* The amount of data read thus far from the start of the bottom
* pointer */
uint32_t offset;
/* The offset for the first unread byte in the DAG memory hole */
uint32_t bottom;
/* The offset for the last unread byte in the DAG memory hole */
uint32_t top;
/* The number of packets that have been dropped */
uint64_t drops;
};
/* Determines if a given filename refers to a DAG device */
static void dag_probe_filename(const char *filename)
{
struct stat statbuf;
/* Can we stat the file? */
if (stat(filename, &statbuf) != 0) {
return 0;
}
/* Is it a character device? */
if (!S_ISCHR(statbuf.st_mode)) {
return 0;
}
/* Yeah, it's probably us. */
return 1;
}
/* Initialises the DAG "global" variables */
static void dag_init_format_data(libtrace_t *libtrace) {
libtrace->format_data = (struct dag_format_data_t *)
malloc(sizeof(struct dag_format_data_t));
DUCK.last_duck = 0;
DUCK.duck_freq = 0;
DUCK.last_pkt = 0;
DUCK.dummy_duck = NULL;
FORMAT_DATA->drops = 0;
FORMAT_DATA->top = 0;
FORMAT_DATA->bottom = 0;
FORMAT_DATA->buf = NULL;
FORMAT_DATA->fd = -1;
FORMAT_DATA->offset = 0;
FORMAT_DATA->diff = 0;
}
/* Determines how much data is available for reading on the DAG card and
* updates the various offsets accordingly */
static int dag_available(libtrace_t *libtrace) {
if (FORMAT_DATA->diff > 0)
return FORMAT_DATA->diff;
FORMAT_DATA->bottom = FORMAT_DATA->top;
FORMAT_DATA->top = dag_offset(
FORMAT_DATA->fd,
&(FORMAT_DATA->bottom),
DAGF_NONBLOCK);
FORMAT_DATA->diff = FORMAT_DATA->top - FORMAT_DATA->bottom;
FORMAT_DATA->offset = 0;
return FORMAT_DATA->diff;
}
/* Initialises a DAG input trace */
static int dag_init_input(libtrace_t *libtrace) {
struct stat buf;
char *dag_dev_name = NULL;
char *scan = NULL;
/* Since DAG 2.5 has been changed to support a slightly different URI
* format, it's probably a good idea to deal with URIs specified in
* such a fashion even if we just end up ignoring the stream number */
if ((scan = strchr(libtrace->uridata,',')) == NULL) {
dag_dev_name = strdup(libtrace->uridata);
} else {
dag_dev_name = (char *)strndup(libtrace->uridata,
(size_t)(scan - libtrace->uridata));
}
/* Make sure a DAG device with the right name exists */
if (stat(dag_dev_name, &buf) == -1) {
trace_set_err(libtrace,errno,"stat(%s)",dag_dev_name);
free(dag_dev_name);
return -1;
}
dag_init_format_data(libtrace);
if (S_ISCHR(buf.st_mode)) {
/* DEVICE */
if((FORMAT_DATA->fd = dag_open(dag_dev_name)) < 0) {
trace_set_err(libtrace,errno,"Cannot open DAG %s",
dag_dev_name);
free(dag_dev_name);
return -1;
}
/* Memory-map ourselves a pointer to the DAG memory hole */
if((FORMAT_DATA->buf = (void *)dag_mmap(FORMAT_DATA->fd)) == MAP_FAILED) {
trace_set_err(libtrace,errno,"Cannot mmap DAG %s",
dag_dev_name);
free(dag_dev_name);
return -1;
}
} else {
trace_set_err(libtrace,errno,"Not a valid dag device: %s",
dag_dev_name);
free(dag_dev_name);
return -1;
}
free(dag_dev_name);
return 0;
}
/* Configures a DAG input trace */
static int dag_config_input(libtrace_t *libtrace, trace_option_t option,
void *data) {
switch(option) {
case TRACE_OPTION_META_FREQ:
/* We use this option to specify the frequency of
* DUCK updates */
DUCK.duck_freq = *(int *)data;
return 0;
case TRACE_OPTION_SNAPLEN:
/* Surely we can set this?? Fall through for now*/
return -1;
case TRACE_OPTION_PROMISC:
/* DAG already operates in a promisc fashion */
return -1;
case TRACE_OPTION_FILTER:
/* Cards that use the older drivers don't do
* filtering */
return -1;
case TRACE_OPTION_EVENT_REALTIME:
/* Live capture is always going to be realtime */
return -1;
}
return -1;
}
/* Starts a DAG input trace */
static int dag_start_input(libtrace_t *libtrace) {
if(dag_start(FORMAT_DATA->fd) < 0) {
trace_set_err(libtrace,errno,"Cannot start DAG %s",
libtrace->uridata);
return -1;
}
/* Flush the memory hole */
while(dag_available(libtrace) != 0)
FORMAT_DATA->diff = 0;
FORMAT_DATA->drops = 0;
return 0;
}
/* Pauses a DAG input trace */
static int dag_pause_input(libtrace_t *libtrace) {
dag_stop(FORMAT_DATA->fd);
return 0;
}
/* Destroys a DAG input trace */
static int dag_fin_input(libtrace_t *libtrace) {
dag_close(FORMAT_DATA->fd);
if (DUCK.dummy_duck)
trace_destroy_dead(DUCK.dummy_duck);
free(libtrace->format_data);
return 0; /* success */
}
/* Extracts DUCK information from the DAG card and produces a DUCK packet */
static int dag_get_duckinfo(libtrace_t *libtrace,
libtrace_packet_t *packet) {
dag_inf lt_dag_inf;
/* Allocate memory for the DUCK data */
if (packet->buf_control == TRACE_CTRL_EXTERNAL ||
!packet->buffer) {
packet->buffer = malloc(LIBTRACE_PACKET_BUFSIZE);
packet->buf_control = TRACE_CTRL_PACKET;
if (!packet->buffer) {
trace_set_err(libtrace, errno,
"Cannot allocate packet buffer");
return -1;
}
}
/* DUCK doesn't actually have a format header, as such */
packet->header = 0;
packet->payload = packet->buffer;
/* Check that the DAG card supports DUCK */
if ((ioctl(FORMAT_DATA->fd, DAG_IOINF, <_dag_inf) < 0)) {
trace_set_err(libtrace, errno,
"Error using DAG_IOINF");
return -1;
}
if (!IsDUCK(<_dag_inf)) {
printf("WARNING: %s does not have modern clock support - No DUCK information will be gathered\n", libtrace->uridata);
return 0;
}
/* Get the DUCK information from the card */
if ((ioctl(FORMAT_DATA->fd, DAG_IOGETDUCK, (duck_inf *)packet->payload)
< 0)) {
trace_set_err(libtrace, errno, "Error using DAG_IOGETDUCK");
return -1;
}
/* Set the type */
packet->type = TRACE_RT_DUCK_2_4;
/* Set the packet's trace to point at a DUCK trace, so that the
* DUCK format functions will be called on the packet rather than the
* DAG ones */
if (!DUCK.dummy_duck)
DUCK.dummy_duck = trace_create_dead("duck:dummy");
packet->trace = DUCK.dummy_duck;
return sizeof(duck_inf);
}
/* Reads the next ERF record from the DAG memory hole */
static dag_record_t *dag_get_record(libtrace_t *libtrace) {
dag_record_t *erfptr = NULL;
uint16_t size;
erfptr = (dag_record_t *) ((char *)FORMAT_DATA->buf +
(FORMAT_DATA->bottom + FORMAT_DATA->offset));
if (!erfptr)
return NULL;
size = ntohs(erfptr->rlen);
assert( size >= dag_record_size );
FORMAT_DATA->offset += size;
FORMAT_DATA->diff -= size;
return erfptr;
}
/* Converts a buffer containing a recently read DAG packet record into a
* libtrace packet */
static int dag_prepare_packet(libtrace_t *libtrace, libtrace_packet_t *packet,
void *buffer, libtrace_rt_types_t rt_type, uint32_t flags) {
dag_record_t *erfptr;
/* If the packet previously owned a buffer that is not the buffer
* that contains the new packet data, we're going to need to free the
* old one to avoid memory leaks */
if (packet->buffer != buffer &&
packet->buf_control == TRACE_CTRL_PACKET) {
free(packet->buffer);
}
/* Set the buffer owner appropriately */
if ((flags & TRACE_PREP_OWN_BUFFER) == TRACE_PREP_OWN_BUFFER) {
packet->buf_control = TRACE_CTRL_PACKET;
} else
packet->buf_control = TRACE_CTRL_EXTERNAL;
/* Update packet pointers and type appropriately */
erfptr = (dag_record_t *)buffer;
packet->buffer = erfptr;
packet->header = erfptr;
packet->type = rt_type;
if (erfptr->flags.rxerror == 1) {
/* rxerror means the payload is corrupt - drop the payload
* by tweaking rlen */
packet->payload = NULL;
erfptr->rlen = htons(erf_get_framing_length(packet));
} else {
packet->payload = (char*)packet->buffer
+ erf_get_framing_length(packet);
}
if (libtrace->format_data == NULL) {
dag_init_format_data(libtrace);
}
/* Update the dropped packets counter, using the value of the ERF
* loss counter */
DATA(libtrace)->drops += ntohs(erfptr->lctr);
return 0;
}
/* Reads the next available packet from a DAG card, in a BLOCKING fashion
*
* If DUCK reporting is enabled, the packet returned may be a DUCK update */
static int dag_read_packet(libtrace_t *libtrace, libtrace_packet_t *packet) {
int numbytes;
int size = 0;
uint32_t flags = 0;
struct timeval tv;
dag_record_t *erfptr = NULL;
/* Check if we're due for a DUCK report */
if (DUCK.last_pkt - DUCK.last_duck > DUCK.duck_freq &&
DUCK.duck_freq != 0) {
size = dag_get_duckinfo(libtrace, packet);
DUCK.last_duck = DUCK.last_pkt;
if (size != 0) {
return size;
}
/* No DUCK support, so don't waste our time anymore */
DUCK.duck_freq = 0;
}
/* Don't let anyone try to free our DAG memory hole */
flags |= TRACE_PREP_DO_NOT_OWN_BUFFER;
/* If the packet buffer is currently owned by libtrace, free it so
* that we can set the packet to point into the DAG memory hole */
if (packet->buf_control == TRACE_CTRL_PACKET) {
packet->buf_control = TRACE_CTRL_EXTERNAL;
free(packet->buffer);
packet->buffer = 0;
}
/* Grab a full ERF record */
do {
numbytes = dag_available(libtrace);
if (numbytes < 0)
return numbytes;
if (numbytes == 0)
continue;
erfptr = dag_get_record(libtrace);
} while (erfptr == NULL);
/* Prepare the libtrace packet */
if (dag_prepare_packet(libtrace, packet, erfptr, TRACE_RT_DATA_ERF,
flags))
return -1;
/* Update the DUCK timer */
tv = trace_get_timeval(packet);
DUCK.last_pkt = tv.tv_sec;
return packet->payload ? htons(erfptr->rlen) : erf_get_framing_length(packet);
}
/* Attempts to read a packet from a DAG card in a NON-BLOCKING fashion. If
* a packet is available, we will return a packet event. Otherwise we will
* return a SLEEP event (as we cannot select on the DAG file descriptor).
*/
static libtrace_eventobj_t trace_event_dag(libtrace_t *trace,
libtrace_packet_t *packet) {
libtrace_eventobj_t event = {0,0,0.0,0};
int data;
do {
data = dag_available(trace);
/* If no data is available, drop out and return a sleep event */
if (data <= 0)
break;
/* Data is available, so we can call the blocking read because
* we know that we will get a packet straight away */
event.size = dag_read_packet(trace,packet);
//DATA(trace)->dag.diff -= event.size;
/* XXX trace_read_packet() normally applies the following
* config options for us, but this function is called via
* trace_event() so we have to do it ourselves */
/* Check that the packet matches any pre-existing filter */
if (trace->filter) {
if (trace_apply_filter(trace->filter, packet)) {
event.type = TRACE_EVENT_PACKET;
} else {
/* Do not sleep - try to read another packet */
continue;
}
} else {
event.type = TRACE_EVENT_PACKET;
}
/* If the user has specified a snap length, apply that too */
if (trace->snaplen > 0) {
trace_set_capture_length(packet, trace->snaplen);
}
return event;
} while (1);
/* We only want to sleep for a very short time */
assert(data == 0);
event.type = TRACE_EVENT_SLEEP;
event.seconds = 0.0001;
event.size = 0;
return event;
}
/* Gets the number of dropped packets */
static uint64_t dag_get_dropped_packets(libtrace_t *trace)
{
if (!trace->format_data)
return (uint64_t)-1;
return DATA(trace)->drops;
}
/* Prints some semi-useful help text about the DAG format module */
static void dag_help(void) {
printf("dag format module: $Revision: 1508 $\n");
printf("Supported input URIs:\n");
printf("\tdag:/dev/dagn\n");
printf("\n");
printf("\te.g.: dag:/dev/dag0\n");
printf("\n");
printf("Supported output URIs:\n");
printf("\tnone\n");
printf("\n");
}
static struct libtrace_format_t dag = {
"dag",
"$Id: format_dag24.c 1508 2010-02-03 21:36:53Z salcock $",
TRACE_FORMAT_ERF,
dag_probe_filename, /* probe filename */
NULL, /* probe magic */
dag_init_input, /* init_input */
dag_config_input, /* config_input */
dag_start_input, /* start_input */
dag_pause_input, /* pause_input */
NULL, /* init_output */
NULL, /* config_output */
NULL, /* start_output */
dag_fin_input, /* fin_input */
NULL, /* fin_output */
dag_read_packet, /* read_packet */
dag_prepare_packet, /* prepare_packet */
NULL, /* fin_packet */
NULL, /* write_packet */
erf_get_link_type, /* get_link_type */
erf_get_direction, /* get_direction */
erf_set_direction, /* set_direction */
erf_get_erf_timestamp, /* get_erf_timestamp */
NULL, /* get_timeval */
NULL, /* get_timespec */
NULL, /* get_seconds */
NULL, /* seek_erf */
NULL, /* seek_timeval */
NULL, /* seek_seconds */
erf_get_capture_length, /* get_capture_length */
erf_get_wire_length, /* get_wire_length */
erf_get_framing_length, /* get_framing_length */
erf_set_capture_length, /* set_capture_length */
NULL, /* get_received_packets */
NULL, /* get_filtered_packets */
dag_get_dropped_packets, /* get_dropped_packets */
NULL, /* get_captured_packets */
NULL, /* get_fd */
trace_event_dag, /* trace_event */
dag_help, /* help */
NULL /* next pointer */
};
void dag_constructor(void) {
register_format(&dag);
}
|