#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
+#ifdef DEBUG
+#include <iostream>
+#endif
/// Constructor
IPOut::IPOut(const IPAddr& ip, RouteTable& rtable, Dev& forward_que, std::ostream& log):
void IPOut::drop(const std::string& msg, const std::string& buf)
{
- log << "IPOut::drop: " << msg << "\n\tBuffer: " << buf << "\n";
+ log << "IPOut::drop (" << ip << "): " << msg << "\n\tBuffer: " << buf
+ << "\n";
}
void IPOut::drop(const std::string& msg, const IPHeader& iph)
{
- log << "IPOut::drop: " << msg << "\n\tIPHeader: " << iph << "\n";
+ log << "IPOut::drop (" << ip << "): " << msg << "\n\tIPHeader: " << iph
+ << "\n";
}
/// Envía un paquete IP
std::string buf = forward_que.receive();
IPHeader iph(buf);
#ifdef DEBUG
- log << "IPOut::send: A forwardear\n";
+ std::cout << "IPOut::send (" << ip << "): A forwardear\n";
#endif
send(iph, buf.substr(iph.header_len()));
}
RouteTable::Route* r = rtable.get(iph.dst);
if (!r)
{
- drop("No existe una ruta para el destino", iph);
+ // ICMP
+ drop("No existe una ruta para el destino -> ICMP", iph);
return false;
}
// No quieren fragmentar
if (iph.df && (IPHeader::header_len() + data.size() > r->iface->mtu))
{
+ // Silencioso
drop("Tamaño de paquete más grande que MTU y DF=1", iph);
return false;
}
std::string buf((char*) &iph2, sizeof(IPHeader));
buf += data.substr(i * max_payload, max_payload);
#ifdef DEBUG
- log << "IPOut::send: Fragmento 0 => IPHeader: " << iph2 << "\n";
+ std::cout << "IPOut::send (" << ip << "): Fragmento " << i
+ << " => IPHeader: " << iph2 << "\n";
std::string tmp = data.substr(i * max_payload, max_payload);
- log << "\tdata (" << tmp.size() << ") = " << tmp << "\n";
+ std::cout << "\tdata (" << tmp.size() << ") = " << tmp << "\n";
#endif
r->iface->transmit(buf, r->gateway ? r->gateway : IPAddr(iph.dst));
}