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
|
class Puppet::SSLCertificates::Certificate
SSLCertificates = Puppet::SSLCertificates
attr_accessor :certfile, :keyfile, :name, :dir, :hash, :type
attr_accessor :key, :cert, :csr, :cacert
@@params2names = {
:name => "CN",
:state => "ST",
:country => "C",
:email => "emailAddress",
:org => "O",
:city => "L",
:ou => "OU"
}
def certname
OpenSSL::X509::Name.new self.subject
end
def delete
[@certfile,@keyfile].each { |file|
if FileTest.exists?(file)
File.unlink(file)
end
}
if defined? @hash and @hash
if FileTest.symlink?(@hash)
File.unlink(@hash)
end
end
end
def exists?
return FileTest.exists?(@certfile)
end
def getkey
unless FileTest.exists?(@keyfile)
self.mkkey()
end
if @password
@key = OpenSSL::PKey::RSA.new(
File.read(@keyfile),
@password
)
else
@key = OpenSSL::PKey::RSA.new(
File.read(@keyfile)
)
end
end
def initialize(hash)
unless hash.include?(:name)
raise Puppet::Error, "You must specify the common name for the certificate"
end
@name = hash[:name]
# init a few variables
@cert = @key = @csr = nil
if hash.include?(:cert)
@certfile = hash[:cert]
@dir = File.dirname(@certfile)
else
@dir = hash[:dir] || Puppet[:certdir]
@certfile = File.join(@dir, @name)
end
@cacertfile ||= File.join(Puppet[:certdir], "ca.pem")
unless FileTest.directory?(@dir)
Puppet.recmkdir(@dir)
end
unless @certfile =~ /\.pem$/
@certfile += ".pem"
end
@keyfile = hash[:key] || File.join(
Puppet[:privatekeydir], [@name,"pem"].join(".")
)
unless FileTest.directory?(@dir)
Puppet.recmkdir(@dir)
end
[@keyfile].each { |file|
dir = File.dirname(file)
unless FileTest.directory?(dir)
Puppet.recmkdir(dir)
end
}
@ttl = hash[:ttl] || 365 * 24 * 60 * 60
@selfsign = hash[:selfsign] || false
@encrypt = hash[:encrypt] || false
@replace = hash[:replace] || false
@issuer = hash[:issuer] || nil
if hash.include?(:type)
case hash[:type]
when :ca, :client, :server: @type = hash[:type]
else
raise "Invalid Cert type %s" % hash[:type]
end
else
@type = :client
end
@params = {:name => @name}
[:state, :country, :email, :org, :ou].each { |param|
if hash.include?(param)
@params[param] = hash[param]
end
}
if @encrypt
if @encrypt =~ /^\//
File.open(@encrypt) { |f|
@password = f.read.chomp
}
else
raise Puppet::Error, ":encrypt must be a path to a pass phrase file"
end
else
@password = nil
end
if hash.include?(:selfsign)
@selfsign = hash[:selfsign]
else
@selfsign = false
end
end
# this only works for servers, not for users
def mkcsr
unless defined? @key and @key
self.getkey
end
name = OpenSSL::X509::Name.new self.subject
@csr = OpenSSL::X509::Request.new
@csr.version = 0
@csr.subject = name
@csr.public_key = @key.public_key
@csr.sign(@key, OpenSSL::Digest::SHA1.new)
#File.open(@csrfile, "w") { |f|
# f << @csr.to_pem
#}
unless @csr.verify(@key.public_key)
raise Puppet::Error, "CSR sign verification failed"
end
return @csr
end
def mkkey
# @key is the file
@key = OpenSSL::PKey::RSA.new(1024)
# { |p,n|
# case p
# when 0; Puppet.info "key info: ." # BN_generate_prime
# when 1; Puppet.info "key info: +" # BN_generate_prime
# when 2; Puppet.info "key info: *" # searching good prime,
# # n = #of try,
# # but also data from BN_generate_prime
# when 3; Puppet.info "key info: \n" # found good prime, n==0 - p, n==1 - q,
# # but also data from BN_generate_prime
# else; Puppet.info "key info: *" # BN_generate_prime
# end
# }
if @password
#passwdproc = proc { @password }
keytext = @key.export(
OpenSSL::Cipher::DES.new(:EDE3, :CBC),
@password
)
File.open(@keyfile, "w", 0400) { |f|
f << keytext
}
else
File.open(@keyfile, "w", 0400) { |f|
f << @key.to_pem
}
end
#cmd = "#{ossl} genrsa -out #{@key} 1024"
end
def mkselfsigned
unless defined? @key and @key
self.getkey
end
if defined? @cert and @cert
raise Puppet::Error, "Cannot replace existing certificate"
end
args = {
:name => self.certname,
:ttl => @ttl,
:issuer => nil,
:serial => 0x0,
:publickey => @key.public_key
}
if @type
args[:type] = @type
else
args[:type] = :server
end
@cert = SSLCertificates.mkcert(args)
@cert.sign(@key, OpenSSL::Digest::SHA1.new) if @selfsign
return @cert
end
def subject(string = false)
subj = @@params2names.collect { |param, name|
if @params.include?(param)
[name, @params[param]]
end
}.reject { |ary| ary.nil? }
if string
return "/" + subj.collect { |ary|
"%s=%s" % ary
}.join("/") + "/"
else
return subj
end
end
# verify that we can track down the cert chain or whatever
def verify
"openssl verify -verbose -CAfile /home/luke/.puppet/ssl/certs/ca.pem -purpose sslserver culain.madstop.com.pem"
end
def write
files = {
@certfile => @cert,
@keyfile => @key,
}
if defined? @cacert
files[@cacertfile] = @cacert
end
files.each { |file,thing|
if defined? thing and thing
if FileTest.exists?(file)
next
end
text = nil
if thing.is_a?(OpenSSL::PKey::RSA) and @password
text = thing.export(
OpenSSL::Cipher::DES.new(:EDE3, :CBC),
@password
)
else
text = thing.to_pem
end
File.open(file, "w", 0660) { |f| f.print text }
end
}
if defined? @cacert
SSLCertificates.mkhash(Puppet[:certdir], @cacert, @cacertfile)
end
end
end
|