Blame


1 2c02675e 2022-12-14 op /*
2 b2b17923 2022-12-17 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 2c02675e 2022-12-14 op *
4 2c02675e 2022-12-14 op * Permission to use, copy, modify, and distribute this software for any
5 2c02675e 2022-12-14 op * purpose with or without fee is hereby granted, provided that the above
6 2c02675e 2022-12-14 op * copyright notice and this permission notice appear in all copies.
7 2c02675e 2022-12-14 op *
8 2c02675e 2022-12-14 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 2c02675e 2022-12-14 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 2c02675e 2022-12-14 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 2c02675e 2022-12-14 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 2c02675e 2022-12-14 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 2c02675e 2022-12-14 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 2c02675e 2022-12-14 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 2c02675e 2022-12-14 op */
16 2c02675e 2022-12-14 op
17 2c02675e 2022-12-14 op #include <err.h>
18 2c02675e 2022-12-14 op #include <stdio.h>
19 2c02675e 2022-12-14 op #include <stdlib.h>
20 2c02675e 2022-12-14 op #include <unistd.h>
21 2c02675e 2022-12-14 op
22 2c02675e 2022-12-14 op int parse(FILE *, const char *);
23 2c02675e 2022-12-14 op
24 2c02675e 2022-12-14 op int nodebug;
25 2c02675e 2022-12-14 op
26 2c02675e 2022-12-14 op static void __dead
27 2c02675e 2022-12-14 op usage(void)
28 2c02675e 2022-12-14 op {
29 754c4343 2023-03-04 op fprintf(stderr, "usage: %s [-G] [-o out] [file ...]\n", getprogname());
30 2c02675e 2022-12-14 op exit(1);
31 2c02675e 2022-12-14 op }
32 2c02675e 2022-12-14 op
33 2c02675e 2022-12-14 op int
34 2c02675e 2022-12-14 op main(int argc, char **argv)
35 2c02675e 2022-12-14 op {
36 2c02675e 2022-12-14 op FILE *fp = stdout;
37 2c02675e 2022-12-14 op const char *out = NULL;
38 2c02675e 2022-12-14 op int ch, i;
39 2c02675e 2022-12-14 op
40 2c02675e 2022-12-14 op while ((ch = getopt(argc, argv, "Go:")) != -1) {
41 2c02675e 2022-12-14 op switch (ch) {
42 2c02675e 2022-12-14 op case 'G':
43 2c02675e 2022-12-14 op nodebug = 1;
44 2c02675e 2022-12-14 op break;
45 2c02675e 2022-12-14 op case 'o':
46 2c02675e 2022-12-14 op out = optarg;
47 2c02675e 2022-12-14 op break;
48 2c02675e 2022-12-14 op default:
49 2c02675e 2022-12-14 op usage();
50 2c02675e 2022-12-14 op }
51 2c02675e 2022-12-14 op }
52 2c02675e 2022-12-14 op argc -= optind;
53 2c02675e 2022-12-14 op argv += optind;
54 2c02675e 2022-12-14 op
55 2c02675e 2022-12-14 op if (out && (fp = fopen(out, "w")) == NULL)
56 2c02675e 2022-12-14 op err(1, "can't open %s", out);
57 2c02675e 2022-12-14 op
58 2c02675e 2022-12-14 op if (out && unveil(out, "wc") == -1)
59 2c02675e 2022-12-14 op err(1, "unveil %s", out);
60 2c02675e 2022-12-14 op if (unveil("/", "r") == -1)
61 2c02675e 2022-12-14 op err(1, "unveil /");
62 2c02675e 2022-12-14 op if (pledge(out ? "stdio rpath cpath" : "stdio rpath", NULL) == -1)
63 2c02675e 2022-12-14 op err(1, "pledge");
64 2c02675e 2022-12-14 op
65 2c02675e 2022-12-14 op if (argc == 0) {
66 2c02675e 2022-12-14 op nodebug = 1;
67 2c02675e 2022-12-14 op if (parse(fp, "/dev/stdin") == -1)
68 2c02675e 2022-12-14 op goto err;
69 2c02675e 2022-12-14 op } else {
70 2c02675e 2022-12-14 op for (i = 0; i < argc; ++i)
71 2c02675e 2022-12-14 op if (parse(fp, argv[i]) == -1)
72 2c02675e 2022-12-14 op goto err;
73 2c02675e 2022-12-14 op }
74 2c02675e 2022-12-14 op
75 2c02675e 2022-12-14 op if (ferror(fp))
76 2c02675e 2022-12-14 op goto err;
77 2c02675e 2022-12-14 op
78 2c02675e 2022-12-14 op if (fclose(fp) == -1) {
79 2c02675e 2022-12-14 op fp = NULL;
80 2c02675e 2022-12-14 op goto err;
81 2c02675e 2022-12-14 op }
82 2c02675e 2022-12-14 op
83 2c02675e 2022-12-14 op return (0);
84 2c02675e 2022-12-14 op
85 2c02675e 2022-12-14 op err:
86 2c02675e 2022-12-14 op if (fp)
87 2c02675e 2022-12-14 op fclose(fp);
88 2c02675e 2022-12-14 op if (out && unlink(out) == -1)
89 2c02675e 2022-12-14 op err(1, "unlink %s", out);
90 2c02675e 2022-12-14 op return (1);
91 2c02675e 2022-12-14 op }