Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Łukasz Nowak
caddy
Commits
c75ee000
Commit
c75ee000
authored
Aug 19, 2016
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix edge case in stapling; do not allow certs without any names
parent
8cdc65ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
10 deletions
+36
-10
caddytls/certificates.go
caddytls/certificates.go
+31
-9
caddytls/crypto.go
caddytls/crypto.go
+5
-1
No files found.
caddytls/certificates.go
View file @
c75ee000
...
...
@@ -167,12 +167,28 @@ func makeCertificate(certPEMBlock, keyPEMBlock []byte) (Certificate, error) {
if
len
(
tlsCert
.
Certificate
)
==
0
{
return
cert
,
errors
.
New
(
"certificate is empty"
)
}
cert
.
Certificate
=
tlsCert
// Parse leaf certificate
and extract relevant metadata
// Parse leaf certificate
, extract relevant metadata, and staple OCSP
leaf
,
err
:=
x509
.
ParseCertificate
(
tlsCert
.
Certificate
[
0
])
if
err
!=
nil
{
return
cert
,
err
}
err
=
fillCertFromLeaf
(
&
cert
,
leaf
)
if
err
!=
nil
{
return
cert
,
err
}
err
=
stapleOCSP
(
&
cert
,
certPEMBlock
)
if
err
!=
nil
{
log
.
Printf
(
"[WARNING] Stapling OCSP: %v"
,
err
)
}
return
cert
,
nil
}
// fillCertFromLeaf populates cert.Names and cert.NotAfter
// using data in leaf.
func
fillCertFromLeaf
(
cert
*
Certificate
,
leaf
*
x509
.
Certificate
)
error
{
if
leaf
.
Subject
.
CommonName
!=
""
{
cert
.
Names
=
[]
string
{
strings
.
ToLower
(
leaf
.
Subject
.
CommonName
)}
}
...
...
@@ -181,15 +197,21 @@ func makeCertificate(certPEMBlock, keyPEMBlock []byte) (Certificate, error) {
cert
.
Names
=
append
(
cert
.
Names
,
strings
.
ToLower
(
name
))
}
}
cert
.
NotAfter
=
leaf
.
NotAfter
cert
.
Certificate
=
tlsCert
err
=
stapleOCSP
(
&
cert
,
certPEMBlock
)
if
err
!=
nil
{
log
.
Printf
(
"[WARNING] Stapling OCSP: %v"
,
err
)
for
_
,
ip
:=
range
leaf
.
IPAddresses
{
if
ipStr
:=
ip
.
String
();
ipStr
!=
leaf
.
Subject
.
CommonName
{
cert
.
Names
=
append
(
cert
.
Names
,
strings
.
ToLower
(
ipStr
))
}
}
return
cert
,
nil
for
_
,
email
:=
range
leaf
.
EmailAddresses
{
if
email
!=
leaf
.
Subject
.
CommonName
{
cert
.
Names
=
append
(
cert
.
Names
,
strings
.
ToLower
(
email
))
}
}
if
len
(
cert
.
Names
)
==
0
{
return
errors
.
New
(
"certificate has no names"
)
}
cert
.
NotAfter
=
leaf
.
NotAfter
return
nil
}
// cacheCertificate adds cert to the in-memory cache. If the cache is
...
...
caddytls/crypto.go
View file @
c75ee000
...
...
@@ -89,7 +89,11 @@ func stapleOCSP(cert *Certificate, pemBundle []byte) error {
// First try to load OCSP staple from storage and see if
// we can still use it.
// TODO: Use Storage interface instead of disk directly
ocspFileName
:=
cert
.
Names
[
0
]
+
"-"
+
fastHash
(
pemBundle
)
var
ocspFileNamePrefix
string
if
len
(
cert
.
Names
)
>
0
{
ocspFileNamePrefix
=
cert
.
Names
[
0
]
+
"-"
}
ocspFileName
:=
ocspFileNamePrefix
+
fastHash
(
pemBundle
)
ocspCachePath
:=
filepath
.
Join
(
ocspFolder
,
ocspFileName
)
cachedOCSP
,
err
:=
ioutil
.
ReadFile
(
ocspCachePath
)
if
err
==
nil
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment