Bug 2013294
| Summary: | Lookup with fully-qualified name does not work with 'cache_first = True' | |||
|---|---|---|---|---|
| Product: | Red Hat Enterprise Linux 8 | Reporter: | Alexey Tikhonov <atikhono> | |
| Component: | sssd | Assignee: | Sumit Bose <sbose> | |
| Status: | CLOSED ERRATA | QA Contact: | Dhairya Parmar <dparmar> | |
| Severity: | high | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | 8.5 | CC: | dparmar, grajaiya, jhrozek, lslebodn, mzidek, pbrezina, rakkumar, tscherf | |
| Target Milestone: | rc | Keywords: | Triaged, ZStream | |
| Target Release: | --- | Flags: | pm-rhel:
mirror+
|
|
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | sync-to-jira | |||
| Fixed In Version: | sssd-2.6.1-1.el8 | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 2013379 (view as bug list) | Environment: | ||
| Last Closed: | 2022-05-10 15:26:45 UTC | Type: | Bug | |
| 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: | 2011216 | |||
| Bug Blocks: | 2013379 | |||
|
Description
Alexey Tikhonov
2021-10-12 14:16:47 UTC
Pushed PR: https://github.com/SSSD/sssd/pull/5745 * `master` * 26654d3e5f5882dd1681116cb49228d108351d48 - cache_req: cache_first fix for fully-qualified names Tested against sssd-2.5.2-2.el8.x86_64 #### sssd.conf #### [sssd] domains = proxy services = nss [domain/proxy] id_provider = proxy proxy_lib_name = files auth_provider = none [nss] cache_first = True #### cache_first = True is used #### [root@ci-vm-10-0-138-121 sssd]# systemctl stop sssd [root@ci-vm-10-0-138-121 sssd]# rm -R /var/lib/sss/db [root@ci-vm-10-0-138-121 sssd]# rm -R /var/lib/sss/mc [root@ci-vm-10-0-138-121 sssd]# rm -R /var/log/sssd [root@ci-vm-10-0-138-121 sssd]# systemctl start sssd [root@ci-vm-10-0-138-121 sssd]# getent passwd adm@proxy [root@ci-vm-10-0-138-121 sssd]# echo $? 2 #### cache_first = True is not used #### [root@ci-vm-10-0-138-121 sssd]# systemctl stop sssd [root@ci-vm-10-0-138-121 sssd]# rm -R /var/lib/sss/db [root@ci-vm-10-0-138-121 sssd]# rm -R /var/lib/sss/mc [root@ci-vm-10-0-138-121 sssd]# rm -R /var/log/sssd [root@ci-vm-10-0-138-121 sssd]# systemctl start sssd [root@ci-vm-10-0-138-121 sssd]# getent passwd adm@proxy adm:*:3:4:adm:/var/adm:/sbin/nologin Tested against sssd-2.6.1-1.el8.x86_64 #### sssd.conf #### [sssd] domains = proxy services = nss [domain/proxy] id_provider = proxy proxy_lib_name = files auth_provider = none [nss] cache_first = True #### cache_first = True is used #### [root@ci-vm-10-0-136-231 sssd]# systemctl stop sssd [root@ci-vm-10-0-136-231 sssd]# rm -R /var/lib/sss/db [root@ci-vm-10-0-136-231 sssd]# rm -R /var/lib/sss/mc [root@ci-vm-10-0-136-231 sssd]# rm -R /var/log/sssd [root@ci-vm-10-0-136-231 sssd]# systemctl start sssd [root@ci-vm-10-0-136-231 log]# getent passwd adm@proxy adm:*:3:4:adm:/var/adm:/sbin/nologin #### cache_first = True is not used #### [root@ci-vm-10-0-136-231 sssd]# systemctl stop sssd [root@ci-vm-10-0-136-231 sssd]# rm -R /var/lib/sss/db [root@ci-vm-10-0-136-231 sssd]# rm -R /var/lib/sss/mc [root@ci-vm-10-0-136-231 sssd]# rm -R /var/log/sssd [root@ci-vm-10-0-136-231 sssd]# systemctl start sssd [root@ci-vm-10-0-136-231 log]# getent passwd adm@proxy adm:*:3:4:adm:/var/adm:/sbin/nologin Manual verification comment upstream PR: https://github.com/SSSD/sssd/pull/5880 the tested package is available in nightly compose 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 (sssd bug fix and enhancement update), 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-2022:2070 |