Blame


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