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/resource.h>
24 93658fb9 2020-03-18 stsp #include <sys/socket.h>
25 93658fb9 2020-03-18 stsp
26 78fb0967 2020-09-09 naddy #include <endian.h>
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 81a12da5 2020-09-09 naddy #include <unistd.h>
36 93658fb9 2020-03-18 stsp #include <zlib.h>
37 93658fb9 2020-03-18 stsp #include <ctype.h>
38 93658fb9 2020-03-18 stsp #include <limits.h>
39 93658fb9 2020-03-18 stsp #include <imsg.h>
40 93658fb9 2020-03-18 stsp #include <time.h>
41 93658fb9 2020-03-18 stsp #include <uuid.h>
42 93658fb9 2020-03-18 stsp #include <netdb.h>
43 93658fb9 2020-03-18 stsp #include <netinet/in.h>
44 93658fb9 2020-03-18 stsp
45 93658fb9 2020-03-18 stsp #include "got_error.h"
46 93658fb9 2020-03-18 stsp #include "got_reference.h"
47 93658fb9 2020-03-18 stsp #include "got_repository.h"
48 93658fb9 2020-03-18 stsp #include "got_path.h"
49 93658fb9 2020-03-18 stsp #include "got_cancel.h"
50 93658fb9 2020-03-18 stsp #include "got_worktree.h"
51 93658fb9 2020-03-18 stsp #include "got_object.h"
52 fe4e1501 2020-03-18 stsp #include "got_opentemp.h"
53 82ebf666 2020-03-18 stsp #include "got_fetch.h"
54 93658fb9 2020-03-18 stsp
55 93658fb9 2020-03-18 stsp #include "got_lib_delta.h"
56 93658fb9 2020-03-18 stsp #include "got_lib_inflate.h"
57 93658fb9 2020-03-18 stsp #include "got_lib_object.h"
58 93658fb9 2020-03-18 stsp #include "got_lib_object_parse.h"
59 93658fb9 2020-03-18 stsp #include "got_lib_object_create.h"
60 93658fb9 2020-03-18 stsp #include "got_lib_pack.h"
61 93658fb9 2020-03-18 stsp #include "got_lib_sha1.h"
62 93658fb9 2020-03-18 stsp #include "got_lib_privsep.h"
63 93658fb9 2020-03-18 stsp #include "got_lib_object_cache.h"
64 93658fb9 2020-03-18 stsp #include "got_lib_repository.h"
65 d582f26c 2020-03-18 stsp
66 d582f26c 2020-03-18 stsp #ifndef nitems
67 d582f26c 2020-03-18 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
68 ccf6dd5e 2020-12-19 stsp #endif
69 ccf6dd5e 2020-12-19 stsp
70 ccf6dd5e 2020-12-19 stsp #ifndef ssizeof
71 ccf6dd5e 2020-12-19 stsp #define ssizeof(_x) ((ssize_t)(sizeof(_x)))
72 d582f26c 2020-03-18 stsp #endif
73 93658fb9 2020-03-18 stsp
74 68999b92 2020-03-18 stsp #ifndef MIN
75 68999b92 2020-03-18 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
76 68999b92 2020-03-18 stsp #endif
77 68999b92 2020-03-18 stsp
78 93658fb9 2020-03-18 stsp static int
79 93658fb9 2020-03-18 stsp hassuffix(char *base, char *suf)
80 93658fb9 2020-03-18 stsp {
81 93658fb9 2020-03-18 stsp int nb, ns;
82 93658fb9 2020-03-18 stsp
83 93658fb9 2020-03-18 stsp nb = strlen(base);
84 93658fb9 2020-03-18 stsp ns = strlen(suf);
85 93658fb9 2020-03-18 stsp if (ns <= nb && strcmp(base + (nb - ns), suf) == 0)
86 93658fb9 2020-03-18 stsp return 1;
87 93658fb9 2020-03-18 stsp return 0;
88 93658fb9 2020-03-18 stsp }
89 93658fb9 2020-03-18 stsp
90 5cc27ede 2020-03-18 stsp static const struct got_error *
91 9c52365f 2020-03-21 stsp dial_ssh(pid_t *fetchpid, int *fetchfd, const char *host, const char *port,
92 9c52365f 2020-03-21 stsp const char *path, const char *direction, int verbosity)
93 93658fb9 2020-03-18 stsp {
94 5cc27ede 2020-03-18 stsp const struct got_error *error = NULL;
95 93658fb9 2020-03-18 stsp int pid, pfd[2];
96 93658fb9 2020-03-18 stsp char cmd[64];
97 62a4c94c 2020-03-20 stsp char *argv[11];
98 59d5e252 2020-04-21 semarie int i = 0, j;
99 93658fb9 2020-03-18 stsp
100 9c52365f 2020-03-21 stsp *fetchpid = -1;
101 5cc27ede 2020-03-18 stsp *fetchfd = -1;
102 68999b92 2020-03-18 stsp
103 59d5e252 2020-04-21 semarie argv[i++] = GOT_FETCH_PATH_SSH;
104 59d5e252 2020-04-21 semarie if (port != NULL) {
105 59d5e252 2020-04-21 semarie argv[i++] = "-p";
106 59d5e252 2020-04-21 semarie argv[i++] = (char *)port;
107 59d5e252 2020-04-21 semarie }
108 68999b92 2020-03-18 stsp if (verbosity == -1) {
109 59d5e252 2020-04-21 semarie argv[i++] = "-q";
110 68999b92 2020-03-18 stsp } else {
111 68999b92 2020-03-18 stsp /* ssh(1) allows up to 3 "-v" options. */
112 59d5e252 2020-04-21 semarie for (j = 0; j < MIN(3, verbosity); j++)
113 59d5e252 2020-04-21 semarie argv[i++] = "-v";
114 68999b92 2020-03-18 stsp }
115 59d5e252 2020-04-21 semarie argv[i++] = "--";
116 59d5e252 2020-04-21 semarie argv[i++] = (char *)host;
117 59d5e252 2020-04-21 semarie argv[i++] = (char *)cmd;
118 59d5e252 2020-04-21 semarie argv[i++] = (char *)path;
119 59d5e252 2020-04-21 semarie argv[i++] = NULL;
120 5cc27ede 2020-03-18 stsp
121 93658fb9 2020-03-18 stsp if (pipe(pfd) == -1)
122 5cc27ede 2020-03-18 stsp return got_error_from_errno("pipe");
123 5cc27ede 2020-03-18 stsp
124 93658fb9 2020-03-18 stsp pid = fork();
125 5cc27ede 2020-03-18 stsp if (pid == -1) {
126 5cc27ede 2020-03-18 stsp error = got_error_from_errno("fork");
127 5cc27ede 2020-03-18 stsp close(pfd[0]);
128 93658fb9 2020-03-18 stsp close(pfd[1]);
129 5cc27ede 2020-03-18 stsp return error;
130 5cc27ede 2020-03-18 stsp } else if (pid == 0) {
131 5cc27ede 2020-03-18 stsp int n;
132 4d9042b3 2021-03-24 stsp if (close(pfd[1]) == -1)
133 4d9042b3 2021-03-24 stsp err(1, "close");
134 4d9042b3 2021-03-24 stsp if (dup2(pfd[0], 0) == -1)
135 4d9042b3 2021-03-24 stsp err(1, "dup2");
136 4d9042b3 2021-03-24 stsp if (dup2(pfd[0], 1) == -1)
137 4d9042b3 2021-03-24 stsp err(1, "dup2");
138 5cc27ede 2020-03-18 stsp n = snprintf(cmd, sizeof(cmd), "git-%s-pack", direction);
139 ccf6dd5e 2020-12-19 stsp if (n < 0 || n >= ssizeof(cmd))
140 5cc27ede 2020-03-18 stsp err(1, "snprintf");
141 68999b92 2020-03-18 stsp if (execv(GOT_FETCH_PATH_SSH, argv) == -1)
142 4d9042b3 2021-03-24 stsp err(1, "execv");
143 5cc27ede 2020-03-18 stsp abort(); /* not reached */
144 5cc27ede 2020-03-18 stsp } else {
145 4d9042b3 2021-03-24 stsp if (close(pfd[0]) == -1)
146 4d9042b3 2021-03-24 stsp return got_error_from_errno("close");
147 9c52365f 2020-03-21 stsp *fetchpid = pid;
148 5cc27ede 2020-03-18 stsp *fetchfd = pfd[1];
149 5cc27ede 2020-03-18 stsp return NULL;
150 93658fb9 2020-03-18 stsp }
151 93658fb9 2020-03-18 stsp }
152 93658fb9 2020-03-18 stsp
153 5cc27ede 2020-03-18 stsp static const struct got_error *
154 09838ffc 2020-03-18 stsp dial_git(int *fetchfd, const char *host, const char *port, const char *path,
155 09838ffc 2020-03-18 stsp const char *direction)
156 93658fb9 2020-03-18 stsp {
157 5cc27ede 2020-03-18 stsp const struct got_error *err = NULL;
158 93658fb9 2020-03-18 stsp struct addrinfo hints, *servinfo, *p;
159 5cc27ede 2020-03-18 stsp char *cmd = NULL, *pkt = NULL;
160 4312a498 2020-03-18 stsp int fd = -1, totlen, r, eaicode;
161 5cc27ede 2020-03-18 stsp
162 5cc27ede 2020-03-18 stsp *fetchfd = -1;
163 93658fb9 2020-03-18 stsp
164 62a4c94c 2020-03-20 stsp if (port == NULL)
165 62a4c94c 2020-03-20 stsp port = GOT_DEFAULT_GIT_PORT_STR;
166 62a4c94c 2020-03-20 stsp
167 93658fb9 2020-03-18 stsp memset(&hints, 0, sizeof hints);
168 93658fb9 2020-03-18 stsp hints.ai_family = AF_UNSPEC;
169 93658fb9 2020-03-18 stsp hints.ai_socktype = SOCK_STREAM;
170 5cc27ede 2020-03-18 stsp eaicode = getaddrinfo(host, port, &hints, &servinfo);
171 a117fd10 2020-03-18 stsp if (eaicode) {
172 a117fd10 2020-03-18 stsp char msg[512];
173 a117fd10 2020-03-18 stsp snprintf(msg, sizeof(msg), "%s: %s", host,
174 a117fd10 2020-03-18 stsp gai_strerror(eaicode));
175 a117fd10 2020-03-18 stsp return got_error_msg(GOT_ERR_ADDRINFO, msg);
176 a117fd10 2020-03-18 stsp }
177 93658fb9 2020-03-18 stsp
178 93658fb9 2020-03-18 stsp for (p = servinfo; p != NULL; p = p->ai_next) {
179 93658fb9 2020-03-18 stsp if ((fd = socket(p->ai_family, p->ai_socktype,
180 93658fb9 2020-03-18 stsp p->ai_protocol)) == -1)
181 93658fb9 2020-03-18 stsp continue;
182 e03cc834 2020-09-24 stsp if (connect(fd, p->ai_addr, p->ai_addrlen) == 0) {
183 e03cc834 2020-09-24 stsp err = NULL;
184 93658fb9 2020-03-18 stsp break;
185 e03cc834 2020-09-24 stsp }
186 5cc27ede 2020-03-18 stsp err = got_error_from_errno("connect");
187 93658fb9 2020-03-18 stsp close(fd);
188 93658fb9 2020-03-18 stsp }
189 93658fb9 2020-03-18 stsp if (p == NULL)
190 5cc27ede 2020-03-18 stsp goto done;
191 93658fb9 2020-03-18 stsp
192 4312a498 2020-03-18 stsp if (asprintf(&cmd, "git-%s-pack %s", direction, path) == -1) {
193 5cc27ede 2020-03-18 stsp err = got_error_from_errno("asprintf");
194 5cc27ede 2020-03-18 stsp goto done;
195 5cc27ede 2020-03-18 stsp }
196 4312a498 2020-03-18 stsp totlen = 4 + strlen(cmd) + 1 + strlen("host=") + strlen(host) + 1;
197 4312a498 2020-03-18 stsp if (asprintf(&pkt, "%04x%s", totlen, cmd) == -1) {
198 5cc27ede 2020-03-18 stsp err = got_error_from_errno("asprintf");
199 5cc27ede 2020-03-18 stsp goto done;
200 5cc27ede 2020-03-18 stsp }
201 4312a498 2020-03-18 stsp r = write(fd, pkt, strlen(pkt) + 1);
202 4312a498 2020-03-18 stsp if (r == -1) {
203 4312a498 2020-03-18 stsp err = got_error_from_errno("write");
204 4312a498 2020-03-18 stsp goto done;
205 4312a498 2020-03-18 stsp }
206 4312a498 2020-03-18 stsp if (asprintf(&pkt, "host=%s", host) == -1) {
207 4312a498 2020-03-18 stsp err = got_error_from_errno("asprintf");
208 4312a498 2020-03-18 stsp goto done;
209 4312a498 2020-03-18 stsp }
210 4312a498 2020-03-18 stsp r = write(fd, pkt, strlen(pkt) + 1);
211 4312a498 2020-03-18 stsp if (r == -1) {
212 5cc27ede 2020-03-18 stsp err = got_error_from_errno("write");
213 4312a498 2020-03-18 stsp goto done;
214 4312a498 2020-03-18 stsp }
215 5cc27ede 2020-03-18 stsp done:
216 93658fb9 2020-03-18 stsp free(cmd);
217 93658fb9 2020-03-18 stsp free(pkt);
218 5cc27ede 2020-03-18 stsp if (err) {
219 5cc27ede 2020-03-18 stsp if (fd != -1)
220 5cc27ede 2020-03-18 stsp close(fd);
221 5cc27ede 2020-03-18 stsp } else
222 5cc27ede 2020-03-18 stsp *fetchfd = fd;
223 20eb36d0 2020-03-18 stsp return err;
224 20eb36d0 2020-03-18 stsp }
225 20eb36d0 2020-03-18 stsp
226 20eb36d0 2020-03-18 stsp const struct got_error *
227 9c52365f 2020-03-21 stsp got_fetch_connect(pid_t *fetchpid, int *fetchfd, const char *proto,
228 9c52365f 2020-03-21 stsp const char *host, const char *port, const char *server_path, int verbosity)
229 20eb36d0 2020-03-18 stsp {
230 20eb36d0 2020-03-18 stsp const struct got_error *err = NULL;
231 20eb36d0 2020-03-18 stsp
232 9c52365f 2020-03-21 stsp *fetchpid = -1;
233 20eb36d0 2020-03-18 stsp *fetchfd = -1;
234 20eb36d0 2020-03-18 stsp
235 20eb36d0 2020-03-18 stsp if (strcmp(proto, "ssh") == 0 || strcmp(proto, "git+ssh") == 0)
236 9c52365f 2020-03-21 stsp err = dial_ssh(fetchpid, fetchfd, host, port, server_path,
237 9c52365f 2020-03-21 stsp "upload", verbosity);
238 20eb36d0 2020-03-18 stsp else if (strcmp(proto, "git") == 0)
239 20eb36d0 2020-03-18 stsp err = dial_git(fetchfd, host, port, server_path, "upload");
240 20eb36d0 2020-03-18 stsp else if (strcmp(proto, "http") == 0 || strcmp(proto, "git+http") == 0)
241 20eb36d0 2020-03-18 stsp err = got_error_path(proto, GOT_ERR_NOT_IMPL);
242 20eb36d0 2020-03-18 stsp else
243 20eb36d0 2020-03-18 stsp err = got_error_path(proto, GOT_ERR_BAD_PROTO);
244 5cc27ede 2020-03-18 stsp return err;
245 93658fb9 2020-03-18 stsp }
246 93658fb9 2020-03-18 stsp
247 82ebf666 2020-03-18 stsp const struct got_error *
248 82ebf666 2020-03-18 stsp got_fetch_parse_uri(char **proto, char **host, char **port,
249 82ebf666 2020-03-18 stsp char **server_path, char **repo_name, const char *uri)
250 93658fb9 2020-03-18 stsp {
251 82ebf666 2020-03-18 stsp const struct got_error *err = NULL;
252 93658fb9 2020-03-18 stsp char *s, *p, *q;
253 9a682fbe 2020-03-19 stsp int n;
254 93658fb9 2020-03-18 stsp
255 82ebf666 2020-03-18 stsp *proto = *host = *port = *server_path = *repo_name = NULL;
256 82ebf666 2020-03-18 stsp
257 93658fb9 2020-03-18 stsp p = strstr(uri, "://");
258 93658fb9 2020-03-18 stsp if (!p) {
259 9a682fbe 2020-03-19 stsp /* Try parsing Git's "scp" style URL syntax. */
260 9a682fbe 2020-03-19 stsp *proto = strdup("ssh");
261 9a682fbe 2020-03-19 stsp if (proto == NULL) {
262 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strdup");
263 9a682fbe 2020-03-19 stsp goto done;
264 9a682fbe 2020-03-19 stsp }
265 9a682fbe 2020-03-19 stsp s = (char *)uri;
266 9a682fbe 2020-03-19 stsp q = strchr(s, ':');
267 9a682fbe 2020-03-19 stsp if (q == NULL) {
268 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
269 9a682fbe 2020-03-19 stsp goto done;
270 9a682fbe 2020-03-19 stsp }
271 9a682fbe 2020-03-19 stsp /* No slashes allowed before first colon. */
272 9a682fbe 2020-03-19 stsp p = strchr(s, '/');
273 9a682fbe 2020-03-19 stsp if (p && q > p) {
274 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
275 9a682fbe 2020-03-19 stsp goto done;
276 9a682fbe 2020-03-19 stsp }
277 82ebf666 2020-03-18 stsp *host = strndup(s, q - s);
278 82ebf666 2020-03-18 stsp if (*host == NULL) {
279 82ebf666 2020-03-18 stsp err = got_error_from_errno("strndup");
280 82ebf666 2020-03-18 stsp goto done;
281 82ebf666 2020-03-18 stsp }
282 9a682fbe 2020-03-19 stsp p = q + 1;
283 82ebf666 2020-03-18 stsp } else {
284 9a682fbe 2020-03-19 stsp *proto = strndup(uri, p - uri);
285 9a682fbe 2020-03-19 stsp if (proto == NULL) {
286 82ebf666 2020-03-18 stsp err = got_error_from_errno("strndup");
287 82ebf666 2020-03-18 stsp goto done;
288 82ebf666 2020-03-18 stsp }
289 9a682fbe 2020-03-19 stsp s = p + 3;
290 9a682fbe 2020-03-19 stsp
291 9a682fbe 2020-03-19 stsp p = strstr(s, "/");
292 9a682fbe 2020-03-19 stsp if (p == NULL || strlen(p) == 1) {
293 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
294 82ebf666 2020-03-18 stsp goto done;
295 82ebf666 2020-03-18 stsp }
296 9a682fbe 2020-03-19 stsp
297 9a682fbe 2020-03-19 stsp q = memchr(s, ':', p - s);
298 9a682fbe 2020-03-19 stsp if (q) {
299 9a682fbe 2020-03-19 stsp *host = strndup(s, q - s);
300 9a682fbe 2020-03-19 stsp if (*host == NULL) {
301 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strndup");
302 9a682fbe 2020-03-19 stsp goto done;
303 9a682fbe 2020-03-19 stsp }
304 9a682fbe 2020-03-19 stsp *port = strndup(q + 1, p - (q + 1));
305 9a682fbe 2020-03-19 stsp if (*port == NULL) {
306 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strndup");
307 9a682fbe 2020-03-19 stsp goto done;
308 9a682fbe 2020-03-19 stsp }
309 9a682fbe 2020-03-19 stsp } else {
310 9a682fbe 2020-03-19 stsp *host = strndup(s, p - s);
311 9a682fbe 2020-03-19 stsp if (*host == NULL) {
312 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strndup");
313 9a682fbe 2020-03-19 stsp goto done;
314 9a682fbe 2020-03-19 stsp }
315 9a682fbe 2020-03-19 stsp }
316 93658fb9 2020-03-18 stsp }
317 93658fb9 2020-03-18 stsp
318 0921e08f 2020-09-24 stsp while (p[0] == '/' && p[1] == '/')
319 0921e08f 2020-09-24 stsp p++;
320 82ebf666 2020-03-18 stsp *server_path = strdup(p);
321 82ebf666 2020-03-18 stsp if (*server_path == NULL) {
322 82ebf666 2020-03-18 stsp err = got_error_from_errno("strdup");
323 82ebf666 2020-03-18 stsp goto done;
324 82ebf666 2020-03-18 stsp }
325 66cb1a7f 2020-09-24 stsp got_path_strip_trailing_slashes(*server_path);
326 82ebf666 2020-03-18 stsp
327 9a682fbe 2020-03-19 stsp p = strrchr(p, '/');
328 9a682fbe 2020-03-19 stsp if (!p || strlen(p) <= 1) {
329 82ebf666 2020-03-18 stsp err = got_error(GOT_ERR_PARSE_URI);
330 82ebf666 2020-03-18 stsp goto done;
331 93658fb9 2020-03-18 stsp }
332 9a682fbe 2020-03-19 stsp p++;
333 93658fb9 2020-03-18 stsp n = strlen(p);
334 9a682fbe 2020-03-19 stsp if (n == 0) {
335 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
336 9a682fbe 2020-03-19 stsp goto done;
337 9a682fbe 2020-03-19 stsp }
338 93658fb9 2020-03-18 stsp if (hassuffix(p, ".git"))
339 93658fb9 2020-03-18 stsp n -= 4;
340 82ebf666 2020-03-18 stsp *repo_name = strndup(p, (p + n) - p);
341 82ebf666 2020-03-18 stsp if (*repo_name == NULL) {
342 82ebf666 2020-03-18 stsp err = got_error_from_errno("strndup");
343 82ebf666 2020-03-18 stsp goto done;
344 82ebf666 2020-03-18 stsp }
345 82ebf666 2020-03-18 stsp done:
346 82ebf666 2020-03-18 stsp if (err) {
347 82ebf666 2020-03-18 stsp free(*proto);
348 82ebf666 2020-03-18 stsp *proto = NULL;
349 82ebf666 2020-03-18 stsp free(*host);
350 82ebf666 2020-03-18 stsp *host = NULL;
351 82ebf666 2020-03-18 stsp free(*port);
352 82ebf666 2020-03-18 stsp *port = NULL;
353 82ebf666 2020-03-18 stsp free(*server_path);
354 82ebf666 2020-03-18 stsp *server_path = NULL;
355 82ebf666 2020-03-18 stsp free(*repo_name);
356 82ebf666 2020-03-18 stsp *repo_name = NULL;
357 82ebf666 2020-03-18 stsp }
358 82ebf666 2020-03-18 stsp return err;
359 849f7557 2020-03-18 stsp }
360 849f7557 2020-03-18 stsp
361 93658fb9 2020-03-18 stsp const struct got_error*
362 07e52fce 2020-03-18 stsp got_fetch_pack(struct got_object_id **pack_hash, struct got_pathlist_head *refs,
363 469dd726 2020-03-20 stsp struct got_pathlist_head *symrefs, const char *remote_name,
364 4ba14133 2020-03-20 stsp int mirror_references, int fetch_all_branches,
365 0e4002ca 2020-03-21 stsp struct got_pathlist_head *wanted_branches,
366 0e4002ca 2020-03-21 stsp struct got_pathlist_head *wanted_refs, int list_refs_only, int verbosity,
367 0e4002ca 2020-03-21 stsp int fetchfd, struct got_repository *repo,
368 469dd726 2020-03-20 stsp got_fetch_progress_cb progress_cb, void *progress_arg)
369 93658fb9 2020-03-18 stsp {
370 16aeacf7 2020-11-26 stsp size_t i;
371 20eb36d0 2020-03-18 stsp int imsg_fetchfds[2], imsg_idxfds[2];
372 20eb36d0 2020-03-18 stsp int packfd = -1, npackfd = -1, idxfd = -1, nidxfd = -1, nfetchfd = -1;
373 16aeacf7 2020-11-26 stsp int tmpfds[3];
374 85e8591f 2020-03-18 stsp int fetchstatus, idxstatus, done = 0;
375 93658fb9 2020-03-18 stsp const struct got_error *err;
376 85e8591f 2020-03-18 stsp struct imsgbuf fetchibuf, idxibuf;
377 85e8591f 2020-03-18 stsp pid_t fetchpid, idxpid;
378 bb64b798 2020-03-18 stsp char *tmppackpath = NULL, *tmpidxpath = NULL;
379 afa77e03 2020-03-18 stsp char *packpath = NULL, *idxpath = NULL, *id_str = NULL;
380 41b0de12 2020-03-21 stsp const char *repo_path = NULL;
381 33501562 2020-03-18 stsp struct got_pathlist_head have_refs;
382 abe0f35f 2020-03-18 stsp struct got_pathlist_entry *pe;
383 7848a0e1 2020-03-19 stsp struct got_reflist_head my_refs;
384 7848a0e1 2020-03-19 stsp struct got_reflist_entry *re;
385 d2cdc636 2020-03-18 stsp off_t packfile_size = 0;
386 393fb88d 2020-03-21 stsp struct got_packfile_hdr pack_hdr;
387 393fb88d 2020-03-21 stsp uint32_t nobj = 0;
388 7848a0e1 2020-03-19 stsp char *ref_prefix = NULL;
389 7848a0e1 2020-03-19 stsp size_t ref_prefixlen = 0;
390 ee61b6d3 2020-03-18 stsp char *path;
391 f1c6967f 2020-03-19 stsp char *progress = NULL;
392 92dc95a8 2020-03-24 stsp
393 92dc95a8 2020-03-24 stsp *pack_hash = NULL;
394 41b0de12 2020-03-21 stsp
395 0e4002ca 2020-03-21 stsp /*
396 0e4002ca 2020-03-21 stsp * Prevent fetching of references that won't make any
397 0e4002ca 2020-03-21 stsp * sense outside of the remote repository's context.
398 0e4002ca 2020-03-21 stsp */
399 0e4002ca 2020-03-21 stsp TAILQ_FOREACH(pe, wanted_refs, entry) {
400 0e4002ca 2020-03-21 stsp const char *refname = pe->path;
401 0e4002ca 2020-03-21 stsp if (strncmp(refname, "refs/got/", 9) == 0 ||
402 0e4002ca 2020-03-21 stsp strncmp(refname, "got/", 4) == 0 ||
403 0e4002ca 2020-03-21 stsp strncmp(refname, "refs/remotes/", 13) == 0 ||
404 0e4002ca 2020-03-21 stsp strncmp(refname, "remotes/", 8) == 0)
405 0e4002ca 2020-03-21 stsp return got_error_path(refname, GOT_ERR_FETCH_BAD_REF);
406 0e4002ca 2020-03-21 stsp }
407 0e4002ca 2020-03-21 stsp
408 41b0de12 2020-03-21 stsp if (!list_refs_only)
409 41b0de12 2020-03-21 stsp repo_path = got_repo_get_path_git_dir(repo);
410 abe0f35f 2020-03-18 stsp
411 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++)
412 d582f26c 2020-03-18 stsp tmpfds[i] = -1;
413 93658fb9 2020-03-18 stsp
414 33501562 2020-03-18 stsp TAILQ_INIT(&have_refs);
415 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&my_refs);
416 7848a0e1 2020-03-19 stsp
417 469dd726 2020-03-20 stsp if (!mirror_references) {
418 469dd726 2020-03-20 stsp if (asprintf(&ref_prefix, "refs/remotes/%s/",
419 469dd726 2020-03-20 stsp remote_name) == -1)
420 469dd726 2020-03-20 stsp return got_error_from_errno("asprintf");
421 469dd726 2020-03-20 stsp ref_prefixlen = strlen(ref_prefix);
422 469dd726 2020-03-20 stsp }
423 7848a0e1 2020-03-19 stsp
424 41b0de12 2020-03-21 stsp if (!list_refs_only) {
425 41b0de12 2020-03-21 stsp err = got_ref_list(&my_refs, repo, NULL,
426 41b0de12 2020-03-21 stsp got_ref_cmp_by_name, NULL);
427 41b0de12 2020-03-21 stsp if (err)
428 41b0de12 2020-03-21 stsp goto done;
429 41b0de12 2020-03-21 stsp }
430 7848a0e1 2020-03-19 stsp
431 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &my_refs, entry) {
432 7848a0e1 2020-03-19 stsp struct got_object_id *id;
433 7848a0e1 2020-03-19 stsp const char *refname;
434 7848a0e1 2020-03-19 stsp
435 7848a0e1 2020-03-19 stsp if (got_ref_is_symbolic(re->ref))
436 7848a0e1 2020-03-19 stsp continue;
437 33501562 2020-03-18 stsp
438 7848a0e1 2020-03-19 stsp refname = got_ref_get_name(re->ref);
439 469dd726 2020-03-20 stsp
440 469dd726 2020-03-20 stsp if (mirror_references) {
441 469dd726 2020-03-20 stsp char *name;
442 469dd726 2020-03-20 stsp err = got_ref_resolve(&id, repo, re->ref);
443 469dd726 2020-03-20 stsp if (err)
444 469dd726 2020-03-20 stsp goto done;
445 469dd726 2020-03-20 stsp name = strdup(refname);
446 469dd726 2020-03-20 stsp if (name == NULL) {
447 469dd726 2020-03-20 stsp err = got_error_from_errno("strdup");
448 469dd726 2020-03-20 stsp goto done;
449 469dd726 2020-03-20 stsp }
450 469dd726 2020-03-20 stsp err = got_pathlist_append(&have_refs, name, id);
451 469dd726 2020-03-20 stsp if (err)
452 469dd726 2020-03-20 stsp goto done;
453 469dd726 2020-03-20 stsp continue;
454 469dd726 2020-03-20 stsp }
455 469dd726 2020-03-20 stsp
456 7848a0e1 2020-03-19 stsp if (strncmp("refs/tags/", refname, 10) == 0) {
457 7848a0e1 2020-03-19 stsp char *tagname;
458 7848a0e1 2020-03-19 stsp
459 7848a0e1 2020-03-19 stsp err = got_ref_resolve(&id, repo, re->ref);
460 7848a0e1 2020-03-19 stsp if (err)
461 7848a0e1 2020-03-19 stsp goto done;
462 7848a0e1 2020-03-19 stsp tagname = strdup(refname);
463 7848a0e1 2020-03-19 stsp if (tagname == NULL) {
464 7848a0e1 2020-03-19 stsp err = got_error_from_errno("strdup");
465 7848a0e1 2020-03-19 stsp goto done;
466 7848a0e1 2020-03-19 stsp }
467 7848a0e1 2020-03-19 stsp err = got_pathlist_append(&have_refs, tagname, id);
468 7848a0e1 2020-03-19 stsp if (err) {
469 7848a0e1 2020-03-19 stsp free(tagname);
470 7848a0e1 2020-03-19 stsp goto done;
471 7848a0e1 2020-03-19 stsp }
472 7848a0e1 2020-03-19 stsp }
473 7848a0e1 2020-03-19 stsp
474 7848a0e1 2020-03-19 stsp if (strncmp(ref_prefix, refname, ref_prefixlen) == 0) {
475 7848a0e1 2020-03-19 stsp char *branchname;
476 7848a0e1 2020-03-19 stsp
477 7848a0e1 2020-03-19 stsp err = got_ref_resolve(&id, repo, re->ref);
478 7848a0e1 2020-03-19 stsp if (err)
479 7848a0e1 2020-03-19 stsp goto done;
480 7848a0e1 2020-03-19 stsp
481 7848a0e1 2020-03-19 stsp if (asprintf(&branchname, "refs/heads/%s",
482 7848a0e1 2020-03-19 stsp refname + ref_prefixlen) == -1) {
483 7848a0e1 2020-03-19 stsp err = got_error_from_errno("asprintf");
484 7848a0e1 2020-03-19 stsp goto done;
485 7848a0e1 2020-03-19 stsp }
486 7848a0e1 2020-03-19 stsp err = got_pathlist_append(&have_refs, branchname, id);
487 7848a0e1 2020-03-19 stsp if (err) {
488 7848a0e1 2020-03-19 stsp free(branchname);
489 7848a0e1 2020-03-19 stsp goto done;
490 7848a0e1 2020-03-19 stsp }
491 7848a0e1 2020-03-19 stsp }
492 7848a0e1 2020-03-19 stsp }
493 7848a0e1 2020-03-19 stsp
494 41b0de12 2020-03-21 stsp if (list_refs_only) {
495 41b0de12 2020-03-21 stsp packfd = got_opentempfd();
496 41b0de12 2020-03-21 stsp if (packfd == -1) {
497 41b0de12 2020-03-21 stsp err = got_error_from_errno("got_opentempfd");
498 41b0de12 2020-03-21 stsp goto done;
499 41b0de12 2020-03-21 stsp }
500 41b0de12 2020-03-21 stsp } else {
501 41b0de12 2020-03-21 stsp if (asprintf(&path, "%s/%s/fetching.pack",
502 41b0de12 2020-03-21 stsp repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
503 41b0de12 2020-03-21 stsp err = got_error_from_errno("asprintf");
504 41b0de12 2020-03-21 stsp goto done;
505 41b0de12 2020-03-21 stsp }
506 41b0de12 2020-03-21 stsp err = got_opentemp_named_fd(&tmppackpath, &packfd, path);
507 41b0de12 2020-03-21 stsp free(path);
508 41b0de12 2020-03-21 stsp if (err)
509 0843a4ce 2020-10-31 semarie goto done;
510 0843a4ce 2020-10-31 semarie if (fchmod(packfd, GOT_DEFAULT_FILE_MODE) != 0) {
511 0843a4ce 2020-10-31 semarie err = got_error_from_errno2("fchmod", tmppackpath);
512 41b0de12 2020-03-21 stsp goto done;
513 0843a4ce 2020-10-31 semarie }
514 8e278d17 2020-03-18 stsp }
515 41b0de12 2020-03-21 stsp if (list_refs_only) {
516 41b0de12 2020-03-21 stsp idxfd = got_opentempfd();
517 41b0de12 2020-03-21 stsp if (idxfd == -1) {
518 41b0de12 2020-03-21 stsp err = got_error_from_errno("got_opentempfd");
519 41b0de12 2020-03-21 stsp goto done;
520 41b0de12 2020-03-21 stsp }
521 41b0de12 2020-03-21 stsp } else {
522 41b0de12 2020-03-21 stsp if (asprintf(&path, "%s/%s/fetching.idx",
523 41b0de12 2020-03-21 stsp repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
524 41b0de12 2020-03-21 stsp err = got_error_from_errno("asprintf");
525 41b0de12 2020-03-21 stsp goto done;
526 41b0de12 2020-03-21 stsp }
527 41b0de12 2020-03-21 stsp err = got_opentemp_named_fd(&tmpidxpath, &idxfd, path);
528 41b0de12 2020-03-21 stsp free(path);
529 41b0de12 2020-03-21 stsp if (err)
530 0843a4ce 2020-10-31 semarie goto done;
531 0843a4ce 2020-10-31 semarie if (fchmod(idxfd, GOT_DEFAULT_FILE_MODE) != 0) {
532 0843a4ce 2020-10-31 semarie err = got_error_from_errno2("fchmod", tmpidxpath);
533 41b0de12 2020-03-21 stsp goto done;
534 0843a4ce 2020-10-31 semarie }
535 ee61b6d3 2020-03-18 stsp }
536 93658fb9 2020-03-18 stsp nidxfd = dup(idxfd);
537 8e278d17 2020-03-18 stsp if (nidxfd == -1) {
538 8e278d17 2020-03-18 stsp err = got_error_from_errno("dup");
539 8e278d17 2020-03-18 stsp goto done;
540 8e278d17 2020-03-18 stsp }
541 93658fb9 2020-03-18 stsp
542 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++) {
543 d582f26c 2020-03-18 stsp tmpfds[i] = got_opentempfd();
544 d582f26c 2020-03-18 stsp if (tmpfds[i] == -1) {
545 d582f26c 2020-03-18 stsp err = got_error_from_errno("got_opentempfd");
546 d582f26c 2020-03-18 stsp goto done;
547 d582f26c 2020-03-18 stsp }
548 4788f1ce 2020-03-18 stsp }
549 4788f1ce 2020-03-18 stsp
550 8e278d17 2020-03-18 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fetchfds) == -1) {
551 8e278d17 2020-03-18 stsp err = got_error_from_errno("socketpair");
552 8e278d17 2020-03-18 stsp goto done;
553 8e278d17 2020-03-18 stsp }
554 93658fb9 2020-03-18 stsp
555 85e8591f 2020-03-18 stsp fetchpid = fork();
556 85e8591f 2020-03-18 stsp if (fetchpid == -1) {
557 8e278d17 2020-03-18 stsp err = got_error_from_errno("fork");
558 8e278d17 2020-03-18 stsp goto done;
559 85e8591f 2020-03-18 stsp } else if (fetchpid == 0){
560 8e278d17 2020-03-18 stsp got_privsep_exec_child(imsg_fetchfds,
561 12491971 2020-03-18 stsp GOT_PATH_PROG_FETCH_PACK, tmppackpath);
562 93658fb9 2020-03-18 stsp }
563 93658fb9 2020-03-18 stsp
564 08578a35 2021-01-22 stsp if (close(imsg_fetchfds[1]) == -1) {
565 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
566 8e278d17 2020-03-18 stsp goto done;
567 8e278d17 2020-03-18 stsp }
568 85e8591f 2020-03-18 stsp imsg_init(&fetchibuf, imsg_fetchfds[0]);
569 20eb36d0 2020-03-18 stsp nfetchfd = dup(fetchfd);
570 20eb36d0 2020-03-18 stsp if (nfetchfd == -1) {
571 20eb36d0 2020-03-18 stsp err = got_error_from_errno("dup");
572 20eb36d0 2020-03-18 stsp goto done;
573 20eb36d0 2020-03-18 stsp }
574 659e7fbd 2020-03-20 stsp err = got_privsep_send_fetch_req(&fetchibuf, nfetchfd, &have_refs,
575 0e4002ca 2020-03-21 stsp fetch_all_branches, wanted_branches, wanted_refs,
576 0e4002ca 2020-03-21 stsp list_refs_only, verbosity);
577 93658fb9 2020-03-18 stsp if (err != NULL)
578 8e278d17 2020-03-18 stsp goto done;
579 20eb36d0 2020-03-18 stsp nfetchfd = -1;
580 93658fb9 2020-03-18 stsp npackfd = dup(packfd);
581 8e278d17 2020-03-18 stsp if (npackfd == -1) {
582 8e278d17 2020-03-18 stsp err = got_error_from_errno("dup");
583 8e278d17 2020-03-18 stsp goto done;
584 8e278d17 2020-03-18 stsp }
585 393fb88d 2020-03-21 stsp err = got_privsep_send_fetch_outfd(&fetchibuf, npackfd);
586 393fb88d 2020-03-21 stsp if (err != NULL)
587 393fb88d 2020-03-21 stsp goto done;
588 393fb88d 2020-03-21 stsp npackfd = -1;
589 8e278d17 2020-03-18 stsp
590 d2cdc636 2020-03-18 stsp packfile_size = 0;
591 f1c6967f 2020-03-19 stsp progress = calloc(GOT_FETCH_PKTMAX, 1);
592 f1c6967f 2020-03-19 stsp if (progress == NULL) {
593 f1c6967f 2020-03-19 stsp err = got_error_from_errno("calloc");
594 f1c6967f 2020-03-19 stsp goto done;
595 f1c6967f 2020-03-19 stsp }
596 1d72a2a0 2020-03-24 stsp
597 1d72a2a0 2020-03-24 stsp *pack_hash = calloc(1, sizeof(**pack_hash));
598 1d72a2a0 2020-03-24 stsp if (*pack_hash == NULL) {
599 1d72a2a0 2020-03-24 stsp err = got_error_from_errno("calloc");
600 1d72a2a0 2020-03-24 stsp goto done;
601 1d72a2a0 2020-03-24 stsp }
602 1d72a2a0 2020-03-24 stsp
603 8f2d01a6 2020-03-18 stsp while (!done) {
604 d9b4d0c0 2020-03-18 stsp struct got_object_id *id = NULL;
605 d9b4d0c0 2020-03-18 stsp char *refname = NULL;
606 531c3985 2020-03-18 stsp char *server_progress = NULL;
607 7848a0e1 2020-03-19 stsp off_t packfile_size_cur = 0;
608 8e278d17 2020-03-18 stsp
609 8f2d01a6 2020-03-18 stsp err = got_privsep_recv_fetch_progress(&done,
610 d2cdc636 2020-03-18 stsp &id, &refname, symrefs, &server_progress,
611 1d72a2a0 2020-03-24 stsp &packfile_size_cur, (*pack_hash)->sha1, &fetchibuf);
612 8f2d01a6 2020-03-18 stsp if (err != NULL)
613 8e278d17 2020-03-18 stsp goto done;
614 1d72a2a0 2020-03-24 stsp if (!done && refname && id) {
615 41b0de12 2020-03-21 stsp err = got_pathlist_insert(NULL, refs, refname, id);
616 8f2d01a6 2020-03-18 stsp if (err)
617 8e278d17 2020-03-18 stsp goto done;
618 1d72a2a0 2020-03-24 stsp } else if (!done && server_progress) {
619 f1c6967f 2020-03-19 stsp char *p;
620 f1c6967f 2020-03-19 stsp /*
621 f1c6967f 2020-03-19 stsp * XXX git-daemon tends to send batched output with
622 f1c6967f 2020-03-19 stsp * lines spanning separate packets. Buffer progress
623 f1c6967f 2020-03-19 stsp * output until we see a CR or LF to avoid giving
624 f1c6967f 2020-03-19 stsp * partial lines of progress output to the callback.
625 f1c6967f 2020-03-19 stsp */
626 f1c6967f 2020-03-19 stsp if (strlcat(progress, server_progress,
627 f1c6967f 2020-03-19 stsp GOT_FETCH_PKTMAX) >= GOT_FETCH_PKTMAX) {
628 f1c6967f 2020-03-19 stsp progress[0] = '\0'; /* discard */
629 f1c6967f 2020-03-19 stsp continue;
630 f1c6967f 2020-03-19 stsp }
631 f1c6967f 2020-03-19 stsp while ((p = strchr(progress, '\r')) != NULL ||
632 f1c6967f 2020-03-19 stsp (p = strchr(progress, '\n')) != NULL) {
633 f1c6967f 2020-03-19 stsp char *s;
634 f1c6967f 2020-03-19 stsp size_t n;
635 f1c6967f 2020-03-19 stsp char c = *p;
636 f1c6967f 2020-03-19 stsp *p = '\0';
637 f1c6967f 2020-03-19 stsp if (asprintf(&s, "%s%s", progress,
638 f1c6967f 2020-03-19 stsp c == '\n' ? "\n" : "") == -1) {
639 f1c6967f 2020-03-19 stsp err = got_error_from_errno("asprintf");
640 f1c6967f 2020-03-19 stsp goto done;
641 f1c6967f 2020-03-19 stsp }
642 668a20f6 2020-03-18 stsp err = progress_cb(progress_arg, s,
643 668a20f6 2020-03-18 stsp packfile_size_cur, 0, 0, 0, 0);
644 f1c6967f 2020-03-19 stsp free(s);
645 531c3985 2020-03-18 stsp if (err)
646 531c3985 2020-03-18 stsp break;
647 f1c6967f 2020-03-19 stsp n = strlen(progress);
648 f1c6967f 2020-03-19 stsp if (n < GOT_FETCH_PKTMAX - 1) {
649 f1c6967f 2020-03-19 stsp memmove(progress, &progress[n + 1],
650 f1c6967f 2020-03-19 stsp GOT_FETCH_PKTMAX - n - 1);
651 f1c6967f 2020-03-19 stsp } else
652 f1c6967f 2020-03-19 stsp progress[0] = '\0';
653 531c3985 2020-03-18 stsp }
654 531c3985 2020-03-18 stsp free(server_progress);
655 531c3985 2020-03-18 stsp if (err)
656 531c3985 2020-03-18 stsp goto done;
657 1d72a2a0 2020-03-24 stsp } else if (!done && packfile_size_cur != packfile_size) {
658 d2cdc636 2020-03-18 stsp err = progress_cb(progress_arg, NULL,
659 668a20f6 2020-03-18 stsp packfile_size_cur, 0, 0, 0, 0);
660 d2cdc636 2020-03-18 stsp if (err)
661 d2cdc636 2020-03-18 stsp break;
662 d2cdc636 2020-03-18 stsp packfile_size = packfile_size_cur;
663 8f2d01a6 2020-03-18 stsp }
664 8f2d01a6 2020-03-18 stsp }
665 85e8591f 2020-03-18 stsp if (waitpid(fetchpid, &fetchstatus, 0) == -1) {
666 8e278d17 2020-03-18 stsp err = got_error_from_errno("waitpid");
667 393fb88d 2020-03-21 stsp goto done;
668 393fb88d 2020-03-21 stsp }
669 393fb88d 2020-03-21 stsp
670 393fb88d 2020-03-21 stsp if (lseek(packfd, 0, SEEK_SET) == -1) {
671 393fb88d 2020-03-21 stsp err = got_error_from_errno("lseek");
672 8e278d17 2020-03-18 stsp goto done;
673 8e278d17 2020-03-18 stsp }
674 849f7557 2020-03-18 stsp
675 7848a0e1 2020-03-19 stsp /* If zero data was fetched without error we are already up-to-date. */
676 1d72a2a0 2020-03-24 stsp if (packfile_size == 0) {
677 1d72a2a0 2020-03-24 stsp free(*pack_hash);
678 1d72a2a0 2020-03-24 stsp *pack_hash = NULL;
679 393fb88d 2020-03-21 stsp goto done;
680 ccf6dd5e 2020-12-19 stsp } else if (packfile_size < ssizeof(pack_hdr) + SHA1_DIGEST_LENGTH) {
681 393fb88d 2020-03-21 stsp err = got_error_msg(GOT_ERR_BAD_PACKFILE, "short pack file");
682 393fb88d 2020-03-21 stsp goto done;
683 393fb88d 2020-03-21 stsp } else {
684 393fb88d 2020-03-21 stsp ssize_t n;
685 393fb88d 2020-03-21 stsp
686 ccf6dd5e 2020-12-19 stsp n = read(packfd, &pack_hdr, ssizeof(pack_hdr));
687 393fb88d 2020-03-21 stsp if (n == -1) {
688 393fb88d 2020-03-21 stsp err = got_error_from_errno("read");
689 393fb88d 2020-03-21 stsp goto done;
690 393fb88d 2020-03-21 stsp }
691 ccf6dd5e 2020-12-19 stsp if (n != ssizeof(pack_hdr)) {
692 393fb88d 2020-03-21 stsp err = got_error(GOT_ERR_IO);
693 393fb88d 2020-03-21 stsp goto done;
694 393fb88d 2020-03-21 stsp }
695 393fb88d 2020-03-21 stsp if (pack_hdr.signature != htobe32(GOT_PACKFILE_SIGNATURE)) {
696 393fb88d 2020-03-21 stsp err = got_error_msg(GOT_ERR_BAD_PACKFILE,
697 393fb88d 2020-03-21 stsp "bad pack file signature");
698 393fb88d 2020-03-21 stsp goto done;
699 393fb88d 2020-03-21 stsp }
700 393fb88d 2020-03-21 stsp if (pack_hdr.version != htobe32(GOT_PACKFILE_VERSION)) {
701 393fb88d 2020-03-21 stsp err = got_error_msg(GOT_ERR_BAD_PACKFILE,
702 393fb88d 2020-03-21 stsp "bad pack file version");
703 393fb88d 2020-03-21 stsp goto done;
704 393fb88d 2020-03-21 stsp }
705 78fb0967 2020-09-09 naddy nobj = be32toh(pack_hdr.nobjects);
706 393fb88d 2020-03-21 stsp if (nobj == 0 &&
707 ccf6dd5e 2020-12-19 stsp packfile_size > ssizeof(pack_hdr) + SHA1_DIGEST_LENGTH)
708 393fb88d 2020-03-21 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
709 393fb88d 2020-03-21 stsp "bad pack file with zero objects");
710 393fb88d 2020-03-21 stsp if (nobj != 0 &&
711 ccf6dd5e 2020-12-19 stsp packfile_size <= ssizeof(pack_hdr) + SHA1_DIGEST_LENGTH)
712 393fb88d 2020-03-21 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
713 393fb88d 2020-03-21 stsp "empty pack file with non-zero object count");
714 393fb88d 2020-03-21 stsp }
715 393fb88d 2020-03-21 stsp
716 393fb88d 2020-03-21 stsp /*
717 393fb88d 2020-03-21 stsp * If the pack file contains no objects, we may only need to update
718 393fb88d 2020-03-21 stsp * references in our repository. The caller will take care of that.
719 393fb88d 2020-03-21 stsp */
720 393fb88d 2020-03-21 stsp if (nobj == 0)
721 849f7557 2020-03-18 stsp goto done;
722 393fb88d 2020-03-21 stsp
723 393fb88d 2020-03-21 stsp if (lseek(packfd, 0, SEEK_SET) == -1) {
724 393fb88d 2020-03-21 stsp err = got_error_from_errno("lseek");
725 393fb88d 2020-03-21 stsp goto done;
726 393fb88d 2020-03-21 stsp }
727 531c3985 2020-03-18 stsp
728 8e278d17 2020-03-18 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_idxfds) == -1) {
729 8e278d17 2020-03-18 stsp err = got_error_from_errno("socketpair");
730 8e278d17 2020-03-18 stsp goto done;
731 8e278d17 2020-03-18 stsp }
732 85e8591f 2020-03-18 stsp idxpid = fork();
733 85e8591f 2020-03-18 stsp if (idxpid == -1) {
734 8e278d17 2020-03-18 stsp err= got_error_from_errno("fork");
735 8e278d17 2020-03-18 stsp goto done;
736 85e8591f 2020-03-18 stsp } else if (idxpid == 0)
737 8e278d17 2020-03-18 stsp got_privsep_exec_child(imsg_idxfds,
738 12491971 2020-03-18 stsp GOT_PATH_PROG_INDEX_PACK, tmppackpath);
739 08578a35 2021-01-22 stsp if (close(imsg_idxfds[1]) == -1) {
740 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
741 8e278d17 2020-03-18 stsp goto done;
742 8e278d17 2020-03-18 stsp }
743 85e8591f 2020-03-18 stsp imsg_init(&idxibuf, imsg_idxfds[0]);
744 93658fb9 2020-03-18 stsp
745 393fb88d 2020-03-21 stsp npackfd = dup(packfd);
746 393fb88d 2020-03-21 stsp if (npackfd == -1) {
747 393fb88d 2020-03-21 stsp err = got_error_from_errno("dup");
748 393fb88d 2020-03-21 stsp goto done;
749 393fb88d 2020-03-21 stsp }
750 668a20f6 2020-03-18 stsp err = got_privsep_send_index_pack_req(&idxibuf, (*pack_hash)->sha1,
751 668a20f6 2020-03-18 stsp npackfd);
752 93658fb9 2020-03-18 stsp if (err != NULL)
753 8e278d17 2020-03-18 stsp goto done;
754 8e278d17 2020-03-18 stsp npackfd = -1;
755 73ab1060 2020-03-18 stsp err = got_privsep_send_index_pack_outfd(&idxibuf, nidxfd);
756 93658fb9 2020-03-18 stsp if (err != NULL)
757 8e278d17 2020-03-18 stsp goto done;
758 8e278d17 2020-03-18 stsp nidxfd = -1;
759 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++) {
760 d582f26c 2020-03-18 stsp err = got_privsep_send_tmpfd(&idxibuf, tmpfds[i]);
761 d582f26c 2020-03-18 stsp if (err != NULL)
762 d582f26c 2020-03-18 stsp goto done;
763 d582f26c 2020-03-18 stsp tmpfds[i] = -1;
764 d582f26c 2020-03-18 stsp }
765 baa9fea0 2020-03-18 stsp done = 0;
766 baa9fea0 2020-03-18 stsp while (!done) {
767 668a20f6 2020-03-18 stsp int nobj_total, nobj_indexed, nobj_loose, nobj_resolved;
768 668a20f6 2020-03-18 stsp
769 668a20f6 2020-03-18 stsp err = got_privsep_recv_index_progress(&done, &nobj_total,
770 668a20f6 2020-03-18 stsp &nobj_indexed, &nobj_loose, &nobj_resolved,
771 668a20f6 2020-03-18 stsp &idxibuf);
772 baa9fea0 2020-03-18 stsp if (err != NULL)
773 baa9fea0 2020-03-18 stsp goto done;
774 668a20f6 2020-03-18 stsp if (nobj_indexed != 0) {
775 baa9fea0 2020-03-18 stsp err = progress_cb(progress_arg, NULL,
776 668a20f6 2020-03-18 stsp packfile_size, nobj_total,
777 668a20f6 2020-03-18 stsp nobj_indexed, nobj_loose, nobj_resolved);
778 baa9fea0 2020-03-18 stsp if (err)
779 baa9fea0 2020-03-18 stsp break;
780 baa9fea0 2020-03-18 stsp }
781 baa9fea0 2020-03-18 stsp imsg_clear(&idxibuf);
782 baa9fea0 2020-03-18 stsp }
783 8e278d17 2020-03-18 stsp if (close(imsg_idxfds[0]) == -1) {
784 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
785 8e278d17 2020-03-18 stsp goto done;
786 8e278d17 2020-03-18 stsp }
787 85e8591f 2020-03-18 stsp if (waitpid(idxpid, &idxstatus, 0) == -1) {
788 8e278d17 2020-03-18 stsp err = got_error_from_errno("waitpid");
789 8e278d17 2020-03-18 stsp goto done;
790 8e278d17 2020-03-18 stsp }
791 93658fb9 2020-03-18 stsp
792 d9b4d0c0 2020-03-18 stsp err = got_object_id_str(&id_str, *pack_hash);
793 afa77e03 2020-03-18 stsp if (err)
794 8e278d17 2020-03-18 stsp goto done;
795 66cba96f 2020-03-18 stsp if (asprintf(&packpath, "%s/%s/pack-%s.pack",
796 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
797 8e278d17 2020-03-18 stsp err = got_error_from_errno("asprintf");
798 8e278d17 2020-03-18 stsp goto done;
799 8e278d17 2020-03-18 stsp }
800 93658fb9 2020-03-18 stsp
801 66cba96f 2020-03-18 stsp if (asprintf(&idxpath, "%s/%s/pack-%s.idx",
802 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
803 8e278d17 2020-03-18 stsp err = got_error_from_errno("asprintf");
804 8e278d17 2020-03-18 stsp goto done;
805 8e278d17 2020-03-18 stsp }
806 afa77e03 2020-03-18 stsp
807 8e278d17 2020-03-18 stsp if (rename(tmppackpath, packpath) == -1) {
808 8e278d17 2020-03-18 stsp err = got_error_from_errno3("rename", tmppackpath, packpath);
809 8e278d17 2020-03-18 stsp goto done;
810 8e278d17 2020-03-18 stsp }
811 7848a0e1 2020-03-19 stsp free(tmppackpath);
812 7848a0e1 2020-03-19 stsp tmppackpath = NULL;
813 8e278d17 2020-03-18 stsp if (rename(tmpidxpath, idxpath) == -1) {
814 8e278d17 2020-03-18 stsp err = got_error_from_errno3("rename", tmpidxpath, idxpath);
815 8e278d17 2020-03-18 stsp goto done;
816 8e278d17 2020-03-18 stsp }
817 7848a0e1 2020-03-19 stsp free(tmpidxpath);
818 7848a0e1 2020-03-19 stsp tmpidxpath = NULL;
819 ee61b6d3 2020-03-18 stsp
820 8e278d17 2020-03-18 stsp done:
821 7848a0e1 2020-03-19 stsp if (tmppackpath && unlink(tmppackpath) == -1 && err == NULL)
822 7848a0e1 2020-03-19 stsp err = got_error_from_errno2("unlink", tmppackpath);
823 7848a0e1 2020-03-19 stsp if (tmpidxpath && unlink(tmpidxpath) == -1 && err == NULL)
824 7848a0e1 2020-03-19 stsp err = got_error_from_errno2("unlink", tmpidxpath);
825 20eb36d0 2020-03-18 stsp if (nfetchfd != -1 && close(nfetchfd) == -1 && err == NULL)
826 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
827 8e278d17 2020-03-18 stsp if (npackfd != -1 && close(npackfd) == -1 && err == NULL)
828 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
829 8e278d17 2020-03-18 stsp if (packfd != -1 && close(packfd) == -1 && err == NULL)
830 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
831 8e278d17 2020-03-18 stsp if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
832 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
833 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++) {
834 d582f26c 2020-03-18 stsp if (tmpfds[i] != -1 && close(tmpfds[i]) == -1 && err == NULL)
835 d582f26c 2020-03-18 stsp err = got_error_from_errno("close");
836 d582f26c 2020-03-18 stsp }
837 afa77e03 2020-03-18 stsp free(tmppackpath);
838 afa77e03 2020-03-18 stsp free(tmpidxpath);
839 fe4e1501 2020-03-18 stsp free(idxpath);
840 afa77e03 2020-03-18 stsp free(packpath);
841 7848a0e1 2020-03-19 stsp free(ref_prefix);
842 f1c6967f 2020-03-19 stsp free(progress);
843 fe4e1501 2020-03-18 stsp
844 7848a0e1 2020-03-19 stsp TAILQ_FOREACH(pe, &have_refs, entry) {
845 7848a0e1 2020-03-19 stsp free((char *)pe->path);
846 7848a0e1 2020-03-19 stsp free(pe->data);
847 7848a0e1 2020-03-19 stsp }
848 7848a0e1 2020-03-19 stsp got_pathlist_free(&have_refs);
849 7848a0e1 2020-03-19 stsp got_ref_list_free(&my_refs);
850 d9b4d0c0 2020-03-18 stsp if (err) {
851 d9b4d0c0 2020-03-18 stsp free(*pack_hash);
852 d9b4d0c0 2020-03-18 stsp *pack_hash = NULL;
853 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, refs, entry) {
854 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
855 d9b4d0c0 2020-03-18 stsp free(pe->data);
856 d9b4d0c0 2020-03-18 stsp }
857 d9b4d0c0 2020-03-18 stsp got_pathlist_free(refs);
858 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, symrefs, entry) {
859 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
860 d9b4d0c0 2020-03-18 stsp free(pe->data);
861 d9b4d0c0 2020-03-18 stsp }
862 d9b4d0c0 2020-03-18 stsp got_pathlist_free(symrefs);
863 d9b4d0c0 2020-03-18 stsp }
864 8e278d17 2020-03-18 stsp return err;
865 93658fb9 2020-03-18 stsp }