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
|
import { and, eq } from "drizzle-orm";
import { db } from "../db";
import {
commitVerifications,
signingKeys,
users,
type SigningKey,
} from "../db/schema";
import { getRawCommitObject } from "../git/repository";
export type VerificationReason =
| "valid"
| "unsigned"
| "unknown_key"
| "expired"
| "bad_sig"
| "email_mismatch";
export interface VerificationResult {
verified: boolean;
reason: VerificationReason;
signatureType: "gpg" | "ssh" | null;
fingerprint: string | null;
signerUserId: string | null;
signerKeyId: string | null;
}
export function extractSignatureFromCommit(
raw: string
): { signature: string; type: "gpg" | "ssh"; authorEmail: string | null } | null {
if (!raw) return null;
const lines = raw.split("\n");
let sig: string[] = [];
let inSig = false;
let author: string | null = null;
for (let i = 0; i < lines.length; i++) {
const ln = lines[i];
if (ln === "") break;
if (inSig) {
if (ln.startsWith(" ")) {
sig.push(ln.slice(1));
continue;
} else {
inSig = false;
}
}
if (ln.startsWith("gpgsig ") || ln.startsWith("gpgsig-sha256 ")) {
sig = [ln.replace(/^gpgsig(-sha256)? /, "")];
inSig = true;
continue;
}
if (ln.startsWith("author ")) {
const m = ln.match(/<([^>]+)>/);
if (m) author = m[1];
}
}
if (sig.length === 0) return null;
const armored = sig.join("\n");
const type: "gpg" | "ssh" = armored.includes("BEGIN SSH SIGNATURE")
? "ssh"
: "gpg";
return { signature: armored, type, authorEmail: author };
}
function b64decode(s: string): Uint8Array {
const clean = s.replace(/[\r\n\s]+/g, "");
const bin = atob(clean);
const out = new Uint8Array(bin.length);
for (let i = 0; i < bin.length; i++) out[i] = bin.charCodeAt(i);
return out;
}
export function unarmorPgp(armored: string): Uint8Array | null {
const lines = armored.split(/\r?\n/);
const body: string[] = [];
let inBody = false;
let afterBlankLine = false;
for (const ln of lines) {
if (ln.startsWith("-----BEGIN")) {
inBody = true;
afterBlankLine = false;
continue;
}
if (ln.startsWith("-----END")) break;
if (!inBody) continue;
if (!afterBlankLine) {
if (ln.trim() === "") {
afterBlankLine = true;
}
continue;
}
if (ln.startsWith("=")) continue;
body.push(ln);
}
const joined = body.join("");
if (!joined) return null;
try {
return b64decode(joined);
} catch {
return null;
}
}
export function parsePgpIssuerFingerprint(bytes: Uint8Array): string | null {
if (!bytes || bytes.length < 2) return null;
let off = 0;
while (off < bytes.length) {
const tagByte = bytes[off++];
if ((tagByte & 0x80) === 0) return null;
let tag: number;
let len: number;
if ((tagByte & 0x40) === 0) {
tag = (tagByte & 0x3c) >> 2;
const lenType = tagByte & 0x03;
if (lenType === 0) {
len = bytes[off++];
} else if (lenType === 1) {
len = (bytes[off++] << 8) | bytes[off++];
} else if (lenType === 2) {
len =
(bytes[off++] << 24) |
(bytes[off++] << 16) |
(bytes[off++] << 8) |
bytes[off++];
} else {
return null;
}
} else {
tag = tagByte & 0x3f;
const l0 = bytes[off++];
if (l0 < 192) {
len = l0;
} else if (l0 < 224) {
len = ((l0 - 192) << 8) + bytes[off++] + 192;
} else if (l0 === 255) {
len =
(bytes[off++] << 24) |
(bytes[off++] << 16) |
(bytes[off++] << 8) |
bytes[off++];
} else {
return null;
}
}
if (tag !== 2) {
off += len;
continue;
}
const end = off + len;
const version = bytes[off++];
if (version !== 4 && version !== 5) {
off = end;
continue;
}
off += 3;
const hashedLen =
version === 4
? (bytes[off++] << 8) | bytes[off++]
: (bytes[off++] << 24) |
(bytes[off++] << 16) |
(bytes[off++] << 8) |
bytes[off++];
const fp = scanSubpackets(bytes, off, off + hashedLen);
if (fp) return fp;
off += hashedLen;
const unhashedLen =
version === 4
? (bytes[off++] << 8) | bytes[off++]
: (bytes[off++] << 24) |
(bytes[off++] << 16) |
(bytes[off++] << 8) |
bytes[off++];
const fp2 = scanSubpackets(bytes, off, off + unhashedLen);
if (fp2) return fp2;
off = end;
}
return null;
}
function scanSubpackets(
bytes: Uint8Array,
start: number,
end: number
): string | null {
let off = start;
let keyIdFallback: string | null = null;
while (off < end) {
const l0 = bytes[off++];
let spLen: number;
if (l0 < 192) {
spLen = l0;
} else if (l0 < 255) {
spLen = ((l0 - 192) << 8) + bytes[off++] + 192;
} else {
spLen =
(bytes[off++] << 24) |
(bytes[off++] << 16) |
(bytes[off++] << 8) |
bytes[off++];
}
const spType = bytes[off] & 0x7f;
const bodyStart = off + 1;
const bodyEnd = off + spLen;
if (spType === 33) {
const hex: string[] = [];
for (let i = bodyStart + 1; i < bodyEnd; i++) {
hex.push(bytes[i].toString(16).padStart(2, "0"));
}
return hex.join("");
}
if (spType === 16 && !keyIdFallback) {
const hex: string[] = [];
for (let i = bodyStart; i < bodyEnd; i++) {
hex.push(bytes[i].toString(16).padStart(2, "0"));
}
keyIdFallback = hex.join("");
}
off = bodyEnd;
}
return keyIdFallback;
}
export function unarmorSsh(armored: string): Uint8Array | null {
const lines = armored.split(/\r?\n/);
const body: string[] = [];
let inBody = false;
for (const ln of lines) {
if (ln.startsWith("-----BEGIN SSH SIGNATURE")) {
inBody = true;
continue;
}
if (ln.startsWith("-----END SSH SIGNATURE")) break;
if (inBody && ln.trim() !== "") body.push(ln);
}
if (!body.length) return null;
try {
return b64decode(body.join(""));
} catch {
return null;
}
}
export function parseSshSigPublicKey(blob: Uint8Array): Uint8Array | null {
if (!blob || blob.length < 10) return null;
const magic = "SSHSIG";
for (let i = 0; i < magic.length; i++) {
if (blob[i] !== magic.charCodeAt(i)) return null;
}
let off = magic.length;
off += 4;
if (off + 4 > blob.length) return null;
const len =
(blob[off] << 24) |
(blob[off + 1] << 16) |
(blob[off + 2] << 8) |
blob[off + 3];
off += 4;
if (off + len > blob.length) return null;
return blob.slice(off, off + len);
}
export async function fingerprintForPublicKey(
keyType: "gpg" | "ssh",
publicKey: string
): Promise<string | null> {
if (keyType === "ssh") {
const token = publicKey.trim().split(/\s+/)[1];
if (!token) return null;
let bytes: Uint8Array;
try {
bytes = b64decode(token);
} catch {
return null;
}
const digest = await crypto.subtle.digest("SHA-256", bytes);
const b64 = btoa(String.fromCharCode(...new Uint8Array(digest))).replace(
/=+$/,
""
);
return `SHA256:${b64}`;
}
const m =
publicKey.match(/\b([A-Fa-f0-9]{40})\b/) ||
publicKey.match(/\b([A-Fa-f0-9]{64})\b/);
if (!m) return null;
return m[1].toLowerCase();
}
export function analyzeRawCommit(
raw: string
): {
type: "gpg" | "ssh" | null;
fingerprint: string | null;
authorEmail: string | null;
} {
const sig = extractSignatureFromCommit(raw);
if (!sig) return { type: null, fingerprint: null, authorEmail: null };
if (sig.type === "gpg") {
const packets = unarmorPgp(sig.signature);
if (!packets) {
return { type: "gpg", fingerprint: null, authorEmail: sig.authorEmail };
}
const fp = parsePgpIssuerFingerprint(packets);
return {
type: "gpg",
fingerprint: fp ? fp.toLowerCase() : null,
authorEmail: sig.authorEmail,
};
}
const blob = unarmorSsh(sig.signature);
if (!blob) {
return { type: "ssh", fingerprint: null, authorEmail: sig.authorEmail };
}
const pubkey = parseSshSigPublicKey(blob);
if (!pubkey) {
return { type: "ssh", fingerprint: null, authorEmail: sig.authorEmail };
}
return {
type: "ssh",
fingerprint: null,
authorEmail: sig.authorEmail,
...{
_sshPublicKey: pubkey,
},
} as any;
}
async function fingerprintSshBytes(bytes: Uint8Array): Promise<string> {
const digest = await crypto.subtle.digest("SHA-256", bytes);
const b64 = btoa(String.fromCharCode(...new Uint8Array(digest))).replace(
/=+$/,
""
);
return `SHA256:${b64}`;
}
export async function verifyCommit(
repositoryId: string,
ownerName: string,
repoName: string,
sha: string,
opts: { forceFresh?: boolean } = {}
): Promise<VerificationResult> {
if (!opts.forceFresh) {
const [cached] = await db
.select()
.from(commitVerifications)
.where(
and(
eq(commitVerifications.repositoryId, repositoryId),
eq(commitVerifications.commitSha, sha)
)
)
.limit(1);
if (cached) {
return {
verified: cached.verified,
reason: cached.reason as VerificationReason,
signatureType: (cached.signatureType as any) ?? null,
fingerprint: cached.signerFingerprint,
signerUserId: cached.signerUserId,
signerKeyId: cached.signerKeyId,
};
}
}
const raw = await getRawCommitObject(ownerName, repoName, sha);
const result = await verifyRawCommit(raw);
await persistVerification(repositoryId, sha, result);
return result;
}
export async function verifyRawCommit(
raw: string | null
): Promise<VerificationResult> {
if (!raw)
return {
verified: false,
reason: "unsigned",
signatureType: null,
fingerprint: null,
signerUserId: null,
signerKeyId: null,
};
const sig = extractSignatureFromCommit(raw);
if (!sig)
return {
verified: false,
reason: "unsigned",
signatureType: null,
fingerprint: null,
signerUserId: null,
signerKeyId: null,
};
let fingerprint: string | null = null;
if (sig.type === "gpg") {
const packets = unarmorPgp(sig.signature);
if (packets) {
const fp = parsePgpIssuerFingerprint(packets);
if (fp) fingerprint = fp.toLowerCase();
}
} else {
const blob = unarmorSsh(sig.signature);
if (blob) {
const pubkey = parseSshSigPublicKey(blob);
if (pubkey) fingerprint = await fingerprintSshBytes(pubkey);
}
}
if (!fingerprint) {
return {
verified: false,
reason: "bad_sig",
signatureType: sig.type,
fingerprint: null,
signerUserId: null,
signerKeyId: null,
};
}
let signingKey: SigningKey | null = null;
if (sig.type === "gpg") {
const all = await db
.select()
.from(signingKeys)
.where(eq(signingKeys.keyType, "gpg"))
.limit(500);
const fpLc = fingerprint.toLowerCase();
signingKey =
all.find((k) => k.fingerprint.toLowerCase() === fpLc) ??
all.find((k) => k.fingerprint.toLowerCase().endsWith(fpLc)) ??
null;
} else {
const [row] = await db
.select()
.from(signingKeys)
.where(
and(
eq(signingKeys.keyType, "ssh"),
eq(signingKeys.fingerprint, fingerprint)
)
)
.limit(1);
signingKey = row ?? null;
}
if (!signingKey) {
return {
verified: false,
reason: "unknown_key",
signatureType: sig.type,
fingerprint,
signerUserId: null,
signerKeyId: null,
};
}
if (signingKey.expiresAt && signingKey.expiresAt < new Date()) {
return {
verified: false,
reason: "expired",
signatureType: sig.type,
fingerprint,
signerUserId: signingKey.userId,
signerKeyId: signingKey.id,
};
}
if (sig.authorEmail && signingKey.email) {
if (
signingKey.email.toLowerCase().trim() !==
sig.authorEmail.toLowerCase().trim()
) {
return {
verified: false,
reason: "email_mismatch",
signatureType: sig.type,
fingerprint,
signerUserId: signingKey.userId,
signerKeyId: signingKey.id,
};
}
}
return {
verified: true,
reason: "valid",
signatureType: sig.type,
fingerprint,
signerUserId: signingKey.userId,
signerKeyId: signingKey.id,
};
}
async function persistVerification(
repositoryId: string,
sha: string,
result: VerificationResult
): Promise<void> {
try {
await db
.insert(commitVerifications)
.values({
repositoryId,
commitSha: sha,
verified: result.verified,
reason: result.reason,
signatureType: result.signatureType,
signerKeyId: result.signerKeyId,
signerUserId: result.signerUserId,
signerFingerprint: result.fingerprint,
})
.onConflictDoNothing();
} catch {
}
}
export async function listSigningKeysForUser(
userId: string
): Promise<SigningKey[]> {
return db
.select()
.from(signingKeys)
.where(eq(signingKeys.userId, userId));
}
export async function listSigningKeysForUsername(
username: string
): Promise<Array<SigningKey & { username: string }>> {
return db
.select({
id: signingKeys.id,
userId: signingKeys.userId,
keyType: signingKeys.keyType,
title: signingKeys.title,
fingerprint: signingKeys.fingerprint,
publicKey: signingKeys.publicKey,
email: signingKeys.email,
expiresAt: signingKeys.expiresAt,
lastUsedAt: signingKeys.lastUsedAt,
createdAt: signingKeys.createdAt,
username: users.username,
})
.from(signingKeys)
.innerJoin(users, eq(signingKeys.userId, users.id))
.where(eq(users.username, username));
}
export async function addSigningKey(params: {
userId: string;
keyType: "gpg" | "ssh";
title: string;
publicKey: string;
email?: string | null;
}): Promise<
| { ok: true; id: string; fingerprint: string }
| { ok: false; error: string }
> {
const { userId, keyType, title, publicKey } = params;
const email = (params.email || "").trim() || null;
const trimmed = publicKey.trim();
if (!trimmed) return { ok: false, error: "Public key is required" };
if (keyType !== "gpg" && keyType !== "ssh") {
return { ok: false, error: "Unknown key type" };
}
if (!title.trim()) return { ok: false, error: "Title is required" };
const fingerprint = await fingerprintForPublicKey(keyType, trimmed);
if (!fingerprint) {
return { ok: false, error: "Could not derive a fingerprint" };
}
try {
const [row] = await db
.insert(signingKeys)
.values({
userId,
keyType,
title: title.trim(),
fingerprint,
publicKey: trimmed,
email,
})
.returning();
return { ok: true, id: row.id, fingerprint };
} catch (err: any) {
const msg = String(err?.message || "");
if (msg.includes("signing_keys_fp_unique") || msg.includes("duplicate")) {
return { ok: false, error: "That key is already registered" };
}
return { ok: false, error: "Could not save key" };
}
}
export async function deleteSigningKey(
keyId: string,
userId: string
): Promise<boolean> {
const rows = await db
.delete(signingKeys)
.where(and(eq(signingKeys.id, keyId), eq(signingKeys.userId, userId)))
.returning();
return rows.length > 0;
}
export const __internal = {
b64decode,
scanSubpackets,
fingerprintSshBytes,
};
|