Symulacja NAT na przedmiot Symulacje Komputerowe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

262 lines
5.6 KiB

  1. /*
  2. * Node.cpp
  3. *
  4. * Created on: 10.01.2017
  5. * Author: piotrek
  6. */
  7. #include "Node.h"
  8. #include "NATRouter.h"
  9. Node * Node::findConnection(string ip)
  10. {
  11. NATRouter *r;
  12. Node *ptr = NULL;
  13. if (ip == "0.0.0.0")
  14. return NULL;
  15. // najpierw szukam tras lokalnych
  16. map<Node*, bool>::iterator it = this->connectedNodes.begin();
  17. for (; it != this->connectedNodes.end(); ++it)
  18. {
  19. //if ((*it)->getIp() == ip)
  20. if ((*it).first->getIp() == ip)
  21. {
  22. ptr = (*it).first;
  23. if ((*it).second == false)
  24. return ptr;
  25. }
  26. /*
  27. * jezeli wezel ma polaczenie do NAT-routera
  28. * (i istnieje jego interfejs WAN to sprawdz
  29. * czy nie ma z nim bezposredniego polaczenia)
  30. */
  31. r = dynamic_cast<NATRouter*>((*it).first);
  32. if (r != NULL)
  33. if (r->getWanIp() == ip)
  34. return (*it).first;
  35. }
  36. /* jezeli takich nie ma, a jest zewnetrzna
  37. * to musze wskazac do niej
  38. */
  39. if (ptr)
  40. return ptr;
  41. return NULL;
  42. }
  43. /* funkcja pobiera i usuwa pakiet z bufora "karty sieciowej" */
  44. Packet Node::recv()
  45. {
  46. Packet packet;
  47. if (!this->rcvBuffer.empty())
  48. {
  49. packet = this->rcvBuffer.front();
  50. this->rcvBuffer.pop();
  51. }
  52. return packet;
  53. }
  54. string Node::ipToString(unsigned int ip)
  55. {
  56. ostringstream ss;
  57. ss << ((ip>>24)&0xFF) << "." << ((ip>>16)&0xFF) << "." << ((ip>>8)&0xFF) << "." << (ip&0xFF);
  58. return ss.str();
  59. }
  60. unsigned int Node::stringToIp(string ip)
  61. {
  62. istringstream iss(ip);
  63. int offset = 24;
  64. unsigned int res=0;
  65. std::string token;
  66. while (getline(iss, token, '.')) {
  67. if (!token.empty())
  68. {
  69. res |= atoi(token.c_str()) << offset;
  70. offset -= 8;
  71. }
  72. }
  73. return res;
  74. }
  75. Node::Node()
  76. {
  77. this->setHostname("");
  78. this->setIp("0.0.0.0");
  79. this->setMask("0.0.0.0");
  80. this->setGatewayIp("0.0.0.0");
  81. }
  82. Node::~Node()
  83. {
  84. this->connectedNodes.clear();
  85. while(!this->rcvBuffer.empty())
  86. this->rcvBuffer.pop();
  87. }
  88. Node::Node(string hostname) : Node()
  89. {
  90. this->setHostname(hostname);
  91. }
  92. Node::Node(string hostname, string ip, string mask) : Node(hostname)
  93. {
  94. this->setIp(ip);
  95. this->setMask(mask);
  96. }
  97. Node::Node(string hostname, string ip, string mask, string gatewayIp) : Node(hostname, ip, mask)
  98. {
  99. this->setGatewayIp(gatewayIp);
  100. }
  101. /*
  102. * funkcja symuluje typową sytuację: mamy kartę sieciową, a funkcja connectNode jest podłączeniem wtyczki
  103. * z jednej strony
  104. * @param firstConnected - oznacza, czy pierwsza strona jest podlaczona (jezeli nie to sprawdzamy
  105. * czy polaczenie juz gdzies zostalo przypadkowo nawiazane, nawiazujemy polaczenie, a nastepnie
  106. * przekazujemy sterowanie drugiemu wezlowi zeby zrobil to samo)
  107. */
  108. bool Node::connectNode(Node *node, bool isExternal, bool firstConnected)
  109. {
  110. if (node->getIp() == "0.0.0.0") // jezeli wezel nie ma skonfigurowanej sieci, nie mozna go przylaczyc
  111. return false;
  112. if (!firstConnected)
  113. {
  114. map<Node*, bool>::iterator it = this->connectedNodes.begin();
  115. for (; it != this->connectedNodes.end(); ++it) // sprawdzamy, czy połączenia już przypadkiem nie ma
  116. {
  117. if ((*it).first == node)
  118. return false;
  119. }
  120. }
  121. this->connectedNodes.insert(pair<Node*, bool>(node, isExternal));//this->connectedNodes.push_back(node); // podłączamy drugi węzeł
  122. if (!firstConnected)
  123. node->connectNode(this, isExternal, true); // to samo w drugą stronę
  124. return true;
  125. }
  126. /*
  127. * funkcja wysyla, czyli przekazuje kopie pakietu kolejnemu wezlowi - docelowemu lub bramie domyslnej
  128. * o ile jest skonfigurowana i istnieje do niej sciezka
  129. */
  130. bool Node::send(Packet packet, bool isRouter)
  131. {
  132. Node *node;
  133. node = this->findConnection(packet.getDstIp()); // znajdz bezposrednia trase
  134. if (!node)
  135. node = this->findConnection(this->getGatewayIp());
  136. if (!node)
  137. return false; // nie ma zadnej trasy do wezla
  138. if (packet.getDstPort() == 0)
  139. return false; // wypada zdefiniowac nadawce oraz docelowy port...
  140. // jezeli wezel nie jest routerem to ma ustawic pakietowi swoj srcIp oraz losowy port
  141. if (!isRouter)
  142. {
  143. packet.setSrcIp(this->getIp());
  144. if (packet.getSrcPort() == 0)
  145. {
  146. // ustaw port zrodlowy na port losowy z zakresu [32768,61000] - zob. empheral port (port emferyczny)
  147. srand(time(NULL));
  148. packet.setSrcPort(rand() % 32768 + 28233);
  149. }
  150. }
  151. node->putPacket(packet);
  152. return true;
  153. }
  154. /*
  155. * funkcja jest modelem karty sieciowej - odbiera dane z sieci i umieszcza je
  156. * w swoim buforze (czy tam systemie)
  157. */
  158. void Node::putPacket(Packet packet)
  159. {
  160. this->rcvBuffer.push(packet);
  161. }
  162. void Node::setHostname(string hostname)
  163. {
  164. this->hostname = hostname;
  165. }
  166. void Node::setIp(string ip)
  167. {
  168. this->netConf.ip = ip;
  169. this->setNetwork();
  170. }
  171. void Node::setMask(string mask)
  172. {
  173. this->netConf.mask = mask;
  174. this->setNetwork();
  175. }
  176. void Node::setGatewayIp(string gatewayIp)
  177. {
  178. // TODO mozna ewentualnie zrobic sprawdzenie czy gateway jest w podsieci
  179. this->netConf.gatewayIp = gatewayIp;
  180. }
  181. string Node::getHostname()
  182. {
  183. return this->hostname;
  184. }
  185. string Node::getIp()
  186. {
  187. return this->netConf.ip;
  188. }
  189. string Node::getMask()
  190. {
  191. return this->netConf.mask;
  192. }
  193. string Node::getGatewayIp()
  194. {
  195. return this->netConf.gatewayIp;
  196. }
  197. string Node::calculateNetwork(string ip, string mask)
  198. {
  199. return ipToString(stringToIp(ip) & stringToIp(mask));
  200. }
  201. void Node::onRecv()
  202. {
  203. // TESTOWO
  204. Packet p = this->recv();
  205. if (p.getSrcPort() != 0)
  206. {
  207. cout << endl << "<<<<<< " << this->getHostname() << " >>>>>>" << endl;
  208. cout << "Odebrano wiadomosc!" << endl;
  209. cout << "Src: " << p.getSrcIp() << ":" << p.getSrcPort() << endl;
  210. cout << "Dst: " << p.getDstIp() << ":" << p.getDstPort() << endl;
  211. cout << "---" << endl << p.getMsg() << endl << endl;
  212. }
  213. }
  214. void Node::setNetwork()
  215. {
  216. this->netConf.network = this->calculateNetwork(this->getIp(), this->getMask());
  217. }
  218. string Node::getNetwork()
  219. {
  220. return this->netConf.network;
  221. }