Security User Providers

User providers are PHP classes related to Symfony Security that have two jobs:

Reload the User from the Session
At the beginning of each request (unless your firewall is stateless), Symfony loads the User object from the session. To make sure it’s not out-of-date, the user provider “refreshes it”. The Doctrine user provider, for example, queries the database for fresh data. Symfony then checks to see if the user has “changed” and de-authenticates the user if they have (see Understanding how Users are Refreshed from the Session).
Load the User for some Feature
Some features, like user impersonation, Remember Me and many of the built-in authentication providers, use the user provider to load a User object via its “username” (or email, or whatever field you want).

Symfony comes with several built-in user providers:

The built-in user providers cover all the needs for most applications, but you can also create your own custom user provider.

Entity User Provider

This is the most common user provider for traditional web applications. Users are stored in a database and the user provider uses Doctrine to retrieve them:

  • YAML
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    # config/packages/security.yaml
        # ...
    
        providers:
            users:
                entity:
                    # the class of the entity that represents users
                    class: 'App\Entity\User'
                    # the property to query by - e.g. username, email, etc
                    property: 'username'
                    # optional: if you're using multiple Doctrine entity
                    # managers, this option defines which one to use
                    # manager_name: 'customer'
    
        # ...
    
  • XML
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    <!-- config/packages/security.xml -->
    <?xml version="1.0" encoding="UTF-8"?>
    <srv:container xmlns="http://symfony.com/schema/dic/security"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:srv="http://symfony.com/schema/dic/services"
        xsi:schemaLocation="http://symfony.com/schema/dic/services
            https://symfony.com/schema/dic/services/services-1.0.xsd">
    
        <config>
            <provider name="users">
                <!-- 'class' is the entity that represents users and 'property'
                     is the entity property to query by - e.g. username, email, etc -->
                <entity class="App\Entity\User" property="username"/>
    
                <!-- optional: if you're using multiple Doctrine entity
                     managers, this option defines which one to use -->
                <!-- <entity class="App\Entity\User" property="username"
                             manager-name="customer"/> -->
            </provider>
    
            <!-- ... -->
        </config>
    </srv:container>
    
  • PHP
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    // config/packages/security.php
    use App\Entity\User;
    
    $container->loadFromExtension('security', [
        'providers' => [
            'users' => [
                'entity' => [
                    // the class of the entity that represents users
                    'class'    => User::class,
                    // the property to query by - e.g. username, email, etc
                    'property' => 'username',
                    // optional: if you're using multiple Doctrine entity
                    // managers, this option defines which one to use
                    // 'manager_name' => 'customer',
                ],
            ],
        ],
    
        // ...
    ]);
    

The providers section creates a “user provider” called users that knows how to query from your App\Entity\User entity by the username property. You can choose any name for the user provider, but it’s recommended to pick a descriptive name because this will be later used in the firewall configuration.

Using a Custom Query to Load the User

The entity provider can only query from one specific field, specified by the property config key. If you want a bit more control over this - e.g. you want to find a user by email or username, you can do that by making your UserRepository implement the UserLoaderInterface. This interface only requires one method: loadUserByUsername($username):

// src/Repository/UserRepository.php
namespace App\Repository;

use Doctrine\ORM\EntityRepository;
use Symfony\Bridge\Doctrine\Security\User\UserLoaderInterface;

class UserRepository extends EntityRepository implements UserLoaderInterface
{
    // ...

    public function loadUserByUsername($usernameOrEmail)
    {
        return $this->createQuery(
                'SELECT u
                FROM App\Entity\User u
                WHERE u.username = :query
                OR u.email = :query'
            )
            ->setParameter('query', $usernameOrEmail)
            ->getQuery()
            ->getOneOrNullResult();
    }
}

To finish this, remove the property key from the user provider in security.yaml:

  • YAML
    1
    2
    3
    4
    5
    6
    7
    8
    # config/packages/security.yaml
    security:
        # ...
    
        providers:
            users:
                entity:
                    class: App\Entity\User
    
  • XML
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    <!-- config/packages/security.xml -->
    <?xml version="1.0" encoding="UTF-8"?>
    <srv:container xmlns="http://symfony.com/schema/dic/security"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:srv="http://symfony.com/schema/dic/services"
        xsi:schemaLocation="http://symfony.com/schema/dic/services
            https://symfony.com/schema/dic/services/services-1.0.xsd
            http://symfony.com/schema/dic/security
            https://symfony.com/schema/dic/security/security-1.0.xsd">
    
        <config>
            <!-- ... -->
    
            <provider name="users">
                <entity class="App\Entity\User"/>
            </provider>
        </config>
    </srv:container>
    
  • PHP
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    // config/packages/security.php
    use App\Entity\User;
    
    $container->loadFromExtension('security', [
        // ...
    
        'providers' => [
            'users' => [
                'entity' => [
                    'class' => User::class,
                ],
            ],
        ],
    ]);
    

This tells Symfony to not query automatically for the User. Instead, when needed (e.g. because user impersonation, Remember Me, or some other security feature is activated), the loadUserByUsername() method on UserRepository will be called.

Memory User Provider

It’s not recommended to use this provider in real applications because of its limitations and how difficult it is to manage users. It may be useful in application prototypes and for limited applications that don’t store users in databases.

This user provider stores all user information in a configuration file, including their passwords. That’s why the first step is to configure how these users will encode their passwords:

  • YAML
    1
    2
    3
    4
    5
    6
    # config/packages/security.yaml
    security:
        # ...
        encoders:
            # this internal class is used by Symfony to represent in-memory users
            Symfony\Component\Security\Core\User\User: 'auto'
    
  • XML
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    <!-- config/packages/security.xml -->
    <?xml version="1.0" encoding="UTF-8"?>
    <srv:container xmlns="http://symfony.com/schema/dic/security"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:srv="http://symfony.com/schema/dic/services"
        xsi:schemaLocation="http://symfony.com/schema/dic/services
            https://symfony.com/schema/dic/services/services-1.0.xsd
            http://symfony.com/schema/dic/security
            https://symfony.com/schema/dic/security/security-1.0.xsd"
    >
        <config>
            <!-- ... -->
    
            <!-- this internal class is used by Symfony to represent in-memory users -->
            <encoder class="Symfony\Component\Security\Core\User\User"
                algorithm="auto"
            />
        </config>
    </srv:container>
    
  • PHP
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    // config/packages/security.php
    
    // this internal class is used by Symfony to represent in-memory users
    use Symfony\Component\Security\Core\User\User;
    
    $container->loadFromExtension('security', [
        // ...
        'encoders' => [
            User::class => [
                'algorithm' => 'auto',
            ],
        ],
    ]);
    

Then, run this command to encode the plain text passwords of your users:

1
$ php bin/console security:encode-password

Now you can configure all the user information in config/packages/security.yaml:

1
2
3
4
5
6
7
8
9
# config/packages/security.yaml
security:
    # ...
    providers:
        backend_users:
            memory:
                users:
                    john_admin: { password: '$2y$13$jxGxc ... IuqDju', roles: ['ROLE_ADMIN'] }
                    jane_admin: { password: '$2y$13$PFi1I ... rGwXCZ', roles: ['ROLE_ADMIN', 'ROLE_SUPER_ADMIN'] }

Caution

When using a memory provider, and not the auto algorithm, you have to choose an encoding without salt (i.e. bcrypt).

LDAP User Provider

This user provider requires installing certain dependencies and using some special authentication providers, so it’s explained in a separate article: Authenticating against an LDAP server.

Chain User Provider

This user provider combines two or more of the other provider types (entity, memory and ldap) to create a new user provider. The order in which providers are configured is important because Symfony will look for users starting from the first provider and will keep looking for in the other providers until the user is found:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
# config/packages/security.yaml
security:
    # ...
    providers:
        backend_users:
            memory:
                # ...

        legacy_users:
            entity:
                # ...

        users:
            entity:
                # ...

        all_users:
            chain:
                providers: ['legacy_users', 'users', 'backend']

Creating a Custom User Provider

Most applications don’t need to create a custom provider. If you store users in a database, a LDAP server or a configuration file, Symfony supports that. However, if you’re loading users from a custom location (e.g. via an API or legacy database connection), you’ll need to create a custom user provider.

First, make sure you’ve followed the Security Guide to create your User class.

If you used the make:user command to create your User class (and you answered the questions indicating that you need a custom user provider), that command will generate a nice skeleton to get you started:

// src/Security/UserProvider.php
namespace App\Security;

use Symfony\Component\Security\Core\Exception\UnsupportedUserException;
use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
use Symfony\Component\Security\Core\User\UserInterface;
use Symfony\Component\Security\Core\User\UserProviderInterface;

class UserProvider implements UserProviderInterface
{
    /**
     * Symfony calls this method if you use features like switch_user
     * or remember_me.
     *
     * If you're not using these features, you do not need to implement
     * this method.
     *
     * @return UserInterface
     *
     * @throws UsernameNotFoundException if the user is not found
     */
    public function loadUserByUsername($username)
    {
        // Load a User object from your data source or throw UsernameNotFoundException.
        // The $username argument may not actually be a username:
        // it is whatever value is being returned by the getUsername()
        // method in your User class.
        throw new \Exception('TODO: fill in loadUserByUsername() inside '.__FILE__);
    }

    /**
     * Refreshes the user after being reloaded from the session.
     *
     * When a user is logged in, at the beginning of each request, the
     * User object is loaded from the session and then this method is
     * called. Your job is to make sure the user's data is still fresh by,
     * for example, re-querying for fresh User data.
     *
     * If your firewall is "stateless: true" (for a pure API), this
     * method is not called.
     *
     * @return UserInterface
     */
    public function refreshUser(UserInterface $user)
    {
        if (!$user instanceof User) {
            throw new UnsupportedUserException(sprintf('Invalid user class "%s".', get_class($user)));
        }

        // Return a User object after making sure its data is "fresh".
        // Or throw a UsernameNotFoundException if the user no longer exists.
        throw new \Exception('TODO: fill in refreshUser() inside '.__FILE__);
    }

    /**
     * Tells Symfony to use this provider for this User class.
     */
    public function supportsClass($class)
    {
        return User::class === $class;
    }
}

Most of the work is already done! Read the comments in the code and update the TODO sections to finish the user provider. When you’re done, tell Symfony about the user provider by adding it in security.yaml:

1
2
3
4
5
6
# config/packages/security.yaml
security:
    providers:
        # the name of your user provider can be anything
        your_custom_user_provider:
            id: App\Security\UserProvider

Lastly, update the config/packages/security.yaml file to set the provider key to your_custom_user_provider in all the firewalls which will use this custom user provider.

Understanding how Users are Refreshed from the Session

At the end of every request (unless your firewall is stateless), your User object is serialized to the session. At the beginning of the next request, it’s deserialized and then passed to your user provider to “refresh” it (e.g. Doctrine queries for a fresh user).

Then, the two User objects (the original from the session and the refreshed User object) are “compared” to see if they are “equal”. By default, the core AbstractToken class compares the return values of the getPassword(), getSalt() and getUsername() methods. If any of these are different, your user will be logged out. This is a security measure to make sure that malicious users can be de-authenticated if core user data changes.

However, in some cases, this process can cause unexpected authentication problems. If you’re having problems authenticating, it could be that you are authenticating successfully, but you immediately lose authentication after the first redirect.

In that case, review the serialization logic (e.g. SerializableInterface) if you have any, to make sure that all the fields necessary are serialized.

Comparing Users Manually with EquatableInterface

Or, if you need more control over the “compare users” process, make your User class implement EquatableInterface. Then, your isEqualTo() method will be called when comparing users.

Injecting a User Provider in your Services

Symfony defines several services related to user providers:

1
2
3
4
5
6
7
$ php bin/console debug:container user.provider

  Select one of the following services to display its information:
  [0] security.user.provider.in_memory
  [1] security.user.provider.ldap
  [2] security.user.provider.chain
  ...

Most of these services are abstract and cannot be injected in your services. Instead, you must inject the normal service that Symfony creates for each of your user providers. The names of these services follow this pattern: security.user.provider.concrete.<your-provider-name>.

For example, if you are building a form login and want to inject in your LoginFormAuthenticator a user provider of type memory and called backend_users, do the following:

// src/Security/LoginFormAuthenticator.php
namespace App\Security;

use Symfony\Component\Security\Core\User\InMemoryUserProvider;
use Symfony\Component\Security\Guard\Authenticator\AbstractFormLoginAuthenticator;

class LoginFormAuthenticator extends AbstractFormLoginAuthenticator
{
    private $userProvider;

    // change the 'InMemoryUserProvider' type-hint in the constructor if
    // you are injecting a different type of user provider
    public function __construct(InMemoryUserProvider $userProvider, /* ... */)
    {
        $this->userProvider = $userProvider;
        // ...
    }
}

Then, inject the concrete service created by Symfony for the backend_users user provider:

1
2
3
4
5
6
# config/services.yaml
services:
    # ...

    App\Security\LoginFormAuthenticator:
        $userProvider: '@security.user.provider.concrete.backend_users'