2 * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
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.
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.
17 #include "got_compat.h"
19 #include <sys/types.h>
21 #include <sys/queue.h>
30 #include "got_error.h"
31 #include "got_object.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
)
44 return got_error(GOT_ERR_NOT_IMPL
);
47 const struct got_error
*
48 got_privsep_wait_for_child(pid_t pid
)
50 return got_error(GOT_ERR_NOT_IMPL
);
54 got_privsep_exec_child(int imsg_fds
[2], const char *path
, const char *repo_path
)
56 fprintf(stderr
, "%s: cannot run libexec helpers\n", getprogname());
60 const struct got_error
*
61 got_privsep_init_pack_child(struct imsgbuf
*ibuf
, struct got_pack
*pack
,
62 struct got_packidx
*packidx
)
64 return got_error(GOT_ERR_NOT_IMPL
);
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
)