AdminClient.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  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 <https://www.gnu.org/licenses/>.
  14. */
  15. #include "client/AdminClient.h"
  16. #include "benc/serialization/standard/BencMessageReader.h"
  17. #include "benc/serialization/standard/BencMessageWriter.h"
  18. #include "benc/serialization/cloner/Cloner.h"
  19. #include "exception/Except.h"
  20. #include "util/Bits.h"
  21. #include "util/Endian.h"
  22. #include "util/Hex.h"
  23. #include "util/events/Timeout.h"
  24. #include "util/Identity.h"
  25. #include "wire/Message.h"
  26. #include "wire/Error.h"
  27. #include <sodium/crypto_hash_sha256.h>
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. struct Request;
  31. typedef void (* AdminClient_RespHandler)(struct Request* req);
  32. struct Request
  33. {
  34. struct AdminClient_Result res;
  35. struct AdminClient_Promise* promise;
  36. AdminClient_RespHandler callback;
  37. struct Context* ctx;
  38. struct Allocator* alloc;
  39. /** Need a special allocator for the timeout so it can be axed before the request is complete */
  40. struct Allocator* timeoutAlloc;
  41. struct Timeout* timeout;
  42. Dict* requestMessage;
  43. /** the handle in the ctx->outstandingRequests map */
  44. uint32_t handle;
  45. Identity
  46. };
  47. #define Map_NAME OfRequestByHandle
  48. #define Map_ENABLE_HANDLES
  49. #define Map_VALUE_TYPE struct Request*
  50. #include "util/Map.h"
  51. struct Context
  52. {
  53. struct AdminClient pub;
  54. struct EventBase* eventBase;
  55. struct Iface addrIface;
  56. struct Sockaddr* targetAddr;
  57. struct Log* logger;
  58. String* password;
  59. struct Map_OfRequestByHandle outstandingRequests;
  60. struct Allocator* alloc;
  61. Identity
  62. };
  63. static int calculateAuth(Dict* message,
  64. String* password,
  65. String* cookieStr,
  66. struct Allocator* alloc)
  67. {
  68. // Calculate the hash of the password.
  69. String* hashHex = String_newBinary(NULL, 64, alloc);
  70. uint8_t passAndCookie[64];
  71. uint32_t cookie = (cookieStr != NULL) ? strtoll(cookieStr->bytes, NULL, 10) : 0;
  72. snprintf((char*) passAndCookie, 64, "%s%u", password->bytes, cookie);
  73. uint8_t hash[32];
  74. crypto_hash_sha256(hash, passAndCookie, CString_strlen((char*) passAndCookie));
  75. Hex_encode((uint8_t*)hashHex->bytes, 64, hash, 32);
  76. Dict_putString(message, String_new("hash", alloc), hashHex, alloc);
  77. Dict_putString(message, String_new("cookie", alloc), cookieStr, alloc);
  78. // serialize the message with the password hash
  79. struct Message* msg = Message_new(0, AdminClient_MAX_MESSAGE_SIZE, alloc);
  80. Er_assert(BencMessageWriter_write(message, msg));
  81. // calculate the hash of the message with the password hash
  82. crypto_hash_sha256(hash, msg->msgbytes, Message_getLength(msg));
  83. // swap the hash of the message with the password hash into the location
  84. // where the password hash was.
  85. Hex_encode((uint8_t*)hashHex->bytes, 64, hash, 32);
  86. return 0;
  87. }
  88. static void done(struct Request* req, enum AdminClient_Error err)
  89. {
  90. req->res.err = err;
  91. req->callback(req);
  92. Allocator_free(req->timeoutAlloc);
  93. }
  94. static void timeout(void* vreq)
  95. {
  96. done((struct Request*) vreq, AdminClient_Error_TIMEOUT);
  97. }
  98. static Iface_DEFUN receiveMessage(struct Message* msg, struct Iface* addrIface)
  99. {
  100. struct Context* ctx = Identity_containerOf(addrIface, struct Context, addrIface);
  101. struct Sockaddr_storage source;
  102. Er_assert(Message_epop(msg, &source, ctx->targetAddr->addrLen));
  103. if (Bits_memcmp(&source, ctx->targetAddr, ctx->targetAddr->addrLen)) {
  104. Log_info(ctx->logger, "Got spurious message from [%s], expecting messages from [%s]",
  105. Sockaddr_print(&source.addr, Message_getAlloc(msg)),
  106. Sockaddr_print(ctx->targetAddr, Message_getAlloc(msg)));
  107. // The UDP interface can't make use of an error but we'll inform anyway
  108. return Error(msg, "INVALID source addr");
  109. }
  110. // we don't yet know with which message this data belongs,
  111. // the message alloc lives the length of the message reception.
  112. struct Allocator* alloc = Allocator_child(Message_getAlloc(msg));
  113. int origLen = Message_getLength(msg);
  114. Dict* d = NULL;
  115. const char* err = BencMessageReader_readNoExcept(msg, alloc, &d);
  116. if (err) { return Error(msg, "Error decoding benc: %s", err); }
  117. Er_assert(Message_eshift(msg, origLen));
  118. String* txid = Dict_getStringC(d, "txid");
  119. if (!txid || txid->len != 8) { return Error(msg, "INVALID missing or wrong size txid"); }
  120. // look up the result
  121. uint32_t handle = ~0u;
  122. Hex_decode((uint8_t*)&handle, 4, txid->bytes, 8);
  123. int idx = Map_OfRequestByHandle_indexForHandle(handle, &ctx->outstandingRequests);
  124. if (idx < 0) { return Error(msg, "INVALID no such handle"); }
  125. struct Request* req = ctx->outstandingRequests.values[idx];
  126. // now this data will outlive the life of the message.
  127. Allocator_adopt(req->promise->alloc, alloc);
  128. req->res.responseDict = d;
  129. int len = (Message_getLength(msg) > AdminClient_MAX_MESSAGE_SIZE)
  130. ? AdminClient_MAX_MESSAGE_SIZE
  131. : Message_getLength(msg);
  132. Bits_memset(req->res.messageBytes, 0, AdminClient_MAX_MESSAGE_SIZE);
  133. Bits_memcpy(req->res.messageBytes, msg->msgbytes, len);
  134. done(req, AdminClient_Error_NONE);
  135. return NULL;
  136. }
  137. static int requestOnFree(struct Allocator_OnFreeJob* job)
  138. {
  139. struct Request* req = Identity_check((struct Request*) job->userData);
  140. int idx = Map_OfRequestByHandle_indexForHandle(req->handle, &req->ctx->outstandingRequests);
  141. if (idx > -1) {
  142. Map_OfRequestByHandle_remove(idx, &req->ctx->outstandingRequests);
  143. }
  144. return 0;
  145. }
  146. static struct Request* sendRaw(Dict* messageDict,
  147. struct AdminClient_Promise* promise,
  148. struct Context* ctx,
  149. String* cookie,
  150. AdminClient_RespHandler callback)
  151. {
  152. struct Allocator* reqAlloc = Allocator_child(promise->alloc);
  153. struct Request* req = Allocator_clone(reqAlloc, (&(struct Request) {
  154. .alloc = reqAlloc,
  155. .ctx = ctx,
  156. .promise = promise
  157. }));
  158. Identity_set(req);
  159. int idx = Map_OfRequestByHandle_put(&req, &ctx->outstandingRequests);
  160. req->handle = ctx->outstandingRequests.handles[idx];
  161. String* id = String_newBinary(NULL, 8, req->alloc);
  162. Hex_encode(id->bytes, 8, (int8_t*) &req->handle, 4);
  163. Dict_putStringC(messageDict, "txid", id, req->alloc);
  164. if (cookie) {
  165. Assert_true(!calculateAuth(messageDict, ctx->password, cookie, req->alloc));
  166. }
  167. struct Allocator* child = Allocator_child(req->alloc);
  168. struct Message* msg = Message_new(0, AdminClient_MAX_MESSAGE_SIZE + 256, child);
  169. Er_assert(BencMessageWriter_write(messageDict, msg));
  170. req->timeoutAlloc = Allocator_child(req->alloc);
  171. req->timeout = Timeout_setTimeout(timeout,
  172. req,
  173. ctx->pub.millisecondsToWait,
  174. ctx->eventBase,
  175. req->timeoutAlloc);
  176. Allocator_onFree(req->timeoutAlloc, requestOnFree, req);
  177. req->callback = callback;
  178. Er_assert(Message_epush(msg, ctx->targetAddr, ctx->targetAddr->addrLen));
  179. Iface_send(&ctx->addrIface, msg);
  180. Allocator_free(child);
  181. return req;
  182. }
  183. static void requestCallback(struct Request* req)
  184. {
  185. if (req->promise->callback) {
  186. req->promise->callback(req->promise, &req->res);
  187. }
  188. Allocator_free(req->promise->alloc);
  189. }
  190. static void cookieCallback(struct Request* req)
  191. {
  192. if (req->res.err) {
  193. requestCallback(req);
  194. return;
  195. }
  196. String* cookie = Dict_getStringC(req->res.responseDict, "cookie");
  197. if (!cookie) {
  198. req->res.err = AdminClient_Error_NO_COOKIE;
  199. requestCallback(req);
  200. return;
  201. }
  202. Dict* message = req->requestMessage;
  203. sendRaw(message, req->promise, req->ctx, cookie, requestCallback);
  204. Allocator_free(req->alloc);
  205. }
  206. static struct AdminClient_Promise* doCall(Dict* message,
  207. struct Context* ctx,
  208. struct Allocator* alloc)
  209. {
  210. struct Allocator* promiseAlloc = Allocator_child(alloc);
  211. struct AdminClient_Promise* promise =
  212. Allocator_calloc(promiseAlloc, sizeof(struct AdminClient_Promise), 1);
  213. promise->alloc = promiseAlloc;
  214. Dict gc = Dict_CONST(String_CONST("q"), String_OBJ(String_CONST("cookie")), NULL);
  215. struct Request* req = sendRaw(&gc, promise, ctx, NULL, cookieCallback);
  216. req->requestMessage = Cloner_cloneDict(message, promiseAlloc);
  217. return promise;
  218. }
  219. struct AdminClient_Promise* AdminClient_rpcCall(String* function,
  220. Dict* args,
  221. struct AdminClient* client,
  222. struct Allocator* alloc)
  223. {
  224. struct Context* ctx = Identity_check((struct Context*) client);
  225. Dict a = (args) ? *args : NULL;
  226. Dict message = Dict_CONST(
  227. String_CONST("q"), String_OBJ(String_CONST("auth")), Dict_CONST(
  228. String_CONST("aq"), String_OBJ(function), Dict_CONST(
  229. String_CONST("args"), Dict_OBJ(&a), NULL
  230. )));
  231. return doCall(&message, ctx, alloc);
  232. }
  233. char* AdminClient_errorString(enum AdminClient_Error err)
  234. {
  235. switch (err) {
  236. case AdminClient_Error_NONE:
  237. return "Success";
  238. case AdminClient_Error_OVERLONG_RESPONSE:
  239. return "Overlong resonse message";
  240. case AdminClient_Error_ERROR_READING_FROM_SOCKET:
  241. return "Error reading from socket, check errno.";
  242. case AdminClient_Error_SOCKET_NOT_READY:
  243. return "Socket not ready for reading";
  244. case AdminClient_Error_DESERIALIZATION_FAILED:
  245. return "Failed to deserialize response";
  246. case AdminClient_Error_SERIALIZATION_FAILED:
  247. return "Failed to serialize request";
  248. case AdminClient_Error_TIMEOUT:
  249. return "Timed out waiting for a response";
  250. case AdminClient_Error_NO_COOKIE:
  251. return "Cookie request returned with no cookie";
  252. default:
  253. return "Internal error";
  254. };
  255. }
  256. struct AdminClient* AdminClient_new(struct AddrIface* ai,
  257. struct Sockaddr* connectToAddress,
  258. String* adminPassword,
  259. struct EventBase* eventBase,
  260. struct Log* logger,
  261. struct Allocator* alloc)
  262. {
  263. struct Context* context = Allocator_clone(alloc, (&(struct Context) {
  264. .eventBase = eventBase,
  265. .logger = logger,
  266. .password = adminPassword,
  267. .pub = {
  268. .millisecondsToWait = 5000,
  269. },
  270. .outstandingRequests = {
  271. .allocator = alloc
  272. },
  273. .alloc = alloc
  274. }));
  275. context->addrIface.send = receiveMessage;
  276. Identity_set(context);
  277. context->targetAddr = Sockaddr_clone(connectToAddress, alloc);
  278. if (Sockaddr_getFamily(context->targetAddr) == Sockaddr_AF_INET) {
  279. uint8_t* addrBytes;
  280. int len = Sockaddr_getAddress(context->targetAddr, &addrBytes);
  281. if (Bits_isZero(addrBytes, len)) {
  282. // 127.0.0.1
  283. uint32_t loopback = Endian_hostToBigEndian32(0x7f000001);
  284. Bits_memcpy(addrBytes, &loopback, 4);
  285. }
  286. }
  287. Log_debug(logger, "Connecting to [%s]", Sockaddr_print(context->targetAddr, alloc));
  288. Iface_plumb(&ai->iface, &context->addrIface);
  289. return &context->pub;
  290. }