Module Name: src Committed By: martin Date: Mon May 25 17:48:16 UTC 2020
Modified Files: src/sys/kern [netbsd-8]: kern_time.c src/sys/netinet [netbsd-8]: igmp.c Log Message: Pull up following revision(s) (requested by christos in ticket #1549): sys/netinet/igmp.c: revision 1.70 sys/kern/kern_time.c: revision 1.204 igmp_sendpkt() expects ip_output() to set 'imo.imo_multicast_ttl' into 'ip->ip_ttl'; but ip_output() won't if the target is not a multicast address, meaning that the uninitialized 'ip->ip_ttl' byte gets sent to the network. This leaks one byte of kernel heap. Fix this by filling 'ip->ip_ttl' with a TTL of one. Found by KMSAN. - Fix uninitialized memory access. Found by KMSAN. To generate a diff of this commit: cvs rdiff -u -r1.189.8.5 -r1.189.8.6 src/sys/kern/kern_time.c cvs rdiff -u -r1.64.6.2 -r1.64.6.3 src/sys/netinet/igmp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.