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 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
|
/*
* 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: libtrace_int.h 1646 2010-08-02 03:49:15Z salcock $
*
*/
/** @file
*
* @brief Header file containing definitions for structures and functions that
* are internal
*
* @author Daniel Lawson
* @author Perry Lorier
* @author Shane Alcock
*
* @version $Id: libtrace_int.h 1646 2010-08-02 03:49:15Z salcock $
*
* All of the structures and functions defined in this header file are intended
* for internal use within Libtrace only. They should not be exported as part
* of the library API as we don't want users accessing things like the
* contents of the libtrace packet structure directly!
*/
#ifndef LIBTRACE_INT_H
#define LIBTRACE_INT_H
#ifdef __cplusplus
extern "C" {
#endif
#include "config.h"
#include "common.h"
#include "libtrace.h"
#include "wandio.h"
#ifdef _MSC_VER
// warning: deprecated function
#pragma warning(disable:4996)
// warning: benign redefinitions of types
#pragma warning(disable:4142)
#endif
#ifdef HAVE_INTTYPES_H
# include <inttypes.h>
#else
# include "lt_inttypes.h"
#endif
#ifdef HAVE_STDDEF_H
# include <stddef.h>
#else
#ifndef WIN32
# error "Can't find stddev.h -- do you define ptrdiff_t elsewhere?"
#endif
#endif
#include "rt_protocol.h"
/* Prefer net/bpf.h over pcap-bpf.h for format_bpf.c on MacOS */
#ifdef HAVE_NET_BPF_H
# include <net/bpf.h>
# define HAVE_BPF 1
#else
#ifdef HAVE_PCAP_BPF_H
# include <pcap-bpf.h>
# define HAVE_BPF 1
#endif
#endif
#ifdef HAVE_PCAP_H
# include <pcap.h>
# ifdef HAVE_PCAP_INT_H
# include <pcap-int.h>
# endif
#endif
#ifdef HAVE_ZLIB_H
# include <zlib.h>
#endif
#ifndef HAVE_STRNDUP
char *strndup(const char *s, size_t size);
#endif
#ifndef HAVE_STRNCASECMP
# ifndef HAVE__STRNICMP
/** A local implementation of strncasecmp (as some systems do not have it) */
int strncasecmp(const char *str1, const char *str2, size_t n);
# else
# define strncasecmp _strnicmp
# endif
#endif
#ifndef HAVE_SNPRINTF
# ifndef HAVE_SPRINTF_S
/** A local implementation of snprintf (as some systems do not have it) */
int snprintf(char *str, size_t size, const char *format, ...);
# else
# define snprintf sprintf_s
# endif
#endif
#include "daglegacy.h"
#ifdef HAVE_DAG_API
# include "dagnew.h"
# include "dagapi.h"
# if DAG_VERSION == 24
# include <erftypes.h>
# else
# include <daginf.h>
# endif
#else
# include "dagformat.h"
#endif
#ifdef HAVE_LLVM
#include "bpf-jit/bpf-jit.h"
#endif
//#define RP_BUFSIZE 65536U
/** Data about the most recent event from a trace file */
struct libtrace_event_status_t {
/** A libtrace packet to store the packet when a PACKET event occurs */
libtrace_packet_t *packet;
/** Time between the timestamp for the current packet and the current
* walltime */
double tdelta;
/** The timestamp of the previous PACKET event */
double trace_last_ts;
/** The size of the current PACKET event */
int psize;
};
/** A libtrace input trace
* @internal
*/
struct libtrace_t {
/** The capture format for the input trace */
struct libtrace_format_t *format;
/** Details of the most recent PACKET event reported by the trace */
struct libtrace_event_status_t event;
/** Pointer to the "global" data for the capture format module */
void *format_data;
/** A BPF filter to be applied to all packets read by the trace -
* used only if the capture format does not support filters natively */
struct libtrace_filter_t *filter;
/** The snap length to be applied to all packets read by the trace -
* used only if the capture format does not support snapping natively */
size_t snaplen;
/** Count of the number of packets returned to the libtrace user */
uint64_t accepted_packets;
/** Count of the number of packets filtered by libtrace */
uint64_t filtered_packets;
/** The filename from the uri for the trace */
char *uridata;
/** The libtrace IO reader for this trace (if applicable) */
io_t *io;
/** Error information for the trace */
libtrace_err_t err;
/** Boolean flag indicating whether the trace has been started */
bool started;
};
/** A libtrace output trace
* @internal
*/
struct libtrace_out_t {
/** The capture format for the output trace */
struct libtrace_format_t *format;
/** Pointer to the "global" data for the capture format module */
void *format_data;
/** The filename for the uri for the output trace */
char *uridata;
/** Error information for the output trace */
libtrace_err_t err;
/** Boolean flag indicating whether the trace has been started */
bool started;
};
/** Sets the error status on an input trace
*
* @param trace The input trace to set the error status for
* @param errcode The code for the error - can be a libtrace error code or a regular errno value
* @param msg A message to print when reporting the error
*/
void trace_set_err(libtrace_t *trace, int errcode,const char *msg,...)
PRINTF(3,4);
/** Sets the error status on an output trace
*
* @param trace The output trace to set the error status for
* @param errcode The code for the error - can be a libtrace error code or a regular errno value
* @param msg A message to print when reporting the error
*/
void trace_set_err_out(libtrace_out_t *trace, int errcode, const char *msg,...)
PRINTF(3,4);
/** Converts the data provided in buffer into a valid libtrace packet
*
* @param trace An input trace of the same format as the "packet"
* contained in the buffer
* @param packet The libtrace packet to prepare
* @param buffer A buffer containing the packet data, including the
* capture format header
* @param rt_type The RT type for the packet that is being prepared
* @param flags Used to specify options for the preparation function,
* e.g. who owns the packet buffer
*
* @return -1 if an error occurs, 0 otherwise
*
* Packet preparation is a tricky concept - the idea is to take the data
* pointed to by 'buffer' and treat it as a packet record of the same capture
* format as that used by the input trace. The provided libtrace packet then
* has its internal pointers and values set to describe the packet record in
* the buffer.
*
* The primary use of this function is to allow the RT packet reader to
* easily and safely convert packets from the RT format back into the format
* that they were originally captured with., essentially removing the RT
* encapsulation.
*
* We've decided not to make this function available via the exported API
* because there are several issues that can arise if it is not used very
* carefully and it is not very useful outside of internal contexts anyway.
*/
int trace_prepare_packet(libtrace_t *trace, libtrace_packet_t *packet,
void *buffer, libtrace_rt_types_t rt_type, uint32_t flags);
/** Flags for prepare_packet functions */
enum {
/** The buffer memory has been allocated by libtrace and should be
* freed when the packet is destroyed. */
TRACE_PREP_OWN_BUFFER =1,
/** The buffer memory is externally-owned and must not be freed by
* libtrace when the packet is destroyed. */
TRACE_PREP_DO_NOT_OWN_BUFFER =0
};
/** A local definition of an SLL header */
typedef struct libtrace_sll_header_t {
uint16_t pkttype; /**< Packet type */
uint16_t hatype; /**< Link-layer address type */
uint16_t halen; /**< Link-layer address length */
unsigned char addr[8]; /**< Link-layer address */
uint16_t protocol; /**< Protocol */
} libtrace_sll_header_t;
/* SLL packet types */
/** Packet was addressed for the local host */
#define TRACE_SLL_HOST 0
/** Packet was addressed for a broadcast address */
#define TRACE_SLL_BROADCAST 1
/** Packet was addressed for a multicast address */
#define TRACE_SLL_MULTICAST 2
/** Packet was addressed for another host but was captured by a promiscuous
* device */
#define TRACE_SLL_OTHERHOST 3
/** Packet originated from the local host */
#define TRACE_SLL_OUTGOING 4
#ifndef PF_RULESET_NAME_SIZE
#define PF_RULESET_NAME_SIZE 16
#endif
#ifndef IFNAMSIZ
#define IFNAMSIZ 16
#endif
/** A local definition of a PFLOG header */
typedef struct libtrace_pflog_header_t {
uint8_t length;
sa_family_t af;
uint8_t action;
uint8_t reason;
char ifname[IFNAMSIZ];
char ruleset[PF_RULESET_NAME_SIZE];
uint32_t rulenr;
uint32_t subrulenr;
uint8_t dir;
uint8_t pad[3];
} PACKED libtrace_pflog_header_t;
/** A libtrace capture format module */
/* All functions should return -1, or NULL on failure */
struct libtrace_format_t {
/** The name of this module, used in the libtrace URI to identify the
* capture format */
const char *name;
/** The version of this module */
const char *version;
/** The RT protocol type of this module */
enum base_format_t type;
/** Given a filename, return if this is the most likely capture format
* (used for devices). Used to "guess" the capture format when the
* URI is not fully specified.
*
* @param fname The name of the device or file to examine
* @return 1 if the name matches the capture format, 0 otherwise
*/
int (*probe_filename)(const char *fname);
/** Given a file, looks at the start of the file to determine if this
* is the capture format. Used to "guess" the capture format when the
* URI is not fully specified.
*
* @param io An open libtrace IO reader for the file to check
* @return 1 if the file matches the capture format, 0 otherwise
*/
int (*probe_magic)(io_t *io);
/** Initialises an input trace using the capture format.
*
* @param libtrace The input trace to be initialised
* @return 0 if successful, -1 in the event of error
*/
int (*init_input)(libtrace_t *libtrace);
/** Applies a configuration option to an input trace.
*
* @param libtrace The input trace to apply the option to
* @param option The option that is being configured
* @param value A pointer to the value that the option is to be
* set to
* @return 0 if successful, -1 if the option is unsupported or an error
* occurs
*/
int (*config_input)(libtrace_t *libtrace,trace_option_t option,void *value);
/** Starts or unpauses an input trace - note that this function is
* often the one that opens the file or device for reading.
*
* @param libtrace The input trace to be started or unpaused
* @return 0 if successful, -1 in the event of error */
int (*start_input)(libtrace_t *libtrace);
/** Pauses an input trace - this function should close or detach the
* file or device that is being read from.
*
* @param libtrace The input trace to be paused
* @return 0 if successful, -1 in the event of error
*/
int (*pause_input)(libtrace_t *libtrace);
/** Initialises an output trace using the capture format.
*
* @param libtrace The output trace to be initialised
* @return 0 if successful, -1 in the event of error
*/
int (*init_output)(libtrace_out_t *libtrace);
/** Applies a configuration option to an output trace.
*
* @param libtrace The output trace to apply the option to
* @param option The option that is being configured
* @param value A pointer to the value that the option is to be
* set to
* @return 0 if successful, -1 if the option is unsupported or an error
* occurs
* */
int (*config_output)(libtrace_out_t *libtrace, trace_option_output_t option, void *value);
/** Starts an output trace - note that this function is often the one
* that opens the file or device for writing.
*
* @param libtrace The output trace to be started
* @return 0 if successful, -1 if an error occurs
*
* There is no pause for output traces, as writing is not performed
* asynchronously.
*/
int (*start_output)(libtrace_out_t *libtrace);
/** Concludes an input trace and cleans up the capture format data.
*
* @param libtrace The input trace to be concluded
* @return 0 if successful, -1 if an error occurs
*
* Libtrace will call the pause_input function if the input trace is
* currently active prior to calling this function.
*/
int (*fin_input)(libtrace_t *libtrace);
/** Concludes an output trace and cleans up the capture format data.
*
* @param libtrace The output trace to be concluded
* @return 0 if successful, -1 if an error occurs
*/
int (*fin_output)(libtrace_out_t *libtrace);
/** Reads the next packet from an input trace into the provided packet
* structure.
*
* @param libtrace The input trace to read from
* @param packet The libtrace packet to read into
* @return The size of the packet read (in bytes) including the capture
* framing header, or -1 if an error occurs. 0 is returned in the
* event of an EOF.
*
* If no packets are available for reading, this function should block
* until one appears or return 0 if the end of a trace file has been
* reached.
*/
int (*read_packet)(libtrace_t *libtrace, libtrace_packet_t *packet);
/** Converts a buffer containing a packet record into a libtrace packet
*
* @param libtrace An input trace in the capture format for the
* packet
* @param packet A libtrace packet to put the prepared packet
* into
* @param buffer The buffer containing the packet record
* (including the capture format header)
* @param rt_type The RT type for the packet
* @param flags Flags describing properties that should be
* applied to the new packet
* @return 0 if successful, -1 if an error occurs.
*
* Updates internal trace and packet details, such as payload pointers,
* loss counters and packet types to match the packet record provided
* in the buffer. This is a zero-copy function.
*
* Intended (at this stage) only for internal use, particularly by
* RT which needs to decapsulate RT packets */
int (*prepare_packet)(libtrace_t *libtrace, libtrace_packet_t *packet,
void *buffer, libtrace_rt_types_t rt_type,
uint32_t flags);
/** Frees any resources allocated by the capture format module for a
* libtrace packet.
*
* @param The packet to be finalised
* */
void (*fin_packet)(libtrace_packet_t *packet);
/** Write a libtrace packet to an output trace.
*
* @param libtrace The output trace to write the packet to
* @param packet The packet to be written out
* @return The number of bytes written, or -1 if an error occurs
*/
int (*write_packet)(libtrace_out_t *libtrace, libtrace_packet_t *packet);
/** Returns the libtrace link type for a packet.
*
* @param packet The packet to get the link type for
* @return The libtrace link type, or -1 if this link type is unknown
*/
libtrace_linktype_t (*get_link_type)(const libtrace_packet_t *packet);
/** Returns the direction of a packet.
*
* @param packet The packet to get the direction for
* @return The direction of the packet, or -1 if no direction tag is
* present or an error occurs
*/
libtrace_direction_t (*get_direction)(const libtrace_packet_t *packet);
/** Sets the direction of a packet.
*
* @param packet The packet to set the direction for
* @param direction The direction to assign to the packet
* @return The updated direction for the packet, or -1 if an error
* occurs
*
* @note Some capture formats do not feature direction tagging, so it
* will not make sense to implement a set_direction function for them.
*/
libtrace_direction_t (*set_direction)(libtrace_packet_t *packet, libtrace_direction_t direction);
/** Returns the timestamp for a packet in the ERF timestamp format.
*
* @param packet The packet to get the timestamp from
* @return The 64-bit ERF timestamp
*
* @note Each format must implement at least one of the four "get
* timestamp" functions.
*
* If not implemented, libtrace will convert the result of one of the
* other timestamp functions into the appropriate format instead.
* This means each capture format only needs to implement the most
* sensible of the four and let libtrace handle any conversions.
*
*/
uint64_t (*get_erf_timestamp)(const libtrace_packet_t *packet);
/** Returns the timestamp for a packet in the timeval format
*
* @param packet The packet to get the timestamp from
* @return The timestamp from the packet as a timeval
*
* @note Each format must implement at least one of the four "get
* timestamp" functions.
*
* If not implemented, libtrace will convert the result of one of the
* other timestamp functions into the appropriate format instead.
* This means each capture format only needs to implement the most
* sensible of the four and let libtrace handle any conversions.
*/
struct timeval (*get_timeval)(const libtrace_packet_t *packet);
/** Returns the timestamp for a packet in the timespec format.
*
* @param packet The packet to get the timestamp from
* @return The timestamp from the packet as a timespec
*
* @note Each format must implement at least one of the four "get
* timestamp" functions.
*
* If not implemented, libtrace will convert the result of one of the
* other timestamp functions into the appropriate format instead.
* This means each capture format only needs to implement the most
* sensible of the four and let libtrace handle any conversions.
*/
struct timespec (*get_timespec)(const libtrace_packet_t *packet);
/** Returns the timestamp for a packet in floating point seconds.
*
* @param packet The packet to get the timestamp from
* @return The timestamp from the packet as a floating point number of
* seconds since 1970-01-01 00:00:00 UTC
*
* @note Each format must implement at least one of the four "get
* timestamp" functions.
*
* If not implemented, libtrace will convert the result of one of the
* other timestamp functions into the appropriate format instead.
* This means each capture format only needs to implement the most
* sensible of the four and let libtrace handle any conversions.
*/
double (*get_seconds)(const libtrace_packet_t *packet);
/** Moves the read pointer to a certain ERF timestamp within an input
* trace file.
*
* @param trace The input trace to seek within
* @param timestamp The timestamp to seek to, as an ERF timestamp
*
* @return 0 on success, -1 on failure.
*
* The next packet read from this trace will now be the first packet
* to have a timestamp equal to or greater than the provided timestamp.
*
* @note Each format that supports seeking must implement at least one
* of the seek functions.
*
* If not implemented, libtrace will convert the timestamp into the
* appropriate format to use a seek function that has been implemented.
* This means each capture format only needs to implement the seek
* function that matches the native timestamp format for that capture.
*
*/
int (*seek_erf)(libtrace_t *trace, uint64_t timestamp);
/** Moves the read pointer to a certain timestamp represented using a
* timeval within an input trace file.
*
* @param trace The input trace to seek within
* @param timestamp The timestamp to seek to, as a timeval
*
* @return 0 on success, -1 on failure.
*
* The next packet read from this trace will now be the first packet
* to have a timestamp equal to or greater than the provided timestamp.
*
* @note Each format that supports seeking must implement at least one
* of the seek functions.
*
* If not implemented, libtrace will convert the timestamp into the
* appropriate format to use a seek function that has been implemented.
* This means each capture format only needs to implement the seek
* function that matches the native timestamp format for that capture.
*
*/
int (*seek_timeval)(libtrace_t *trace, struct timeval tv);
/** Moves the read pointer to a certain timestamp represented using
* floating point seconds within an input trace file.
*
* @param trace The input trace to seek within
* @param timestamp The timestamp to seek to, as floating point
* seconds since 1970-01-01 00:00:00 UTC
*
* @return 0 on success, -1 on failure.
*
* The next packet read from this trace will now be the first packet
* to have a timestamp equal to or greater than the provided timestamp.
*
* @note Each format that supports seeking must implement at least one
* of the seek functions.
*
* If not implemented, libtrace will convert the timestamp into the
* appropriate format to use a seek function that has been implemented.
* This means each capture format only needs to implement the seek
* function that matches the native timestamp format for that capture.
*
*/
int (*seek_seconds)(libtrace_t *trace, double seconds);
/** Returns the payload length of the captured packet record.
*
* @param packet The packet to get the capture length from
* @return The capture length for the packet, or -1 if an error occurs
*
* Capture length is the current size of the packet record itself,
* following any truncation that may have occurred during the capture
* process. This length does not include the capture format framing
* header.
*/
int (*get_capture_length)(const libtrace_packet_t *packet);
/** Returns the original length of the packet as it was on the wire.
*
* @param packet The packet to get the wire length from
* @return The length of the packet on the wire at the time of capture,
* or -1 if an error occurs
*
* Wire length is the original size of the packet prior to any
* truncation that may have occurred as part of the capture process.
* This length does not include the capture format framing header.
*/
int (*get_wire_length)(const libtrace_packet_t *packet);
/** Returns the length of the capture format framing header
*
* @param packet The packet to get the framing length from
* @return The length of the framing header, or -1 if an error occurs
*
* The framing header is the extra metadata that the capture process
* records about a packet. The framing length does not include any
* of the packet payload itself. The total size of the packet record
* can be calculated be adding this value with the capture length.
*/
int (*get_framing_length)(const libtrace_packet_t *packet);
/** Sets the capture length for a packet.
*
* @param packet The packet to adjust the capture length for.
* @param size The new capture length
* @return The new capture length of the packet, or -1 if an error
* occurs
*
* @note This function should only reduce the capture length. If the
* provided length is larger than the current capture length, -1 should
* be returned.
*/
size_t (*set_capture_length)(struct libtrace_packet_t *packet,size_t size);
/** Returns the number of packets observed by an input trace.
*
* @param trace The input trace to get the packet count for
* @return The number of packets observed by an input trace, or
* UINT64_MAX if the number is unknown
*
* This count includes packets that have been filtered and dropped.
*/
uint64_t (*get_received_packets)(libtrace_t *trace);
/** Returns the number of packets filtered by an input trace.
*
* @param trace The input trace to get the filtered count for
* @return The number of packets filtered by the input trace, or
* UINT64_MAX if the number is unknown
*
*/
uint64_t (*get_filtered_packets)(libtrace_t *trace);
/** Returns the number of packets dropped by an input trace.
*
* @param trace The input trace to get the dropped count for
* @return The number of packets dropped by the input trace, or
* UINT64_MAX if the number is unknown
*
*/
uint64_t (*get_dropped_packets)(libtrace_t *trace);
/** Returns the number of packets captured and returned by an input
* trace.
*
* @param trace The input trace to get the capture count for
* @return The number of packets returned to the libtrace user, or
* UINT64_MAX if the number is unknown
*
* This is the number of packets that have been successfully returned
* to the libtrace user via the read_packet() function.
*
*/
uint64_t (*get_captured_packets)(libtrace_t *trace);
/** Returns the file descriptor used by the input trace.
*
* @param trace The input trace to get the file descriptor for
* @return The file descriptor used by the input trace to read packets
*
*/
int (*get_fd)(const libtrace_t *trace);
/** Returns the next libtrace event for the input trace.
*
* @param trace The input trace to get the next event from
* @param packet A libtrace packet to read a packet into
* @return A libtrace event describing the event that occured
*
* The event API allows for non-blocking reading of packets from an
* input trace. If a packet is available and ready to be read, a packet
* event should be returned. Otherwise a sleep or fd event should be
* returned to indicate that the caller needs to wait. If the input
* trace has an error or reaches EOF, a terminate event should be
* returned.
*/
struct libtrace_eventobj_t (*trace_event)(libtrace_t *trace, libtrace_packet_t *packet);
/** Prints some useful help information to standard output. */
void (*help)(void);
/** Next pointer, should always be NULL - used by the format module
* manager. */
struct libtrace_format_t *next;
};
/** The list of registered capture formats */
extern struct libtrace_format_t *form;
/** Registers a new capture format module.
*
* @param format The format module to be registered
*/
void register_format(struct libtrace_format_t *format);
/** Converts a PCAP DLT into a libtrace link type.
*
* @param linktype The PCAP DLT to be converted
* @return The libtrace link type that is equivalent to the provided DLT, or
* -1 if the DLT is unknown
*/
libtrace_linktype_t pcap_linktype_to_libtrace(libtrace_dlt_t linktype);
/** Converts a PCAP DLT into an RT protocol type.
*
* @param linktype The PCAP DLT to be converted
* @return The RT type that is equivalent to the provided DLT
*/
libtrace_rt_types_t pcap_linktype_to_rt(libtrace_dlt_t linktype);
/** Converts a libtrace link type into a PCAP linktype.
*
* @param type The libtrace link type to be converted
* @return The PCAP linktype that is equivalent to the provided libtrace link
* type, or -1 if the link type is unknown
*/
libtrace_dlt_t libtrace_to_pcap_linktype(libtrace_linktype_t type);
/** Converts a libtrace link type into a PCAP DLT.
*
* @param type The libtrace link type to be converted
* @return The PCAP DLT that is equivalent to the provided libtrace link
* type, or -1 if the link type is unknown
*/
libtrace_dlt_t libtrace_to_pcap_dlt(libtrace_linktype_t type);
/** Converts an RT protocol type into a PCAP DLT.
*
* @param rt_type The RT type to be converted
* @return The PCAP DLT that is equivalent to the provided RT protocol
*/
libtrace_dlt_t rt_to_pcap_linktype(libtrace_rt_types_t rt_type);
/** Converts an ERF type into a libtrace link type.
*
* @param erf The ERF type to be converted
* @return The libtrace link type that is equivalent to the provided ERF type,
* or -1 if the ERF type is unknown
*/
libtrace_linktype_t erf_type_to_libtrace(uint8_t erf);
/** Converts a libtrace link type into an ERF type.
*
* @param linktype The libtrace link type to be converted
* @return The ERF type that is equivalent to the provided libtrace link type,
* or -1 if the link type cannot be matched to an ERF type.
*/
uint8_t libtrace_to_erf_type(libtrace_linktype_t linktype);
/** Converts an ARPHRD type into a libtrace link type.
*
* @param arphrd The ARPHRD type to be converted
* @return The libtrace link type that is equivalent to the provided ARPHRD
* type, or -1 if the ARPHRD type is unknown
*/
libtrace_linktype_t arphrd_type_to_libtrace(unsigned int arphrd);
/** Converts a libtrace link type into an ARPHRD type.
*
* @param type The libtrace link type to be converted
* @return The ARPHRD type that is equivalent to the provided libtrace link
* type, or -1 if the link type cannot be matched to an ARPHRD type
*/
unsigned int libtrace_to_arphrd_type(libtrace_linktype_t type);
/** Converts a libtrace packet to the Linux SLL type.
*
* @param packet The packet to be promoted
*
* @note This will involve memcpy() so use sparingly.
*
* This function prepends a Linux SLL header to a packet so that we can store
* direction tagging information.
*/
void promote_packet(libtrace_packet_t *packet);
/** Attempts to demote a packet by removing the first header.
*
* @param packet The packet to be demoted
* @return True if the packet was demoted, false otherwise.
*
* Essentially the opposite of promote_packet, except that it will also remove
* an ATM header as well as Linux SLL.
*
*/
bool demote_packet(libtrace_packet_t *packet);
/** Returns a pointer to the header following a Linux SLL header.
*
* @param link A pointer to the Linux SLL header to be skipped
* @param[out] type The ethertype of the next header
* @param[in,out] remaining Updated with the number of captured bytes
* remaining
* @return A pointer to the header following the Linux SLL header, or NULL if
* no subsequent header is present.
*
* Remaining must point to the number of bytes captured from the Linux SLL
* header and beyond. It will be decremented by the number of bytes skipped
* to find the payload.
*
* If the Linux SLL header is complete but there are zero bytes of payload
* after the end of the header, a pointer to where the payload would be is
* returned and remaining will be set to zero. If the Linux SLL header is
* incomplete (truncated), then NULL is returned and remaining will be set to
* 0. Therefore, it is very important to check the value of remaining after
* calling this function.
*/
void *trace_get_payload_from_linux_sll(const void *link, uint16_t *type,
uint32_t *remaining);
/** Returns a pointer to the header following an ATM header.
*
* @param link A pointer to the ATM header to be skipped
* @param[out] type The ethertype of the next header
* @param[in,out] remaining Updated with the number of captured bytes
* remaining
* @return A pointer to the header following the ATM header, or NULL if
* no subsequent header is present.
*
* Remaining must point to the number of bytes captured from the ATM header
* and beyond. It will be decremented by the number of bytes skipped to find
* the payload.
*
* If the ATM header is complete but there are zero bytes of payload
* after the end of the header, a pointer to where the payload would be is
* returned and remaining will be set to zero. If the ATM header is
* incomplete (truncated), then NULL is returned and remaining will be set to
* 0. Therefore, it is very important to check the value of remaining after
* calling this function.
*/
DLLEXPORT void *trace_get_payload_from_atm(void *link, uint8_t *type,
uint32_t *remaining);
/** Byteswaps a 64-bit value.
*
* @param num The value to be byteswapped.
* @return The byteswapped 64-bit number
*
*/
uint64_t byteswap64(uint64_t num);
/** Byteswaps a 32-bit value.
*
* @param num The value to be byteswapped.
* @return The byteswapped 32-bit number
*
*/
uint32_t byteswap32(uint32_t num);
/** Byteswaps a 16-bit value.
*
* @param num The value to be byteswapped.
* @return The byteswapped 16-bit number
*
*/
uint16_t byteswap16(uint16_t num);
/** @name Byte ordering
* Macros that define how to convert a value into a particular byte-order
*
* @{
*/
#if BYTE_ORDER == BIG_ENDIAN
#define bswap_host_to_be64(num) ((uint64_t)(num))
#define bswap_host_to_le64(num) byteswap64(num)
#define bswap_host_to_be32(num) ((uint32_t)(num))
#define bswap_host_to_le32(num) byteswap32(num)
#define bswap_host_to_be16(num) ((uint16_t)(num))
#define bswap_host_to_le16(num) byteswap16(num)
#define bswap_be_to_host64(num) ((uint64_t)(num))
#define bswap_le_to_host64(num) byteswap64(num)
#define bswap_be_to_host32(num) ((uint32_t)(num))
#define bswap_le_to_host32(num) byteswap32(num)
#define bswap_be_to_host16(num) ((uint16_t)(num))
#define bswap_le_to_host16(num) byteswap16(num)
/* We use ntoh*() here, because the compiler may
* attempt to optimise it
*/
#elif BYTE_ORDER == LITTLE_ENDIAN
#define bswap_host_to_be64(num) (byteswap64(num))
#define bswap_host_to_le64(num) ((uint64_t)(num))
#define bswap_host_to_be32(num) (htonl(num))
#define bswap_host_to_le32(num) ((uint32_t)(num))
#define bswap_host_to_be16(num) (htons(num))
#define bswap_host_to_le16(num) ((uint16_t)(num))
#define bswap_be_to_host64(num) (byteswap64(num))
#define bswap_le_to_host64(num) ((uint64_t)(num))
#define bswap_be_to_host32(num) (ntohl(num))
#define bswap_le_to_host32(num) ((uint32_t)(num))
#define bswap_be_to_host16(num) (ntohs(num))
#define bswap_le_to_host16(num) ((uint16_t)(num))
#else
#error "Unknown byte order"
#endif
/** @} */
#ifdef HAVE_BPF
/* A type encapsulating a bpf filter
* This type covers the compiled bpf filter, as well as the original filter
* string
*
*/
/** Internal representation of a BPF filter */
struct libtrace_filter_t {
struct bpf_program filter; /**< The BPF program itself */
char * filterstring; /**< The filter string */
int flag; /**< Indicates if the filter is valid */
struct bpf_jit_t *jitfilter;
};
#else
/** BPF not supported by this system, but we still need to define a structure
* for the filter */
struct libtrace_filter_t {};
#endif
/** Local definition of a PCAP header */
typedef struct libtrace_pcapfile_pkt_hdr_t {
uint32_t ts_sec; /* Seconds portion of the timestamp */
uint32_t ts_usec; /* Microseconds portion of the timestamp */
uint32_t caplen; /* Capture length of the packet */
uint32_t wirelen; /* The wire length of the packet */
} libtrace_pcapfile_pkt_hdr_t;
#ifdef HAVE_DAG
/** Constructor for the DAG format module */
void dag_constructor(void);
#endif
/** Constructor for the ERF format module */
void erf_constructor(void);
/** Constructor for the TSH format module */
void tsh_constructor(void);
/** Constructor for the Legacy DAG format module */
void legacy_constructor(void);
/** Constructor for the Linux Native format module */
void linuxnative_constructor(void);
/** Constructor for the PCAP format module */
void pcap_constructor(void);
/** Constructor for the PCAP File format module */
void pcapfile_constructor(void);
/** Constructor for the RT format module */
void rt_constructor(void);
/** Constructor for the DUCK format module */
void duck_constructor(void);
/** Constructor for the ATM Header format module */
void atmhdr_constructor(void);
#ifdef HAVE_BPF
/** Constructor for the BPF format module */
void bpf_constructor(void);
#endif
/** Extracts the RadioTap flags from a wireless link header
*
* @param link A pointer to the wireless link header
* @param linktype The link type of the wireless header
* @param[out] flags Space to store the extracted flags
* @return True if libtrace was able to extract flags from the link header,
* false otherwise.
*
* This function has been left internal because it is not portable across
* drivers.
*/
bool trace_get_wireless_flags(void *link, libtrace_linktype_t linktype, uint8_t *flags);
#define TRACE_RADIOTAP_F_FCS 0x10
#ifdef __cplusplus
}
#endif
#endif /* LIBTRACE_INT_H */
|