about summary refs log tree commit diff
path: root/show.c
blob: 7c90b797504014a358957674532089d5d219b302 (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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
#include <sys/stat.h>
#include <sys/types.h>

#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <iconv.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "blaze822.h"

static int rflag;
static int qflag;
static int Hflag;
static int Lflag;
static int tflag;
static char defaulthflags[] = "from:subject:to:cc:date:";
static char *hflag = defaulthflags;
static char *xflag;
static char *Oflag;

struct message *filters;

static int mimecount;

void
printhdr(char *hdr)
{
	int uc = 1;

	while (*hdr && *hdr != ':') {
		putc(uc ? toupper(*hdr) : *hdr, stdout);
		uc = (*hdr == '-');
		hdr++;
	}

	if (*hdr) {
		printf("%s\n", hdr);
	}
}

void
print_u8recode(char *body, size_t bodylen, char *srcenc)
{
	iconv_t ic;

	ic = iconv_open("UTF-8", srcenc);
	if (ic == (iconv_t)-1) {
		printf("unsupported encoding: %s\n", srcenc);
		return;
	}

	char final_char = 0;

	char buf[4096];
	while (bodylen > 0) {
		char *bufptr = buf;
		size_t buflen = sizeof buf;
		size_t r = iconv(ic, &body, &bodylen, &bufptr, &buflen);

		if (bufptr != buf) {
			fwrite(buf, 1, bufptr-buf, stdout);
			final_char = bufptr[-1];
		}

		if (r != (size_t)-1) {  // done, flush iconv
			bufptr = buf;
			buflen = sizeof buf;
			r = iconv(ic, 0, 0, &bufptr, &buflen);
			if (bufptr != buf) {
				fwrite(buf, 1, bufptr-buf, stdout);
				final_char = bufptr[-1];
			}
			if (r != (size_t)-1)
				break;
		}

		if (r == (size_t)-1 && errno != E2BIG) {
			perror("iconv");
			break;
		}
	}

	if (final_char != '\n')
		printf("\n");

	iconv_close(ic);
}

char *
mimetype(char *ct)
{
	char *s;
	for (s = ct; *s && *s != ';' && *s != ' ' && *s != '\t'; s++)
		;

	return strndup(ct, s-ct);
}

char *
tlmimetype(char *ct)
{
	char *s;
	for (s = ct; *s && *s != ';' && *s != ' ' && *s != '\t' && *s != '/'; s++)
		;

	return strndup(ct, s-ct);
}

typedef enum {
	MIME_CONTINUE,
	MIME_STOP,
	MIME_PRUNE,
} mime_action;

typedef mime_action (*mime_callback)(int, char *, char *, size_t);

mime_action
render_mime(int depth, char *ct, char *body, size_t bodylen)
{
	char *mt = mimetype(ct);
	char *tlmt = tlmimetype(ct);

	char *filename = 0, *fn, *fne;
	if (blaze822_mime_parameter(ct, "name", &fn, &fne))
		filename = strndup(fn, fne-fn);

	mimecount++;

	int i;
	for (i = 0; i < depth+1; i++)
		printf("--- ");
	printf("%d: %s size=%zd", mimecount, mt, bodylen);
	if (filename) {
		printf(" name=%s", filename);
		free(filename);
	}

	char *cmd;
	mime_action r = MIME_CONTINUE;

	if (filters &&
	    ((cmd = blaze822_chdr(filters, mt)) ||
	    (cmd = blaze822_chdr(filters, tlmt)))) {
		printf(" filter=\"%s\" ---\n", cmd);
		FILE *p;
		fflush(stdout);
		p = popen(cmd, "w");
		if (!p) {
			perror("popen");
			goto nofilter;
		}
		fwrite(body, 1, bodylen, p);
		if (pclose(p) != 0) {
			perror("pclose");
			goto nofilter;
		}
		r = MIME_PRUNE;
	} else {
nofilter:
		printf(" ---\n");

		if (strncmp(ct, "text/", 5) == 0) {
			char *charset = 0, *cs, *cse;
			if (blaze822_mime_parameter(ct, "charset", &cs, &cse))
				charset = strndup(cs, cse-cs);
			if (!charset ||
			    strcasecmp(charset, "utf-8") == 0 ||
			    strcasecmp(charset, "utf8") == 0 ||
			    strcasecmp(charset, "us-ascii") == 0)
				fwrite(body, 1, bodylen, stdout);
			else
				print_u8recode(body, bodylen, charset);
			free(charset);
		} else if (strncmp(ct, "message/rfc822", 14) == 0) {
			struct message *imsg = blaze822_mem(body, bodylen);
			char *h = 0;
			if (imsg) {
				while ((h = blaze822_next_header(imsg, h)))
					printf("%s\n", h);
				printf("\n");
			}
		} else if (strncmp(ct, "multipart/", 10) == 0) {
			;
		} else {
			printf("no filter or default handler\n");
		}
	}

	free(mt);
	free(tlmt);

	return r;
}

mime_action
list_mime(int depth, char *ct, char *body, size_t bodylen)
{
	(void) body;

	char *mt = mimetype(ct);
	char *fn, *fne;

	printf("%*.s%d: %s size=%zd", depth*2, "", ++mimecount, mt, bodylen);
	if (blaze822_mime_parameter(ct, "name", &fn, &fne)) {
		printf(" name=");
		fwrite(fn, 1, fne-fn, stdout);
	}
	printf("\n");

	return MIME_CONTINUE;
}

mime_action
walk_mime(struct message *msg, int depth, mime_callback visit)
{
	char *ct, *body, *bodychunk;
	size_t bodylen;

	mime_action r = MIME_CONTINUE;

	if (blaze822_mime_body(msg, &ct, &body, &bodylen, &bodychunk)) {

		mime_action r = visit(depth, ct, body, bodylen);

		if (r == MIME_CONTINUE) {
			if (strncmp(ct, "multipart/", 10) == 0) {
				struct message *imsg = 0;
				while (blaze822_multipart(msg, &imsg)) {
					r = walk_mime(imsg, depth+1, visit);
					if (r == MIME_STOP)
						break;
				}
			} else if (strncmp(ct, "message/rfc822", 14) == 0) {
				struct message *imsg = blaze822_mem(body, bodylen);
				if (imsg)
					walk_mime(imsg, depth+1, visit);
			}
		}

		free(bodychunk);
	}

	return r;
}

void
list(char *file)
{
	struct message *msg = blaze822_file(file);
	if (!msg)
		return;
	mimecount = 0;
	walk_mime(msg, 0, list_mime);
}

static int extract_argc;
static char **extract_argv;
static int extract_stdout;

static int
writefile(char *name, char *buf, ssize_t len)
{
	int fd = open(name, O_CREAT | O_EXCL | O_WRONLY, 0666);
	if (fd == -1) {
		perror("open");
		return -1;
	}
	if (write(fd, buf, len) != len) {
		// XXX partial write
		perror("write");
		return -1;
	}
	close(fd);
	return 0;
}

mime_action
extract_mime(int depth, char *ct, char *body, size_t bodylen)
{
	(void) body;
	(void) depth;

	char *filename = 0, *fn, *fne;
	if (blaze822_mime_parameter(ct, "name", &fn, &fne))
		filename = strndup(fn, fne-fn);

	mimecount++;

	if (extract_argc == 0) {
		if (extract_stdout) { // output all parts
			fwrite(body, 1, bodylen, stdout);
		} else { // extract all named attachments
			if (filename) {
				printf("%s\n", filename);
				writefile(filename, body, bodylen);
			}
		}
	} else {
		int i;
		for (i = 0; i < extract_argc; i++) {
			char *a = extract_argv[i];
			char *b;
			errno = 0;
			long d = strtol(a, &b, 10);
			if (errno == 0 && !*b && d == mimecount) {
				// extract by id
				if (extract_stdout) {
					fwrite(body, 1, bodylen, stdout);
				} else {
					char buf[255];
					if (!filename) {
						snprintf(buf, sizeof buf,
						    "attachment%d", mimecount);
						filename = buf;
					}
					printf("%s\n", filename);
					writefile(filename, body, bodylen);
				}
			} else if (filename && strcmp(a, filename) == 0) {
				// extract by name
				if (extract_stdout) {
					fwrite(body, 1, bodylen, stdout);
				} else {
					printf("%s\n", filename);
					writefile(filename, body, bodylen);
				}
			}
		}
	}

	free(filename);
	return MIME_CONTINUE;
}

void
extract(char *file, int argc, char **argv, int use_stdout)
{
	struct message *msg = blaze822_file(file);
	if (!msg)
		return;
	mimecount = 0;
	extract_argc = argc;
	extract_argv = argv;
	extract_stdout = use_stdout;
	walk_mime(msg, 0, extract_mime);
}

static char *newcur;

void
show(char *file)
{
	struct message *msg;

	while (*file == ' ' || *file == '\t')
		file++;

	if (newcur) {
		printf("\014\n");
		free(newcur);
	}
	newcur = strdup(file);

	if (qflag)
		msg = blaze822(file);
	else
		msg = blaze822_file(file);
	if (!msg) {
		fprintf(stderr, "show: %s: %s\n", file, strerror(errno));
		return;
	}

	if (Hflag) {  // raw headers
		size_t hl = blaze822_headerlen(msg);
		char *header = malloc(hl);
		if (!header)
			return;
		int fd = open(file, O_RDONLY);
		if (fd == -1)
			return;
		hl = read(fd, header, hl);
		fwrite(header, 1, hl, stdout);
	} else if (Lflag) {  // all headers
		char *h = 0;
		while ((h = blaze822_next_header(msg, h))) {
			char d[4096];
			blaze822_decode_rfc2047(d, h, sizeof d, "UTF-8");
			printhdr(d);
		}
	} else {  // selected headers
		char *h = hflag;
		char *v;
		while (*h) {
			char *n = strchr(h, ':');
			if (n)
				*n = 0;
			v = blaze822_chdr(msg, h);
			if (v) {
				printhdr(h);
				printf(": %s\n", v);
			}
			if (n) {
				*n = ':';
				h = n + 1;
			} else {
				break;
			}
		}
	}

	if (qflag)  // no body
		goto done;

	printf("\n");

	if (rflag || !blaze822_check_mime(msg)) {  // raw body
		fwrite(blaze822_body(msg), 1, blaze822_bodylen(msg), stdout);
		goto done;
	}

	mimecount = 0;
	walk_mime(msg, 0, render_mime);

done:
	blaze822_free(msg);
}

int
main(int argc, char *argv[])
{
	int c;
	while ((c = getopt(argc, argv, "h:qrtHLx:O:")) != -1)
		switch(c) {
		case 'h': hflag = optarg; break;
		case 'q': qflag = 1; break;
		case 'r': rflag = 1; break;
		case 'H': Hflag = 1; break;
		case 'L': Lflag = 1; break;
		case 't': tflag = 1; break;
		case 'x': xflag = optarg; break;
		case 'O': Oflag = optarg; break;
                default:
                        // XXX usage
                        exit(1);
                }

	if (xflag) { // extract
		extract(xflag, argc-optind, argv+optind, 0);
	} else if (Oflag) { // extract to stdout
		extract(Oflag, argc-optind, argv+optind, 1);
	} else if (tflag) { // list
		blaze822_loop(argc-optind, argv+optind, list);
	} else { // show
		if (!(qflag || rflag))
			filters = blaze822("filters");
		blaze822_loop(argc-optind, argv+optind, show);
		blaze822_seq_setcur(newcur);
	}

	return 0;
}