udp: ipv4: do not waste time in __udp4_lib_mcast_demux_lookup

Its too easy to add thousand of UDP sockets on a particular bucket,
and slow down an innocent multicast receiver.

Early demux is supposed to be an optimization, we should avoid spending
too much time in it.

It is interesting to note __udp4_lib_demux_lookup() only tries to
match first socket in the chain.

10 is the threshold we already have in __udp4_lib_lookup() to switch
to secondary hash.

Fixes: 421b3885bf6d5 ("udp: ipv4: Add udp early demux")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: David Held <drheld@google.com>
Cc: Shawn Bohrer <sbohrer@rgmadvisors.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Eric Dumazet and committed by David S. Miller 63c6f81c 2853af6a

Changed files
+4
net
ipv4
+4
net/ipv4/udp.c
··· 1861 1861 unsigned int count, slot = udp_hashfn(net, hnum, udp_table.mask); 1862 1862 struct udp_hslot *hslot = &udp_table.hash[slot]; 1863 1863 1864 + /* Do not bother scanning a too big list */ 1865 + if (hslot->count > 10) 1866 + return NULL; 1867 + 1864 1868 rcu_read_lock(); 1865 1869 begin: 1866 1870 count = 0;