mirror of
https://github.com/ipfs/kubo.git
synced 2025-05-21 08:56:37 +08:00

* reduces help indent from 4 to 2 spaces License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * reduces horz/vert space taken by "ipfs" cmd License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * show subcommands on shorthelp License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Drops colons at the end of cmd headings. This makes command headings consistent with the output of 'ipfs', which does not include colons. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * more consistent output between short-/long-help License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Puts DESCRIPTION before SUBCOMMANDS. Users likely want to understand what a command does before worrying about its subcommands. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Keeps ipfs cmd from outputting its subcmds twice. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes redundant synopsis from "file" License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes extra whitespace from longhelp License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Consistent spacing whether SUBCMDS or not. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes redundant SUBCMD output from ipfs object. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes redundant synopsis from "name" License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Newline after Description only if it exists. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes redundant synopsis from "bootstrap" License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes redundant synopsis from "swarm" License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes trailing newline in ping help. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Prints shorthelp on parse error. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * tiny comment fixes License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * updates README usage License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Don't include extra whitespace if no .MoreHelp License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * description improvements License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Hides the obscure 'file' subcommand. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Splits 'ipfs daemon' into Short and Long help. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes redundant synopsis from "config" License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Wraps lines to keep from going over 80. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * specify repo separately License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * s/structure/hierarchy License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * missing . License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes trailing colon from 'usage' test. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Updates sharness test error messages. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes trailing colon from 'usage' test. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Updates add-symlink to use /bin/sh. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Removes "hierarchy". License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io> * Updates "ipfs ping" synopsis. * Updates t0040 with latest wording. * Removes unnecessary daemon setup. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io>
508 lines
12 KiB
Go
508 lines
12 KiB
Go
package commands
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"path"
|
|
"sort"
|
|
|
|
cmds "github.com/ipfs/go-ipfs/commands"
|
|
iaddr "github.com/ipfs/go-ipfs/thirdparty/ipfsaddr"
|
|
swarm "gx/ipfs/QmXDvxcXUYn2DDnGKJwdQPxkJgG83jBTp5UmmNzeHzqbj5/go-libp2p/p2p/net/swarm"
|
|
peer "gx/ipfs/QmZwZjMVGss5rqYsJVGy18gNbkTJffFyq2x1uJ4e4p3ZAt/go-libp2p-peer"
|
|
|
|
ma "gx/ipfs/QmcobAGsCjYt5DXoq9et9L8yR8er7o7Cu3DTvpaq12jYSz/go-multiaddr"
|
|
mafilter "gx/ipfs/Qme8dipKnZAChkp5Kfgj2MYYyBbzjqqPXmxQx3g9v3MoxP/multiaddr-filter"
|
|
)
|
|
|
|
type stringList struct {
|
|
Strings []string
|
|
}
|
|
|
|
type addrMap struct {
|
|
Addrs map[string][]string
|
|
}
|
|
|
|
var SwarmCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "Swarm inspection tool.",
|
|
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{
|
|
"addrs": swarmAddrsCmd,
|
|
"connect": swarmConnectCmd,
|
|
"disconnect": swarmDisconnectCmd,
|
|
"filters": swarmFiltersCmd,
|
|
"peers": swarmPeersCmd,
|
|
},
|
|
}
|
|
|
|
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.InvocContext().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 for debugging.",
|
|
ShortDescription: `
|
|
'ipfs swarm addrs' lists all addresses this node is aware of.
|
|
`,
|
|
},
|
|
Subcommands: map[string]*cmds.Command{
|
|
"local": swarmAddrsLocalCmd,
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
|
|
n, err := req.InvocContext().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))
|
|
|
|
buf := new(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 swarmAddrsLocalCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "List local addresses.",
|
|
ShortDescription: `
|
|
'ipfs swarm addrs local' lists all local addresses the node is listening on.
|
|
`,
|
|
},
|
|
Options: []cmds.Option{
|
|
cmds.BoolOption("id", "Show peer ID in addresses."),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if n.PeerHost == nil {
|
|
res.SetError(errNotOnline, cmds.ErrClient)
|
|
return
|
|
}
|
|
|
|
showid, _, _ := req.Option("id").Bool()
|
|
id := n.Identity.Pretty()
|
|
|
|
var addrs []string
|
|
for _, addr := range n.PeerHost.Addrs() {
|
|
saddr := addr.String()
|
|
if showid {
|
|
saddr = path.Join(saddr, "ipfs", id)
|
|
}
|
|
addrs = append(addrs, saddr)
|
|
}
|
|
sort.Sort(sort.StringSlice(addrs))
|
|
|
|
res.SetOutput(&stringList{addrs})
|
|
},
|
|
Type: stringList{},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: stringListMarshaler,
|
|
},
|
|
}
|
|
|
|
var swarmConnectCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "Open connection to a given address.",
|
|
ShortDescription: `
|
|
'ipfs swarm connect' opens a new direct 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 := req.Context()
|
|
|
|
n, err := req.InvocContext().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 {
|
|
res.SetError(fmt.Errorf("%s failure: %s", output[i], err), cmds.ErrNormal)
|
|
return
|
|
}
|
|
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
|
|
|
|
The disconnect is not permanent; if ipfs needs to talk to that address later, it will reconnect.
|
|
`,
|
|
},
|
|
Arguments: []cmds.Argument{
|
|
cmds.StringArg("address", true, true, "Address of peer to disconnect from.").EnableStdin(),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().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")
|
|
}
|
|
|
|
buf := new(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
|
|
}
|
|
|
|
var swarmFiltersCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "Manipulate address filters.",
|
|
ShortDescription: `
|
|
'ipfs swarm filters' will list out currently applied filters. Its subcommands can be used
|
|
to add or remove said filters. Filters are specified using the multiaddr-filter format:
|
|
|
|
example:
|
|
|
|
/ip4/192.168.0.0/ipcidr/16
|
|
|
|
Where the above is equivalent to the standard CIDR:
|
|
|
|
192.168.0.0/16
|
|
|
|
Filters default to those specified under the "Swarm.AddrFilters" config key.
|
|
`,
|
|
},
|
|
Subcommands: map[string]*cmds.Command{
|
|
"add": swarmFiltersAddCmd,
|
|
"rm": swarmFiltersRmCmd,
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if n.PeerHost == nil {
|
|
res.SetError(errNotOnline, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
snet, ok := n.PeerHost.Network().(*swarm.Network)
|
|
if !ok {
|
|
res.SetError(errors.New("failed to cast network to swarm network"), cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
var output []string
|
|
for _, f := range snet.Filters.Filters() {
|
|
s, err := mafilter.ConvertIPNet(f)
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
output = append(output, s)
|
|
}
|
|
res.SetOutput(&stringList{output})
|
|
},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: stringListMarshaler,
|
|
},
|
|
Type: stringList{},
|
|
}
|
|
|
|
var swarmFiltersAddCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "Add an address filter.",
|
|
ShortDescription: `
|
|
'ipfs swarm filters add' will add an address filter to the daemons swarm.
|
|
Filters applied this way will not persist daemon reboots, to achieve that,
|
|
add your filters to the ipfs config file.
|
|
`,
|
|
},
|
|
Arguments: []cmds.Argument{
|
|
cmds.StringArg("address", true, true, "Multiaddr to filter.").EnableStdin(),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if n.PeerHost == nil {
|
|
res.SetError(errNotOnline, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
snet, ok := n.PeerHost.Network().(*swarm.Network)
|
|
if !ok {
|
|
res.SetError(errors.New("failed to cast network to swarm network"), cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
for _, arg := range req.Arguments() {
|
|
mask, err := mafilter.NewMask(arg)
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
snet.Filters.AddDialFilter(mask)
|
|
}
|
|
},
|
|
}
|
|
|
|
var swarmFiltersRmCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "Remove an address filter.",
|
|
ShortDescription: `
|
|
'ipfs swarm filters rm' will remove an address filter from the daemons swarm.
|
|
Filters removed this way will not persist daemon reboots, to achieve that,
|
|
remove your filters from the ipfs config file.
|
|
`,
|
|
},
|
|
Arguments: []cmds.Argument{
|
|
cmds.StringArg("address", true, true, "Multiaddr filter to remove.").EnableStdin(),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if n.PeerHost == nil {
|
|
res.SetError(errNotOnline, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
snet, ok := n.PeerHost.Network().(*swarm.Network)
|
|
if !ok {
|
|
res.SetError(errors.New("failed to cast network to swarm network"), cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if req.Arguments()[0] == "all" || req.Arguments()[0] == "*" {
|
|
fs := snet.Filters.Filters()
|
|
for _, f := range fs {
|
|
snet.Filters.Remove(f)
|
|
}
|
|
return
|
|
}
|
|
|
|
for _, arg := range req.Arguments() {
|
|
mask, err := mafilter.NewMask(arg)
|
|
if err != nil {
|
|
res.SetError(err, cmds.ErrNormal)
|
|
return
|
|
}
|
|
|
|
snet.Filters.Remove(mask)
|
|
}
|
|
},
|
|
}
|