summaryrefslogtreecommitdiffstats
path: root/printf.c
blob: 0977d5efdac4de725f678820d6b18c2e182bca47 (plain)
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
/*********************************************************************
 * bfs                                                               *
 * Copyright (C) 2017 Tavian Barnes <tavianator@tavianator.com>      *
 *                                                                   *
 * This program is free software. It comes without any warranty, to  *
 * the extent permitted by applicable law. You can redistribute it   *
 * and/or modify it under the terms of the Do What The Fuck You Want *
 * To Public License, Version 2, as published by Sam Hocevar. See    *
 * the COPYING file or http://www.wtfpl.net/ for more details.       *
 *********************************************************************/

#include "printf.h"
#include "color.h"
#include "dstring.h"
#include "util.h"
#include <assert.h>
#include <errno.h>
#include <grp.h>
#include <pwd.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <time.h>

typedef int bfs_printf_fn(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf);

/**
 * A single directive in a printf command.
 */
struct bfs_printf_directive {
	/** The printing function to invoke. */
	bfs_printf_fn *fn;
	/** String data associated with this directive. */
	char *str;
	/** The next printf directive in the chain. */
	struct bfs_printf_directive *next;
};

/** Print some text as-is. */
static int bfs_printf_literal(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return fprintf(file, "%s", directive->str);
}

/** \c: flush */
static int bfs_printf_flush(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return fflush(file);
}

/**
 * Print a value to a temporary buffer before formatting it.
 */
#define BFS_PRINTF_BUF(buf, format, ...)				\
	char buf[256];							\
	int ret = snprintf(buf, sizeof(buf), format, __VA_ARGS__);	\
	assert(ret >= 0 && ret < sizeof(buf));				\
	(void)ret

/**
 * Print a ctime()-style string, for %a, %c, and %t.
 */
static int bfs_printf_ctime(FILE *file, const struct bfs_printf_directive *directive, const struct timespec *ts) {
	// Not using ctime() itself because GNU find adds nanoseconds
	static const char *days[] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
	static const char *months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};

	const struct tm *tm = localtime(&ts->tv_sec);
	BFS_PRINTF_BUF(buf, "%s %s %2d %.2d:%.2d:%.2d.%09ld0 %4d",
		       days[tm->tm_wday],
		       months[tm->tm_mon],
		       tm->tm_mday,
		       tm->tm_hour,
		       tm->tm_min,
		       tm->tm_sec,
		       (long)ts->tv_nsec,
		       1900 + tm->tm_year);

	return fprintf(file, directive->str, buf);
}

/** %a: access time */
static int bfs_printf_a(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return bfs_printf_ctime(file, directive, &ftwbuf->statbuf->st_atim);
}

/** %b: blocks */
static int bfs_printf_b(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	BFS_PRINTF_BUF(buf, "%ju", (uintmax_t)ftwbuf->statbuf->st_blocks);
	return fprintf(file, directive->str, buf);
}

/** %c: change time */
static int bfs_printf_c(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return bfs_printf_ctime(file, directive, &ftwbuf->statbuf->st_ctim);
}

/** %d: depth */
static int bfs_printf_d(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return fprintf(file, directive->str, (intmax_t)ftwbuf->depth);
}

/** %D: device */
static int bfs_printf_D(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	BFS_PRINTF_BUF(buf, "%ju", (uintmax_t)ftwbuf->statbuf->st_dev);
	return fprintf(file, directive->str, buf);
}

/** %f: file name */
static int bfs_printf_f(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return fprintf(file, directive->str, ftwbuf->path + ftwbuf->nameoff);
}

/** %G: gid */
static int bfs_printf_G(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	BFS_PRINTF_BUF(buf, "%ju", (uintmax_t)ftwbuf->statbuf->st_gid);
	return fprintf(file, directive->str, buf);
}

/** %g: group name */
static int bfs_printf_g(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	struct group *grp = getgrgid(ftwbuf->statbuf->st_gid);
	if (!grp) {
		return bfs_printf_G(file, directive, ftwbuf);
	}

	return fprintf(file, directive->str, grp->gr_name);
}

/** %h: leading directories */
static int bfs_printf_h(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	char *copy = NULL;
	const char *buf;

	if (ftwbuf->nameoff > 0) {
		size_t len = ftwbuf->nameoff;
		if (len > 1) {
			--len;
		}

		buf = copy = strndup(ftwbuf->path, len);
	} else if (ftwbuf->path[0] == '/') {
		buf = "/";
	} else {
		buf = ".";
	}

	int ret = fprintf(file, directive->str, buf);
	free(copy);
	return ret;
}

/** %H: current root */
static int bfs_printf_H(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return fprintf(file, directive->str, ftwbuf->root);
}

/** %i: inode */
static int bfs_printf_i(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	BFS_PRINTF_BUF(buf, "%ju", (uintmax_t)ftwbuf->statbuf->st_ino);
	return fprintf(file, directive->str, buf);
}

/** %k: 1K blocks */
static int bfs_printf_k(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	BFS_PRINTF_BUF(buf, "%ju", (uintmax_t)(ftwbuf->statbuf->st_blocks + 1)/2);
	return fprintf(file, directive->str, buf);
}

/** %l: link target */
static int bfs_printf_l(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	if (ftwbuf->typeflag != BFTW_LNK) {
		return 0;
	}

	char *target = xreadlinkat(ftwbuf->at_fd, ftwbuf->at_path, 0);
	if (!target) {
		return -1;
	}

	int ret = fprintf(file, directive->str, target);
	free(target);
	return ret;
}

/** %m: mode */
static int bfs_printf_m(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return fprintf(file, directive->str, (unsigned int)(ftwbuf->statbuf->st_mode & 07777));
}

/** %M: symbolic mode */
static int bfs_printf_M(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	char buf[] = "----------";

	switch (ftwbuf->typeflag) {
	case BFTW_BLK:
		buf[0] = 'b';
		break;
	case BFTW_CHR:
		buf[0] = 'c';
		break;
	case BFTW_DIR:
		buf[0] = 'd';
		break;
	case BFTW_DOOR:
		buf[0] = 'D';
		break;
	case BFTW_FIFO:
		buf[0] = 'p';
		break;
	case BFTW_LNK:
		buf[0] = 'l';
		break;
	case BFTW_SOCK:
		buf[0] = 's';
		break;
	default:
		break;
	}

	mode_t mode = ftwbuf->statbuf->st_mode;

	if (mode & 00400) {
		buf[1] = 'r';
	}
	if (mode & 00200) {
		buf[2] = 'w';
	}
	if ((mode & 04100) == 04000) {
		buf[3] = 'S';
	} else if (mode & 04000) {
		buf[3] = 's';
	} else if (mode & 00100) {
		buf[3] = 'x';
	}

	if (mode & 00040) {
		buf[4] = 'r';
	}
	if (mode & 00020) {
		buf[5] = 'w';
	}
	if ((mode & 02010) == 02000) {
		buf[6] = 'S';
	} else if (mode & 02000) {
		buf[6] = 's';
	} else if (mode & 00010) {
		buf[6] = 'x';
	}

	if (mode & 00004) {
		buf[7] = 'r';
	}
	if (mode & 00002) {
		buf[8] = 'w';
	}
	if ((mode & 01001) == 01000) {
		buf[9] = 'T';
	} else if (mode & 01000) {
		buf[9] = 't';
	} else if (mode & 00001) {
		buf[9] = 'x';
	}

	return fprintf(file, directive->str, buf);
}

/** %n: link count */
static int bfs_printf_n(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	BFS_PRINTF_BUF(buf, "%ju", (uintmax_t)ftwbuf->statbuf->st_nlink);
	return fprintf(file, directive->str, buf);
}

/** %p: full path */
static int bfs_printf_p(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return fprintf(file, directive->str, ftwbuf->path);
}

/** %P: path after root */
static int bfs_printf_P(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	const char *path = ftwbuf->path + strlen(ftwbuf->root);
	if (path[0] == '/') {
		++path;
	}
	return fprintf(file, directive->str, path);
}

/** %s: size */
static int bfs_printf_s(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	BFS_PRINTF_BUF(buf, "%ju", (uintmax_t)ftwbuf->statbuf->st_size);
	return fprintf(file, directive->str, buf);
}

/** %S: sparseness */
static int bfs_printf_S(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	double sparsity = 512.0 * ftwbuf->statbuf->st_blocks / ftwbuf->statbuf->st_size;
	return fprintf(file, directive->str, sparsity);
}

/** %t: modification time */
static int bfs_printf_t(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	return bfs_printf_ctime(file, directive, &ftwbuf->statbuf->st_mtim);
}

/** %U: uid */
static int bfs_printf_U(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	BFS_PRINTF_BUF(buf, "%ju", (uintmax_t)ftwbuf->statbuf->st_uid);
	return fprintf(file, directive->str, buf);
}

/** %u: user name */
static int bfs_printf_u(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	struct passwd *pwd = getpwuid(ftwbuf->statbuf->st_uid);
	if (!pwd) {
		return bfs_printf_U(file, directive, ftwbuf);
	}

	return fprintf(file, directive->str, pwd->pw_name);
}

/** %y: type */
static int bfs_printf_y(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	const char *type;
	switch (ftwbuf->typeflag) {
	case BFTW_BLK:
		type = "b";
		break;
	case BFTW_CHR:
		type = "c";
		break;
	case BFTW_DIR:
		type = "d";
		break;
	case BFTW_DOOR:
		type = "D";
		break;
	case BFTW_FIFO:
		type = "p";
		break;
	case BFTW_LNK:
		type = "l";
		break;
	case BFTW_REG:
		type = "f";
		break;
	case BFTW_SOCK:
		type = "s";
		break;
	default:
		type = "U";
		break;
	}

	return fprintf(file, directive->str, type);
}

/** %Y: target type */
static int bfs_printf_Y(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) {
	if (ftwbuf->typeflag != BFTW_LNK) {
		return bfs_printf_y(file, directive, ftwbuf);
	}

	const char *type = "U";

	struct stat sb;
	if (fstatat(ftwbuf->at_fd, ftwbuf->at_path, &sb, 0) == 0) {
		switch (sb.st_mode & S_IFMT) {
#ifdef S_IFBLK
		case S_IFBLK:
			type = "b";
			break;
#endif
#ifdef S_IFCHR
		case S_IFCHR:
			type = "c";
			break;
#endif
#ifdef S_IFDIR
		case S_IFDIR:
			type = "d";
			break;
#endif
#ifdef S_IFDOOR
		case S_IFDOOR:
			type = "D";
			break;
#endif
#ifdef S_IFIFO
		case S_IFIFO:
			type = "p";
			break;
#endif
#ifdef S_IFLNK
		case S_IFLNK:
			type = "l";
			break;
#endif
#ifdef S_IFREG
		case S_IFREG:
			type = "f";
			break;
#endif
#ifdef S_IFSOCK
		case S_IFSOCK:
			type = "s";
			break;
#endif
		}
	} else {
		switch (errno) {
		case ELOOP:
			type = "L";
			break;
		case ENOENT:
			type = "N";
			break;
		}
	}

	return fprintf(file, directive->str, type);
}

/**
 * Append a printf directive to the chain.
 */
static int append_directive(struct bfs_printf_directive ***tail, bfs_printf_fn *fn, char *str) {
	struct bfs_printf_directive *directive = malloc(sizeof(*directive));
	if (!directive) {
		perror("malloc()");
		return -1;
	}

	directive->fn = fn;
	directive->str = str;
	directive->next = NULL;
	**tail = directive;
	*tail = &directive->next;
	return 0;
}

/**
 * Append a literal string to the chain.
 */
static int append_literal(struct bfs_printf_directive ***tail, char **literal, bool last) {
	if (!*literal || dstrlen(*literal) == 0) {
		return 0;
	}

	if (append_directive(tail, bfs_printf_literal, *literal) != 0) {
		return -1;
	}

	if (last) {
		*literal = NULL;
	} else {
		*literal = dstralloc(0);
		if (!*literal) {
			perror("dstralloc()");
			return -1;
		}
	}

	return 0;
}

struct bfs_printf *parse_bfs_printf(const char *format, const struct colors *stderr_colors) {
	struct bfs_printf *command = malloc(sizeof(*command));
	if (!command) {
		perror("malloc()");
		return NULL;
	}

	command->directives = NULL;
	command->needs_stat = false;
	struct bfs_printf_directive **tail = &command->directives;

	char *literal = dstralloc(0);
	if (!literal) {
		perror("dstralloc()");
		goto error;
	}

	for (const char *i = format; *i; ++i) {
		char c = *i;

		if (c == '\\') {
			c = *++i;

			if (c >= '0' && c < '8') {
				c = 0;
				for (int j = 0; j < 3 && *i >= '0' && *i < '8'; ++i, ++j) {
					c *= 8;
					c += *i - '0';
				}
				--i;
				goto one_char;
			}

			switch (c) {
			case 'a':  c = '\a'; break;
			case 'b':  c = '\b'; break;
			case 'f':  c = '\f'; break;
			case 'n':  c = '\n'; break;
			case 'r':  c = '\r'; break;
			case 't':  c = '\t'; break;
			case 'v':  c = '\v'; break;
			case '\\': c = '\\'; break;

			case 'c':
				if (append_literal(&tail, &literal, true) != 0) {
					goto error;
				}
				if (append_directive(&tail, bfs_printf_flush, NULL) != 0) {
					goto error;
				}
				goto done;

			case '\0':
				pretty_error(stderr_colors,
				             "error: '%s': Incomplete escape sequence '\\'.\n",
				             format);
				goto error;

			default:
				pretty_error(stderr_colors,
				             "error: '%s': Unrecognized escape sequence '\\%c'.\n",
				             format, c);
				goto error;
			}
		} else if (c == '%') {
			bfs_printf_fn *fn;

			char *directive = dstralloc(2);
			if (!directive) {
				perror("dstralloc()");
				goto directive_error;
			}
			dstrncat(&directive, &c, 1);

			const char *specifier = "s";

			// Parse any flags
			bool must_be_int = false;
			while (true) {
				c = *++i;

				switch (c) {
				case '#':
				case '0':
				case '+':
					must_be_int = true;
				case ' ':
				case '-':
					if (strchr(directive, c)) {
						pretty_error(stderr_colors,
						             "error: '%s': Duplicate flag '%c'.\n",
						             format, c);
						goto directive_error;
					}
					if (dstrncat(&directive, &c, 1) != 0) {
						perror("dstrncat()");
						goto directive_error;
					}
					continue;
				}

				break;
			}

			// Parse the field width
			while (c >= '0' && c <= '9') {
				if (dstrncat(&directive, &c, 1) != 0) {
					perror("dstrncat()");
					goto directive_error;
				}
				c = *++i;
			}

			// Parse the precision
			if (c == '.') {
				do {
					if (dstrncat(&directive, &c, 1) != 0) {
						perror("dstrncat()");
						goto directive_error;
					}
					c = *++i;
				} while (c >= '0' && c <= '9');
			}

			switch (c) {
			case '%':
				dstrfree(directive);
				goto one_char;
			case 'a':
				fn = bfs_printf_a;
				command->needs_stat = true;
				break;
			case 'b':
				fn = bfs_printf_b;
				command->needs_stat = true;
				break;
			case 'c':
				fn = bfs_printf_c;
				command->needs_stat = true;
				break;
			case 'd':
				fn = bfs_printf_d;
				specifier = "jd";
				break;
			case 'D':
				fn = bfs_printf_D;
				command->needs_stat = true;
				break;
			case 'f':
				fn = bfs_printf_f;
				break;
			case 'g':
				fn = bfs_printf_g;
				command->needs_stat = true;
				break;
			case 'G':
				fn = bfs_printf_G;
				command->needs_stat = true;
				break;
			case 'h':
				fn = bfs_printf_h;
				break;
			case 'H':
				fn = bfs_printf_H;
				break;
			case 'i':
				fn = bfs_printf_i;
				command->needs_stat = true;
				break;
			case 'k':
				fn = bfs_printf_k;
				command->needs_stat = true;
				break;
			case 'l':
				fn = bfs_printf_l;
				break;
			case 'm':
				fn = bfs_printf_m;
				specifier = "o";
				command->needs_stat = true;
				break;
			case 'M':
				fn = bfs_printf_M;
				command->needs_stat = true;
				break;
			case 'n':
				fn = bfs_printf_n;
				command->needs_stat = true;
				break;
			case 'p':
				fn = bfs_printf_p;
				break;
			case 'P':
				fn = bfs_printf_P;
				break;
			case 's':
				fn = bfs_printf_s;
				command->needs_stat = true;
				break;
			case 'S':
				fn = bfs_printf_S;
				specifier = "g";
				command->needs_stat = true;
				break;
			case 't':
				fn = bfs_printf_t;
				command->needs_stat = true;
				break;
			case 'u':
				fn = bfs_printf_u;
				command->needs_stat = true;
				break;
			case 'U':
				fn = bfs_printf_U;
				command->needs_stat = true;
				break;
			case 'y':
				fn = bfs_printf_y;
				break;
			case 'Y':
				fn = bfs_printf_Y;
				break;

			case '\0':
				pretty_error(stderr_colors,
				             "error: '%s': Incomplete format specifier '%s'.\n",
				             format, directive);
				goto directive_error;

			default:
				pretty_error(stderr_colors,
				             "error: '%s': Unrecognized format specifier '%%%c'.\n",
				             format, c);
				goto directive_error;
			}

			if (must_be_int && strcmp(specifier, "s") == 0) {
				pretty_error(stderr_colors,
				             "error: '%s': Invalid flags '%s' for string format '%%%c'.\n",
				             format, directive + 1, c);
				goto directive_error;
			}

			if (dstrcat(&directive, specifier) != 0) {
				perror("dstrcat()");
				goto directive_error;
			}

			if (append_literal(&tail, &literal, false) != 0) {
				goto directive_error;
			}
			if (append_directive(&tail, fn, directive) != 0) {
				goto directive_error;
			}
			continue;

		directive_error:
			dstrfree(directive);
			goto error;
		}

	one_char:
		if (dstrncat(&literal, &c, 1) != 0) {
			perror("dstrncat()");
			goto error;
		}
	}

done:
	if (append_literal(&tail, &literal, true) != 0) {
		goto error;
	}

	dstrfree(literal);
	return command;

error:
	dstrfree(literal);
	free_bfs_printf(command);
	return NULL;
}

int bfs_printf(FILE *file, const struct bfs_printf *command, const struct BFTW *ftwbuf) {
	int ret = -1;

	for (struct bfs_printf_directive *directive = command->directives; directive; directive = directive->next) {
		if (directive->fn(file, directive, ftwbuf) < 0) {
			goto done;
		}
	}

	ret = 0;
done:
	return ret;
}

void free_bfs_printf(struct bfs_printf *command) {
	if (command) {
		struct bfs_printf_directive *directive = command->directives;
		while (directive) {
			struct bfs_printf_directive *next = directive->next;
			dstrfree(directive->str);
			free(directive);
			directive = next;
		}

		free(command);
	}
}