Upgrade notes for SimpleSAMLphp 2.0
SimpleSAMLphp 2.0 is a major new release which has cleaned up support for a lot of things that have been marked deprecated in previous SimpleSAMLphp releases. The following changes are relevant for installers and/or developers.
Software requirements
- The minimum PHP version required is now PHP 7.4.
- Dropped support for Symfony 4 and Twig 2.
Not all modules included by default
The set of modules included in the base installation has been reduced. If you used some of the modules that were shipped with SimpleSAMLphp, you now have to manually install them using Composer. For example, to use the LDAP module:
composer require simplesamlphp/simplesamlphp-module-ldap --update-no-dev
Functional changes
-
Modules must be enabled through the
module.enable
option inconfig.php
. Modules can no longer be enabled by having a file namedenable
ordefault-enable
in the module's root directory. -
The base URL of the SimpleSAMLphp installation no longer provides an admin menu. Instead this is now at the location
<simpleSAMLphp base URL>/admin
. Theadmin
module needs to be enabled for this to work. -
SAML AuthnRequests that are signed will have their signature validated unless specifically disabled
by setting
validate.authnrequest
tofalse
. If unset (or set totrue
) signatures will be validated if present and requests not passing validation will be refused. - The default value for attrname-format was changed to 'urn:oasis:names:tc:SAML:2.0:attrname-format:uri'.
-
In the core:TargetedID authproc-filter, the
attributename
setting has been renamed toidentifyingAttribute
. Similarly, in the saml:AttributeNameID, saml:PersistentNameID and saml:SQLPersistentNameId authproc-filters, theattribute
setting has been renamed toidentifyingAttribute
for consistency with other NameID filters. -
The default encryption algorithm is set from
AES128_CBC
toAES128_GCM
. It is possible to switch back via thesharedkey_algorithm
. Note however that CBC is vulnerable to the Padding oracle attack. - All support for the Shibboleth 1.3 / SAML 1.1 protocol has been removed.
- Sessions are no longer backwards compatible with previous versions. Make sure to clear your session cache during the upgrade process. How to do this depends on your session backend.
-
EntityIDs are no longer auto-generated. Make sure to set something sensible in the array-keys in
metadata/saml20-idp-hosted.php
and for any saml:SP inconfig/authsources.php
(or to the existing entityIDs when upgrading an existing installation). If you are using a database to store metadata, make sure to replace any__DYNAMIC:<n>__
entityID's with a real value manually. Dynamic records are no longer loaded from the database.
Configuration changes
Our assets have been moved from the
www
to the
public
directory. You will have to update your webserver to reflect this change.
Quite some options have been changed or removed. We recommend to start with a fresh
template from
config/config.php.dist
and migrate the settings you require to the new
config file manually.
The date formatting when specifying a custom logging string has been changed from PHP's
deprecated
strftime()
format to PHP's
date()
format.
The format of the
NameIDPolicy
option has been changed: to omit sending the
element entirely, you can no longer specify
false
but need to set it to
an empty array (
[]
).
Configuration options that have been removed:
-
simplesaml.nameidattribute
. Use the appropriate authproc-filters instead. -
languages[priorities]
. No replacement. -
attributes.extradictionaries
. Add an attributes.po to your configured theme instead. -
admin.protectindexpage
. Replaced by the admin module which always requires login. -
base64attributes
. Obsolete functionality, individual attributes can still be en/decoded with the existing attributeencodings feature. -
database.slaves
. This is now calleddatabase.secondaries
. -
metadata.handler
. Since a long time the preferred option ismetadata.sources
.
Changes relevant for (module) developers
The following changes are relevant for those having custom developed modules, authentication processing filters, themes, or that interface with the SimpleSAMLphp development API.
-
We expect your source files to exist in the
src/
directory within your module. This used to be thelib/
directory, so you have to rename the directory and for composer-modules you have to update yourcomposer.json
file (specifically thepsr-0
andpsr-4
entries if you have them). -
We expect your module assets to exist in the
public/
directory within your module (was:www/
). - Old JSON-formatted dictionaries have been replaced by gettext / .po-files; see migration guide
- Old PHP templates have been replaced by Twig-templates; see migration guide
- The source was completely typehinted; if you have custom authsources or authproc filters, make sure you change them to reflect the method signatures of the base classes.
-
Some hooks are no longer called:
-
frontpage
: replace withconfigpage
-
htmlinject
: use a Twig template override instead. -
metadata_hosted
: no replacement
-
-
The following classes have been migrated to non-static:
-
\SimpleSAML\Utils\Arrays
-
\SimpleSAML\Utils\Attributes
-
\SimpleSAML\Utils\Auth
-
\SimpleSAML\Utils\Config
-
\SimpleSAML\Utils\Crypto
-
\SimpleSAML\Utils\EMail
-
\SimpleSAML\Utils\HTTP
-
\SimpleSAML\Utils\Net
-
\SimpleSAML\Utils\Random
-
\SimpleSAML\Utils\System
-
\SimpleSAML\Utils\Time
-
\SimpleSAML\Utils\XML
If you use any of these classes in your modules or themes, you will now have to instantiate them so that:
-
// Old style
$x = \SimpleSAML\Utils\Arrays::arrayize($someVar)
becomes:
// New style
$arrayUtils = new \SimpleSAML\Utils\Arrays();
$x = $arrayUtils->arrayize($someVar);
-
Database table schemes have been flattened. Upgrade paths are:
- Generic KVStore: 1.16+ > 2.0
- Logout store: 1.18+ > 2.0
-
Data stores have been refactored:
-
lib/SimpleSAML/Store.php
has been renamed tolib/SimpleSAML/Store/StoreFactory.php
and is now solely a Factory-class -
All store implementations now implement
\SimpleSAML\Store\StoreInterface
:-
lib/SimpleSAML/Store/SQL.php
has been renamed tolib/SimpleSAML/Store/SQLStore.php
-
lib/SimpleSAML/Store/Memcache.php
has been renamed tolib/SimpleSAML/Store/MemcacheStore.php
-
lib/SimpleSAML/Store/Redis.php
has been renamed tolib/SimpleSAML/Store/RedisStore.php
-
-
-
The following methods have had their signature changed:
-
Configuration::getValue
-
Configuration::getBoolean
-
Configuration::getString
-
Configuration::getInteger
-
Configuration::getIntegerRange
-
Configuration::getValueValidate
-
Configuration::getArray
-
Configuration::getArrayize
-
Configuration::getArrayizeString
-
Configuration::getConfigItem
-
Configuration::getLocalizedString
All of these methods no longer accept a default as their last parameter. Use their getOptional* counterparts instead.
-