-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgenerate-ca-bundle
executable file
·345 lines (281 loc) · 8.7 KB
/
generate-ca-bundle
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
#!/usr/bin/env ruby
require 'openssl'
require 'optparse'
require 'set'
class CaBundle
class ParseError < StandardError; end
DefaultCAFile = '/etc/ssl/certs/ca-certificates.crt'
VERSION = '0.2.1'
def self.parse_args(args)
options = {cert_info: true}
optparse = OptionParser.new do |opts|
opts.banner = <<-EOM
usage: #{opts.program_name} [options] [CA_FILE]
Generate an annotated X.509 certificate bundle in PEM format. Certificates will
be sorted by subject and then by issuance date.
This is convenient for getting better visibility into the authorities that you
trust, or for generating a pared down certificate authority list.
Default CA_FILE: #{DefaultCAFile}
For example:
Exclude certificate authorities from China.
$ #{opts.program_name} -x CN
Include only authorities from Ireland or with no country listed.
$ #{opts.program_name} -c '' -c IE
Include only authorities from France and Sweden, with less verbose output.
$ #{opts.program_name} -c FR,SE --no-cert-info
Render the certificates and no plain text information.
$ #{opts.program_name} --compact
Options:
EOM
opts.version = VERSION
opts.on_tail('-h', '--help', 'Display this message') do
STDERR.puts opts
STDERR.puts
exit
end
opts.on_tail('-v', '--version', 'Print version') do
puts opts.ver
exit
end
opts.on('-c', '--only-country NAMES',
'Include only given countries in the bundle') do |names|
options[:countries_include] ||= Set.new
if names.empty?
options[:countries_include] << nil
else
options[:countries_include] += names.split(/[\s,]/).map(&:upcase)
end
end
opts.on('-x', '--exclude-country NAMES',
'Exclude given countries from the bundle') do |names|
options[:countries_exclude] ||= Set.new
if names.empty?
options[:countries_exclude] << nil
else
options[:countries_exclude] += names.split(/[\s,]/).map(&:upcase)
end
end
opts.on('--[no-]cert-info', 'Print extra certificate information') do |arg|
options[:cert_info] = arg
end
opts.on('--compact', "Don't print any subject or cert info") do |arg|
options[:compact] = true
end
opts.on('--secure', 'Exclude insecure ciphers and signatures') do |arg|
options[:secure] = true
end
end
optparse.parse!
if options[:countries_exclude] && options[:countries_include]
STDERR.puts optparse
optparse.warn("cannot specify both of --only and --exclude country")
exit 2
end
ca_file = args[0]
cab = CaBundle.new(ca_file, options)
puts cab.generate_bundle
end
attr_reader :bundle_path, :certs, :certs_data
# @param bundle_path [String] Path to input certificate bundle.
# @param opts [Hash]
#
# @option opts [Set<String>] :countries_include Country codes to include
# @option opts [Set<String>] :countries_exclude Country codes to exclude
# @option opts [Boolean] :cert_info
# @option opts [Boolean] :compact
# @option opts [Boolean] :secure
#
def initialize(bundle_path=nil, opts={})
@bundle_path = bundle_path || DefaultCAFile
@certs_data = parse_all_certificates(@bundle_path)
@certs = @certs_data.map {|cert| OpenSSL::X509::Certificate.new(cert)}
@countries_include = opts[:countries_include]
@countries_exclude = opts[:countries_exclude]
@verbose_info = opts[:cert_info]
@compact = opts[:compact]
@secure = opts[:secure]
@certs_data.zip(@certs).each do |orig, cert|
if orig.gsub(/[\r\n]/, '') != cert.to_pem.gsub(/[\r\n]/, '')
STDERR.puts "From source file:"
STDERR.puts orig
STDERR.puts "Generated from ruby:"
STDERR.puts cert.to_pem
STDERR.puts "As text:"
STDERR.puts cert.to_text
raise ParseError.new(
"Parse mismatch: #{orig.inspect} != #{cert.to_pem.inspect}")
end
end
end
def parse_all_certificates(bundle_file)
unless block_given?
return enum_for(:parse_all_certificates, bundle_file)
end
File.open(bundle_file, 'r') do |f|
in_cert = false
cert = nil
f.each_line do |line|
case line.chomp
when '-----BEGIN CERTIFICATE-----'
if in_cert
raise ParseError.new("Unexpected BEGIN CERTIFICATE")
end
in_cert = true
cert = line
when '-----END CERTIFICATE-----'
unless in_cert
raise ParseError.new("Unexpected END CERTIFICATE")
end
cert << line
yield cert
in_cert = false
cert = nil
else
if in_cert
if line.chomp =~ /\A[a-zA-Z0-9\/+=]*\z/
cert << line
else
raise ParseError.new("Unexpected line: #{line.inspect}")
end
end
end
end
end
end
def sorted_certs
@certs.sort_by {|c| [c.subject.to_a, c.not_before]}
end
def permitted_certs
return enum_for(:permitted_certs).to_a unless block_given?
sorted_certs.each do |cert|
if filter_country_ok?(cert)
if !@secure || secure?(cert)
yield cert
else
log_info("Cert rejected by algo strength filter: " +
cert.subject.to_s.inspect)
end
else
log_info("Cert rejected by country filter: " +
cert.subject.to_s.inspect)
end
end
end
def generate_bundle
if @compact
return permitted_certs.map(&:to_pem).join
end
lines = []
permitted_certs.each do |cert|
lines << '=' * 64
lines << pretty_subject(cert.subject)
if @verbose_info
lines << '--'
lines << 'Not Before: ' + cert.not_before.strftime('%Y-%m-%d')
lines << 'Not After: ' + cert.not_after.strftime('%Y-%m-%d')
lines << 'Signature: ' + cert.signature_algorithm
lines << 'Key: ' + cert_key_info_type(cert)
end
lines << cert.to_pem
end
lines.join("\n")
end
def cert_key_info(cert)
pkey = cert.public_key
klass = pkey.class.name.split('::').last
case pkey
when OpenSSL::PKey::RSA
bits = pkey.n.num_bytes * 8
subtype = bits.to_s
when OpenSSL::PKey::EC
subtype = pkey.group.curve_name
bits = pkey.group.degree
else
raise NotImplementedError.new(
"Unexpected PKey for #{cert.subject}: #{pkey.class}: #{pkey.inspect}")
end
{type: klass, subtype: subtype, bits: bits}
end
def cert_key_info_type(cert)
info = cert_key_info(cert)
"#{info.fetch(:type)}:#{info.fetch(:subtype)}"
end
def pretty_subject(subject)
subject.to_a.map {|part|
part.fetch(0) + ': ' + part.fetch(1)
}.join("\n")
end
# Determine whether the country of `cert` is allowed by the
# @countries_exclude and @countries_include filters.
#
# @param cert [OpenSSL::X509::Certificate]
#
# @return [Boolean]
#
def filter_country_ok?(cert)
return true if (!@countries_include && !@countries_exclude)
country = cert_country(cert)
if @countries_exclude && @countries_exclude.include?(country)
return false
end
if @countries_include && !@countries_include.include?(country)
return false
end
return true
end
# Return true if a certificate uses appropriately strong cipher and signature
# algorithms.
#
# This will reject RSA keys < 2048 bits and MD2 or MD5 signatures.
def secure?(cert)
info = cert_key_info(cert)
case info.fetch(:type)
when 'RSA'
# reject RSA < 2048 bit
if info.fetch(:bits) < 2048
return false
end
when 'EC'
# reject ECDSA < 256 bit
if info.fetch(:bits) < 256
return false
end
else
raise NotImplementedError.new("Unexpected cert algorithm: #{info}")
end
# reject MD2 and MD5
if cert.signature_algorithm.start_with?('md')
return false
end
return true
end
def cert_country(cert)
parts = cert.subject.to_a
found = parts.find_all {|p| p.first == 'C'}
if found.empty?
# no country in subject
log_warn("No country in subject: #{cert.subject.to_s.inspect}")
return nil
end
if found.length != 1
# bad number
raise ParseError.new("Could not parse country of cert subject:" +
cert.subject.to_s.inspect)
end
c_part = found.first
country = c_part.fetch(1).upcase
unless country =~ /\A[A-Z]{2}\z/
raise ParseError.new("Unexpected country code: #{country.inspect}")
end
country
end
def log_info(message)
STDERR.puts "*** " + message
end
def log_warn(message)
STDERR.puts '!!! ' + message
end
end
if $0 == __FILE__
CaBundle.parse_args(ARGV)
end