Blame


1 bd3d9e54 2021-09-05 stsp /*
2 bd3d9e54 2021-09-05 stsp * Copyright (c) 2019 Ori Bernstein <ori@openbsd.org>
3 bd3d9e54 2021-09-05 stsp * Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
4 bd3d9e54 2021-09-05 stsp *
5 bd3d9e54 2021-09-05 stsp * Permission to use, copy, modify, and distribute this software for any
6 bd3d9e54 2021-09-05 stsp * purpose with or without fee is hereby granted, provided that the above
7 bd3d9e54 2021-09-05 stsp * copyright notice and this permission notice appear in all copies.
8 bd3d9e54 2021-09-05 stsp *
9 bd3d9e54 2021-09-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 bd3d9e54 2021-09-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 bd3d9e54 2021-09-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 bd3d9e54 2021-09-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 bd3d9e54 2021-09-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 bd3d9e54 2021-09-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 bd3d9e54 2021-09-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 bd3d9e54 2021-09-05 stsp */
17 bd3d9e54 2021-09-05 stsp
18 8a8621c2 2021-09-06 naddy #include <sys/types.h>
19 bd3d9e54 2021-09-05 stsp
20 bd3d9e54 2021-09-05 stsp #include <ctype.h>
21 bd3d9e54 2021-09-05 stsp #include <stdio.h>
22 bd3d9e54 2021-09-05 stsp #include <stdlib.h>
23 bd3d9e54 2021-09-05 stsp #include <string.h>
24 bd3d9e54 2021-09-05 stsp
25 bd3d9e54 2021-09-05 stsp #include "got_error.h"
26 bd3d9e54 2021-09-05 stsp #include "got_path.h"
27 bd3d9e54 2021-09-05 stsp
28 bd3d9e54 2021-09-05 stsp #include "got_lib_gitproto.h"
29 bd3d9e54 2021-09-05 stsp
30 bd3d9e54 2021-09-05 stsp #ifndef nitems
31 bd3d9e54 2021-09-05 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
32 bd3d9e54 2021-09-05 stsp #endif
33 bd3d9e54 2021-09-05 stsp
34 bd3d9e54 2021-09-05 stsp static const struct got_error *
35 bd3d9e54 2021-09-05 stsp tokenize_refline(char **tokens, char *line, int len, int maxtokens)
36 bd3d9e54 2021-09-05 stsp {
37 bd3d9e54 2021-09-05 stsp const struct got_error *err = NULL;
38 bd3d9e54 2021-09-05 stsp char *p;
39 bd3d9e54 2021-09-05 stsp size_t i, n = 0;
40 bd3d9e54 2021-09-05 stsp
41 bd3d9e54 2021-09-05 stsp for (i = 0; i < maxtokens; i++)
42 bd3d9e54 2021-09-05 stsp tokens[i] = NULL;
43 bd3d9e54 2021-09-05 stsp
44 bd3d9e54 2021-09-05 stsp for (i = 0; n < len && i < maxtokens; i++) {
45 bd3d9e54 2021-09-05 stsp while (isspace(*line)) {
46 bd3d9e54 2021-09-05 stsp line++;
47 bd3d9e54 2021-09-05 stsp n++;
48 bd3d9e54 2021-09-05 stsp }
49 bd3d9e54 2021-09-05 stsp p = line;
50 bd3d9e54 2021-09-05 stsp while (*line != '\0' && n < len &&
51 bd3d9e54 2021-09-05 stsp (!isspace(*line) || i == maxtokens - 1)) {
52 bd3d9e54 2021-09-05 stsp line++;
53 bd3d9e54 2021-09-05 stsp n++;
54 bd3d9e54 2021-09-05 stsp }
55 bd3d9e54 2021-09-05 stsp tokens[i] = strndup(p, line - p);
56 bd3d9e54 2021-09-05 stsp if (tokens[i] == NULL) {
57 bd3d9e54 2021-09-05 stsp err = got_error_from_errno("strndup");
58 bd3d9e54 2021-09-05 stsp goto done;
59 bd3d9e54 2021-09-05 stsp }
60 bd3d9e54 2021-09-05 stsp /* Skip \0 field-delimiter at end of token. */
61 bd3d9e54 2021-09-05 stsp while (line[0] == '\0' && n < len) {
62 bd3d9e54 2021-09-05 stsp line++;
63 bd3d9e54 2021-09-05 stsp n++;
64 bd3d9e54 2021-09-05 stsp }
65 bd3d9e54 2021-09-05 stsp }
66 bd3d9e54 2021-09-05 stsp if (i <= 2)
67 bd3d9e54 2021-09-05 stsp err = got_error(GOT_ERR_BAD_PACKET);
68 bd3d9e54 2021-09-05 stsp done:
69 bd3d9e54 2021-09-05 stsp if (err) {
70 bd3d9e54 2021-09-05 stsp int j;
71 bd3d9e54 2021-09-05 stsp for (j = 0; j < i; j++) {
72 bd3d9e54 2021-09-05 stsp free(tokens[j]);
73 bd3d9e54 2021-09-05 stsp tokens[j] = NULL;
74 bd3d9e54 2021-09-05 stsp }
75 bd3d9e54 2021-09-05 stsp }
76 bd3d9e54 2021-09-05 stsp return err;
77 bd3d9e54 2021-09-05 stsp }
78 bd3d9e54 2021-09-05 stsp
79 bd3d9e54 2021-09-05 stsp const struct got_error *
80 bd3d9e54 2021-09-05 stsp got_gitproto_parse_refline(char **id_str, char **refname,
81 bd3d9e54 2021-09-05 stsp char **server_capabilities, char *line, int len)
82 bd3d9e54 2021-09-05 stsp {
83 bd3d9e54 2021-09-05 stsp const struct got_error *err = NULL;
84 bd3d9e54 2021-09-05 stsp char *tokens[3];
85 bd3d9e54 2021-09-05 stsp
86 bd3d9e54 2021-09-05 stsp err = tokenize_refline(tokens, line, len, nitems(tokens));
87 bd3d9e54 2021-09-05 stsp if (err)
88 bd3d9e54 2021-09-05 stsp return err;
89 bd3d9e54 2021-09-05 stsp
90 bd3d9e54 2021-09-05 stsp if (tokens[0])
91 bd3d9e54 2021-09-05 stsp *id_str = tokens[0];
92 bd3d9e54 2021-09-05 stsp if (tokens[1])
93 bd3d9e54 2021-09-05 stsp *refname = tokens[1];
94 bd3d9e54 2021-09-05 stsp if (tokens[2]) {
95 bd3d9e54 2021-09-05 stsp char *p;
96 bd3d9e54 2021-09-05 stsp *server_capabilities = tokens[2];
97 bd3d9e54 2021-09-05 stsp p = strrchr(*server_capabilities, '\n');
98 bd3d9e54 2021-09-05 stsp if (p)
99 bd3d9e54 2021-09-05 stsp *p = '\0';
100 bd3d9e54 2021-09-05 stsp }
101 bd3d9e54 2021-09-05 stsp
102 bd3d9e54 2021-09-05 stsp return NULL;
103 bd3d9e54 2021-09-05 stsp }
104 bd3d9e54 2021-09-05 stsp
105 bd3d9e54 2021-09-05 stsp static const struct got_error *
106 bd3d9e54 2021-09-05 stsp match_capability(char **my_capabilities, const char *capa,
107 bd3d9e54 2021-09-05 stsp const struct got_capability *mycapa)
108 bd3d9e54 2021-09-05 stsp {
109 bd3d9e54 2021-09-05 stsp char *equalsign;
110 bd3d9e54 2021-09-05 stsp char *s;
111 bd3d9e54 2021-09-05 stsp
112 bd3d9e54 2021-09-05 stsp equalsign = strchr(capa, '=');
113 bd3d9e54 2021-09-05 stsp if (equalsign) {
114 bd3d9e54 2021-09-05 stsp if (strncmp(capa, mycapa->key, equalsign - capa) != 0)
115 bd3d9e54 2021-09-05 stsp return NULL;
116 bd3d9e54 2021-09-05 stsp } else {
117 bd3d9e54 2021-09-05 stsp if (strcmp(capa, mycapa->key) != 0)
118 bd3d9e54 2021-09-05 stsp return NULL;
119 bd3d9e54 2021-09-05 stsp }
120 bd3d9e54 2021-09-05 stsp
121 bd3d9e54 2021-09-05 stsp if (asprintf(&s, "%s %s%s%s",
122 bd3d9e54 2021-09-05 stsp *my_capabilities != NULL ? *my_capabilities : "",
123 bd3d9e54 2021-09-05 stsp mycapa->key,
124 bd3d9e54 2021-09-05 stsp mycapa->value != NULL ? "=" : "",
125 e33e440b 2021-09-05 stsp mycapa->value != NULL ? mycapa->value : "") == -1)
126 bd3d9e54 2021-09-05 stsp return got_error_from_errno("asprintf");
127 bd3d9e54 2021-09-05 stsp
128 bd3d9e54 2021-09-05 stsp free(*my_capabilities);
129 bd3d9e54 2021-09-05 stsp *my_capabilities = s;
130 bd3d9e54 2021-09-05 stsp return NULL;
131 bd3d9e54 2021-09-05 stsp }
132 bd3d9e54 2021-09-05 stsp
133 bd3d9e54 2021-09-05 stsp static const struct got_error *
134 bd3d9e54 2021-09-05 stsp add_symref(struct got_pathlist_head *symrefs, char *capa)
135 bd3d9e54 2021-09-05 stsp {
136 bd3d9e54 2021-09-05 stsp const struct got_error *err = NULL;
137 bd3d9e54 2021-09-05 stsp char *colon, *name = NULL, *target = NULL;
138 bd3d9e54 2021-09-05 stsp
139 bd3d9e54 2021-09-05 stsp /* Need at least "A:B" */
140 bd3d9e54 2021-09-05 stsp if (strlen(capa) < 3)
141 bd3d9e54 2021-09-05 stsp return NULL;
142 bd3d9e54 2021-09-05 stsp
143 bd3d9e54 2021-09-05 stsp colon = strchr(capa, ':');
144 bd3d9e54 2021-09-05 stsp if (colon == NULL)
145 bd3d9e54 2021-09-05 stsp return NULL;
146 bd3d9e54 2021-09-05 stsp
147 bd3d9e54 2021-09-05 stsp *colon = '\0';
148 bd3d9e54 2021-09-05 stsp name = strdup(capa);
149 bd3d9e54 2021-09-05 stsp if (name == NULL)
150 bd3d9e54 2021-09-05 stsp return got_error_from_errno("strdup");
151 bd3d9e54 2021-09-05 stsp
152 bd3d9e54 2021-09-05 stsp target = strdup(colon + 1);
153 bd3d9e54 2021-09-05 stsp if (target == NULL) {
154 bd3d9e54 2021-09-05 stsp err = got_error_from_errno("strdup");
155 bd3d9e54 2021-09-05 stsp goto done;
156 bd3d9e54 2021-09-05 stsp }
157 bd3d9e54 2021-09-05 stsp
158 bd3d9e54 2021-09-05 stsp /* We can't validate the ref itself here. The main process will. */
159 bd3d9e54 2021-09-05 stsp err = got_pathlist_append(symrefs, name, target);
160 bd3d9e54 2021-09-05 stsp done:
161 bd3d9e54 2021-09-05 stsp if (err) {
162 bd3d9e54 2021-09-05 stsp free(name);
163 bd3d9e54 2021-09-05 stsp free(target);
164 bd3d9e54 2021-09-05 stsp }
165 bd3d9e54 2021-09-05 stsp return err;
166 bd3d9e54 2021-09-05 stsp }
167 bd3d9e54 2021-09-05 stsp
168 bd3d9e54 2021-09-05 stsp const struct got_error *
169 bd3d9e54 2021-09-05 stsp got_gitproto_match_capabilities(char **common_capabilities,
170 bd3d9e54 2021-09-05 stsp struct got_pathlist_head *symrefs, char *server_capabilities,
171 bd3d9e54 2021-09-05 stsp const struct got_capability my_capabilities[], size_t ncapa)
172 bd3d9e54 2021-09-05 stsp {
173 bd3d9e54 2021-09-05 stsp const struct got_error *err = NULL;
174 bd3d9e54 2021-09-05 stsp char *capa, *equalsign;
175 bd3d9e54 2021-09-05 stsp size_t i;
176 bd3d9e54 2021-09-05 stsp
177 bd3d9e54 2021-09-05 stsp *common_capabilities = NULL;
178 bd3d9e54 2021-09-05 stsp do {
179 bd3d9e54 2021-09-05 stsp capa = strsep(&server_capabilities, " ");
180 bd3d9e54 2021-09-05 stsp if (capa == NULL)
181 bd3d9e54 2021-09-05 stsp return NULL;
182 bd3d9e54 2021-09-05 stsp
183 bd3d9e54 2021-09-05 stsp equalsign = strchr(capa, '=');
184 bd3d9e54 2021-09-05 stsp if (equalsign != NULL && symrefs != NULL &&
185 bd3d9e54 2021-09-05 stsp strncmp(capa, "symref", equalsign - capa) == 0) {
186 bd3d9e54 2021-09-05 stsp err = add_symref(symrefs, equalsign + 1);
187 bd3d9e54 2021-09-05 stsp if (err)
188 bd3d9e54 2021-09-05 stsp break;
189 bd3d9e54 2021-09-05 stsp continue;
190 bd3d9e54 2021-09-05 stsp }
191 bd3d9e54 2021-09-05 stsp
192 bd3d9e54 2021-09-05 stsp for (i = 0; i < ncapa; i++) {
193 bd3d9e54 2021-09-05 stsp err = match_capability(common_capabilities,
194 bd3d9e54 2021-09-05 stsp capa, &my_capabilities[i]);
195 bd3d9e54 2021-09-05 stsp if (err)
196 bd3d9e54 2021-09-05 stsp break;
197 bd3d9e54 2021-09-05 stsp }
198 bd3d9e54 2021-09-05 stsp } while (capa);
199 bd3d9e54 2021-09-05 stsp
200 bd3d9e54 2021-09-05 stsp if (*common_capabilities == NULL) {
201 bd3d9e54 2021-09-05 stsp *common_capabilities = strdup("");
202 bd3d9e54 2021-09-05 stsp if (*common_capabilities == NULL)
203 bd3d9e54 2021-09-05 stsp err = got_error_from_errno("strdup");
204 bd3d9e54 2021-09-05 stsp }
205 bd3d9e54 2021-09-05 stsp return err;
206 bd3d9e54 2021-09-05 stsp }