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: " << msg << "\n\tBuffer: " << buf << "\n";
22 void IPIn::drop(const std::string& msg, const IPHeader& iph)
24 log << "IPIn::drop: " << msg << "\n\tIPHeader: " << iph << "\n";
27 /// Recibe un paquete IP
28 std::string IPIn::recv(uint8_t proto, IPAddr& src, IPAddr& dst) throw (std::runtime_error)
32 std::string buf = dev.receive();
34 if (buf.size() < IPHeader::header_len())
36 drop("Cabecera incompleta o no es IP", buf);
41 std::cout << "IPIn::recv: IPHeader: " << iph << "\n";
42 std::string tmp = buf.substr(iph.header_len());
43 std::cout << "\tdata (" << tmp.size() << ") = " << tmp << "\n";
47 drop("Versión IP incorrecta", iph);
50 if (!iph.check_checksum())
52 drop("Mal checksum", iph);
55 // No es para nosotros y no forwardeamos
56 if (iph.dst != ip && !forward)
58 drop("No es para nosotros y no hacemos forward", iph);
61 // No es para nosotros pero forwardeamos
62 else if (iph.dst != ip)
64 forward_que.transmit(buf, ip);
67 // Es para nosotros pero somos router
70 drop("Es para nosotros pero somos un router", iph);
73 // Es para nosotros y somos un host
75 buffer[iph][iph.offset] = buf.substr(iph.header_len());
76 // Si tiene más fragmentos o es un protocolo distinto, sigo
77 if (iph.mf || (iph.proto != proto))
79 // No hay más fragmentos, reensamblamos (de ser necesario)
81 for (offsetmap_type::iterator i = buffer[iph].begin();
82 i != buffer[iph].end(); ++i)
84 //TODO chequear que los fragmentos estén todos
88 std::cout << "IPIn::recv: Paquete completo: data = '" << data << "'\n";
91 //TODO faltaría limpiar fragmentos viejos cada tanto (timer?)
98 // vim: set et sw=4 sts=4 :