Commit bd3d9e54cb422cb58d52b267c6a8afc3376842d2

Stefan Sperling 2021-09-05T14:21:02

move more code used by got-send-pack and got-fetch-pack to a common file Move functions and data structures which implement Git protocol features required for fetching and sending pack files to new files lib/gitproto.c and lib/got_lib_gitproto.h. This code was duplicated in got-fetch-pack and got-send-pack. No functional change.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
diff --git a/lib/gitproto.c b/lib/gitproto.c
new file mode 100644
index 0000000..436c3e0
--- /dev/null
+++ b/lib/gitproto.c
@@ -0,0 +1,206 @@
+/*
+ * Copyright (c) 2019 Ori Bernstein <ori@openbsd.org>
+ * Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <sys/queue.h>
+
+#include <ctype.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "got_error.h"
+#include "got_path.h"
+
+#include "got_lib_gitproto.h"
+
+#ifndef nitems
+#define nitems(_a)	(sizeof((_a)) / sizeof((_a)[0]))
+#endif
+
+static const struct got_error *
+tokenize_refline(char **tokens, char *line, int len, int maxtokens)
+{
+	const struct got_error *err = NULL;
+	char *p;
+	size_t i, n = 0;
+
+	for (i = 0; i < maxtokens; i++)
+		tokens[i] = NULL;
+
+	for (i = 0; n < len && i < maxtokens; i++) {
+		while (isspace(*line)) {
+			line++;
+			n++;
+		}
+		p = line;
+		while (*line != '\0' && n < len &&
+		    (!isspace(*line) || i == maxtokens - 1)) {
+			line++;
+			n++;
+		}
+		tokens[i] = strndup(p, line - p);
+		if (tokens[i] == NULL) {
+			err = got_error_from_errno("strndup");
+			goto done;
+		}
+		/* Skip \0 field-delimiter at end of token. */
+		while (line[0] == '\0' && n < len) {
+			line++;
+			n++;
+		}
+	}
+	if (i <= 2)
+		err = got_error(GOT_ERR_BAD_PACKET);
+done:
+	if (err) {
+		int j;
+		for (j = 0; j < i; j++) {
+			free(tokens[j]);
+			tokens[j] = NULL;
+		}
+	}
+	return err;
+}
+
+const struct got_error *
+got_gitproto_parse_refline(char **id_str, char **refname,
+    char **server_capabilities, char *line, int len)
+{
+	const struct got_error *err = NULL;
+	char *tokens[3];
+
+	err = tokenize_refline(tokens, line, len, nitems(tokens));
+	if (err)
+		return err;
+
+	if (tokens[0])
+		*id_str = tokens[0];
+	if (tokens[1])
+		*refname = tokens[1];
+	if (tokens[2]) {
+		char *p;
+		*server_capabilities = tokens[2];
+		p = strrchr(*server_capabilities, '\n');
+		if (p)
+			*p = '\0';
+	}
+
+	return NULL;
+}
+
+static const struct got_error *
+match_capability(char **my_capabilities, const char *capa,
+    const struct got_capability *mycapa)
+{
+	char *equalsign;
+	char *s;
+
+	equalsign = strchr(capa, '=');
+	if (equalsign) {
+		if (strncmp(capa, mycapa->key, equalsign - capa) != 0)
+			return NULL;
+	} else {
+		if (strcmp(capa, mycapa->key) != 0)
+			return NULL;
+	}
+
+	if (asprintf(&s, "%s %s%s%s",
+	    *my_capabilities != NULL ? *my_capabilities : "",
+	    mycapa->key,
+	    mycapa->value != NULL ? "=" : "",
+	    mycapa->value != NULL? mycapa->value : "") == -1)
+		return got_error_from_errno("asprintf");
+
+	free(*my_capabilities);
+	*my_capabilities = s;
+	return NULL;
+}
+
+static const struct got_error *
+add_symref(struct got_pathlist_head *symrefs, char *capa)
+{
+	const struct got_error *err = NULL;
+	char *colon, *name = NULL, *target = NULL;
+
+	/* Need at least "A:B" */
+	if (strlen(capa) < 3)
+		return NULL;
+
+	colon = strchr(capa, ':');
+	if (colon == NULL)
+		return NULL;
+
+	*colon = '\0';
+	name = strdup(capa);
+	if (name == NULL)
+		return got_error_from_errno("strdup");
+
+	target = strdup(colon + 1);
+	if (target == NULL) {
+		err = got_error_from_errno("strdup");
+		goto done;
+	}
+
+	/* We can't validate the ref itself here. The main process will. */
+	err = got_pathlist_append(symrefs, name, target);
+done:
+	if (err) {
+		free(name);
+		free(target);
+	}
+	return err;
+}
+
+const struct got_error *
+got_gitproto_match_capabilities(char **common_capabilities,
+    struct got_pathlist_head *symrefs, char *server_capabilities,
+    const struct got_capability my_capabilities[], size_t ncapa)
+{
+	const struct got_error *err = NULL;
+	char *capa, *equalsign;
+	size_t i;
+
+	*common_capabilities = NULL;
+	do {
+		capa = strsep(&server_capabilities, " ");
+		if (capa == NULL)
+			return NULL;
+
+		equalsign = strchr(capa, '=');
+		if (equalsign != NULL && symrefs != NULL &&
+		    strncmp(capa, "symref", equalsign - capa) == 0) {
+			err = add_symref(symrefs, equalsign + 1);
+			if (err)
+				break;
+			continue;
+		}
+
+		for (i = 0; i < ncapa; i++) {
+			err = match_capability(common_capabilities,
+			    capa, &my_capabilities[i]);
+			if (err)
+				break;
+		}
+	} while (capa);
+
+	if (*common_capabilities == NULL) {
+		*common_capabilities = strdup("");
+		if (*common_capabilities == NULL)
+			err = got_error_from_errno("strdup");
+	}
+	return err;
+}
diff --git a/lib/got_lib_gitproto.h b/lib/got_lib_gitproto.h
new file mode 100644
index 0000000..cffe349
--- /dev/null
+++ b/lib/got_lib_gitproto.h
@@ -0,0 +1,40 @@
+/*
+ * Copyright (c) 2019 Ori Bernstein <ori@openbsd.org>
+ * Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#define GOT_CAPA_AGENT			"agent"
+#define GOT_CAPA_OFS_DELTA		"ofs-delta"
+#define GOT_CAPA_SIDE_BAND_64K		"side-band-64k"
+#define GOT_CAPA_REPORT_STATUS		"report-status"
+#define GOT_CAPA_DELETE_REFS		"delete-refs"
+
+#define GOT_SIDEBAND_PACKFILE_DATA	1
+#define GOT_SIDEBAND_PROGRESS_INFO	2
+#define GOT_SIDEBAND_ERROR_INFO		3
+
+struct got_capability {
+	const char *key;
+	const char *value;
+};
+
+struct got_pathlist_head;
+
+const struct got_error *got_gitproto_parse_refline(char **id_str,
+    char **refname, char **server_capabilities, char *line, int len);
+const struct got_error *got_gitproto_match_capabilities(
+    char **common_capabilities,
+    struct got_pathlist_head *symrefs, char *server_capabilities,
+    const struct got_capability my_capabilities[], size_t ncapa);
diff --git a/libexec/got-fetch-pack/Makefile b/libexec/got-fetch-pack/Makefile
index 322eb51..7df6b00 100644
--- a/libexec/got-fetch-pack/Makefile
+++ b/libexec/got-fetch-pack/Makefile
@@ -4,7 +4,7 @@
 
 PROG=		got-fetch-pack
 SRCS=		got-fetch-pack.c error.c inflate.c object_parse.c \
-		path.c privsep.c sha1.c pkt.c
+		path.c privsep.c sha1.c pkt.c gitproto.c
 
 CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
 LDADD = -lutil -lz
diff --git a/libexec/got-fetch-pack/got-fetch-pack.c b/libexec/got-fetch-pack/got-fetch-pack.c
index 1b1a71e..42a19bf 100644
--- a/libexec/got-fetch-pack/got-fetch-pack.c
+++ b/libexec/got-fetch-pack/got-fetch-pack.c
@@ -49,6 +49,7 @@
 #include "got_lib_privsep.h"
 #include "got_lib_pack.h"
 #include "got_lib_pkt.h"
+#include "got_lib_gitproto.h"
 
 #ifndef nitems
 #define nitems(_a)	(sizeof((_a)) / sizeof((_a)[0]))
@@ -58,6 +59,12 @@ struct got_object *indexed;
 static int chattygot;
 static struct got_object_id zhash = {.sha1={0}};
 
+static const struct got_capability got_capabilities[] = {
+	{ GOT_CAPA_AGENT, "got/" GOT_VERSION_STR },
+	{ GOT_CAPA_OFS_DELTA, NULL },
+	{ GOT_CAPA_SIDE_BAND_64K, NULL },
+};
+
 static void
 match_remote_ref(struct got_pathlist_head *have_refs,
     struct got_object_id *my_id, char *refname)
@@ -117,198 +124,6 @@ match_wanted_ref(const char *refname, const char *wanted_ref)
 }
 
 static const struct got_error *
-tokenize_refline(char **tokens, char *line, int len, int maxtokens)
-{
-	const struct got_error *err = NULL;
-	char *p;
-	size_t i, n = 0;
-
-	for (i = 0; i < maxtokens; i++)
-		tokens[i] = NULL;
-
-	for (i = 0; n < len && i < maxtokens; i++) {
-		while (isspace(*line)) {
-			line++;
-			n++;
-		}
-		p = line;
-		while (*line != '\0' && n < len &&
-		    (!isspace(*line) || i == maxtokens - 1)) {
-			line++;
-			n++;
-		}
-		tokens[i] = strndup(p, line - p);
-		if (tokens[i] == NULL) {
-			err = got_error_from_errno("strndup");
-			goto done;
-		}
-		/* Skip \0 field-delimiter at end of token. */
-		while (line[0] == '\0' && n < len) {
-			line++;
-			n++;
-		}
-	}
-	if (i <= 2)
-		err = got_error(GOT_ERR_BAD_PACKET);
-done:
-	if (err) {
-		int j;
-		for (j = 0; j < i; j++) {
-			free(tokens[j]);
-			tokens[j] = NULL;
-		}
-	}
-	return err;
-}
-
-static const struct got_error *
-parse_refline(char **id_str, char **refname, char **server_capabilities,
-    char *line, int len)
-{
-	const struct got_error *err = NULL;
-	char *tokens[3];
-
-	err = tokenize_refline(tokens, line, len, nitems(tokens));
-	if (err)
-		return err;
-
-	if (tokens[0])
-		*id_str = tokens[0];
-	if (tokens[1])
-		*refname = tokens[1];
-	if (tokens[2]) {
-		char *p;
-		*server_capabilities = tokens[2];
-		p = strrchr(*server_capabilities, '\n');
-		if (p)
-			*p = '\0';
-	}
-
-	return NULL;
-}
-
-#define GOT_CAPA_AGENT			"agent"
-#define GOT_CAPA_OFS_DELTA		"ofs-delta"
-#define GOT_CAPA_SIDE_BAND_64K		"side-band-64k"
-
-#define GOT_SIDEBAND_PACKFILE_DATA	1
-#define GOT_SIDEBAND_PROGRESS_INFO	2
-#define GOT_SIDEBAND_ERROR_INFO		3
-
-
-struct got_capability {
-	const char *key;
-	const char *value;
-};
-static const struct got_capability got_capabilities[] = {
-	{ GOT_CAPA_AGENT, "got/" GOT_VERSION_STR },
-	{ GOT_CAPA_OFS_DELTA, NULL },
-	{ GOT_CAPA_SIDE_BAND_64K, NULL },
-};
-
-static const struct got_error *
-match_capability(char **my_capabilities, const char *capa,
-    const struct got_capability *mycapa)
-{
-	char *equalsign;
-	char *s;
-
-	equalsign = strchr(capa, '=');
-	if (equalsign) {
-		if (strncmp(capa, mycapa->key, equalsign - capa) != 0)
-			return NULL;
-	} else {
-		if (strcmp(capa, mycapa->key) != 0)
-			return NULL;
-	}
-
-	if (asprintf(&s, "%s %s%s%s",
-	    *my_capabilities != NULL ? *my_capabilities : "",
-	    mycapa->key,
-	    mycapa->value != NULL ? "=" : "",
-	    mycapa->value != NULL? mycapa->value : "") == -1)
-		return got_error_from_errno("asprintf");
-
-	free(*my_capabilities);
-	*my_capabilities = s;
-	return NULL;
-}
-
-static const struct got_error *
-add_symref(struct got_pathlist_head *symrefs, char *capa)
-{
-	const struct got_error *err = NULL;
-	char *colon, *name = NULL, *target = NULL;
-
-	/* Need at least "A:B" */
-	if (strlen(capa) < 3)
-		return NULL;
-
-	colon = strchr(capa, ':');
-	if (colon == NULL)
-		return NULL;
-
-	*colon = '\0';
-	name = strdup(capa);
-	if (name == NULL)
-		return got_error_from_errno("strdup");
-
-	target = strdup(colon + 1);
-	if (target == NULL) {
-		err = got_error_from_errno("strdup");
-		goto done;
-	}
-
-	/* We can't validate the ref itself here. The main process will. */
-	err = got_pathlist_append(symrefs, name, target);
-done:
-	if (err) {
-		free(name);
-		free(target);
-	}
-	return err;
-}
-
-static const struct got_error *
-match_capabilities(char **my_capabilities, struct got_pathlist_head *symrefs,
-    char *server_capabilities)
-{
-	const struct got_error *err = NULL;
-	char *capa, *equalsign;
-	size_t i;
-
-	*my_capabilities = NULL;
-	do {
-		capa = strsep(&server_capabilities, " ");
-		if (capa == NULL)
-			return NULL;
-
-		equalsign = strchr(capa, '=');
-		if (equalsign != NULL &&
-		    strncmp(capa, "symref", equalsign - capa) == 0) {
-			err = add_symref(symrefs, equalsign + 1);
-			if (err)
-				break;
-			continue;
-		}
-
-		for (i = 0; i < nitems(got_capabilities); i++) {
-			err = match_capability(my_capabilities,
-			    capa, &got_capabilities[i]);
-			if (err)
-				break;
-		}
-	} while (capa);
-
-	if (*my_capabilities == NULL) {
-		*my_capabilities = strdup("");
-		if (*my_capabilities == NULL)
-			err = got_error_from_errno("strdup");
-	}
-	return err;
-}
-
-static const struct got_error *
 send_fetch_server_progress(struct imsgbuf *ibuf, const char *msg, size_t msglen)
 {
 	if (msglen > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
@@ -345,8 +160,6 @@ send_fetch_done(struct imsgbuf *ibuf, uint8_t *pack_sha1)
 	return got_privsep_flush_imsg(ibuf);
 }
 
-
-
 static const struct got_error *
 fetch_progress(struct imsgbuf *ibuf, const char *buf, size_t len)
 {
@@ -534,16 +347,17 @@ fetch_pack(int fd, int packfd, uint8_t *pack_sha1,
 			err = fetch_error(&buf[4], n - 4);
 			goto done;
 		}
-		err = parse_refline(&id_str, &refname, &server_capabilities,
-		    buf, n);
+		err = got_gitproto_parse_refline(&id_str, &refname,
+		    &server_capabilities, buf, n);
 		if (err)
 			goto done;
 		if (is_firstpkt) {
 			if (chattygot && server_capabilities[0] != '\0')
 				fprintf(stderr, "%s: server capabilities: %s\n",
 				    getprogname(), server_capabilities);
-			err = match_capabilities(&my_capabilities, &symrefs,
-			    server_capabilities);
+			err = got_gitproto_match_capabilities(&my_capabilities,
+			    &symrefs, server_capabilities,
+			    got_capabilities, nitems(got_capabilities));
 			if (err)
 				goto done;
 			if (chattygot)
diff --git a/libexec/got-send-pack/Makefile b/libexec/got-send-pack/Makefile
index ddc73e5..c4d5d83 100644
--- a/libexec/got-send-pack/Makefile
+++ b/libexec/got-send-pack/Makefile
@@ -4,7 +4,7 @@
 
 PROG=		got-send-pack
 SRCS=		got-send-pack.c error.c inflate.c object_parse.c \
-		path.c privsep.c sha1.c pkt.c
+		path.c privsep.c sha1.c pkt.c gitproto.c
 
 CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
 LDADD = -lutil -lz
diff --git a/libexec/got-send-pack/got-send-pack.c b/libexec/got-send-pack/got-send-pack.c
index 059def3..fc22714 100644
--- a/libexec/got-send-pack/got-send-pack.c
+++ b/libexec/got-send-pack/got-send-pack.c
@@ -50,6 +50,7 @@
 #include "got_lib_privsep.h"
 #include "got_lib_pack.h"
 #include "got_lib_pkt.h"
+#include "got_lib_gitproto.h"
 
 #ifndef nitems
 #define nitems(_a)	(sizeof((_a)) / sizeof((_a)[0]))
@@ -58,92 +59,6 @@
 struct got_object *indexed;
 static int chattygot;
 
-static const struct got_error *
-tokenize_refline(char **tokens, char *line, int len, int maxtokens)
-{
-	const struct got_error *err = NULL;
-	char *p;
-	size_t i, n = 0;
-
-	for (i = 0; i < maxtokens; i++)
-		tokens[i] = NULL;
-
-	for (i = 0; n < len && i < maxtokens; i++) {
-		while (isspace(*line)) {
-			line++;
-			n++;
-		}
-		p = line;
-		while (*line != '\0' && n < len &&
-		    (!isspace(*line) || i == maxtokens - 1)) {
-			line++;
-			n++;
-		}
-		tokens[i] = strndup(p, line - p);
-		if (tokens[i] == NULL) {
-			err = got_error_from_errno("strndup");
-			goto done;
-		}
-		/* Skip \0 field-delimiter at end of token. */
-		while (line[0] == '\0' && n < len) {
-			line++;
-			n++;
-		}
-	}
-	if (i <= 2)
-		err = got_error(GOT_ERR_NOT_REF);
-done:
-	if (err) {
-		int j;
-		for (j = 0; j < i; j++) {
-			free(tokens[j]);
-			tokens[j] = NULL;
-		}
-	}
-	return err;
-}
-
-static const struct got_error *
-parse_refline(char **id_str, char **refname, char **server_capabilities,
-    char *line, int len)
-{
-	const struct got_error *err = NULL;
-	char *tokens[3];
-
-	err = tokenize_refline(tokens, line, len, nitems(tokens));
-	if (err)
-		return err;
-
-	if (tokens[0])
-		*id_str = tokens[0];
-	if (tokens[1])
-		*refname = tokens[1];
-	if (tokens[2]) {
-		char *p;
-		*server_capabilities = tokens[2];
-		p = strrchr(*server_capabilities, '\n');
-		if (p)
-			*p = '\0';
-	}
-
-	return NULL;
-}
-
-#define GOT_CAPA_AGENT			"agent"
-#define GOT_CAPA_OFS_DELTA		"ofs-delta"
-#define GOT_CAPA_SIDE_BAND_64K		"side-band-64k"
-#define GOT_CAPA_REPORT_STATUS		"report-status"
-#define GOT_CAPA_DELETE_REFS		"delete-refs"
-
-#define GOT_SIDEBAND_PACKFILE_DATA	1
-#define GOT_SIDEBAND_PROGRESS_INFO	2
-#define GOT_SIDEBAND_ERROR_INFO		3
-
-
-struct got_capability {
-	const char *key;
-	const char *value;
-};
 static const struct got_capability got_capabilities[] = {
 	{ GOT_CAPA_AGENT, "got/" GOT_VERSION_STR },
 	{ GOT_CAPA_OFS_DELTA, NULL },
@@ -155,67 +70,6 @@ static const struct got_capability got_capabilities[] = {
 };
 
 static const struct got_error *
-match_capability(char **my_capabilities, const char *capa,
-    const struct got_capability *mycapa)
-{
-	char *equalsign;
-	char *s;
-
-	equalsign = strchr(capa, '=');
-	if (equalsign) {
-		if (strncmp(capa, mycapa->key, equalsign - capa) != 0)
-			return NULL;
-	} else {
-		if (strcmp(capa, mycapa->key) != 0)
-			return NULL;
-	}
-
-	if (asprintf(&s, "%s %s%s%s",
-	    *my_capabilities != NULL ? *my_capabilities : "",
-	    mycapa->key,
-	    mycapa->value != NULL ? "=" : "",
-	    mycapa->value != NULL? mycapa->value : "") == -1)
-		return got_error_from_errno("asprintf");
-
-	free(*my_capabilities);
-	*my_capabilities = s;
-	return NULL;
-}
-
-static const struct got_error *
-match_capabilities(char **my_capabilities, char *server_capabilities)
-{
-	const struct got_error *err = NULL;
-	char *capa;
-	size_t i;
-
-	*my_capabilities = NULL;
-	do {
-		capa = strsep(&server_capabilities, " ");
-		for (i = 0; capa != NULL && i < nitems(got_capabilities); i++) {
-			err = match_capability(my_capabilities,
-			    capa, &got_capabilities[i]);
-			if (err)
-				goto done;
-		}
-	} while (capa);
-
-	if (*my_capabilities == NULL) {
-		*my_capabilities = strdup("");
-		if (*my_capabilities == NULL) {
-			err = got_error_from_errno("strdup");
-			goto done;
-		}
-	}
-done:
-	if (err) {
-		free(*my_capabilities);
-		*my_capabilities = NULL;
-	}
-	return err;
-}
-
-static const struct got_error *
 send_upload_progress(struct imsgbuf *ibuf, off_t bytes)
 {
 	if (imsg_compose(ibuf, GOT_IMSG_SEND_UPLOAD_PROGRESS, 0, 0, -1,
@@ -500,16 +354,17 @@ send_pack(int fd, struct got_pathlist_head *refs,
 			err = send_error(&buf[4], n - 4);
 			goto done;
 		}
-		err = parse_refline(&id_str, &refname, &server_capabilities,
-		    buf, n);
+		err = got_gitproto_parse_refline(&id_str, &refname,
+		    &server_capabilities, buf, n);
 		if (err)
 			goto done;
 		if (is_firstpkt) {
 			if (chattygot && server_capabilities[0] != '\0')
 				fprintf(stderr, "%s: server capabilities: %s\n",
 				    getprogname(), server_capabilities);
-			err = match_capabilities(&my_capabilities,
-			    server_capabilities);
+			err = got_gitproto_match_capabilities(&my_capabilities,
+			    NULL, server_capabilities, got_capabilities,
+			    nitems(got_capabilities));
 			if (err)
 				goto done;
 			if (chattygot)