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.
Description of problem:
When /etc/security/limits.conf or /etc/security/limits.d/*.conf contain many entries, sudo is very slow, "sudo -i" even slower:
# time sudo -i true
real 0m4.645s
user 0m4.594s
sys 0m0.046s
# time sudo true
real 0m1.350s
user 0m1.276s
sys 0m0.075s
Version-Release number of selected component (if applicable):
sudo-1.8.23-3.el7.x86_64
How reproducible:
Always
Steps to Reproduce:
1. Create 40 "groups" entries containing 13 lines (hence 520 lines in total)
# cat > ~/template.per_group << EOF
ENTRY - fsize unlimited
ENTRY - core unlimited
ENTRY - data unlimited
ENTRY - memlock unlimited
ENTRY - nofile 100000
ENTRY - rss unlimited
ENTRY - stack unlimited
ENTRY - cpu unlimited
ENTRY - nproc unlimited
ENTRY - as unlimited
ENTRY - maxlogins unlimited
ENTRY - locks unlimited
ENTRY - sigpending unlimited
EOF
# for i in $(seq 1 40); do group="@mygroup$i"; sed "s/ENTRY/$group/g" ~/template.per_group > /etc/security/limits.d/group$i.conf; done
2. Run "sudo -i" or "sudo"
# time sudo -i true
Actual results:
real 0m4.826s
user 0m4.780s
sys 0m0.041s
Expected results:
real 0m0.340s
user 0m0.292s
sys 0m0.042s
Additional info:
This is due to sudo executing multiple times "pam_limits.so" (3 times for "sudo -i", 2 times for "sudo") due to having "pam_limits.so" defined in multiple places:
- /etc/pam.d/sudo-i
session required pam_limits.so
session include sudo
- /etc/pam.d/sudo
session required pam_limits.so
session include system-auth
- /etc/pam.d/system-auth
session required pam_limits.so
Removing the "session required pam_limits.so" from /etc/pam.d/sudo-i and /etc/pam.d/sudo fixes the issue.
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-2020:1048