mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-28 22:08:01 +08:00
- updated go-ctxgroup and goprocess ctxgroup: AddChildGroup was changed to AddChild. Used in two files: - p2p/net/mock/mock_net.go - routing/dht/dht.go - updated context from hg repo to git prev. commit in hg was ad01a6fcc8a19d3a4478c836895ffe883bd2ceab. (context: make parentCancelCtx iterative) represents commit 84f8955a887232b6308d79c68b8db44f64df455c in git repo - updated context to master (b6fdb7d8a4ccefede406f8fe0f017fb58265054c) Aaron Jacobs (2): net/context: Don't accept a context in the DoSomethingSlow example. context: Be clear that users must cancel the result of WithCancel. Andrew Gerrand (1): go.net: use golang.org/x/... import paths Bryan C. Mills (1): net/context: Don't leak goroutines in Done example. Damien Neil (1): context: fix removal of cancelled timer contexts from parent David Symonds (2): context: Fix WithValue example code. net: add import comments. Sameer Ajmani (1): context: fix TestAllocs to account for ints in interfaces
312 lines
7.5 KiB
Go
312 lines
7.5 KiB
Go
package commands
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"sort"
|
|
|
|
cmds "github.com/jbenet/go-ipfs/commands"
|
|
peer "github.com/jbenet/go-ipfs/p2p/peer"
|
|
errors "github.com/jbenet/go-ipfs/util/debugerror"
|
|
iaddr "github.com/jbenet/go-ipfs/util/ipfsaddr"
|
|
|
|
ma "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
|
|
context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
|
|
)
|
|
|
|
type stringList struct {
|
|
Strings []string
|
|
}
|
|
|
|
type addrMap struct {
|
|
Addrs map[string][]string
|
|
}
|
|
|
|
var SwarmCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "swarm inspection tool",
|
|
Synopsis: `
|
|
ipfs swarm peers - List peers with open connections
|
|
ipfs swarm addrs - List known addresses. Useful to debug.
|
|
ipfs swarm connect <address> - Open connection to a given address
|
|
ipfs swarm disconnect <address> - Close connection to a given address
|
|
`,
|
|
ShortDescription: `
|
|
ipfs swarm is a tool to manipulate the network swarm. The swarm is the
|
|
component that opens, listens for, and maintains connections to other
|
|
ipfs peers in the internet.
|
|
`,
|
|
},
|
|
Subcommands: map[string]*cmds.Command{
|
|
"peers": swarmPeersCmd,
|
|
"addrs": swarmAddrsCmd,
|
|
"connect": swarmConnectCmd,
|
|
"disconnect": swarmDisconnectCmd,
|
|
},
|
|
}
|
|
|
|
var swarmPeersCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "List peers with open connections",
|
|
ShortDescription: `
|
|
ipfs swarm peers lists the set of peers this node is connected to.
|
|
`,
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
|
|
log.Debug("ipfs swarm peers")
|
|
n, err := req.Context().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if n.PeerHost == nil {
|
|
res.SetError(errNotOnline, cmds.ErrClient)
|
|
return
|
|
}
|
|
|
|
conns := n.PeerHost.Network().Conns()
|
|
addrs := make([]string, len(conns))
|
|
for i, c := range conns {
|
|
pid := c.RemotePeer()
|
|
addr := c.RemoteMultiaddr()
|
|
addrs[i] = fmt.Sprintf("%s/ipfs/%s", addr, pid.Pretty())
|
|
}
|
|
|
|
sort.Sort(sort.StringSlice(addrs))
|
|
res.SetOutput(&stringList{addrs})
|
|
},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: stringListMarshaler,
|
|
},
|
|
Type: stringList{},
|
|
}
|
|
|
|
var swarmAddrsCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "List known addresses. Useful to debug.",
|
|
ShortDescription: `
|
|
ipfs swarm addrs lists all addresses this node is aware of.
|
|
`,
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
|
|
n, err := req.Context().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if n.PeerHost == nil {
|
|
res.SetError(errNotOnline, cmds.ErrClient)
|
|
return
|
|
}
|
|
|
|
addrs := make(map[string][]string)
|
|
ps := n.PeerHost.Network().Peerstore()
|
|
for _, p := range ps.Peers() {
|
|
s := p.Pretty()
|
|
for _, a := range ps.Addrs(p) {
|
|
addrs[s] = append(addrs[s], a.String())
|
|
}
|
|
sort.Sort(sort.StringSlice(addrs[s]))
|
|
}
|
|
|
|
res.SetOutput(&addrMap{Addrs: addrs})
|
|
},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: func(res cmds.Response) (io.Reader, error) {
|
|
m, ok := res.Output().(*addrMap)
|
|
if !ok {
|
|
return nil, errors.New("failed to cast map[string]string")
|
|
}
|
|
|
|
// sort the ids first
|
|
ids := make([]string, 0, len(m.Addrs))
|
|
for p := range m.Addrs {
|
|
ids = append(ids, p)
|
|
}
|
|
sort.Sort(sort.StringSlice(ids))
|
|
|
|
var buf bytes.Buffer
|
|
for _, p := range ids {
|
|
paddrs := m.Addrs[p]
|
|
buf.WriteString(fmt.Sprintf("%s (%d)\n", p, len(paddrs)))
|
|
for _, addr := range paddrs {
|
|
buf.WriteString("\t" + addr + "\n")
|
|
}
|
|
}
|
|
return &buf, nil
|
|
},
|
|
},
|
|
Type: addrMap{},
|
|
}
|
|
|
|
var swarmConnectCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "Open connection to a given address",
|
|
ShortDescription: `
|
|
'ipfs swarm connect' opens a connection to a peer address. The address format
|
|
is an ipfs multiaddr:
|
|
|
|
ipfs swarm connect /ip4/104.131.131.82/tcp/4001/ipfs/QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ
|
|
`,
|
|
},
|
|
Arguments: []cmds.Argument{
|
|
cmds.StringArg("address", true, true, "address of peer to connect to").EnableStdin(),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
ctx := context.TODO()
|
|
|
|
n, err := req.Context().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
addrs := req.Arguments()
|
|
|
|
if n.PeerHost == nil {
|
|
res.SetError(errNotOnline, cmds.ErrClient)
|
|
return
|
|
}
|
|
|
|
pis, err := peersWithAddresses(addrs)
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
output := make([]string, len(pis))
|
|
for i, pi := range pis {
|
|
output[i] = "connect " + pi.ID.Pretty()
|
|
|
|
err := n.PeerHost.Connect(ctx, pi)
|
|
if err != nil {
|
|
output[i] += " failure: " + err.Error()
|
|
} else {
|
|
output[i] += " success"
|
|
}
|
|
}
|
|
|
|
res.SetOutput(&stringList{output})
|
|
},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: stringListMarshaler,
|
|
},
|
|
Type: stringList{},
|
|
}
|
|
|
|
var swarmDisconnectCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "Close connection to a given address",
|
|
ShortDescription: `
|
|
'ipfs swarm disconnect' closes a connection to a peer address. The address format
|
|
is an ipfs multiaddr:
|
|
|
|
ipfs swarm disconnect /ip4/104.131.131.82/tcp/4001/ipfs/QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ
|
|
`,
|
|
},
|
|
Arguments: []cmds.Argument{
|
|
cmds.StringArg("address", true, true, "address of peer to connect to").EnableStdin(),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.Context().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
addrs := req.Arguments()
|
|
|
|
if n.PeerHost == nil {
|
|
res.SetError(errNotOnline, cmds.ErrClient)
|
|
return
|
|
}
|
|
|
|
iaddrs, err := parseAddresses(addrs)
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
output := make([]string, len(iaddrs))
|
|
for i, addr := range iaddrs {
|
|
taddr := addr.Transport()
|
|
output[i] = "disconnect " + addr.ID().Pretty()
|
|
|
|
found := false
|
|
conns := n.PeerHost.Network().ConnsToPeer(addr.ID())
|
|
for _, conn := range conns {
|
|
if !conn.RemoteMultiaddr().Equal(taddr) {
|
|
log.Debug("it's not", conn.RemoteMultiaddr(), taddr)
|
|
continue
|
|
}
|
|
|
|
if err := conn.Close(); err != nil {
|
|
output[i] += " failure: " + err.Error()
|
|
} else {
|
|
output[i] += " success"
|
|
}
|
|
found = true
|
|
break
|
|
}
|
|
|
|
if !found {
|
|
output[i] += " failure: conn not found"
|
|
}
|
|
}
|
|
res.SetOutput(&stringList{output})
|
|
},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: stringListMarshaler,
|
|
},
|
|
Type: stringList{},
|
|
}
|
|
|
|
func stringListMarshaler(res cmds.Response) (io.Reader, error) {
|
|
list, ok := res.Output().(*stringList)
|
|
if !ok {
|
|
return nil, errors.New("failed to cast []string")
|
|
}
|
|
|
|
var buf bytes.Buffer
|
|
for _, s := range list.Strings {
|
|
buf.WriteString(s)
|
|
buf.WriteString("\n")
|
|
}
|
|
return &buf, nil
|
|
}
|
|
|
|
// parseAddresses is a function that takes in a slice of string peer addresses
|
|
// (multiaddr + peerid) and returns slices of multiaddrs and peerids.
|
|
func parseAddresses(addrs []string) (iaddrs []iaddr.IPFSAddr, err error) {
|
|
iaddrs = make([]iaddr.IPFSAddr, len(addrs))
|
|
for i, saddr := range addrs {
|
|
iaddrs[i], err = iaddr.ParseString(saddr)
|
|
if err != nil {
|
|
return nil, cmds.ClientError("invalid peer address: " + err.Error())
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// peersWithAddresses is a function that takes in a slice of string peer addresses
|
|
// (multiaddr + peerid) and returns a slice of properly constructed peers
|
|
func peersWithAddresses(addrs []string) (pis []peer.PeerInfo, err error) {
|
|
iaddrs, err := parseAddresses(addrs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, iaddr := range iaddrs {
|
|
pis = append(pis, peer.PeerInfo{
|
|
ID: iaddr.ID(),
|
|
Addrs: []ma.Multiaddr{iaddr.Transport()},
|
|
})
|
|
}
|
|
return pis, nil
|
|
}
|