Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.

Bug 1559288

Summary: sssd_krb5_localauth_plugin fails to fallback to other localname rules [rhel-7.4.z]
Product: Red Hat Enterprise Linux 7 Reporter: Oneata Mircea Teodor <toneata>
Component: sssdAssignee: SSSD Maintainers <sssd-maint>
Status: CLOSED ERRATA QA Contact: Madhuri <mupadhye>
Severity: high Docs Contact: Lucie Vařáková <lmanasko>
Priority: high    
Version: 7.4CC: batkisso, enewland, fidencio, grajaiya, jhrozek, lmanasko, lslebodn, mkosek, msauton, mupadhye, mzidek, nsoman, pbrezina, sbose, sgoveas, sssd-maint, tscherf
Target Milestone: rcKeywords: ZStream
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: sssd-1.15.2-50.el7_4.13 Doc Type: Bug Fix
Doc Text:
Previously, the SSSD auth-to-local Kerberos plug-in returned an incorrect output message "KRB5_PLUGIN_NO_HANDLE" if it could not find mapping for the principal. As a consequence, the libkrb5 package could not continue with another auth-to-local ruleset. This update fixes SSSD auth-to-local to return a correct output message "KRB5_LNAME_NOTRANS". As a result, libkrb5 can use SSSD auth-to-local mapping rules from its configuration file even if no rules have been defined by the SSSD match.
Story Points: ---
Clone Of: 1525052 Environment:
Last Closed: 2018-04-17 16:35:29 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On: 1525052    
Bug Blocks:    

Description Oneata Mircea Teodor 2018-03-22 08:08:38 UTC
This bug has been copied from bug #1525052 and has been proposed to be backported to 7.4 z-stream (EUS).

Comment 5 Madhuri 2018-04-04 14:46:00 UTC
Verified with
sssd-1.15.2-50.el7_4.13.x86_64
sssd-client-1.15.2-50.el7_4.13.x86_64

Verification steps:
1. Set up ldap server and kerberos server.
2. Configure sssd client with,
   # cat /etc/sssd/sssd.conf | grep provider
     id_provider = ldap
     auth_provider = krb5

3. Check the user look up.
[root@vm-idm-033 ~]# getent passwd testuser1
testuser1:*:2001:2001:Test User1:/:/bin/bash

4. Create the localauth.c

5. Compile localauth.c
#gcc -ggdb -Wall -Wextra localauth.c -o localauth -lkrb5

6. /etc/krb.conf

[libdefaults]
default_realm = EXAMPLE.COM

[realms]
EXAMPLE.COM ={ 
  kdc = vm-idm-025.lab.eng.pnq.redhat.com
  admin_server = vm-idm-025.lab.eng.pnq.redhat.com
  auth_to_local = RULE:[1:$1@$0](.*@EXAMPLE.COM)s/@.*//
  auth_to_local = DEFAULT
  }

[plugins]
localauth = {
  module = sssd:/usr/lib64/sssd/modules/sssd_krb5_localauth_plugin.so
  }

7. Check
# ls /usr/lib64/sssd/modules/sssd_krb5_localauth_plugin.so
/usr/lib64/sssd/modules/sssd_krb5_localauth_plugin.so

8. Call the test program,
[root@vm-idm-033 ~]# KRB5_CONFIG=/etc/krb5.conf ./localauth xyz
xyz

xyz returned, so test passed successfully.

9. Negative testing

Add ‘enable_only = sssd’

[plugins]
localauth = {
  module = sssd:/usr/lib64/sssd/modules/sssd_krb5_localauth_plugin.so
  enable_only = sssd
  }

10. Call the program
[root@vm-idm-033 ~]# KRB5_CONFIG=/etc/krb5.conf ./localauth xyz
No translation available for requested principal

Test failed, as expected.

Comment 8 errata-xmlrpc 2018-04-17 16:35:29 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHBA-2018:1144