syncthing/internal/beacon/broadcast.go

98 lines
1.9 KiB
Go
Raw Normal View History

2014-07-13 00:45:33 +02:00
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
// All rights reserved. Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
2014-06-01 22:50:14 +02:00
2014-05-15 05:29:18 +02:00
package beacon
2014-03-28 11:04:48 +01:00
import "net"
2014-03-28 11:04:48 +01:00
2014-08-17 11:53:26 +02:00
type Broadcast struct {
conn *net.UDPConn
2014-03-28 11:04:48 +01:00
port int
inbox chan []byte
outbox chan recv
}
2014-08-17 11:53:26 +02:00
func NewBroadcast(port int) (*Broadcast, error) {
conn, err := net.ListenUDP("udp", &net.UDPAddr{Port: port})
if err != nil {
return nil, err
}
2014-08-17 11:53:26 +02:00
b := &Broadcast{
conn: conn,
2014-03-28 11:04:48 +01:00
port: port,
inbox: make(chan []byte),
outbox: make(chan recv, 16),
2014-03-28 11:04:48 +01:00
}
go genericReader(b.conn, b.outbox)
go b.writer()
return b, nil
2014-03-28 11:04:48 +01:00
}
2014-08-17 11:53:26 +02:00
func (b *Broadcast) Send(data []byte) {
2014-03-28 11:04:48 +01:00
b.inbox <- data
}
2014-08-17 11:53:26 +02:00
func (b *Broadcast) Recv() ([]byte, net.Addr) {
2014-03-28 11:04:48 +01:00
recv := <-b.outbox
return recv.data, recv.src
}
2014-08-17 11:53:26 +02:00
func (b *Broadcast) writer() {
for bs := range b.inbox {
2014-03-28 11:04:48 +01:00
addrs, err := net.InterfaceAddrs()
2014-03-28 11:04:48 +01:00
if err != nil {
2014-08-17 11:53:26 +02:00
l.Warnln("Broadcast: interface addresses:", err)
continue
}
var dsts []net.IP
for _, addr := range addrs {
if iaddr, ok := addr.(*net.IPNet); ok && len(iaddr.IP) >= 4 && iaddr.IP.IsGlobalUnicast() && iaddr.IP.To4() != nil {
baddr := bcast(iaddr)
dsts = append(dsts, baddr.IP)
}
}
if len(dsts) == 0 {
// Fall back to the general IPv4 broadcast address
dsts = append(dsts, net.IP{0xff, 0xff, 0xff, 0xff})
}
2014-05-15 02:08:56 +02:00
if debug {
l.Debugln("addresses:", dsts)
}
for _, ip := range dsts {
dst := &net.UDPAddr{IP: ip, Port: b.port}
_, err := b.conn.WriteTo(bs, dst)
if err != nil {
2014-05-15 02:08:56 +02:00
if debug {
l.Debugln(err)
}
} else if debug {
2014-05-15 02:08:56 +02:00
l.Debugf("sent %d bytes to %s", len(bs), dst)
2014-04-30 15:13:54 +02:00
}
2014-03-28 11:04:48 +01:00
}
}
}
2014-03-28 11:04:48 +01:00
func bcast(ip *net.IPNet) *net.IPNet {
var bc = &net.IPNet{}
bc.IP = make([]byte, len(ip.IP))
copy(bc.IP, ip.IP)
bc.Mask = ip.Mask
2014-03-28 11:04:48 +01:00
offset := len(bc.IP) - len(bc.Mask)
for i := range bc.IP {
if i-offset >= 0 {
bc.IP[i] = ip.IP[i] | ^ip.Mask[i-offset]
2014-03-28 11:04:48 +01:00
}
}
return bc
2014-03-28 11:04:48 +01:00
}