utils.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  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 "xs_random.h"
  9. #include "xs_glob.h"
  10. #include "xs_curl.h"
  11. #include "xs_regex.h"
  12. #include "snac.h"
  13. #include <sys/stat.h>
  14. #include <stdlib.h>
  15. static const char *default_srv_config = "{"
  16. "\"host\": \"\","
  17. "\"prefix\": \"\","
  18. "\"address\": \"127.0.0.1\","
  19. "\"port\": 8001,"
  20. "\"layout\": 0.0,"
  21. "\"dbglevel\": 0,"
  22. "\"queue_retry_minutes\": 2,"
  23. "\"queue_retry_max\": 10,"
  24. "\"queue_timeout\": 6,"
  25. "\"queue_timeout_2\": 8,"
  26. "\"cssurls\": [\"\"],"
  27. "\"max_timeline_entries\": 50,"
  28. "\"timeline_purge_days\": 120,"
  29. "\"local_purge_days\": 0,"
  30. "\"min_account_age\": 0,"
  31. "\"admin_email\": \"\","
  32. "\"admin_account\": \"\","
  33. "\"title\": \"\","
  34. "\"short_description\": \"\","
  35. "\"protocol\": \"https\","
  36. "\"fastcgi\": false"
  37. "}";
  38. static const char *default_css =
  39. "body { max-width: 48em; margin: auto; line-height: 1.5; padding: 0.8em; word-wrap: break-word; }\n"
  40. "pre { overflow-x: scroll; }\n"
  41. ".snac-embedded-video, img { max-width: 100% }\n"
  42. ".snac-origin { font-size: 85% }\n"
  43. ".snac-score { float: right; font-size: 85% }\n"
  44. ".snac-top-user { text-align: center; padding-bottom: 2em }\n"
  45. ".snac-top-user-name { font-size: 200% }\n"
  46. ".snac-top-user-id { font-size: 150% }\n"
  47. ".snac-avatar { float: left; height: 2.5em; width: 2.5em; padding: 0.25em }\n"
  48. ".snac-author { font-size: 90%; text-decoration: none }\n"
  49. ".snac-author-tag { font-size: 80% }\n"
  50. ".snac-pubdate { color: #a0a0a0; font-size: 90% }\n"
  51. ".snac-top-controls { padding-bottom: 1.5em }\n"
  52. ".snac-post { border-top: 1px solid #a0a0a0; }\n"
  53. ".snac-children { padding-left: 1em; border-left: 1px solid #a0a0a0; }\n"
  54. ".snac-textarea { font-family: inherit; width: 100% }\n"
  55. ".snac-history { border: 1px solid #606060; border-radius: 3px; margin: 2.5em 0; padding: 0 2em }\n"
  56. ".snac-btn-mute { float: right; margin-left: 0.5em }\n"
  57. ".snac-btn-unmute { float: right; margin-left: 0.5em }\n"
  58. ".snac-btn-follow { float: right; margin-left: 0.5em }\n"
  59. ".snac-btn-unfollow { float: right; margin-left: 0.5em }\n"
  60. ".snac-btn-hide { float: right; margin-left: 0.5em }\n"
  61. ".snac-btn-delete { float: right; margin-left: 0.5em }\n"
  62. ".snac-btn-limit { float: right; margin-left: 0.5em }\n"
  63. ".snac-btn-unlimit { float: right; margin-left: 0.5em }\n"
  64. ".snac-footer { margin-top: 2em; font-size: 75% }\n"
  65. ".snac-poll-result { margin-left: auto; margin-right: auto; }\n"
  66. "@media (prefers-color-scheme: dark) { \n"
  67. " body, input, textarea { background-color: #000; color: #fff; }\n"
  68. " a { color: #7799dd }\n"
  69. " a:visited { color: #aa99dd }\n"
  70. "}\n"
  71. ;
  72. const char *snac_blurb =
  73. "<p><b>%host%</b> is a <a href=\"https:/"
  74. "/en.wikipedia.org/wiki/Fediverse\">Fediverse</a> "
  75. "instance that uses the <a href=\"https:/"
  76. "/en.wikipedia.org/wiki/ActivityPub\">ActivityPub</a> "
  77. "protocol. In other words, users at this host can communicate with people "
  78. "that use software like Mastodon, Pleroma, Friendica, etc. "
  79. "all around the world.</p>\n"
  80. "<p>This server runs the "
  81. "<a href=\"" WHAT_IS_SNAC_URL "\">snac</a> software and there is no "
  82. "automatic sign-up process.</p>\n"
  83. ;
  84. static const char *greeting_html =
  85. "<!DOCTYPE html>\n"
  86. "<html><head>\n"
  87. "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n"
  88. "<link rel=\"icon\" type=\"image/x-icon\" href=\"https://%host%/favicon.ico\"/>\n"
  89. "<title>Welcome to %host%</title>\n"
  90. "<body style=\"margin: auto; max-width: 50em\">\n"
  91. "%blurb%"
  92. "<p>The following users are part of this community:</p>\n"
  93. "\n"
  94. "%userlist%\n"
  95. "\n"
  96. "<p>This site is powered by <abbr title=\"Social Networks Are Crap\">snac</abbr>.</p>\n"
  97. "</body></html>\n";
  98. int snac_init(const char *basedir)
  99. {
  100. FILE *f;
  101. if (basedir == NULL) {
  102. printf("Base directory: "); fflush(stdout);
  103. srv_basedir = xs_strip_i(xs_readline(stdin));
  104. }
  105. else
  106. srv_basedir = xs_str_new(basedir);
  107. if (srv_basedir == NULL || *srv_basedir == '\0')
  108. return 1;
  109. if (xs_endswith(srv_basedir, "/"))
  110. srv_basedir = xs_crop_i(srv_basedir, 0, -1);
  111. if (mtime(srv_basedir) != 0.0) {
  112. printf("ERROR: directory '%s' must not exist.\n", srv_basedir);
  113. return 1;
  114. }
  115. srv_config = xs_json_loads(default_srv_config);
  116. xs *layout = xs_number_new(disk_layout);
  117. srv_config = xs_dict_set(srv_config, "layout", layout);
  118. printf("Network address [%s]: ", xs_dict_get(srv_config, "address")); fflush(stdout);
  119. {
  120. xs *i = xs_strip_i(xs_readline(stdin));
  121. if (*i)
  122. srv_config = xs_dict_set(srv_config, "address", i);
  123. }
  124. printf("Network port [%d]: ", (int)xs_number_get(xs_dict_get(srv_config, "port"))); fflush(stdout);
  125. {
  126. xs *i = xs_strip_i(xs_readline(stdin));
  127. if (*i) {
  128. xs *n = xs_number_new(atoi(i));
  129. srv_config = xs_dict_set(srv_config, "port", n);
  130. }
  131. }
  132. printf("Host name: "); fflush(stdout);
  133. {
  134. xs *i = xs_strip_i(xs_readline(stdin));
  135. if (*i == '\0')
  136. return 1;
  137. srv_config = xs_dict_set(srv_config, "host", i);
  138. }
  139. printf("URL prefix: "); fflush(stdout);
  140. {
  141. xs *i = xs_strip_i(xs_readline(stdin));
  142. if (*i) {
  143. if (xs_endswith(i, "/"))
  144. i = xs_crop_i(i, 0, -1);
  145. srv_config = xs_dict_set(srv_config, "prefix", i);
  146. }
  147. }
  148. printf("Admin email address (optional): "); fflush(stdout);
  149. {
  150. xs *i = xs_strip_i(xs_readline(stdin));
  151. srv_config = xs_dict_set(srv_config, "admin_email", i);
  152. }
  153. if (mkdirx(srv_basedir) == -1) {
  154. printf("ERROR: cannot create directory '%s'\n", srv_basedir);
  155. return 1;
  156. }
  157. xs *udir = xs_fmt("%s/user", srv_basedir);
  158. mkdirx(udir);
  159. xs *odir = xs_fmt("%s/object", srv_basedir);
  160. mkdirx(odir);
  161. xs *qdir = xs_fmt("%s/queue", srv_basedir);
  162. mkdirx(qdir);
  163. xs *ibdir = xs_fmt("%s/inbox", srv_basedir);
  164. mkdirx(ibdir);
  165. xs *gfn = xs_fmt("%s/greeting.html", srv_basedir);
  166. if ((f = fopen(gfn, "w")) == NULL) {
  167. printf("ERROR: cannot create '%s'\n", gfn);
  168. return 1;
  169. }
  170. xs *gh = xs_replace(greeting_html, "%blurb%", snac_blurb);
  171. fwrite(gh, strlen(gh), 1, f);
  172. fclose(f);
  173. xs *sfn = xs_fmt("%s/style.css", srv_basedir);
  174. if ((f = fopen(sfn, "w")) == NULL) {
  175. printf("ERROR: cannot create '%s'\n", sfn);
  176. return 1;
  177. }
  178. fwrite(default_css, strlen(default_css), 1, f);
  179. fclose(f);
  180. xs *cfn = xs_fmt("%s/server.json", srv_basedir);
  181. if ((f = fopen(cfn, "w")) == NULL) {
  182. printf("ERROR: cannot create '%s'\n", cfn);
  183. return 1;
  184. }
  185. xs_json_dump(srv_config, 4, f);
  186. fclose(f);
  187. printf("Done.\n");
  188. return 0;
  189. }
  190. void new_password(const char *uid, xs_str **clear_pwd, xs_str **hashed_pwd)
  191. /* creates a random password */
  192. {
  193. int rndbuf[3];
  194. xs_rnd_buf(rndbuf, sizeof(rndbuf));
  195. *clear_pwd = xs_base64_enc((char *)rndbuf, sizeof(rndbuf));
  196. *hashed_pwd = hash_password(uid, *clear_pwd, NULL);
  197. }
  198. int adduser(const char *uid)
  199. /* creates a new user */
  200. {
  201. snac snac;
  202. xs *config = xs_dict_new();
  203. xs *date = xs_str_utctime(0, ISO_DATE_SPEC);
  204. xs *pwd = NULL;
  205. xs *pwd_f = NULL;
  206. xs *key = NULL;
  207. FILE *f;
  208. if (uid == NULL) {
  209. printf("Username: "); fflush(stdout);
  210. uid = xs_strip_i(xs_readline(stdin));
  211. }
  212. if (!validate_uid(uid)) {
  213. printf("ERROR: only alphanumeric characters and _ are allowed in user ids.\n");
  214. return 1;
  215. }
  216. if (user_open(&snac, uid)) {
  217. printf("ERROR: user '%s' already exists\n", snac.uid);
  218. return 1;
  219. }
  220. new_password(uid, &pwd, &pwd_f);
  221. config = xs_dict_append(config, "uid", uid);
  222. config = xs_dict_append(config, "name", uid);
  223. config = xs_dict_append(config, "avatar", "");
  224. config = xs_dict_append(config, "bio", "");
  225. config = xs_dict_append(config, "cw", "");
  226. config = xs_dict_append(config, "published", date);
  227. config = xs_dict_append(config, "passwd", pwd_f);
  228. xs *basedir = xs_fmt("%s/user/%s", srv_basedir, uid);
  229. if (mkdirx(basedir) == -1) {
  230. printf("ERROR: cannot create directory '%s'\n", basedir);
  231. return 0;
  232. }
  233. const char *dirs[] = {
  234. "followers", "following", "muted", "hidden",
  235. "public", "private", "queue", "history",
  236. "static", NULL };
  237. int n;
  238. for (n = 0; dirs[n]; n++) {
  239. xs *d = xs_fmt("%s/%s", basedir, dirs[n]);
  240. mkdirx(d);
  241. }
  242. xs *cfn = xs_fmt("%s/user.json", basedir);
  243. if ((f = fopen(cfn, "w")) == NULL) {
  244. printf("ERROR: cannot create '%s'\n", cfn);
  245. return 1;
  246. }
  247. else {
  248. xs_json_dump(config, 4, f);
  249. fclose(f);
  250. }
  251. printf("\nCreating RSA key...\n");
  252. key = xs_evp_genkey(4096);
  253. printf("Done.\n");
  254. xs *kfn = xs_fmt("%s/key.json", basedir);
  255. if ((f = fopen(kfn, "w")) == NULL) {
  256. printf("ERROR: cannot create '%s'\n", kfn);
  257. return 1;
  258. }
  259. else {
  260. xs_json_dump(key, 4, f);
  261. fclose(f);
  262. }
  263. printf("\nUser password is %s\n", pwd);
  264. printf("\nGo to %s/%s and continue configuring your user there.\n", srv_baseurl, uid);
  265. return 0;
  266. }
  267. int resetpwd(snac *snac)
  268. /* creates a new password for the user */
  269. {
  270. xs *clear_pwd = NULL;
  271. xs *hashed_pwd = NULL;
  272. xs *fn = xs_fmt("%s/user.json", snac->basedir);
  273. FILE *f;
  274. int ret = 0;
  275. new_password(snac->uid, &clear_pwd, &hashed_pwd);
  276. snac->config = xs_dict_set(snac->config, "passwd", hashed_pwd);
  277. if ((f = fopen(fn, "w")) != NULL) {
  278. xs_json_dump(snac->config, 4, f);
  279. fclose(f);
  280. printf("New password for user %s is %s\n", snac->uid, clear_pwd);
  281. }
  282. else {
  283. printf("ERROR: cannot write to %s\n", fn);
  284. ret = 1;
  285. }
  286. return ret;
  287. }
  288. void rm_rf(const char *dir)
  289. /* does an rm -rf (yes, I'm also scared) */
  290. {
  291. xs *d = xs_str_cat(xs_dup(dir), "/" "*");
  292. xs *l = xs_glob(d, 0, 0);
  293. xs_list *p = l;
  294. xs_str *v;
  295. if (dbglevel >= 1)
  296. printf("Deleting directory %s\n", dir);
  297. while (xs_list_iter(&p, &v)) {
  298. struct stat st;
  299. if (stat(v, &st) != -1) {
  300. if (st.st_mode & S_IFDIR) {
  301. rm_rf(v);
  302. }
  303. else {
  304. if (dbglevel >= 1)
  305. printf("Deleting file %s\n", v);
  306. if (unlink(v) == -1)
  307. printf("ERROR: cannot delete file %s\n", v);
  308. }
  309. }
  310. else
  311. printf("ERROR: stat() fail for %s\n", v);
  312. }
  313. if (rmdir(dir) == -1)
  314. printf("ERROR: cannot delete directory %s\n", dir);
  315. }
  316. int deluser(snac *user)
  317. /* deletes a user */
  318. {
  319. int ret = 0;
  320. xs *fwers = following_list(user);
  321. xs_list *p = fwers;
  322. xs_str *v;
  323. while (xs_list_iter(&p, &v)) {
  324. xs *object = NULL;
  325. if (valid_status(following_get(user, v, &object))) {
  326. xs *msg = msg_undo(user, xs_dict_get(object, "object"));
  327. following_del(user, v);
  328. enqueue_output_by_actor(user, msg, v, 0);
  329. printf("Unfollowing actor %s\n", v);
  330. }
  331. }
  332. rm_rf(user->basedir);
  333. return ret;
  334. }
  335. void verify_links(snac *user)
  336. /* verifies a user's links */
  337. {
  338. xs_dict *p = xs_dict_get(user->config, "metadata");
  339. char *k, *v;
  340. int changed = 0;
  341. xs *headers = xs_dict_new();
  342. headers = xs_dict_append(headers, "accept", "text/html");
  343. headers = xs_dict_append(headers, "user-agent", USER_AGENT " (link verify)");
  344. int c = 0;
  345. while (p && xs_dict_next(p, &k, &v, &c)) {
  346. /* not an https link? skip */
  347. if (!xs_startswith(v, "https:/" "/"))
  348. continue;
  349. int status;
  350. xs *req = NULL;
  351. xs *payload = NULL;
  352. int p_size = 0;
  353. req = xs_http_request("GET", v, headers, NULL, 0, &status,
  354. &payload, &p_size, 0);
  355. if (!valid_status(status)) {
  356. snac_log(user, xs_fmt("link %s verify error %d", v, status));
  357. continue;
  358. }
  359. /* extract the links */
  360. xs *ls = xs_regex_select(payload, "< *(a|link) +[^>]+>");
  361. xs_list *lp = ls;
  362. char *ll;
  363. int vfied = 0;
  364. while (!vfied && xs_list_iter(&lp, &ll)) {
  365. /* extract href and rel */
  366. xs *r = xs_regex_select(ll, "(href|rel) *= *(\"[^\"]*\"|'[^']*')");
  367. /* must have both attributes */
  368. if (xs_list_len(r) != 2)
  369. continue;
  370. xs *href = NULL;
  371. int is_rel_me = 0;
  372. xs_list *pr = r;
  373. char *ar;
  374. while (xs_list_iter(&pr, &ar)) {
  375. xs *nq = xs_dup(ar);
  376. nq = xs_replace_i(nq, "\"", "");
  377. nq = xs_replace_i(nq, "'", "");
  378. xs *r2 = xs_split_n(nq, "=", 1);
  379. if (xs_list_len(r2) != 2)
  380. continue;
  381. xs *ak = xs_strip_i(xs_dup(xs_list_get(r2, 0)));
  382. xs *av = xs_strip_i(xs_dup(xs_list_get(r2, 1)));
  383. if (strcmp(ak, "href") == 0)
  384. href = xs_dup(av);
  385. else
  386. if (strcmp(ak, "rel") == 0) {
  387. /* split the value by spaces */
  388. xs *vbs = xs_split(av, " ");
  389. /* is any of it "me"? */
  390. if (xs_list_in(vbs, "me") != -1)
  391. is_rel_me = 1;
  392. }
  393. }
  394. /* after all this acrobatics, do we have an href and a rel="me"? */
  395. if (href != NULL && is_rel_me) {
  396. /* is it the same as the actor? */
  397. if (strcmp(href, user->actor) == 0) {
  398. /* got it! */
  399. xs *verified_time = xs_number_new((double)time(NULL));
  400. if (user->links == NULL)
  401. user->links = xs_dict_new();
  402. user->links = xs_dict_set(user->links, v, verified_time);
  403. vfied = 1;
  404. }
  405. else
  406. snac_debug(user, 1,
  407. xs_fmt("verify link %s rel='me' found but not related (%s)", v, href));
  408. }
  409. }
  410. if (vfied) {
  411. changed++;
  412. snac_log(user, xs_fmt("link %s verified", v));
  413. }
  414. else {
  415. snac_log(user, xs_fmt("link %s not verified (rel='me' not found)", v));
  416. }
  417. }
  418. if (changed) {
  419. FILE *f;
  420. /* update the links.json file */
  421. xs *fn = xs_fmt("%s/links.json", user->basedir);
  422. xs *bfn = xs_fmt("%s.bak", fn);
  423. rename(fn, bfn);
  424. if ((f = fopen(fn, "w")) != NULL) {
  425. xs_json_dump(user->links, 4, f);
  426. fclose(f);
  427. }
  428. else
  429. rename(bfn, fn);
  430. }
  431. }