Blob


1 /*
2 * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include <sys/types.h>
18 #include <sys/time.h>
19 #include <sys/queue.h>
20 #include <sys/uio.h>
22 #include <stdint.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <imsg.h>
26 #include <limits.h>
28 #include "got_error.h"
29 #include "got_object.h"
30 #include "got_path.h"
32 #include "got_lib_delta.h"
33 #include "got_lib_object.h"
34 #include "got_lib_object_cache.h"
35 #include "got_lib_pack.h"
36 #include "got_lib_repository.h"
37 #include "got_lib_privsep.h"
39 const struct got_error *
40 got_privsep_send_stop(int fd)
41 {
42 return got_error(GOT_ERR_NOT_IMPL);
43 }
45 const struct got_error *
46 got_privsep_wait_for_child(pid_t pid)
47 {
48 return got_error(GOT_ERR_NOT_IMPL);
49 }
51 void
52 got_privsep_exec_child(int imsg_fds[2], const char *path, const char *repo_path)
53 {
54 fprintf(stderr, "%s: cannot run libexec helpers\n", getprogname());
55 exit(1);
56 }
58 const struct got_error *
59 got_privsep_init_pack_child(struct imsgbuf *ibuf, struct got_pack *pack,
60 struct got_packidx *packidx)
61 {
62 return got_error(GOT_ERR_NOT_IMPL);
63 }