Blame


1 5565365c 2024-03-27 op /*
2 5565365c 2024-03-27 op * Copyright (c) 2024 Omar Polo <op@openbsd.org>
3 5565365c 2024-03-27 op *
4 5565365c 2024-03-27 op * Permission to use, copy, modify, and distribute this software for any
5 5565365c 2024-03-27 op * purpose with or without fee is hereby granted, provided that the above
6 5565365c 2024-03-27 op * copyright notice and this permission notice appear in all copies.
7 5565365c 2024-03-27 op *
8 5565365c 2024-03-27 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 5565365c 2024-03-27 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 5565365c 2024-03-27 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 5565365c 2024-03-27 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 5565365c 2024-03-27 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 5565365c 2024-03-27 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 5565365c 2024-03-27 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 5565365c 2024-03-27 op */
16 5565365c 2024-03-27 op
17 5565365c 2024-03-27 op #include <sys/time.h>
18 5565365c 2024-03-27 op #include <sys/types.h>
19 5565365c 2024-03-27 op #include <sys/socket.h>
20 5565365c 2024-03-27 op
21 5565365c 2024-03-27 op #include <err.h>
22 5565365c 2024-03-27 op #include <errno.h>
23 5565365c 2024-03-27 op #include <fcntl.h>
24 5565365c 2024-03-27 op #include <limits.h>
25 5565365c 2024-03-27 op #include <netdb.h>
26 5565365c 2024-03-27 op #include <poll.h>
27 cb29e255 2024-04-18 stsp #include <stdarg.h>
28 02dab75a 2024-04-18 stsp #include <stdio.h>
29 5565365c 2024-03-27 op #include <stdlib.h>
30 5565365c 2024-03-27 op #include <string.h>
31 cb29e255 2024-04-18 stsp #include <syslog.h>
32 939d3016 2024-04-23 op #include <time.h>
33 5565365c 2024-03-27 op #include <unistd.h>
34 5565365c 2024-03-27 op
35 5565365c 2024-03-27 op #include "got_opentemp.h"
36 5565365c 2024-03-27 op #include "got_version.h"
37 5565365c 2024-03-27 op
38 5565365c 2024-03-27 op #include "bufio.h"
39 cb29e255 2024-04-18 stsp #include "log.h"
40 02dab75a 2024-04-18 stsp #include "utf8d.h"
41 5565365c 2024-03-27 op
42 5565365c 2024-03-27 op #define USERAGENT "got-notify-http/" GOT_VERSION_STR
43 5565365c 2024-03-27 op
44 5565365c 2024-03-27 op static int http_timeout = 300; /* 5 minutes in seconds */
45 5565365c 2024-03-27 op
46 5565365c 2024-03-27 op __dead static void
47 5565365c 2024-03-27 op usage(void)
48 5565365c 2024-03-27 op {
49 c1003102 2024-04-15 op fprintf(stderr, "usage: %s [-c] -r repo -h host -p port path\n",
50 5565365c 2024-03-27 op getprogname());
51 5565365c 2024-03-27 op exit(1);
52 5565365c 2024-03-27 op }
53 5565365c 2024-03-27 op
54 5565365c 2024-03-27 op static int
55 5565365c 2024-03-27 op dial(const char *host, const char *port)
56 5565365c 2024-03-27 op {
57 5565365c 2024-03-27 op struct addrinfo hints, *res, *res0;
58 5565365c 2024-03-27 op const char *cause = NULL;
59 5565365c 2024-03-27 op int s, error, save_errno;
60 5565365c 2024-03-27 op
61 5565365c 2024-03-27 op memset(&hints, 0, sizeof(hints));
62 5565365c 2024-03-27 op hints.ai_family = AF_UNSPEC;
63 5565365c 2024-03-27 op hints.ai_socktype = SOCK_STREAM;
64 5565365c 2024-03-27 op error = getaddrinfo(host, port, &hints, &res0);
65 5565365c 2024-03-27 op if (error)
66 5565365c 2024-03-27 op errx(1, "failed to resolve %s:%s: %s", host, port,
67 5565365c 2024-03-27 op gai_strerror(error));
68 5565365c 2024-03-27 op
69 5565365c 2024-03-27 op s = -1;
70 5565365c 2024-03-27 op for (res = res0; res; res = res->ai_next) {
71 5565365c 2024-03-27 op s = socket(res->ai_family, res->ai_socktype,
72 5565365c 2024-03-27 op res->ai_protocol);
73 5565365c 2024-03-27 op if (s == -1) {
74 5565365c 2024-03-27 op cause = "socket";
75 5565365c 2024-03-27 op continue;
76 5565365c 2024-03-27 op }
77 5565365c 2024-03-27 op
78 5565365c 2024-03-27 op if (connect(s, res->ai_addr, res->ai_addrlen) == -1) {
79 5565365c 2024-03-27 op cause = "connect";
80 5565365c 2024-03-27 op save_errno = errno;
81 5565365c 2024-03-27 op close(s);
82 5565365c 2024-03-27 op errno = save_errno;
83 5565365c 2024-03-27 op s = -1;
84 5565365c 2024-03-27 op continue;
85 5565365c 2024-03-27 op }
86 5565365c 2024-03-27 op
87 5565365c 2024-03-27 op break;
88 5565365c 2024-03-27 op }
89 5565365c 2024-03-27 op
90 5565365c 2024-03-27 op freeaddrinfo(res0);
91 5565365c 2024-03-27 op if (s == -1)
92 5565365c 2024-03-27 op err(1, "%s", cause);
93 5565365c 2024-03-27 op return s;
94 5565365c 2024-03-27 op }
95 5565365c 2024-03-27 op
96 5565365c 2024-03-27 op static void
97 5565365c 2024-03-27 op escape(FILE *fp, const uint8_t *s)
98 5565365c 2024-03-27 op {
99 ea5e974d 2024-03-28 op uint32_t codepoint, state;
100 ea5e974d 2024-03-28 op const uint8_t *start = s;
101 5565365c 2024-03-27 op
102 ea5e974d 2024-03-28 op state = 0;
103 ea5e974d 2024-03-28 op for (; *s; ++s) {
104 ea5e974d 2024-03-28 op switch (decode(&state, &codepoint, *s)) {
105 ea5e974d 2024-03-28 op case UTF8_ACCEPT:
106 ea5e974d 2024-03-28 op switch (codepoint) {
107 ea5e974d 2024-03-28 op case '"':
108 ea5e974d 2024-03-28 op case '\\':
109 ea5e974d 2024-03-28 op fprintf(fp, "\\%c", *s);
110 ea5e974d 2024-03-28 op break;
111 ea5e974d 2024-03-28 op case '\b':
112 ea5e974d 2024-03-28 op fprintf(fp, "\\b");
113 ea5e974d 2024-03-28 op break;
114 ea5e974d 2024-03-28 op case '\f':
115 ea5e974d 2024-03-28 op fprintf(fp, "\\f");
116 ea5e974d 2024-03-28 op break;
117 ea5e974d 2024-03-28 op case '\n':
118 ea5e974d 2024-03-28 op fprintf(fp, "\\n");
119 ea5e974d 2024-03-28 op break;
120 ea5e974d 2024-03-28 op case '\r':
121 ea5e974d 2024-03-28 op fprintf(fp, "\\r");
122 ea5e974d 2024-03-28 op break;
123 ea5e974d 2024-03-28 op case '\t':
124 ea5e974d 2024-03-28 op fprintf(fp, "\\t");
125 ea5e974d 2024-03-28 op break;
126 ea5e974d 2024-03-28 op default:
127 ea5e974d 2024-03-28 op /* other control characters */
128 ea5e974d 2024-03-28 op if (codepoint < ' ' || codepoint == 0x7F) {
129 ea5e974d 2024-03-28 op fprintf(fp, "\\u%04x", codepoint);
130 ea5e974d 2024-03-28 op break;
131 ea5e974d 2024-03-28 op }
132 ea5e974d 2024-03-28 op fwrite(start, 1, s - start + 1, fp);
133 ea5e974d 2024-03-28 op break;
134 ea5e974d 2024-03-28 op }
135 ea5e974d 2024-03-28 op start = s + 1;
136 5565365c 2024-03-27 op break;
137 ea5e974d 2024-03-28 op
138 ea5e974d 2024-03-28 op case UTF8_REJECT:
139 ea5e974d 2024-03-28 op /* bad UTF-8 sequence; try to recover */
140 ea5e974d 2024-03-28 op fputs("\\uFFFD", fp);
141 ea5e974d 2024-03-28 op state = UTF8_ACCEPT;
142 ea5e974d 2024-03-28 op start = s + 1;
143 5565365c 2024-03-27 op break;
144 5565365c 2024-03-27 op }
145 5565365c 2024-03-27 op }
146 5565365c 2024-03-27 op }
147 5565365c 2024-03-27 op
148 5565365c 2024-03-27 op static void
149 5565365c 2024-03-27 op json_field(FILE *fp, const char *key, const char *val, int comma)
150 5565365c 2024-03-27 op {
151 5565365c 2024-03-27 op fprintf(fp, "\"%s\":\"", key);
152 5565365c 2024-03-27 op escape(fp, val);
153 5565365c 2024-03-27 op fprintf(fp, "\"%s", comma ? "," : "");
154 5565365c 2024-03-27 op }
155 5565365c 2024-03-27 op
156 ac0a4dfc 2024-03-28 op static void
157 939d3016 2024-04-23 op json_date(FILE *fp, const char *key, const char *date, int comma)
158 939d3016 2024-04-23 op {
159 939d3016 2024-04-23 op fprintf(fp, "\"%s\":%s%s", key, date, comma ? "," : "");
160 939d3016 2024-04-23 op }
161 939d3016 2024-04-23 op
162 939d3016 2024-04-23 op static void
163 ac0a4dfc 2024-03-28 op json_author(FILE *fp, const char *type, char *address, int comma)
164 ac0a4dfc 2024-03-28 op {
165 ac0a4dfc 2024-03-28 op char *gt, *lt, *at, *email, *endname;
166 ac0a4dfc 2024-03-28 op
167 ac0a4dfc 2024-03-28 op fprintf(fp, "\"%s\":{", type);
168 ac0a4dfc 2024-03-28 op
169 ac0a4dfc 2024-03-28 op gt = strchr(address, '<');
170 ac0a4dfc 2024-03-28 op if (gt != NULL) {
171 ac0a4dfc 2024-03-28 op /* long format, e.g. "Omar Polo <op@openbsd.org>" */
172 ac0a4dfc 2024-03-28 op
173 ac0a4dfc 2024-03-28 op json_field(fp, "full", address, 1);
174 ac0a4dfc 2024-03-28 op
175 ac0a4dfc 2024-03-28 op endname = gt;
176 ac0a4dfc 2024-03-28 op while (endname > address && endname[-1] == ' ')
177 ac0a4dfc 2024-03-28 op endname--;
178 ac0a4dfc 2024-03-28 op
179 ac0a4dfc 2024-03-28 op *endname = '\0';
180 ac0a4dfc 2024-03-28 op json_field(fp, "name", address, 1);
181 ac0a4dfc 2024-03-28 op
182 ac0a4dfc 2024-03-28 op email = gt + 1;
183 ac0a4dfc 2024-03-28 op lt = strchr(email, '>');
184 ac0a4dfc 2024-03-28 op if (lt)
185 ac0a4dfc 2024-03-28 op *lt = '\0';
186 ac0a4dfc 2024-03-28 op
187 ac0a4dfc 2024-03-28 op json_field(fp, "mail", email, 1);
188 ac0a4dfc 2024-03-28 op
189 ac0a4dfc 2024-03-28 op at = strchr(email, '@');
190 ac0a4dfc 2024-03-28 op if (at)
191 ac0a4dfc 2024-03-28 op *at = '\0';
192 ac0a4dfc 2024-03-28 op
193 ac0a4dfc 2024-03-28 op json_field(fp, "user", email, 0);
194 ac0a4dfc 2024-03-28 op } else {
195 ac0a4dfc 2024-03-28 op /* short format only shows the username */
196 ac0a4dfc 2024-03-28 op json_field(fp, "user", address, 0);
197 ac0a4dfc 2024-03-28 op }
198 ac0a4dfc 2024-03-28 op
199 ac0a4dfc 2024-03-28 op fprintf(fp, "}%s", comma ? "," : "");
200 ac0a4dfc 2024-03-28 op }
201 ac0a4dfc 2024-03-28 op
202 5565365c 2024-03-27 op static int
203 c1003102 2024-04-15 op jsonify_branch_rm(FILE *fp, char *line, const char *repo)
204 d6057084 2024-03-28 op {
205 d6057084 2024-03-28 op char *ref, *id;
206 d6057084 2024-03-28 op
207 d6057084 2024-03-28 op line = strchr(line, ' ');
208 d6057084 2024-03-28 op if (line == NULL)
209 d6057084 2024-03-28 op errx(1, "invalid branch rm line");
210 d6057084 2024-03-28 op line += strspn(line, " ");
211 d6057084 2024-03-28 op
212 d6057084 2024-03-28 op ref = line;
213 d6057084 2024-03-28 op
214 d6057084 2024-03-28 op line = strchr(line, ':');
215 d6057084 2024-03-28 op if (line == NULL)
216 d6057084 2024-03-28 op errx(1, "invalid branch rm line");
217 d6057084 2024-03-28 op *line++ = '\0';
218 d6057084 2024-03-28 op id = line + strspn(line, " ");
219 d6057084 2024-03-28 op
220 d6057084 2024-03-28 op fputc('{', fp);
221 d6057084 2024-03-28 op json_field(fp, "type", "branch-deleted", 1);
222 c1003102 2024-04-15 op json_field(fp, "repo", repo, 1);
223 d6057084 2024-03-28 op json_field(fp, "ref", ref, 1);
224 d6057084 2024-03-28 op json_field(fp, "id", id, 0);
225 d6057084 2024-03-28 op fputc('}', fp);
226 d6057084 2024-03-28 op
227 d6057084 2024-03-28 op return 0;
228 d6057084 2024-03-28 op }
229 d6057084 2024-03-28 op
230 d6057084 2024-03-28 op static int
231 c1003102 2024-04-15 op jsonify_commit_short(FILE *fp, char *line, const char *repo)
232 5565365c 2024-03-27 op {
233 5565365c 2024-03-27 op char *t, *date, *id, *author, *message;
234 5565365c 2024-03-27 op
235 ec405b99 2024-03-28 op t = line;
236 ec405b99 2024-03-28 op date = t;
237 ec405b99 2024-03-28 op if ((t = strchr(t, ' ')) == NULL)
238 ec405b99 2024-03-28 op errx(1, "malformed line");
239 ec405b99 2024-03-28 op *t++ = '\0';
240 5565365c 2024-03-27 op
241 ec405b99 2024-03-28 op id = t;
242 ec405b99 2024-03-28 op if ((t = strchr(t, ' ')) == NULL)
243 ec405b99 2024-03-28 op errx(1, "malformed line");
244 ec405b99 2024-03-28 op *t++ = '\0';
245 5565365c 2024-03-27 op
246 ec405b99 2024-03-28 op author = t;
247 ec405b99 2024-03-28 op if ((t = strchr(t, ' ')) == NULL)
248 ec405b99 2024-03-28 op errx(1, "malformed line");
249 ec405b99 2024-03-28 op *t++ = '\0';
250 5565365c 2024-03-27 op
251 ec405b99 2024-03-28 op message = t;
252 5565365c 2024-03-27 op
253 93623901 2024-03-28 op fprintf(fp, "{\"type\":\"commit\",\"short\":true,");
254 c1003102 2024-04-15 op json_field(fp, "repo", repo, 1);
255 ec405b99 2024-03-28 op json_field(fp, "id", id, 1);
256 ec405b99 2024-03-28 op json_author(fp, "committer", author, 1);
257 939d3016 2024-04-23 op json_date(fp, "date", date, 1);
258 ec405b99 2024-03-28 op json_field(fp, "short_message", message, 0);
259 ec405b99 2024-03-28 op fprintf(fp, "}");
260 5565365c 2024-03-27 op
261 5565365c 2024-03-27 op return 0;
262 5565365c 2024-03-27 op }
263 5565365c 2024-03-27 op
264 5565365c 2024-03-27 op static int
265 c1003102 2024-04-15 op jsonify_commit(FILE *fp, const char *repo, char **line, ssize_t *linesize)
266 5565365c 2024-03-27 op {
267 5565365c 2024-03-27 op const char *errstr;
268 ac0a4dfc 2024-03-28 op char *author = NULL;
269 763b7f49 2024-03-28 op char *filename, *t;
270 5565365c 2024-03-27 op char *l;
271 5565365c 2024-03-27 op ssize_t linelen;
272 5565365c 2024-03-27 op int parent = 0;
273 5565365c 2024-03-27 op int msglen = 0, msgwrote = 0;
274 763b7f49 2024-03-28 op int n, files = 0;
275 ec405b99 2024-03-28 op int done = 0;
276 5565365c 2024-03-27 op enum {
277 5565365c 2024-03-27 op P_FROM,
278 5565365c 2024-03-27 op P_VIA,
279 5565365c 2024-03-27 op P_DATE,
280 5565365c 2024-03-27 op P_PARENT,
281 5565365c 2024-03-27 op P_MSGLEN,
282 5565365c 2024-03-27 op P_MSG,
283 5565365c 2024-03-27 op P_DST,
284 5565365c 2024-03-27 op P_SUM,
285 ec405b99 2024-03-28 op } phase = P_FROM;
286 5565365c 2024-03-27 op
287 ec405b99 2024-03-28 op l = *line;
288 ec405b99 2024-03-28 op if (strncmp(l, "commit ", 7) != 0)
289 ec405b99 2024-03-28 op errx(1, "%s: unexpected line: %s", __func__, l);
290 ec405b99 2024-03-28 op l += 7;
291 763b7f49 2024-03-28 op
292 93623901 2024-03-28 op fprintf(fp, "{\"type\":\"commit\",\"short\":false,");
293 c1003102 2024-04-15 op json_field(fp, "repo", repo, 1);
294 ec405b99 2024-03-28 op json_field(fp, "id", l, 1);
295 5565365c 2024-03-27 op
296 ec405b99 2024-03-28 op while (!done) {
297 ec405b99 2024-03-28 op if ((linelen = getline(line, linesize, stdin)) == -1)
298 ec405b99 2024-03-28 op break;
299 5565365c 2024-03-27 op
300 ec405b99 2024-03-28 op if ((*line)[linelen - 1] == '\n')
301 ec405b99 2024-03-28 op (*line)[--linelen] = '\0';
302 5565365c 2024-03-27 op
303 ec405b99 2024-03-28 op l = *line;
304 ec405b99 2024-03-28 op switch (phase) {
305 5565365c 2024-03-27 op case P_FROM:
306 5565365c 2024-03-27 op if (strncmp(l, "from: ", 6) != 0)
307 5565365c 2024-03-27 op errx(1, "unexpected from line");
308 5565365c 2024-03-27 op l += 6;
309 ac0a4dfc 2024-03-28 op
310 ac0a4dfc 2024-03-28 op author = strdup(l);
311 ac0a4dfc 2024-03-28 op if (author == NULL)
312 ac0a4dfc 2024-03-28 op err(1, "strdup");
313 ac0a4dfc 2024-03-28 op
314 ac0a4dfc 2024-03-28 op json_author(fp, "author", l, 1);
315 ac0a4dfc 2024-03-28 op
316 5565365c 2024-03-27 op phase = P_VIA;
317 5565365c 2024-03-27 op break;
318 5565365c 2024-03-27 op
319 5565365c 2024-03-27 op case P_VIA:
320 5565365c 2024-03-27 op /* optional */
321 5565365c 2024-03-27 op if (!strncmp(l, "via: ", 5)) {
322 5565365c 2024-03-27 op l += 5;
323 ac0a4dfc 2024-03-28 op json_author(fp, "committer", l, 1);
324 5565365c 2024-03-27 op phase = P_DATE;
325 5565365c 2024-03-27 op break;
326 5565365c 2024-03-27 op }
327 ac0a4dfc 2024-03-28 op
328 ac0a4dfc 2024-03-28 op if (author == NULL) /* impossible */
329 ac0a4dfc 2024-03-28 op err(1, "from not specified");
330 ac0a4dfc 2024-03-28 op json_author(fp, "committer", author, 1);
331 ac0a4dfc 2024-03-28 op free(author);
332 ac0a4dfc 2024-03-28 op author = NULL;
333 ac0a4dfc 2024-03-28 op
334 5565365c 2024-03-27 op phase = P_DATE;
335 5565365c 2024-03-27 op /* fallthrough */
336 5565365c 2024-03-27 op
337 5565365c 2024-03-27 op case P_DATE:
338 5565365c 2024-03-27 op /* optional */
339 5565365c 2024-03-27 op if (!strncmp(l, "date: ", 6)) {
340 5565365c 2024-03-27 op l += 6;
341 939d3016 2024-04-23 op json_date(fp, "date", l, 1);
342 5565365c 2024-03-27 op phase = P_PARENT;
343 5565365c 2024-03-27 op break;
344 5565365c 2024-03-27 op }
345 5565365c 2024-03-27 op phase = P_PARENT;
346 5565365c 2024-03-27 op /* fallthough */
347 5565365c 2024-03-27 op
348 5565365c 2024-03-27 op case P_PARENT:
349 5565365c 2024-03-27 op /* optional - more than one */
350 5565365c 2024-03-27 op if (!strncmp(l, "parent ", 7)) {
351 5565365c 2024-03-27 op l += 7;
352 5565365c 2024-03-27 op l += strcspn(l, ":");
353 5565365c 2024-03-27 op l += strspn(l, " ");
354 5565365c 2024-03-27 op
355 5565365c 2024-03-27 op if (parent == 0) {
356 5565365c 2024-03-27 op parent = 1;
357 5565365c 2024-03-27 op fprintf(fp, "\"parents\":[");
358 5565365c 2024-03-27 op }
359 5565365c 2024-03-27 op
360 5565365c 2024-03-27 op fputc('"', fp);
361 5565365c 2024-03-27 op escape(fp, l);
362 5565365c 2024-03-27 op fputc('"', fp);
363 5565365c 2024-03-27 op
364 5565365c 2024-03-27 op break;
365 5565365c 2024-03-27 op }
366 5565365c 2024-03-27 op if (parent != 0) {
367 5565365c 2024-03-27 op fprintf(fp, "],");
368 5565365c 2024-03-27 op parent = 0;
369 5565365c 2024-03-27 op }
370 5565365c 2024-03-27 op phase = P_MSGLEN;
371 5565365c 2024-03-27 op /* fallthrough */
372 5565365c 2024-03-27 op
373 5565365c 2024-03-27 op case P_MSGLEN:
374 5565365c 2024-03-27 op if (strncmp(l, "messagelen: ", 12) != 0)
375 5565365c 2024-03-27 op errx(1, "unexpected messagelen line");
376 5565365c 2024-03-27 op l += 12;
377 5565365c 2024-03-27 op msglen = strtonum(l, 1, INT_MAX, &errstr);
378 5565365c 2024-03-27 op if (errstr)
379 5565365c 2024-03-27 op errx(1, "message len is %s: %s", errstr, l);
380 5565365c 2024-03-27 op
381 763b7f49 2024-03-28 op msglen++;
382 763b7f49 2024-03-28 op
383 5565365c 2024-03-27 op phase = P_MSG;
384 5565365c 2024-03-27 op break;
385 5565365c 2024-03-27 op
386 5565365c 2024-03-27 op case P_MSG:
387 5565365c 2024-03-27 op /*
388 5565365c 2024-03-27 op * The commit message is indented with one extra
389 5565365c 2024-03-27 op * space which is not accounted for in messagelen,
390 5565365c 2024-03-27 op * but we also strip the trailing \n so that
391 5565365c 2024-03-27 op * accounts for it.
392 5565365c 2024-03-27 op *
393 5565365c 2024-03-27 op * Since we read line-by-line and there is always
394 5565365c 2024-03-27 op * a \n added at the end of the message,
395 5565365c 2024-03-27 op * tolerate one byte less than advertised.
396 5565365c 2024-03-27 op */
397 763b7f49 2024-03-28 op if (*l != ' ')
398 763b7f49 2024-03-28 op errx(1, "unexpected line in commit message");
399 5565365c 2024-03-27 op
400 763b7f49 2024-03-28 op l++; /* skip leading space */
401 763b7f49 2024-03-28 op linelen--;
402 763b7f49 2024-03-28 op
403 763b7f49 2024-03-28 op if (msgwrote == 0 && linelen != 0) {
404 763b7f49 2024-03-28 op json_field(fp, "short_message", l, 1);
405 763b7f49 2024-03-28 op fprintf(fp, "\"message\":\"");
406 763b7f49 2024-03-28 op escape(fp, l);
407 763b7f49 2024-03-28 op escape(fp, "\n");
408 763b7f49 2024-03-28 op msgwrote += linelen;
409 763b7f49 2024-03-28 op } else if (msgwrote != 0) {
410 763b7f49 2024-03-28 op escape(fp, l);
411 763b7f49 2024-03-28 op escape(fp, "\n");
412 5565365c 2024-03-27 op }
413 763b7f49 2024-03-28 op
414 ac0a4dfc 2024-03-28 op msglen -= linelen + 1;
415 5565365c 2024-03-27 op if (msglen <= 1) {
416 5565365c 2024-03-27 op fprintf(fp, "\",");
417 5565365c 2024-03-27 op phase = P_DST;
418 763b7f49 2024-03-28 op break;
419 5565365c 2024-03-27 op }
420 5565365c 2024-03-27 op break;
421 5565365c 2024-03-27 op
422 5565365c 2024-03-27 op case P_DST:
423 763b7f49 2024-03-28 op if (files == 0 && !strcmp(l, " "))
424 763b7f49 2024-03-28 op break;
425 763b7f49 2024-03-28 op
426 763b7f49 2024-03-28 op if (files == 0)
427 763b7f49 2024-03-28 op fputs("\"diffstat\":{\"files\":[", fp);
428 763b7f49 2024-03-28 op
429 ec405b99 2024-03-28 op if (*l == '\0') {
430 763b7f49 2024-03-28 op fputs("],", fp);
431 5565365c 2024-03-27 op phase = P_SUM;
432 5565365c 2024-03-27 op break;
433 5565365c 2024-03-27 op }
434 763b7f49 2024-03-28 op
435 763b7f49 2024-03-28 op if (*l != ' ')
436 763b7f49 2024-03-28 op errx(1, "bad diffstat line");
437 763b7f49 2024-03-28 op l++;
438 763b7f49 2024-03-28 op
439 763b7f49 2024-03-28 op if (files != 0)
440 763b7f49 2024-03-28 op fputc(',', fp);
441 763b7f49 2024-03-28 op fputc('{', fp);
442 763b7f49 2024-03-28 op
443 763b7f49 2024-03-28 op switch (*l) {
444 763b7f49 2024-03-28 op case 'A':
445 763b7f49 2024-03-28 op json_field(fp, "action", "added", 1);
446 763b7f49 2024-03-28 op break;
447 763b7f49 2024-03-28 op case 'D':
448 763b7f49 2024-03-28 op json_field(fp, "action", "deleted", 1);
449 763b7f49 2024-03-28 op break;
450 763b7f49 2024-03-28 op case 'M':
451 763b7f49 2024-03-28 op json_field(fp, "action", "modified", 1);
452 763b7f49 2024-03-28 op break;
453 763b7f49 2024-03-28 op case 'm':
454 763b7f49 2024-03-28 op json_field(fp, "action", "mode changed", 1);
455 763b7f49 2024-03-28 op break;
456 763b7f49 2024-03-28 op default:
457 763b7f49 2024-03-28 op json_field(fp, "action", "unknown", 1);
458 763b7f49 2024-03-28 op break;
459 763b7f49 2024-03-28 op }
460 763b7f49 2024-03-28 op
461 763b7f49 2024-03-28 op l++;
462 763b7f49 2024-03-28 op while (*l == ' ')
463 763b7f49 2024-03-28 op *l++ = '\0';
464 763b7f49 2024-03-28 op if (*l == '\0')
465 763b7f49 2024-03-28 op errx(1, "invalid diffstat: no filename");
466 763b7f49 2024-03-28 op
467 763b7f49 2024-03-28 op filename = l;
468 763b7f49 2024-03-28 op l = strrchr(l, '|');
469 763b7f49 2024-03-28 op if (l == NULL)
470 763b7f49 2024-03-28 op errx(1, "invalid diffstat: no separator");
471 763b7f49 2024-03-28 op t = l - 1;
472 763b7f49 2024-03-28 op while (t > filename && *t == ' ')
473 763b7f49 2024-03-28 op *t-- = '\0';
474 763b7f49 2024-03-28 op json_field(fp, "file", filename, 1);
475 763b7f49 2024-03-28 op
476 763b7f49 2024-03-28 op l++;
477 763b7f49 2024-03-28 op while (*l == ' ')
478 763b7f49 2024-03-28 op l++;
479 763b7f49 2024-03-28 op
480 763b7f49 2024-03-28 op t = strchr(l, '+');
481 763b7f49 2024-03-28 op if (t == NULL)
482 763b7f49 2024-03-28 op errx(1, "invalid diffstat: no added counter");
483 763b7f49 2024-03-28 op *t++ = '\0';
484 763b7f49 2024-03-28 op
485 763b7f49 2024-03-28 op n = strtonum(l, 0, INT_MAX, &errstr);
486 763b7f49 2024-03-28 op if (errstr)
487 763b7f49 2024-03-28 op errx(1, "added counter is %s: %s", errstr, l);
488 763b7f49 2024-03-28 op fprintf(fp, "\"added\":%d,", n);
489 763b7f49 2024-03-28 op
490 763b7f49 2024-03-28 op l = ++t;
491 763b7f49 2024-03-28 op while (*l == ' ')
492 763b7f49 2024-03-28 op l++;
493 763b7f49 2024-03-28 op
494 763b7f49 2024-03-28 op t = strchr(l, '-');
495 763b7f49 2024-03-28 op if (t == NULL)
496 763b7f49 2024-03-28 op errx(1, "invalid diffstat: no del counter");
497 763b7f49 2024-03-28 op *t = '\0';
498 763b7f49 2024-03-28 op
499 763b7f49 2024-03-28 op n = strtonum(l, 0, INT_MAX, &errstr);
500 763b7f49 2024-03-28 op if (errstr)
501 763b7f49 2024-03-28 op errx(1, "del counter is %s: %s", errstr, l);
502 763b7f49 2024-03-28 op fprintf(fp, "\"removed\":%d", n);
503 763b7f49 2024-03-28 op
504 763b7f49 2024-03-28 op fputc('}', fp);
505 763b7f49 2024-03-28 op
506 763b7f49 2024-03-28 op files++;
507 763b7f49 2024-03-28 op
508 5565365c 2024-03-27 op break;
509 5565365c 2024-03-27 op
510 5565365c 2024-03-27 op case P_SUM:
511 763b7f49 2024-03-28 op fputs("\"total\":{", fp);
512 763b7f49 2024-03-28 op
513 763b7f49 2024-03-28 op t = l;
514 763b7f49 2024-03-28 op l = strchr(l, ' ');
515 763b7f49 2024-03-28 op if (l == NULL)
516 763b7f49 2024-03-28 op errx(1, "missing number of additions");
517 763b7f49 2024-03-28 op *l++ = '\0';
518 763b7f49 2024-03-28 op
519 763b7f49 2024-03-28 op n = strtonum(t, 0, INT_MAX, &errstr);
520 763b7f49 2024-03-28 op if (errstr)
521 763b7f49 2024-03-28 op errx(1, "add counter is %s: %s", errstr, t);
522 763b7f49 2024-03-28 op fprintf(fp, "\"added\":%d,", n);
523 763b7f49 2024-03-28 op
524 763b7f49 2024-03-28 op l = strchr(l, ',');
525 763b7f49 2024-03-28 op if (l == NULL)
526 763b7f49 2024-03-28 op errx(1, "missing number of deletions");
527 763b7f49 2024-03-28 op l++;
528 763b7f49 2024-03-28 op while (*l == ' ')
529 763b7f49 2024-03-28 op l++;
530 763b7f49 2024-03-28 op
531 763b7f49 2024-03-28 op t = strchr(l, ' ');
532 763b7f49 2024-03-28 op if (t == NULL)
533 763b7f49 2024-03-28 op errx(1, "malformed diffstat sum line");
534 763b7f49 2024-03-28 op *t = '\0';
535 763b7f49 2024-03-28 op
536 763b7f49 2024-03-28 op n = strtonum(l, 0, INT_MAX, &errstr);
537 763b7f49 2024-03-28 op if (errstr)
538 763b7f49 2024-03-28 op errx(1, "del counter is %s: %s", errstr, l);
539 763b7f49 2024-03-28 op fprintf(fp, "\"removed\":%d", n);
540 763b7f49 2024-03-28 op
541 763b7f49 2024-03-28 op fputs("}}", fp);
542 ec405b99 2024-03-28 op done = 1;
543 5565365c 2024-03-27 op break;
544 5565365c 2024-03-27 op
545 5565365c 2024-03-27 op default:
546 ec405b99 2024-03-28 op /* unreachable */
547 ec405b99 2024-03-28 op errx(1, "unexpected line: %s", *line);
548 5565365c 2024-03-27 op }
549 5565365c 2024-03-27 op }
550 5565365c 2024-03-27 op if (ferror(stdin))
551 5565365c 2024-03-27 op err(1, "getline");
552 ec405b99 2024-03-28 op if (!done)
553 5565365c 2024-03-27 op errx(1, "unexpected EOF");
554 763b7f49 2024-03-28 op fputc('}', fp);
555 ec405b99 2024-03-28 op
556 ec405b99 2024-03-28 op return 0;
557 ec405b99 2024-03-28 op }
558 ec405b99 2024-03-28 op
559 ec405b99 2024-03-28 op static int
560 c1003102 2024-04-15 op jsonify_tag(FILE *fp, const char *repo, char **line, ssize_t *linesize)
561 553d8347 2024-03-28 op {
562 553d8347 2024-03-28 op const char *errstr;
563 553d8347 2024-03-28 op char *l;
564 553d8347 2024-03-28 op ssize_t linelen;
565 553d8347 2024-03-28 op int msglen = 0, msgwrote = 0;
566 553d8347 2024-03-28 op int done = 0;
567 553d8347 2024-03-28 op enum {
568 553d8347 2024-03-28 op P_FROM,
569 553d8347 2024-03-28 op P_DATE,
570 553d8347 2024-03-28 op P_OBJECT,
571 553d8347 2024-03-28 op P_MSGLEN,
572 553d8347 2024-03-28 op P_MSG,
573 553d8347 2024-03-28 op } phase = P_FROM;
574 553d8347 2024-03-28 op
575 553d8347 2024-03-28 op l = *line;
576 553d8347 2024-03-28 op if (strncmp(l, "tag ", 4) != 0)
577 553d8347 2024-03-28 op errx(1, "%s: unexpected line: %s", __func__, l);
578 553d8347 2024-03-28 op l += 4;
579 553d8347 2024-03-28 op
580 553d8347 2024-03-28 op fputc('{', fp);
581 553d8347 2024-03-28 op json_field(fp, "type", "tag", 1);
582 c1003102 2024-04-15 op json_field(fp, "repo", repo, 1);
583 553d8347 2024-03-28 op json_field(fp, "tag", l, 1);
584 553d8347 2024-03-28 op
585 553d8347 2024-03-28 op while (!done) {
586 553d8347 2024-03-28 op if ((linelen = getline(line, linesize, stdin)) == -1)
587 553d8347 2024-03-28 op break;
588 553d8347 2024-03-28 op
589 553d8347 2024-03-28 op if ((*line)[linelen - 1] == '\n')
590 553d8347 2024-03-28 op (*line)[--linelen] = '\0';
591 553d8347 2024-03-28 op
592 553d8347 2024-03-28 op l = *line;
593 553d8347 2024-03-28 op switch (phase) {
594 553d8347 2024-03-28 op case P_FROM:
595 553d8347 2024-03-28 op if (strncmp(l, "from: ", 6) != 0)
596 553d8347 2024-03-28 op errx(1, "unexpected from line");
597 553d8347 2024-03-28 op l += 6;
598 553d8347 2024-03-28 op
599 553d8347 2024-03-28 op json_author(fp, "tagger", l, 1);
600 553d8347 2024-03-28 op
601 553d8347 2024-03-28 op phase = P_DATE;
602 553d8347 2024-03-28 op break;
603 553d8347 2024-03-28 op
604 553d8347 2024-03-28 op case P_DATE:
605 553d8347 2024-03-28 op /* optional */
606 553d8347 2024-03-28 op if (!strncmp(l, "date: ", 6)) {
607 553d8347 2024-03-28 op l += 6;
608 939d3016 2024-04-23 op json_date(fp, "date", l, 1);
609 553d8347 2024-03-28 op phase = P_OBJECT;
610 553d8347 2024-03-28 op break;
611 553d8347 2024-03-28 op }
612 553d8347 2024-03-28 op phase = P_OBJECT;
613 553d8347 2024-03-28 op /* fallthough */
614 553d8347 2024-03-28 op
615 553d8347 2024-03-28 op case P_OBJECT:
616 553d8347 2024-03-28 op /* optional */
617 553d8347 2024-03-28 op if (!strncmp(l, "object: ", 8)) {
618 553d8347 2024-03-28 op char *type, *id;
619 553d8347 2024-03-28 op
620 553d8347 2024-03-28 op l += 8;
621 553d8347 2024-03-28 op type = l;
622 553d8347 2024-03-28 op id = strchr(l, ' ');
623 553d8347 2024-03-28 op if (id == NULL)
624 553d8347 2024-03-28 op errx(1, "malformed tag object line");
625 553d8347 2024-03-28 op *id++ = '\0';
626 553d8347 2024-03-28 op
627 553d8347 2024-03-28 op fputs("\"object\":{", fp);
628 553d8347 2024-03-28 op json_field(fp, "type", type, 1);
629 553d8347 2024-03-28 op json_field(fp, "id", id, 0);
630 553d8347 2024-03-28 op fputs("},", fp);
631 553d8347 2024-03-28 op
632 553d8347 2024-03-28 op phase = P_MSGLEN;
633 553d8347 2024-03-28 op break;
634 553d8347 2024-03-28 op }
635 553d8347 2024-03-28 op phase = P_MSGLEN;
636 553d8347 2024-03-28 op /* fallthrough */
637 553d8347 2024-03-28 op
638 553d8347 2024-03-28 op case P_MSGLEN:
639 553d8347 2024-03-28 op if (strncmp(l, "messagelen: ", 12) != 0)
640 553d8347 2024-03-28 op errx(1, "unexpected messagelen line");
641 553d8347 2024-03-28 op l += 12;
642 553d8347 2024-03-28 op msglen = strtonum(l, 1, INT_MAX, &errstr);
643 553d8347 2024-03-28 op if (errstr)
644 553d8347 2024-03-28 op errx(1, "message len is %s: %s", errstr, l);
645 553d8347 2024-03-28 op
646 553d8347 2024-03-28 op msglen++;
647 553d8347 2024-03-28 op
648 553d8347 2024-03-28 op phase = P_MSG;
649 553d8347 2024-03-28 op break;
650 553d8347 2024-03-28 op
651 553d8347 2024-03-28 op case P_MSG:
652 763b7f49 2024-03-28 op if (*l != ' ')
653 763b7f49 2024-03-28 op errx(1, "unexpected line in tag message");
654 553d8347 2024-03-28 op
655 763b7f49 2024-03-28 op l++; /* skip leading space */
656 763b7f49 2024-03-28 op linelen--;
657 763b7f49 2024-03-28 op
658 763b7f49 2024-03-28 op if (msgwrote == 0 && linelen != 0) {
659 763b7f49 2024-03-28 op fprintf(fp, "\"message\":\"");
660 763b7f49 2024-03-28 op escape(fp, l);
661 763b7f49 2024-03-28 op escape(fp, "\n");
662 763b7f49 2024-03-28 op msgwrote += linelen;
663 763b7f49 2024-03-28 op } else if (msgwrote != 0) {
664 763b7f49 2024-03-28 op escape(fp, l);
665 763b7f49 2024-03-28 op escape(fp, "\n");
666 553d8347 2024-03-28 op }
667 763b7f49 2024-03-28 op
668 553d8347 2024-03-28 op msglen -= linelen + 1;
669 e789f02b 2024-03-28 op if (msglen <= 0) {
670 553d8347 2024-03-28 op fprintf(fp, "\"");
671 553d8347 2024-03-28 op done = 1;
672 553d8347 2024-03-28 op break;
673 553d8347 2024-03-28 op }
674 553d8347 2024-03-28 op break;
675 553d8347 2024-03-28 op
676 553d8347 2024-03-28 op default:
677 553d8347 2024-03-28 op /* unreachable */
678 553d8347 2024-03-28 op errx(1, "unexpected line: %s", *line);
679 553d8347 2024-03-28 op }
680 553d8347 2024-03-28 op }
681 553d8347 2024-03-28 op if (ferror(stdin))
682 553d8347 2024-03-28 op err(1, "getline");
683 553d8347 2024-03-28 op if (!done)
684 553d8347 2024-03-28 op errx(1, "unexpected EOF");
685 553d8347 2024-03-28 op fputc('}', fp);
686 553d8347 2024-03-28 op
687 553d8347 2024-03-28 op return 0;
688 553d8347 2024-03-28 op }
689 553d8347 2024-03-28 op
690 553d8347 2024-03-28 op static int
691 c1003102 2024-04-15 op jsonify(FILE *fp, const char *repo)
692 ec405b99 2024-03-28 op {
693 ec405b99 2024-03-28 op char *line = NULL;
694 ec405b99 2024-03-28 op size_t linesize = 0;
695 ec405b99 2024-03-28 op ssize_t linelen;
696 ec405b99 2024-03-28 op int needcomma = 0;
697 ec405b99 2024-03-28 op
698 ec405b99 2024-03-28 op fprintf(fp, "{\"notifications\":[");
699 ec405b99 2024-03-28 op while ((linelen = getline(&line, &linesize, stdin)) != -1) {
700 ec405b99 2024-03-28 op if (line[linelen - 1] == '\n')
701 ec405b99 2024-03-28 op line[--linelen] = '\0';
702 5565365c 2024-03-27 op
703 ec405b99 2024-03-28 op if (*line == '\0')
704 ec405b99 2024-03-28 op continue;
705 ec405b99 2024-03-28 op
706 ec405b99 2024-03-28 op if (needcomma)
707 ec405b99 2024-03-28 op fputc(',', fp);
708 ec405b99 2024-03-28 op needcomma = 1;
709 ec405b99 2024-03-28 op
710 d6057084 2024-03-28 op if (strncmp(line, "Removed refs/heads/", 19) == 0) {
711 c1003102 2024-04-15 op if (jsonify_branch_rm(fp, line, repo) == -1)
712 d6057084 2024-03-28 op err(1, "jsonify_branch_rm");
713 d6057084 2024-03-28 op continue;
714 d6057084 2024-03-28 op }
715 d6057084 2024-03-28 op
716 ec405b99 2024-03-28 op if (strncmp(line, "commit ", 7) == 0) {
717 c1003102 2024-04-15 op if (jsonify_commit(fp, repo, &line, &linesize) == -1)
718 ec405b99 2024-03-28 op err(1, "jsonify_commit");
719 ec405b99 2024-03-28 op continue;
720 ec405b99 2024-03-28 op }
721 ec405b99 2024-03-28 op
722 ec405b99 2024-03-28 op if (*line >= '0' && *line <= '9') {
723 c1003102 2024-04-15 op if (jsonify_commit_short(fp, line, repo) == -1)
724 ec405b99 2024-03-28 op err(1, "jsonify_commit_short");
725 ec405b99 2024-03-28 op continue;
726 ec405b99 2024-03-28 op }
727 ec405b99 2024-03-28 op
728 553d8347 2024-03-28 op if (strncmp(line, "tag ", 4) == 0) {
729 c1003102 2024-04-15 op if (jsonify_tag(fp, repo, &line, &linesize) == -1)
730 553d8347 2024-03-28 op err(1, "jsonify_tag");
731 553d8347 2024-03-28 op continue;
732 553d8347 2024-03-28 op }
733 553d8347 2024-03-28 op
734 ec405b99 2024-03-28 op errx(1, "unexpected line: %s", line);
735 ec405b99 2024-03-28 op }
736 ec405b99 2024-03-28 op if (ferror(stdin))
737 ec405b99 2024-03-28 op err(1, "getline");
738 5565365c 2024-03-27 op fprintf(fp, "]}");
739 5565365c 2024-03-27 op
740 5565365c 2024-03-27 op return 0;
741 5565365c 2024-03-27 op }
742 050c0b8c 2024-04-16 op
743 050c0b8c 2024-04-16 op static char
744 050c0b8c 2024-04-16 op sixet2ch(int c)
745 050c0b8c 2024-04-16 op {
746 050c0b8c 2024-04-16 op c &= 0x3F;
747 5565365c 2024-03-27 op
748 050c0b8c 2024-04-16 op if (c < 26)
749 050c0b8c 2024-04-16 op return 'A' + c;
750 050c0b8c 2024-04-16 op c -= 26;
751 050c0b8c 2024-04-16 op if (c < 26)
752 050c0b8c 2024-04-16 op return 'a' + c;
753 050c0b8c 2024-04-16 op c -= 26;
754 050c0b8c 2024-04-16 op if (c < 10)
755 050c0b8c 2024-04-16 op return '0' + c;
756 050c0b8c 2024-04-16 op c -= 10;
757 050c0b8c 2024-04-16 op if (c == 0)
758 050c0b8c 2024-04-16 op return '+';
759 050c0b8c 2024-04-16 op if (c == 1)
760 050c0b8c 2024-04-16 op return '/';
761 050c0b8c 2024-04-16 op
762 050c0b8c 2024-04-16 op errx(1, "invalid sixet 0x%x", c);
763 050c0b8c 2024-04-16 op }
764 050c0b8c 2024-04-16 op
765 5565365c 2024-03-27 op static char *
766 5565365c 2024-03-27 op basic_auth(const char *username, const char *password)
767 5565365c 2024-03-27 op {
768 050c0b8c 2024-04-16 op char *str, *tmp, *end, *s, *p;
769 050c0b8c 2024-04-16 op char buf[3];
770 050c0b8c 2024-04-16 op int len, i, r;
771 5565365c 2024-03-27 op
772 050c0b8c 2024-04-16 op r = asprintf(&str, "%s:%s", username, password);
773 050c0b8c 2024-04-16 op if (r == -1)
774 5565365c 2024-03-27 op err(1, "asprintf");
775 5565365c 2024-03-27 op
776 050c0b8c 2024-04-16 op /*
777 050c0b8c 2024-04-16 op * Will need 4 * r/3 bytes to encode the string, plus a
778 050c0b8c 2024-04-16 op * rounding to the next multiple of 4 for padding, plus NUL.
779 050c0b8c 2024-04-16 op */
780 050c0b8c 2024-04-16 op len = 4 * r / 3;
781 050c0b8c 2024-04-16 op len = (len + 3) & ~3;
782 050c0b8c 2024-04-16 op len++;
783 050c0b8c 2024-04-16 op
784 050c0b8c 2024-04-16 op tmp = calloc(1, len);
785 050c0b8c 2024-04-16 op if (tmp == NULL)
786 050c0b8c 2024-04-16 op err(1, "malloc");
787 050c0b8c 2024-04-16 op
788 050c0b8c 2024-04-16 op s = str;
789 050c0b8c 2024-04-16 op p = tmp;
790 050c0b8c 2024-04-16 op while (*s != '\0') {
791 050c0b8c 2024-04-16 op memset(buf, 0, sizeof(buf));
792 050c0b8c 2024-04-16 op for (i = 0; i < 3 && *s != '\0'; ++i, ++s)
793 050c0b8c 2024-04-16 op buf[i] = *s;
794 050c0b8c 2024-04-16 op
795 050c0b8c 2024-04-16 op *p++ = sixet2ch(buf[0] >> 2);
796 050c0b8c 2024-04-16 op *p++ = sixet2ch((buf[1] >> 4) | (buf[0] << 4));
797 050c0b8c 2024-04-16 op if (i > 1)
798 050c0b8c 2024-04-16 op *p++ = sixet2ch((buf[1] << 2) | (buf[2] >> 6));
799 050c0b8c 2024-04-16 op if (i > 2)
800 050c0b8c 2024-04-16 op *p++ = sixet2ch(buf[2]);
801 050c0b8c 2024-04-16 op }
802 050c0b8c 2024-04-16 op
803 050c0b8c 2024-04-16 op for (end = tmp + len - 1; p < end; ++p)
804 050c0b8c 2024-04-16 op *p = '=';
805 050c0b8c 2024-04-16 op
806 050c0b8c 2024-04-16 op free(str);
807 5565365c 2024-03-27 op return tmp;
808 5565365c 2024-03-27 op }
809 5565365c 2024-03-27 op
810 5565365c 2024-03-27 op static inline int
811 5565365c 2024-03-27 op bufio2poll(struct bufio *bio)
812 5565365c 2024-03-27 op {
813 5565365c 2024-03-27 op int f, ret = 0;
814 5565365c 2024-03-27 op
815 5565365c 2024-03-27 op f = bufio_ev(bio);
816 5565365c 2024-03-27 op if (f & BUFIO_WANT_READ)
817 5565365c 2024-03-27 op ret |= POLLIN;
818 5565365c 2024-03-27 op if (f & BUFIO_WANT_WRITE)
819 5565365c 2024-03-27 op ret |= POLLOUT;
820 5565365c 2024-03-27 op return ret;
821 5565365c 2024-03-27 op }
822 5565365c 2024-03-27 op
823 5565365c 2024-03-27 op int
824 5565365c 2024-03-27 op main(int argc, char **argv)
825 5565365c 2024-03-27 op {
826 5565365c 2024-03-27 op FILE *tmpfp;
827 5565365c 2024-03-27 op struct bufio bio;
828 5565365c 2024-03-27 op struct pollfd pfd;
829 5565365c 2024-03-27 op struct timespec timeout;
830 5565365c 2024-03-27 op const char *username;
831 5565365c 2024-03-27 op const char *password;
832 5565365c 2024-03-27 op const char *timeoutstr;
833 5565365c 2024-03-27 op const char *errstr;
834 c1003102 2024-04-15 op const char *repo = NULL;
835 5565365c 2024-03-27 op const char *host = NULL, *port = NULL, *path = NULL;
836 5565365c 2024-03-27 op char *auth, *line, *spc;
837 5565365c 2024-03-27 op size_t len;
838 5565365c 2024-03-27 op ssize_t r;
839 5565365c 2024-03-27 op off_t paylen;
840 5565365c 2024-03-27 op int tls = 0;
841 5565365c 2024-03-27 op int response_code = 0, done = 0;
842 5565365c 2024-03-27 op int ch, flags, ret, nonstd = 0;
843 5565365c 2024-03-27 op
844 5565365c 2024-03-27 op #ifndef PROFILE
845 5565365c 2024-03-27 op if (pledge("stdio rpath tmppath dns inet", NULL) == -1)
846 5565365c 2024-03-27 op err(1, "pledge");
847 5565365c 2024-03-27 op #endif
848 5565365c 2024-03-27 op
849 cb29e255 2024-04-18 stsp log_init(0, LOG_DAEMON);
850 cb29e255 2024-04-18 stsp
851 c1003102 2024-04-15 op while ((ch = getopt(argc, argv, "ch:p:r:")) != -1) {
852 5565365c 2024-03-27 op switch (ch) {
853 5565365c 2024-03-27 op case 'c':
854 5565365c 2024-03-27 op tls = 1;
855 5565365c 2024-03-27 op break;
856 5565365c 2024-03-27 op case 'h':
857 5565365c 2024-03-27 op host = optarg;
858 5565365c 2024-03-27 op break;
859 5565365c 2024-03-27 op case 'p':
860 5565365c 2024-03-27 op port = optarg;
861 5565365c 2024-03-27 op break;
862 c1003102 2024-04-15 op case 'r':
863 c1003102 2024-04-15 op repo = optarg;
864 c1003102 2024-04-15 op break;
865 5565365c 2024-03-27 op default:
866 5565365c 2024-03-27 op usage();
867 5565365c 2024-03-27 op }
868 5565365c 2024-03-27 op }
869 5565365c 2024-03-27 op argc -= optind;
870 5565365c 2024-03-27 op argv += optind;
871 5565365c 2024-03-27 op
872 c1003102 2024-04-15 op if (host == NULL || repo == NULL || argc != 1)
873 5565365c 2024-03-27 op usage();
874 5565365c 2024-03-27 op if (tls && port == NULL)
875 5565365c 2024-03-27 op port = "443";
876 5565365c 2024-03-27 op path = argv[0];
877 5565365c 2024-03-27 op
878 5565365c 2024-03-27 op username = getenv("GOT_NOTIFY_HTTP_USER");
879 5565365c 2024-03-27 op password = getenv("GOT_NOTIFY_HTTP_PASS");
880 5565365c 2024-03-27 op if ((username != NULL && password == NULL) ||
881 5565365c 2024-03-27 op (username == NULL && password != NULL))
882 cb29e255 2024-04-18 stsp fatalx("username or password are not specified");
883 5565365c 2024-03-27 op if (username && *password == '\0')
884 cb29e255 2024-04-18 stsp fatalx("password can't be empty");
885 5565365c 2024-03-27 op
886 5565365c 2024-03-27 op /* used by the regression test suite */
887 5565365c 2024-03-27 op timeoutstr = getenv("GOT_NOTIFY_TIMEOUT");
888 5565365c 2024-03-27 op if (timeoutstr) {
889 5565365c 2024-03-27 op http_timeout = strtonum(timeoutstr, 0, 600, &errstr);
890 5565365c 2024-03-27 op if (errstr != NULL)
891 cb29e255 2024-04-18 stsp fatalx("timeout in seconds is %s: %s",
892 5565365c 2024-03-27 op errstr, timeoutstr);
893 5565365c 2024-03-27 op }
894 5565365c 2024-03-27 op
895 5565365c 2024-03-27 op memset(&timeout, 0, sizeof(timeout));
896 5565365c 2024-03-27 op timeout.tv_sec = http_timeout;
897 5565365c 2024-03-27 op
898 5565365c 2024-03-27 op tmpfp = got_opentemp();
899 5565365c 2024-03-27 op if (tmpfp == NULL)
900 cb29e255 2024-04-18 stsp fatal("opentemp");
901 5565365c 2024-03-27 op
902 c1003102 2024-04-15 op jsonify(tmpfp, repo);
903 5565365c 2024-03-27 op
904 5565365c 2024-03-27 op paylen = ftello(tmpfp);
905 5565365c 2024-03-27 op if (paylen == -1)
906 cb29e255 2024-04-18 stsp fatal("ftello");
907 5565365c 2024-03-27 op if (fseeko(tmpfp, 0, SEEK_SET) == -1)
908 cb29e255 2024-04-18 stsp fatal("fseeko");
909 5565365c 2024-03-27 op
910 5565365c 2024-03-27 op #ifndef PROFILE
911 5565365c 2024-03-27 op /* drop tmppath */
912 5565365c 2024-03-27 op if (pledge("stdio rpath dns inet", NULL) == -1)
913 5565365c 2024-03-27 op err(1, "pledge");
914 5565365c 2024-03-27 op #endif
915 5565365c 2024-03-27 op
916 5565365c 2024-03-27 op memset(&pfd, 0, sizeof(pfd));
917 5565365c 2024-03-27 op pfd.fd = dial(host, port);
918 5565365c 2024-03-27 op
919 5565365c 2024-03-27 op if ((flags = fcntl(pfd.fd, F_GETFL)) == -1)
920 cb29e255 2024-04-18 stsp fatal("fcntl(F_GETFL)");
921 5565365c 2024-03-27 op if (fcntl(pfd.fd, F_SETFL, flags | O_NONBLOCK) == -1)
922 cb29e255 2024-04-18 stsp fatal("fcntl(F_SETFL)");
923 5565365c 2024-03-27 op
924 5565365c 2024-03-27 op if (bufio_init(&bio) == -1)
925 cb29e255 2024-04-18 stsp fatal("bufio_init");
926 5565365c 2024-03-27 op bufio_set_fd(&bio, pfd.fd);
927 5565365c 2024-03-27 op if (tls && bufio_starttls(&bio, host, 0, NULL, 0, NULL, 0) == -1)
928 cb29e255 2024-04-18 stsp fatal("bufio_starttls");
929 5565365c 2024-03-27 op
930 5565365c 2024-03-27 op #ifndef PROFILE
931 5565365c 2024-03-27 op /* drop rpath dns inet */
932 5565365c 2024-03-27 op if (pledge("stdio", NULL) == -1)
933 5565365c 2024-03-27 op err(1, "pledge");
934 5565365c 2024-03-27 op #endif
935 5565365c 2024-03-27 op
936 5565365c 2024-03-27 op if ((!tls && strcmp(port, "80") != 0) ||
937 5565365c 2024-03-27 op (tls && strcmp(port, "443")) != 0)
938 5565365c 2024-03-27 op nonstd = 1;
939 5565365c 2024-03-27 op
940 5565365c 2024-03-27 op ret = bufio_compose_fmt(&bio,
941 5565365c 2024-03-27 op "POST %s HTTP/1.1\r\n"
942 5565365c 2024-03-27 op "Host: %s%s%s\r\n"
943 5565365c 2024-03-27 op "Content-Type: application/json\r\n"
944 5565365c 2024-03-27 op "Content-Length: %lld\r\n"
945 5565365c 2024-03-27 op "User-Agent: %s\r\n"
946 5565365c 2024-03-27 op "Connection: close\r\n",
947 5565365c 2024-03-27 op path, host,
948 5565365c 2024-03-27 op nonstd ? ":" : "", nonstd ? port : "",
949 5565365c 2024-03-27 op (long long)paylen, USERAGENT);
950 5565365c 2024-03-27 op if (ret == -1)
951 cb29e255 2024-04-18 stsp fatal("bufio_compose_fmt");
952 5565365c 2024-03-27 op
953 5565365c 2024-03-27 op if (username) {
954 5565365c 2024-03-27 op auth = basic_auth(username, password);
955 5565365c 2024-03-27 op ret = bufio_compose_fmt(&bio, "Authorization: basic %s\r\n",
956 5565365c 2024-03-27 op auth);
957 5565365c 2024-03-27 op if (ret == -1)
958 cb29e255 2024-04-18 stsp fatal("bufio_compose_fmt");
959 5565365c 2024-03-27 op free(auth);
960 5565365c 2024-03-27 op }
961 5565365c 2024-03-27 op
962 5565365c 2024-03-27 op if (bufio_compose(&bio, "\r\n", 2) == -1)
963 cb29e255 2024-04-18 stsp fatal("bufio_compose");
964 5565365c 2024-03-27 op
965 5565365c 2024-03-27 op while (!done) {
966 5565365c 2024-03-27 op struct timespec elapsed, start, stop;
967 5565365c 2024-03-27 op char buf[BUFSIZ];
968 5565365c 2024-03-27 op
969 5565365c 2024-03-27 op pfd.events = bufio2poll(&bio);
970 5565365c 2024-03-27 op clock_gettime(CLOCK_MONOTONIC, &start);
971 5565365c 2024-03-27 op ret = ppoll(&pfd, 1, &timeout, NULL);
972 5565365c 2024-03-27 op if (ret == -1)
973 cb29e255 2024-04-18 stsp fatal("poll");
974 5565365c 2024-03-27 op clock_gettime(CLOCK_MONOTONIC, &stop);
975 5565365c 2024-03-27 op timespecsub(&stop, &start, &elapsed);
976 5565365c 2024-03-27 op timespecsub(&timeout, &elapsed, &timeout);
977 5565365c 2024-03-27 op if (ret == 0 || timeout.tv_sec <= 0)
978 cb29e255 2024-04-18 stsp fatalx("timeout");
979 5565365c 2024-03-27 op
980 a9d9f6e4 2024-04-18 op if (bio.wbuf.len > 0) {
981 5565365c 2024-03-27 op if (bufio_write(&bio) == -1 && errno != EAGAIN)
982 cb29e255 2024-04-18 stsp fatalx("bufio_write: %s", bufio_io_err(&bio));
983 5565365c 2024-03-27 op }
984 5565365c 2024-03-27 op
985 a9d9f6e4 2024-04-18 op r = bufio_read(&bio);
986 a9d9f6e4 2024-04-18 op if (r == -1 && errno != EAGAIN)
987 a9d9f6e4 2024-04-18 op fatalx("bufio_read: %s", bufio_io_err(&bio));
988 a9d9f6e4 2024-04-18 op if (r == 0)
989 a9d9f6e4 2024-04-18 op fatalx("unexpected EOF");
990 5565365c 2024-03-27 op
991 a9d9f6e4 2024-04-18 op for (;;) {
992 a9d9f6e4 2024-04-18 op line = buf_getdelim(&bio.rbuf, "\r\n", &len);
993 a9d9f6e4 2024-04-18 op if (line == NULL)
994 a9d9f6e4 2024-04-18 op break;
995 a9d9f6e4 2024-04-18 op if (response_code && *line == '\0') {
996 a9d9f6e4 2024-04-18 op /*
997 a9d9f6e4 2024-04-18 op * end of headers, don't bother
998 a9d9f6e4 2024-04-18 op * reading the body, if there is.
999 a9d9f6e4 2024-04-18 op */
1000 a9d9f6e4 2024-04-18 op done = 1;
1001 a9d9f6e4 2024-04-18 op break;
1002 a9d9f6e4 2024-04-18 op }
1003 a9d9f6e4 2024-04-18 op if (response_code) {
1004 5565365c 2024-03-27 op buf_drain(&bio.rbuf, len);
1005 a9d9f6e4 2024-04-18 op continue;
1006 5565365c 2024-03-27 op }
1007 a9d9f6e4 2024-04-18 op spc = strchr(line, ' ');
1008 a9d9f6e4 2024-04-18 op if (spc == NULL)
1009 a9d9f6e4 2024-04-18 op fatalx("bad HTTP response from server");
1010 a9d9f6e4 2024-04-18 op *spc++ = '\0';
1011 a9d9f6e4 2024-04-18 op if (strcasecmp(line, "HTTP/1.1") != 0)
1012 a9d9f6e4 2024-04-18 op log_warnx("unexpected protocol: %s", line);
1013 a9d9f6e4 2024-04-18 op line = spc;
1014 a9d9f6e4 2024-04-18 op
1015 a9d9f6e4 2024-04-18 op spc = strchr(line, ' ');
1016 a9d9f6e4 2024-04-18 op if (spc == NULL)
1017 a9d9f6e4 2024-04-18 op fatalx("bad HTTP response from server");
1018 a9d9f6e4 2024-04-18 op *spc++ = '\0';
1019 a9d9f6e4 2024-04-18 op
1020 a9d9f6e4 2024-04-18 op response_code = strtonum(line, 100, 599,
1021 a9d9f6e4 2024-04-18 op &errstr);
1022 a9d9f6e4 2024-04-18 op if (errstr != NULL)
1023 a9d9f6e4 2024-04-18 op log_warnx("response code is %s: %s",
1024 a9d9f6e4 2024-04-18 op errstr, line);
1025 a9d9f6e4 2024-04-18 op
1026 a9d9f6e4 2024-04-18 op buf_drain(&bio.rbuf, len);
1027 5565365c 2024-03-27 op }
1028 a9d9f6e4 2024-04-18 op if (done)
1029 a9d9f6e4 2024-04-18 op break;
1030 5565365c 2024-03-27 op
1031 5565365c 2024-03-27 op if (!feof(tmpfp) && bio.wbuf.len < sizeof(buf)) {
1032 5565365c 2024-03-27 op len = fread(buf, 1, sizeof(buf), tmpfp);
1033 5565365c 2024-03-27 op if (len == 0) {
1034 5565365c 2024-03-27 op if (ferror(tmpfp))
1035 cb29e255 2024-04-18 stsp fatal("fread");
1036 5565365c 2024-03-27 op continue;
1037 5565365c 2024-03-27 op }
1038 5565365c 2024-03-27 op
1039 5565365c 2024-03-27 op if (bufio_compose(&bio, buf, len) == -1)
1040 cb29e255 2024-04-18 stsp fatal("buf_compose");
1041 5565365c 2024-03-27 op }
1042 5565365c 2024-03-27 op }
1043 5565365c 2024-03-27 op
1044 3b44bdbe 2024-03-27 op if (response_code >= 200 && response_code < 300)
1045 5565365c 2024-03-27 op return 0;
1046 cb29e255 2024-04-18 stsp fatal("request failed with code %d", response_code);
1047 5565365c 2024-03-27 op }