IpTunnel.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #ifndef IpTunnel_H
  16. #define IpTunnel_H
  17. #include "admin/angel/Hermes.h"
  18. #include "crypto/random/Random.h"
  19. #include "interface/Interface.h"
  20. #include "memory/Allocator.h"
  21. #include "util/log/Log.h"
  22. #include "util/events/EventBase.h"
  23. #include "util/platform/Sockaddr.h"
  24. #include <stdint.h>
  25. /** This header shall be on all messages sent in and out of the nodeInterface. */
  26. struct IpTunnel_PacketInfoHeader
  27. {
  28. /**
  29. * When the IpTunnel sends a message out the nodeInterface, this is the Ip6 of the node
  30. * which the message should be sent to. When the IpTunnel receives a message from the
  31. * nodeInterface this is the address of the node from which it came.
  32. */
  33. uint8_t nodeIp6Addr[16];
  34. /** The full 32 byte key which corrisponds to the above Ip6 address. */
  35. uint8_t nodeKey[32];
  36. };
  37. #define IpTunnel_PacketInfoHeader_SIZE 48
  38. Assert_compileTime(sizeof(struct IpTunnel_PacketInfoHeader) == IpTunnel_PacketInfoHeader_SIZE);
  39. struct IpTunnel_Connection
  40. {
  41. /** The header which is used for this connection. */
  42. struct IpTunnel_PacketInfoHeader header;
  43. /** The IPv6 address used for this connection or all zeros if none was assigned. */
  44. uint8_t connectionIp6[16];
  45. /** The IPv4 address used for this connection or all zeros if none was assigned. */
  46. uint8_t connectionIp4[4];
  47. /** non-zero if the connection was made using IpTunnel_connectTo(). */
  48. int isOutgoing : 1;
  49. /** The number of the connection so it can be identified when removing. */
  50. int number : 31;
  51. };
  52. struct IpTunnel
  53. {
  54. /** The interface used to send and receive messages to the TUN device. */
  55. struct Interface tunInterface;
  56. /**
  57. * The interface used to send and receive messages to other nodes.
  58. * All messages sent on this interface shall be preceeded with the IpTunnel_PacketInfoHeader.
  59. */
  60. struct Interface nodeInterface;
  61. /**
  62. * The list of registered connections, do not modify manually.
  63. * Will be reorganized from time to time so pointers are ephimeral.
  64. */
  65. struct {
  66. uint32_t count;
  67. struct IpTunnel_Connection* connections;
  68. } connectionList;
  69. };
  70. /**
  71. * Create a new IpTunnel structure.
  72. *
  73. * @param logger a logger or NULL.
  74. * @param eventBase the event base.
  75. * @param alloc an allocator.
  76. * @param rand a random generator.
  77. * @param hermes the Hermes admin connector.
  78. */
  79. struct IpTunnel* IpTunnel_new(struct Log* logger,
  80. struct EventBase* eventBase,
  81. struct Allocator* alloc,
  82. struct Random* rand,
  83. struct Hermes* hermes);
  84. /**
  85. * Allow another node to tunnel IPv4 and/or ICANN IPv6 through this node.
  86. *
  87. * @param publicKeyOfAuthorizedNode the key for the node which will be allowed to connect.
  88. * @param ip6Addr the IPv6 address which the node will be issued or NULL.
  89. * @param ip4Addr the IPv4 address which the node will be issued or NULL.
  90. * @param tunnel the IpTunnel.
  91. * @return an connection number which is usable with IpTunnel_remove().
  92. */
  93. int IpTunnel_allowConnection(uint8_t publicKeyOfAuthorizedNode[32],
  94. struct Sockaddr* ip6Addr,
  95. struct Sockaddr* ip4Addr,
  96. struct IpTunnel* tunnel);
  97. /**
  98. * Connect to another node and get IPv4 and/or IPv6 addresses from it.
  99. *
  100. * @param publicKeyOfNodeToConnectTo the key for the node to connect to.
  101. * @param tunnel the IpTunnel.
  102. * @return an connection number which is usable with IpTunnel_remove().
  103. */
  104. int IpTunnel_connectTo(uint8_t publicKeyOfNodeToConnectTo[32], struct IpTunnel* tunnel);
  105. /**
  106. * Disconnect from a node or remove authorization to connect.
  107. *
  108. * @param connectionNumber the number of the connection to remove.
  109. * @param tunnel the IpTunnel.
  110. * @return 0 if the connection was successfully removed
  111. * IpTunnel_remove_NOT_FOUND if the connection was not found.
  112. */
  113. #define IpTunnel_removeConnection_NOT_FOUND -1
  114. int IpTunnel_removeConnection(int connectionNumber, struct IpTunnel* tunnel);
  115. void IpTunnel_setTunName(char* interfaceName, struct IpTunnel* ipTun);
  116. #endif