Page MenuHomeFreeBSD

traceroute6: Properly calculate UDP checksum
ClosedPublic

Authored by zlei on Apr 30 2021, 9:14 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Oct 24, 9:41 AM
Unknown Object (File)
Sun, Oct 20, 1:38 PM
Unknown Object (File)
Fri, Oct 11, 6:54 AM
Unknown Object (File)
Sep 29 2024, 8:58 AM
Unknown Object (File)
Sep 28 2024, 5:34 PM
Unknown Object (File)
Sep 28 2024, 1:24 AM
Unknown Object (File)
Sep 27 2024, 3:59 AM
Unknown Object (File)
Sep 26 2024, 3:27 AM
Subscribers
None

Details

Summary

The revision D25604 capsicumize traceroute6. For UDP the send socket was changed from SOCK_DGRAM to SOCK_RAW and thus the UDP checksum need be calculated by application itself other than the kernel.

outpacket is filled with zeros by line 707, thus the first round the UDP checksum is correct. But subsequent rounds outudp->uh_sum will be left with garbage.

PR: 255507

Test Plan

host A <----> Router <----> host B

  1. traceroute6 hostB
  2. netstat -sp udp | grep 'bad checksum'

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable