2014-03-28 03:04:48 -07:00
|
|
|
package mc
|
|
|
|
|
2014-05-14 11:26:05 -07:00
|
|
|
import "net"
|
2014-03-28 03:04:48 -07:00
|
|
|
|
|
|
|
type recv struct {
|
|
|
|
data []byte
|
|
|
|
src net.Addr
|
|
|
|
}
|
|
|
|
|
2014-05-11 14:20:14 -07:00
|
|
|
type dst struct {
|
|
|
|
intf string
|
|
|
|
conn *net.UDPConn
|
|
|
|
}
|
|
|
|
|
2014-03-28 03:04:48 -07:00
|
|
|
type Beacon struct {
|
2014-05-14 11:26:05 -07:00
|
|
|
conn *net.UDPConn
|
2014-03-28 03:04:48 -07:00
|
|
|
port int
|
2014-05-11 14:20:14 -07:00
|
|
|
conns []dst
|
2014-03-28 03:04:48 -07:00
|
|
|
inbox chan []byte
|
|
|
|
outbox chan recv
|
|
|
|
}
|
|
|
|
|
2014-05-14 11:26:05 -07:00
|
|
|
func NewBeacon(port int) (*Beacon, error) {
|
|
|
|
conn, err := net.ListenUDP("udp", &net.UDPAddr{Port: port})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-03-28 03:04:48 -07:00
|
|
|
b := &Beacon{
|
2014-05-14 11:26:05 -07:00
|
|
|
conn: conn,
|
2014-03-28 03:04:48 -07:00
|
|
|
port: port,
|
|
|
|
inbox: make(chan []byte),
|
2014-05-14 11:26:05 -07:00
|
|
|
outbox: make(chan recv, 16),
|
2014-03-28 03:04:48 -07:00
|
|
|
}
|
2014-05-14 11:26:05 -07:00
|
|
|
|
|
|
|
go b.reader()
|
|
|
|
go b.writer()
|
|
|
|
|
|
|
|
return b, nil
|
2014-03-28 03:04:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Beacon) Send(data []byte) {
|
|
|
|
b.inbox <- data
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Beacon) Recv() ([]byte, net.Addr) {
|
|
|
|
recv := <-b.outbox
|
|
|
|
return recv.data, recv.src
|
|
|
|
}
|
|
|
|
|
2014-05-14 11:26:05 -07:00
|
|
|
func (b *Beacon) reader() {
|
|
|
|
var bs = make([]byte, 65536)
|
|
|
|
for {
|
|
|
|
n, addr, err := b.conn.ReadFrom(bs)
|
|
|
|
if err != nil {
|
|
|
|
dlog.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if debug {
|
|
|
|
dlog.Printf("recv %d bytes from %s", n, addr)
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
case b.outbox <- recv{bs[:n], addr}:
|
|
|
|
default:
|
|
|
|
if debug {
|
|
|
|
dlog.Println("Dropping message")
|
|
|
|
}
|
|
|
|
}
|
2014-04-30 06:13:54 -07:00
|
|
|
}
|
2014-05-14 11:26:05 -07:00
|
|
|
}
|
2014-03-28 03:04:48 -07:00
|
|
|
|
2014-05-14 11:26:05 -07:00
|
|
|
func (b *Beacon) writer() {
|
|
|
|
for bs := range b.inbox {
|
2014-03-28 03:04:48 -07:00
|
|
|
|
2014-05-14 11:26:05 -07:00
|
|
|
addrs, err := net.InterfaceAddrs()
|
2014-03-28 03:04:48 -07:00
|
|
|
if err != nil {
|
2014-05-14 11:26:05 -07:00
|
|
|
dlog.Println(err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
var dsts []net.IP
|
|
|
|
for _, addr := range addrs {
|
|
|
|
if iaddr, ok := addr.(*net.IPNet); ok && iaddr.IP.IsGlobalUnicast() {
|
|
|
|
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})
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ip := range dsts {
|
|
|
|
dst := &net.UDPAddr{IP: ip, Port: b.port}
|
|
|
|
|
|
|
|
_, err := b.conn.WriteTo(bs, dst)
|
|
|
|
if err != nil {
|
|
|
|
dlog.Println(err)
|
|
|
|
return
|
2014-03-28 03:04:48 -07:00
|
|
|
}
|
2014-04-30 06:13:54 -07:00
|
|
|
if debug {
|
2014-05-14 11:26:05 -07:00
|
|
|
dlog.Printf("sent %d bytes to %s", len(bs), dst)
|
2014-04-30 06:13:54 -07:00
|
|
|
}
|
2014-03-28 03:04:48 -07:00
|
|
|
}
|
|
|
|
}
|
2014-05-14 11:26:05 -07:00
|
|
|
}
|
2014-03-28 03:04:48 -07:00
|
|
|
|
2014-05-14 11:26:05 -07: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 03:04:48 -07:00
|
|
|
|
2014-05-14 11:26:05 -07: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 03:04:48 -07:00
|
|
|
}
|
2014-05-14 11:26:05 -07:00
|
|
|
}
|
|
|
|
return bc
|
2014-03-28 03:04:48 -07:00
|
|
|
}
|