-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormalise.php
More file actions
208 lines (194 loc) · 7.51 KB
/
Copy pathnormalise.php
File metadata and controls
208 lines (194 loc) · 7.51 KB
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
<?php
/**
* metadata-validator normalizer
*
* This tool can be run either on the command line or via a POST. It
* takes well-formed SAML metadata and returns it with namespaces
* prefixed on all elements
*
* @author Guy Halse http://orcid.org/0000-0002-9388-8592
* @copyright Copyright (c) 2016, Tertiary Education and Research Network of South Africa
* @license https://github.com/tenet-ac-za/metadata-validator/blob/master/LICENSE MIT License
*/
declare(strict_types=1);
/** @var array $namespaces SAML namespaces lookup table */
$namespaces = [
'urn:oasis:names:tc:SAML:2.0:protocol' => 'samlp',
'urn:oasis:names:tc:SAML:2.0:assertion' => 'saml',
'urn:mace:shibboleth:metadata:1.0' => 'shibmd',
'urn:oasis:names:tc:SAML:2.0:metadata' => 'md',
'urn:oasis:names:tc:SAML:metadata:rpi' => 'mdrpi',
'urn:oasis:names:tc:SAML:metadata:ui' => 'mdui',
'urn:oasis:names:tc:SAML:metadata:attribute' => 'mdattr',
'urn:oasis:names:tc:SAML:profiles:SSO:idp-discovery-protocol' => 'idpdisc',
'urn:oasis:names:tc:SAML:profiles:SSO:request-init' => 'init',
'http://www.w3.org/2001/XMLSchema-instance' => 'xsi',
'http://www.w3.org/2001/XMLSchema' => 'xs',
'http://www.w3.org/1999/XSL/Transform' => 'xsl',
'http://www.w3.org/XML/1998/namespace' => 'xml',
'http://schemas.xmlsoap.org/soap/envelope/' => 'SOAP-ENV',
'http://www.w3.org/2000/09/xmldsig#' => 'ds',
'http://www.w3.org/2001/04/xmlenc#' => 'xenc',
'urn:oasis:names:tc:SAML:metadata:algsupport' => 'algsupport',
'http://ukfederation.org.uk/2006/11/label' => 'ukfedlabel',
'http://sdss.ac.uk/2006/06/WAYF' => 'wayf',
'http://refeds.org/metadata' => 'remd',
];
/**
* Sort XML namespaces alphabetically with the unqualified space first
* @param string $a
* @param string $b
* @return int
*/
function nssort($a, $b)
{
if (substr($a, 0, 6) == 'xmlns=') {
return 0;
} elseif (substr($b, 0, 6) == 'xmlns=') {
return 1;
} else {
return strcmp($a, $b);
}
}
if (substr(PHP_SAPI, 0, 3) === 'cli' && ! defined('PHPUNIT_COMPOSER_INSTALL') && ! defined('__PHPUNIT_PHAR__')) {
if ($argc > 1) {
$xml = file_get_contents($argv[1]);
} else {
$xml = file_get_contents('php://stdin');
}
} else {
$xml = file_get_contents('php://input');
header("Content-Type: text/plain");
}
if (empty($xml)) {
print "No input given\n";
if (! defined('PHPUNIT_COMPOSER_INSTALL') && ! defined('__PHPUNIT_PHAR__')) {
exit(1); /* can't unit test this */
} else {
throw new RuntimeException("exit()");
}
}
libxml_clear_errors();
$doc = new DOMDocument();
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
$options = LIBXML_NONET | LIBXML_PARSEHUGE;
/* LIBXML_NO_XXE available from PHP 8.4 */
if (defined('LIBXML_NO_XXE')) {
$options |= LIBXML_NO_XXE;
}
if (defined('LIBXML_COMPACT')) {
$options |= LIBXML_COMPACT;
}
if ($doc->loadXML($xml, $options) !== true) {
print "Error loading XML: " . libxml_get_last_error() . "\n";
if (! defined('PHPUNIT_COMPOSER_INSTALL') && ! defined('__PHPUNIT_PHAR__')) {
exit(1); /* can't unit test this */
} else {
throw new RuntimeException("exit()");
}
}
/* normalise with a variant of UKAF's rules */
libxml_clear_errors();
$xslt = new XSLTProcessor();
$normalise = isset($_GET['prefix']) ? 'ns_norm_withmd.xsl' : 'ns_norm.xsl';
$xslt->importStylesheet(new SimpleXMLElement(__DIR__ . '/rules/' . $normalise, 0, true));
$doc = $xslt->transformToDoc($doc);
/* get some XPath */
libxml_clear_errors();
$xp = new DomXPath($doc);
foreach ($namespaces as $full => $prefix) {
$xp->registerNamespace($prefix, $full);
/* remove namespaces that are not in use and are not needed for registration parameters */
if (
!in_array($prefix, ['mdrpi', 'mdattr', 'saml', 'remd', 'mdui']) &&
$xp->query('//' . $prefix . ':*')->length === 0
) {
$doc->documentElement->removeAttributeNS($full, $prefix);
}
}
/* merge like certificates in the most simple cases */
foreach (['IDPSSODescriptor', 'SPSSODescriptor', 'AASSODescriptor'] as $sso) {
$e = $xp->query("//md:$sso");
if ($e->length) {
$signing = $xp->query(
"//md:KeyDescriptor[@use='signing']/ds:KeyInfo/ds:X509Data/ds:X509Certificate",
$e->item(0),
);
$encryption = $xp->query(
"//md:KeyDescriptor[@use='encryption']/ds:KeyInfo/ds:X509Data/ds:X509Certificate",
$e->item(0),
);
$unspecified = $xp->query(
"//md:KeyDescriptor[not(@use)]/ds:KeyInfo/ds:X509Data/ds:X509Certificate",
$e->item(0),
);
if (
$signing->length == 1 &&
$encryption->length == 1 &&
$signing->item(0)->nodeValue == $encryption->item(0)->nodeValue &&
($unspecified->length == 0 ||
($unspecified->length == 1 && $signing->item(0)->nodeValue == $unspecified->item(0)->nodeValue))
) {
$encryption->item(0)->parentNode->parentNode->parentNode->parentNode->removeChild(
$encryption->item(0)->parentNode->parentNode->parentNode
);
if ($unspecified->length == 1) {
$signing->item(0)->parentNode->parentNode->parentNode->parentNode->removeChild(
$signing->item(0)->parentNode->parentNode->parentNode
);
} else {
/** @var DOMElement */
$keyUse = $signing->item(0)->parentNode->parentNode->parentNode;
$keyUse->removeAttribute('use');
}
}
/* remove any legacy ds:KeyName elements */
$keyname = $xp->query("//md:KeyDescriptor/ds:KeyInfo/ds:KeyName", $e->item(0));
if ($keyname->length) {
foreach ($keyname as $k) {
$k->parentNode->removeChild($k);
}
}
}
}
/* remove ADFS additions */
$roledescriptor = $xp->query("//md:EntityDescriptor/md:RoleDescriptor");
if ($roledescriptor->length) {
foreach ($roledescriptor as $e) {
$e->parentNode->removeChild($e);
}
}
$attributes = $xp->query("//md:IDPSSODescriptor/saml:Attribute");
if ($attributes->length) {
/** @var DOMElement $e */
foreach ($attributes as $e) {
if (preg_match('{http://schemas\.(xmlsoap\.org|microsoft\.com)/}i', $e->getAttribute('Name'))) {
$e->parentNode->removeChild($e);
}
}
}
/* remove any signature 'cause we've probably broken it */
$signature = $xp->query("//ds:Signature");
if ($signature->length) {
$signature->item(0)->parentNode->removeChild($signature->item(0));
}
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
$doc->normalizeDocument();
$preoutput = $doc->saveXML();
/* remove whitespace from any certificates */
$preoutput = preg_replace_callback('/<ds:X509Certificate>\s*([^<>]+)\s*<\/ds:X509Certificate>/i', function ($m) {
return '<ds:X509Certificate>' . preg_replace('/\s+/', '', $m[1]) . '</ds:X509Certificate>';
}, $preoutput);
/* normalise the EntityDescriptor in a SAFIREesque way */
preg_match('/<(?:md:)?EntityDescriptor\s+([^>]*)\s*(entityID="[^">]+")\s*([^>]*)>/i', $preoutput, $matches);
$nsout = array_filter(explode(' ', $matches[1]));
$nsout = array_merge($nsout, array_filter(explode(" ", $matches[3])));
$nsout = array_filter(array_unique($nsout), fn($v) => !preg_match('/^(?:ID|validUntil|cacheDuration)=/', $v));
usort($nsout, 'nssort');
print preg_replace(
'/<(md:)?EntityDescriptor[^>]+>/',
'<\1EntityDescriptor ' . $matches[2] . "\n " . implode("\n ", $nsout) . ">",
$preoutput,
);