Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
d526590c
Commit
d526590c
authored
3 years ago
by
Tim van Dijen
Browse files
Options
Downloads
Patches
Plain Diff
Rewrite MD Signer using symfony/filesystem
parent
0c19bb3e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/SimpleSAML/Metadata/Signer.php
+27
-15
27 additions, 15 deletions
lib/SimpleSAML/Metadata/Signer.php
with
27 additions
and
15 deletions
lib/SimpleSAML/Metadata/Signer.php
+
27
−
15
View file @
d526590c
...
...
@@ -4,17 +4,26 @@ declare(strict_types=1);
namespace
SimpleSAML\Metadata
;
use
Exception
;
use
RobRichards\XMLSecLibs\XMLSecurityKey
;
use
RobRichards\XMLSecLibs\XMLSecurityDSig
;
use
SAML2\DOMDocumentFactory
;
use
SimpleSAML\Configuration
;
use
SimpleSAML\Error
;
use
SimpleSAML\Utils
;
use
Symfony\Component\Filesystem\Filesystem
;
use
Symfony\Component\HttpFoundation\File\File
;
use
function
array_key_exists
;
use
function
hash
;
use
function
in_array
;
use
function
is_bool
;
use
function
is_string
;
/**
* This class implements a helper function for signing of metadata.
*
* @package
S
imple
SAML
php
* @package
s
imple
samlphp/simplesaml
php
*/
class
Signer
...
...
@@ -41,7 +50,7 @@ class Signer
!
array_key_exists
(
'metadata.sign.privatekey'
,
$entityMetadata
)
||
!
array_key_exists
(
'metadata.sign.certificate'
,
$entityMetadata
)
)
{
throw
new
\
Exception
(
throw
new
Exception
(
'Missing either the "metadata.sign.privatekey" or the'
.
' "metadata.sign.certificate" configuration option in the metadata for'
.
' the '
.
$type
.
' "'
.
$entityMetadata
[
'entityid'
]
.
'". If one of'
.
...
...
@@ -66,7 +75,7 @@ class Signer
$certificate
=
$config
->
getOptionalString
(
'metadata.sign.certificate'
,
null
);
if
(
$privatekey
!==
null
||
$certificate
!==
null
)
{
if
(
$privatekey
===
null
||
$certificate
===
null
)
{
throw
new
\
Exception
(
throw
new
Exception
(
'Missing either the "metadata.sign.privatekey" or the'
.
' "metadata.sign.certificate" configuration option in the global'
.
' configuration. If one of these options is specified, then the other'
.
...
...
@@ -92,7 +101,7 @@ class Signer
!
array_key_exists
(
'privatekey'
,
$entityMetadata
)
||
!
array_key_exists
(
'certificate'
,
$entityMetadata
)
)
{
throw
new
\
Exception
(
throw
new
Exception
(
'Both the "privatekey" and the "certificate" option must'
.
' be set in the metadata for the '
.
$type
.
' "'
.
$entityMetadata
[
'entityid'
]
.
'" before it is possible to sign metadata'
.
...
...
@@ -112,7 +121,7 @@ class Signer
return
$ret
;
}
throw
new
\
Exception
(
throw
new
Exception
(
'Could not find what key & certificate should be used to sign the metadata'
.
' for the '
.
$type
.
' "'
.
$entityMetadata
[
'entityid'
]
.
'".'
);
...
...
@@ -134,7 +143,7 @@ class Signer
// first check the metadata for the entity
if
(
array_key_exists
(
'metadata.sign.enable'
,
$entityMetadata
))
{
if
(
!
is_bool
(
$entityMetadata
[
'metadata.sign.enable'
]))
{
throw
new
\
Exception
(
throw
new
Exception
(
'Invalid value for the "metadata.sign.enable" configuration option for'
.
' the '
.
$type
.
' "'
.
$entityMetadata
[
'entityid'
]
.
'". This option'
.
' should be a boolean.'
...
...
@@ -237,27 +246,30 @@ class Signer
$keyCertFiles
=
self
::
findKeyCert
(
$config
,
$entityMetadata
,
$type
);
$keyFile
=
$configUtils
->
getCertPath
(
$keyCertFiles
[
'privatekey'
]);
if
(
!
file_exists
(
$keyFile
))
{
throw
new
\Exception
(
$fileSystem
=
new
Filesystem
();
if
(
!
$fileSystem
->
exists
(
$keyFile
))
{
throw
new
Exception
(
'Could not find private key file ['
.
$keyFile
.
'], which is needed to sign the metadata'
);
}
$keyData
=
file_get_contents
(
$keyFile
);
$key
=
new
File
(
$keyFile
);
$keyData
=
$key
->
getContent
();
$certFile
=
$configUtils
->
getCertPath
(
$keyCertFiles
[
'certificate'
]);
if
(
!
file_exists
(
$certFile
))
{
throw
new
\Exception
(
$cert
=
new
File
(
$certFile
);
if
(
!
$fileSystem
->
exists
(
$certFile
))
{
throw
new
Exception
(
'Could not find certificate file ['
.
$certFile
.
'], which is needed to sign the metadata'
);
}
$certData
=
file_get_contents
(
$certFile
);
$certData
=
$cert
->
getContent
();
// convert the metadata to a DOM tree
try
{
$xml
=
DOMDocumentFactory
::
fromString
(
$metadataString
);
}
catch
(
\
Exception
$e
)
{
throw
new
\
Exception
(
'Error parsing self-generated metadata.'
);
}
catch
(
Exception
$e
)
{
throw
new
Exception
(
'Error parsing self-generated metadata.'
);
}
$signature_cf
=
self
::
getMetadataSigningAlgorithm
(
$config
,
$entityMetadata
,
$type
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment