2 * Copyright (c) 2019, 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.
18 #include <sys/types.h>
19 #include <sys/socket.h>
20 #include <sys/queue.h>
32 #include "got_compat.h"
33 #include "got_error.h"
34 #include "got_object.h"
35 #include "got_repository.h"
38 #include "got_lib_delta.h"
39 #include "got_lib_hash.h"
40 #include "got_lib_object.h"
41 #include "got_lib_object_cache.h"
42 #include "got_lib_privsep.h"
43 #include "got_lib_pack.h"
44 #include "got_lib_repository.h"
46 const struct got_error
*
47 got_repo_read_gitconfig(int *gitconfig_repository_format_version
,
48 char **gitconfig_author_name
, char **gitconfig_author_email
,
49 struct got_remote_repo
**remotes
, int *nremotes
,
50 char **gitconfig_owner
, char ***extnames
, char ***extvals
,
51 int *nextensions
, const char *gitconfig_path
)
53 const struct got_error
*err
= NULL
, *child_err
= NULL
;
55 int imsg_fds
[2] = { -1, -1 };
59 *gitconfig_repository_format_version
= 0;
66 *gitconfig_author_name
= NULL
;
67 *gitconfig_author_email
= NULL
;
73 *gitconfig_owner
= NULL
;
75 fd
= open(gitconfig_path
, O_RDONLY
| O_CLOEXEC
);
79 return got_error_from_errno2("open", gitconfig_path
);
82 ibuf
= calloc(1, sizeof(*ibuf
));
84 err
= got_error_from_errno("calloc");
88 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, imsg_fds
) == -1) {
89 err
= got_error_from_errno("socketpair");
95 err
= got_error_from_errno("fork");
97 } else if (pid
== 0) {
98 got_privsep_exec_child(imsg_fds
, GOT_PATH_PROG_READ_GITCONFIG
,
103 if (close(imsg_fds
[1]) == -1) {
104 err
= got_error_from_errno("close");
108 if (imsgbuf_init(ibuf
, imsg_fds
[0]) == -1) {
109 err
= got_error_from_errno("imsgbuf_init");
112 imsgbuf_allow_fdpass(ibuf
);
114 err
= got_privsep_send_gitconfig_parse_req(ibuf
, fd
);
119 err
= got_privsep_send_gitconfig_repository_format_version_req(ibuf
);
123 err
= got_privsep_recv_gitconfig_int(
124 gitconfig_repository_format_version
, ibuf
);
128 if (extnames
&& extvals
&& nextensions
) {
129 err
= got_privsep_send_gitconfig_repository_extensions_req(
133 err
= got_privsep_recv_gitconfig_int(nextensions
, ibuf
);
136 if (*nextensions
> 0) {
138 *extnames
= calloc(*nextensions
, sizeof(char *));
139 if (*extnames
== NULL
) {
140 err
= got_error_from_errno("calloc");
143 *extvals
= calloc(*nextensions
, sizeof(char *));
144 if (*extvals
== NULL
) {
145 err
= got_error_from_errno("calloc");
148 for (i
= 0; i
< *nextensions
; i
++) {
150 err
= got_privsep_recv_gitconfig_pair(&ext
,
154 (*extnames
)[i
] = ext
;
160 err
= got_privsep_send_gitconfig_author_name_req(ibuf
);
164 err
= got_privsep_recv_gitconfig_str(gitconfig_author_name
, ibuf
);
168 err
= got_privsep_send_gitconfig_author_email_req(ibuf
);
172 err
= got_privsep_recv_gitconfig_str(gitconfig_author_email
, ibuf
);
176 if (remotes
&& nremotes
) {
177 err
= got_privsep_send_gitconfig_remotes_req(ibuf
);
181 err
= got_privsep_recv_gitconfig_remotes(remotes
,
187 if (gitconfig_owner
) {
188 err
= got_privsep_send_gitconfig_owner_req(ibuf
);
191 err
= got_privsep_recv_gitconfig_str(gitconfig_owner
, ibuf
);
196 if (imsg_fds
[0] != -1)
197 got_privsep_send_stop(imsg_fds
[0]);
198 child_err
= got_privsep_wait_for_child(pid
);
199 if (child_err
&& err
== NULL
)
202 if (imsg_fds
[0] != -1 && close(imsg_fds
[0]) == -1 && err
== NULL
)
203 err
= got_error_from_errno("close");
204 if (imsg_fds
[1] != -1 && close(imsg_fds
[1]) == -1 && err
== NULL
)
205 err
= got_error_from_errno("close");
206 if (fd
!= -1 && close(fd
) == -1 && err
== NULL
)
207 err
= got_error_from_errno2("close", gitconfig_path
);