-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathparser.hpp
170 lines (142 loc) · 4.82 KB
/
parser.hpp
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
//
// Copyright (c) 2016-2019 Haggai Eran, Gabi Malka, Lior Zeno, Maroun Tork
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation and/or
// other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
// ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
#pragma once
#include "ntl/stream.hpp"
#include "ntl/dup.hpp"
#include "ntl/zip.hpp"
#include "ntl/fold.hpp"
#include "ntl/link.hpp"
#include "ntl/enumerate.hpp"
#include "ntl/axi_data.hpp"
#include <net/ethernet.h>
#include <netinet/in.h>
typedef ntl::stream<ntl::axi_data> axi_data_stream;
struct metadata {
ap_uint<32> ip_source, ip_dest;
ap_uint<16> ether_type, udp_source, udp_dest;
ap_uint<8> ip_protocol;
metadata() :
ip_source(0), ip_dest(0), ether_type(0), udp_source(0), udp_dest(0),
ip_protocol(0)
{}
bool valid_ip() const
{
return ether_type == ETHERTYPE_IP;
}
bool valid_udp() const
{
return valid_ip() && ip_protocol == IPPROTO_UDP;
}
};
typedef ntl::stream<metadata> metadata_stream;
typedef std::tuple<ap_uint<16>, ntl::axi_data> numbered_data;
namespace ntl {
template <>
inline bool last<numbered_data>(const numbered_data& flit)
{
return std::get<1>(flit).last;
}
}
template <unsigned start, unsigned end, typename T>
ap_uint<8 * (end - start)> range(const T& val)
{
static_assert(end > start, "Invalid range.");
const int width = T::width;
return val(width - 8 * start - 1, width - 8 * end);
}
class extract_metadata : public ntl::fold<numbered_data, metadata, false>
{
public:
typedef ntl::fold<numbered_data, metadata, false> base;
typedef typename base::in_t in_t;
extract_metadata() : base(metadata())
{}
void step(in_t& in)
{
#pragma HLS pipeline
base::step(in, [](const metadata& cur, const numbered_data& num_data) -> metadata {
metadata ret = cur;
ntl::axi_data flit;
ap_uint<16> index;
std::tie(index, flit) = num_data;
if (index == 0) {
ret.ether_type = range<12, 14>(flit.data);
ret.ip_protocol = range<23, 24>(flit.data);
ret.ip_source = range<26, 30>(flit.data);
ret.ip_dest(31, 16) = range<30, 32>(flit.data);
} else if (index == 1) {
ret.ip_dest(15, 0) = range<0, 2>(flit.data);
ret.udp_source = range<2, 4>(flit.data);
ret.udp_dest = range<4, 6>(flit.data);
}
return ret;
});
}
};
/*
template <unsigned start, unsigned end>
class extract_header
{
public:
extract_header() : _flit_count(0) {}
static const unsigned len = end - start;
typedef ap_uint<8 * len> field_t;
typedef ntl::stream<field_t> field_stream;
field_stream out;
void step(axi_data_stream& in)
{
static_assert(31 / 32 == (30 / 32), "No support for fields that span multiple flits at the moment.");
static_assert((end - 1) / 32 == (start / 32), "No support for fields that span multiple flits at the moment.");
if (in.empty())
return;
if (start / 32 != _flit_count++) {
in.read();
} else {
if (out.full())
return;
auto flit = in.read();
out.write(flit.data(8 * end - 1, 8 * start));
if (flit.last)
_flit_count = 0;
}
}
private:
ap_uint<16> _flit_count;
};
*/
class parser {
public:
metadata_stream out;
void step(axi_data_stream& in)
{
#pragma HLS dataflow
_enum.step(in);
_extract.step(_enum.out);
ntl::link(_extract.out, out);
}
private:
ntl::enumerate<ntl::axi_data> _enum;
extract_metadata _extract;
};