snac.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /* snac - A simple, minimalistic ActivityPub instance */
  2. /* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
  3. #define XS_IMPLEMENTATION
  4. #include "xs.h"
  5. #include "xs_io.h"
  6. #include "xs_unicode.h"
  7. #include "xs_json.h"
  8. #include "xs_curl.h"
  9. #include "xs_openssl.h"
  10. #include "xs_socket.h"
  11. #include "xs_url.h"
  12. #include "xs_httpd.h"
  13. #include "xs_mime.h"
  14. #include "xs_regex.h"
  15. #include "xs_set.h"
  16. #include "xs_time.h"
  17. #include "xs_glob.h"
  18. #include "xs_random.h"
  19. #include "xs_match.h"
  20. #include "xs_fcgi.h"
  21. #include "snac.h"
  22. #include <sys/time.h>
  23. #include <sys/stat.h>
  24. xs_str *srv_basedir = NULL;
  25. xs_dict *srv_config = NULL;
  26. xs_str *srv_baseurl = NULL;
  27. int dbglevel = 0;
  28. int mkdirx(const char *pathname)
  29. /* creates a directory with special permissions */
  30. {
  31. int ret;
  32. if ((ret = mkdir(pathname, DIR_PERM)) != -1) {
  33. /* try to the set the setgid bit, to allow system users
  34. to create files in these directories using the
  35. command-line tool. This may fail in some restricted
  36. environments, but it's of no use there anyway */
  37. chmod(pathname, DIR_PERM_ADD);
  38. }
  39. return ret;
  40. }
  41. int valid_status(int status)
  42. /* is this HTTP status valid? */
  43. {
  44. return status >= 200 && status <= 299;
  45. }
  46. xs_str *tid(int offset)
  47. /* returns a time-based Id */
  48. {
  49. struct timeval tv;
  50. gettimeofday(&tv, NULL);
  51. return xs_fmt("%10d.%06d", tv.tv_sec + offset, tv.tv_usec);
  52. }
  53. double ftime(void)
  54. /* returns the UNIX time as a float */
  55. {
  56. xs *ntid = tid(0);
  57. return atof(ntid);
  58. }
  59. int validate_uid(const char *uid)
  60. /* returns if uid is a valid identifier */
  61. {
  62. if (!uid || *uid == '\0')
  63. return 0;
  64. while (*uid) {
  65. if (!(isalnum(*uid) || *uid == '_'))
  66. return 0;
  67. uid++;
  68. }
  69. return 1;
  70. }
  71. void srv_log(xs_str *str)
  72. /* logs a debug message */
  73. {
  74. if (xs_str_in(str, srv_basedir) != -1) {
  75. /* replace basedir with ~ */
  76. str = xs_replace_i(str, srv_basedir, "~");
  77. }
  78. xs *tm = xs_str_localtime(0, "%H:%M:%S");
  79. fprintf(stderr, "%s %s\n", tm, str);
  80. /* if the ~/log/ folder exists, also write to a file there */
  81. xs *dt = xs_str_localtime(0, "%Y-%m-%d");
  82. xs *lf = xs_fmt("%s/log/%s.log", srv_basedir, dt);
  83. FILE *f;
  84. if ((f = fopen(lf, "a")) != NULL) {
  85. fprintf(f, "%s %s\n", tm, str);
  86. fclose(f);
  87. }
  88. xs_free(str);
  89. }
  90. void snac_log(snac *snac, xs_str *str)
  91. /* prints a user debugging information */
  92. {
  93. xs *o_str = str;
  94. xs_str *msg = xs_fmt("[%s] %s", snac->uid, o_str);
  95. if (xs_str_in(msg, snac->basedir) != -1) {
  96. /* replace long basedir references with ~ */
  97. msg = xs_replace_i(msg, snac->basedir, "~");
  98. }
  99. srv_log(msg);
  100. }
  101. xs_str *hash_password(const char *uid, const char *passwd, const char *nonce)
  102. /* hashes a password */
  103. {
  104. xs *d_nonce = NULL;
  105. xs *combi;
  106. xs *hash;
  107. if (nonce == NULL) {
  108. unsigned int r;
  109. xs_rnd_buf(&r, sizeof(r));
  110. d_nonce = xs_fmt("%08x", r);
  111. nonce = d_nonce;
  112. }
  113. combi = xs_fmt("%s:%s:%s", nonce, uid, passwd);
  114. hash = xs_sha1_hex(combi, strlen(combi));
  115. return xs_fmt("%s:%s", nonce, hash);
  116. }
  117. int check_password(const char *uid, const char *passwd, const char *hash)
  118. /* checks a password */
  119. {
  120. int ret = 0;
  121. xs *spl = xs_split_n(hash, ":", 1);
  122. if (xs_list_len(spl) == 2) {
  123. xs *n_hash = hash_password(uid, passwd, xs_list_get(spl, 0));
  124. ret = (strcmp(hash, n_hash) == 0);
  125. }
  126. return ret;
  127. }