ping.go 2.2 KB
Newer Older
Jeromy's avatar
Jeromy committed
1
2
3
4
package ping

import (
	"bytes"
5
	"context"
Jeromy's avatar
Jeromy committed
6
7
8
9
	"errors"
	"io"
	"time"

Jeromy's avatar
Jeromy committed
10
11
	u "github.com/ipfs/go-ipfs-util"
	logging "github.com/ipfs/go-log"
Jeromy's avatar
Jeromy committed
12
	host "github.com/libp2p/go-libp2p-host"
Jeromy's avatar
Jeromy committed
13
	inet "github.com/libp2p/go-libp2p-net"
Jeromy's avatar
Jeromy committed
14
	peer "github.com/libp2p/go-libp2p-peer"
Jeromy's avatar
Jeromy committed
15
16
)

Jeromy's avatar
Jeromy committed
17
var log = logging.Logger("ping")
Jeromy's avatar
Jeromy committed
18
19
20

const PingSize = 32

Jeromy's avatar
Jeromy committed
21
const ID = "/ipfs/ping/1.0.0"
Jeromy's avatar
Jeromy committed
22

23
24
const pingTimeout = time.Second * 60

Jeromy's avatar
Jeromy committed
25
26
27
28
29
30
31
32
33
34
35
36
37
type PingService struct {
	Host host.Host
}

func NewPingService(h host.Host) *PingService {
	ps := &PingService{h}
	h.SetStreamHandler(ID, ps.PingHandler)
	return ps
}

func (p *PingService) PingHandler(s inet.Stream) {
	buf := make([]byte, PingSize)

Steven Allen's avatar
Steven Allen committed
38
39
	errCh := make(chan error, 1)
	defer close(errCh)
40
41
42
43
44
45
	timer := time.NewTimer(pingTimeout)
	defer timer.Stop()

	go func() {
		select {
		case <-timer.C:
Steven Allen's avatar
Steven Allen committed
46
47
48
49
50
51
52
			log.Debug("ping timeout")
		case err, ok := <-errCh:
			if ok {
				log.Debug(err)
			} else {
				log.Error("ping loop failed without error")
			}
53
		}
54
		s.Reset()
55
56
	}()

Jeromy's avatar
Jeromy committed
57
58
59
	for {
		_, err := io.ReadFull(s, buf)
		if err != nil {
Steven Allen's avatar
Steven Allen committed
60
			errCh <- err
Jeromy's avatar
Jeromy committed
61
62
63
64
65
			return
		}

		_, err = s.Write(buf)
		if err != nil {
Steven Allen's avatar
Steven Allen committed
66
			errCh <- err
Jeromy's avatar
Jeromy committed
67
68
			return
		}
69
70

		timer.Reset(pingTimeout)
Jeromy's avatar
Jeromy committed
71
72
73
74
	}
}

func (ps *PingService) Ping(ctx context.Context, p peer.ID) (<-chan time.Duration, error) {
vyzo's avatar
vyzo committed
75
76
77
78
79
	return Ping(ctx, ps.Host, p)
}

func Ping(ctx context.Context, h host.Host, p peer.ID) (<-chan time.Duration, error) {
	s, err := h.NewStream(ctx, p, ID)
Jeromy's avatar
Jeromy committed
80
81
82
83
84
85
86
	if err != nil {
		return nil, err
	}

	out := make(chan time.Duration)
	go func() {
		defer close(out)
87
		defer s.Reset()
Jeromy's avatar
Jeromy committed
88
89
90
91
92
93
94
95
96
97
98
		for {
			select {
			case <-ctx.Done():
				return
			default:
				t, err := ping(s)
				if err != nil {
					log.Debugf("ping error: %s", err)
					return
				}

vyzo's avatar
vyzo committed
99
				h.Peerstore().RecordLatency(p, t)
Jeromy's avatar
Jeromy committed
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
				select {
				case out <- t:
				case <-ctx.Done():
					return
				}
			}
		}
	}()

	return out, nil
}

func ping(s inet.Stream) (time.Duration, error) {
	buf := make([]byte, PingSize)
	u.NewTimeSeededRand().Read(buf)

	before := time.Now()
	_, err := s.Write(buf)
	if err != nil {
		return 0, err
	}

	rbuf := make([]byte, PingSize)
	_, err = io.ReadFull(s, rbuf)
	if err != nil {
		return 0, err
	}

	if !bytes.Equal(buf, rbuf) {
		return 0, errors.New("ping packet was incorrect!")
	}

John Steidley's avatar
John Steidley committed
132
	return time.Since(before), nil
Jeromy's avatar
Jeromy committed
133
}