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 "got_compat.h"
19 #include <sys/types.h>
20 #include <sys/time.h>
21 #include <sys/queue.h>
22 #include <sys/uio.h>
24 #include <stdint.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <imsg.h>
28 #include <limits.h>
30 #include "got_error.h"
31 #include "got_object.h"
32 #include "got_path.h"
34 #include "got_lib_delta.h"
35 #include "got_lib_object.h"
36 #include "got_lib_object_cache.h"
37 #include "got_lib_pack.h"
38 #include "got_lib_repository.h"
39 #include "got_lib_privsep.h"
41 const struct got_error *
42 got_privsep_send_stop(int fd)
43 {
44 return got_error(GOT_ERR_NOT_IMPL);
45 }
47 const struct got_error *
48 got_privsep_wait_for_child(pid_t pid)
49 {
50 return got_error(GOT_ERR_NOT_IMPL);
51 }
53 void
54 got_privsep_exec_child(int imsg_fds[2], const char *path, const char *repo_path)
55 {
56 fprintf(stderr, "%s: cannot run libexec helpers\n", getprogname());
57 exit(1);
58 }
60 const struct got_error *
61 got_privsep_init_pack_child(struct imsgbuf *ibuf, struct got_pack *pack,
62 struct got_packidx *packidx)
63 {
64 return got_error(GOT_ERR_NOT_IMPL);
65 }
67 const struct got_error *
68 got_traverse_packed_commits(struct got_object_id_queue *traversed_commits,
69 struct got_object_id *commit_id, const char *path,
70 struct got_repository *repo)
71 {
72 return NULL;
73 }