ping.go 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
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) {
36
37
38
	ctx, cancel := context.WithCancel(context.Background())
	defer cancel()

Jeromy's avatar
Jeromy committed
39
40
	buf := make([]byte, PingSize)

41
42
43
44
45
46
47
48
49
50
51
52
	timer := time.NewTimer(pingTimeout)
	defer timer.Stop()

	go func() {
		select {
		case <-timer.C:
		case <-ctx.Done():
		}

		s.Close()
	}()

Jeromy's avatar
Jeromy committed
53
54
55
56
57
58
59
60
61
62
63
64
	for {
		_, err := io.ReadFull(s, buf)
		if err != nil {
			log.Debug(err)
			return
		}

		_, err = s.Write(buf)
		if err != nil {
			log.Debug(err)
			return
		}
65
66

		timer.Reset(pingTimeout)
Jeromy's avatar
Jeromy committed
67
68
69
70
	}
}

func (ps *PingService) Ping(ctx context.Context, p peer.ID) (<-chan time.Duration, error) {
71
	s, err := ps.Host.NewStream(ctx, p, ID)
Jeromy's avatar
Jeromy committed
72
73
74
75
76
77
78
	if err != nil {
		return nil, err
	}

	out := make(chan time.Duration)
	go func() {
		defer close(out)
79
		defer s.Close()
Jeromy's avatar
Jeromy committed
80
81
82
83
84
85
86
87
88
89
90
		for {
			select {
			case <-ctx.Done():
				return
			default:
				t, err := ping(s)
				if err != nil {
					log.Debugf("ping error: %s", err)
					return
				}

Jeromy's avatar
Jeromy committed
91
				ps.Host.Peerstore().RecordLatency(p, t)
Jeromy's avatar
Jeromy committed
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
				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
124
	return time.Since(before), nil
Jeromy's avatar
Jeromy committed
125
}