Commit 2178c42edfccac6cf2793ba7ba5da36a0f28324e

Stefan Sperling 2018-04-22T14:51:49

read object headers with privsep

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
diff --git a/got/Makefile b/got/Makefile
index 6523bd2..0044a48 100644
--- a/got/Makefile
+++ b/got/Makefile
@@ -2,7 +2,8 @@
 
 PROG=		got
 SRCS=		got.c delta.c diff.c diffreg.c error.c fileindex.c object.c \
-		path.c pack.c reference.c repository.c sha1.c worktree.c zbuf.c
+		path.c pack.c privsep.c reference.c repository.c sha1.c \
+		worktree.c zbuf.c
 
 CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib
 LDADD = -lutil -lz
diff --git a/got/got.c b/got/got.c
index c9ea7a8..3666d5b 100644
--- a/got/got.c
+++ b/got/got.c
@@ -180,7 +180,7 @@ cmd_checkout(int argc, char *argv[])
 	argv += optind;
 
 #ifndef PROFILE
-	if (pledge("stdio rpath wpath cpath flock", NULL) == -1)
+	if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
 		err(1, "pledge");
 #endif
 	if (argc == 1) {
@@ -449,7 +449,7 @@ cmd_log(int argc, char *argv[])
 	const char *errstr;
 
 #ifndef PROFILE
-	if (pledge("stdio rpath wpath cpath", NULL) == -1)
+	if (pledge("stdio rpath wpath cpath proc", NULL) == -1)
 		err(1, "pledge");
 #endif
 
@@ -623,7 +623,7 @@ cmd_diff(int argc, char *argv[])
 	int ch;
 
 #ifndef PROFILE
-	if (pledge("stdio rpath wpath cpath", NULL) == -1)
+	if (pledge("stdio rpath wpath cpath proc", NULL) == -1)
 		err(1, "pledge");
 #endif
 
diff --git a/include/got_error.h b/include/got_error.h
index 86c785d..92dd8ec 100644
--- a/include/got_error.h
+++ b/include/got_error.h
@@ -46,6 +46,12 @@
 #define GOT_ERR_DIR_OBSTRUCTED	30
 #define GOT_ERR_FILE_OBSTRUCTED	31
 #define GOT_ERR_RECURSION	32
+#define GOT_ERR_TIMEOUT		33
+#define GOT_ERR_INTERRUPT	34
+#define GOT_ERR_PRIVSEP_READ	35
+#define GOT_ERR_PRIVSEP_LEN	36
+#define GOT_ERR_PRIVSEP_PIPE	37
+#define GOT_ERR_PRIVSEP_NO_FD	38
 
 static const struct got_error {
 	int code;
@@ -80,6 +86,13 @@ static const struct got_error {
 	{ GOT_ERR_WORKTREE_VERS,"unsupported worktree format version" },
 	{ GOT_ERR_WORKTREE_BUSY,"worktree already locked" },
 	{ GOT_ERR_RECURSION,	"recursion limit reached" },
+	{ GOT_ERR_TIMEOUT,	"operation timed out" },
+	{ GOT_ERR_INTERRUPT,	"operation interrupted" },
+	{ GOT_ERR_PRIVSEP_READ,	"no data received from unprivileged process" },
+	{ GOT_ERR_PRIVSEP_LEN,	"unexpected amount of data received "
+				"from unprivileged process" },
+	{ GOT_ERR_PRIVSEP_PIPE,	"unprivileged process closed pipe" },
+	{ GOT_ERR_PRIVSEP_NO_FD,"out of file descriptors for privsep" },
 };
 
 /*
diff --git a/lib/got_lib_delta.h b/lib/got_lib_delta.h
index ada9bf2..01e6ece 100644
--- a/lib/got_lib_delta.h
+++ b/lib/got_lib_delta.h
@@ -31,6 +31,8 @@ struct got_delta_chain {
 	SIMPLEQ_HEAD(, got_delta) entries;
 };
 
+#define GOT_DELTA_CHAIN_RECURSION_MAX	100
+
 struct got_delta *got_delta_open(const char *, off_t, size_t, int, size_t,
     off_t, uint8_t *, size_t);
 void got_delta_close(struct got_delta *);
diff --git a/lib/got_lib_privsep.h b/lib/got_lib_privsep.h
index 79bae21..a5baf89 100644
--- a/lib/got_lib_privsep.h
+++ b/lib/got_lib_privsep.h
@@ -46,8 +46,7 @@ enum got_imsg_type {
 	 * separate process which runs under pledge("stdio").
 	 * This sandboxes our own repository parsing code, as well as zlib.
 	 */
-	GOT_IMSG_LOOSE_OBJECT_HEADER_REQUEST,
-	GOT_IMSG_LOOSE_OBJECT_HEADER_REPLY,
+	GOT_IMSG_OBJECT,
 	GOT_IMSG_LOOSE_BLOB_OBJECT_REQUEST,
 	GOT_IMSG_LOOSE_TREE_OBJECT_REQUEST,
 	GOT_IMSG_LOOSE_COMMIT_OBJECT_REQUEST,
@@ -64,6 +63,7 @@ enum got_imsg_type {
 /* Structure for GOT_IMSG_ERROR. */
 struct got_imsg_error {
 	int code; /* an error code from got_error.h */
+	int errno_code; /* in case code equals GOT_ERR_ERRNO */
 };
 
 /* Structure for GOT_IMSG_DELTA data. */
@@ -92,15 +92,7 @@ struct got_imsg_delta_stream {
 	 */
 };
 
-/* Structure for GOT_IMSG_LOOSE_OBJECT_HEADER_REQUEST data. */
-struct got_imsg_loose_object_header_request {
-	/*
-	 * Empty since the following is implied: If imsg fd == -1 then
-	 * read raw object data from imsg buffer, else read from fd.
-	 */
-};
-
-/* Structure for transmitting struct got_object data in an imsg. */
+/* Structure for GOT_IMSG_OBJECT data. */
 struct got_imsg_object {
 	/* These fields are the same as in struct got_object. */
 	int type;
@@ -159,4 +151,10 @@ struct got_imsg_tree_object {
 	int nentries; /* This many TREE_ENTRY messages follow. */
 };
 
+void got_privsep_send_error(struct imsgbuf *, const struct got_error *);
+const struct got_error *got_privsep_send_obj(struct imsgbuf *,
+    struct got_object *, int);
+const struct got_error *got_privsep_recv_obj(struct got_object **,
+    struct imsgbuf *);
+
 /* TODO: Implement the above, and then add more message data types here. */
diff --git a/lib/object.c b/lib/object.c
index 76455bb..a069e1a 100644
--- a/lib/object.c
+++ b/lib/object.c
@@ -14,17 +14,24 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/queue.h>
+#include <sys/uio.h>
+#include <sys/socket.h>
+#include <sys/wait.h>
 
 #include <errno.h>
+#include <fcntl.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <stdint.h>
 #include <sha1.h>
 #include <zlib.h>
 #include <ctype.h>
 #include <limits.h>
+#include <imsg.h>
 
 #include "got_error.h"
 #include "got_object.h"
@@ -33,8 +40,10 @@
 #include "got_lib_sha1.h"
 #include "got_lib_delta.h"
 #include "got_lib_pack.h"
+#include "got_lib_path.h"
 #include "got_lib_zbuf.h"
 #include "got_lib_object.h"
+#include "got_lib_privsep.h"
 
 #ifndef MIN
 #define	MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
@@ -166,8 +175,7 @@ parse_object_header(struct got_object **obj, char *buf, size_t len)
 }
 
 static const struct got_error *
-read_object_header(struct got_object **obj, struct got_repository *repo,
-    FILE *f)
+read_object_header(struct got_object **obj, FILE *f)
 {
 	const struct got_error *err;
 	struct got_zstream_buf zb;
@@ -209,6 +217,72 @@ done:
 }
 
 static const struct got_error *
+read_object_header_privsep(struct got_object **obj, int fd)
+{
+	struct imsgbuf parent_ibuf;
+	int imsg_fds[2];
+	const struct got_error *err = NULL;
+	pid_t pid;
+	int child_status;
+
+	if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
+		return got_error_from_errno();
+
+	pid = fork();
+	if (pid == -1)
+		return got_error_from_errno();
+	else if (pid == 0) {
+		struct got_object *child_obj = NULL;
+		struct imsgbuf child_ibuf;
+		FILE *f = NULL;
+		int status = 0;
+
+		setproctitle("got: read object header");
+		close(imsg_fds[0]);
+		imsg_init(&child_ibuf, imsg_fds[1]);
+		if (err)
+			goto done;
+
+		/* revoke access to most system calls */
+		if (pledge("stdio", NULL) == -1) {
+			err = got_error_from_errno();
+			goto done;
+		}
+
+		f = fdopen(fd, "rb");
+		if (f == NULL) {
+			err = got_error_from_errno();
+			goto done;
+		}
+
+		err = read_object_header(&child_obj, f);
+		if (err)
+			goto done;
+
+		err = got_privsep_send_obj(&child_ibuf, child_obj, 0);
+done:
+		if (child_obj)
+			got_object_close(child_obj);
+		if (err) {
+			got_privsep_send_error(&child_ibuf, err);
+			status = 1;
+		}
+		if (f)
+			fclose(f);
+		imsg_clear(&child_ibuf);
+		_exit(status);
+	}
+
+	close(imsg_fds[1]);
+	imsg_init(&parent_ibuf, imsg_fds[0]);
+	err = got_privsep_recv_obj(obj, &parent_ibuf);
+	imsg_clear(&parent_ibuf);
+	waitpid(pid, &child_status, 0);
+	close(imsg_fds[0]);
+	return err;
+}
+
+static const struct got_error *
 object_path(char **path, struct got_object_id *id, struct got_repository *repo)
 {
 	const struct got_error *err = NULL;
@@ -258,14 +332,14 @@ got_object_open(struct got_object **obj, struct got_repository *repo,
 {
 	const struct got_error *err = NULL;
 	char *path;
-	FILE *f;
+	int fd;
 
 	err = object_path(&path, id, repo);
 	if (err)
 		return err;
 
-	f = fopen(path, "rb");
-	if (f == NULL) {
+	fd = open(path, O_RDONLY | O_NOFOLLOW, GOT_DEFAULT_FILE_MODE);
+	if (fd == -1) {
 		if (errno != ENOENT) {
 			err = got_error_from_errno();
 			goto done;
@@ -276,15 +350,15 @@ got_object_open(struct got_object **obj, struct got_repository *repo,
 		if (*obj == NULL)
 			err = got_error(GOT_ERR_NO_OBJ);
 	} else {
-		err = read_object_header(obj, repo, f);
+		err = read_object_header_privsep(obj, fd);
 		if (err)
 			goto done;
 		memcpy((*obj)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
 	}
 done:
 	free(path);
-	if (f)
-		fclose(f);
+	if (fd != -1)
+		close(fd);
 	return err;
 
 }
diff --git a/lib/pack.c b/lib/pack.c
index 710d4ed..a82e6fa 100644
--- a/lib/pack.c
+++ b/lib/pack.c
@@ -56,8 +56,6 @@
 				SHA1_DIGEST_STRING_LENGTH - 1 + \
 				strlen(GOT_PACKIDX_SUFFIX))
 
-#define GOT_DELTA_CHAIN_RECURSION_MAX	100
-
 #ifndef MIN
 #define	MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
 #endif
diff --git a/lib/privsep.c b/lib/privsep.c
new file mode 100644
index 0000000..4b6246c
--- /dev/null
+++ b/lib/privsep.c
@@ -0,0 +1,208 @@
+/*
+ * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <sys/types.h>
+#include <sys/queue.h>
+#include <sys/uio.h>
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
+#include <stdint.h>
+#include <poll.h>
+#include <imsg.h>
+#include <sha1.h>
+#include <zlib.h>
+
+#include "got_object.h"
+#include "got_error.h"
+
+#include "got_lib_sha1.h"
+#include "got_lib_delta.h"
+#include "got_lib_zbuf.h"
+#include "got_lib_object.h"
+#include "got_lib_privsep.h"
+
+#ifndef MIN
+#define	MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
+#endif
+
+static const struct got_error *
+poll_fd(int fd, int events, int timeout)
+{
+	struct pollfd pfd[1];
+	int n;
+
+	pfd[0].fd = fd;
+	pfd[0].events = events;
+
+	n = poll(pfd, 1, timeout);
+	if (n == -1)
+		return got_error_from_errno();
+	if (n == 0)
+		return got_error(GOT_ERR_TIMEOUT);
+	if (pfd[0].revents & (POLLERR | POLLNVAL))
+		return got_error_from_errno();
+	if (pfd[0].revents & (events | POLLHUP))
+		return NULL;
+
+	return got_error(GOT_ERR_INTERRUPT);
+}
+
+/* Attempt to send an error in an imsg. Complain on stderr as a last resort. */
+void
+got_privsep_send_error(struct imsgbuf *ibuf, const struct got_error *err)
+{
+	const struct got_error *poll_err;
+	struct got_imsg_error ierr;
+	int ret;
+
+	ierr.code = err->code;
+	if (err->code == GOT_ERR_ERRNO)
+		ierr.errno_code = errno;
+	else
+		ierr.errno_code = 0;
+	ret = imsg_compose(ibuf, GOT_IMSG_ERROR, 0, 0, -1, &ierr, sizeof(ierr));
+	if (ret != -1) {
+		fprintf(stderr, "%s: error %d \"%s\": imsg_compose: %s\n",
+		    getprogname(), err->code, err->msg, strerror(errno));
+	}
+
+	poll_err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
+	if (poll_err)
+		fprintf(stderr, "%s: error %d \"%s\": poll: %s\n",
+		    getprogname(), err->code, err->msg, poll_err->msg);
+
+	ret = imsg_flush(ibuf);
+	if (ret == -1)
+		fprintf(stderr, "%s: error %d \"%s\": imsg_flush: %s\n",
+		    getprogname(), err->code, err->msg, strerror(errno));
+}
+
+const struct got_error *
+got_privsep_send_obj(struct imsgbuf *ibuf, struct got_object *obj, int ndeltas)
+{
+	const struct got_error *err = NULL;
+	struct got_imsg_object iobj;
+
+	iobj.type = obj->type;
+	iobj.flags = obj->flags;
+	iobj.hdrlen = obj->hdrlen;
+	iobj.size = obj->size;
+	memcpy(iobj.id.sha1, obj->id.sha1, SHA1_DIGEST_LENGTH);
+	iobj.ndeltas = ndeltas;
+
+	if (ndeltas > 0) {
+		/* TODO: Handle deltas */
+	}
+
+	if (imsg_compose(ibuf, GOT_IMSG_OBJECT, 0, 0, -1, &iobj, sizeof(iobj))
+	    == -1)
+		return got_error_from_errno();
+
+	err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
+	if (err)
+		return err;
+
+	if (imsg_flush(ibuf) == -1)
+		return got_error_from_errno();
+
+	return NULL;
+}
+
+const struct got_error *
+got_privsep_recv_obj(struct got_object **obj, struct imsgbuf *ibuf)
+{
+	const struct got_error *err = NULL;
+	struct got_imsg_error ierr;
+	struct imsg imsg;
+	struct got_imsg_object iobj;
+	ssize_t n, m;
+	size_t datalen;
+	int i;
+
+	*obj = NULL;
+
+	err = poll_fd(ibuf->fd, POLLIN, INFTIM);
+	if (err)
+		return err;
+
+	n = imsg_read(ibuf);
+	if (n == -1) {
+		if (errno == EAGAIN) /* Could be a file-descriptor leak. */
+			return got_error(GOT_ERR_PRIVSEP_NO_FD);
+		return got_error(GOT_ERR_PRIVSEP_READ);
+	}
+	if (n == 0)
+		return got_error(GOT_ERR_PRIVSEP_PIPE);
+
+	m = imsg_get(ibuf, &imsg);
+	if (m == 0)
+		return got_error(GOT_ERR_PRIVSEP_READ);
+
+	if (imsg.hdr.len < IMSG_HEADER_SIZE + MIN(sizeof(ierr), sizeof(obj)))
+		return got_error(GOT_ERR_PRIVSEP_LEN);
+
+	datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
+
+	switch (imsg.hdr.type) {
+	case GOT_IMSG_ERROR:
+		if (datalen != sizeof(ierr)) {
+			err = got_error(GOT_ERR_PRIVSEP_LEN);
+			break;
+		}
+		memcpy(&ierr, imsg.data, sizeof(ierr));
+		if (ierr.code == GOT_ERR_ERRNO) {
+			static struct got_error err;
+			err.code = GOT_ERR_ERRNO;
+			err.msg = strerror(ierr.errno_code);
+		} else
+			err = got_error(ierr.code);
+		break;
+	case GOT_IMSG_OBJECT:
+		if (datalen != sizeof(iobj)) {
+			err = got_error(GOT_ERR_PRIVSEP_LEN);
+			break;
+		}
+
+		memcpy(&iobj, imsg.data, sizeof(iobj));
+		if (iobj.ndeltas < 0 ||
+		    iobj.ndeltas > GOT_DELTA_CHAIN_RECURSION_MAX) {
+			err = got_error(GOT_ERR_PRIVSEP_LEN);
+			break;
+		}
+
+		*obj = calloc(1, sizeof(**obj));
+		if (*obj == NULL) {
+			err = got_error_from_errno();
+			break;
+		}
+
+		(*obj)->type = iobj.type;
+		(*obj)->hdrlen = iobj.hdrlen;
+		(*obj)->size = iobj.size;
+		memcpy((*obj)->id.sha1, iobj.id.sha1, SHA1_DIGEST_LENGTH);
+		for (i = 0; i < iobj.ndeltas; i++) {
+			/* TODO: Handle deltas */
+		}
+		break;
+	}
+
+	imsg_free(&imsg);
+
+	return err;
+}
diff --git a/regress/repository/Makefile b/regress/repository/Makefile
index 452c4df..0058276 100644
--- a/regress/repository/Makefile
+++ b/regress/repository/Makefile
@@ -2,7 +2,7 @@
 
 PROG = repository_test
 SRCS = path.c repository.c error.c reference.c object.c sha1.c diff.c \
-	diffreg.c pack.c delta.c zbuf.c repository_test.c
+	diffreg.c pack.c privsep.c delta.c zbuf.c repository_test.c
 
 CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
 LDADD = -lutil -lz
diff --git a/regress/repository/repository_test.c b/regress/repository/repository_test.c
index ee04dc0..67c3239 100644
--- a/regress/repository/repository_test.c
+++ b/regress/repository/repository_test.c
@@ -71,9 +71,12 @@ print_parent_commits(struct got_commit_object *commit,
 		if (err != NULL)
 			return err;
 		if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT)
-			return got_error(GOT_ERR_OBJ_TYPE);
-		err = print_commit_object(obj, repo);
+			err = got_error(GOT_ERR_OBJ_TYPE);
+		else
+			err = print_commit_object(obj, repo);
 		got_object_close(obj);
+		if (err)
+			break;
 	}
 
 	return err;
@@ -451,7 +454,7 @@ main(int argc, char *argv[])
 	const char *repo_path;
 	int ch;
 
-	if (pledge("stdio rpath wpath cpath", NULL) == -1)
+	if (pledge("stdio rpath wpath cpath proc", NULL) == -1)
 		err(1, "pledge");
 
 	while ((ch = getopt(argc, argv, "v")) != -1) {
diff --git a/regress/worktree/Makefile b/regress/worktree/Makefile
index 49d5b1d..7d7df3b 100644
--- a/regress/worktree/Makefile
+++ b/regress/worktree/Makefile
@@ -2,7 +2,7 @@
 
 PROG = worktree_test
 SRCS = worktree.c repository.c object.c path.c error.c reference.c sha1.c \
-	pack.c delta.c zbuf.c fileindex.c worktree_test.c
+	pack.c privsep.c delta.c zbuf.c fileindex.c worktree_test.c
 
 CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
 LDADD = -lutil -lz
diff --git a/regress/worktree/worktree_test.c b/regress/worktree/worktree_test.c
index 0e19e1c..eb723d0 100644
--- a/regress/worktree/worktree_test.c
+++ b/regress/worktree/worktree_test.c
@@ -389,7 +389,7 @@ main(int argc, char *argv[])
 	const char *repo_path;
 	int ch;
 
-	if (pledge("stdio rpath wpath cpath flock", NULL) == -1)
+	if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
 		err(1, "pledge");
 
 	while ((ch = getopt(argc, argv, "v")) != -1) {