]> git.llucax.com Git - z.facultad/75.74/practicos.git/blob - practicas/pipi-1ra-entrega/src/ipin.cpp
Se arregla una zona de ejemplo.
[z.facultad/75.74/practicos.git] / practicas / pipi-1ra-entrega / src / ipin.cpp
1
2 #include "ipin.h"
3 #include "ipheader.h"
4 #ifdef DEBUG
5 #include <iostream>
6 #endif
7
8 /// Constructor
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)
13 {
14     if (router) forward = true;
15 }
16
17 void IPIn::drop(const std::string& msg, const std::string& buf)
18 {
19     log << "IPIn::drop (" << ip << "): " << msg << "\n\tBuffer: " << buf
20             << "\n";
21 }
22
23 void IPIn::drop(const std::string& msg, const IPHeader& iph)
24 {
25     log << "IPIn::drop (" << ip << "): " << msg << "\n\tIPHeader: " << iph
26             << "\n";
27 }
28
29 /// Recibe un paquete IP
30 std::string IPIn::recv(uint8_t proto, IPAddr& src, IPAddr& dst) throw (std::runtime_error)
31 {
32     while (true)
33     {
34         std::string buf = dev.receive();
35         // No es siquiera IP
36         if (buf.size() < IPHeader::header_len())
37         {
38             drop("Cabecera incompleta o no es IP", buf);
39             continue;
40         }
41         IPHeader iph(buf);
42 #ifdef DEBUG
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";
46 #endif
47         if (iph.version != 4)
48         {
49             drop("Versión IP incorrecta", iph);
50             continue;
51         }
52         if (!iph.check_checksum())
53         {
54             drop("Mal checksum", iph);
55             continue;
56         }
57         // No es para nosotros y no forwardeamos
58         if (iph.dst != ip && !forward)
59         {
60             drop("No es para nosotros y no hacemos forward", iph);
61             continue;
62         }
63         // No es para nosotros pero forwardeamos
64         else if (iph.dst != ip)
65         {
66             forward_que.transmit(buf, ip);
67             continue;
68         }
69         // Es para nosotros pero somos router
70         else if (router)
71         {
72             drop("Es para nosotros pero somos un router", iph);
73             continue;
74         }
75         // Es para nosotros y somos un host
76         // Guarda en buffer
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))
80             continue;
81         // No hay más fragmentos, reensamblamos (de ser necesario)
82         std::string data;
83         for (offsetmap_type::iterator i = buffer[iph].begin();
84                 i != buffer[iph].end(); ++i)
85         {
86             //TODO chequear que los fragmentos estén todos
87             data += i->second;
88         }
89 #ifdef DEBUG
90         std::cout << "IPIn::recv (" << ip << "): Paquete completo: data = '"
91                 << data << "'\n";
92 #endif
93         buffer.erase(iph);
94         //TODO faltaría limpiar fragmentos viejos cada tanto (timer?)
95         src = iph.src;
96         dst = iph.dst;
97         return data;
98     }
99 }
100
101 // vim: set et sw=4 sts=4 :