author | mickeyl <mickeyl> | 2003-05-08 08:16:14 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-05-08 08:16:14 (UTC) |
commit | eb1dba5550e63ab7b915d55048175e2992ab5447 (patch) (unidiff) | |
tree | 52b37945352c56effd58cacac071cba4f410bef2 /libopie2/opienet | |
parent | 0950f27fa7136eb59f7e259cb4477ca10c89640d (diff) | |
download | opie-eb1dba5550e63ab7b915d55048175e2992ab5447.zip opie-eb1dba5550e63ab7b915d55048175e2992ab5447.tar.gz opie-eb1dba5550e63ab7b915d55048175e2992ab5447.tar.bz2 |
decouple dump files from live capture to shift control over 'what' is dumped to applications
-rw-r--r-- | libopie2/opienet/opcap.cpp | 42 | ||||
-rw-r--r-- | libopie2/opienet/opcap.h | 21 |
2 files changed, 48 insertions, 15 deletions
diff --git a/libopie2/opienet/opcap.cpp b/libopie2/opienet/opcap.cpp index bef9182..1de7124 100644 --- a/libopie2/opienet/opcap.cpp +++ b/libopie2/opienet/opcap.cpp | |||
@@ -864,6 +864,17 @@ bool OPacketCapturer::blocking() const | |||
864 | } | 864 | } |
865 | 865 | ||
866 | 866 | ||
867 | void OPacketCapturer::closeDumpFile() | ||
868 | { | ||
869 | if ( _pcd ) | ||
870 | { | ||
871 | pcap_dump_close( _pcd ); | ||
872 | _pcd = 0; | ||
873 | } | ||
874 | pcap_close( _pch ); | ||
875 | } | ||
876 | |||
877 | |||
867 | void OPacketCapturer::close() | 878 | void OPacketCapturer::close() |
868 | { | 879 | { |
869 | if ( _open ) | 880 | if ( _open ) |
@@ -873,13 +884,8 @@ void OPacketCapturer::close() | |||
873 | _sn->disconnect( SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) ); | 884 | _sn->disconnect( SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) ); |
874 | delete _sn; | 885 | delete _sn; |
875 | } | 886 | } |
876 | if ( _pcd ) | 887 | closeDumpFile(); |
877 | { | 888 | _open = false; |
878 | pcap_dump_close( _pcd ); | ||
879 | _pcd = 0; | ||
880 | } | ||
881 | pcap_close( _pch ); | ||
882 | _open = false; | ||
883 | } | 889 | } |
884 | 890 | ||
885 | qDebug( "OPacketCapturer::close() --- dumping capturing statistics..." ); | 891 | qDebug( "OPacketCapturer::close() --- dumping capturing statistics..." ); |
@@ -897,6 +903,17 @@ int OPacketCapturer::dataLink() const | |||
897 | } | 903 | } |
898 | 904 | ||
899 | 905 | ||
906 | void OPacketCapturer::dump( OPacket* p ) | ||
907 | { | ||
908 | if ( !_pcd ) | ||
909 | { | ||
910 | qWarning( "OPacketCapturer::dump() - cannot dump without open capture file!" ); | ||
911 | return; | ||
912 | } | ||
913 | pcap_dump( (u_char*) _pcd, &p->_hdr, p->_data ); | ||
914 | } | ||
915 | |||
916 | |||
900 | int OPacketCapturer::fileno() const | 917 | int OPacketCapturer::fileno() const |
901 | { | 918 | { |
902 | if ( _open ) | 919 | if ( _open ) |
@@ -915,8 +932,6 @@ OPacket* OPacketCapturer::next() | |||
915 | qDebug( "==> OPacketCapturer::next()" ); | 932 | qDebug( "==> OPacketCapturer::next()" ); |
916 | const unsigned char* pdata = pcap_next( _pch, &header ); | 933 | const unsigned char* pdata = pcap_next( _pch, &header ); |
917 | qDebug( "<== OPacketCapturer::next()" ); | 934 | qDebug( "<== OPacketCapturer::next()" ); |
918 | if ( _pcd ) | ||
919 | pcap_dump( (u_char*) _pcd, &header, pdata ); | ||
920 | 935 | ||
921 | if ( pdata && header.len ) | 936 | if ( pdata && header.len ) |
922 | { | 937 | { |
@@ -938,7 +953,7 @@ OPacket* OPacketCapturer::next() | |||
938 | } | 953 | } |
939 | 954 | ||
940 | 955 | ||
941 | bool OPacketCapturer::open( const QString& name, const QString& filename ) | 956 | bool OPacketCapturer::open( const QString& name ) |
942 | { | 957 | { |
943 | if ( _open ) | 958 | if ( _open ) |
944 | { | 959 | { |
@@ -975,7 +990,12 @@ bool OPacketCapturer::open( const QString& name, const QString& filename ) | |||
975 | connect( _sn, SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) ); | 990 | connect( _sn, SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) ); |
976 | } | 991 | } |
977 | 992 | ||
978 | // if requested, open a dump | 993 | return true; |
994 | } | ||
995 | |||
996 | |||
997 | bool OPacketCapturer::openDumpFile( const QString& filename ) | ||
998 | { | ||
979 | pcap_dumper_t* dump = pcap_dump_open( _pch, const_cast<char*>( (const char*) filename ) ); | 999 | pcap_dumper_t* dump = pcap_dump_open( _pch, const_cast<char*>( (const char*) filename ) ); |
980 | if ( !dump ) | 1000 | if ( !dump ) |
981 | { | 1001 | { |
diff --git a/libopie2/opienet/opcap.h b/libopie2/opienet/opcap.h index ad5b07c..9119972 100644 --- a/libopie2/opienet/opcap.h +++ b/libopie2/opienet/opcap.h | |||
@@ -115,6 +115,8 @@ class OPacket : public QObject | |||
115 | { | 115 | { |
116 | Q_OBJECT | 116 | Q_OBJECT |
117 | 117 | ||
118 | friend class OPacketCapturer; | ||
119 | |||
118 | public: | 120 | public: |
119 | OPacket( int datalink, packetheaderstruct, const unsigned char*, QObject* parent ); | 121 | OPacket( int datalink, packetheaderstruct, const unsigned char*, QObject* parent ); |
120 | virtual ~OPacket(); | 122 | virtual ~OPacket(); |
@@ -524,7 +526,7 @@ class OPacketCapturer : public QObject | |||
524 | */ | 526 | */ |
525 | ~OPacketCapturer(); | 527 | ~OPacketCapturer(); |
526 | /** | 528 | /** |
527 | * Setting the packet capturer to use blocking IO calls can be useful when | 529 | * Set the packet capturer to use blocking or non-blocking IO. This can be useful when |
528 | * not using the socket notifier, e.g. without an application object. | 530 | * not using the socket notifier, e.g. without an application object. |
529 | */ | 531 | */ |
530 | void setBlocking( bool ); | 532 | void setBlocking( bool ); |
@@ -533,15 +535,23 @@ class OPacketCapturer : public QObject | |||
533 | */ | 535 | */ |
534 | bool blocking() const; | 536 | bool blocking() const; |
535 | /** | 537 | /** |
536 | * Closes the packet capturer. This is automatically done in the destructor. | 538 | * Close the packet capturer. This is automatically done in the destructor. |
537 | */ | 539 | */ |
538 | void close(); | 540 | void close(); |
539 | /** | 541 | /** |
542 | * Close the output capture file. | ||
543 | */ | ||
544 | void closeDumpFile(); | ||
545 | /** | ||
540 | * @returns the data link type. | 546 | * @returns the data link type. |
541 | * @see <pcap.h> for possible values. | 547 | * @see <pcap.h> for possible values. |
542 | */ | 548 | */ |
543 | int dataLink() const; | 549 | int dataLink() const; |
544 | /** | 550 | /** |
551 | * Dump a packet to the output capture file. | ||
552 | */ | ||
553 | void dump( OPacket* ); | ||
554 | /** | ||
545 | * @returns the file descriptor of the packet capturer. This is only useful, if | 555 | * @returns the file descriptor of the packet capturer. This is only useful, if |
546 | * not using the socket notifier, e.g. without an application object. | 556 | * not using the socket notifier, e.g. without an application object. |
547 | */ | 557 | */ |
@@ -553,14 +563,17 @@ class OPacketCapturer : public QObject | |||
553 | OPacket* next(); | 563 | OPacket* next(); |
554 | /** | 564 | /** |
555 | * Open the packet capturer to capture packets in live-mode from @a interface. | 565 | * Open the packet capturer to capture packets in live-mode from @a interface. |
556 | * If a @a filename is given, all captured packets are output to a tcpdump-compatible capture file. | ||
557 | */ | 566 | */ |
558 | bool open( const QString& interface, const QString& filename = QString::null ); | 567 | bool open( const QString& interface ); |
559 | /** | 568 | /** |
560 | * Open the packet capturer to capture packets in offline-mode from @a file. | 569 | * Open the packet capturer to capture packets in offline-mode from @a file. |
561 | */ | 570 | */ |
562 | bool open( const QFile& file ); | 571 | bool open( const QFile& file ); |
563 | /** | 572 | /** |
573 | * Open a prerecorded tcpdump compatible capture file for use with @ref dump() | ||
574 | */ | ||
575 | bool openDumpFile( const QString& filename ); | ||
576 | /** | ||
564 | * @returns true if the packet capturer is open | 577 | * @returns true if the packet capturer is open |
565 | */ | 578 | */ |
566 | bool isOpen() const; | 579 | bool isOpen() const; |