]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/asio/example/cpp03/icmp/ping.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / icmp / ping.cpp
1 //
2 // ping.cpp
3 // ~~~~~~~~
4 //
5 // Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
10
11 #include <boost/asio.hpp>
12 #include <boost/bind.hpp>
13 #include <istream>
14 #include <iostream>
15 #include <ostream>
16
17 #include "icmp_header.hpp"
18 #include "ipv4_header.hpp"
19
20 using boost::asio::ip::icmp;
21 using boost::asio::deadline_timer;
22 namespace posix_time = boost::posix_time;
23
24 class pinger
25 {
26 public:
27 pinger(boost::asio::io_context& io_context, const char* destination)
28 : resolver_(io_context), socket_(io_context, icmp::v4()),
29 timer_(io_context), sequence_number_(0), num_replies_(0)
30 {
31 destination_ = *resolver_.resolve(icmp::v4(), destination, "").begin();
32
33 start_send();
34 start_receive();
35 }
36
37 private:
38 void start_send()
39 {
40 std::string body("\"Hello!\" from Asio ping.");
41
42 // Create an ICMP header for an echo request.
43 icmp_header echo_request;
44 echo_request.type(icmp_header::echo_request);
45 echo_request.code(0);
46 echo_request.identifier(get_identifier());
47 echo_request.sequence_number(++sequence_number_);
48 compute_checksum(echo_request, body.begin(), body.end());
49
50 // Encode the request packet.
51 boost::asio::streambuf request_buffer;
52 std::ostream os(&request_buffer);
53 os << echo_request << body;
54
55 // Send the request.
56 time_sent_ = posix_time::microsec_clock::universal_time();
57 socket_.send_to(request_buffer.data(), destination_);
58
59 // Wait up to five seconds for a reply.
60 num_replies_ = 0;
61 timer_.expires_at(time_sent_ + posix_time::seconds(5));
62 timer_.async_wait(boost::bind(&pinger::handle_timeout, this));
63 }
64
65 void handle_timeout()
66 {
67 if (num_replies_ == 0)
68 std::cout << "Request timed out" << std::endl;
69
70 // Requests must be sent no less than one second apart.
71 timer_.expires_at(time_sent_ + posix_time::seconds(1));
72 timer_.async_wait(boost::bind(&pinger::start_send, this));
73 }
74
75 void start_receive()
76 {
77 // Discard any data already in the buffer.
78 reply_buffer_.consume(reply_buffer_.size());
79
80 // Wait for a reply. We prepare the buffer to receive up to 64KB.
81 socket_.async_receive(reply_buffer_.prepare(65536),
82 boost::bind(&pinger::handle_receive, this, _2));
83 }
84
85 void handle_receive(std::size_t length)
86 {
87 // The actual number of bytes received is committed to the buffer so that we
88 // can extract it using a std::istream object.
89 reply_buffer_.commit(length);
90
91 // Decode the reply packet.
92 std::istream is(&reply_buffer_);
93 ipv4_header ipv4_hdr;
94 icmp_header icmp_hdr;
95 is >> ipv4_hdr >> icmp_hdr;
96
97 // We can receive all ICMP packets received by the host, so we need to
98 // filter out only the echo replies that match the our identifier and
99 // expected sequence number.
100 if (is && icmp_hdr.type() == icmp_header::echo_reply
101 && icmp_hdr.identifier() == get_identifier()
102 && icmp_hdr.sequence_number() == sequence_number_)
103 {
104 // If this is the first reply, interrupt the five second timeout.
105 if (num_replies_++ == 0)
106 timer_.cancel();
107
108 // Print out some information about the reply packet.
109 posix_time::ptime now = posix_time::microsec_clock::universal_time();
110 std::cout << length - ipv4_hdr.header_length()
111 << " bytes from " << ipv4_hdr.source_address()
112 << ": icmp_seq=" << icmp_hdr.sequence_number()
113 << ", ttl=" << ipv4_hdr.time_to_live()
114 << ", time=" << (now - time_sent_).total_milliseconds() << " ms"
115 << std::endl;
116 }
117
118 start_receive();
119 }
120
121 static unsigned short get_identifier()
122 {
123 #if defined(BOOST_ASIO_WINDOWS)
124 return static_cast<unsigned short>(::GetCurrentProcessId());
125 #else
126 return static_cast<unsigned short>(::getpid());
127 #endif
128 }
129
130 icmp::resolver resolver_;
131 icmp::endpoint destination_;
132 icmp::socket socket_;
133 deadline_timer timer_;
134 unsigned short sequence_number_;
135 posix_time::ptime time_sent_;
136 boost::asio::streambuf reply_buffer_;
137 std::size_t num_replies_;
138 };
139
140 int main(int argc, char* argv[])
141 {
142 try
143 {
144 if (argc != 2)
145 {
146 std::cerr << "Usage: ping <host>" << std::endl;
147 #if !defined(BOOST_ASIO_WINDOWS)
148 std::cerr << "(You may need to run this program as root.)" << std::endl;
149 #endif
150 return 1;
151 }
152
153 boost::asio::io_context io_context;
154 pinger p(io_context, argv[1]);
155 io_context.run();
156 }
157 catch (std::exception& e)
158 {
159 std::cerr << "Exception: " << e.what() << std::endl;
160 }
161 }