summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opienet/opcap.cpp42
-rw-r--r--libopie2/opienet/opcap.h2
2 files changed, 35 insertions, 9 deletions
diff --git a/libopie2/opienet/opcap.cpp b/libopie2/opienet/opcap.cpp
index 913d42e..6ddd457 100644
--- a/libopie2/opienet/opcap.cpp
+++ b/libopie2/opienet/opcap.cpp
@@ -67,59 +67,85 @@ OPacket::OPacket( packetheaderstruct header, const unsigned char* data, QObject*
67 67
68OPacket::~OPacket() 68OPacket::~OPacket()
69{ 69{
70} 70}
71 71
72 72
73OPacketCapturer* OPacket::packetCapturer() const 73OPacketCapturer* OPacket::packetCapturer() const
74{ 74{
75 return parent()->inherits( "OPacketCapturer" ) ? static_cast<OPacketCapturer*>( parent() ) : 0; 75 return parent()->inherits( "OPacketCapturer" ) ? static_cast<OPacketCapturer*>( parent() ) : 0;
76} 76}
77 77
78 78
79timevalstruct OPacket::timeval() const 79timevalstruct OPacket::timeval() const
80{ 80{
81 return _hdr.ts; 81 return _hdr.ts;
82} 82}
83 83
84 84
85int OPacket::caplen() const 85int OPacket::caplen() const
86{ 86{
87 return _hdr.caplen; 87 return _hdr.caplen;
88} 88}
89 89
90 90
91void OPacket::dump() const 91QString OPacket::dump( int bpl ) const
92{ 92{
93 printf( "OPacket::dump()\n" ); 93 static int index = 0;
94 printf( "----------------\n" ); 94 index++;
95 int len = _hdr.caplen;
96 QString str;
97 str.sprintf( "\n<----- Packet #%04d Len = 0x%X (%d) ----->\n\n", index, len, len );
98 str.append( "0000: " );
99 QString tmp;
100 QString bytes;
101 QString chars;
102
103 for ( int i = 0; i < len; ++i )
104 {
105 tmp.sprintf( "%02X ", _data[i] ); bytes.append( tmp );
106 if ( (_data[i] > 31) && (_data[i]<128) ) chars.append( _data[i] );
107 else chars.append( '.' );
108
109 if ( !((i+1) % bpl) )
110 {
111 str.append( bytes );
112 str.append( ' ' );
113 str.append( chars );
114 str.append( '\n' );
115 tmp.sprintf( "%04X: ", i+1 ); str.append( tmp );
116 bytes = "";
117 chars = "";
118 }
95 119
96 for ( int i = 0; i < _hdr.caplen; ++i ) 120 }
121 if ( (len % bpl) )
97 { 122 {
98 printf( "%02x ", _data[i] ); 123 str.append( bytes.leftJustify( 1 + 3*bpl ) );
99 if ( !((i+1) % 32) ) printf( "\n" ); 124 str.append( chars );
100 } 125 }
101 printf( "\n\n" ); 126 str.append( '\n' );
127 return str;
102} 128}
103 129
104 130
105 131
106int OPacket::len() const 132int OPacket::len() const
107{ 133{
108 return _hdr.len; 134 return _hdr.len;
109} 135}
110 136
111/*====================================================================================== 137/*======================================================================================
112 * OEthernetPacket 138 * OEthernetPacket
113 *======================================================================================*/ 139 *======================================================================================*/
114 140
115OEthernetPacket::OEthernetPacket( const unsigned char* end, const struct ether_header* data, QObject* parent ) 141OEthernetPacket::OEthernetPacket( const unsigned char* end, const struct ether_header* data, QObject* parent )
116 :QObject( parent, "Ethernet" ), _ether( data ) 142 :QObject( parent, "Ethernet" ), _ether( data )
117 143
118{ 144{
119 145
120 qDebug( "Source = %s", (const char*) sourceAddress().toString() ); 146 qDebug( "Source = %s", (const char*) sourceAddress().toString() );
121 qDebug( "Destination = %s", (const char*) destinationAddress().toString() ); 147 qDebug( "Destination = %s", (const char*) destinationAddress().toString() );
122 148
123 if ( sourceAddress() == OMacAddress::broadcast ) 149 if ( sourceAddress() == OMacAddress::broadcast )
124 qDebug( "Source is broadcast address" ); 150 qDebug( "Source is broadcast address" );
125 if ( destinationAddress() == OMacAddress::broadcast ) 151 if ( destinationAddress() == OMacAddress::broadcast )
diff --git a/libopie2/opienet/opcap.h b/libopie2/opienet/opcap.h
index 0b06572..04d22ff 100644
--- a/libopie2/opienet/opcap.h
+++ b/libopie2/opienet/opcap.h
@@ -59,49 +59,49 @@ typedef struct timeval timevalstruct;
59typedef struct pcap_pkthdr packetheaderstruct; 59typedef struct pcap_pkthdr packetheaderstruct;
60 60
61/* FORWARDS */ 61/* FORWARDS */
62class OPacketCapturer; 62class OPacketCapturer;
63class QSocketNotifier; 63class QSocketNotifier;
64 64
65/*====================================================================================== 65/*======================================================================================
66 * OPacket - A frame on the wire 66 * OPacket - A frame on the wire
67 *======================================================================================*/ 67 *======================================================================================*/
68 68
69class OPacket : public QObject 69class OPacket : public QObject
70{ 70{
71 Q_OBJECT 71 Q_OBJECT
72 72
73 public: 73 public:
74 OPacket( packetheaderstruct, const unsigned char*, QObject* parent ); 74 OPacket( packetheaderstruct, const unsigned char*, QObject* parent );
75 virtual ~OPacket(); 75 virtual ~OPacket();
76 76
77 timevalstruct timeval() const; 77 timevalstruct timeval() const;
78 78
79 OPacketCapturer* packetCapturer() const; 79 OPacketCapturer* packetCapturer() const;
80 80
81 int caplen() const; 81 int caplen() const;
82 int len() const; 82 int len() const;
83 void dump() const; 83 QString dump( int = 32 ) const;
84 84
85 private: 85 private:
86 const packetheaderstruct _hdr; // pcap packet header 86 const packetheaderstruct _hdr; // pcap packet header
87 const unsigned char* _data; // pcap packet data 87 const unsigned char* _data; // pcap packet data
88 const unsigned char* _end; // end of pcap packet data 88 const unsigned char* _end; // end of pcap packet data
89}; 89};
90 90
91/*====================================================================================== 91/*======================================================================================
92 * OEthernetPacket - DLT_EN10MB frame 92 * OEthernetPacket - DLT_EN10MB frame
93 *======================================================================================*/ 93 *======================================================================================*/
94 94
95class OEthernetPacket : public QObject 95class OEthernetPacket : public QObject
96{ 96{
97 Q_OBJECT 97 Q_OBJECT
98 98
99 public: 99 public:
100 OEthernetPacket( const unsigned char*, const struct ether_header*, QObject* parent = 0 ); 100 OEthernetPacket( const unsigned char*, const struct ether_header*, QObject* parent = 0 );
101 virtual ~OEthernetPacket(); 101 virtual ~OEthernetPacket();
102 102
103 OMacAddress sourceAddress() const; 103 OMacAddress sourceAddress() const;
104 OMacAddress destinationAddress() const; 104 OMacAddress destinationAddress() const;
105 int type() const; 105 int type() const;
106 106
107 private: 107 private: