Blame


1 d65a88a2 2021-09-05 stsp /*
2 d65a88a2 2021-09-05 stsp * Copyright (c) 2018, 2019 Ori Bernstein <ori@openbsd.org>
3 d65a88a2 2021-09-05 stsp * Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
4 d65a88a2 2021-09-05 stsp *
5 d65a88a2 2021-09-05 stsp * Permission to use, copy, modify, and distribute this software for any
6 d65a88a2 2021-09-05 stsp * purpose with or without fee is hereby granted, provided that the above
7 d65a88a2 2021-09-05 stsp * copyright notice and this permission notice appear in all copies.
8 d65a88a2 2021-09-05 stsp *
9 d65a88a2 2021-09-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 d65a88a2 2021-09-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 d65a88a2 2021-09-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 d65a88a2 2021-09-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 d65a88a2 2021-09-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 d65a88a2 2021-09-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 d65a88a2 2021-09-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 d65a88a2 2021-09-05 stsp */
17 d65a88a2 2021-09-05 stsp
18 5e5da8c4 2021-09-05 stsp #include <sys/queue.h>
19 d65a88a2 2021-09-05 stsp #include <sys/types.h>
20 d65a88a2 2021-09-05 stsp #include <sys/socket.h>
21 d65a88a2 2021-09-05 stsp #include <netdb.h>
22 d65a88a2 2021-09-05 stsp
23 c10270f6 2021-09-06 naddy #include <assert.h>
24 d65a88a2 2021-09-05 stsp #include <err.h>
25 d65a88a2 2021-09-05 stsp #include <stdio.h>
26 d65a88a2 2021-09-05 stsp #include <stdlib.h>
27 d65a88a2 2021-09-05 stsp #include <string.h>
28 d65a88a2 2021-09-05 stsp #include <unistd.h>
29 d65a88a2 2021-09-05 stsp
30 d65a88a2 2021-09-05 stsp #include "got_error.h"
31 5e5da8c4 2021-09-05 stsp #include "got_path.h"
32 d65a88a2 2021-09-05 stsp
33 d65a88a2 2021-09-05 stsp #include "got_lib_dial.h"
34 c10270f6 2021-09-06 naddy
35 c10270f6 2021-09-06 naddy #ifndef nitems
36 c10270f6 2021-09-06 naddy #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
37 c10270f6 2021-09-06 naddy #endif
38 d65a88a2 2021-09-05 stsp
39 d65a88a2 2021-09-05 stsp #ifndef ssizeof
40 d65a88a2 2021-09-05 stsp #define ssizeof(_x) ((ssize_t)(sizeof(_x)))
41 d65a88a2 2021-09-05 stsp #endif
42 d65a88a2 2021-09-05 stsp
43 d65a88a2 2021-09-05 stsp #ifndef MIN
44 d65a88a2 2021-09-05 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
45 d65a88a2 2021-09-05 stsp #endif
46 d65a88a2 2021-09-05 stsp
47 d65a88a2 2021-09-05 stsp #ifndef GOT_DIAL_PATH_SSH
48 d65a88a2 2021-09-05 stsp #define GOT_DIAL_PATH_SSH "/usr/bin/ssh"
49 d65a88a2 2021-09-05 stsp #endif
50 d65a88a2 2021-09-05 stsp
51 d65a88a2 2021-09-05 stsp /* IANA assigned */
52 d65a88a2 2021-09-05 stsp #define GOT_DEFAULT_GIT_PORT 9418
53 d65a88a2 2021-09-05 stsp #define GOT_DEFAULT_GIT_PORT_STR "9418"
54 d65a88a2 2021-09-05 stsp
55 d65a88a2 2021-09-05 stsp const struct got_error *
56 d65a88a2 2021-09-05 stsp got_dial_apply_unveil(const char *proto)
57 d65a88a2 2021-09-05 stsp {
58 d65a88a2 2021-09-05 stsp if (strcmp(proto, "git+ssh") == 0 || strcmp(proto, "ssh") == 0) {
59 d65a88a2 2021-09-05 stsp if (unveil(GOT_DIAL_PATH_SSH, "x") != 0) {
60 d65a88a2 2021-09-05 stsp return got_error_from_errno2("unveil",
61 d65a88a2 2021-09-05 stsp GOT_DIAL_PATH_SSH);
62 d65a88a2 2021-09-05 stsp }
63 d65a88a2 2021-09-05 stsp }
64 d65a88a2 2021-09-05 stsp
65 d65a88a2 2021-09-05 stsp return NULL;
66 d65a88a2 2021-09-05 stsp }
67 d65a88a2 2021-09-05 stsp
68 5e5da8c4 2021-09-05 stsp static int
69 5e5da8c4 2021-09-05 stsp hassuffix(char *base, char *suf)
70 5e5da8c4 2021-09-05 stsp {
71 5e5da8c4 2021-09-05 stsp int nb, ns;
72 5e5da8c4 2021-09-05 stsp
73 5e5da8c4 2021-09-05 stsp nb = strlen(base);
74 5e5da8c4 2021-09-05 stsp ns = strlen(suf);
75 5e5da8c4 2021-09-05 stsp if (ns <= nb && strcmp(base + (nb - ns), suf) == 0)
76 5e5da8c4 2021-09-05 stsp return 1;
77 5e5da8c4 2021-09-05 stsp return 0;
78 5e5da8c4 2021-09-05 stsp }
79 5e5da8c4 2021-09-05 stsp
80 d65a88a2 2021-09-05 stsp const struct got_error *
81 5e5da8c4 2021-09-05 stsp got_dial_parse_uri(char **proto, char **host, char **port,
82 5e5da8c4 2021-09-05 stsp char **server_path, char **repo_name, const char *uri)
83 5e5da8c4 2021-09-05 stsp {
84 5e5da8c4 2021-09-05 stsp const struct got_error *err = NULL;
85 5e5da8c4 2021-09-05 stsp char *s, *p, *q;
86 5e5da8c4 2021-09-05 stsp
87 5e5da8c4 2021-09-05 stsp *proto = *host = *port = *server_path = *repo_name = NULL;
88 5e5da8c4 2021-09-05 stsp
89 5e5da8c4 2021-09-05 stsp p = strstr(uri, "://");
90 5e5da8c4 2021-09-05 stsp if (!p) {
91 5e5da8c4 2021-09-05 stsp /* Try parsing Git's "scp" style URL syntax. */
92 5e5da8c4 2021-09-05 stsp *proto = strdup("ssh");
93 805253d5 2022-03-07 naddy if (*proto == NULL) {
94 5e5da8c4 2021-09-05 stsp err = got_error_from_errno("strdup");
95 5e5da8c4 2021-09-05 stsp goto done;
96 5e5da8c4 2021-09-05 stsp }
97 5e5da8c4 2021-09-05 stsp s = (char *)uri;
98 5e5da8c4 2021-09-05 stsp q = strchr(s, ':');
99 5e5da8c4 2021-09-05 stsp if (q == NULL) {
100 5e5da8c4 2021-09-05 stsp err = got_error(GOT_ERR_PARSE_URI);
101 5e5da8c4 2021-09-05 stsp goto done;
102 5e5da8c4 2021-09-05 stsp }
103 5e5da8c4 2021-09-05 stsp /* No slashes allowed before first colon. */
104 5e5da8c4 2021-09-05 stsp p = strchr(s, '/');
105 5e5da8c4 2021-09-05 stsp if (p && q > p) {
106 5e5da8c4 2021-09-05 stsp err = got_error(GOT_ERR_PARSE_URI);
107 5e5da8c4 2021-09-05 stsp goto done;
108 5e5da8c4 2021-09-05 stsp }
109 5e5da8c4 2021-09-05 stsp *host = strndup(s, q - s);
110 5e5da8c4 2021-09-05 stsp if (*host == NULL) {
111 5e5da8c4 2021-09-05 stsp err = got_error_from_errno("strndup");
112 5e5da8c4 2021-09-05 stsp goto done;
113 5e5da8c4 2021-09-05 stsp }
114 3a12860c 2022-03-07 stsp if ((*host)[0] == '\0') {
115 3a12860c 2022-03-07 stsp err = got_error(GOT_ERR_PARSE_URI);
116 3a12860c 2022-03-07 stsp goto done;
117 3a12860c 2022-03-07 stsp }
118 5e5da8c4 2021-09-05 stsp p = q + 1;
119 5e5da8c4 2021-09-05 stsp } else {
120 5e5da8c4 2021-09-05 stsp *proto = strndup(uri, p - uri);
121 805253d5 2022-03-07 naddy if (*proto == NULL) {
122 5e5da8c4 2021-09-05 stsp err = got_error_from_errno("strndup");
123 5e5da8c4 2021-09-05 stsp goto done;
124 5e5da8c4 2021-09-05 stsp }
125 5e5da8c4 2021-09-05 stsp s = p + 3;
126 5e5da8c4 2021-09-05 stsp
127 5e5da8c4 2021-09-05 stsp p = strstr(s, "/");
128 5e5da8c4 2021-09-05 stsp if (p == NULL || strlen(p) == 1) {
129 5e5da8c4 2021-09-05 stsp err = got_error(GOT_ERR_PARSE_URI);
130 5e5da8c4 2021-09-05 stsp goto done;
131 5e5da8c4 2021-09-05 stsp }
132 5e5da8c4 2021-09-05 stsp
133 5e5da8c4 2021-09-05 stsp q = memchr(s, ':', p - s);
134 5e5da8c4 2021-09-05 stsp if (q) {
135 5e5da8c4 2021-09-05 stsp *host = strndup(s, q - s);
136 5e5da8c4 2021-09-05 stsp if (*host == NULL) {
137 5e5da8c4 2021-09-05 stsp err = got_error_from_errno("strndup");
138 5e5da8c4 2021-09-05 stsp goto done;
139 5e5da8c4 2021-09-05 stsp }
140 3a12860c 2022-03-07 stsp if ((*host)[0] == '\0') {
141 3a12860c 2022-03-07 stsp err = got_error(GOT_ERR_PARSE_URI);
142 3a12860c 2022-03-07 stsp goto done;
143 3a12860c 2022-03-07 stsp }
144 5e5da8c4 2021-09-05 stsp *port = strndup(q + 1, p - (q + 1));
145 5e5da8c4 2021-09-05 stsp if (*port == NULL) {
146 5e5da8c4 2021-09-05 stsp err = got_error_from_errno("strndup");
147 5e5da8c4 2021-09-05 stsp goto done;
148 5e5da8c4 2021-09-05 stsp }
149 3a12860c 2022-03-07 stsp if ((*port)[0] == '\0') {
150 3a12860c 2022-03-07 stsp err = got_error(GOT_ERR_PARSE_URI);
151 3a12860c 2022-03-07 stsp goto done;
152 3a12860c 2022-03-07 stsp }
153 5e5da8c4 2021-09-05 stsp } else {
154 5e5da8c4 2021-09-05 stsp *host = strndup(s, p - s);
155 5e5da8c4 2021-09-05 stsp if (*host == NULL) {
156 5e5da8c4 2021-09-05 stsp err = got_error_from_errno("strndup");
157 5e5da8c4 2021-09-05 stsp goto done;
158 5e5da8c4 2021-09-05 stsp }
159 3a12860c 2022-03-07 stsp if ((*host)[0] == '\0') {
160 3a12860c 2022-03-07 stsp err = got_error(GOT_ERR_PARSE_URI);
161 3a12860c 2022-03-07 stsp goto done;
162 3a12860c 2022-03-07 stsp }
163 5e5da8c4 2021-09-05 stsp }
164 5e5da8c4 2021-09-05 stsp }
165 5e5da8c4 2021-09-05 stsp
166 5e5da8c4 2021-09-05 stsp while (p[0] == '/' && p[1] == '/')
167 5e5da8c4 2021-09-05 stsp p++;
168 5e5da8c4 2021-09-05 stsp *server_path = strdup(p);
169 5e5da8c4 2021-09-05 stsp if (*server_path == NULL) {
170 5e5da8c4 2021-09-05 stsp err = got_error_from_errno("strdup");
171 5e5da8c4 2021-09-05 stsp goto done;
172 5e5da8c4 2021-09-05 stsp }
173 5e5da8c4 2021-09-05 stsp got_path_strip_trailing_slashes(*server_path);
174 3a12860c 2022-03-07 stsp if ((*server_path)[0] == '\0') {
175 5e5da8c4 2021-09-05 stsp err = got_error(GOT_ERR_PARSE_URI);
176 5e5da8c4 2021-09-05 stsp goto done;
177 5e5da8c4 2021-09-05 stsp }
178 3a12860c 2022-03-07 stsp
179 3a12860c 2022-03-07 stsp err = got_path_basename(repo_name, *server_path);
180 3a12860c 2022-03-07 stsp if (err)
181 5e5da8c4 2021-09-05 stsp goto done;
182 3a12860c 2022-03-07 stsp if (hassuffix(*repo_name, ".git"))
183 3a12860c 2022-03-07 stsp (*repo_name)[strlen(*repo_name) - 4] = '\0';
184 3a12860c 2022-03-07 stsp if ((*repo_name)[0] == '\0')
185 3a12860c 2022-03-07 stsp err = got_error(GOT_ERR_PARSE_URI);
186 5e5da8c4 2021-09-05 stsp done:
187 5e5da8c4 2021-09-05 stsp if (err) {
188 5e5da8c4 2021-09-05 stsp free(*proto);
189 5e5da8c4 2021-09-05 stsp *proto = NULL;
190 5e5da8c4 2021-09-05 stsp free(*host);
191 5e5da8c4 2021-09-05 stsp *host = NULL;
192 5e5da8c4 2021-09-05 stsp free(*port);
193 5e5da8c4 2021-09-05 stsp *port = NULL;
194 5e5da8c4 2021-09-05 stsp free(*server_path);
195 5e5da8c4 2021-09-05 stsp *server_path = NULL;
196 5e5da8c4 2021-09-05 stsp free(*repo_name);
197 5e5da8c4 2021-09-05 stsp *repo_name = NULL;
198 5e5da8c4 2021-09-05 stsp }
199 5e5da8c4 2021-09-05 stsp return err;
200 5e5da8c4 2021-09-05 stsp }
201 5e5da8c4 2021-09-05 stsp
202 5e5da8c4 2021-09-05 stsp const struct got_error *
203 d65a88a2 2021-09-05 stsp got_dial_ssh(pid_t *newpid, int *newfd, const char *host,
204 d65a88a2 2021-09-05 stsp const char *port, const char *path, const char *direction, int verbosity)
205 d65a88a2 2021-09-05 stsp {
206 d65a88a2 2021-09-05 stsp const struct got_error *error = NULL;
207 d65a88a2 2021-09-05 stsp int pid, pfd[2];
208 d65a88a2 2021-09-05 stsp char cmd[64];
209 d65a88a2 2021-09-05 stsp char *argv[11];
210 d65a88a2 2021-09-05 stsp int i = 0, j;
211 d65a88a2 2021-09-05 stsp
212 d65a88a2 2021-09-05 stsp *newpid = -1;
213 d65a88a2 2021-09-05 stsp *newfd = -1;
214 d65a88a2 2021-09-05 stsp
215 d65a88a2 2021-09-05 stsp argv[i++] = GOT_DIAL_PATH_SSH;
216 d65a88a2 2021-09-05 stsp if (port != NULL) {
217 d65a88a2 2021-09-05 stsp argv[i++] = "-p";
218 d65a88a2 2021-09-05 stsp argv[i++] = (char *)port;
219 d65a88a2 2021-09-05 stsp }
220 d65a88a2 2021-09-05 stsp if (verbosity == -1) {
221 d65a88a2 2021-09-05 stsp argv[i++] = "-q";
222 d65a88a2 2021-09-05 stsp } else {
223 d65a88a2 2021-09-05 stsp /* ssh(1) allows up to 3 "-v" options. */
224 d65a88a2 2021-09-05 stsp for (j = 0; j < MIN(3, verbosity); j++)
225 d65a88a2 2021-09-05 stsp argv[i++] = "-v";
226 d65a88a2 2021-09-05 stsp }
227 d65a88a2 2021-09-05 stsp argv[i++] = "--";
228 d65a88a2 2021-09-05 stsp argv[i++] = (char *)host;
229 d65a88a2 2021-09-05 stsp argv[i++] = (char *)cmd;
230 d65a88a2 2021-09-05 stsp argv[i++] = (char *)path;
231 d65a88a2 2021-09-05 stsp argv[i++] = NULL;
232 c10270f6 2021-09-06 naddy assert(i <= nitems(argv));
233 d65a88a2 2021-09-05 stsp
234 d65a88a2 2021-09-05 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pfd) == -1)
235 d65a88a2 2021-09-05 stsp return got_error_from_errno("socketpair");
236 d65a88a2 2021-09-05 stsp
237 d65a88a2 2021-09-05 stsp pid = fork();
238 d65a88a2 2021-09-05 stsp if (pid == -1) {
239 d65a88a2 2021-09-05 stsp error = got_error_from_errno("fork");
240 d65a88a2 2021-09-05 stsp close(pfd[0]);
241 d65a88a2 2021-09-05 stsp close(pfd[1]);
242 d65a88a2 2021-09-05 stsp return error;
243 d65a88a2 2021-09-05 stsp } else if (pid == 0) {
244 d65a88a2 2021-09-05 stsp int n;
245 d65a88a2 2021-09-05 stsp if (close(pfd[1]) == -1)
246 d65a88a2 2021-09-05 stsp err(1, "close");
247 d65a88a2 2021-09-05 stsp if (dup2(pfd[0], 0) == -1)
248 d65a88a2 2021-09-05 stsp err(1, "dup2");
249 d65a88a2 2021-09-05 stsp if (dup2(pfd[0], 1) == -1)
250 d65a88a2 2021-09-05 stsp err(1, "dup2");
251 d65a88a2 2021-09-05 stsp n = snprintf(cmd, sizeof(cmd), "git-%s-pack", direction);
252 d65a88a2 2021-09-05 stsp if (n < 0 || n >= ssizeof(cmd))
253 d65a88a2 2021-09-05 stsp err(1, "snprintf");
254 d65a88a2 2021-09-05 stsp if (execv(GOT_DIAL_PATH_SSH, argv) == -1)
255 d65a88a2 2021-09-05 stsp err(1, "execv");
256 d65a88a2 2021-09-05 stsp abort(); /* not reached */
257 d65a88a2 2021-09-05 stsp } else {
258 d65a88a2 2021-09-05 stsp if (close(pfd[0]) == -1)
259 d65a88a2 2021-09-05 stsp return got_error_from_errno("close");
260 d65a88a2 2021-09-05 stsp *newpid = pid;
261 d65a88a2 2021-09-05 stsp *newfd = pfd[1];
262 d65a88a2 2021-09-05 stsp return NULL;
263 d65a88a2 2021-09-05 stsp }
264 d65a88a2 2021-09-05 stsp }
265 d65a88a2 2021-09-05 stsp
266 d65a88a2 2021-09-05 stsp const struct got_error *
267 d65a88a2 2021-09-05 stsp got_dial_git(int *newfd, const char *host, const char *port,
268 d65a88a2 2021-09-05 stsp const char *path, const char *direction)
269 d65a88a2 2021-09-05 stsp {
270 d65a88a2 2021-09-05 stsp const struct got_error *err = NULL;
271 d65a88a2 2021-09-05 stsp struct addrinfo hints, *servinfo, *p;
272 d65a88a2 2021-09-05 stsp char *cmd = NULL;
273 d65a88a2 2021-09-05 stsp int fd = -1, len, r, eaicode;
274 d65a88a2 2021-09-05 stsp
275 d65a88a2 2021-09-05 stsp *newfd = -1;
276 d65a88a2 2021-09-05 stsp
277 d65a88a2 2021-09-05 stsp if (port == NULL)
278 d65a88a2 2021-09-05 stsp port = GOT_DEFAULT_GIT_PORT_STR;
279 d65a88a2 2021-09-05 stsp
280 d65a88a2 2021-09-05 stsp memset(&hints, 0, sizeof hints);
281 d65a88a2 2021-09-05 stsp hints.ai_family = AF_UNSPEC;
282 d65a88a2 2021-09-05 stsp hints.ai_socktype = SOCK_STREAM;
283 d65a88a2 2021-09-05 stsp eaicode = getaddrinfo(host, port, &hints, &servinfo);
284 d65a88a2 2021-09-05 stsp if (eaicode) {
285 d65a88a2 2021-09-05 stsp char msg[512];
286 d65a88a2 2021-09-05 stsp snprintf(msg, sizeof(msg), "%s: %s", host,
287 d65a88a2 2021-09-05 stsp gai_strerror(eaicode));
288 d65a88a2 2021-09-05 stsp return got_error_msg(GOT_ERR_ADDRINFO, msg);
289 d65a88a2 2021-09-05 stsp }
290 d65a88a2 2021-09-05 stsp
291 d65a88a2 2021-09-05 stsp for (p = servinfo; p != NULL; p = p->ai_next) {
292 d65a88a2 2021-09-05 stsp if ((fd = socket(p->ai_family, p->ai_socktype,
293 d65a88a2 2021-09-05 stsp p->ai_protocol)) == -1)
294 d65a88a2 2021-09-05 stsp continue;
295 d65a88a2 2021-09-05 stsp if (connect(fd, p->ai_addr, p->ai_addrlen) == 0) {
296 d65a88a2 2021-09-05 stsp err = NULL;
297 d65a88a2 2021-09-05 stsp break;
298 d65a88a2 2021-09-05 stsp }
299 d65a88a2 2021-09-05 stsp err = got_error_from_errno("connect");
300 d65a88a2 2021-09-05 stsp close(fd);
301 d65a88a2 2021-09-05 stsp }
302 d65a88a2 2021-09-05 stsp if (p == NULL)
303 d65a88a2 2021-09-05 stsp goto done;
304 d65a88a2 2021-09-05 stsp
305 d65a88a2 2021-09-05 stsp if (asprintf(&cmd, "git-%s-pack %s", direction, path) == -1) {
306 d65a88a2 2021-09-05 stsp err = got_error_from_errno("asprintf");
307 d65a88a2 2021-09-05 stsp goto done;
308 d65a88a2 2021-09-05 stsp }
309 d65a88a2 2021-09-05 stsp len = 4 + strlen(cmd) + 1 + strlen("host=") + strlen(host) + 1;
310 d65a88a2 2021-09-05 stsp r = dprintf(fd, "%04x%s%chost=%s%c", len, cmd, '\0', host, '\0');
311 d65a88a2 2021-09-05 stsp if (r < 0)
312 d65a88a2 2021-09-05 stsp err = got_error_from_errno("dprintf");
313 d65a88a2 2021-09-05 stsp done:
314 d65a88a2 2021-09-05 stsp free(cmd);
315 d65a88a2 2021-09-05 stsp if (err) {
316 d65a88a2 2021-09-05 stsp if (fd != -1)
317 d65a88a2 2021-09-05 stsp close(fd);
318 d65a88a2 2021-09-05 stsp } else
319 d65a88a2 2021-09-05 stsp *newfd = fd;
320 d65a88a2 2021-09-05 stsp return err;
321 d65a88a2 2021-09-05 stsp }