1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
|
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2026 grunfink et al. / MIT license */
#define XS_IMPLEMENTATION
#include "xs.h"
#include "xs_hex.h"
#include "xs_io.h"
#include "xs_unicode_tbl.h"
#include "xs_unicode.h"
#include "xs_json.h"
#include "xs_curl.h"
#include "xs_openssl.h"
#include "xs_socket.h"
#include "xs_unix_socket.h"
#include "xs_url.h"
#include "xs_http.h"
#include "xs_httpd.h"
#include "xs_mime.h"
#include "xs_regex.h"
#include "xs_set.h"
#include "xs_time.h"
#include "xs_glob.h"
#include "xs_random.h"
#include "xs_match.h"
#include "xs_fcgi.h"
#include "xs_html.h"
#include "xs_po.h"
#include "xs_webmention.h"
#include "xs_list_tools.h"
#include "snac.h"
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <limits.h>
#include <stdlib.h>
xs_str *srv_basedir = NULL;
xs_dict *srv_config = NULL;
xs_str *srv_baseurl = NULL;
xs_str *srv_proxy_token_seed = NULL;
xs_dict *srv_langs = NULL;
int dbglevel = 0;
int mkdirx(const char *pathname)
/* creates a directory with special permissions */
{
int ret;
if ((ret = mkdir(pathname, DIR_PERM)) != -1) {
/* try to the set the setgid bit, to allow system users
to create files in these directories using the
command-line tool. This may fail in some restricted
environments, but it's of no use there anyway */
chmod(pathname, DIR_PERM_ADD);
}
return ret;
}
xs_str *tid(int offset)
/* returns a time-based Id */
{
struct timeval tv;
gettimeofday(&tv, NULL);
return xs_fmt("%010ld.%06ld", (long)tv.tv_sec + (long)offset, (long)tv.tv_usec);
}
double ftime(void)
/* returns the UNIX time as a float */
{
xs *ntid = tid(0);
return atof(ntid);
}
int validate_uid(const char *uid)
/* returns if uid is a valid identifier */
{
if (!uid || *uid == '\0')
return 0;
while (*uid) {
if (!(isalnum(*uid) || *uid == '_'))
return 0;
uid++;
}
return 1;
}
void srv_log(xs_str *str)
/* logs a debug message */
{
if (xs_str_in(str, srv_basedir) != -1) {
/* replace basedir with ~ */
str = xs_replace_i(str, srv_basedir, "~");
}
xs *tm = xs_str_localtime(0, "%H:%M:%S");
fprintf(stderr, "%s %s\n", tm, str);
/* if the ~/log/ folder exists, also write to a file there */
xs *dt = xs_str_localtime(0, "%Y-%m-%d");
xs *lf = xs_fmt("%s/log/%s.log", srv_basedir, dt);
FILE *f;
if ((f = fopen(lf, "a")) != NULL) {
fprintf(f, "%s %s\n", tm, str);
fclose(f);
}
xs_free(str);
}
void snac_log(snac *snac, xs_str *str)
/* prints a user debugging information */
{
xs *o_str = str;
xs_str *msg = xs_fmt("[%s] %s", snac->uid, o_str);
if (xs_str_in(msg, snac->basedir) != -1) {
/* replace long basedir references with ~ */
msg = xs_replace_i(msg, snac->basedir, "~");
}
srv_log(msg);
}
xs_str *hash_password(const char *uid, const char *passwd, const char *nonce)
/* hashes a password */
{
xs *d_nonce = NULL;
xs *combi;
xs *hash;
if (nonce == NULL) {
unsigned int r;
xs_rnd_buf(&r, sizeof(r));
d_nonce = xs_fmt("%08x", r);
nonce = d_nonce;
}
combi = xs_fmt("%s:%s:%s", nonce, uid, passwd);
hash = xs_sha1_hex(combi, strlen(combi));
return xs_fmt("%s:%s", nonce, hash);
}
int check_password(const char *uid, const char *passwd, const char *hash)
/* checks a password */
{
int ret = 0;
xs *spl = xs_split_n(hash, ":", 1);
if (xs_list_len(spl) == 2) {
xs *n_hash = hash_password(uid, passwd, xs_list_get(spl, 0));
ret = (strcmp(hash, n_hash) == 0);
}
return ret;
}
int strip_media(const char *fn)
/* strips EXIF data from a file */
{
int ret = 0;
const xs_val *v = xs_dict_get(srv_config, "strip_exif");
if (xs_type(v) == XSTYPE_TRUE) {
/* Heuristic: find 'user/' in the path to make it relative */
/* This works for ~/user/..., /var/snac/user/..., etc. */
const char *r_fn = strstr(fn, "user/");
if (r_fn == NULL) {
/* Fallback: try to strip ~/ if present */
if (strncmp(fn, "~/", 2) == 0)
r_fn = fn + 2;
else
r_fn = fn;
}
xs *l_fn = xs_tolower_i(xs_dup(r_fn));
/* check image extensions */
if (xs_endswith(l_fn, ".jpg") || xs_endswith(l_fn, ".jpeg") ||
xs_endswith(l_fn, ".png") || xs_endswith(l_fn, ".webp") ||
xs_endswith(l_fn, ".heic") || xs_endswith(l_fn, ".heif") ||
xs_endswith(l_fn, ".avif") || xs_endswith(l_fn, ".tiff") ||
xs_endswith(l_fn, ".gif") || xs_endswith(l_fn, ".bmp")) {
const char *mp = xs_dict_get(srv_config, "mogrify_path");
if (mp == NULL)
mp = "mogrify";
xs *cmd = xs_fmt("cd \"%s\" && %s -auto-orient -strip \"%s\" 2>/dev/null", srv_basedir, mp, r_fn);
ret = system(cmd);
if (ret != 0) {
int code = 0;
if (WIFEXITED(ret))
code = WEXITSTATUS(ret);
if (code == 127)
srv_log(xs_fmt("strip_media: error stripping %s. '%s' not found (exit 127). Set 'mogrify_path' in server.json.", r_fn, mp));
else
srv_log(xs_fmt("strip_media: error stripping %s %d", r_fn, ret));
}
else
srv_debug(1, xs_fmt("strip_media: stripped %s", r_fn));
}
else
/* check video extensions */
if (xs_endswith(l_fn, ".mp4") || xs_endswith(l_fn, ".m4v") ||
xs_endswith(l_fn, ".mov") || xs_endswith(l_fn, ".webm") ||
xs_endswith(l_fn, ".mkv") || xs_endswith(l_fn, ".avi")) {
const char *fp = xs_dict_get(srv_config, "ffmpeg_path");
if (fp == NULL)
fp = "ffmpeg";
/* ffmpeg cannot modify in-place, so we need a temp file */
/* we must preserve valid extension for ffmpeg to guess the format */
const char *ext = strrchr(r_fn, '.');
if (ext == NULL) ext = "";
xs *tmp_fn = xs_fmt("%s.tmp%s", r_fn, ext);
/* -map_metadata -1 strips all global metadata */
/* -c copy copies input streams without re-encoding */
/* we don't silence stderr so we can debug issues */
/* we explicitly cd to srv_basedir to ensure relative paths work */
xs *cmd = xs_fmt("cd \"%s\" && %s -y -i \"%s\" -map_metadata -1 -c copy \"%s\"", srv_basedir, fp, r_fn, tmp_fn);
ret = system(cmd);
if (ret != 0) {
int code = 0;
if (WIFEXITED(ret))
code = WEXITSTATUS(ret);
if (code == 127)
srv_log(xs_fmt("strip_media: error stripping %s. '%s' not found (exit 127). Set 'ffmpeg_path' in server.json.", r_fn, fp));
else {
srv_log(xs_fmt("strip_media: error stripping %s %d", r_fn, ret));
srv_log(xs_fmt("strip_media: command was: %s", cmd));
}
/* try to cleanup, just in case */
/* unlink needs full path too if we are not in basedir */
xs *full_tmp_fn = xs_fmt("%s/%s", srv_basedir, tmp_fn);
unlink(full_tmp_fn);
}
else {
/* rename tmp file to original */
/* use full path for source because it was created relative to basedir */
xs *full_tmp_fn = xs_fmt("%s/%s", srv_basedir, tmp_fn);
if (rename(full_tmp_fn, fn) == 0)
srv_debug(1, xs_fmt("strip_media: stripped %s", fn));
else
srv_log(xs_fmt("strip_media: error renaming %s to %s", full_tmp_fn, fn));
}
}
}
return ret;
}
int check_strip_tool(void)
{
const xs_val *v = xs_dict_get(srv_config, "strip_exif");
int ret = 1;
if (xs_type(v) == XSTYPE_TRUE) {
/* check mogrify */
{
const char *mp = xs_dict_get(srv_config, "mogrify_path");
if (mp == NULL)
mp = "mogrify";
xs *cmd = xs_fmt("%s -version 2>/dev/null >/dev/null", mp);
if (system(cmd) != 0) {
srv_log(xs_fmt("check_strip_tool: '%s' not working", mp));
ret = 0;
}
}
/* check ffmpeg */
if (ret) {
const char *fp = xs_dict_get(srv_config, "ffmpeg_path");
if (fp == NULL)
fp = "ffmpeg";
xs *cmd = xs_fmt("%s -version 2>/dev/null >/dev/null", fp);
if (system(cmd) != 0) {
srv_log(xs_fmt("check_strip_tool: '%s' not working", fp));
ret = 0;
}
}
}
return ret;
}
|