File: TCPPacket.pm

package info (click to toggle)
nwatch 0.03-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 204 kB
  • ctags: 120
  • sloc: perl: 1,202; makefile: 52
file content (137 lines) | stat: -rw-r--r-- 3,514 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/perl
#
# $Id: TCPPacket.pm,v 1.4 2001/10/06 22:19:14 levine Exp $
#
# Copyright (C) 2001  James D. Levine (jdl@vinecorp.com)
#
#
#   This program 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.
# 
#   This program 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 this program; if not, write to the Free Software
#   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 
#   02111-1307, USA.
#
####################################################################

use NWatch::Packet;
use strict;



####################################################################
#
# tcp_packet
#
# Decodes TCP fields
#
####################################################################




package NWatch::tcp_packet;

@NWatch::tcp_packet::ISA = qw( NWatch::packet );

sub protocol_name { "tcp"; }

sub new
{
    my( $type, $data ) = @_;

    # init from base class
    my $self = NWatch::packet::new( $type, $data );


    # unpack fields

    my( $src_port, $dest_port, $seq_number, $ack_number, $offset_control,
	$window, $checksum, $urg_ptr );

    if( length( $data ) > 8 )
    {
	( $src_port, $dest_port, $seq_number, $ack_number, $offset_control,
	    $window, $checksum, $urg_ptr )
	    = unpack "nnNNnnnn", $data;
    }
    elsif( length( $data ) == 8 ) # ICMP payload 
    {
	( $src_port, $dest_port, $seq_number )
	    = unpack "nnN", $data;
    }

    my $data_offset  = $offset_control >> 12;
    my $reserved = ( $offset_control >> 6 ) & 63;
    my $control_bits = $offset_control & 63;
    my $urg = ( $control_bits & 32 ) > 0;
    my $ack = ( $control_bits & 16 ) > 0;
    my $psh = ( $control_bits & 8 ) > 0;
    my $rst = ( $control_bits & 4 ) > 0;
    my $syn = ( $control_bits & 2 ) > 0;
    my $fin = ( $control_bits & 1 ) > 0;


    $self->set( "source_port",       $src_port );
    $self->set( "destination_port",  $dest_port );
    $self->set( "seq_number",        $seq_number );
    $self->set( "ack_number",        $ack_number );

    $self->set( "data_offset",       $data_offset );
    $self->set( "reserved",          $reserved );
    $self->set( "control_bits",      $control_bits );
    $self->set( "urg",       $urg );
    $self->set( "ack",       $ack );
    $self->set( "psh",       $psh );
    $self->set( "rst",       $rst );
    $self->set( "syn",       $syn );
    $self->set( "fin",       $fin );

    $self->set( "window",            $window );
    $self->set( "checksum",          $checksum );
    $self->set( "urg_ptr",           $urg_ptr );

    my $begin = $data_offset * 4;
    my $payload = substr( $data, $begin, length( $data ) - $begin );

    # for any known protocols, stack a packet instance on top
    # check proto ID
    # if known, set next to a new instance of proto with payload

#    print "tcp::source port $src_port    dest port $dest_port \n";

#    print "( flags " .
#	( $urg ? "urg " : "" ) .
#	( $ack ? "ack " : "" ) .
#	( $psh ? "psh " : "" ) .
#	( $rst ? "rst " : "" ) .
#	( $syn ? "syn " : "" ) .
#	( $fin ? "fin " : "" ) .
#	    " ) \n";
	    
    $self;
}

1;