main.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. /* snac - A simple, minimalistic ActivityPub instance */
  2. /* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
  3. #include "xs.h"
  4. #include "xs_io.h"
  5. #include "xs_json.h"
  6. #include "xs_time.h"
  7. #include "xs_openssl.h"
  8. #include "snac.h"
  9. #include <sys/stat.h>
  10. int usage(void)
  11. {
  12. printf("snac " VERSION " - A simple, minimalistic ActivityPub instance\n");
  13. printf("Copyright (c) 2022 - 2024 grunfink et al. / MIT license\n");
  14. printf("\n");
  15. printf("Commands:\n");
  16. printf("\n");
  17. printf("init [{basedir}] Initializes the data storage\n");
  18. printf("upgrade {basedir} Upgrade to a new version\n");
  19. printf("adduser {basedir} [{uid}] Adds a new user\n");
  20. printf("deluser {basedir} {uid} Deletes a user\n");
  21. printf("httpd {basedir} Starts the HTTPD daemon\n");
  22. printf("purge {basedir} Purges old data\n");
  23. printf("state {basedir} Prints server state\n");
  24. printf("webfinger {basedir} {account} Queries about an account (@user@host or actor url)\n");
  25. printf("queue {basedir} {uid} Processes a user queue\n");
  26. printf("follow {basedir} {uid} {actor} Follows an actor\n");
  27. printf("unfollow {basedir} {uid} {actor} Unfollows an actor\n");
  28. printf("request {basedir} {uid} {url} Requests an object\n");
  29. printf("actor {basedir} [{uid}] {url} Requests an actor\n");
  30. printf("note {basedir} {uid} {text} [files...] Sends a note with optional attachments\n");
  31. printf("boost|announce {basedir} {uid} {url} Boosts (announces) a post\n");
  32. printf("unboost {basedir} {uid} {url} Unboosts a post\n");
  33. printf("resetpwd {basedir} {uid} Resets the password of a user\n");
  34. printf("ping {basedir} {uid} {actor} Pings an actor\n");
  35. printf("webfinger_s {basedir} {uid} {account} Queries about an account (@user@host or actor url)\n");
  36. printf("pin {basedir} {uid} {msg_url} Pins a message\n");
  37. printf("unpin {basedir} {uid} {msg_url} Unpins a message\n");
  38. printf("bookmark {basedir} {uid} {msg_url} Bookmarks a message\n");
  39. printf("unbookmark {basedir} {uid} {msg_url} Unbookmarks a message\n");
  40. printf("block {basedir} {instance_url} Blocks a full instance\n");
  41. printf("unblock {basedir} {instance_url} Unblocks a full instance\n");
  42. printf("limit {basedir} {uid} {actor} Limits an actor (drops their announces)\n");
  43. printf("unlimit {basedir} {uid} {actor} Unlimits an actor\n");
  44. printf("verify_links {basedir} {uid} Verifies a user's links (in the metadata)\n");
  45. printf("search {basedir} {uid} {regex} Searches posts by content\n");
  46. printf("export_csv {basedir} {uid} Exports data as CSV files into current directory\n");
  47. printf("alias {basedir} {uid} {account} Sets account (@user@host or actor url) as an alias\n");
  48. printf("migrate {basedir} {uid} Migrates to the account defined as the alias\n");
  49. printf("import_csv {basedir} {uid} Imports data from CSV files into current directory\n");
  50. return 1;
  51. }
  52. char *get_argv(int *argi, int argc, char *argv[])
  53. {
  54. if (*argi < argc)
  55. return argv[(*argi)++];
  56. else
  57. return NULL;
  58. }
  59. #define GET_ARGV() get_argv(&argi, argc, argv)
  60. int main(int argc, char *argv[])
  61. {
  62. char *cmd;
  63. char *basedir;
  64. char *user;
  65. char *url;
  66. int argi = 1;
  67. snac snac;
  68. /* ensure group has write access */
  69. umask(0007);
  70. if ((cmd = GET_ARGV()) == NULL)
  71. return usage();
  72. if (strcmp(cmd, "init") == 0) { /** **/
  73. /* initialize the data storage */
  74. /* ... */
  75. basedir = GET_ARGV();
  76. return snac_init(basedir);
  77. }
  78. if (strcmp(cmd, "upgrade") == 0) { /** **/
  79. int ret;
  80. /* upgrade */
  81. if ((basedir = GET_ARGV()) == NULL)
  82. return usage();
  83. if ((ret = srv_open(basedir, 1)) == 1)
  84. srv_log(xs_dup("OK"));
  85. return ret;
  86. }
  87. if (strcmp(cmd, "markdown") == 0) { /** **/
  88. /* undocumented, for testing only */
  89. xs *c = xs_readall(stdin);
  90. xs *fc = not_really_markdown(c, NULL, NULL);
  91. printf("<html>\n%s\n</html>\n", fc);
  92. return 0;
  93. }
  94. if ((basedir = GET_ARGV()) == NULL)
  95. return usage();
  96. if (!srv_open(basedir, 0)) {
  97. srv_log(xs_fmt("error opening data storage at %s", basedir));
  98. return 1;
  99. }
  100. if (strcmp(cmd, "adduser") == 0) { /** **/
  101. user = GET_ARGV();
  102. return adduser(user);
  103. return 0;
  104. }
  105. if (strcmp(cmd, "httpd") == 0) { /** **/
  106. httpd();
  107. srv_free();
  108. return 0;
  109. }
  110. if (strcmp(cmd, "purge") == 0) { /** **/
  111. purge_all();
  112. return 0;
  113. }
  114. if (strcmp(cmd, "state") == 0) { /** **/
  115. xs *shm_name = NULL;
  116. srv_state *p_state = srv_state_op(&shm_name, 1);
  117. if (p_state == NULL)
  118. return 1;
  119. srv_state ss = *p_state;
  120. int n;
  121. printf("server: %s (%s)\n", xs_dict_get(srv_config, "host"), USER_AGENT);
  122. xs *uptime = xs_str_time_diff(time(NULL) - ss.srv_start_time);
  123. printf("uptime: %s\n", uptime);
  124. printf("job fifo size (cur): %d\n", ss.job_fifo_size);
  125. printf("job fifo size (peak): %d\n", ss.peak_job_fifo_size);
  126. char *th_states[] = { "stopped", "waiting", "input", "output" };
  127. for (n = 0; n < ss.n_threads; n++)
  128. printf("thread #%d state: %s\n", n, th_states[ss.th_state[n]]);
  129. return 0;
  130. }
  131. if ((user = GET_ARGV()) == NULL)
  132. return usage();
  133. if (strcmp(cmd, "block") == 0) { /** **/
  134. int ret = instance_block(user);
  135. if (ret < 0) {
  136. fprintf(stderr, "Error blocking instance %s: %d\n", user, ret);
  137. return 1;
  138. }
  139. return 0;
  140. }
  141. if (strcmp(cmd, "unblock") == 0) { /** **/
  142. int ret = instance_unblock(user);
  143. if (ret < 0) {
  144. fprintf(stderr, "Error unblocking instance %s: %d\n", user, ret);
  145. return 1;
  146. }
  147. return 0;
  148. }
  149. if (strcmp(cmd, "webfinger") == 0) { /** **/
  150. xs *actor = NULL;
  151. xs *uid = NULL;
  152. int status;
  153. status = webfinger_request(user, &actor, &uid);
  154. printf("status: %d\n", status);
  155. if (actor != NULL)
  156. printf("actor: %s\n", actor);
  157. if (uid != NULL)
  158. printf("uid: %s\n", uid);
  159. return 0;
  160. }
  161. if (argi == argc && strcmp(cmd, "actor") == 0) { /** **/
  162. /* query an actor without user (non-signed) */
  163. xs *actor = NULL;
  164. int status;
  165. status = actor_request(NULL, user, &actor);
  166. printf("status: %d\n", status);
  167. if (valid_status(status)) {
  168. xs_json_dump(actor, 4, stdout);
  169. printf("\n");
  170. }
  171. return 0;
  172. }
  173. if (!user_open(&snac, user)) {
  174. printf("invalid user '%s'\n", user);
  175. return 1;
  176. }
  177. lastlog_write(&snac, "cmdline");
  178. if (strcmp(cmd, "resetpwd") == 0) { /** **/
  179. return resetpwd(&snac);
  180. }
  181. if (strcmp(cmd, "deluser") == 0) { /** **/
  182. return deluser(&snac);
  183. }
  184. if (strcmp(cmd, "update") == 0) { /** **/
  185. xs *a_msg = msg_actor(&snac);
  186. xs *u_msg = msg_update(&snac, a_msg);
  187. enqueue_message(&snac, u_msg);
  188. return 0;
  189. }
  190. if (strcmp(cmd, "queue") == 0) { /** **/
  191. process_user_queue(&snac);
  192. return 0;
  193. }
  194. if (strcmp(cmd, "verify_links") == 0) { /** **/
  195. verify_links(&snac);
  196. return 0;
  197. }
  198. if (strcmp(cmd, "timeline") == 0) { /** **/
  199. #if 0
  200. xs *list = local_list(&snac, XS_ALL);
  201. xs *body = html_timeline(&snac, list, 1);
  202. printf("%s\n", body);
  203. user_free(&snac);
  204. srv_free();
  205. #endif
  206. xs *idx = xs_fmt("%s/private.idx", snac.basedir);
  207. xs *list = index_list_desc(idx, 0, 256);
  208. xs *tl = timeline_top_level(&snac, list);
  209. xs_json_dump(tl, 4, stdout);
  210. return 0;
  211. }
  212. if (strcmp(cmd, "export_csv") == 0) { /** **/
  213. export_csv(&snac);
  214. return 0;
  215. }
  216. if (strcmp(cmd, "import_csv") == 0) { /** **/
  217. import_csv(&snac);
  218. return 0;
  219. }
  220. if (strcmp(cmd, "migrate") == 0) { /** **/
  221. return migrate_account(&snac);
  222. }
  223. if ((url = GET_ARGV()) == NULL)
  224. return usage();
  225. if (strcmp(cmd, "alias") == 0) { /** **/
  226. xs *actor = NULL;
  227. xs *uid = NULL;
  228. int status = HTTP_STATUS_OK;
  229. if (*url == '\0')
  230. actor = xs_dup("");
  231. else
  232. status = webfinger_request(url, &actor, &uid);
  233. if (valid_status(status)) {
  234. if (strcmp(actor, snac.actor) == 0) {
  235. snac_log(&snac, xs_fmt("You can't be your own alias"));
  236. return 1;
  237. }
  238. else {
  239. snac.config = xs_dict_set(snac.config, "alias", actor);
  240. snac.config = xs_dict_set(snac.config, "alias_raw", url);
  241. user_persist(&snac, 1);
  242. }
  243. }
  244. else {
  245. snac_log(&snac, xs_fmt("Webfinger error for %s %d", url, status));
  246. return 1;
  247. }
  248. return 0;
  249. }
  250. if (strcmp(cmd, "webfinger_s") == 0) { /** **/
  251. xs *actor = NULL;
  252. xs *uid = NULL;
  253. int status;
  254. status = webfinger_request_signed(&snac, url, &actor, &uid);
  255. printf("status: %d\n", status);
  256. if (actor != NULL)
  257. printf("actor: %s\n", actor);
  258. if (uid != NULL)
  259. printf("uid: %s\n", uid);
  260. return 0;
  261. }
  262. if (strcmp(cmd, "boost") == 0 || strcmp(cmd, "announce") == 0) { /** **/
  263. xs *msg = msg_admiration(&snac, url, "Announce");
  264. if (msg != NULL) {
  265. enqueue_message(&snac, msg);
  266. if (dbglevel) {
  267. xs_json_dump(msg, 4, stdout);
  268. }
  269. }
  270. return 0;
  271. }
  272. if (strcmp(cmd, "unboost") == 0) { /** **/
  273. xs *msg = msg_repulsion(&snac, url, "Announce");
  274. if (msg != NULL) {
  275. enqueue_message(&snac, msg);
  276. if (dbglevel) {
  277. xs_json_dump(msg, 4, stdout);
  278. }
  279. }
  280. return 0;
  281. }
  282. if (strcmp(cmd, "follow") == 0) { /** **/
  283. xs *msg = msg_follow(&snac, url);
  284. if (msg != NULL) {
  285. const char *actor = xs_dict_get(msg, "object");
  286. following_add(&snac, actor, msg);
  287. enqueue_output_by_actor(&snac, msg, actor, 0);
  288. if (dbglevel) {
  289. xs_json_dump(msg, 4, stdout);
  290. }
  291. }
  292. return 0;
  293. }
  294. if (strcmp(cmd, "unfollow") == 0) { /** **/
  295. xs *object = NULL;
  296. if (valid_status(following_get(&snac, url, &object))) {
  297. xs *msg = msg_undo(&snac, xs_dict_get(object, "object"));
  298. following_del(&snac, url);
  299. enqueue_output_by_actor(&snac, msg, url, 0);
  300. snac_log(&snac, xs_fmt("unfollowed actor %s", url));
  301. }
  302. else
  303. snac_log(&snac, xs_fmt("actor is not being followed %s", url));
  304. return 0;
  305. }
  306. if (strcmp(cmd, "limit") == 0) { /** **/
  307. int ret;
  308. if (!following_check(&snac, url))
  309. snac_log(&snac, xs_fmt("actor %s is not being followed", url));
  310. else
  311. if ((ret = limit(&snac, url)) == 0)
  312. snac_log(&snac, xs_fmt("actor %s is now limited", url));
  313. else
  314. snac_log(&snac, xs_fmt("error limiting actor %s (%d)", url, ret));
  315. return 0;
  316. }
  317. if (strcmp(cmd, "unlimit") == 0) { /** **/
  318. int ret;
  319. if (!following_check(&snac, url))
  320. snac_log(&snac, xs_fmt("actor %s is not being followed", url));
  321. else
  322. if ((ret = unlimit(&snac, url)) == 0)
  323. snac_log(&snac, xs_fmt("actor %s is no longer limited", url));
  324. else
  325. snac_log(&snac, xs_fmt("error unlimiting actor %s (%d)", url, ret));
  326. return 0;
  327. }
  328. if (strcmp(cmd, "search") == 0) { /** **/
  329. int to;
  330. /* 'url' contains the regex */
  331. xs *r = content_search(&snac, url, 1, 0, XS_ALL, 10, &to);
  332. int c = 0;
  333. const char *v;
  334. /* print results as standalone links */
  335. while (xs_list_next(r, &v, &c)) {
  336. printf("%s/admin/p/%s\n", snac.actor, v);
  337. }
  338. return 0;
  339. }
  340. if (strcmp(cmd, "ping") == 0) { /** **/
  341. xs *actor_o = NULL;
  342. if (!xs_startswith(url, "https:/")) {
  343. /* try to resolve via webfinger */
  344. if (!valid_status(webfinger_request(url, &url, NULL))) {
  345. srv_log(xs_fmt("cannot resolve %s via webfinger", url));
  346. return 1;
  347. }
  348. }
  349. if (valid_status(actor_request(&snac, url, &actor_o))) {
  350. xs *msg = msg_ping(&snac, url);
  351. enqueue_output_by_actor(&snac, msg, url, 0);
  352. if (dbglevel) {
  353. xs_json_dump(msg, 4, stdout);
  354. }
  355. srv_log(xs_fmt("Ping sent to %s -- see log for Pong reply", url));
  356. }
  357. else {
  358. srv_log(xs_fmt("Error getting actor %s", url));
  359. return 1;
  360. }
  361. return 0;
  362. }
  363. if (strcmp(cmd, "pin") == 0) { /** **/
  364. int ret = pin(&snac, url);
  365. if (ret < 0) {
  366. fprintf(stderr, "error pinning %s %d\n", url, ret);
  367. return 1;
  368. }
  369. return 0;
  370. }
  371. if (strcmp(cmd, "unpin") == 0) { /** **/
  372. int ret = unpin(&snac, url);
  373. if (ret < 0) {
  374. fprintf(stderr, "error unpinning %s %d\n", url, ret);
  375. return 1;
  376. }
  377. return 0;
  378. }
  379. if (strcmp(cmd, "bookmark") == 0) { /** **/
  380. int ret = bookmark(&snac, url);
  381. if (ret < 0) {
  382. fprintf(stderr, "error bookmarking %s %d\n", url, ret);
  383. return 1;
  384. }
  385. return 0;
  386. }
  387. if (strcmp(cmd, "unbookmark") == 0) { /** **/
  388. int ret = unbookmark(&snac, url);
  389. if (ret < 0) {
  390. fprintf(stderr, "error unbookmarking %s %d\n", url, ret);
  391. return 1;
  392. }
  393. return 0;
  394. }
  395. if (strcmp(cmd, "question") == 0) { /** **/
  396. int end_secs = 5 * 60;
  397. xs *opts = xs_split(url, ";");
  398. xs *msg = msg_question(&snac, "Poll", NULL, opts, 0, end_secs);
  399. xs *c_msg = msg_create(&snac, msg);
  400. if (dbglevel) {
  401. xs_json_dump(c_msg, 4, stdout);
  402. }
  403. enqueue_message(&snac, c_msg);
  404. enqueue_close_question(&snac, xs_dict_get(msg, "id"), end_secs);
  405. timeline_add(&snac, xs_dict_get(msg, "id"), msg);
  406. return 0;
  407. }
  408. if (strcmp(cmd, "request") == 0) { /** **/
  409. int status;
  410. xs *data = NULL;
  411. status = activitypub_request(&snac, url, &data);
  412. printf("status: %d\n", status);
  413. if (data != NULL) {
  414. xs_json_dump(data, 4, stdout);
  415. }
  416. return 0;
  417. }
  418. if (strcmp(cmd, "request2") == 0) { /** **/
  419. enqueue_object_request(&snac, url, 2);
  420. return 0;
  421. }
  422. if (strcmp(cmd, "actor") == 0) { /** **/
  423. int status;
  424. xs *data = NULL;
  425. status = actor_request(&snac, url, &data);
  426. printf("status: %d\n", status);
  427. if (valid_status(status)) {
  428. xs_json_dump(data, 4, stdout);
  429. }
  430. return 0;
  431. }
  432. if (strcmp(cmd, "note") == 0) { /** **/
  433. xs *content = NULL;
  434. xs *msg = NULL;
  435. xs *c_msg = NULL;
  436. xs *attl = xs_list_new();
  437. char *fn = NULL;
  438. /* iterate possible attachments */
  439. while ((fn = GET_ARGV())) {
  440. FILE *f;
  441. if ((f = fopen(fn, "rb")) != NULL) {
  442. /* get the file size and content */
  443. fseek(f, 0, SEEK_END);
  444. int sz = ftell(f);
  445. fseek(f, 0, SEEK_SET);
  446. xs *atc = xs_readall(f);
  447. fclose(f);
  448. char *ext = strrchr(fn, '.');
  449. xs *hash = xs_md5_hex(fn, strlen(fn));
  450. xs *id = xs_fmt("%s%s", hash, ext);
  451. xs *url = xs_fmt("%s/s/%s", snac.actor, id);
  452. /* store */
  453. static_put(&snac, id, atc, sz);
  454. xs *l = xs_list_new();
  455. l = xs_list_append(l, url);
  456. l = xs_list_append(l, ""); /* alt text */
  457. attl = xs_list_append(attl, l);
  458. }
  459. else
  460. fprintf(stderr, "Error opening '%s' as attachment\n", fn);
  461. }
  462. if (strcmp(url, "-e") == 0) {
  463. /* get the content from an editor */
  464. FILE *f;
  465. unlink("/tmp/snac-edit.txt");
  466. system("$EDITOR /tmp/snac-edit.txt");
  467. if ((f = fopen("/tmp/snac-edit.txt", "r")) != NULL) {
  468. content = xs_readall(f);
  469. fclose(f);
  470. unlink("/tmp/snac-edit.txt");
  471. }
  472. else {
  473. printf("Nothing to send\n");
  474. return 1;
  475. }
  476. }
  477. else
  478. if (strcmp(url, "-") == 0) {
  479. /* get the content from stdin */
  480. content = xs_readall(stdin);
  481. }
  482. else
  483. content = xs_dup(url);
  484. msg = msg_note(&snac, content, NULL, NULL, attl, 0);
  485. c_msg = msg_create(&snac, msg);
  486. if (dbglevel) {
  487. xs_json_dump(c_msg, 4, stdout);
  488. }
  489. enqueue_message(&snac, c_msg);
  490. timeline_add(&snac, xs_dict_get(msg, "id"), msg);
  491. return 0;
  492. }
  493. fprintf(stderr, "ERROR: bad command '%s'\n", cmd);
  494. return 1;
  495. }