Table of Contents

Pluggable Authentication

Introduction

There are lots of requirements to support extra authentication methods, and lots of patches supplied against various different releases to add an authentication method.
We need a means of adding an Authentication method that does not need to patch core functionality.
Setting up a system of plugins for authentication would be the best way to acheive this.

High Level Requirements

→ In general terms: Mantis should focus on authorisation, not on authentication. Authorization is the domain of either an internal module, or delegated away to an external Identity Provider (IdP)

  1. Support for authentication via Mantis plugins by supporting protocols that validate a user name/ password.

→ The addition of name/password is not needed, as some protocols may not use passwords for validation (but e.g. use certificates). A suggestion for a description here would be: “supporting protocols that provide a validated identity”. Mantis should not care how this validation came to be.

  1. Support for authentication methods that delegate the authentication process to another application.
    • e.g. Open ID / CAS.
  2. Support for single sign-on.
    • e.g. Windows Login, CMS integration, etc.

→ Requirement for both examples are very different: Windows login crosses the os - browser border, CMS integration doesn't. I would suggest to name both as separate requirements.

→ When authentication is delegated, Login and Logout are not the responibility of the application, but are in fact links to the pages on the IdP whare a user can logon or logoff

  1. Support for hybrid authentication.
    • For example, employees are authenticated against LDAP where customers are authenticated using Mantis standard infrastructure.
  2. Avoid sign-up when a user is authenticated but doesn't yet have a record in the DB.
    • In this case, Mantis should pull the required data from the authentication plugin.
    • For example, pull user information from LDAP when a user logs in for the first time.
  3. Prepopulate sign-up form with fields from authentication plugin (e.g.LDAP, OpenId, X.509).

→ Mantis should only store user attributes that it needs for authorisation, not for authentication. Therefor propolulation fields containing authentication data is not a good idea. This will break log-in's as the IdP providing authentication might decide to change these (e.g. change the password after 30 days)

  1. An authentication plugin should be able to mark some of the user profile information as read only.
    • For example, user name or email may be marked as read only.

→ This way you run the risk of breaking log-in again if the IdP desides to change one of the “read only” params

  1. Once a user is signed up using a protocol, this protocol should be stamped on the user record and in the future the user should only be able to login via this protocol.

→ Mantis should only care about the fact that the user is authenticated, not how this came to be.

→ Pref. this should be done by having mantis request access to mantis for the user, not by periodically syncing the user database.

→ If the above condition is met, this is no longer a problem.

  1. When a user signs on, the protocol used needs to be recorded so that reauthentication and logout use the same protocol.
    • storing this on the database may be a problem if users are sharing userids.
    • storing in a cookie would be a security concern.
  2. Once we have authenticated we should be able to use our credentials to automatically sign the user into another system (e.g. a wiki) and log them out of that system when we log out of mantis.

→ When you introduce delegated authentication, single sign-on is not the responsibility of the application. Single sign-on is the result of the fact that different applications, e.g. Mambo and Mantis share a common identity provider and are able the take note of a common authentication token, e.g. a cookie containing an authentication information. This leads to the fact that the application itself does not have controle over login and logout and does not need to care about it. It just needs to check if the delegated authentication system provides a go or no-go and act accordingly.

  1. Provide functions that can be used by cms integration.
    • e.g. when you log into a cms, one of its plugins logs you into mantis.

- seems like the domain of the cms to me.

  1. On starting mantis, if the users identity can be immediately determined, then they should be automatically logged in without seeing the login pages.
    • e.g. http or X.509 authentication.
  2. Easy Customisation of login, signup and reauthentication pages.

→ For delegated authentication, these pages are part of the idp, not of the local application. The local application redirects the user to the idp in case of an access denied

  1. Check if user exists on another system, and if not delete/disable them in mantis

→ I fear this will not work as this will require the other applications to open up that authorization db.

  1. Fetch security levels/permissions from another system to allow central administration.
  2. (Slightly off topic) What user details are help in mantis long term and are there data protection issues if users cannot remove their accounts.

Detailed Requirements

  1. The existing authentication methods (e.g. LDAP, HTTP) need refactoring to become plugins.
  2. Anonymous authentication needs to be as simple as enabling a plugin,
    • This would create the required anonymous user (if not already existing).
  3. We should be able to take credentials from other active logins and use that to automatically login (and possibly reauthenticate) the user without asking them to supply another set of credentials.
    • e.g. a cms token,http or X.509 authentication
  4. Some Authentication systems use credentials other than userid/password. These should be able to modify the login / reauthentication / signin pages by doing one of the following :-
    1. add a new fields to the existing form.
    2. add a new form to the existing page for their credentials.
    3. display a different page instead.
  5. Plugins should be able to be marked as protected, to prevent users from accidentally removing access to their site.
  6. Plugins should have a means of specifying their priority.
    1. first run methods that require fetching no extra resources (e.g. Anonymous user or X.509)
    2. then those which require database accesses
    3. finally those that require fetching an external resource (e.g. LDAP, CAS).
  7. Plugins could be allowed to deny a request authorised by an earlier executing plugin.
  8. Plugins may need to fill in missing credentials for later plugins to check against
    • e.g OpenId plugin to supply username that the url relates to
    • http plugin to supply username (and password ?)
  9. There should be a plugin configuration page which plugins can override to add extra fields as needed.
    • Need to make sure this only affects the performance of the manage plugins page.
  10. The signup process should be able to be configured so that it does not have to send a confirmation email, as this is a problem for some sites.
  11. Basic/http authentication to get web server to display sign-in dialogue where possible.
    • Also for reauthentication.
  12. Authentication libraries, such as PEAR::Auth or Zend_Auth , should be taken into consideration

Implementation Notes

Database Changes

Configuration

Implementation Log

Other Changes

Feedback