Page MenuHomeFreeBSD

Fix deadlock in IPv6 PCB code.
ClosedPublic

Authored by ae on Feb 23 2015, 4:00 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Aug 17, 4:50 AM
Unknown Object (File)
Tue, Aug 13, 2:14 PM
Unknown Object (File)
Sun, Aug 11, 2:24 AM
Unknown Object (File)
Sun, Aug 11, 1:29 AM
Unknown Object (File)
Sat, Aug 10, 8:20 PM
Unknown Object (File)
Wed, Aug 7, 12:50 AM
Unknown Object (File)
Sat, Jul 27, 5:06 AM
Unknown Object (File)
Thu, Jul 25, 6:40 PM
Subscribers

Details

Reviewers
rwatson
Group Reviewers
network
Commits
rS279588: Fix deadlock in IPv6 PCB code.
Summary

This deadlock can be relatively easy reproduced with UDP.
Several application in the same time can try to send UDP datagrams
to the same IPv6 destination address. In case when the size of UDP
datagrams is bigger than the link MTU and IP fragmentation is disabled
by application, ip6_output() will call pfctlinput2(PRC_MSGSIZE) for the
given destination. pfctlinput2() will call pr_ctlinput for all protocols.

So, what we have at this moment:

  • several application are trying to send UDP datagrams;
  • app1 does udp6_send() and takes INP_WLOCK(), INP_HASH_WLOCK(), calls udp6_output()->ip6_output().
  • app2 also does the same;
  • both threads are in the ip6_output() and it determines that MTU of outgoing interface isn't enough to send. And it calls pfctlinput2().
  • now we are in the in6_pcbnotify() and it takes INP_INFO_WLOCK(), then it tries enumerate all PCB and take its INP_WLOCK(). But some of these PCB are already held by other thread.

Robert has suggested two solution here:

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197059
  1. Use netisr to reinject this notify to avoid deadlock.
  2. Don't notify all sockets and let the others discover the MTU on demand.

RFC 3542 p.11.3 suggests notify all application wanted to receive
IPV6_PATHMTU ancillary data for each ICMPv6 packet too big message,
but it doesn't restrict such behaviour for our case, when we don't
receive ICMPv6 message.

This patch implements second solution. I changed ip6_notify_pmtu()
function to use from both in6_pcbnotify() and from ip6_output().
Now we don't notify all sockets when no ICMPv6 was received.

Since we are already holding all PCB locks when we are trying to
send datagram, it should be safe to call ip6_notify_pmtu() directly from
ip6_output(). In the second case (ICMPv6 packet too big received) we are
doing this from the input path.

Test Plan

I wrote small application to check that IPV6_PATHMTU ancillary data still
sended by kernel.
https://people.freebsd.org/~ae/test.tgz

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

ae retitled this revision from to Fix deadlock in IPv6 PCB code..
ae updated this object.
ae edited the test plan for this revision. (Show Details)
ae added reviewers: network, rwatson.

Fix condition and update comment.
We don't notify application when:

  1. Application didn't enable IPV6_RECVPATHMTU option;
  2. Connected socket has foreign address different than given destination.

Try to cleanup wrong changes.

ae updated this revision to Diff 4100.

Closed by commit rS279588 (authored by @ae).