Bug 1461282
Summary: | kernel: ICMP rate limiting is too aggressive on loopback | ||||||
---|---|---|---|---|---|---|---|
Product: | Red Hat Enterprise Linux 7 | Reporter: | Florian Weimer <fweimer> | ||||
Component: | kernel | Assignee: | Jesper Brouer <jbrouer> | ||||
kernel sub component: | Networking | QA Contact: | Jianlin Shi <jishi> | ||||
Status: | CLOSED ERRATA | Docs Contact: | |||||
Severity: | medium | ||||||
Priority: | medium | CC: | atragler, fweimer, jbrouer, jiji, jishi, kzhang, rkhan, sdubroca, sukulkar | ||||
Version: | 7.4 | ||||||
Target Milestone: | rc | ||||||
Target Release: | --- | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Whiteboard: | |||||||
Fixed In Version: | kernel-3.10.0-703.el7 | Doc Type: | If docs needed, set a value | ||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | 1458542 | Environment: | |||||
Last Closed: | 2018-04-10 20:47:23 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: | 1458542 | ||||||
Bug Blocks: | 1469549, 1469551 | ||||||
Attachments: |
|
Description
Florian Weimer
2017-06-14 06:32:19 UTC
the rate is limited by net.ipv4.icmp_msgs_burst. the default value for it is 50, so you can change its value to 1000 or change ITERATIONS to 50 in your code. sysctl -w net.ipv4.icmp_msgs_burst=1000 && ./localhost-icmp (In reply to Jianlin Shi from comment #1) > the rate is limited by net.ipv4.icmp_msgs_burst. the default value for it is > 50, so you can change its value to 1000 or change ITERATIONS to 50 in your > code. > > sysctl -w net.ipv4.icmp_msgs_burst=1000 && ./localhost-icmp Sure, but the default is way too low, and it is far too easy to hit the rate limit. In fact, I expect that this will introduce boot delays in some setups (such as those using NIS or other UDP-based RPC services on lcoalhost). Notice I did send a kernel RFC patch, that fix the issue: http://lkml.kernel.org/r/20170604163812.602cc089@redhat.com I'm just not 100% convinced why localhost/loopback traffic require ICMP messages to be excluded from rate limiting? Sure the reproducer and libc test-case demonstrate that the ratelimiting "works". But what use-case need this? Notice that RFC1812 specify that we _should_ implement rate-limiting, but I cannot see that it recommend to excluded loopback traffic: https://tools.ietf.org/html/rfc1812#section-4.3.2.8 (In reply to Jesper Brouer from comment #3) > Notice I did send a kernel RFC patch, that fix the issue: > http://lkml.kernel.org/r/20170604163812.602cc089@redhat.com > > I'm just not 100% convinced why localhost/loopback traffic require ICMP > messages to be excluded from rate limiting? > > Sure the reproducer and libc test-case demonstrate that the ratelimiting > "works". > But what use-case need this? System boot without delays? The ability to test ICMP-based failover? (Non-loopback ICMP has been broken for a much longer time; I guess subtleties like these are one reason why people use load balancers with custom IP stacks.) And isn't this question backwards? What benefit does rate limiting on localhost bring? What is the advantage when applications wait for a reply that never comes, instead of learning immediately via ICMP that something is wrong? > Notice that RFC1812 specify that we _should_ implement rate-limiting, but I > cannot see that it recommend to excluded loopback traffic: > > https://tools.ietf.org/html/rfc1812#section-4.3.2.8 That RFC talks about routers. And in practice, the ICMP handling requirements for routers turned out to be quite different, see RFC 2644. Okay Florian, you convinced me, I posted an upstream patch: http://lkml.kernel.org/r/149743965710.19877.13901728209731997446.stgit@firesoul http://patchwork.ozlabs.org/patch/775744/ Lets see if upstream people will object to this... After discussions, even though it is a regression, it appears to be a fringe case with no known reported issues. Hence marking it as blocker-. However, recommend fixing this is the next z stream. -Sushil Just to add..there is also a possible workaround in comment#1. -Sushil Patch(es) committed on kernel repository and an interim kernel build is undergoing testing Patch(es) available on kernel-3.10.0-703.el7 verified on 3.10.0-753: [root@bkr-hv03-guest30 bz1461282]# uname -a Linux bkr-hv03-guest30.dsal.lab.eng.bos.redhat.com 3.10.0-753.el7.x86_64 #1 SMP Tue Oct 24 20:20:11 EDT 2017 x86_64 x86_64 x86_64 GNU/Linux [root@bkr-hv03-guest30 bz1461282]# ./localhost-icmp reproducer failed on RHEL-7.4(3.10.0-693): https://beaker.engineering.redhat.com/jobs/2113308 passed on RHEL-7.5-20171023.n.0(3.10.0-743): https://beaker.engineering.redhat.com/jobs/2113306 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/RHSA-2018:1062 |