summaryrefslogtreecommitdiff
path: root/debian/patches/06-fixup-bbstored-certs.diff
blob: f752bd2c8b4af2a20d1baa8b34ae3d96e6bfb5bf (plain)
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
From: Reinhard Tartler <siretart@tauware.de>
Subject: Fixup bbstored for newer openssl

It appears that modern openssl versions slightly changed the formatting
for printing the common name of a certificate.

I've also dropped the check against filename because I cound't get the
filename to match against my local files - the check didn't appear too
useful to me.


--- a/bin/bbstored/bbstored-certs.in
+++ b/bin/bbstored/bbstored-certs.in
@@ -171,12 +171,6 @@ sub cmd_sign
 	
 	my $acc = $1;
 	
-	# check against filename
-	if(!($csr =~ m/(\A|\/)([A-Fa-f0-9]+)-/) || $2 ne $acc)
-	{
-		die "Certificate request filename does not match name in certificate ($common_name)"
-	}
-		
 	print <<__E;
 
 This certificate is for backup account
@@ -288,7 +282,7 @@ sub get_csr_common_name
 	my $subject;
 	while(<CSRTEXT>)
 	{
-		$subject = $1 if m/Subject:.+?CN=([-\.\w]+)/
+		$subject = $1 if m/Subject:.+?CN\s?=\s?([-\.\w]+)/
 	}	
 	close CSRTEXT;