📄 fromipsumdump.hh
字号:
// -*- mode: c++; c-basic-offset: 4 -*-#ifndef CLICK_FROMIPSUMDUMP_HH#define CLICK_FROMIPSUMDUMP_HH#include <click/element.hh>#include <click/task.hh>#include <click/notifier.hh>#include <click/ipflowid.hh>#include "elements/userlevel/fromfile.hh"#include "ipsumdumpinfo.hh"CLICK_DECLS/*=cFromIPSummaryDump(FILENAME [, I<KEYWORDS>])=s analysisreads packets from an IP summary dump file=dReads IP packet descriptors from a file produced by ToIPSummaryDump, thencreates packets containing info from the descriptors and pushes them out theoutput. Optionally stops the driver when there are no more packets.The file may be compressed with gzip(1) or bzip2(1); FromIPSummaryDump willrun zcat(1) or bzcat(1) to uncompress it.FromIPSummaryDump reads from the file named FILENAME unless FILENAME is asingle dash 'C<->', in which case it reads from the standard input. It willnot uncompress the standard input, however.Keyword arguments are:=over 8=item STOPBoolean. If true, then FromIPSummaryDump will ask the router to stop when itis done reading. Default is false.=item ACTIVEBoolean. If false, then FromIPSummaryDump will not emit packets (until the'C<active>' handler is written). Default is true.=item ZEROBoolean. Determines the contents of packet data not set by the dump. If trueE<lparen>the default), this data is zero. If false, it is random garbage.=item CHECKSUMBoolean. If true, then output packets' IP, TCP, and UDP checksums are set. Iffalse (the default), the checksum fields contain random garbage.=item PROTOByte (0-255). Sets the IP protocol used for output packets when the dumpdoesn't specify a protocol. Default is 6 (TCP).=item MULTIPACKETBoolean. If true, then FromIPSummaryDump will emit multiple packets for eachline---specifically, it will emit as many packets as the packet count fieldspecifies. Default is false.=item SAMPLEUnsigned real number between 0 and 1. FromIPSummaryDump will output eachpacket with probability SAMPLE. Default is 1. FromIPSummaryDump usesfixed-point arithmetic, so the actual sampling probability may differsubstantially from the requested sampling probability. Use theC<sampling_prob> handler to find out the actual probability. If MULTIPACKET istrue, then the sampling probability applies separately to the multiple packetsgenerated per record.=item CONTENTSString, containing a space-separated list of content names (seeToIPSummaryDump for the possibilities). Defines the default contents of thedump.=item FLOWIDString, containing a space-separated flow ID (source address, source port,destination address, destination port, and, optionally, protocol). Defines theIP addresses and ports used by default. Any flow information in the input filewill override this setting.=backOnly available in user-level processes.=nPackets generated by FromIPSummaryDump always have IP version 4 and a correctIP header length. The rest of the packet data is zero or garbage, unless setby the dump. Generated packets will usually have short lengths, but the extraheader length annotations are set correctly.FromIPSummaryDump is a notifier signal, active when the element is active andthe dump contains more packets.=h sampling_prob read-onlyReturns the sampling probability (see the SAMPLE keyword argument).=h active read/writeValue is a Boolean.=h encap read-onlyReturns 'IP'. Useful for ToDump's USE_ENCAP_FROM option.=h filesize read-onlyReturns the length of the FromIPSummaryDump file, in bytes, or "-" if thatlength cannot be determined.=h filepos read-onlyReturns FromIPSummaryDump's position in the file, in bytes.=h stop write-onlyWhen written, sets 'active' to false and stops the driver.=aToIPSummaryDump */class FromIPSummaryDump : public Element, public IPSummaryDumpInfo { public: FromIPSummaryDump(); ~FromIPSummaryDump(); const char *class_name() const { return "FromIPSummaryDump"; } const char *processing() const { return AGNOSTIC; } void *cast(const char *); int configure(Vector<String> &, ErrorHandler *); int initialize(ErrorHandler *); void cleanup(CleanupStage); void add_handlers(); bool run_task(); Packet *pull(int); enum { DO_IPOPT_PADDING = 1, DO_IPOPT_ROUTE = 2, DO_IPOPT_TS = 4, DO_IPOPT_UNKNOWN = 32, DO_IPOPT_ALL = 0xFFFFFFFFU, DO_IPOPT_ALL_NOPAD = 0xFFFFFFFEU }; static const unsigned char *parse_ip_opt_ascii(const unsigned char *begin, const unsigned char *end, String *, int); enum { DO_TCPOPT_PADDING = 1, DO_TCPOPT_MSS = 2, DO_TCPOPT_WSCALE = 4, DO_TCPOPT_SACK = 8, DO_TCPOPT_TIMESTAMP = 16, DO_TCPOPT_UNKNOWN = 32, DO_TCPOPT_ALL = 0xFFFFFFFFU, DO_TCPOPT_ALL_NOPAD = 0xFFFFFFFEU, DO_TCPOPT_NTALL = 0xFFFFFFEEU }; static const unsigned char *parse_tcp_opt_ascii(const unsigned char *begin, const unsigned char *end, String *, int); private: enum { SAMPLING_SHIFT = 28 }; FromFile _ff; Vector<int> _contents; uint16_t _default_proto; uint32_t _sampling_prob; IPFlowID _flowid; uint32_t _aggregate; bool _stop : 1; bool _format_complaint : 1; bool _zero : 1; bool _checksum : 1; bool _active : 1; bool _multipacket : 1; bool _have_flowid : 1; bool _use_flowid : 1; bool _have_aggregate : 1; bool _use_aggregate : 1; bool _binary : 1; Packet *_work_packet; uint32_t _multipacket_length; Timestamp _multipacket_timestamp_delta; Timestamp _multipacket_end_timestamp; Task _task; ActiveNotifier _notifier; int _minor_version; IPFlowID _given_flowid; int read_binary(String &, ErrorHandler *); void bang_data(const String &, ErrorHandler *); void bang_flowid(const String &, click_ip *, ErrorHandler *); void bang_aggregate(const String &, ErrorHandler *); void bang_binary(const String &, ErrorHandler *); void check_defaults(); Packet *read_packet(ErrorHandler *); Packet *handle_multipacket(Packet *); static String read_handler(Element *, void *); static int write_handler(const String &, Element *, void *, ErrorHandler *); };CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -