protocols.go 3.9 KB
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1 2
package multiaddr

3 4
import (
	"encoding/binary"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
5 6
	"fmt"
	"strings"
mwnx's avatar
mwnx committed
7
	"math/bits"
8 9
)

10
// Protocol is a Multiaddr protocol description structure.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
11
type Protocol struct {
12 13 14 15 16 17
	Code       int
	Size       int // a size of -1 indicates a length-prefixed variable size
	Name       string
	VCode      []byte
	Path       bool // indicates a path protocol (eg unix, http)
	Transcoder Transcoder
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
18 19
}

20 21 22 23 24
// You **MUST** register your multicodecs with
// https://github.com/multiformats/multicodec before adding them here.
//
// TODO: Use a single source of truth for all multicodecs instead of
// distributing them like this...
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
25
const (
26 27 28 29 30
	P_IP4   = 0x0004
	P_TCP   = 0x0006
	P_UDP   = 0x0111
	P_DCCP  = 0x0021
	P_IP6   = 0x0029
31
	P_QUIC  = 0x01CC
32 33 34 35 36 37 38 39
	P_SCTP  = 0x0084
	P_UDT   = 0x012D
	P_UTP   = 0x012E
	P_UNIX  = 0x0190
	P_IPFS  = 0x01A5
	P_HTTP  = 0x01E0
	P_HTTPS = 0x01BB
	P_ONION = 0x01BC
40 41 42 43 44
)

// These are special sizes
const (
	LengthPrefixedVarSize = -1
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
45 46
)

47
// Protocols is the list of multiaddr protocols supported by this module.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
48
var Protocols = []Protocol{
49 50 51 52 53
	Protocol{P_IP4, 32, "ip4", CodeToVarint(P_IP4), false, TranscoderIP4},
	Protocol{P_TCP, 16, "tcp", CodeToVarint(P_TCP), false, TranscoderPort},
	Protocol{P_UDP, 16, "udp", CodeToVarint(P_UDP), false, TranscoderPort},
	Protocol{P_DCCP, 16, "dccp", CodeToVarint(P_DCCP), false, TranscoderPort},
	Protocol{P_IP6, 128, "ip6", CodeToVarint(P_IP6), false, TranscoderIP6},
Juan Batiz-Benet's avatar
gofmt  
Juan Batiz-Benet committed
54
	// these require varint:
55 56 57 58
	Protocol{P_SCTP, 16, "sctp", CodeToVarint(P_SCTP), false, TranscoderPort},
	Protocol{P_ONION, 96, "onion", CodeToVarint(P_ONION), false, TranscoderOnion},
	Protocol{P_UTP, 0, "utp", CodeToVarint(P_UTP), false, nil},
	Protocol{P_UDT, 0, "udt", CodeToVarint(P_UDT), false, nil},
Marten Seemann's avatar
Marten Seemann committed
59
	Protocol{P_QUIC, 0, "quic", CodeToVarint(P_QUIC), false, nil},
60 61 62 63
	Protocol{P_HTTP, 0, "http", CodeToVarint(P_HTTP), false, nil},
	Protocol{P_HTTPS, 0, "https", CodeToVarint(P_HTTPS), false, nil},
	Protocol{P_IPFS, LengthPrefixedVarSize, "ipfs", CodeToVarint(P_IPFS), false, TranscoderIPFS},
	Protocol{P_UNIX, LengthPrefixedVarSize, "unix", CodeToVarint(P_UNIX), true, TranscoderUnix},
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
64 65
}

Jeromy's avatar
Jeromy committed
66 67 68 69 70 71 72 73 74 75 76 77 78 79
func AddProtocol(p Protocol) error {
	for _, pt := range Protocols {
		if pt.Code == p.Code {
			return fmt.Errorf("protocol code %d already taken by %q", p.Code, pt.Name)
		}
		if pt.Name == p.Name {
			return fmt.Errorf("protocol by the name %q already exists", p.Name)
		}
	}

	Protocols = append(Protocols, p)
	return nil
}

80
// ProtocolWithName returns the Protocol description with given string name.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
81
func ProtocolWithName(s string) Protocol {
Juan Batiz-Benet's avatar
gofmt  
Juan Batiz-Benet committed
82 83 84 85 86
	for _, p := range Protocols {
		if p.Name == s {
			return p
		}
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
87
	return Protocol{}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
88 89
}

90
// ProtocolWithCode returns the Protocol description with given protocol code.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
91
func ProtocolWithCode(c int) Protocol {
Juan Batiz-Benet's avatar
gofmt  
Juan Batiz-Benet committed
92 93 94 95 96
	for _, p := range Protocols {
		if p.Code == c {
			return p
		}
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
97
	return Protocol{}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
98
}
99

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
// ProtocolsWithString returns a slice of protocols matching given string.
func ProtocolsWithString(s string) ([]Protocol, error) {
	s = strings.Trim(s, "/")
	sp := strings.Split(s, "/")
	if len(sp) == 0 {
		return nil, nil
	}

	t := make([]Protocol, len(sp))
	for i, name := range sp {
		p := ProtocolWithName(name)
		if p.Code == 0 {
			return nil, fmt.Errorf("no protocol with name: %s", name)
		}
		t[i] = p
	}
	return t, nil
}

119 120
// CodeToVarint converts an integer to a varint-encoded []byte
func CodeToVarint(num int) []byte {
mwnx's avatar
mwnx committed
121
	buf := make([]byte, bits.Len(uint(num))/7 + 1)
122 123 124 125 126 127
	n := binary.PutUvarint(buf, uint64(num))
	return buf[:n]
}

// VarintToCode converts a varint-encoded []byte to an integer protocol code
func VarintToCode(buf []byte) int {
128 129 130 131
	num, _, err := ReadVarintCode(buf)
	if err != nil {
		panic(err)
	}
132 133 134 135 136
	return num
}

// ReadVarintCode reads a varint code from the beginning of buf.
// returns the code, and the number of bytes read.
137
func ReadVarintCode(buf []byte) (int, int, error) {
138 139
	num, n := binary.Uvarint(buf)
	if n < 0 {
140
		return 0, 0, fmt.Errorf("varints larger than uint64 not yet supported")
141
	}
142
	return int(num), n, nil
143
}