9 IPIn::IPIn(const IPAddr& ip, Dev& dev, Dev& forward_que, bool router,
10 bool forward, std::ostream& log):
11 ip(ip), dev(dev), forward_que(forward_que), router(router),
12 forward(forward), log(log)
14 if (router) forward = true;
17 void IPIn::drop(const std::string& msg, const std::string& buf)
19 log << "IPIn::drop (" << ip << "): " << msg << "\n\tBuffer: " << buf
23 void IPIn::drop(const std::string& msg, const IPHeader& iph)
25 log << "IPIn::drop (" << ip << "): " << msg << "\n\tIPHeader: " << iph
29 /// Recibe un paquete IP
30 std::string IPIn::recv(uint8_t proto, IPAddr& src, IPAddr& dst) throw (std::runtime_error)
34 std::string buf = dev.receive();
36 if (buf.size() < IPHeader::header_len())
39 drop("Cabecera incompleta o no es IP", buf);
44 std::cout << "IPIn::recv (" << ip << "): IPHeader: " << iph << "\n";
45 std::string tmp = buf.substr(iph.header_len());
46 std::cout << "\tdata (" << tmp.size() << ") = " << tmp << "\n";
51 drop("Versión IP incorrecta", iph);
54 if (!iph.check_checksum())
57 drop("Mal checksum", iph);
60 // Si el TTL se va a 0
64 drop("TTL == 0 -> ICMP", iph);
67 // No es para nosotros y no forwardeamos
68 if (iph.dst != ip && !forward)
71 drop("No es para nosotros y no hacemos forward", iph);
74 // No es para nosotros pero forwardeamos
75 else if (iph.dst != ip)
77 forward_que.transmit(buf, ip);
80 // Es para nosotros pero somos router
84 drop("Es para nosotros pero somos un router", iph);
87 // Es para nosotros y somos un host
89 buffer[iph][iph.offset] = buf.substr(iph.header_len());
90 // Si tiene más fragmentos o es un protocolo distinto, sigo
91 if (iph.mf || (iph.proto != proto))
93 // No hay más fragmentos, reensamblamos (de ser necesario)
95 for (offsetmap_type::iterator i = buffer[iph].begin();
96 i != buffer[iph].end(); ++i)
98 //TODO chequear que los fragmentos estén todos
102 std::cout << "IPIn::recv (" << ip << "): Paquete completo: data = '"
106 //TODO faltaría limpiar fragmentos viejos cada tanto (timer?)
113 // vim: set et sw=4 sts=4 :