1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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
124
125
126
|
/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. You may not use this file except in compliance with the License.
*
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* Copyright (C) 2014 Cloudius Systems, Ltd.
*
*/
#include <seastar/net/virtio.hh>
#include <seastar/net/dpdk.hh>
#include <seastar/core/reactor.hh>
#include <seastar/net/ip.hh>
#include <seastar/net/native-stack.hh>
#include <iostream>
#include <utility>
#include <algorithm>
using namespace seastar;
using namespace net;
void dump_packet(const packet& p) {
std::cout << "rx:";
auto f = p.frag(0);
for (unsigned i = 0; i < std::min(f.size, size_t(30)); ++i) {
char x[4];
std::sprintf(x, " %02x", uint8_t(f.base[i]));
std::cout << x;
}
std::cout << "\n";
}
future<> echo_packet(net::qp& netif, packet p) {
auto f = p.frag(0);
if (f.size < sizeof(eth_hdr)) {
return make_ready_future<>();
}
auto pos = 0;
auto eh = reinterpret_cast<eth_hdr*>(f.base + pos);
pos += sizeof(*eh);
*eh = ntoh(*eh);
if (eh->eth_proto != 0x0800) {
return make_ready_future<>();
}
auto iph = reinterpret_cast<ip_hdr*>(f.base + pos);
*iph = ntoh(*iph);
pos += iph->ihl * 4;
if (iph->ver != 4 || iph->ihl < 5 || iph->ip_proto != 1) {
return make_ready_future<>();
}
auto ip_len = iph->len;
auto icmph = reinterpret_cast<icmp_hdr*>(f.base + pos);
if (icmph->type != icmp_hdr::msg_type::echo_request) {
return make_ready_future<>();
}
auto icmp_len = ip_len - iph->ihl * 4;
std::swap(eh->src_mac, eh->dst_mac);
std::swap(iph->src_ip, iph->dst_ip);
icmph->type = icmp_hdr::msg_type::echo_reply;
icmph->csum = 0;
*iph = hton(*iph);
*eh = hton(*eh);
icmph->csum = ip_checksum(icmph, icmp_len);
iph->csum = 0;
iph->csum = ip_checksum(iph, iph->ihl * 4);
return netif.send(std::move(p));
}
#ifdef SEASTAR_HAVE_DPDK
void usage()
{
std::cout<<"Usage: echotest [-virtio|-dpdk]"<<std::endl;
std::cout<<" -virtio - use virtio backend (default)"<<std::endl;
std::cout<<" -dpdk - use dpdk-pmd backend"<<std::endl;
}
#endif
int main(int ac, char** av) {
std::unique_ptr<net::device> dnet;
net::qp* vnet;
native_stack_options opts;
#ifdef SEASTAR_HAVE_DPDK
if (ac > 2) {
usage();
return -1;
}
if ((ac == 1) || !std::strcmp(av[1], "-virtio")) {
dnet = create_virtio_net_device(opts.virtio_opts, opts.lro);
} else if (!std::strcmp(av[1], "-dpdk")) {
dnet = create_dpdk_net_device();
} else {
usage();
return -1;
}
#else
dnet = create_virtio_net_device(opts.virtio_opts, opts.lro);
#endif // SEASTAR_HAVE_DPDK
auto qp = dnet->init_local_queue(opts, 0);
vnet = qp.get();
dnet->set_local_queue(std::move(qp));
future<> rx_done =
dnet->receive([vnet] (packet p) {
return echo_packet(*vnet, std::move(p));
});
engine().run();
return 0;
}
|