A Discrete-Event Network Simulator
API
ipcs-classifier.cc
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2009 INRIA, UDcast
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
19 *
20 */
21
22#include "ipcs-classifier.h"
23#include <stdint.h>
24#include "ns3/log.h"
25#include "service-flow.h"
26#include "ns3/packet.h"
27#include "ns3/ipv4-header.h"
28#include "ns3/udp-header.h"
29#include "ns3/tcp-header.h"
30#include "ns3/llc-snap-header.h"
31#include "ns3/udp-l4-protocol.h"
32#include "ns3/tcp-l4-protocol.h"
33
34namespace ns3 {
35
36NS_LOG_COMPONENT_DEFINE ("IpcsClassifier");
37
38NS_OBJECT_ENSURE_REGISTERED (IpcsClassifier);
39
41{
42 static TypeId tid = TypeId ("ns3::IpcsClassifier")
43 .SetParent<Object> ()
44 .SetGroupName("Wimax");
45 return tid;
46}
47
49{
50}
51
53{
54}
55
59{
60 Ptr<Packet> C_Packet = packet->Copy ();
61
62 LlcSnapHeader llc;
63 C_Packet->RemoveHeader (llc);
64
65 Ipv4Header ipv4Header;
66 C_Packet->RemoveHeader (ipv4Header);
67 Ipv4Address source_address = ipv4Header.GetSource ();
68 Ipv4Address dest_address = ipv4Header.GetDestination ();
69 uint8_t protocol = ipv4Header.GetProtocol ();
70
71 uint16_t sourcePort = 0;
72 uint16_t destPort = 0;
73 if (protocol == UdpL4Protocol::PROT_NUMBER)
74 {
75 UdpHeader udpHeader;
76 C_Packet->RemoveHeader (udpHeader);
77 sourcePort = udpHeader.GetSourcePort ();
78 destPort = udpHeader.GetDestinationPort ();
79 }
80 else if (protocol == TcpL4Protocol::PROT_NUMBER)
81 {
82 TcpHeader tcpHeader;
83 C_Packet->RemoveHeader (tcpHeader);
84 sourcePort = tcpHeader.GetSourcePort ();
85 destPort = tcpHeader.GetDestinationPort ();
86 }
87 else
88 {
89 NS_LOG_INFO ("\t\t\tUnknown protocol: " << protocol);
90 return 0;
91 }
92
93 NS_LOG_INFO ("Classifing packet: src_addr=" << source_address << " dst_addr="
94 << dest_address << " src_port=" << sourcePort << " dst_port="
95 << destPort << " proto=" << (uint16_t) protocol);
96 return (sfm->DoClassify (source_address,
97 dest_address,
98 sourcePort,
99 destPort,
100 protocol,dir));
101}
102
103}
static TypeId GetTypeId(void)
Get the type ID.
ServiceFlow * Classify(Ptr< const Packet > packet, Ptr< ServiceFlowManager > sfm, ServiceFlow::Direction dir)
classify a packet in a service flow
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:41
Packet header for IPv4.
Definition: ipv4-header.h:34
Ipv4Address GetSource(void) const
Definition: ipv4-header.cc:291
Ipv4Address GetDestination(void) const
Definition: ipv4-header.cc:304
uint8_t GetProtocol(void) const
Definition: ipv4-header.cc:272
Header for the LLC/SNAP encapsulation.
A base class which provides memory management and object aggregation.
Definition: object.h:88
uint32_t RemoveHeader(Header &header)
Deserialize and remove the header from the internal buffer.
Definition: packet.cc:280
Ptr< Packet > Copy(void) const
performs a COW copy of the packet.
Definition: packet.cc:121
This class implements service flows as described by the IEEE-802.16 standard.
Definition: service-flow.h:40
Direction
Direction enumeration.
Definition: service-flow.h:44
Header for the Transmission Control Protocol.
Definition: tcp-header.h:45
uint16_t GetDestinationPort() const
Get the destination port.
Definition: tcp-header.cc:137
uint16_t GetSourcePort() const
Get the source port.
Definition: tcp-header.cc:131
static const uint8_t PROT_NUMBER
protocol number (0x6)
a unique identifier for an interface.
Definition: type-id.h:59
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:922
Packet header for UDP packets.
Definition: udp-header.h:40
uint16_t GetSourcePort(void) const
Definition: udp-header.cc:65
uint16_t GetDestinationPort(void) const
Definition: udp-header.cc:70
static const uint8_t PROT_NUMBER
protocol number (0x11)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:281
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:45
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::string dir