Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
0917c1cb
Commit
0917c1cb
authored
Apr 21, 2015
by
Jeromy
Committed by
Juan Batiz-Benet
Apr 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implement basic peer discovery using mdns
parent
b1adeef8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
194 additions
and
0 deletions
+194
-0
core/core.go
core/core.go
+19
-0
p2p/discovery/mdns.go
p2p/discovery/mdns.go
+175
-0
No files found.
core/core.go
View file @
0917c1cb
...
...
@@ -18,6 +18,7 @@ import (
diag
"github.com/ipfs/go-ipfs/diagnostics"
ic
"github.com/ipfs/go-ipfs/p2p/crypto"
discovery
"github.com/ipfs/go-ipfs/p2p/discovery"
p2phost
"github.com/ipfs/go-ipfs/p2p/host"
p2pbhost
"github.com/ipfs/go-ipfs/p2p/host/basic"
rhost
"github.com/ipfs/go-ipfs/p2p/host/routed"
...
...
@@ -83,6 +84,7 @@ type IpfsNode struct {
DAG
merkledag
.
DAGService
// the merkle dag service, get/add objects.
Resolver
*
path
.
Resolver
// the path resolution system
Reporter
metrics
.
Reporter
Discovery
discovery
.
Service
// Online
PeerHost
p2phost
.
Host
// the network host (server+client)
...
...
@@ -261,9 +263,26 @@ func (n *IpfsNode) startOnlineServices(ctx context.Context, routingOption Routin
n
.
Reprovider
=
rp
.
NewReprovider
(
n
.
Routing
,
n
.
Blockstore
)
go
n
.
Reprovider
.
ProvideEvery
(
ctx
,
kReprovideFrequency
)
// setup local discovery
service
,
err
:=
discovery
.
NewMdnsService
(
n
.
PeerHost
)
if
err
!=
nil
{
return
err
}
service
.
RegisterNotifee
(
n
)
n
.
Discovery
=
service
return
n
.
Bootstrap
(
DefaultBootstrapConfig
)
}
func
(
n
*
IpfsNode
)
HandlePeerFound
(
p
peer
.
PeerInfo
)
{
log
.
Warning
(
"trying peer info: "
,
p
)
ctx
,
_
:=
context
.
WithTimeout
(
n
.
Context
(),
time
.
Second
*
10
)
err
:=
n
.
PeerHost
.
Connect
(
ctx
,
p
)
if
err
!=
nil
{
log
.
Warning
(
"Failed to connect to peer found by discovery: "
,
err
)
}
}
// startOnlineServicesWithHost is the set of services which need to be
// initialized with the host and _before_ we start listening.
func
(
n
*
IpfsNode
)
startOnlineServicesWithHost
(
ctx
context
.
Context
,
host
p2phost
.
Host
,
routingOption
RoutingOption
)
error
{
...
...
p2p/discovery/mdns.go
0 → 100644
View file @
0917c1cb
package
discovery
import
(
"fmt"
"io"
"io/ioutil"
golog
"log"
"net"
"strconv"
"strings"
"sync"
"time"
"github.com/hashicorp/mdns"
ma
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
manet
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr-net"
"github.com/ipfs/go-ipfs/p2p/host"
"github.com/ipfs/go-ipfs/p2p/peer"
u
"github.com/ipfs/go-ipfs/util"
)
var
log
=
u
.
Logger
(
"mdns"
)
const
LookupFrequency
=
time
.
Second
*
5
const
ServiceTag
=
"discovery.ipfs.io"
type
Service
interface
{
io
.
Closer
RegisterNotifee
(
Notifee
)
UnregisterNotifee
(
Notifee
)
}
type
Notifee
interface
{
HandlePeerFound
(
peer
.
PeerInfo
)
}
type
mdnsService
struct
{
server
*
mdns
.
Server
service
*
mdns
.
MDNSService
host
host
.
Host
lk
sync
.
Mutex
notifees
[]
Notifee
}
func
NewMdnsService
(
peerhost
host
.
Host
)
(
Service
,
error
)
{
// TODO: dont let mdns use logging...
golog
.
SetOutput
(
ioutil
.
Discard
)
// determine my local swarm port
port
:=
4001
for
_
,
addr
:=
range
peerhost
.
Addrs
()
{
parts
:=
strings
.
Split
(
addr
.
String
(),
"/"
)
fmt
.
Println
(
"parts len: "
,
len
(
parts
))
if
len
(
parts
)
==
5
&&
parts
[
3
]
==
"tcp"
{
n
,
err
:=
strconv
.
Atoi
(
parts
[
4
])
if
err
!=
nil
{
return
nil
,
err
}
port
=
n
break
}
}
fmt
.
Println
(
"using port: "
,
port
)
myid
:=
peerhost
.
ID
()
.
Pretty
()
info
:=
[]
string
{
myid
}
service
,
err
:=
mdns
.
NewMDNSService
(
myid
,
ServiceTag
,
""
,
""
,
port
,
nil
,
info
)
if
err
!=
nil
{
return
nil
,
err
}
// Create the mDNS server, defer shutdown
server
,
err
:=
mdns
.
NewServer
(
&
mdns
.
Config
{
Zone
:
service
})
if
err
!=
nil
{
return
nil
,
err
}
s
:=
&
mdnsService
{
server
:
server
,
service
:
service
,
host
:
peerhost
,
}
go
s
.
pollForEntries
()
return
s
,
nil
}
func
(
m
*
mdnsService
)
Close
()
error
{
return
m
.
server
.
Shutdown
()
}
func
(
m
*
mdnsService
)
pollForEntries
()
{
ticker
:=
time
.
NewTicker
(
LookupFrequency
)
for
{
select
{
case
<-
ticker
.
C
:
entriesCh
:=
make
(
chan
*
mdns
.
ServiceEntry
,
16
)
go
func
()
{
for
entry
:=
range
entriesCh
{
m
.
handleEntry
(
entry
)
}
}()
qp
:=
mdns
.
QueryParam
{}
qp
.
Domain
=
"local"
qp
.
Entries
=
entriesCh
qp
.
Service
=
ServiceTag
qp
.
Timeout
=
time
.
Second
*
3
err
:=
mdns
.
Query
(
&
qp
)
if
err
!=
nil
{
log
.
Error
(
"mdns lookup error: "
,
err
)
}
close
(
entriesCh
)
}
}
}
func
(
m
*
mdnsService
)
handleEntry
(
e
*
mdns
.
ServiceEntry
)
{
mpeer
,
err
:=
peer
.
IDB58Decode
(
e
.
Info
)
if
err
!=
nil
{
log
.
Warning
(
"Error parsing peer ID from mdns entry: "
,
err
)
return
}
if
mpeer
==
m
.
host
.
ID
()
{
return
}
maddr
,
err
:=
manet
.
FromNetAddr
(
&
net
.
TCPAddr
{
IP
:
e
.
AddrV4
,
Port
:
e
.
Port
,
})
if
err
!=
nil
{
log
.
Warning
(
"Error parsing multiaddr from mdns entry: "
,
err
)
return
}
pi
:=
peer
.
PeerInfo
{
ID
:
mpeer
,
Addrs
:
[]
ma
.
Multiaddr
{
maddr
},
}
m
.
lk
.
Lock
()
for
_
,
n
:=
range
m
.
notifees
{
n
.
HandlePeerFound
(
pi
)
}
m
.
lk
.
Unlock
()
}
func
(
m
*
mdnsService
)
RegisterNotifee
(
n
Notifee
)
{
m
.
lk
.
Lock
()
m
.
notifees
=
append
(
m
.
notifees
,
n
)
m
.
lk
.
Unlock
()
}
func
(
m
*
mdnsService
)
UnregisterNotifee
(
n
Notifee
)
{
m
.
lk
.
Lock
()
found
:=
-
1
for
i
,
notif
:=
range
m
.
notifees
{
if
notif
==
n
{
found
=
i
break
}
}
if
found
!=
-
1
{
m
.
notifees
=
append
(
m
.
notifees
[
:
found
],
m
.
notifees
[
found
+
1
:
]
...
)
}
m
.
lk
.
Unlock
()
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment