FreeBSD/src fb3bc59 (r348254)sys/dev/cxgbe t4_sge.c t4_main.c, sys/dev/mlx5/mlx5_en mlx5_en_tx.c mlx5_en_main.c

Restructure mbuf send tags to provide stronger guarantees.

- Perform ifp mismatch checks (to determine if a send tag is allocated
  for a different ifp than the one the packet is being output on), in
  ip_output() and ip6_output().  This avoids sending packets with send
  tags to ifnet drivers that don't support send tags.

  Since we are now checking for ifp mismatches before invoking
  if_output, we can now try to allocate a new tag before invoking
  if_output sending the original packet on the new tag if allocation
  succeeds.

  To avoid code duplication for the fragment and unfragmented cases,
  add ip_output_send() and ip6_output_send() as wrappers around
  if_output and nd6_output_ifp, respectively.  All of the logic for
  setting send tags and dealing with send tag-related errors is done
  in these wrapper functions.

  For pseudo interfaces that wrap other network interfaces (vlan and
  lagg), wrapper send tags are now allocated so that ip*_output see
  the wrapper ifp as the ifp in the send tag.  The if_transmit
  routines rewrite the send tags after performing an ifp mismatch
  check.  If an ifp mismatch is detected, the transmit routines fail
  with EAGAIN.

- To provide clearer life cycle management of send tags, especially
  in the presence of vlan and lagg wrapper tags, add a reference count
  to send tags managed via m_snd_tag_ref() and m_snd_tag_rele().
  Provide a helper function (m_snd_tag_init()) for use by drivers
  supporting send tags.  m_snd_tag_init() takes care of the if_ref
  on the ifp meaning that code alloating send tags via if_snd_tag_alloc
  no longer has to manage that manually.  Similarly, m_snd_tag_rele
  drops the refcount on the ifp after invoking if_snd_tag_free when
  the last reference to a send tag is dropped.

  This also closes use after free races if there are pending packets in
  driver tx rings after the socket is closed (e.g. from tcpdrop).

  In order for m_free to work reliably, add a new CSUM_SND_TAG flag in
  csum_flags to indicate 'snd_tag' is set (rather than 'rcvif').
  Drivers now also check this flag instead of checking snd_tag against
  NULL.  This avoids false positive matches when a forwarded packet
  has a non-NULL rcvif that was treated as a send tag.

- cxgbe was relying on snd_tag_free being called when the inp was
  detached so that it could kick the firmware to flush any pending
  work on the flow.  This is because the driver doesn't require ACK
  messages from the firmware for every request, but instead does a
  kind of manual interrupt coalescing by only setting a flag to
  request a completion on a subset of requests.  If all of the
  in-flight requests don't have the flag when the tag is detached from
  the inp, the flow might never return the credits.  The current
  snd_tag_free command issues a flush command to force the credits to
  return.  However, the credit return is what also frees the mbufs,
  and since those mbufs now hold references on the tag, this meant
  that snd_tag_free would never be called.

  To fix, explicitly drop the mbuf's reference on the snd tag when the
  mbuf is queued in the firmware work queue.  This means that once the
  inp's reference on the tag goes away and all in-flight mbufs have
  been queued to the firmware, tag's refcount will drop to zero and
  snd_tag_free will kick in and send the flush request.  Note that we
  need to avoid doing this in the middle of ethofld_tx(), so the
  driver grabs a temporary reference on the tag around that loop to
  defer the free to the end of the function in case it sends the last
  mbuf to the queue after the inp has dropped its reference on the
  tag.

- mlx5 preallocates send tags and was using the ifp pointer even when
  the send tag wasn't in use.  Explicitly use the ifp from other data
  structures instead.

- Sprinkle some assertions in various places to assert that received
  packets don't have a send tag, and that other places that overwrite
  rcvif (e.g. 802.11 transmit) don't clobber a send tag pointer.

Reviewed by:    gallatin, hselasky, rgrimes, ae
Sponsored by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D20117
DeltaFile
+132-39sys/net/if_lagg.c
+101-8sys/net/if_vlan.c
+47-34sys/netinet6/ip6_output.c
+47-34sys/netinet/ip_output.c
+51-18sys/dev/cxgbe/t4_sge.c
+36-1sys/sys/mbuf.h
+12-21sys/netinet/in_pcb.c
+31-0sys/kern/kern_mbuf.c
+18-2sys/kern/uipc_mbuf.c
+2-17sys/dev/mlx5/mlx5_en/mlx5_en_tx.c
+2-7sys/dev/cxgbe/t4_main.c
+4-3sys/dev/mlx5/mlx5_en/mlx5_en_main.c
+2-2sys/net/bpf.c
+2-1sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
+2-0sys/net80211/ieee80211_wds.c
+2-0sys/net80211/ieee80211_output.c
+2-0sys/net/if.c
+1-1sys/dev/cxgbe/t4_sched.c
+1-1sys/netpfil/ipfw/ip_fw2.c
+1-0sys/net80211/ieee80211_mesh.c
+1-0sys/net80211/ieee80211_hwmp.c
+1-0sys/net/if_ethersubr.c
+1-0sys/net/netisr.c
+499-18923 files

UnifiedSplitRaw