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)
Fri, Apr 12, 8:15 AM
Unknown Object (File)
Mon, Apr 8, 10:52 AM
Unknown Object (File)
Sun, Apr 7, 6:25 AM
Unknown Object (File)
Mar 15 2024, 9:04 PM
Unknown Object (File)
Mar 8 2024, 4:24 AM
Unknown Object (File)
Mar 8 2024, 4:24 AM
Unknown Object (File)
Mar 8 2024, 4:12 AM
Unknown Object (File)
Feb 4 2024, 4:06 PM
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