Skip to content

Commit 586e7c5

Browse files
cpuchipdavidflowerdayMichael Stufflebeam
authored
Fix windows libp2p (#29)
* Fix client multicast sending on Windows * Put in a platform dependent fix for windows to WriteTo on client.go and server.go to allow Multicast transmit Co-authored-by: Dave Flowerday <[email protected]> Co-authored-by: Michael Stufflebeam <[email protected]>
1 parent af1f1d3 commit 586e7c5

File tree

2 files changed

+65
-6
lines changed

2 files changed

+65
-6
lines changed

client.go

+24-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ package zeroconf
33
import (
44
"context"
55
"fmt"
6+
"log"
67
"math/rand"
78
"net"
9+
"runtime"
810
"strings"
911
"time"
1012

@@ -436,16 +438,36 @@ func (c *client) sendQuery(msg *dns.Msg) error {
436438
return err
437439
}
438440
if c.ipv4conn != nil {
441+
// See https://pkg.go.dev/golang.org/x/net/ipv4#pkg-note-BUG
442+
// As of Golang 1.18.4
443+
// On Windows, the ControlMessage for ReadFrom and WriteTo methods of PacketConn is not implemented.
439444
var wcm ipv4.ControlMessage
440445
for ifi := range c.ifaces {
441-
wcm.IfIndex = c.ifaces[ifi].Index
446+
switch runtime.GOOS {
447+
case "darwin", "ios", "linux":
448+
wcm.IfIndex = c.ifaces[ifi].Index
449+
default:
450+
if err := c.ipv4conn.SetMulticastInterface(&c.ifaces[ifi]); err != nil {
451+
log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err)
452+
}
453+
}
442454
c.ipv4conn.WriteTo(buf, &wcm, ipv4Addr)
443455
}
444456
}
445457
if c.ipv6conn != nil {
458+
// See https://pkg.go.dev/golang.org/x/net/ipv6#pkg-note-BUG
459+
// As of Golang 1.18.4
460+
// On Windows, the ControlMessage for ReadFrom and WriteTo methods of PacketConn is not implemented.
446461
var wcm ipv6.ControlMessage
447462
for ifi := range c.ifaces {
448-
wcm.IfIndex = c.ifaces[ifi].Index
463+
switch runtime.GOOS {
464+
case "darwin", "ios", "linux":
465+
wcm.IfIndex = c.ifaces[ifi].Index
466+
default:
467+
if err := c.ipv6conn.SetMulticastInterface(&c.ifaces[ifi]); err != nil {
468+
log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err)
469+
}
470+
}
449471
c.ipv6conn.WriteTo(buf, &wcm, ipv6Addr)
450472
}
451473
}

server.go

+41-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"math/rand"
77
"net"
88
"os"
9+
"runtime"
910
"strings"
1011
"sync"
1112
"time"
@@ -764,26 +765,62 @@ func (s *Server) multicastResponse(msg *dns.Msg, ifIndex int) error {
764765
return fmt.Errorf("failed to pack msg %v: %w", msg, err)
765766
}
766767
if s.ipv4conn != nil {
768+
// See https://pkg.go.dev/golang.org/x/net/ipv4#pkg-note-BUG
769+
// As of Golang 1.18.4
770+
// On Windows, the ControlMessage for ReadFrom and WriteTo methods of PacketConn is not implemented.
767771
var wcm ipv4.ControlMessage
768772
if ifIndex != 0 {
769-
wcm.IfIndex = ifIndex
773+
switch runtime.GOOS {
774+
case "darwin", "ios", "linux":
775+
wcm.IfIndex = ifIndex
776+
default:
777+
iface, _ := net.InterfaceByIndex(ifIndex)
778+
if err := s.ipv4conn.SetMulticastInterface(iface); err != nil {
779+
log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err)
780+
}
781+
}
770782
s.ipv4conn.WriteTo(buf, &wcm, ipv4Addr)
771783
} else {
772784
for _, intf := range s.ifaces {
773-
wcm.IfIndex = intf.Index
785+
switch runtime.GOOS {
786+
case "darwin", "ios", "linux":
787+
wcm.IfIndex = intf.Index
788+
default:
789+
if err := s.ipv4conn.SetMulticastInterface(&intf); err != nil {
790+
log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err)
791+
}
792+
}
774793
s.ipv4conn.WriteTo(buf, &wcm, ipv4Addr)
775794
}
776795
}
777796
}
778797

779798
if s.ipv6conn != nil {
799+
// See https://pkg.go.dev/golang.org/x/net/ipv6#pkg-note-BUG
800+
// As of Golang 1.18.4
801+
// On Windows, the ControlMessage for ReadFrom and WriteTo methods of PacketConn is not implemented.
780802
var wcm ipv6.ControlMessage
781803
if ifIndex != 0 {
782-
wcm.IfIndex = ifIndex
804+
switch runtime.GOOS {
805+
case "darwin", "ios", "linux":
806+
wcm.IfIndex = ifIndex
807+
default:
808+
iface, _ := net.InterfaceByIndex(ifIndex)
809+
if err := s.ipv6conn.SetMulticastInterface(iface); err != nil {
810+
log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err)
811+
}
812+
}
783813
s.ipv6conn.WriteTo(buf, &wcm, ipv6Addr)
784814
} else {
785815
for _, intf := range s.ifaces {
786-
wcm.IfIndex = intf.Index
816+
switch runtime.GOOS {
817+
case "darwin", "ios", "linux":
818+
wcm.IfIndex = intf.Index
819+
default:
820+
if err := s.ipv6conn.SetMulticastInterface(&intf); err != nil {
821+
log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err)
822+
}
823+
}
787824
s.ipv6conn.WriteTo(buf, &wcm, ipv6Addr)
788825
}
789826
}

0 commit comments

Comments
 (0)