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/queue.h>
19 #include <sys/tree.h>
20 #include <sys/uio.h>
22 #include <sha1.h>
23 #include <stdint.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <imsg.h>
27 #include <limits.h>
29 #include "got_error.h"
30 #include "got_object.h"
31 #include "got_path.h"
33 #include "got_lib_delta.h"
34 #include "got_lib_object.h"
35 #include "got_lib_object_cache.h"
36 #include "got_lib_pack.h"
37 #include "got_lib_repository.h"
38 #include "got_lib_privsep.h"
40 const struct got_error *
41 got_privsep_send_stop(int fd)
42 {
43 return got_error(GOT_ERR_NOT_IMPL);
44 }
46 const struct got_error *
47 got_privsep_wait_for_child(pid_t pid)
48 {
49 return got_error(GOT_ERR_NOT_IMPL);
50 }
52 void
53 got_privsep_exec_child(int imsg_fds[2], const char *path, const char *repo_path)
54 {
55 fprintf(stderr, "%s: cannot run libexec helpers\n", getprogname());
56 exit(1);
57 }
59 const struct got_error *
60 got_privsep_init_pack_child(struct imsgbuf *ibuf, struct got_pack *pack,
61 struct got_packidx *packidx)
62 {
63 return got_error(GOT_ERR_NOT_IMPL);
64 }