Blame


1 93658fb9 2020-03-18 stsp /*
2 93658fb9 2020-03-18 stsp * Copyright (c) 2018, 2019 Ori Bernstein <ori@openbsd.org>
3 93658fb9 2020-03-18 stsp *
4 93658fb9 2020-03-18 stsp * Permission to use, copy, modify, and distribute this software for any
5 93658fb9 2020-03-18 stsp * purpose with or without fee is hereby granted, provided that the above
6 93658fb9 2020-03-18 stsp * copyright notice and this permission notice appear in all copies.
7 93658fb9 2020-03-18 stsp *
8 93658fb9 2020-03-18 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 93658fb9 2020-03-18 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 93658fb9 2020-03-18 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 93658fb9 2020-03-18 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 93658fb9 2020-03-18 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 93658fb9 2020-03-18 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 93658fb9 2020-03-18 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 93658fb9 2020-03-18 stsp */
16 93658fb9 2020-03-18 stsp
17 93658fb9 2020-03-18 stsp #include <sys/types.h>
18 93658fb9 2020-03-18 stsp #include <sys/stat.h>
19 93658fb9 2020-03-18 stsp #include <sys/queue.h>
20 93658fb9 2020-03-18 stsp #include <sys/uio.h>
21 93658fb9 2020-03-18 stsp #include <sys/socket.h>
22 93658fb9 2020-03-18 stsp #include <sys/wait.h>
23 93658fb9 2020-03-18 stsp #include <sys/syslimits.h>
24 93658fb9 2020-03-18 stsp #include <sys/resource.h>
25 93658fb9 2020-03-18 stsp #include <sys/socket.h>
26 93658fb9 2020-03-18 stsp
27 93658fb9 2020-03-18 stsp #include <errno.h>
28 5cc27ede 2020-03-18 stsp #include <err.h>
29 93658fb9 2020-03-18 stsp #include <fcntl.h>
30 93658fb9 2020-03-18 stsp #include <stdio.h>
31 93658fb9 2020-03-18 stsp #include <stdlib.h>
32 93658fb9 2020-03-18 stsp #include <string.h>
33 93658fb9 2020-03-18 stsp #include <stdint.h>
34 93658fb9 2020-03-18 stsp #include <sha1.h>
35 93658fb9 2020-03-18 stsp #include <zlib.h>
36 93658fb9 2020-03-18 stsp #include <ctype.h>
37 93658fb9 2020-03-18 stsp #include <limits.h>
38 93658fb9 2020-03-18 stsp #include <imsg.h>
39 93658fb9 2020-03-18 stsp #include <time.h>
40 93658fb9 2020-03-18 stsp #include <uuid.h>
41 93658fb9 2020-03-18 stsp #include <netdb.h>
42 93658fb9 2020-03-18 stsp #include <netinet/in.h>
43 93658fb9 2020-03-18 stsp
44 93658fb9 2020-03-18 stsp #include "got_error.h"
45 93658fb9 2020-03-18 stsp #include "got_reference.h"
46 93658fb9 2020-03-18 stsp #include "got_repository.h"
47 93658fb9 2020-03-18 stsp #include "got_path.h"
48 93658fb9 2020-03-18 stsp #include "got_cancel.h"
49 93658fb9 2020-03-18 stsp #include "got_worktree.h"
50 93658fb9 2020-03-18 stsp #include "got_object.h"
51 fe4e1501 2020-03-18 stsp #include "got_opentemp.h"
52 82ebf666 2020-03-18 stsp #include "got_fetch.h"
53 93658fb9 2020-03-18 stsp
54 93658fb9 2020-03-18 stsp #include "got_lib_delta.h"
55 93658fb9 2020-03-18 stsp #include "got_lib_inflate.h"
56 93658fb9 2020-03-18 stsp #include "got_lib_object.h"
57 93658fb9 2020-03-18 stsp #include "got_lib_object_parse.h"
58 93658fb9 2020-03-18 stsp #include "got_lib_object_create.h"
59 93658fb9 2020-03-18 stsp #include "got_lib_pack.h"
60 93658fb9 2020-03-18 stsp #include "got_lib_sha1.h"
61 93658fb9 2020-03-18 stsp #include "got_lib_privsep.h"
62 93658fb9 2020-03-18 stsp #include "got_lib_object_cache.h"
63 93658fb9 2020-03-18 stsp #include "got_lib_repository.h"
64 d582f26c 2020-03-18 stsp
65 d582f26c 2020-03-18 stsp #ifndef nitems
66 d582f26c 2020-03-18 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
67 d582f26c 2020-03-18 stsp #endif
68 93658fb9 2020-03-18 stsp
69 68999b92 2020-03-18 stsp #ifndef MIN
70 68999b92 2020-03-18 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
71 68999b92 2020-03-18 stsp #endif
72 68999b92 2020-03-18 stsp
73 93658fb9 2020-03-18 stsp static int
74 93658fb9 2020-03-18 stsp hassuffix(char *base, char *suf)
75 93658fb9 2020-03-18 stsp {
76 93658fb9 2020-03-18 stsp int nb, ns;
77 93658fb9 2020-03-18 stsp
78 93658fb9 2020-03-18 stsp nb = strlen(base);
79 93658fb9 2020-03-18 stsp ns = strlen(suf);
80 93658fb9 2020-03-18 stsp if (ns <= nb && strcmp(base + (nb - ns), suf) == 0)
81 93658fb9 2020-03-18 stsp return 1;
82 93658fb9 2020-03-18 stsp return 0;
83 93658fb9 2020-03-18 stsp }
84 93658fb9 2020-03-18 stsp
85 5cc27ede 2020-03-18 stsp static const struct got_error *
86 09838ffc 2020-03-18 stsp dial_ssh(int *fetchfd, const char *host, const char *port, const char *path,
87 68999b92 2020-03-18 stsp const char *direction, int verbosity)
88 93658fb9 2020-03-18 stsp {
89 5cc27ede 2020-03-18 stsp const struct got_error *error = NULL;
90 93658fb9 2020-03-18 stsp int pid, pfd[2];
91 93658fb9 2020-03-18 stsp char cmd[64];
92 68999b92 2020-03-18 stsp char *argv[9];
93 68999b92 2020-03-18 stsp int i = 0;
94 93658fb9 2020-03-18 stsp
95 5cc27ede 2020-03-18 stsp *fetchfd = -1;
96 68999b92 2020-03-18 stsp
97 68999b92 2020-03-18 stsp argv[0] = GOT_FETCH_PATH_SSH;
98 68999b92 2020-03-18 stsp if (verbosity == -1) {
99 68999b92 2020-03-18 stsp argv[1 + i++] = "-q";
100 68999b92 2020-03-18 stsp } else {
101 68999b92 2020-03-18 stsp /* ssh(1) allows up to 3 "-v" options. */
102 68999b92 2020-03-18 stsp for (i = 0; i < MIN(3, verbosity); i++)
103 68999b92 2020-03-18 stsp argv[1 + i] = "-v";
104 68999b92 2020-03-18 stsp }
105 68999b92 2020-03-18 stsp argv[1 + i] = "--";
106 68999b92 2020-03-18 stsp argv[2 + i] = (char *)host;
107 68999b92 2020-03-18 stsp argv[3 + i] = (char *)cmd;
108 68999b92 2020-03-18 stsp argv[4 + i] = (char *)path;
109 68999b92 2020-03-18 stsp argv[5 + i] = NULL;
110 5cc27ede 2020-03-18 stsp
111 93658fb9 2020-03-18 stsp if (pipe(pfd) == -1)
112 5cc27ede 2020-03-18 stsp return got_error_from_errno("pipe");
113 5cc27ede 2020-03-18 stsp
114 93658fb9 2020-03-18 stsp pid = fork();
115 5cc27ede 2020-03-18 stsp if (pid == -1) {
116 5cc27ede 2020-03-18 stsp error = got_error_from_errno("fork");
117 5cc27ede 2020-03-18 stsp close(pfd[0]);
118 93658fb9 2020-03-18 stsp close(pfd[1]);
119 5cc27ede 2020-03-18 stsp return error;
120 5cc27ede 2020-03-18 stsp } else if (pid == 0) {
121 5cc27ede 2020-03-18 stsp int n;
122 5cc27ede 2020-03-18 stsp close(pfd[1]);
123 93658fb9 2020-03-18 stsp dup2(pfd[0], 0);
124 93658fb9 2020-03-18 stsp dup2(pfd[0], 1);
125 5cc27ede 2020-03-18 stsp n = snprintf(cmd, sizeof(cmd), "git-%s-pack", direction);
126 5cc27ede 2020-03-18 stsp if (n < 0 || n >= sizeof(cmd))
127 5cc27ede 2020-03-18 stsp err(1, "snprintf");
128 68999b92 2020-03-18 stsp if (execv(GOT_FETCH_PATH_SSH, argv) == -1)
129 ee448f5f 2020-03-18 stsp err(1, "execl");
130 5cc27ede 2020-03-18 stsp abort(); /* not reached */
131 5cc27ede 2020-03-18 stsp } else {
132 93658fb9 2020-03-18 stsp close(pfd[0]);
133 5cc27ede 2020-03-18 stsp *fetchfd = pfd[1];
134 5cc27ede 2020-03-18 stsp return NULL;
135 93658fb9 2020-03-18 stsp }
136 93658fb9 2020-03-18 stsp }
137 93658fb9 2020-03-18 stsp
138 5cc27ede 2020-03-18 stsp static const struct got_error *
139 09838ffc 2020-03-18 stsp dial_git(int *fetchfd, const char *host, const char *port, const char *path,
140 09838ffc 2020-03-18 stsp const char *direction)
141 93658fb9 2020-03-18 stsp {
142 5cc27ede 2020-03-18 stsp const struct got_error *err = NULL;
143 93658fb9 2020-03-18 stsp struct addrinfo hints, *servinfo, *p;
144 5cc27ede 2020-03-18 stsp char *cmd = NULL, *pkt = NULL;
145 4312a498 2020-03-18 stsp int fd = -1, totlen, r, eaicode;
146 5cc27ede 2020-03-18 stsp
147 5cc27ede 2020-03-18 stsp *fetchfd = -1;
148 93658fb9 2020-03-18 stsp
149 93658fb9 2020-03-18 stsp memset(&hints, 0, sizeof hints);
150 93658fb9 2020-03-18 stsp hints.ai_family = AF_UNSPEC;
151 93658fb9 2020-03-18 stsp hints.ai_socktype = SOCK_STREAM;
152 5cc27ede 2020-03-18 stsp eaicode = getaddrinfo(host, port, &hints, &servinfo);
153 a117fd10 2020-03-18 stsp if (eaicode) {
154 a117fd10 2020-03-18 stsp char msg[512];
155 a117fd10 2020-03-18 stsp snprintf(msg, sizeof(msg), "%s: %s", host,
156 a117fd10 2020-03-18 stsp gai_strerror(eaicode));
157 a117fd10 2020-03-18 stsp return got_error_msg(GOT_ERR_ADDRINFO, msg);
158 a117fd10 2020-03-18 stsp }
159 93658fb9 2020-03-18 stsp
160 93658fb9 2020-03-18 stsp for (p = servinfo; p != NULL; p = p->ai_next) {
161 93658fb9 2020-03-18 stsp if ((fd = socket(p->ai_family, p->ai_socktype,
162 93658fb9 2020-03-18 stsp p->ai_protocol)) == -1)
163 93658fb9 2020-03-18 stsp continue;
164 93658fb9 2020-03-18 stsp if (connect(fd, p->ai_addr, p->ai_addrlen) == 0)
165 93658fb9 2020-03-18 stsp break;
166 5cc27ede 2020-03-18 stsp err = got_error_from_errno("connect");
167 93658fb9 2020-03-18 stsp close(fd);
168 93658fb9 2020-03-18 stsp }
169 93658fb9 2020-03-18 stsp if (p == NULL)
170 5cc27ede 2020-03-18 stsp goto done;
171 93658fb9 2020-03-18 stsp
172 4312a498 2020-03-18 stsp if (asprintf(&cmd, "git-%s-pack %s", direction, path) == -1) {
173 5cc27ede 2020-03-18 stsp err = got_error_from_errno("asprintf");
174 5cc27ede 2020-03-18 stsp goto done;
175 5cc27ede 2020-03-18 stsp }
176 4312a498 2020-03-18 stsp totlen = 4 + strlen(cmd) + 1 + strlen("host=") + strlen(host) + 1;
177 4312a498 2020-03-18 stsp if (asprintf(&pkt, "%04x%s", totlen, cmd) == -1) {
178 5cc27ede 2020-03-18 stsp err = got_error_from_errno("asprintf");
179 5cc27ede 2020-03-18 stsp goto done;
180 5cc27ede 2020-03-18 stsp }
181 4312a498 2020-03-18 stsp r = write(fd, pkt, strlen(pkt) + 1);
182 4312a498 2020-03-18 stsp if (r == -1) {
183 4312a498 2020-03-18 stsp err = got_error_from_errno("write");
184 4312a498 2020-03-18 stsp goto done;
185 4312a498 2020-03-18 stsp }
186 4312a498 2020-03-18 stsp if (asprintf(&pkt, "host=%s", host) == -1) {
187 4312a498 2020-03-18 stsp err = got_error_from_errno("asprintf");
188 4312a498 2020-03-18 stsp goto done;
189 4312a498 2020-03-18 stsp }
190 4312a498 2020-03-18 stsp r = write(fd, pkt, strlen(pkt) + 1);
191 4312a498 2020-03-18 stsp if (r == -1) {
192 5cc27ede 2020-03-18 stsp err = got_error_from_errno("write");
193 4312a498 2020-03-18 stsp goto done;
194 4312a498 2020-03-18 stsp }
195 5cc27ede 2020-03-18 stsp done:
196 93658fb9 2020-03-18 stsp free(cmd);
197 93658fb9 2020-03-18 stsp free(pkt);
198 5cc27ede 2020-03-18 stsp if (err) {
199 5cc27ede 2020-03-18 stsp if (fd != -1)
200 5cc27ede 2020-03-18 stsp close(fd);
201 5cc27ede 2020-03-18 stsp } else
202 5cc27ede 2020-03-18 stsp *fetchfd = fd;
203 20eb36d0 2020-03-18 stsp return err;
204 20eb36d0 2020-03-18 stsp }
205 20eb36d0 2020-03-18 stsp
206 20eb36d0 2020-03-18 stsp const struct got_error *
207 20eb36d0 2020-03-18 stsp got_fetch_connect(int *fetchfd, const char *proto, const char *host,
208 68999b92 2020-03-18 stsp const char *port, const char *server_path, int verbosity)
209 20eb36d0 2020-03-18 stsp {
210 20eb36d0 2020-03-18 stsp const struct got_error *err = NULL;
211 20eb36d0 2020-03-18 stsp
212 20eb36d0 2020-03-18 stsp *fetchfd = -1;
213 20eb36d0 2020-03-18 stsp
214 20eb36d0 2020-03-18 stsp if (strcmp(proto, "ssh") == 0 || strcmp(proto, "git+ssh") == 0)
215 68999b92 2020-03-18 stsp err = dial_ssh(fetchfd, host, port, server_path, "upload",
216 68999b92 2020-03-18 stsp verbosity);
217 20eb36d0 2020-03-18 stsp else if (strcmp(proto, "git") == 0)
218 20eb36d0 2020-03-18 stsp err = dial_git(fetchfd, host, port, server_path, "upload");
219 20eb36d0 2020-03-18 stsp else if (strcmp(proto, "http") == 0 || strcmp(proto, "git+http") == 0)
220 20eb36d0 2020-03-18 stsp err = got_error_path(proto, GOT_ERR_NOT_IMPL);
221 20eb36d0 2020-03-18 stsp else
222 20eb36d0 2020-03-18 stsp err = got_error_path(proto, GOT_ERR_BAD_PROTO);
223 5cc27ede 2020-03-18 stsp return err;
224 93658fb9 2020-03-18 stsp }
225 93658fb9 2020-03-18 stsp
226 82ebf666 2020-03-18 stsp const struct got_error *
227 82ebf666 2020-03-18 stsp got_fetch_parse_uri(char **proto, char **host, char **port,
228 82ebf666 2020-03-18 stsp char **server_path, char **repo_name, const char *uri)
229 93658fb9 2020-03-18 stsp {
230 82ebf666 2020-03-18 stsp const struct got_error *err = NULL;
231 93658fb9 2020-03-18 stsp char *s, *p, *q;
232 9a682fbe 2020-03-19 stsp int n;
233 93658fb9 2020-03-18 stsp
234 82ebf666 2020-03-18 stsp *proto = *host = *port = *server_path = *repo_name = NULL;
235 82ebf666 2020-03-18 stsp
236 93658fb9 2020-03-18 stsp p = strstr(uri, "://");
237 93658fb9 2020-03-18 stsp if (!p) {
238 9a682fbe 2020-03-19 stsp /* Try parsing Git's "scp" style URL syntax. */
239 9a682fbe 2020-03-19 stsp *proto = strdup("ssh");
240 9a682fbe 2020-03-19 stsp if (proto == NULL) {
241 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strdup");
242 9a682fbe 2020-03-19 stsp goto done;
243 9a682fbe 2020-03-19 stsp }
244 9a682fbe 2020-03-19 stsp *port = strdup("22");
245 9a682fbe 2020-03-19 stsp if (*port == NULL) {
246 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strdup");
247 9a682fbe 2020-03-19 stsp goto done;
248 9a682fbe 2020-03-19 stsp }
249 9a682fbe 2020-03-19 stsp s = (char *)uri;
250 9a682fbe 2020-03-19 stsp q = strchr(s, ':');
251 9a682fbe 2020-03-19 stsp if (q == NULL) {
252 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
253 9a682fbe 2020-03-19 stsp goto done;
254 9a682fbe 2020-03-19 stsp }
255 9a682fbe 2020-03-19 stsp /* No slashes allowed before first colon. */
256 9a682fbe 2020-03-19 stsp p = strchr(s, '/');
257 9a682fbe 2020-03-19 stsp if (p && q > p) {
258 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
259 9a682fbe 2020-03-19 stsp goto done;
260 9a682fbe 2020-03-19 stsp }
261 82ebf666 2020-03-18 stsp *host = strndup(s, q - s);
262 82ebf666 2020-03-18 stsp if (*host == NULL) {
263 82ebf666 2020-03-18 stsp err = got_error_from_errno("strndup");
264 82ebf666 2020-03-18 stsp goto done;
265 82ebf666 2020-03-18 stsp }
266 9a682fbe 2020-03-19 stsp p = q + 1;
267 82ebf666 2020-03-18 stsp } else {
268 9a682fbe 2020-03-19 stsp *proto = strndup(uri, p - uri);
269 9a682fbe 2020-03-19 stsp if (proto == NULL) {
270 82ebf666 2020-03-18 stsp err = got_error_from_errno("strndup");
271 82ebf666 2020-03-18 stsp goto done;
272 82ebf666 2020-03-18 stsp }
273 9a682fbe 2020-03-19 stsp s = p + 3;
274 9a682fbe 2020-03-19 stsp
275 9a682fbe 2020-03-19 stsp p = strstr(s, "/");
276 9a682fbe 2020-03-19 stsp if (p == NULL || strlen(p) == 1) {
277 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
278 82ebf666 2020-03-18 stsp goto done;
279 82ebf666 2020-03-18 stsp }
280 9a682fbe 2020-03-19 stsp
281 9a682fbe 2020-03-19 stsp q = memchr(s, ':', p - s);
282 9a682fbe 2020-03-19 stsp if (q) {
283 9a682fbe 2020-03-19 stsp *host = strndup(s, q - s);
284 9a682fbe 2020-03-19 stsp if (*host == NULL) {
285 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strndup");
286 9a682fbe 2020-03-19 stsp goto done;
287 9a682fbe 2020-03-19 stsp }
288 9a682fbe 2020-03-19 stsp *port = strndup(q + 1, p - (q + 1));
289 9a682fbe 2020-03-19 stsp if (*port == NULL) {
290 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strndup");
291 9a682fbe 2020-03-19 stsp goto done;
292 9a682fbe 2020-03-19 stsp }
293 9a682fbe 2020-03-19 stsp } else {
294 9a682fbe 2020-03-19 stsp *host = strndup(s, p - s);
295 9a682fbe 2020-03-19 stsp if (*host == NULL) {
296 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strndup");
297 9a682fbe 2020-03-19 stsp goto done;
298 9a682fbe 2020-03-19 stsp }
299 9a682fbe 2020-03-19 stsp if (asprintf(port, "%u", GOT_DEFAULT_GIT_PORT) == -1) {
300 9a682fbe 2020-03-19 stsp err = got_error_from_errno("asprintf");
301 9a682fbe 2020-03-19 stsp goto done;
302 9a682fbe 2020-03-19 stsp }
303 9a682fbe 2020-03-19 stsp }
304 93658fb9 2020-03-18 stsp }
305 93658fb9 2020-03-18 stsp
306 82ebf666 2020-03-18 stsp *server_path = strdup(p);
307 82ebf666 2020-03-18 stsp if (*server_path == NULL) {
308 82ebf666 2020-03-18 stsp err = got_error_from_errno("strdup");
309 82ebf666 2020-03-18 stsp goto done;
310 82ebf666 2020-03-18 stsp }
311 82ebf666 2020-03-18 stsp
312 9a682fbe 2020-03-19 stsp p = strrchr(p, '/');
313 9a682fbe 2020-03-19 stsp if (!p || strlen(p) <= 1) {
314 82ebf666 2020-03-18 stsp err = got_error(GOT_ERR_PARSE_URI);
315 82ebf666 2020-03-18 stsp goto done;
316 93658fb9 2020-03-18 stsp }
317 9a682fbe 2020-03-19 stsp p++;
318 93658fb9 2020-03-18 stsp n = strlen(p);
319 9a682fbe 2020-03-19 stsp if (n == 0) {
320 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
321 9a682fbe 2020-03-19 stsp goto done;
322 9a682fbe 2020-03-19 stsp }
323 93658fb9 2020-03-18 stsp if (hassuffix(p, ".git"))
324 93658fb9 2020-03-18 stsp n -= 4;
325 82ebf666 2020-03-18 stsp *repo_name = strndup(p, (p + n) - p);
326 82ebf666 2020-03-18 stsp if (*repo_name == NULL) {
327 82ebf666 2020-03-18 stsp err = got_error_from_errno("strndup");
328 82ebf666 2020-03-18 stsp goto done;
329 82ebf666 2020-03-18 stsp }
330 82ebf666 2020-03-18 stsp done:
331 82ebf666 2020-03-18 stsp if (err) {
332 82ebf666 2020-03-18 stsp free(*proto);
333 82ebf666 2020-03-18 stsp *proto = NULL;
334 82ebf666 2020-03-18 stsp free(*host);
335 82ebf666 2020-03-18 stsp *host = NULL;
336 82ebf666 2020-03-18 stsp free(*port);
337 82ebf666 2020-03-18 stsp *port = NULL;
338 82ebf666 2020-03-18 stsp free(*server_path);
339 82ebf666 2020-03-18 stsp *server_path = NULL;
340 82ebf666 2020-03-18 stsp free(*repo_name);
341 82ebf666 2020-03-18 stsp *repo_name = NULL;
342 82ebf666 2020-03-18 stsp }
343 82ebf666 2020-03-18 stsp return err;
344 849f7557 2020-03-18 stsp }
345 849f7557 2020-03-18 stsp
346 849f7557 2020-03-18 stsp static const struct got_error *
347 849f7557 2020-03-18 stsp check_pack_hash(int fd, size_t sz, uint8_t *hcomp)
348 849f7557 2020-03-18 stsp {
349 849f7557 2020-03-18 stsp SHA1_CTX ctx;
350 849f7557 2020-03-18 stsp uint8_t hexpect[SHA1_DIGEST_LENGTH];
351 849f7557 2020-03-18 stsp uint8_t buf[32 * 1024];
352 849f7557 2020-03-18 stsp ssize_t n, r, nr;
353 849f7557 2020-03-18 stsp
354 849f7557 2020-03-18 stsp if (sz < sizeof(struct got_packfile_hdr) + SHA1_DIGEST_LENGTH)
355 849f7557 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE, "short packfile");
356 849f7557 2020-03-18 stsp
357 849f7557 2020-03-18 stsp n = 0;
358 849f7557 2020-03-18 stsp SHA1Init(&ctx);
359 849f7557 2020-03-18 stsp while (n < sz - 20) {
360 849f7557 2020-03-18 stsp nr = sizeof(buf);
361 849f7557 2020-03-18 stsp if (sz - n - 20 < sizeof(buf))
362 849f7557 2020-03-18 stsp nr = sz - n - 20;
363 849f7557 2020-03-18 stsp r = read(fd, buf, nr);
364 849f7557 2020-03-18 stsp if (r == -1)
365 849f7557 2020-03-18 stsp return got_error_from_errno("read");
366 849f7557 2020-03-18 stsp if (r != nr)
367 849f7557 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
368 849f7557 2020-03-18 stsp "short pack file");
369 849f7557 2020-03-18 stsp SHA1Update(&ctx, buf, nr);
370 849f7557 2020-03-18 stsp n += r;
371 849f7557 2020-03-18 stsp }
372 849f7557 2020-03-18 stsp SHA1Final(hcomp, &ctx);
373 849f7557 2020-03-18 stsp
374 849f7557 2020-03-18 stsp r = read(fd, hexpect, sizeof(hexpect));
375 849f7557 2020-03-18 stsp if (r == -1)
376 849f7557 2020-03-18 stsp return got_error_from_errno("read");
377 849f7557 2020-03-18 stsp if (r != sizeof(hexpect))
378 849f7557 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
379 849f7557 2020-03-18 stsp "short pack file");
380 849f7557 2020-03-18 stsp
381 849f7557 2020-03-18 stsp if (memcmp(hcomp, hexpect, SHA1_DIGEST_LENGTH) != 0)
382 849f7557 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
383 849f7557 2020-03-18 stsp "packfile checksum mismatch");
384 849f7557 2020-03-18 stsp
385 849f7557 2020-03-18 stsp return NULL;
386 93658fb9 2020-03-18 stsp }
387 93658fb9 2020-03-18 stsp
388 93658fb9 2020-03-18 stsp const struct got_error*
389 07e52fce 2020-03-18 stsp got_fetch_pack(struct got_object_id **pack_hash, struct got_pathlist_head *refs,
390 469dd726 2020-03-20 stsp struct got_pathlist_head *symrefs, const char *remote_name,
391 469dd726 2020-03-20 stsp int mirror_references, int fetchfd, struct got_repository *repo,
392 469dd726 2020-03-20 stsp got_fetch_progress_cb progress_cb, void *progress_arg)
393 93658fb9 2020-03-18 stsp {
394 20eb36d0 2020-03-18 stsp int imsg_fetchfds[2], imsg_idxfds[2];
395 20eb36d0 2020-03-18 stsp int packfd = -1, npackfd = -1, idxfd = -1, nidxfd = -1, nfetchfd = -1;
396 d582f26c 2020-03-18 stsp int tmpfds[3], i;
397 85e8591f 2020-03-18 stsp int fetchstatus, idxstatus, done = 0;
398 93658fb9 2020-03-18 stsp const struct got_error *err;
399 85e8591f 2020-03-18 stsp struct imsgbuf fetchibuf, idxibuf;
400 85e8591f 2020-03-18 stsp pid_t fetchpid, idxpid;
401 bb64b798 2020-03-18 stsp char *tmppackpath = NULL, *tmpidxpath = NULL;
402 afa77e03 2020-03-18 stsp char *packpath = NULL, *idxpath = NULL, *id_str = NULL;
403 76911fd2 2020-03-19 stsp const char *repo_path = got_repo_get_path_git_dir(repo);
404 33501562 2020-03-18 stsp struct got_pathlist_head have_refs;
405 abe0f35f 2020-03-18 stsp struct got_pathlist_entry *pe;
406 7848a0e1 2020-03-19 stsp struct got_reflist_head my_refs;
407 7848a0e1 2020-03-19 stsp struct got_reflist_entry *re;
408 d2cdc636 2020-03-18 stsp off_t packfile_size = 0;
409 7848a0e1 2020-03-19 stsp char *ref_prefix = NULL;
410 7848a0e1 2020-03-19 stsp size_t ref_prefixlen = 0;
411 ee61b6d3 2020-03-18 stsp char *path;
412 f1c6967f 2020-03-19 stsp char *progress = NULL;
413 abe0f35f 2020-03-18 stsp
414 d9b4d0c0 2020-03-18 stsp *pack_hash = NULL;
415 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++)
416 d582f26c 2020-03-18 stsp tmpfds[i] = -1;
417 93658fb9 2020-03-18 stsp
418 33501562 2020-03-18 stsp TAILQ_INIT(&have_refs);
419 7848a0e1 2020-03-19 stsp SIMPLEQ_INIT(&my_refs);
420 7848a0e1 2020-03-19 stsp
421 469dd726 2020-03-20 stsp if (!mirror_references) {
422 469dd726 2020-03-20 stsp if (asprintf(&ref_prefix, "refs/remotes/%s/",
423 469dd726 2020-03-20 stsp remote_name) == -1)
424 469dd726 2020-03-20 stsp return got_error_from_errno("asprintf");
425 469dd726 2020-03-20 stsp ref_prefixlen = strlen(ref_prefix);
426 469dd726 2020-03-20 stsp }
427 7848a0e1 2020-03-19 stsp
428 7848a0e1 2020-03-19 stsp err = got_ref_list(&my_refs, repo, NULL, got_ref_cmp_by_name, NULL);
429 7848a0e1 2020-03-19 stsp if (err)
430 7848a0e1 2020-03-19 stsp goto done;
431 7848a0e1 2020-03-19 stsp
432 7848a0e1 2020-03-19 stsp SIMPLEQ_FOREACH(re, &my_refs, entry) {
433 7848a0e1 2020-03-19 stsp struct got_object_id *id;
434 7848a0e1 2020-03-19 stsp const char *refname;
435 7848a0e1 2020-03-19 stsp
436 7848a0e1 2020-03-19 stsp if (got_ref_is_symbolic(re->ref))
437 7848a0e1 2020-03-19 stsp continue;
438 33501562 2020-03-18 stsp
439 7848a0e1 2020-03-19 stsp refname = got_ref_get_name(re->ref);
440 469dd726 2020-03-20 stsp
441 469dd726 2020-03-20 stsp if (mirror_references) {
442 469dd726 2020-03-20 stsp char *name;
443 469dd726 2020-03-20 stsp err = got_ref_resolve(&id, repo, re->ref);
444 469dd726 2020-03-20 stsp if (err)
445 469dd726 2020-03-20 stsp goto done;
446 469dd726 2020-03-20 stsp name = strdup(refname);
447 469dd726 2020-03-20 stsp if (name == NULL) {
448 469dd726 2020-03-20 stsp err = got_error_from_errno("strdup");
449 469dd726 2020-03-20 stsp goto done;
450 469dd726 2020-03-20 stsp }
451 469dd726 2020-03-20 stsp err = got_pathlist_append(&have_refs, name, id);
452 469dd726 2020-03-20 stsp if (err)
453 469dd726 2020-03-20 stsp goto done;
454 469dd726 2020-03-20 stsp continue;
455 469dd726 2020-03-20 stsp }
456 469dd726 2020-03-20 stsp
457 7848a0e1 2020-03-19 stsp if (strncmp("refs/tags/", refname, 10) == 0) {
458 7848a0e1 2020-03-19 stsp char *tagname;
459 7848a0e1 2020-03-19 stsp
460 7848a0e1 2020-03-19 stsp err = got_ref_resolve(&id, repo, re->ref);
461 7848a0e1 2020-03-19 stsp if (err)
462 7848a0e1 2020-03-19 stsp goto done;
463 7848a0e1 2020-03-19 stsp tagname = strdup(refname);
464 7848a0e1 2020-03-19 stsp if (tagname == NULL) {
465 7848a0e1 2020-03-19 stsp err = got_error_from_errno("strdup");
466 7848a0e1 2020-03-19 stsp goto done;
467 7848a0e1 2020-03-19 stsp }
468 7848a0e1 2020-03-19 stsp err = got_pathlist_append(&have_refs, tagname, id);
469 7848a0e1 2020-03-19 stsp if (err) {
470 7848a0e1 2020-03-19 stsp free(tagname);
471 7848a0e1 2020-03-19 stsp goto done;
472 7848a0e1 2020-03-19 stsp }
473 7848a0e1 2020-03-19 stsp }
474 7848a0e1 2020-03-19 stsp
475 7848a0e1 2020-03-19 stsp if (strncmp(ref_prefix, refname, ref_prefixlen) == 0) {
476 7848a0e1 2020-03-19 stsp char *branchname;
477 7848a0e1 2020-03-19 stsp
478 7848a0e1 2020-03-19 stsp err = got_ref_resolve(&id, repo, re->ref);
479 7848a0e1 2020-03-19 stsp if (err)
480 7848a0e1 2020-03-19 stsp goto done;
481 7848a0e1 2020-03-19 stsp
482 7848a0e1 2020-03-19 stsp if (asprintf(&branchname, "refs/heads/%s",
483 7848a0e1 2020-03-19 stsp refname + ref_prefixlen) == -1) {
484 7848a0e1 2020-03-19 stsp err = got_error_from_errno("asprintf");
485 7848a0e1 2020-03-19 stsp goto done;
486 7848a0e1 2020-03-19 stsp }
487 7848a0e1 2020-03-19 stsp err = got_pathlist_append(&have_refs, branchname, id);
488 7848a0e1 2020-03-19 stsp if (err) {
489 7848a0e1 2020-03-19 stsp free(branchname);
490 7848a0e1 2020-03-19 stsp goto done;
491 7848a0e1 2020-03-19 stsp }
492 7848a0e1 2020-03-19 stsp }
493 7848a0e1 2020-03-19 stsp }
494 7848a0e1 2020-03-19 stsp
495 66cba96f 2020-03-18 stsp if (asprintf(&path, "%s/%s/fetching.pack",
496 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
497 ee61b6d3 2020-03-18 stsp err = got_error_from_errno("asprintf");
498 ee61b6d3 2020-03-18 stsp goto done;
499 8e278d17 2020-03-18 stsp }
500 ee61b6d3 2020-03-18 stsp err = got_opentemp_named_fd(&tmppackpath, &packfd, path);
501 ee61b6d3 2020-03-18 stsp free(path);
502 fe4e1501 2020-03-18 stsp if (err)
503 8e278d17 2020-03-18 stsp goto done;
504 93658fb9 2020-03-18 stsp npackfd = dup(packfd);
505 8e278d17 2020-03-18 stsp if (npackfd == -1) {
506 8e278d17 2020-03-18 stsp err = got_error_from_errno("dup");
507 8e278d17 2020-03-18 stsp goto done;
508 8e278d17 2020-03-18 stsp }
509 66cba96f 2020-03-18 stsp if (asprintf(&path, "%s/%s/fetching.idx",
510 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
511 ee61b6d3 2020-03-18 stsp err = got_error_from_errno("asprintf");
512 ee61b6d3 2020-03-18 stsp goto done;
513 ee61b6d3 2020-03-18 stsp }
514 ee61b6d3 2020-03-18 stsp err = got_opentemp_named_fd(&tmpidxpath, &idxfd, path);
515 ee61b6d3 2020-03-18 stsp free(path);
516 fe4e1501 2020-03-18 stsp if (err)
517 8e278d17 2020-03-18 stsp goto done;
518 93658fb9 2020-03-18 stsp nidxfd = dup(idxfd);
519 8e278d17 2020-03-18 stsp if (nidxfd == -1) {
520 8e278d17 2020-03-18 stsp err = got_error_from_errno("dup");
521 8e278d17 2020-03-18 stsp goto done;
522 8e278d17 2020-03-18 stsp }
523 93658fb9 2020-03-18 stsp
524 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++) {
525 d582f26c 2020-03-18 stsp tmpfds[i] = got_opentempfd();
526 d582f26c 2020-03-18 stsp if (tmpfds[i] == -1) {
527 d582f26c 2020-03-18 stsp err = got_error_from_errno("got_opentempfd");
528 d582f26c 2020-03-18 stsp goto done;
529 d582f26c 2020-03-18 stsp }
530 4788f1ce 2020-03-18 stsp }
531 4788f1ce 2020-03-18 stsp
532 8e278d17 2020-03-18 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fetchfds) == -1) {
533 8e278d17 2020-03-18 stsp err = got_error_from_errno("socketpair");
534 8e278d17 2020-03-18 stsp goto done;
535 8e278d17 2020-03-18 stsp }
536 93658fb9 2020-03-18 stsp
537 85e8591f 2020-03-18 stsp fetchpid = fork();
538 85e8591f 2020-03-18 stsp if (fetchpid == -1) {
539 8e278d17 2020-03-18 stsp err = got_error_from_errno("fork");
540 8e278d17 2020-03-18 stsp goto done;
541 85e8591f 2020-03-18 stsp } else if (fetchpid == 0){
542 8e278d17 2020-03-18 stsp got_privsep_exec_child(imsg_fetchfds,
543 12491971 2020-03-18 stsp GOT_PATH_PROG_FETCH_PACK, tmppackpath);
544 93658fb9 2020-03-18 stsp }
545 93658fb9 2020-03-18 stsp
546 8e278d17 2020-03-18 stsp if (close(imsg_fetchfds[1]) != 0) {
547 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
548 8e278d17 2020-03-18 stsp goto done;
549 8e278d17 2020-03-18 stsp }
550 85e8591f 2020-03-18 stsp imsg_init(&fetchibuf, imsg_fetchfds[0]);
551 20eb36d0 2020-03-18 stsp nfetchfd = dup(fetchfd);
552 20eb36d0 2020-03-18 stsp if (nfetchfd == -1) {
553 20eb36d0 2020-03-18 stsp err = got_error_from_errno("dup");
554 20eb36d0 2020-03-18 stsp goto done;
555 20eb36d0 2020-03-18 stsp }
556 85e8591f 2020-03-18 stsp err = got_privsep_send_fetch_req(&fetchibuf, nfetchfd, &have_refs);
557 93658fb9 2020-03-18 stsp if (err != NULL)
558 8e278d17 2020-03-18 stsp goto done;
559 20eb36d0 2020-03-18 stsp nfetchfd = -1;
560 f826addf 2020-03-18 stsp err = got_privsep_send_fetch_outfd(&fetchibuf, npackfd);
561 93658fb9 2020-03-18 stsp if (err != NULL)
562 8e278d17 2020-03-18 stsp goto done;
563 93658fb9 2020-03-18 stsp npackfd = dup(packfd);
564 8e278d17 2020-03-18 stsp if (npackfd == -1) {
565 8e278d17 2020-03-18 stsp err = got_error_from_errno("dup");
566 8e278d17 2020-03-18 stsp goto done;
567 8e278d17 2020-03-18 stsp }
568 8e278d17 2020-03-18 stsp
569 d2cdc636 2020-03-18 stsp packfile_size = 0;
570 f1c6967f 2020-03-19 stsp progress = calloc(GOT_FETCH_PKTMAX, 1);
571 f1c6967f 2020-03-19 stsp if (progress == NULL) {
572 f1c6967f 2020-03-19 stsp err = got_error_from_errno("calloc");
573 f1c6967f 2020-03-19 stsp goto done;
574 f1c6967f 2020-03-19 stsp }
575 8f2d01a6 2020-03-18 stsp while (!done) {
576 d9b4d0c0 2020-03-18 stsp struct got_object_id *id = NULL;
577 d9b4d0c0 2020-03-18 stsp char *refname = NULL;
578 531c3985 2020-03-18 stsp char *server_progress = NULL;
579 7848a0e1 2020-03-19 stsp off_t packfile_size_cur = 0;
580 8e278d17 2020-03-18 stsp
581 8f2d01a6 2020-03-18 stsp err = got_privsep_recv_fetch_progress(&done,
582 d2cdc636 2020-03-18 stsp &id, &refname, symrefs, &server_progress,
583 85e8591f 2020-03-18 stsp &packfile_size_cur, &fetchibuf);
584 8f2d01a6 2020-03-18 stsp if (err != NULL)
585 8e278d17 2020-03-18 stsp goto done;
586 7848a0e1 2020-03-19 stsp if (done) {
587 7848a0e1 2020-03-19 stsp if (packfile_size > 0)
588 7848a0e1 2020-03-19 stsp *pack_hash = id;
589 7848a0e1 2020-03-19 stsp else
590 7848a0e1 2020-03-19 stsp free(id);
591 f1c6967f 2020-03-19 stsp } else if (refname && id) {
592 d9b4d0c0 2020-03-18 stsp err = got_pathlist_append(refs, refname, id);
593 8f2d01a6 2020-03-18 stsp if (err)
594 8e278d17 2020-03-18 stsp goto done;
595 531c3985 2020-03-18 stsp } else if (server_progress) {
596 f1c6967f 2020-03-19 stsp char *p;
597 f1c6967f 2020-03-19 stsp /*
598 f1c6967f 2020-03-19 stsp * XXX git-daemon tends to send batched output with
599 f1c6967f 2020-03-19 stsp * lines spanning separate packets. Buffer progress
600 f1c6967f 2020-03-19 stsp * output until we see a CR or LF to avoid giving
601 f1c6967f 2020-03-19 stsp * partial lines of progress output to the callback.
602 f1c6967f 2020-03-19 stsp */
603 f1c6967f 2020-03-19 stsp if (strlcat(progress, server_progress,
604 f1c6967f 2020-03-19 stsp GOT_FETCH_PKTMAX) >= GOT_FETCH_PKTMAX) {
605 f1c6967f 2020-03-19 stsp progress[0] = '\0'; /* discard */
606 f1c6967f 2020-03-19 stsp continue;
607 f1c6967f 2020-03-19 stsp }
608 f1c6967f 2020-03-19 stsp while ((p = strchr(progress, '\r')) != NULL ||
609 f1c6967f 2020-03-19 stsp (p = strchr(progress, '\n')) != NULL) {
610 f1c6967f 2020-03-19 stsp char *s;
611 f1c6967f 2020-03-19 stsp size_t n;
612 f1c6967f 2020-03-19 stsp char c = *p;
613 f1c6967f 2020-03-19 stsp *p = '\0';
614 f1c6967f 2020-03-19 stsp if (asprintf(&s, "%s%s", progress,
615 f1c6967f 2020-03-19 stsp c == '\n' ? "\n" : "") == -1) {
616 f1c6967f 2020-03-19 stsp err = got_error_from_errno("asprintf");
617 f1c6967f 2020-03-19 stsp goto done;
618 f1c6967f 2020-03-19 stsp }
619 668a20f6 2020-03-18 stsp err = progress_cb(progress_arg, s,
620 668a20f6 2020-03-18 stsp packfile_size_cur, 0, 0, 0, 0);
621 f1c6967f 2020-03-19 stsp free(s);
622 531c3985 2020-03-18 stsp if (err)
623 531c3985 2020-03-18 stsp break;
624 f1c6967f 2020-03-19 stsp n = strlen(progress);
625 f1c6967f 2020-03-19 stsp if (n < GOT_FETCH_PKTMAX - 1) {
626 f1c6967f 2020-03-19 stsp memmove(progress, &progress[n + 1],
627 f1c6967f 2020-03-19 stsp GOT_FETCH_PKTMAX - n - 1);
628 f1c6967f 2020-03-19 stsp } else
629 f1c6967f 2020-03-19 stsp progress[0] = '\0';
630 531c3985 2020-03-18 stsp }
631 531c3985 2020-03-18 stsp free(server_progress);
632 531c3985 2020-03-18 stsp if (err)
633 531c3985 2020-03-18 stsp goto done;
634 d2cdc636 2020-03-18 stsp } else if (packfile_size_cur != packfile_size) {
635 d2cdc636 2020-03-18 stsp err = progress_cb(progress_arg, NULL,
636 668a20f6 2020-03-18 stsp packfile_size_cur, 0, 0, 0, 0);
637 d2cdc636 2020-03-18 stsp if (err)
638 d2cdc636 2020-03-18 stsp break;
639 d2cdc636 2020-03-18 stsp packfile_size = packfile_size_cur;
640 8f2d01a6 2020-03-18 stsp }
641 8f2d01a6 2020-03-18 stsp }
642 85e8591f 2020-03-18 stsp if (waitpid(fetchpid, &fetchstatus, 0) == -1) {
643 8e278d17 2020-03-18 stsp err = got_error_from_errno("waitpid");
644 8e278d17 2020-03-18 stsp goto done;
645 8e278d17 2020-03-18 stsp }
646 849f7557 2020-03-18 stsp
647 7848a0e1 2020-03-19 stsp /* If zero data was fetched without error we are already up-to-date. */
648 7848a0e1 2020-03-19 stsp if (packfile_size == 0)
649 7848a0e1 2020-03-19 stsp goto done;
650 7848a0e1 2020-03-19 stsp
651 849f7557 2020-03-18 stsp if (lseek(packfd, 0, SEEK_SET) == -1) {
652 849f7557 2020-03-18 stsp err = got_error_from_errno("lseek");
653 849f7557 2020-03-18 stsp goto done;
654 849f7557 2020-03-18 stsp }
655 849f7557 2020-03-18 stsp err = check_pack_hash(packfd, packfile_size, (*pack_hash)->sha1);
656 849f7557 2020-03-18 stsp if (err)
657 849f7557 2020-03-18 stsp goto done;
658 531c3985 2020-03-18 stsp
659 8e278d17 2020-03-18 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_idxfds) == -1) {
660 8e278d17 2020-03-18 stsp err = got_error_from_errno("socketpair");
661 8e278d17 2020-03-18 stsp goto done;
662 8e278d17 2020-03-18 stsp }
663 85e8591f 2020-03-18 stsp idxpid = fork();
664 85e8591f 2020-03-18 stsp if (idxpid == -1) {
665 8e278d17 2020-03-18 stsp err= got_error_from_errno("fork");
666 8e278d17 2020-03-18 stsp goto done;
667 85e8591f 2020-03-18 stsp } else if (idxpid == 0)
668 8e278d17 2020-03-18 stsp got_privsep_exec_child(imsg_idxfds,
669 12491971 2020-03-18 stsp GOT_PATH_PROG_INDEX_PACK, tmppackpath);
670 8e278d17 2020-03-18 stsp if (close(imsg_idxfds[1]) != 0) {
671 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
672 8e278d17 2020-03-18 stsp goto done;
673 8e278d17 2020-03-18 stsp }
674 85e8591f 2020-03-18 stsp imsg_init(&idxibuf, imsg_idxfds[0]);
675 93658fb9 2020-03-18 stsp
676 668a20f6 2020-03-18 stsp err = got_privsep_send_index_pack_req(&idxibuf, (*pack_hash)->sha1,
677 668a20f6 2020-03-18 stsp npackfd);
678 93658fb9 2020-03-18 stsp if (err != NULL)
679 8e278d17 2020-03-18 stsp goto done;
680 8e278d17 2020-03-18 stsp npackfd = -1;
681 73ab1060 2020-03-18 stsp err = got_privsep_send_index_pack_outfd(&idxibuf, nidxfd);
682 93658fb9 2020-03-18 stsp if (err != NULL)
683 8e278d17 2020-03-18 stsp goto done;
684 8e278d17 2020-03-18 stsp nidxfd = -1;
685 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++) {
686 d582f26c 2020-03-18 stsp err = got_privsep_send_tmpfd(&idxibuf, tmpfds[i]);
687 d582f26c 2020-03-18 stsp if (err != NULL)
688 d582f26c 2020-03-18 stsp goto done;
689 d582f26c 2020-03-18 stsp tmpfds[i] = -1;
690 d582f26c 2020-03-18 stsp }
691 baa9fea0 2020-03-18 stsp done = 0;
692 baa9fea0 2020-03-18 stsp while (!done) {
693 668a20f6 2020-03-18 stsp int nobj_total, nobj_indexed, nobj_loose, nobj_resolved;
694 668a20f6 2020-03-18 stsp
695 668a20f6 2020-03-18 stsp err = got_privsep_recv_index_progress(&done, &nobj_total,
696 668a20f6 2020-03-18 stsp &nobj_indexed, &nobj_loose, &nobj_resolved,
697 668a20f6 2020-03-18 stsp &idxibuf);
698 baa9fea0 2020-03-18 stsp if (err != NULL)
699 baa9fea0 2020-03-18 stsp goto done;
700 668a20f6 2020-03-18 stsp if (nobj_indexed != 0) {
701 baa9fea0 2020-03-18 stsp err = progress_cb(progress_arg, NULL,
702 668a20f6 2020-03-18 stsp packfile_size, nobj_total,
703 668a20f6 2020-03-18 stsp nobj_indexed, nobj_loose, nobj_resolved);
704 baa9fea0 2020-03-18 stsp if (err)
705 baa9fea0 2020-03-18 stsp break;
706 baa9fea0 2020-03-18 stsp }
707 baa9fea0 2020-03-18 stsp imsg_clear(&idxibuf);
708 baa9fea0 2020-03-18 stsp }
709 8e278d17 2020-03-18 stsp if (close(imsg_idxfds[0]) == -1) {
710 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
711 8e278d17 2020-03-18 stsp goto done;
712 8e278d17 2020-03-18 stsp }
713 85e8591f 2020-03-18 stsp if (waitpid(idxpid, &idxstatus, 0) == -1) {
714 8e278d17 2020-03-18 stsp err = got_error_from_errno("waitpid");
715 8e278d17 2020-03-18 stsp goto done;
716 8e278d17 2020-03-18 stsp }
717 93658fb9 2020-03-18 stsp
718 d9b4d0c0 2020-03-18 stsp err = got_object_id_str(&id_str, *pack_hash);
719 afa77e03 2020-03-18 stsp if (err)
720 8e278d17 2020-03-18 stsp goto done;
721 66cba96f 2020-03-18 stsp if (asprintf(&packpath, "%s/%s/pack-%s.pack",
722 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
723 8e278d17 2020-03-18 stsp err = got_error_from_errno("asprintf");
724 8e278d17 2020-03-18 stsp goto done;
725 8e278d17 2020-03-18 stsp }
726 93658fb9 2020-03-18 stsp
727 66cba96f 2020-03-18 stsp if (asprintf(&idxpath, "%s/%s/pack-%s.idx",
728 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
729 8e278d17 2020-03-18 stsp err = got_error_from_errno("asprintf");
730 8e278d17 2020-03-18 stsp goto done;
731 8e278d17 2020-03-18 stsp }
732 afa77e03 2020-03-18 stsp
733 8e278d17 2020-03-18 stsp if (rename(tmppackpath, packpath) == -1) {
734 8e278d17 2020-03-18 stsp err = got_error_from_errno3("rename", tmppackpath, packpath);
735 8e278d17 2020-03-18 stsp goto done;
736 8e278d17 2020-03-18 stsp }
737 7848a0e1 2020-03-19 stsp free(tmppackpath);
738 7848a0e1 2020-03-19 stsp tmppackpath = NULL;
739 8e278d17 2020-03-18 stsp if (rename(tmpidxpath, idxpath) == -1) {
740 8e278d17 2020-03-18 stsp err = got_error_from_errno3("rename", tmpidxpath, idxpath);
741 8e278d17 2020-03-18 stsp goto done;
742 8e278d17 2020-03-18 stsp }
743 7848a0e1 2020-03-19 stsp free(tmpidxpath);
744 7848a0e1 2020-03-19 stsp tmpidxpath = NULL;
745 ee61b6d3 2020-03-18 stsp
746 8e278d17 2020-03-18 stsp done:
747 7848a0e1 2020-03-19 stsp if (tmppackpath && unlink(tmppackpath) == -1 && err == NULL)
748 7848a0e1 2020-03-19 stsp err = got_error_from_errno2("unlink", tmppackpath);
749 7848a0e1 2020-03-19 stsp if (tmpidxpath && unlink(tmpidxpath) == -1 && err == NULL)
750 7848a0e1 2020-03-19 stsp err = got_error_from_errno2("unlink", tmpidxpath);
751 20eb36d0 2020-03-18 stsp if (nfetchfd != -1 && close(nfetchfd) == -1 && err == NULL)
752 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
753 8e278d17 2020-03-18 stsp if (npackfd != -1 && close(npackfd) == -1 && err == NULL)
754 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
755 8e278d17 2020-03-18 stsp if (packfd != -1 && close(packfd) == -1 && err == NULL)
756 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
757 8e278d17 2020-03-18 stsp if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
758 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
759 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++) {
760 d582f26c 2020-03-18 stsp if (tmpfds[i] != -1 && close(tmpfds[i]) == -1 && err == NULL)
761 d582f26c 2020-03-18 stsp err = got_error_from_errno("close");
762 d582f26c 2020-03-18 stsp }
763 afa77e03 2020-03-18 stsp free(tmppackpath);
764 afa77e03 2020-03-18 stsp free(tmpidxpath);
765 fe4e1501 2020-03-18 stsp free(idxpath);
766 afa77e03 2020-03-18 stsp free(packpath);
767 7848a0e1 2020-03-19 stsp free(ref_prefix);
768 f1c6967f 2020-03-19 stsp free(progress);
769 fe4e1501 2020-03-18 stsp
770 7848a0e1 2020-03-19 stsp TAILQ_FOREACH(pe, &have_refs, entry) {
771 7848a0e1 2020-03-19 stsp free((char *)pe->path);
772 7848a0e1 2020-03-19 stsp free(pe->data);
773 7848a0e1 2020-03-19 stsp }
774 7848a0e1 2020-03-19 stsp got_pathlist_free(&have_refs);
775 7848a0e1 2020-03-19 stsp got_ref_list_free(&my_refs);
776 d9b4d0c0 2020-03-18 stsp if (err) {
777 d9b4d0c0 2020-03-18 stsp free(*pack_hash);
778 d9b4d0c0 2020-03-18 stsp *pack_hash = NULL;
779 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, refs, entry) {
780 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
781 d9b4d0c0 2020-03-18 stsp free(pe->data);
782 d9b4d0c0 2020-03-18 stsp }
783 d9b4d0c0 2020-03-18 stsp got_pathlist_free(refs);
784 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, symrefs, entry) {
785 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
786 d9b4d0c0 2020-03-18 stsp free(pe->data);
787 d9b4d0c0 2020-03-18 stsp }
788 d9b4d0c0 2020-03-18 stsp got_pathlist_free(symrefs);
789 d9b4d0c0 2020-03-18 stsp }
790 8e278d17 2020-03-18 stsp return err;
791 93658fb9 2020-03-18 stsp }