aboutsummaryrefslogtreecommitdiffstats
path: root/key2root-rmkey.c
blob: 4e5fa1e743a3b4466f857604f120c3d5db65c049 (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
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "arg.h"


char *argv0;


static void
usage(void)
{
	fprintf(stderr, "usage: %s user key-name ...\n", argv0);
	exit(1);
}


static int
writeall(int fd, const char *data, size_t len)
{
	size_t off = 0;
	ssize_t r;

	while (off < len) {
		r = write(fd, &data[off], len - off);
		if (r < 0)
			return -1;
		off += (size_t)r;
	}

	return 0;
}


static void
removekeys(char *data, size_t *wheadp, size_t *rheadp, size_t *rhead2p, size_t *linenop,
           const char *path, const char **keys, size_t *nkeysp)
{
	int failed = 0;
	size_t len, klen;
	size_t i;

	while (*rhead2p < *wheadp && data[*rhead2p] != '\n')
		++*rhead2p;

	if (data[*rhead2p] != '\n')
		return;

	len = *rhead2p - *rheadp;
	*linenop += 1;

	if (memchr(&data[*rheadp], '\0', len)) {
		fprintf(stderr, "%s: NUL byte found in %s on line %zu\n", argv0, path, *linenop);
		failed = 1;
	}
	if (!memchr(&data[*rheadp], ' ', len)) {
		fprintf(stderr, "%s: no SP byte found in %s on line %zu\n", argv0, path, *linenop);
		failed = 1;
	}

	if (failed) {
		goto no_match;
	} else {
		for (i = 0; i < *nkeysp; i++) {
			klen = strlen(keys[i]);
			if (klen >= len || data[*rheadp + klen] != ' ' || memcmp(&data[*rheadp], keys[i], klen))
				continue;
			/* retain key order so that they are output in the provided order if not found */
			memmove(&keys[i], &keys[i + 1], (--*nkeysp - i) * sizeof(*keys));
			goto match;
		}
	no_match:
		*rheadp = ++*rhead2p;
		return;
	match:
		++*rhead2p;
		memmove(&data[*rheadp], &data[*rhead2p], *wheadp - *rhead2p);
		*wheadp -= *rhead2p - *rheadp;
		*rhead2p = *rheadp;
	}
}


static void
loadandremove(int fd, char **datap, size_t *lenp, size_t *sizep, const char **keys, size_t *nkeysp, const char *path)
{
	char *new;
	size_t lineno = 0;
	ssize_t r = 1;
	size_t rhead = 0;
	size_t rhead2 = 0;

	while (r) {
		if (*lenp == *sizep) {
			new = realloc(*datap, *sizep += 4096);
			if (!new) {
				fprintf(stderr, "%s: realloc: %s\n", argv0, strerror(errno));
				exit(1);
			}
			*datap = new;
		}

		r = read(fd, &(*datap)[*lenp], *sizep - *lenp);
		if (r < 0) {
			fprintf(stderr, "%s: read %s: %s\n", argv0, path, strerror(errno));
			exit(1);
		}
		*lenp += (size_t)r;

		while (rhead2 < *lenp)
			removekeys(*datap, lenp, &rhead, &rhead2, &lineno, path, keys, nkeysp);
	}

	if (rhead != *lenp) {
		fprintf(stderr, "%s: file truncated: %s\n", argv0, path);
		if (memchr(&(*datap)[rhead], '\0', *lenp - rhead))
			fprintf(stderr, "%s: NUL byte found in %s on line %zu\n", argv0, path, lineno + 1);
	}
}


int
main(int argc, char *argv[])
{
	char *path, *path2;
	const char *user;
	int failed = 0;
	const char **keys;
	size_t i, nkeys;
	int fd;
	char *data = NULL;
	size_t data_len = 0;
	size_t data_size = 0;

	ARGBEGIN {
	default:
		usage();
	} ARGEND;

	if (argc < 2)
		usage();

	user = *argv++;
	argc--;

	if (!user[0] || user[0] == '.' || strchr(user, '/') || strchr(user, '~')) {
		fprintf(stderr, "%s: bad user name specified: %s\n", argv0, user);
		failed = 1;
	}
	for (i = 0; i < (size_t)argc; i++) {
		if (argv[i][strcspn(argv[i], " \t\f\n\r\v")]) {
			fprintf(stderr, "%s: bad key name specified: %s, includes whitespace\n", argv0, argv[i]);
			failed = 1;
		}
	}
	if (failed)
		return 1;

	nkeys = (size_t)argc;
	keys = calloc(nkeys, sizeof(*keys));
	if (!keys) {
		fprintf(stderr, "%s: calloc: %s\n", argv0, strerror(errno));
		exit(1);
	}
	for (i = 0; i < (size_t)argc; i++)
		keys[i] = argv[i];

	path = malloc(sizeof(KEYPATH"/") + strlen(user));
	if (!path) {
		fprintf(stderr, "%s: malloc: %s\n", argv0, strerror(errno));
		exit(1);
	}
	path2 = malloc(sizeof(KEYPATH"/~") + strlen(user));
	if (!path) {
		fprintf(stderr, "%s: malloc: %s\n", argv0, strerror(errno));
		exit(1);
	}
	stpcpy(stpcpy(path, KEYPATH"/"), user);
	stpcpy(stpcpy(path2, path), "~");

	fd = open(path, O_RDONLY);
	if (fd < 0) {
		if (errno == ENOENT)
			goto out;
		fprintf(stderr, "%s: open %s O_RDONLY: %s\n", argv0, path, strerror(errno));
		exit(1);
	}
	loadandremove(fd, &data, &data_len, &data_size, keys, &nkeys, path);
	if (close(fd)) {
		fprintf(stderr, "%s: read %s: %s\n", argv0, path, strerror(errno));
		exit(1);
	}

out:
	for (i = 0; i < nkeys; i++)
		fprintf(stderr, "%s: key not found for %s: %s\n", argv0, user, keys[i]);
	failed |= nkeys > 0;

	if (nkeys != (size_t)argc) {
		if (!data_len) {
			if (unlink(path)) {
				fprintf(stderr, "%s: unlink %s: %s\n", argv0, path, strerror(errno));
				failed = 1;
			}
		} else {
			fd = open(path2, O_WRONLY | O_CREAT | O_EXCL, 0600);
			if (fd < 0) {
				fprintf(stderr, "%s: open %s O_WRONLY|O_CREAT|O_EXCL 0600: %s\n", argv0, path2, strerror(errno));
				exit(1);
			}
			if (writeall(fd, data, data_len)) {
				fprintf(stderr, "%s: write %s: %s\n", argv0, path2, strerror(errno));
				close(fd);
				goto saved_failed;
			}
			if (close(fd)) {
				fprintf(stderr, "%s: write %s: %s\n", argv0, path2, strerror(errno));
				goto saved_failed;
			}
			if (rename(path2, path)) {
				fprintf(stderr, "%s: rename %s %s: %s\n", argv0, path2, path, strerror(errno));
			saved_failed:
				if (unlink(path2))
					fprintf(stderr, "%s: unlink %s: %s\n", argv0, path2, strerror(errno));
				exit(1);
			}
		}
	}

	free(keys);
	free(path);
	free(path2);
	free(data);
	return failed;
}