about summary refs log tree commit diff
path: root/notemap.c
blob: 99a14181d7259ba6019e456d9f67c0f1685cd2fe (plain) (blame)
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
/* Copyright (C) 2020  C. McEnroe <june@causal.agency>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

#include "compat.h"

#include <err.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sysexits.h>
#include <time.h>
#include <unistd.h>

#ifndef NO_READPASSPHRASE_H
#include <readpassphrase.h>
#endif

#include "imap.h"

#if !defined(DIG_PATH) && !defined(DRILL_PATH)
#	ifdef __FreeBSD__
#		define DRILL_PATH "/usr/bin/drill"
#	else
#		define DIG_PATH "dig"
#	endif
#endif

typedef unsigned char byte;

static void lookup(const char **host, const char **port, const char *domain) {
	static char buf[1024];
	snprintf(buf, sizeof(buf), "_imaps._tcp.%s", domain);

	int rw[2];
	int error = pipe(rw);
	if (error) err(EX_OSERR, "pipe");

	pid_t pid = fork();
	if (pid < 0) err(EX_OSERR, "fork");

	if (!pid) {
		close(rw[0]);
		dup2(rw[1], STDOUT_FILENO);
		dup2(rw[1], STDERR_FILENO);
		close(rw[1]);
#ifdef DRILL_PATH
		execlp(DRILL_PATH, DRILL_PATH, buf, "SRV", NULL);
		err(EX_CONFIG, "%s", DRILL_PATH);
#else
		execlp(DIG_PATH, DIG_PATH, "-t", "SRV", "-q", buf, "+short", NULL);
		err(EX_CONFIG, "%s", DIG_PATH);
#endif
	}

	int status;
	pid = wait(&status);
	if (pid < 0) err(EX_OSERR, "wait");

	close(rw[1]);
	FILE *pipe = fdopen(rw[0], "r");
	if (!pipe) err(EX_IOERR, "fdopen");

	fgets(buf, sizeof(buf), pipe);
	if (ferror(pipe)) err(EX_IOERR, "fgets");

	if (!WIFEXITED(status) || WEXITSTATUS(status)) {
		fprintf(stderr, "%s", buf);
		exit(WEXITSTATUS(status));
	}

	char *ptr = buf;
#ifdef DRILL_PATH
	for (;;) {
		char *line = fgets(buf, sizeof(buf), pipe);
		if (!line || !strcmp(line, ";; ANSWER SECTION:\n")) break;
	}
	fgets(buf, sizeof(buf), pipe);
	if (ferror(pipe)) err(EX_IOERR, "fgets");
	ptr = strrchr(buf, '\t');
	ptr = (ptr ? ptr + 1 : buf);
#endif
	fclose(pipe);

	char *dot = strrchr(ptr, '.');
	if (dot) *dot = '\0';
	strsep(&ptr, " \n"); // priority
	strsep(&ptr, " \n"); // weight
	*port = strsep(&ptr, " \n");
	*host = strsep(&ptr, " \n");
	if (!*host) {
		*host = domain;
		*port = "imaps";
	}
}

static const char *uuidGen(void) {
	byte uuid[16];
	arc4random_buf(uuid, sizeof(uuid));
	uuid[6] &= 0x0F;
	uuid[6] |= 0x40;
	uuid[8] &= 0x3F;
	uuid[8] |= 0x80;

	static char str[sizeof("00000000-0000-0000-0000-000000000000")];
	snprintf(
		str, sizeof(str),
		"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
		uuid[0], uuid[1], uuid[2], uuid[3],
		uuid[4], uuid[5], uuid[6], uuid[7],
		uuid[8], uuid[9], uuid[10], uuid[11],
		uuid[12], uuid[13], uuid[14], uuid[15]
	);
	return str;
}

static bool uuidCheck(const char *uuid) {
	if (strlen(uuid) != 36) return false;
	if (strspn(uuid, "0123456789abcdef-") != 36) return false;
	return true;
}

#define DATE_FORMAT "%a, %e %b %Y %H:%M:%S %z"

static char *format(const char *from, const char *uuid, const char *path) {
	FILE *note = fopen(path, "r");
	if (!note) err(EX_NOINPUT, "%s", path);

	struct stat status;
	int error = fstat(fileno(note), &status);
	if (error) err(EX_IOERR, "%s", path);

	char date[sizeof("Mon, 00 Jan 0000 00:00:00 -0000")];
	strftime(
		date, sizeof(date), DATE_FORMAT,
		localtime(&status.st_mtime)
	);

	char subj[78 - (sizeof("Subject: ") - 1)] = {0};
	for (size_t i = 0; i < sizeof(subj) - 1; ++i) {
		if (!path[i]) break;
		subj[i] = (path[i] & 0x80 ? '?' : path[i]);
	}

#define HEADERS \
	"From: <%s>\r\n" \
	"Subject: %s\r\n" \
	"Date: %s\r\n" \
	"X-Universally-Unique-Identifier: %s\r\n" \
	"X-Uniform-Type-Identifier: com.apple.mail-note\r\n" \
	"X-Mailer: notemap\r\n" \
	"MIME-Version: 1.0\r\n" \
	"Content-Type: text/plain; charset=\"utf-8\"\r\n" \
	"Content-Transfer-Encoding: quoted-printable\r\n" \
	"\r\n"

	size_t max = sizeof(HEADERS)
		+ strlen(from)
		+ strlen(subj)
		+ strlen(date)
		+ strlen(uuid)
		+ 3 * status.st_size
		+ 3 * status.st_size / 76;
	char *buf = malloc(max);
	if (!buf) err(EX_OSERR, "malloc");

	FILE *msg = fmemopen(buf, max, "w");
	if (!msg) err(EX_OSERR, "fmemopen");
	fprintf(msg, HEADERS, from, subj, date, uuid);
#undef HEADERS

	int ch;
	int len = 0;
	bool ws = false;
	while (EOF != (ch = fgetc(note))) {
		if (len == 75 && ch != '\n') {
			fprintf(msg, "=\r\n");
			len = 0;
		}
		if (ch == '\n') {
			fprintf(msg, "%s\r\n", (ws ? "=\r\n" : ""));
			len = 0;
		} else if (ch == '\t' || (ch >= ' ' && ch <= '~' && ch != '=')) {
			fprintf(msg, "%c", ch);
			len++;
		} else {
			fprintf(msg, "=%02X", ch);
			len += 3;
		}
		ws = (ch == '\t' || ch == ' ');
	}
	if (ferror(note)) err(EX_IOERR, "%s", path);
	fclose(note);
	fclose(msg);

	buf[max - 1] = '\0';
	return buf;
}

int main(int argc, char *argv[]) {
	const char *path = ".notemap";
	bool add = false;
	bool force = false;

	const char *user = NULL;
	const char *host = NULL;
	const char *port = "imaps";
	const char *mailbox = "Notes";
	int rppFlags = 0;

	int opt;
	while (0 < (opt = getopt(argc, argv, "M:afh:m:p:u:vw"))) {
		switch (opt) {
			break; case 'M': mailbox = optarg;
			break; case 'a': add = true;
			break; case 'f': force = true;
			break; case 'h': host = optarg;
			break; case 'm': path = optarg;
			break; case 'p': port = optarg;
			break; case 'u': user = optarg;
			break; case 'v': imapVerbose = true;
			break; case 'w': rppFlags |= RPP_STDIN;
			break; default:  return EX_USAGE;
		}
	}
	if (!user) errx(EX_USAGE, "username required");
	argv += optind;
	argc -= optind;
	
	if (!host) {
		const char *domain = strchr(user, '@');
		if (!domain) errx(EX_USAGE, "no domain in username");
		lookup(&host, &port, &domain[1]);
	}

	char buf[1024];
	char *pass = readpassphrase(
		(rppFlags & RPP_STDIN ? "" : "Password: "),
		buf, sizeof(buf), rppFlags
	);
	if (!pass) err(EX_UNAVAILABLE, "readpassphrase");

	if (add) {
		FILE *map = fopen(path, "a");
		if (!map) err(EX_CANTCREAT, "%s", path);
		for (int i = 0; i < argc; ++i) {
			if (access(argv[i], R_OK)) err(EX_NOINPUT, "%s", argv[i]);
			fprintf(map, "%s %s\n", uuidGen(), argv[i]);
			if (ferror(map)) err(EX_IOERR, "%s", path);
		}
		int error = fclose(map);
		if (error) err(EX_IOERR, "%s", path);
	}

	FILE *map = fopen(path, "r");
	if (!map) err(EX_NOINPUT, "%s", path);

	size_t cap = 0;
	char *entry = NULL;
	char *uuid = NULL;
	char *note = NULL;
	uint32_t seq = 0;
	char *message = NULL;

	enum Atom login = 0;
	enum Atom next = atom("next");
	enum Atom create = atom("create");
	enum Atom replace = atom("replace");

	FILE *imapRead, *imap;
	imapOpen(&imapRead, &imap, host, port);
	for (
		struct Resp resp;
		resp = imapResp(imapRead), resp.resp != AtomBye;
		respFree(resp)
	) {
		if (resp.resp == AtomNo || resp.resp == AtomBad) {
			errx(EX_CONFIG, "%s: %s", Atoms[resp.resp], resp.text);
		}

		if (!login) {
			login = atom("login");
			fprintf(
				imap, "%s LOGIN \"%s\" \"%s\"\r\n",
				Atoms[login], user, pass
			);
		}

		if (resp.tag == login) {
			fprintf(imap, "%s SELECT \"%s\"\r\n", Atoms[next], mailbox);
		}

		ssize_t len;
		if (resp.tag == next) {
next:
			len = getline(&entry, &cap, map);
			if (ferror(map)) err(EX_IOERR, "%s", path);
			if (len < 1) {
				fprintf(imap, "ayy LOGOUT\r\n");
				continue;
			}
			if (entry[len - 1] == '\n') entry[len - 1] = '\0';

			note = entry;
			uuid = strsep(&note, " ");
			if (!note || !uuid || !uuidCheck(uuid)) {
				errx(EX_CONFIG, "invalid map entry: %s", entry);
			}

			if (argc) {
				int i;
				for (i = 0; i < argc; ++i) {
					if (!argv[i]) continue;
					if (strcmp(argv[i], note)) continue;
					argv[i] = NULL;
					break;
				}
				if (i == argc) goto next;
			}

			fprintf(
				imap,
				"%s SEARCH HEADER X-Universally-Unique-Identifier \"%s\"\r\n",
				Atoms[AtomSearch], uuid
			);
			continue;
		}

		if (resp.resp == AtomSearch) {
			if (resp.data.len > 1) {
				errx(EX_CONFIG, "multiple messages matching %s", uuid);
			}
			if (resp.data.len) {
				if (resp.data.ptr[0].type != Number) {
					errx(EX_PROTOCOL, "invalid search result");
				}
				seq = resp.data.ptr[0].number;
				fprintf(
					imap, "%s FETCH %" PRIu32 " ENVELOPE\r\n",
					Atoms[AtomFetch], seq
				);
			} else {
				message = format(user, uuid, note);
				fprintf(
					imap, "%s APPEND %s (\\Seen) {%zu}\r\n",
					Atoms[create], mailbox, strlen(message)
				);
			}
		}

		if (
			resp.resp == AtomFetch &&
			resp.data.len &&
			resp.data.ptr[0].type == List &&
			resp.data.ptr[0].list.len > 1 &&
			resp.data.ptr[0].list.ptr[0].type == Atom &&
			resp.data.ptr[0].list.ptr[0].atom == AtomEnvelope &&
			resp.data.ptr[0].list.ptr[1].type == List
		) {
			struct List envelope = resp.data.ptr[0].list.ptr[1].list;
			struct tm date = {0};
			char *rest = strptime(envelope.ptr[0].string, DATE_FORMAT, &date);
			if (!rest) errx(EX_PROTOCOL, "invalid envelope date format");

			struct stat status;
			int error = stat(note, &status);
			if (error) err(EX_NOINPUT, "%s", note);

			if (!force && status.st_mtime < mktime(&date)) {
				errx(
					EX_TEMPFAIL,
					"%s: note modified in mailbox; use -f to overwrite",
					note
				);
			} else if (status.st_mtime == mktime(&date)) {
				goto next;
			}

			message = format(user, uuid, note);
			fprintf(
				imap, "%s APPEND %s (\\Seen) {%zu}\r\n",
				Atoms[replace], mailbox, strlen(message)
			);
		}

		if (resp.tag == AtomContinue) {
			fprintf(imap, "%s\r\n", message);
			free(message);
		}

		if (resp.tag == create) {
			printf("+ %s\n", note);
			goto next;
		}

		if (resp.tag == replace) {
			printf("~ %s\n", note);
			fprintf(
				imap, "%s STORE %" PRIu32 " +FLAGS (\\Deleted)\r\n",
				Atoms[next], seq
			);
		}
	}
	fclose(imapRead);
	fclose(imap);

	int ret = EX_OK;
	for (int i = 0; i < argc; ++i) {
		if (!argv[i]) continue;
		warnx("%s: unmapped note; use -a to add", argv[i]);
		ret = EX_CONFIG;
	}
	return ret;
}