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 1711997 - sudo is super slow when /etc/security/limits.conf contains many entries
Summary: sudo is super slow when /etc/security/limits.conf contains many entries
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: sudo
Version: 7.6
Hardware: All
OS: Linux
medium
high
Target Milestone: rc
: ---
Assignee: Radovan Sroka
QA Contact: Martin Zelený
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2019-05-20 15:10 UTC by Renaud Métrich
Modified: 2023-09-07 20:03 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2020-03-31 19:43:43 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2020:1048 0 None None None 2020-03-31 19:43:59 UTC

Description Renaud Métrich 2019-05-20 15:10:34 UTC
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.

Comment 4 Marek Tamaskovic 2019-06-27 08:52:59 UTC
Used fix:
 > Removing the "session    required     pam_limits.so" from /etc/pam.d/sudo-i and /etc/pam.d/sudo fixes the issue.

Comment 5 Marek Tamaskovic 2019-07-01 07:59:34 UTC
I agree that we can remove that duplicit line from those files /etc/pam.d/sudo-i and /etc/pam.d/sudo.

Comment 11 errata-xmlrpc 2020-03-31 19:43:43 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-2020:1048


Note You need to log in before you can comment on or make changes to this bug.