You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

351 lines
8.8 KiB

9 years ago
9 years ago
9 years ago
7 years ago
7 years ago
9 years ago
8 years ago
9 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
7 years ago
7 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
9 years ago
9 years ago
8 years ago
9 years ago
9 years ago
9 years ago
8 years ago
9 years ago
7 years ago
7 years ago
7 years ago
8 years ago
9 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
7 years ago
7 years ago
8 years ago
7 years ago
8 years ago
  1. package p2p
  2. import (
  3. "fmt"
  4. "io"
  5. "net"
  6. "time"
  7. "github.com/pkg/errors"
  8. crypto "github.com/tendermint/go-crypto"
  9. wire "github.com/tendermint/go-wire"
  10. cmn "github.com/tendermint/tmlibs/common"
  11. "github.com/tendermint/tmlibs/log"
  12. )
  13. // Peer is an interface representing a peer connected on a reactor.
  14. type Peer interface {
  15. cmn.Service
  16. Key() string
  17. IsOutbound() bool
  18. IsPersistent() bool
  19. NodeInfo() *NodeInfo
  20. Status() ConnectionStatus
  21. Send(byte, interface{}) bool
  22. TrySend(byte, interface{}) bool
  23. Set(string, interface{})
  24. Get(string) interface{}
  25. }
  26. // Peer could be marked as persistent, in which case you can use
  27. // Redial function to reconnect. Note that inbound peers can't be
  28. // made persistent. They should be made persistent on the other end.
  29. //
  30. // Before using a peer, you will need to perform a handshake on connection.
  31. type peer struct {
  32. cmn.BaseService
  33. outbound bool
  34. conn net.Conn // source connection
  35. mconn *MConnection // multiplex connection
  36. persistent bool
  37. config *PeerConfig
  38. nodeInfo *NodeInfo
  39. key string
  40. Data *cmn.CMap // User data.
  41. }
  42. // PeerConfig is a Peer configuration.
  43. type PeerConfig struct {
  44. AuthEnc bool `mapstructure:"auth_enc"` // authenticated encryption
  45. // times are in seconds
  46. HandshakeTimeout time.Duration `mapstructure:"handshake_timeout"`
  47. DialTimeout time.Duration `mapstructure:"dial_timeout"`
  48. MConfig *MConnConfig `mapstructure:"connection"`
  49. Fuzz bool `mapstructure:"fuzz"` // fuzz connection (for testing)
  50. FuzzConfig *FuzzConnConfig `mapstructure:"fuzz_config"`
  51. }
  52. // DefaultPeerConfig returns the default config.
  53. func DefaultPeerConfig() *PeerConfig {
  54. return &PeerConfig{
  55. AuthEnc: true,
  56. HandshakeTimeout: 20, // * time.Second,
  57. DialTimeout: 3, // * time.Second,
  58. MConfig: DefaultMConnConfig(),
  59. Fuzz: false,
  60. FuzzConfig: DefaultFuzzConnConfig(),
  61. }
  62. }
  63. func newOutboundPeer(addr *NetAddress, reactorsByCh map[byte]Reactor, chDescs []*ChannelDescriptor,
  64. onPeerError func(Peer, interface{}), ourNodePrivKey crypto.PrivKeyEd25519, config *PeerConfig) (*peer, error) {
  65. conn, err := dial(addr, config)
  66. if err != nil {
  67. return nil, errors.Wrap(err, "Error creating peer")
  68. }
  69. peer, err := newPeerFromConnAndConfig(conn, true, reactorsByCh, chDescs, onPeerError, ourNodePrivKey, config)
  70. if err != nil {
  71. conn.Close()
  72. return nil, err
  73. }
  74. return peer, nil
  75. }
  76. func newInboundPeer(conn net.Conn, reactorsByCh map[byte]Reactor, chDescs []*ChannelDescriptor,
  77. onPeerError func(Peer, interface{}), ourNodePrivKey crypto.PrivKeyEd25519, config *PeerConfig) (*peer, error) {
  78. return newPeerFromConnAndConfig(conn, false, reactorsByCh, chDescs, onPeerError, ourNodePrivKey, config)
  79. }
  80. func newPeerFromConnAndConfig(rawConn net.Conn, outbound bool, reactorsByCh map[byte]Reactor, chDescs []*ChannelDescriptor,
  81. onPeerError func(Peer, interface{}), ourNodePrivKey crypto.PrivKeyEd25519, config *PeerConfig) (*peer, error) {
  82. conn := rawConn
  83. // Fuzz connection
  84. if config.Fuzz {
  85. // so we have time to do peer handshakes and get set up
  86. conn = FuzzConnAfterFromConfig(conn, 10*time.Second, config.FuzzConfig)
  87. }
  88. // Encrypt connection
  89. if config.AuthEnc {
  90. conn.SetDeadline(time.Now().Add(config.HandshakeTimeout * time.Second))
  91. var err error
  92. conn, err = MakeSecretConnection(conn, ourNodePrivKey)
  93. if err != nil {
  94. return nil, errors.Wrap(err, "Error creating peer")
  95. }
  96. }
  97. // Key and NodeInfo are set after Handshake
  98. p := &peer{
  99. outbound: outbound,
  100. conn: conn,
  101. config: config,
  102. Data: cmn.NewCMap(),
  103. }
  104. p.mconn = createMConnection(conn, p, reactorsByCh, chDescs, onPeerError, config.MConfig)
  105. p.BaseService = *cmn.NewBaseService(nil, "Peer", p)
  106. return p, nil
  107. }
  108. func (p *peer) SetLogger(l log.Logger) {
  109. p.Logger = l
  110. p.mconn.SetLogger(l)
  111. }
  112. // CloseConn should be used when the peer was created, but never started.
  113. func (p *peer) CloseConn() {
  114. p.conn.Close()
  115. }
  116. // makePersistent marks the peer as persistent.
  117. func (p *peer) makePersistent() {
  118. if !p.outbound {
  119. panic("inbound peers can't be made persistent")
  120. }
  121. p.persistent = true
  122. }
  123. // IsPersistent returns true if the peer is persitent, false otherwise.
  124. func (p *peer) IsPersistent() bool {
  125. return p.persistent
  126. }
  127. // HandshakeTimeout performs a handshake between a given node and the peer.
  128. // NOTE: blocking
  129. func (p *peer) HandshakeTimeout(ourNodeInfo *NodeInfo, timeout time.Duration) error {
  130. // Set deadline for handshake so we don't block forever on conn.ReadFull
  131. p.conn.SetDeadline(time.Now().Add(timeout))
  132. var peerNodeInfo = new(NodeInfo)
  133. var err1 error
  134. var err2 error
  135. cmn.Parallel(
  136. func() {
  137. var n int
  138. wire.WriteBinary(ourNodeInfo, p.conn, &n, &err1)
  139. },
  140. func() {
  141. var n int
  142. wire.ReadBinary(peerNodeInfo, p.conn, maxNodeInfoSize, &n, &err2)
  143. p.Logger.Info("Peer handshake", "peerNodeInfo", peerNodeInfo)
  144. })
  145. if err1 != nil {
  146. return errors.Wrap(err1, "Error during handshake/write")
  147. }
  148. if err2 != nil {
  149. return errors.Wrap(err2, "Error during handshake/read")
  150. }
  151. if p.config.AuthEnc {
  152. // Check that the professed PubKey matches the sconn's.
  153. if !peerNodeInfo.PubKey.Equals(p.PubKey().Wrap()) {
  154. return fmt.Errorf("Ignoring connection with unmatching pubkey: %v vs %v",
  155. peerNodeInfo.PubKey, p.PubKey())
  156. }
  157. }
  158. // Remove deadline
  159. p.conn.SetDeadline(time.Time{})
  160. peerNodeInfo.RemoteAddr = p.Addr().String()
  161. p.nodeInfo = peerNodeInfo
  162. p.key = peerNodeInfo.PubKey.KeyString()
  163. return nil
  164. }
  165. // Addr returns peer's remote network address.
  166. func (p *peer) Addr() net.Addr {
  167. return p.conn.RemoteAddr()
  168. }
  169. // PubKey returns peer's public key.
  170. func (p *peer) PubKey() crypto.PubKeyEd25519 {
  171. if p.config.AuthEnc {
  172. return p.conn.(*SecretConnection).RemotePubKey()
  173. }
  174. if p.NodeInfo() == nil {
  175. panic("Attempt to get peer's PubKey before calling Handshake")
  176. }
  177. return p.PubKey()
  178. }
  179. // OnStart implements BaseService.
  180. func (p *peer) OnStart() error {
  181. p.BaseService.OnStart()
  182. _, err := p.mconn.Start()
  183. return err
  184. }
  185. // OnStop implements BaseService.
  186. func (p *peer) OnStop() {
  187. p.BaseService.OnStop()
  188. p.mconn.Stop()
  189. }
  190. // Connection returns underlying MConnection.
  191. func (p *peer) Connection() *MConnection {
  192. return p.mconn
  193. }
  194. // IsOutbound returns true if the connection is outbound, false otherwise.
  195. func (p *peer) IsOutbound() bool {
  196. return p.outbound
  197. }
  198. // Send msg to the channel identified by chID byte. Returns false if the send
  199. // queue is full after timeout, specified by MConnection.
  200. func (p *peer) Send(chID byte, msg interface{}) bool {
  201. if !p.IsRunning() {
  202. // see Switch#Broadcast, where we fetch the list of peers and loop over
  203. // them - while we're looping, one peer may be removed and stopped.
  204. return false
  205. }
  206. return p.mconn.Send(chID, msg)
  207. }
  208. // TrySend msg to the channel identified by chID byte. Immediately returns
  209. // false if the send queue is full.
  210. func (p *peer) TrySend(chID byte, msg interface{}) bool {
  211. if !p.IsRunning() {
  212. return false
  213. }
  214. return p.mconn.TrySend(chID, msg)
  215. }
  216. // CanSend returns true if the send queue is not full, false otherwise.
  217. func (p *peer) CanSend(chID byte) bool {
  218. if !p.IsRunning() {
  219. return false
  220. }
  221. return p.mconn.CanSend(chID)
  222. }
  223. // WriteTo writes the peer's public key to w.
  224. func (p *peer) WriteTo(w io.Writer) (int64, error) {
  225. var n int
  226. var err error
  227. wire.WriteString(p.key, w, &n, &err)
  228. return int64(n), err
  229. }
  230. // String representation.
  231. func (p *peer) String() string {
  232. if p.outbound {
  233. return fmt.Sprintf("Peer{%v %v out}", p.mconn, p.key[:12])
  234. }
  235. return fmt.Sprintf("Peer{%v %v in}", p.mconn, p.key[:12])
  236. }
  237. // Equals reports whenever 2 peers are actually represent the same node.
  238. func (p *peer) Equals(other Peer) bool {
  239. return p.key == other.Key()
  240. }
  241. // Get the data for a given key.
  242. func (p *peer) Get(key string) interface{} {
  243. return p.Data.Get(key)
  244. }
  245. // Set sets the data for the given key.
  246. func (p *peer) Set(key string, data interface{}) {
  247. p.Data.Set(key, data)
  248. }
  249. // Key returns the peer's id key.
  250. func (p *peer) Key() string {
  251. return p.key
  252. }
  253. // NodeInfo returns a copy of the peer's NodeInfo.
  254. func (p *peer) NodeInfo() *NodeInfo {
  255. if p.nodeInfo == nil {
  256. return nil
  257. }
  258. n := *p.nodeInfo // copy
  259. return &n
  260. }
  261. // Status returns the peer's ConnectionStatus.
  262. func (p *peer) Status() ConnectionStatus {
  263. return p.mconn.Status()
  264. }
  265. func dial(addr *NetAddress, config *PeerConfig) (net.Conn, error) {
  266. conn, err := addr.DialTimeout(config.DialTimeout * time.Second)
  267. if err != nil {
  268. return nil, err
  269. }
  270. return conn, nil
  271. }
  272. func createMConnection(conn net.Conn, p *peer, reactorsByCh map[byte]Reactor, chDescs []*ChannelDescriptor,
  273. onPeerError func(Peer, interface{}), config *MConnConfig) *MConnection {
  274. onReceive := func(chID byte, msgBytes []byte) {
  275. reactor := reactorsByCh[chID]
  276. if reactor == nil {
  277. cmn.PanicSanity(cmn.Fmt("Unknown channel %X", chID))
  278. }
  279. reactor.Receive(chID, p, msgBytes)
  280. }
  281. onError := func(r interface{}) {
  282. onPeerError(p, r)
  283. }
  284. return NewMConnectionWithConfig(conn, chDescs, onReceive, onError, config)
  285. }