7 * This source file is subject to the new BSD license that is bundled
8 * with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
16 * @package Zend_InfoCard
17 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
18 * @license http://framework.zend.com/license/new-bsd New BSD License
23 * Zend_InfoCard_Xml_EncryptedData
25 require_once 'Zend/InfoCard/Xml/EncryptedData.php';
28 * Zend_InfoCard_Xml_Assertion
30 require_once 'Zend/InfoCard/Xml/Assertion.php';
33 * Zend_InfoCard_Cipher
35 require_once 'Zend/InfoCard/Cipher.php';
38 * Zend_InfoCard_Xml_Security
40 require_once 'Zend/InfoCard/Xml/Security.php';
43 * Zend_InfoCard_Adapter_Interface
45 require_once 'Zend/InfoCard/Adapter/Interface.php';
48 * Zend_InfoCard_Claims
50 require_once 'Zend/InfoCard/Claims.php';
54 * @package Zend_InfoCard
55 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
56 * @license http://framework.zend.com/license/new-bsd New BSD License
61 * URI for XML Digital Signature SHA1 Digests
63 const DIGEST_SHA1
= 'http://www.w3.org/2000/09/xmldsig#sha1';
66 * An array of certificate pair files and optional passwords for them to search
67 * when trying to determine which certificate was used to encrypt the transient key
74 * The instance to use to decrypt public-key encrypted data
76 * @var Zend_InfoCard_Cipher_Pki_Interface
78 protected $_pkiCipherObj;
81 * The instance to use to decrypt symmetric encrypted data
83 * @var Zend_InfoCard_Cipher_Symmetric_Interface
85 protected $_symCipherObj;
88 * The InfoCard Adapter to use for callbacks into the application using the component
89 * such as when storing assertions, etc.
91 * @var Zend_InfoCard_Adapter_Interface
97 * InfoCard Constructor
99 * @throws Zend_InfoCard_Exception
101 public function __construct()
103 $this->_keyPairs
= array();
105 if(!extension_loaded('mcrypt')) {
106 require_once 'Zend/InfoCard/Exception.php';
107 throw new Zend_InfoCard_Exception("Use of the Zend_InfoCard component requires the mcrypt extension to be enabled in PHP");
110 if(!extension_loaded('openssl')) {
111 require_once 'Zend/InfoCard/Exception.php';
112 throw new Zend_InfoCard_Exception("Use of the Zend_InfoCard component requires the openssl extension to be enabled in PHP");
117 * Sets the adapter uesd for callbacks into the application using the component, used
118 * when doing things such as storing / retrieving assertions, etc.
120 * @param Zend_InfoCard_Adapter_Interface $a The Adapter instance
121 * @return Zend_InfoCard The instnace
123 public function setAdapter(Zend_InfoCard_Adapter_Interface
$a)
125 $this->_adapter
= $a;
130 * Retrieves the adapter used for callbacks into the application using the component.
131 * If no adapter was set then an instance of Zend_InfoCard_Adapter_Default is used
133 * @return Zend_InfoCard_Adapter_Interface The Adapter instance
135 public function getAdapter()
137 if($this->_adapter
=== null) {
138 require_once 'Zend/InfoCard/Adapter/Default.php';
139 $this->setAdapter(new Zend_InfoCard_Adapter_Default());
142 return $this->_adapter
;
146 * Gets the Public Key Cipher object used in this instance
148 * @return Zend_InfoCard_Cipher_Pki_Interface
150 public function getPkiCipherObject()
152 return $this->_pkiCipherObj
;
156 * Sets the Public Key Cipher Object used in this instance
158 * @param Zend_InfoCard_Cipher_Pki_Interface $cipherObj
159 * @return Zend_InfoCard
161 public function setPkiCipherObject(Zend_InfoCard_Cipher_Pki_Interface
$cipherObj)
163 $this->_pkiCipherObj
= $cipherObj;
168 * Get the Symmetric Cipher Object used in this instance
170 * @return Zend_InfoCard_Cipher_Symmetric_Interface
172 public function getSymCipherObject()
174 return $this->_symCipherObj
;
178 * Sets the Symmetric Cipher Object used in this instance
180 * @param Zend_InfoCard_Cipher_Symmetric_Interface $cipherObj
181 * @return Zend_InfoCard
183 public function setSymCipherObject($cipherObj)
185 $this->_symCipherObj
= $cipherObj;
190 * Remove a Certificate Pair by Key ID from the search list
192 * @throws Zend_InfoCard_Exception
193 * @param string $key_id The Certificate Key ID returned from adding the certificate pair
194 * @return Zend_InfoCard
196 public function removeCertificatePair($key_id)
199 if(!key_exists($key_id, $this->_keyPairs
)) {
200 require_once 'Zend/InfoCard/Exception.php';
201 throw new Zend_InfoCard_Exception("Attempted to remove unknown key id: $key_id");
204 unset($this->_keyPairs
[$key_id]);
209 * Add a Certificate Pair to the list of certificates searched by the component
211 * @throws Zend_InfoCard_Exception
212 * @param string $private_key_file The path to the private key file for the pair
213 * @param string $public_key_file The path to the certificate / public key for the pair
214 * @param string $type (optional) The URI for the type of key pair this is (default RSA with OAEP padding)
215 * @param string $password (optional) The password for the private key file if necessary
216 * @return string A key ID representing this key pair in the component
218 public function addCertificatePair($private_key_file, $public_key_file, $type = Zend_InfoCard_Cipher
::ENC_RSA_OAEP_MGF1P
, $password = null)
220 if(!file_exists($private_key_file) ||
221 !file_exists($public_key_file)) {
222 require_once 'Zend/InfoCard/Exception.php';
223 throw new Zend_InfoCard_Exception("Could not locate the public and private certificate pair files: $private_key_file, $public_key_file");
226 if(!is_readable($private_key_file) ||
227 !is_readable($public_key_file)) {
228 require_once 'Zend/InfoCard/Exception.php';
229 throw new Zend_InfoCard_Exception("Could not read the public and private certificate pair files (check permissions): $private_key_file, $public_key_file");
232 $key_id = md5($private_key_file.$public_key_file);
234 if(key_exists($key_id, $this->_keyPairs
)) {
235 require_once 'Zend/InfoCard/Exception.php';
236 throw new Zend_InfoCard_Exception("Attempted to add previously existing certificate pair: $private_key_file, $public_key_file");
240 case Zend_InfoCard_Cipher
::ENC_RSA
:
241 case Zend_InfoCard_Cipher
::ENC_RSA_OAEP_MGF1P
:
242 $this->_keyPairs
[$key_id] = array('private' => $private_key_file,
243 'public' => $public_key_file,
244 'type_uri' => $type);
246 if($password !== null) {
247 $this->_keyPairs
[$key_id]['password'] = $password;
249 $this->_keyPairs
[$key_id]['password'] = null;
255 require_once 'Zend/InfoCard/Exception.php';
256 throw new Zend_InfoCard_Exception("Invalid Certificate Pair Type specified: $type");
261 * Return a Certificate Pair from a key ID
263 * @throws Zend_InfoCard_Exception
264 * @param string $key_id The Key ID of the certificate pair in the component
265 * @return array An array containing the path to the private/public key files,
266 * the type URI and the password if provided
268 public function getCertificatePair($key_id)
270 if(key_exists($key_id, $this->_keyPairs
)) {
271 return $this->_keyPairs
[$key_id];
274 require_once 'Zend/InfoCard/Exception.php';
275 throw new Zend_InfoCard_Exception("Invalid Certificate Pair ID provided: $key_id");
279 * Retrieve the digest of a given public key / certificate using the provided digest
282 * @throws Zend_InfoCard_Exception
283 * @param string $key_id The certificate key id in the component
284 * @param string $digestMethod The URI of the digest method to use (default SHA1)
285 * @return string The digest value in binary format
287 protected function _getPublicKeyDigest($key_id, $digestMethod = self
::DIGEST_SHA1
)
289 $certificatePair = $this->getCertificatePair($key_id);
291 $temp = file($certificatePair['public']);
292 unset($temp[count($temp)-1]);
294 $certificateData = base64_decode(implode("\n", $temp));
296 switch($digestMethod) {
297 case self
::DIGEST_SHA1
:
298 $digest_retval = sha1($certificateData, true);
301 require_once 'Zend/InfoCard/Exception.php';
302 throw new Zend_InfoCard_Exception("Invalid Digest Type Provided: $digestMethod");
305 return $digest_retval;
309 * Find a certificate pair based on a digest of its public key / certificate file
311 * @param string $digest The digest value of the public key wanted in binary form
312 * @param string $digestMethod The URI of the digest method used to calculate the digest
313 * @return mixed The Key ID of the matching certificate pair or false if not found
315 protected function _findCertifiatePairByDigest($digest, $digestMethod = self
::DIGEST_SHA1
)
318 foreach($this->_keyPairs
as $key_id => $certificate_data) {
320 $cert_digest = $this->_getPublicKeyDigest($key_id, $digestMethod);
322 if($cert_digest == $digest) {
331 * Extracts the Signed Token from an EncryptedData block
333 * @throws Zend_InfoCard_Exception
334 * @param string $strXmlToken The EncryptedData XML block
335 * @return string The XML of the Signed Token inside of the EncryptedData block
337 protected function _extractSignedToken($strXmlToken)
339 $encryptedData = Zend_InfoCard_Xml_EncryptedData
::getInstance($strXmlToken);
341 // Determine the Encryption Method used to encrypt the token
343 switch($encryptedData->getEncryptionMethod()) {
344 case Zend_InfoCard_Cipher
::ENC_AES128CBC
:
345 case Zend_InfoCard_Cipher
::ENC_AES256CBC
:
348 require_once 'Zend/InfoCard/Exception.php';
349 throw new Zend_InfoCard_Exception("Unknown Encryption Method used in the secure token");
352 // Figure out the Key we are using to decrypt the token
354 $keyinfo = $encryptedData->getKeyInfo();
356 if(!($keyinfo instanceof Zend_InfoCard_Xml_KeyInfo_XmlDSig
)) {
357 require_once 'Zend/InfoCard/Exception.php';
358 throw new Zend_InfoCard_Exception("Expected a XML digital signature KeyInfo, but was not found");
362 $encryptedKey = $keyinfo->getEncryptedKey();
364 switch($encryptedKey->getEncryptionMethod()) {
365 case Zend_InfoCard_Cipher
::ENC_RSA
:
366 case Zend_InfoCard_Cipher
::ENC_RSA_OAEP_MGF1P
:
369 require_once 'Zend/InfoCard/Exception.php';
370 throw new Zend_InfoCard_Exception("Unknown Key Encryption Method used in secure token");
373 $securityTokenRef = $encryptedKey->getKeyInfo()->getSecurityTokenReference();
375 $key_id = $this->_findCertifiatePairByDigest($securityTokenRef->getKeyReference());
378 require_once 'Zend/InfoCard/Exception.php';
379 throw new Zend_InfoCard_Exception("Unable to find key pair used to encrypt symmetric InfoCard Key");
382 $certificate_pair = $this->getCertificatePair($key_id);
386 if($certificate_pair['type_uri'] != $encryptedKey->getEncryptionMethod()) {
387 require_once 'Zend/InfoCard/Exception.php';
388 throw new Zend_InfoCard_Exception("Certificate Pair which matches digest is not of same algorithm type as document, check addCertificate()");
391 $PKcipher = Zend_InfoCard_Cipher
::getInstanceByURI($encryptedKey->getEncryptionMethod());
393 $base64DecodeSupportsStrictParam = version_compare(PHP_VERSION
, '5.2.0', '>=');
395 if ($base64DecodeSupportsStrictParam) {
396 $keyCipherValueBase64Decoded = base64_decode($encryptedKey->getCipherValue(), true);
398 $keyCipherValueBase64Decoded = base64_decode($encryptedKey->getCipherValue());
401 $symmetricKey = $PKcipher->decrypt(
402 $keyCipherValueBase64Decoded,
403 file_get_contents($certificate_pair['private']),
404 $certificate_pair['password']
407 $symCipher = Zend_InfoCard_Cipher
::getInstanceByURI($encryptedData->getEncryptionMethod());
409 if ($base64DecodeSupportsStrictParam) {
410 $dataCipherValueBase64Decoded = base64_decode($encryptedData->getCipherValue(), true);
412 $dataCipherValueBase64Decoded = base64_decode($encryptedData->getCipherValue());
415 $signedToken = $symCipher->decrypt($dataCipherValueBase64Decoded, $symmetricKey);
421 * Process an input Infomation Card EncryptedData block sent from the client,
422 * validate it, and return the claims contained within it on success or an error message on error
424 * @param string $strXmlToken The XML token sent to the server from the client
425 * @return Zend_Infocard_Claims The Claims object containing the claims, or any errors which occurred
427 public function process($strXmlToken)
430 $retval = new Zend_InfoCard_Claims();
432 require_once 'Zend/InfoCard/Exception.php';
434 $signedAssertionsXml = $this->_extractSignedToken($strXmlToken);
435 } catch(Zend_InfoCard_Exception
$e) {
436 $retval->setError('Failed to extract assertion document');
437 $retval->setCode(Zend_InfoCard_Claims
::RESULT_PROCESSING_FAILURE
);
442 $assertions = Zend_InfoCard_Xml_Assertion
::getInstance($signedAssertionsXml);
443 } catch(Zend_InfoCard_Exception
$e) {
444 $retval->setError('Failure processing assertion document');
445 $retval->setCode(Zend_InfoCard_Claims
::RESULT_PROCESSING_FAILURE
);
449 if(!($assertions instanceof Zend_InfoCard_Xml_Assertion_Interface
)) {
450 throw new Zend_InfoCard_Exception("Invalid Assertion Object returned");
453 if(!($reference_id = Zend_InfoCard_Xml_Security
::validateXMLSignature($assertions->asXML()))) {
454 $retval->setError("Failure Validating the Signature of the assertion document");
455 $retval->setCode(Zend_InfoCard_Claims
::RESULT_VALIDATION_FAILURE
);
459 // The reference id should be locally scoped as far as I know
460 if($reference_id[0] == '#') {
461 $reference_id = substr($reference_id, 1);
463 $retval->setError("Reference of document signature does not reference the local document");
464 $retval->setCode(Zend_InfoCard_Claims
::RESULT_VALIDATION_FAILURE
);
468 // Make sure the signature is in reference to the same document as the assertions
469 if($reference_id != $assertions->getAssertionID()) {
470 $retval->setError("Reference of document signature does not reference the local document");
471 $retval->setCode(Zend_InfoCard_Claims
::RESULT_VALIDATION_FAILURE
);
474 // Validate we haven't seen this before and the conditions are acceptable
475 $conditions = $this->getAdapter()->retrieveAssertion($assertions->getAssertionURI(), $assertions->getAssertionID());
477 if($conditions === false) {
478 $conditions = $assertions->getConditions();
482 if(is_array($condition_error = $assertions->validateConditions($conditions))) {
483 $retval->setError("Conditions of assertion document are not met: {$condition_error[1]} ({$condition_error[0]})");
484 $retval->setCode(Zend_InfoCard_Claims
::RESULT_VALIDATION_FAILURE
);
487 $attributes = $assertions->getAttributes();
489 $retval->setClaims($attributes);
491 if($retval->getCode() == 0) {
492 $retval->setCode(Zend_InfoCard_Claims
::RESULT_SUCCESS
);