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.

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