Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Passwordless Linux - Passkey and External IdP support in FreeIPA

Passwordless Linux - Passkey and External IdP support in FreeIPA

The authentication landscape is changing, and a lot of work has been done in Linux authentication technologies to keep up. Learn how FreeIPA and SSSD have grown support for FIDO2 passkeys and for
authenticating users from external OAuth 2.0 identity providers. There will be demos!

Authentication is a critical aspect of host, network and organisational security. Identity management systems like FreeIPA centralise your identities and access policies, to help you meet your security and compliance requirements.

Historically and up to the present day, passwords were widely used for initial user authentication. But in the current era a healthy security posture often demands 2FA, hardware cryptographic tokens, consumption of identity assertions from third party providers, or some combination of these. Major trends in the web authentication landscape include *Passkeys*, and delegation of authentication to third-parties (sometimes called "Web SSO").

*Passkeys* is a convenient, passwordless, phishing-resistant authentication technology based on FIDO Alliance standards. It uses public key cryptography and the credential can be implemented in software or hardware.

*OAuth 2.0* is an access delegation protocol widely used on the web. You have probably seen services that offer "Log in with {popular site}". When you use these options, OAuth 2.0 (or the OpenID Connect protocol which builds upon it) are what happens behind the scenes. OAuth 2.0 also support non-web applications via the *Device authorisation grant* flow.

Recent releases of FreeIPA and its client-side companion SSSD added support for both of these authentication technologies. In this presentation I will review how these mechanisms work, and describe what had to be added or changed in FreeIPA and SSSD to support them. Attendees will learn, via practical demonstrations, how to configure their own systems and networks to use these modern, secure authentication mechanisms.

Fraser Tweedale

April 18, 2024
Tweet

More Decks by Fraser Tweedale

Other Decks in Technology

Transcript

  1. About me • 10 years at Red Hat working on

    PKI and identity management • >15 years working software engineer • Love functional programming and especially Haskell
  2. Acknowledgements • I didn't work on any of the cool

    stuff I'm demoing today • Alexander Bokovoy, Iker Pedrosa, and many others (FreeIPA / SSSD) • Ray Strode (GNOME)
  3. Outline • Why NOT passwords • Alternatives to passwords •

    FreeIPA overview • Demo • Boring technical stuff • Resources
  4. Passwords • We're all tired of passwords, aren't we? •

    Many users are not diligent (weak; reuse) • Many users are not technically proficient (what's a password manager?) • Using passwords securely imposes friction and cognitive load • Complexity and rotation policies DO NOT HELP! • Phishing risk, even for technical users
  5. Objectives • Reduce password risks (weak, reused, …) • Reduce

    phishing risks • Reduce friction for users (make it quick and easy) • Reduce frequency of explicit user authentication (single sign-on) • Through a combination of the above, improve security posture
  6. Two-factor authentication • a.k.a. 2FA, multi-factor authentication (MFA) • Password

    plus a one-time code • HOTP / TOTP / SMS / hardware token • Phishable
  7. Smart cards • Cryptographic token with (optional) PIN • Private

    key + X.509 certificate • Sign a challenge to prove identity • Phishing-resistant • Issuance, renewal and revocation complexities • USB, NFC, "SIM-esque", …
  8. Passkeys / WebAuthn • Cryptographic token with (optional) PIN •

    Optional physical presence check (touch the token) • Optional token attestation • Unique private keys bound to websites (or other RPs) • Sign a challenge to prove identity • Phishing-resistant • "Passkey" ≅ FIDO2 ≅ W3C WebAuthn + CTAP
  9. Web SSO • SAML / OAuth 2.0 / OpenID Connect

    • Use an existing account to authenticate • For public sites: offered by many popular public services (privacy concern) • For organisations: Keycloak, Red Hat SSO, many SaaS offerings • Works great for web; can work for other scenarios
  10. Workstation login - standalone • Password ✅ pam_unix • 2FA

    ✅ pam_2fa, pam_oath, pam_yubico, ... • Smartcard ✅ pam_pkcs11 • Passkey ✅ pam_u2f • Web SSO ❓
  11. Workstation login - domain member • Password ✅ pam_sss •

    2FA ✅ pam_sss • Smartcard ✅ pam_sss • Passkey ✅ pam_sss • Web SSO ✅ pam_sss
  12. FreeIPA / Red Hat Identity Management • Centralised identity management

    for Linux/UNIX environments • Authentication: Kerberos, password, 2FA, Smartcard, Passkey, OIDC IdPs • Policy: HBAC, Sudo rules, SELinux maps, PKI, … • Cross-realm trusts with Active Directory • Fedora + RHEL (server) ; most distros (client) • Public demo instance: https://www.freeipa.org/page/Demo • Ansible roles: https://github.com/freeipa/ansible-freeipa
  13. Smart card Diagram from RHEL guide ‘Configuring and managing Identity

    Management’: 8.3. Data flow when authenticating as a user with SSSD in IdM
  14. External IdP (Web SSO) From FreeIPA external IdP design document:

    https://freeipa.readthedocs.io/en/latest/designs/external-idp/external-idp.html
  15. Passkeys Diagram from RHEL guide ‘Configuring and managing Identity Management’:

    8.3. Data flow when authenticating as a user with SSSD in IdM passkey_ child
  16. Passkeys • $ ipa user-add-passkey alice --register • ipapasskey: passkey:9S87qLk8/RxYJ3skwwYduomAM+/HDtz...

    • Article: FIDO2 for centrally managed users - Fedora Magazine • FreeIPA design page (link) • SSSD design page (link)
  17. GDM - mechanism selection - UX • GNOME UX research

    and mockups (link) • SSSD design document (link) • Development builds: COPR ipedrosa/passwordles-gdm • To enable ◦ Add to /etc/sssd/sssd.conf: [pam] pam_json_services = gdm-switchable-auth ◦ setenforce 0 (temporary workaround) ◦ systemctl restart sssd gdm
  18. GDM - mechanism selection { "auth-selection": { "mechanisms": { "password":

    { "name": "Password", "role": "password", "selectable": true, "prompt": "Password:" }, "eidp": { "name": "Web Login", "role": "eidp", "selectable": true, "init_prompt": "Login", "link_prompt": "Login online with another device", "uri": "https://short.url.com/tmp", "code": "1234" }, "smartcard:1": { "name": "smartcard ID1", "role": "smartcard", "selectable": true, "prompt": "Enter PIN:" } }, "priority": ["eidp", "smartcard:1", "password"] } }
  19. Availability • FIDO2 passkeys since SSSD 2.9.0 + FreeIPA 4.11.0

    ◦ Fedora 39; RHEL 9.4 Beta (Technology Preview) • External IDP since SSSD 2.7.0 + FreeIPA 4.10.1 ◦ Fedora 38; RHEL 9.1 (Technology Preview); RHEL 9.4 Beta (full support) • GDM enhancements: not earlier than Fedora 41
  20. Future • ipa-tuura SCIM bridge - automatically CRUD external users/groups

    in IPA ◦ https://github.com/freeipa/ipa-tuura ◦ FOSDEM 2024 - ipa-tuura: FreeIPA connector for Keycloak • Stable POSIX attributes for external IdPs ◦ FOSDEM 2024 - POSIX identities out of OAuth2 identity providers: how to redesign SSSD and Samba? • Direct enrolment to external IdPs ◦ Cut out the middle man and run a local KDC: Web Login without FreeIPA ◦ Drop-in configuration for pre-defined realms • Automatic domain join in cloud environments ◦ github.com/podengo-project What I'm working on!
  21. Resources • FreeIPA workshop: https://freeipa.readthedocs.io/en/latest/workshop.html ◦ Unit 12: External IdP

    (no passkey module… yet!) • WebauthN talk: "Webauthn, Passkeys, and You - The Future of Authentication" - William Brown (EO 2023) • Smart cards talk: "Kerberos PKINIT: what, why, and how (to break it)" - Fraser Tweedale (EO 2023) / slides • OIDC talk: Identity 2.0: the what, why and how of social and federated login" - Fraser Tweedale (PyConAU 2017) / slides • GDM+SSSD development builds: ipedrosa/passwordles-gdm COPR