src/internet-node/arp-ipv4-interface.cc
author Craig Dowell <craigdo@ee.washington.edu>
Sun, 12 Aug 2007 22:41:24 -0700
changeset 1430 25fa26a6533e
parent 1229 e4cfe4094c10
child 1432 3aef7d7a71c2
permissions -rw-r--r--
many debug prints

/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2007 INRIA
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation;
 *
 * 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
 *
 * Authors: 
 *  Mathieu Lacage <mathieu.lacage@sophia.inria.fr>,
 */

#include "ns3/packet.h"
#include "ns3/debug.h"
#include "ns3/composite-trace-resolver.h"
#include "ns3/node.h"
#include "ns3/net-device.h"
#include "ns3/address.h"

#include "arp-ipv4-interface.h"
#include "ipv4-l3-protocol.h"
#include "arp-l3-protocol.h"

NS_DEBUG_COMPONENT_DEFINE ("ArpIpv4Interface");

namespace ns3 {

ArpIpv4Interface::ArpIpv4Interface (Ptr<Node> node, Ptr<NetDevice> device)
  : Ipv4Interface (device),
    m_node (node)
{
  NS_DEBUG ("ArpIpv4Interface::ArpIpv4Interface ()");
}

ArpIpv4Interface::~ArpIpv4Interface ()
{
  NS_DEBUG ("ArpIpv4Interface::~ArpIpv4Interface ()");
}

TraceResolver *
ArpIpv4Interface::DoCreateTraceResolver (TraceContext const &context)
{
  NS_DEBUG ("ArpIpv4Interface::DoCreateTraceResolver ()");
  CompositeTraceResolver *resolver = new CompositeTraceResolver (context);
  if (GetDevice () != 0)
    {
      resolver->Add ("netdevice",
                     MakeCallback (&NetDevice::CreateTraceResolver, PeekPointer (GetDevice ())));
    }
  
  return resolver;
}

void 
ArpIpv4Interface::SendTo (Packet p, Ipv4Address dest)
{
  NS_DEBUG ("ArpIpv4Interface::SendTo (" << &p << ", " << dest << ")");

  NS_ASSERT (GetDevice () != 0);
  if (GetDevice ()->NeedsArp ())
    {
      NS_DEBUG ("ArpIpv4Interface::SendTo (): Needs ARP");
      Ptr<ArpL3Protocol> arp = 
        m_node->QueryInterface<ArpL3Protocol> (ArpL3Protocol::iid);
      Address hardwareDestination;
      bool found;

      if (dest.IsBroadcast ())
        {
          NS_DEBUG ("ArpIpv4Interface::SendTo (): IsBroadcast");
          hardwareDestination = GetDevice ()->GetBroadcast ();
          found = true;
        }
      else
        {
          NS_DEBUG ("ArpIpv4Interface::SendTo (): ARP Lookup");
          found = arp->Lookup (p, dest, GetDevice (), &hardwareDestination);
        }

      if (found)
        {
          NS_DEBUG ("ArpIpv4Interface::SendTo (): Address Resolved.  Send.");
          GetDevice ()->Send (p, hardwareDestination, 
            Ipv4L3Protocol::PROT_NUMBER);
        }
    }
  else
    {
      NS_DEBUG ("ArpIpv4Interface::SendTo (): Doesn't need ARP");
      GetDevice ()->Send (p, GetDevice ()->GetBroadcast (), 
        Ipv4L3Protocol::PROT_NUMBER);
    }
}

}//namespace ns3