Blame


1 6a800804 2022-10-13 stsp /*
2 6a800804 2022-10-13 stsp * Copyright (c) 2019, 2022 Stefan Sperling <stsp@openbsd.org>
3 6a800804 2022-10-13 stsp *
4 6a800804 2022-10-13 stsp * Permission to use, copy, modify, and distribute this software for any
5 6a800804 2022-10-13 stsp * purpose with or without fee is hereby granted, provided that the above
6 6a800804 2022-10-13 stsp * copyright notice and this permission notice appear in all copies.
7 6a800804 2022-10-13 stsp *
8 6a800804 2022-10-13 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 6a800804 2022-10-13 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 6a800804 2022-10-13 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 6a800804 2022-10-13 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 6a800804 2022-10-13 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 6a800804 2022-10-13 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 6a800804 2022-10-13 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 6a800804 2022-10-13 stsp */
16 6a800804 2022-10-13 stsp
17 1b3e8e86 2022-11-08 stsp #include <sys/time.h>
18 6a800804 2022-10-13 stsp #include <sys/types.h>
19 6a800804 2022-10-13 stsp #include <sys/tree.h>
20 6a800804 2022-10-13 stsp #include <sys/socket.h>
21 6a800804 2022-10-13 stsp #include <sys/queue.h>
22 6a800804 2022-10-13 stsp #include <sys/uio.h>
23 6a800804 2022-10-13 stsp
24 6a800804 2022-10-13 stsp #include <errno.h>
25 6a800804 2022-10-13 stsp #include <fcntl.h>
26 6a800804 2022-10-13 stsp #include <limits.h>
27 6a800804 2022-10-13 stsp #include <sha1.h>
28 69c6accf 2023-02-04 op #include <sha2.h>
29 6a800804 2022-10-13 stsp #include <stdio.h>
30 6a800804 2022-10-13 stsp #include <stdlib.h>
31 6a800804 2022-10-13 stsp #include <stdint.h>
32 6a800804 2022-10-13 stsp #include <imsg.h>
33 6a800804 2022-10-13 stsp #include <unistd.h>
34 6a800804 2022-10-13 stsp
35 01f02e60 2023-02-04 op #include <string.h>
36 01f02e60 2023-02-04 op
37 6a800804 2022-10-13 stsp #include "got_error.h"
38 6a800804 2022-10-13 stsp #include "got_object.h"
39 6a800804 2022-10-13 stsp #include "got_repository.h"
40 6a800804 2022-10-13 stsp #include "got_path.h"
41 6a800804 2022-10-13 stsp
42 6a800804 2022-10-13 stsp #include "got_lib_delta.h"
43 6a800804 2022-10-13 stsp #include "got_lib_object.h"
44 6a800804 2022-10-13 stsp #include "got_lib_object_cache.h"
45 6a800804 2022-10-13 stsp #include "got_lib_privsep.h"
46 6a800804 2022-10-13 stsp #include "got_lib_pack.h"
47 6a800804 2022-10-13 stsp #include "got_lib_repository.h"
48 6a800804 2022-10-13 stsp
49 6a800804 2022-10-13 stsp const struct got_error *
50 6a800804 2022-10-13 stsp got_repo_read_gitconfig(int *gitconfig_repository_format_version,
51 6a800804 2022-10-13 stsp char **gitconfig_author_name, char **gitconfig_author_email,
52 6a800804 2022-10-13 stsp struct got_remote_repo **remotes, int *nremotes,
53 92db0871 2023-02-04 op char **gitconfig_owner, char **object_format,
54 92db0871 2023-02-04 op char ***extensions, int *nextensions,
55 6a800804 2022-10-13 stsp const char *gitconfig_path)
56 6a800804 2022-10-13 stsp {
57 6a800804 2022-10-13 stsp const struct got_error *err = NULL, *child_err = NULL;
58 6a800804 2022-10-13 stsp int fd = -1;
59 6a800804 2022-10-13 stsp int imsg_fds[2] = { -1, -1 };
60 6a800804 2022-10-13 stsp pid_t pid;
61 6a800804 2022-10-13 stsp struct imsgbuf *ibuf;
62 6a800804 2022-10-13 stsp
63 6a800804 2022-10-13 stsp *gitconfig_repository_format_version = 0;
64 6a800804 2022-10-13 stsp if (extensions)
65 6a800804 2022-10-13 stsp *extensions = NULL;
66 6a800804 2022-10-13 stsp if (nextensions)
67 6a800804 2022-10-13 stsp *nextensions = 0;
68 6a800804 2022-10-13 stsp *gitconfig_author_name = NULL;
69 6a800804 2022-10-13 stsp *gitconfig_author_email = NULL;
70 6a800804 2022-10-13 stsp if (remotes)
71 6a800804 2022-10-13 stsp *remotes = NULL;
72 6a800804 2022-10-13 stsp if (nremotes)
73 6a800804 2022-10-13 stsp *nremotes = 0;
74 6a800804 2022-10-13 stsp if (gitconfig_owner)
75 6a800804 2022-10-13 stsp *gitconfig_owner = NULL;
76 92db0871 2023-02-04 op if (object_format)
77 92db0871 2023-02-04 op *object_format = NULL;
78 6a800804 2022-10-13 stsp
79 6a800804 2022-10-13 stsp fd = open(gitconfig_path, O_RDONLY | O_CLOEXEC);
80 6a800804 2022-10-13 stsp if (fd == -1) {
81 6a800804 2022-10-13 stsp if (errno == ENOENT)
82 6a800804 2022-10-13 stsp return NULL;
83 6a800804 2022-10-13 stsp return got_error_from_errno2("open", gitconfig_path);
84 6a800804 2022-10-13 stsp }
85 6a800804 2022-10-13 stsp
86 6a800804 2022-10-13 stsp ibuf = calloc(1, sizeof(*ibuf));
87 6a800804 2022-10-13 stsp if (ibuf == NULL) {
88 6a800804 2022-10-13 stsp err = got_error_from_errno("calloc");
89 6a800804 2022-10-13 stsp goto done;
90 6a800804 2022-10-13 stsp }
91 6a800804 2022-10-13 stsp
92 6a800804 2022-10-13 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
93 6a800804 2022-10-13 stsp err = got_error_from_errno("socketpair");
94 6a800804 2022-10-13 stsp goto done;
95 6a800804 2022-10-13 stsp }
96 6a800804 2022-10-13 stsp
97 6a800804 2022-10-13 stsp pid = fork();
98 6a800804 2022-10-13 stsp if (pid == -1) {
99 6a800804 2022-10-13 stsp err = got_error_from_errno("fork");
100 6a800804 2022-10-13 stsp goto done;
101 6a800804 2022-10-13 stsp } else if (pid == 0) {
102 6a800804 2022-10-13 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_GITCONFIG,
103 6a800804 2022-10-13 stsp gitconfig_path);
104 6a800804 2022-10-13 stsp /* not reached */
105 6a800804 2022-10-13 stsp }
106 6a800804 2022-10-13 stsp
107 6a800804 2022-10-13 stsp if (close(imsg_fds[1]) == -1) {
108 6a800804 2022-10-13 stsp err = got_error_from_errno("close");
109 6a800804 2022-10-13 stsp goto done;
110 6a800804 2022-10-13 stsp }
111 6a800804 2022-10-13 stsp imsg_fds[1] = -1;
112 6a800804 2022-10-13 stsp imsg_init(ibuf, imsg_fds[0]);
113 6a800804 2022-10-13 stsp
114 6a800804 2022-10-13 stsp err = got_privsep_send_gitconfig_parse_req(ibuf, fd);
115 6a800804 2022-10-13 stsp if (err)
116 6a800804 2022-10-13 stsp goto done;
117 6a800804 2022-10-13 stsp fd = -1;
118 6a800804 2022-10-13 stsp
119 6a800804 2022-10-13 stsp err = got_privsep_send_gitconfig_repository_format_version_req(ibuf);
120 6a800804 2022-10-13 stsp if (err)
121 6a800804 2022-10-13 stsp goto done;
122 6a800804 2022-10-13 stsp
123 6a800804 2022-10-13 stsp err = got_privsep_recv_gitconfig_int(
124 6a800804 2022-10-13 stsp gitconfig_repository_format_version, ibuf);
125 6a800804 2022-10-13 stsp if (err)
126 6a800804 2022-10-13 stsp goto done;
127 6a800804 2022-10-13 stsp
128 6a800804 2022-10-13 stsp if (extensions && nextensions) {
129 6a800804 2022-10-13 stsp err = got_privsep_send_gitconfig_repository_extensions_req(
130 6a800804 2022-10-13 stsp ibuf);
131 6a800804 2022-10-13 stsp if (err)
132 6a800804 2022-10-13 stsp goto done;
133 6a800804 2022-10-13 stsp err = got_privsep_recv_gitconfig_int(nextensions, ibuf);
134 6a800804 2022-10-13 stsp if (err)
135 6a800804 2022-10-13 stsp goto done;
136 6a800804 2022-10-13 stsp if (*nextensions > 0) {
137 6a800804 2022-10-13 stsp int i;
138 6a800804 2022-10-13 stsp *extensions = calloc(*nextensions, sizeof(char *));
139 6a800804 2022-10-13 stsp if (*extensions == NULL) {
140 6a800804 2022-10-13 stsp err = got_error_from_errno("calloc");
141 6a800804 2022-10-13 stsp goto done;
142 6a800804 2022-10-13 stsp }
143 6a800804 2022-10-13 stsp for (i = 0; i < *nextensions; i++) {
144 6a800804 2022-10-13 stsp char *ext;
145 6a800804 2022-10-13 stsp err = got_privsep_recv_gitconfig_str(&ext,
146 6a800804 2022-10-13 stsp ibuf);
147 6a800804 2022-10-13 stsp if (err)
148 6a800804 2022-10-13 stsp goto done;
149 01f02e60 2023-02-04 op if (!strcmp(ext, "sha256"))
150 01f02e60 2023-02-04 op *object_format = ext;
151 6a800804 2022-10-13 stsp (*extensions)[i] = ext;
152 6a800804 2022-10-13 stsp }
153 6a800804 2022-10-13 stsp }
154 6a800804 2022-10-13 stsp }
155 6a800804 2022-10-13 stsp
156 6a800804 2022-10-13 stsp err = got_privsep_send_gitconfig_author_name_req(ibuf);
157 6a800804 2022-10-13 stsp if (err)
158 6a800804 2022-10-13 stsp goto done;
159 6a800804 2022-10-13 stsp
160 6a800804 2022-10-13 stsp err = got_privsep_recv_gitconfig_str(gitconfig_author_name, ibuf);
161 6a800804 2022-10-13 stsp if (err)
162 6a800804 2022-10-13 stsp goto done;
163 6a800804 2022-10-13 stsp
164 6a800804 2022-10-13 stsp err = got_privsep_send_gitconfig_author_email_req(ibuf);
165 6a800804 2022-10-13 stsp if (err)
166 6a800804 2022-10-13 stsp goto done;
167 6a800804 2022-10-13 stsp
168 6a800804 2022-10-13 stsp err = got_privsep_recv_gitconfig_str(gitconfig_author_email, ibuf);
169 6a800804 2022-10-13 stsp if (err)
170 6a800804 2022-10-13 stsp goto done;
171 6a800804 2022-10-13 stsp
172 6a800804 2022-10-13 stsp if (remotes && nremotes) {
173 6a800804 2022-10-13 stsp err = got_privsep_send_gitconfig_remotes_req(ibuf);
174 6a800804 2022-10-13 stsp if (err)
175 6a800804 2022-10-13 stsp goto done;
176 6a800804 2022-10-13 stsp
177 6a800804 2022-10-13 stsp err = got_privsep_recv_gitconfig_remotes(remotes,
178 6a800804 2022-10-13 stsp nremotes, ibuf);
179 6a800804 2022-10-13 stsp if (err)
180 6a800804 2022-10-13 stsp goto done;
181 6a800804 2022-10-13 stsp }
182 6a800804 2022-10-13 stsp
183 6a800804 2022-10-13 stsp if (gitconfig_owner) {
184 6a800804 2022-10-13 stsp err = got_privsep_send_gitconfig_owner_req(ibuf);
185 6a800804 2022-10-13 stsp if (err)
186 6a800804 2022-10-13 stsp goto done;
187 6a800804 2022-10-13 stsp err = got_privsep_recv_gitconfig_str(gitconfig_owner, ibuf);
188 6a800804 2022-10-13 stsp if (err)
189 6a800804 2022-10-13 stsp goto done;
190 6a800804 2022-10-13 stsp }
191 6a800804 2022-10-13 stsp
192 6a800804 2022-10-13 stsp err = got_privsep_send_stop(imsg_fds[0]);
193 6a800804 2022-10-13 stsp child_err = got_privsep_wait_for_child(pid);
194 6a800804 2022-10-13 stsp if (child_err && err == NULL)
195 6a800804 2022-10-13 stsp err = child_err;
196 6a800804 2022-10-13 stsp done:
197 6a800804 2022-10-13 stsp if (imsg_fds[0] != -1 && close(imsg_fds[0]) == -1 && err == NULL)
198 6a800804 2022-10-13 stsp err = got_error_from_errno("close");
199 6a800804 2022-10-13 stsp if (imsg_fds[1] != -1 && close(imsg_fds[1]) == -1 && err == NULL)
200 6a800804 2022-10-13 stsp err = got_error_from_errno("close");
201 6a800804 2022-10-13 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
202 6a800804 2022-10-13 stsp err = got_error_from_errno2("close", gitconfig_path);
203 6a800804 2022-10-13 stsp free(ibuf);
204 6a800804 2022-10-13 stsp return err;
205 6a800804 2022-10-13 stsp }