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())
38 drop("Cabecera incompleta o no es IP", buf);
43 std::cout << "IPIn::recv (" << ip << "): IPHeader: " << iph << "\n";
44 std::string tmp = buf.substr(iph.header_len());
45 std::cout << "\tdata (" << tmp.size() << ") = " << tmp << "\n";
49 drop("Versión IP incorrecta", iph);
52 if (!iph.check_checksum())
54 drop("Mal checksum", iph);
57 // No es para nosotros y no forwardeamos
58 if (iph.dst != ip && !forward)
60 drop("No es para nosotros y no hacemos forward", iph);
63 // No es para nosotros pero forwardeamos
64 else if (iph.dst != ip)
66 forward_que.transmit(buf, ip);
69 // Es para nosotros pero somos router
72 drop("Es para nosotros pero somos un router", iph);
75 // Es para nosotros y somos un host
77 buffer[iph][iph.offset] = buf.substr(iph.header_len());
78 // Si tiene más fragmentos o es un protocolo distinto, sigo
79 if (iph.mf || (iph.proto != proto))
81 // No hay más fragmentos, reensamblamos (de ser necesario)
83 for (offsetmap_type::iterator i = buffer[iph].begin();
84 i != buffer[iph].end(); ++i)
86 //TODO chequear que los fragmentos estén todos
90 std::cout << "IPIn::recv (" << ip << "): Paquete completo: data = '"
94 //TODO faltaría limpiar fragmentos viejos cada tanto (timer?)
101 // vim: set et sw=4 sts=4 :