1
0

IpTunnel_admin.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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. #include "admin/Admin.h"
  16. #include "benc/String.h"
  17. #include "benc/Int.h"
  18. #include "benc/Dict.h"
  19. #include "crypto/Key.h"
  20. #include "memory/Allocator.h"
  21. #include "memory/BufferAllocator.h"
  22. #include "tunnel/IpTunnel.h"
  23. #include "tunnel/IpTunnel_admin.h"
  24. #include "util/platform/Sockaddr.h"
  25. #include <stddef.h>
  26. struct Context
  27. {
  28. struct IpTunnel* ipTun;
  29. struct Admin* admin;
  30. };
  31. static void sendResponse(int conn, String* txid, struct Admin* admin)
  32. {
  33. Dict resp = Dict_CONST(
  34. String_CONST("connection"), Int_OBJ(conn), Dict_CONST(
  35. String_CONST("error"), String_OBJ(String_CONST("none")), NULL
  36. ));
  37. Admin_sendMessage(&resp, txid, admin);
  38. }
  39. static void sendError(char* error, String* txid, struct Admin* admin)
  40. {
  41. Dict resp = Dict_CONST(
  42. String_CONST("error"), String_OBJ(String_CONST(error)), NULL
  43. );
  44. Admin_sendMessage(&resp, txid, admin);
  45. }
  46. static void allowConnection(Dict* args, void* vcontext, String* txid)
  47. {
  48. struct Context* context = (struct Context*) vcontext;
  49. String* publicKeyOfAuthorizedNode =
  50. Dict_getString(args, String_CONST("publicKeyOfAuthorizedNode"));
  51. String* ip6Address = Dict_getString(args, String_CONST("ip6Address"));
  52. String* ip4Address = Dict_getString(args, String_CONST("ip4Address"));
  53. uint8_t pubKey[32];
  54. uint8_t ip6Addr[16];
  55. struct Sockaddr_storage ip6ToGive;
  56. struct Sockaddr_storage ip4ToGive;
  57. char* error;
  58. int ret;
  59. if (!ip6Address && !ip4Address) {
  60. error = "Must specify ip6Address or ip4Address";
  61. } else if ((ret = Key_parse(publicKeyOfAuthorizedNode, pubKey, ip6Addr)) != 0) {
  62. error = Key_parse_strerror(ret);
  63. } else if (ip6Address
  64. && (Sockaddr_parse(ip6Address->bytes, &ip6ToGive)
  65. || Sockaddr_getFamily(&ip6ToGive.addr) != Sockaddr_AF_INET6))
  66. {
  67. error = "malformed ip6Address";
  68. } else if (ip4Address
  69. && (Sockaddr_parse(ip4Address->bytes, &ip4ToGive)
  70. || Sockaddr_getFamily(&ip4ToGive.addr) != Sockaddr_AF_INET))
  71. {
  72. error = "malformed ip4Address";
  73. } else {
  74. int conn = IpTunnel_allowConnection(pubKey,
  75. (ip6Address) ? &ip6ToGive.addr : NULL,
  76. (ip4Address) ? &ip4ToGive.addr : NULL,
  77. context->ipTun);
  78. sendResponse(conn, txid, context->admin);
  79. return;
  80. }
  81. sendError(error, txid, context->admin);
  82. }
  83. static void connectTo(Dict* args, void* vcontext, String* txid)
  84. {
  85. struct Context* context = vcontext;
  86. String* publicKeyOfNodeToConnectTo =
  87. Dict_getString(args, String_CONST("publicKeyOfNodeToConnectTo"));
  88. uint8_t pubKey[32];
  89. uint8_t ip6[16];
  90. int ret;
  91. if ((ret = Key_parse(publicKeyOfNodeToConnectTo, pubKey, ip6)) != 0) {
  92. sendError(Key_parse_strerror(ret), txid, context->admin);
  93. return;
  94. }
  95. int conn = IpTunnel_connectTo(pubKey, context->ipTun);
  96. sendResponse(conn, txid, context->admin);
  97. }
  98. static void removeConnection(Dict* args, void* vcontext, String* txid)
  99. {
  100. struct Context* context = vcontext;
  101. /*
  102. int conn = (int) *(Dict_getInt(args, String_CONST("connection")));
  103. char* error = "none";
  104. if (IpTunnel_removeConnection_NOT_FOUND == IpTunnel_removeConnection(conn, context->ipTun)) {
  105. error = "not found";
  106. }
  107. */
  108. sendError("not implemented", txid, context->admin);
  109. }
  110. static void listConnections(Dict* args, void* vcontext, String* txid)
  111. {
  112. struct Context* context = vcontext;
  113. struct Allocator* alloc;
  114. BufferAllocator_STACK(alloc, 1024);
  115. List* l = NULL;
  116. for (int i = 0; i < (int)context->ipTun->connectionList.count; i++) {
  117. l = List_addInt(l, context->ipTun->connectionList.connections[i].number, alloc);
  118. }
  119. Dict resp = Dict_CONST(
  120. String_CONST("connections"), List_OBJ(l), Dict_CONST(
  121. String_CONST("error"), String_OBJ(String_CONST("none")), NULL
  122. ));
  123. Admin_sendMessage(&resp, txid, context->admin);
  124. }
  125. static void showConn(struct IpTunnel_Connection* conn, String* txid, struct Admin* admin)
  126. {
  127. struct Allocator* alloc;
  128. BufferAllocator_STACK(alloc, 1024);
  129. Dict* d = Dict_new(alloc);
  130. if (!Bits_isZero(conn->connectionIp6, 16)) {
  131. struct Sockaddr* addr = Sockaddr_clone(Sockaddr_LOOPBACK6, alloc);
  132. uint8_t* address;
  133. Assert_true(16 == Sockaddr_getAddress(addr, &address));
  134. Bits_memcpyConst(address, conn->connectionIp6, 16);
  135. char* printedAddr = Sockaddr_print(addr, alloc);
  136. Dict_putString(d, String_CONST("ip6Address"), String_CONST(printedAddr), alloc);
  137. }
  138. if (!Bits_isZero(conn->connectionIp4, 4)) {
  139. struct Sockaddr* addr = Sockaddr_clone(Sockaddr_LOOPBACK, alloc);
  140. uint8_t* address;
  141. Assert_true(4 == Sockaddr_getAddress(addr, &address));
  142. Bits_memcpyConst(address, conn->connectionIp4, 4);
  143. char* printedAddr = Sockaddr_print(addr, alloc);
  144. Dict_putString(d, String_CONST("ip4Address"), String_CONST(printedAddr), alloc);
  145. }
  146. Dict_putString(d, String_CONST("key"), Key_stringify(conn->header.nodeKey, alloc), alloc);
  147. Dict_putInt(d, String_CONST("outgoing"), (conn->isOutgoing) ? 1 : 0, alloc);
  148. Dict_putString(d, String_CONST("error"), String_CONST("none"), alloc);
  149. Admin_sendMessage(d, txid, admin);
  150. }
  151. static void showConnection(Dict* args, void* vcontext, String* txid)
  152. {
  153. struct Context* context = vcontext;
  154. int connNum = (int) *(Dict_getInt(args, String_CONST("connection")));
  155. for (int i = 0; i < (int)context->ipTun->connectionList.count; i++) {
  156. if (connNum == context->ipTun->connectionList.connections[i].number) {
  157. showConn(&context->ipTun->connectionList.connections[i], txid, context->admin);
  158. return;
  159. }
  160. }
  161. sendError("connection not found", txid, context->admin);
  162. }
  163. void IpTunnel_admin_register(struct IpTunnel* ipTun, struct Admin* admin, struct Allocator* alloc)
  164. {
  165. struct Context* context = Allocator_clone(alloc, (&(struct Context) {
  166. .admin = admin,
  167. .ipTun = ipTun
  168. }));
  169. Admin_registerFunction("IpTunnel_allowConnection", allowConnection, context, true,
  170. ((struct Admin_FunctionArg[]) {
  171. { .name = "publicKeyOfAuthorizedNode", .required = 1, .type = "String" },
  172. { .name = "ip6Address", .required = 0, .type = "String" },
  173. { .name = "ip4Address", .required = 0, .type = "String" },
  174. }), admin);
  175. Admin_registerFunction("IpTunnel_connectTo", connectTo, context, true,
  176. ((struct Admin_FunctionArg[]) {
  177. { .name = "publicKeyOfNodeToConnectTo", .required = 1, .type = "String" }
  178. }), admin);
  179. Admin_registerFunction("IpTunnel_removeConnection", removeConnection, context, true,
  180. ((struct Admin_FunctionArg[]) {
  181. { .name = "connection", .required = 1, .type = "Int" }
  182. }), admin);
  183. Admin_registerFunction("IpTunnel_showConnection", showConnection, context, true,
  184. ((struct Admin_FunctionArg[]) {
  185. { .name = "connection", .required = 1, .type = "Int" }
  186. }), admin);
  187. Admin_registerFunction("IpTunnel_listConnections", listConnections, context, true, NULL, admin);
  188. }