AdminLog.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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 <stdarg.h> // for String_vprintf()
  16. #include "admin/Admin.h"
  17. #include "admin/AdminLog.h"
  18. #include "benc/Dict.h"
  19. #include "benc/List.h"
  20. #include "benc/String.h"
  21. #include "crypto/random/Random.h"
  22. #include "io/Writer.h"
  23. #include "memory/BufferAllocator.h"
  24. #include "util/log/Log.h"
  25. #include "util/log/Log_impl.h"
  26. #include "util/Hex.h"
  27. #include "util/Identity.h"
  28. #include "util/events/Time.h"
  29. #include "util/events/Timeout.h"
  30. #define MAX_SUBSCRIPTIONS 64
  31. #define FILE_NAME_COUNT 32
  32. struct Subscription
  33. {
  34. /** The log level to match against, all higher levels will also be matched. */
  35. enum Log_Level logLevel;
  36. /** The line number within the file or 0 to match all lines. */
  37. int lineNum;
  38. /** The name of the file to match against or null to match any file. */
  39. const char* file;
  40. /** True if file can be compared with pointer comparison instead of strcmp. */
  41. bool internalFile;
  42. /**
  43. * Dropped messages because they are being sent too fast for UDP interface to handle.
  44. * Reset when the pipes unclog an a message is sent reporting the number of dropped messages.
  45. */
  46. int dropped;
  47. /** The transaction ID of the message which solicited this stream of logs. */
  48. String* txid;
  49. /** A hopefully unique (random) number identifying this stream. */
  50. String* streamId;
  51. /** An allocator which will live during the lifecycle of the Subscription */
  52. struct Allocator* alloc;
  53. };
  54. struct AdminLog
  55. {
  56. struct Log pub;
  57. struct Subscription subscriptions[MAX_SUBSCRIPTIONS];
  58. int subscriptionCount;
  59. /** non-zero if we are logging at this very moment (reentrent logging is not allowed!) */
  60. int logging;
  61. struct Timeout* unpause;
  62. struct Admin* admin;
  63. struct Allocator* alloc;
  64. struct Random* rand;
  65. struct EventBase* base;
  66. Identity
  67. };
  68. static inline bool isMatch(struct Subscription* subscription,
  69. struct AdminLog* logger,
  70. enum Log_Level logLevel,
  71. const char* file,
  72. int line)
  73. {
  74. if (subscription->file) {
  75. if (subscription->file == file) {
  76. // fall through
  77. } else if (!subscription->internalFile && !CString_strcmp(file, subscription->file)) {
  78. // It's the same name but so we'll swap the name for the internal name and then
  79. // it can be compared quickly with a pointer comparison.
  80. subscription->file = file;
  81. subscription->internalFile = true;
  82. } else {
  83. return false;
  84. }
  85. }
  86. if (logLevel < subscription->logLevel) {
  87. return false;
  88. }
  89. if (subscription->lineNum && line != subscription->lineNum) {
  90. return false;
  91. }
  92. return true;
  93. }
  94. static String* STREAM_ID = String_CONST_SO("streamId");
  95. static String* TIME = String_CONST_SO("time");
  96. static String* LEVEL = String_CONST_SO("level");
  97. static String* STR_FILE = String_CONST_SO("file");
  98. static String* LINE = String_CONST_SO("line");
  99. static String* MESSAGE = String_CONST_SO("message");
  100. static Dict* makeLogMessage(struct Subscription* subscription,
  101. struct AdminLog* logger,
  102. enum Log_Level logLevel,
  103. const char* file,
  104. uint32_t line,
  105. String* message,
  106. struct Allocator* alloc)
  107. {
  108. int64_t now = (int64_t) Time_currentTimeSeconds(logger->base);
  109. Dict* out = Dict_new(alloc);
  110. Dict_putString(out, STREAM_ID, subscription->streamId, alloc);
  111. Dict_putInt(out, TIME, now, alloc);
  112. Dict_putString(out, LEVEL, String_new(Log_nameForLevel(logLevel), alloc), alloc);
  113. Dict_putString(out, STR_FILE, String_new(file, alloc), alloc);
  114. Dict_putInt(out, LINE, line, alloc);
  115. Dict_putString(out, MESSAGE, message, alloc);
  116. return out;
  117. }
  118. static void removeSubscription(struct AdminLog* log, struct Subscription* sub)
  119. {
  120. Allocator_free(sub->alloc);
  121. log->subscriptionCount--;
  122. if (log->subscriptionCount == 0 || sub == &log->subscriptions[log->subscriptionCount]) {
  123. return;
  124. }
  125. Bits_memcpy(sub,
  126. &log->subscriptions[log->subscriptionCount],
  127. sizeof(struct Subscription));
  128. }
  129. static void unpause(void* vAdminLog)
  130. {
  131. struct AdminLog* log = Identity_check((struct AdminLog*) vAdminLog);
  132. // dirty reentrence.
  133. Assert_true(!log->logging);
  134. bool noneDropped = true;
  135. for (int i = log->subscriptionCount - 1; i >= 0; i--) {
  136. int dropped = log->subscriptions[i].dropped;
  137. if (!dropped) { continue; }
  138. noneDropped = false;
  139. log->subscriptions[i].dropped = 0;
  140. Log_warn((struct Log*) log,
  141. "UDPInterface cannot handle the logging, [%d] messages dropped", dropped);
  142. if (log->subscriptions[i].dropped) {
  143. // oh well, we'll try again later.
  144. log->subscriptions[i].dropped += dropped;
  145. }
  146. }
  147. if (noneDropped && false) {
  148. Timeout_clearTimeout(log->unpause);
  149. log->unpause = NULL;
  150. }
  151. }
  152. static void doLog(struct Log* genericLog,
  153. enum Log_Level logLevel,
  154. const char* fullFilePath,
  155. int line,
  156. const char* format,
  157. va_list args)
  158. {
  159. struct AdminLog* log = Identity_check((struct AdminLog*) genericLog);
  160. String* message = NULL;
  161. struct Allocator* logLineAlloc = NULL;
  162. if (log->logging) { return; }
  163. log->logging++;
  164. for (int i = log->subscriptionCount - 1; i >= 0; i--) {
  165. if (!isMatch(&log->subscriptions[i], log, logLevel, fullFilePath, line)) { continue; }
  166. if (log->subscriptions[i].dropped) {
  167. log->subscriptions[i].dropped++;
  168. continue;
  169. }
  170. if (!message) {
  171. logLineAlloc = Allocator_child(log->alloc);
  172. message = String_vprintf(logLineAlloc, format, args);
  173. // Strip all of the annoying \n marks in the log entries.
  174. if (message->len > 0 && message->bytes[message->len - 1] == '\n') {
  175. message->len--;
  176. }
  177. }
  178. Dict* d = makeLogMessage(&log->subscriptions[i],
  179. log,
  180. logLevel,
  181. fullFilePath,
  182. line,
  183. message,
  184. logLineAlloc);
  185. int ret = Admin_sendMessage(d, log->subscriptions[i].txid, log->admin);
  186. if (ret == Admin_sendMessage_CHANNEL_CLOSED) {
  187. removeSubscription(log, &log->subscriptions[i]);
  188. } else if (ret) {
  189. log->subscriptions[i].dropped++;
  190. if (!log->unpause) {
  191. log->unpause = Timeout_setInterval(unpause, log, 10, log->base, log->alloc);
  192. }
  193. }
  194. }
  195. if (logLineAlloc) {
  196. Allocator_free(logLineAlloc);
  197. }
  198. Assert_true(!--log->logging);
  199. }
  200. static void subscribe(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
  201. {
  202. struct AdminLog* log = Identity_check((struct AdminLog*) vcontext);
  203. String* levelName = Dict_getStringC(args, "level");
  204. enum Log_Level level = (levelName) ? Log_levelForName(levelName->bytes) : Log_Level_DEBUG;
  205. int64_t* lineNumPtr = Dict_getIntC(args, "line");
  206. String* fileStr = Dict_getStringC(args, "file");
  207. if (fileStr && !fileStr->len) { fileStr = NULL; }
  208. char* error = "2+2=5";
  209. if (level == Log_Level_INVALID) {
  210. level = Log_Level_KEYS;
  211. }
  212. if (lineNumPtr && *lineNumPtr < 0) {
  213. error = "Invalid line number, must be positive or 0 to signify any line is acceptable.";
  214. } else if (log->subscriptionCount >= MAX_SUBSCRIPTIONS) {
  215. error = "Max subscription count reached.";
  216. } else {
  217. struct Subscription* sub = &log->subscriptions[log->subscriptionCount];
  218. Bits_memset(sub, 0, sizeof(struct Subscription));
  219. sub->logLevel = level;
  220. sub->alloc = Allocator_child(log->alloc);
  221. String* fileStrCpy = String_clone(fileStr, sub->alloc);
  222. sub->file = (fileStrCpy) ? fileStrCpy->bytes : NULL;
  223. sub->lineNum = (lineNumPtr) ? *lineNumPtr : 0;
  224. sub->txid = String_clone(txid, sub->alloc);
  225. uint8_t streamId[8];
  226. Random_bytes(log->rand, streamId, 8);
  227. uint8_t streamIdHex[20];
  228. Hex_encode(streamIdHex, 20, streamId, 8);
  229. sub->streamId = String_new(streamIdHex, sub->alloc);
  230. Dict response = Dict_CONST(
  231. String_CONST("error"), String_OBJ(String_CONST("none")), Dict_CONST(
  232. String_CONST("streamId"), String_OBJ(sub->streamId), NULL
  233. ));
  234. Admin_sendMessage(&response, txid, log->admin);
  235. log->subscriptionCount++;
  236. return;
  237. }
  238. Dict response = Dict_CONST(
  239. String_CONST("error"), String_OBJ(String_CONST(error)), NULL
  240. );
  241. Admin_sendMessage(&response, txid, log->admin);
  242. }
  243. static void unsubscribe(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
  244. {
  245. struct AdminLog* log = Identity_check((struct AdminLog*) vcontext);
  246. String* streamIdHex = Dict_getStringC(args, "streamId");
  247. uint8_t streamId[8];
  248. char* error = NULL;
  249. if (streamIdHex->len != 16 || Hex_decode(streamId, 8, (uint8_t*)streamIdHex->bytes, 16) != 8) {
  250. error = "Invalid streamId.";
  251. } else {
  252. error = "No such subscription.";
  253. for (int i = 0; i < (int)log->subscriptionCount; i++) {
  254. if (String_equals(streamIdHex, log->subscriptions[i].streamId)) {
  255. removeSubscription(log, &log->subscriptions[i]);
  256. error = "none";
  257. break;
  258. }
  259. }
  260. }
  261. Dict response = Dict_CONST(
  262. String_CONST("error"), String_OBJ(String_CONST(error)), NULL
  263. );
  264. Admin_sendMessage(&response, txid, log->admin);
  265. }
  266. static void logMany(Dict* args, void* vcontext, String* txid, struct Allocator* alloc)
  267. {
  268. struct AdminLog* log = Identity_check((struct AdminLog*) vcontext);
  269. int64_t* countPtr = Dict_getIntC(args, "count");
  270. uint32_t count = *countPtr;
  271. for (uint32_t i = 0; i < count; i++) {
  272. Log_debug((struct Log*)log, "This is message number [%d] of total [%d]", i, count);
  273. }
  274. Dict response = Dict_CONST(
  275. String_CONST("error"), String_OBJ(String_CONST("none")), NULL
  276. );
  277. Admin_sendMessage(&response, txid, log->admin);
  278. }
  279. static void subscriptions(Dict* args, void* vcontext, String* txid, struct Allocator* alloc)
  280. {
  281. struct AdminLog* log = Identity_check((struct AdminLog*) vcontext);
  282. Dict* msg = Dict_new(alloc);
  283. List* entries = List_new(alloc);
  284. Dict_putListC(msg, "entries", entries, alloc);
  285. for (int i = 0; i < (int)log->subscriptionCount; i++) {
  286. Dict* entry = Dict_new(alloc);
  287. struct Subscription* sub = &log->subscriptions[i];
  288. Dict_putString(entry, LEVEL, String_new(Log_nameForLevel(sub->logLevel), alloc), alloc);
  289. if (sub->file) {
  290. Dict_putString(entry, STR_FILE, String_new(sub->file, alloc), alloc);
  291. }
  292. Dict_putInt(entry, LINE, sub->lineNum, alloc);
  293. Dict_putIntC(entry, "dropped", sub->dropped, alloc);
  294. Dict_putIntC(entry, "internalFile", sub->internalFile, alloc);
  295. Dict_putStringC(entry, "streamId", sub->streamId, alloc);
  296. List_addDict(entries, entry, alloc);
  297. }
  298. Admin_sendMessage(msg, txid, log->admin);
  299. }
  300. struct Log* AdminLog_registerNew(struct Admin* admin,
  301. struct Allocator* alloc,
  302. struct Random* rand,
  303. struct EventBase* base)
  304. {
  305. struct AdminLog* log = Allocator_clone(alloc, (&(struct AdminLog) {
  306. .pub = {
  307. .print = doLog
  308. },
  309. .admin = admin,
  310. .alloc = alloc,
  311. .rand = rand,
  312. .base = base
  313. }));
  314. Identity_set(log);
  315. Admin_registerFunction("AdminLog_subscribe", subscribe, log, true,
  316. ((struct Admin_FunctionArg[]) {
  317. { .name = "level", .required = 0, .type = "String" },
  318. { .name = "line", .required = 0, .type = "Int" },
  319. { .name = "file", .required = 0, .type = "String" }
  320. }), admin);
  321. Admin_registerFunction("AdminLog_unsubscribe", unsubscribe, log, true,
  322. ((struct Admin_FunctionArg[]) {
  323. { .name = "streamId", .required = 1, .type = "String" }
  324. }), admin);
  325. Admin_registerFunction("AdminLog_subscriptions", subscriptions, log, true, NULL, admin);
  326. Admin_registerFunction("AdminLog_logMany", logMany, log, true,
  327. ((struct Admin_FunctionArg[]) {
  328. { .name = "count", .required = 1, .type = "Int" }
  329. }), admin);
  330. return &log->pub;
  331. }