Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DPDK Backend : Minor fixes #3674

Merged
merged 1 commit into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions backends/dpdk/DpdkXfail.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,9 @@ p4c_add_xfail_reason("dpdk"
testdata/p4_16_samples/pna-dpdk-direct-counter-err-4.p4
testdata/p4_16_samples/pna-dpdk-direct-meter-err-3.p4
)

p4c_add_xfail_reason("dpdk"
"Learner table .* must have all exact match keys"
testdata/p4_16_samples/pna-add-on-miss-err1.p4
testdata/p4_16_samples/pna-dpdk-table-key-consolidation-learner-2.p4
)
9 changes: 5 additions & 4 deletions backends/dpdk/dpdkArch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1689,6 +1689,11 @@ const IR::Node* CopyMatchKeysToSingleStruct::preorder(IR::Key* keys) {
CHECK_NULL(table);

if (keyInfoInstance->isLearner) {
if (!keyInfoInstance->isExact) {
::error(ErrorType::ERR_EXPECTED,"Learner table %1% must have all exact match keys",
table->name);
return keys;
}
structure->table_type_map.emplace(table->name.name, InternalTableType::LEARNER);
} else if (contiguous && keyInfoInstance->isExact){
structure->table_type_map.emplace(table->name.name, InternalTableType::REGULAR_EXACT);
Expand All @@ -1699,10 +1704,6 @@ const IR::Node* CopyMatchKeysToSingleStruct::preorder(IR::Key* keys) {
* Check remaining conditions to see if the copy is needed or not */
metaCopyNeeded = false;
if (!copyNeeded) {
if (keyInfoInstance->isLearner && !keyInfoInstance->isExact) {
::error(ErrorType::ERR_EXPECTED,"Learner table must have all exact match keys");
return keys;
}
if (!contiguous && ((keyInfoInstance->isLearner) || (keyInfoInstance->isExact
&& keyInfoInstance->numExistingMetaFields <= 5))) {
metaCopyNeeded = true;
Expand Down
2 changes: 1 addition & 1 deletion backends/dpdk/dpdkArch.h
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ class InjectInternetChecksumIntermediateValue : public Transform {
std::vector<cstring> *csum_vec;

public:
explicit InjectInternetChecksumIntermediateValue(DpdkProgramStructure *structure,
InjectInternetChecksumIntermediateValue(DpdkProgramStructure *structure,
std::vector<cstring> *csum_vec) :
structure(structure), csum_vec(csum_vec) {}

Expand Down
4 changes: 2 additions & 2 deletions backends/dpdk/dpdkContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void DpdkContextGenerator::CollectTablesAndSetAttributes() {
struct externAttributes externAttr;
externAttr.externalName = ed->controlPlaneName();
externAttr.externType = externTypeName;
if (externTypeName == "Counter" || "DirectCounter") {
if (externTypeName == "Counter" || externTypeName == "DirectCounter") {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should have caught this one earlier.

unsigned maxArgNum = externTypeName == "Counter"? 2 : 1;
int typeArgNum = maxArgNum - 1;
if (ed->arguments->size() != maxArgNum) {
Expand All @@ -150,7 +150,7 @@ void DpdkContextGenerator::CollectTablesAndSetAttributes() {
break;
}
}
if (externTypeName == "DirectMeter" || "DirectCounter") {
if (externTypeName == "DirectMeter" || externTypeName == "DirectCounter") {
auto ownerTable = ::get(structure->direct_resource_map, ed->name.name);
auto tableAttr = ::get(tableAttrmap, ownerTable->name.originalName);
externAttr.table_id = tableAttr.tableHandle;
Expand Down
202 changes: 202 additions & 0 deletions testdata/p4_16_samples/pna-add-on-miss-err1.p4
Original file line number Diff line number Diff line change
@@ -0,0 +1,202 @@
/*
Copyright 2022 Intel Corporation

Licensed under the Apache License, Version 2.0 (the "License");
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.
*/

#include <core.p4>
#include "pna.p4"


typedef bit<48> EthernetAddress;

header ethernet_t {
EthernetAddress dstAddr;
EthernetAddress srcAddr;
bit<16> etherType;
}

header ipv4_t {
bit<4> version;
bit<4> ihl;
bit<8> diffserv;
bit<16> totalLen;
bit<16> identification;
bit<3> flags;
bit<13> fragOffset;
bit<8> ttl;
bit<8> protocol;
bit<16> hdrChecksum;
bit<32> srcAddr;
bit<32> dstAddr;
}

struct empty_metadata_t {
}

// BEGIN:Counter_Example_Part1
typedef bit<48> ByteCounter_t;
typedef bit<32> PacketCounter_t;
typedef bit<80> PacketByteCounter_t;

const bit<32> NUM_PORTS = 4;
// END:Counter_Example_Part1


//////////////////////////////////////////////////////////////////////
// Struct types for holding user-defined collections of headers and
// metadata in the P4 developer's program.
//
// Note: The names of these struct types are completely up to the P4
// developer, as are their member fields, with the only restriction
// being that the structs intended to contain headers should only
// contain members whose types are header, header stack, or
// header_union.
//////////////////////////////////////////////////////////////////////

struct main_metadata_t {
// empty for this skeleton
ExpireTimeProfileId_t timeout;
}

// User-defined struct containing all of those headers parsed in the
// main parser.
struct headers_t {
ethernet_t ethernet;
ipv4_t ipv4;
}

control PreControlImpl(
in headers_t hdr,
inout main_metadata_t meta,
in pna_pre_input_metadata_t istd,
inout pna_pre_output_metadata_t ostd)
{
apply {
// Note: This program does not demonstrate all of the code
// that would be necessary if you were implementing IPsec
// packet decryption.

// If it did, then this pre control implementation would do
// one or more table lookups in order to determine whether the
// packet was IPsec encapsulated, and if so, whether it is
// part of a security association that was established by the
// control plane software.

// It would also likely perform anti-replay attack detection
// on the IPsec sequence number, which is in the unencrypted
// part of the packet.

// Any headers parsed by the pre parser in pre_hdr will be
// forgotten after this point. The main parser will start
// parsing over from the beginning, either on the same packet
// if the inline extern block did nothing, or on the packet as
// modified by the inline extern block.
}
}

parser MainParserImpl(
packet_in pkt,
out headers_t hdr,
inout main_metadata_t main_meta,
in pna_main_parser_input_metadata_t istd)
{
state start {
pkt.extract(hdr.ethernet);
transition select(hdr.ethernet.etherType) {
0x0800: parse_ipv4;
default: accept;
}
}
state parse_ipv4 {
pkt.extract(hdr.ipv4);
transition accept;
}
}

// BEGIN:Counter_Example_Part2
control MainControlImpl(
inout headers_t hdr, // from main parser
inout main_metadata_t user_meta, // from main parser, to "next block"
in pna_main_input_metadata_t istd,
inout pna_main_output_metadata_t ostd)
{
action next_hop(PortId_t vport) {
send_to_port(vport);
}
action add_on_miss_action() {
bit<32> tmp = 0;
add_entry(action_name="next_hop", action_params = tmp, expire_time_profile_id = user_meta.timeout);
}
table ipv4_da {
key = {
hdr.ipv4.dstAddr: exact;
hdr.ipv4.srcAddr: ternary;
}
actions = {
@tableonly next_hop;
@defaultonly add_on_miss_action;
}
add_on_miss = true;
const default_action = add_on_miss_action;
}
action next_hop2(PortId_t vport, bit<32> newAddr) {
send_to_port(vport);
hdr.ipv4.srcAddr = newAddr;
}
action add_on_miss_action2() {
add_entry(action_name="next_hop2", action_params = {32w0, 32w1234}, expire_time_profile_id = user_meta.timeout);
}
table ipv4_da2 {
key = {
hdr.ipv4.dstAddr: exact;
}
actions = {
@tableonly next_hop2;
@defaultonly add_on_miss_action2;
}
add_on_miss = true;
const default_action = add_on_miss_action2;
}
apply {
if (hdr.ipv4.isValid()) {
ipv4_da.apply();
ipv4_da2.apply();
}
}
}
// END:Counter_Example_Part2

control MainDeparserImpl(
packet_out pkt,
in headers_t hdr, // from main control
in main_metadata_t user_meta, // from main control
in pna_main_output_metadata_t ostd)
{
apply {
pkt.emit(hdr.ethernet);
pkt.emit(hdr.ipv4);
}
}

// BEGIN:Package_Instantiation_Example
PNA_NIC(
MainParserImpl(),
PreControlImpl(),
MainControlImpl(),
MainDeparserImpl()
// Hoping to make this optional parameter later, but not supported
// by p4c yet.
//, PreParserImpl()
) main;
// END:Package_Instantiation_Example
114 changes: 114 additions & 0 deletions testdata/p4_16_samples_outputs/pna-add-on-miss-err1-first.p4
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
#include <core.p4>
#include <pna.p4>

typedef bit<48> EthernetAddress;
header ethernet_t {
EthernetAddress dstAddr;
EthernetAddress srcAddr;
bit<16> etherType;
}

header ipv4_t {
bit<4> version;
bit<4> ihl;
bit<8> diffserv;
bit<16> totalLen;
bit<16> identification;
bit<3> flags;
bit<13> fragOffset;
bit<8> ttl;
bit<8> protocol;
bit<16> hdrChecksum;
bit<32> srcAddr;
bit<32> dstAddr;
}

struct empty_metadata_t {
}

typedef bit<48> ByteCounter_t;
typedef bit<32> PacketCounter_t;
typedef bit<80> PacketByteCounter_t;
const bit<32> NUM_PORTS = 32w4;
struct main_metadata_t {
ExpireTimeProfileId_t timeout;
}

struct headers_t {
ethernet_t ethernet;
ipv4_t ipv4;
}

control PreControlImpl(in headers_t hdr, inout main_metadata_t meta, in pna_pre_input_metadata_t istd, inout pna_pre_output_metadata_t ostd) {
apply {
}
}

parser MainParserImpl(packet_in pkt, out headers_t hdr, inout main_metadata_t main_meta, in pna_main_parser_input_metadata_t istd) {
state start {
pkt.extract<ethernet_t>(hdr.ethernet);
transition select(hdr.ethernet.etherType) {
16w0x800: parse_ipv4;
default: accept;
}
}
state parse_ipv4 {
pkt.extract<ipv4_t>(hdr.ipv4);
transition accept;
}
}

control MainControlImpl(inout headers_t hdr, inout main_metadata_t user_meta, in pna_main_input_metadata_t istd, inout pna_main_output_metadata_t ostd) {
action next_hop(PortId_t vport) {
send_to_port(vport);
}
action add_on_miss_action() {
bit<32> tmp = 32w0;
add_entry<bit<32>>(action_name = "next_hop", action_params = tmp, expire_time_profile_id = user_meta.timeout);
}
table ipv4_da {
key = {
hdr.ipv4.dstAddr: exact @name("hdr.ipv4.dstAddr");
hdr.ipv4.srcAddr: ternary @name("hdr.ipv4.srcAddr");
}
actions = {
@tableonly next_hop();
@defaultonly add_on_miss_action();
}
add_on_miss = true;
const default_action = add_on_miss_action();
}
action next_hop2(PortId_t vport, bit<32> newAddr) {
send_to_port(vport);
hdr.ipv4.srcAddr = newAddr;
}
action add_on_miss_action2() {
add_entry<tuple<bit<32>, bit<32>>>(action_name = "next_hop2", action_params = { 32w0, 32w1234 }, expire_time_profile_id = user_meta.timeout);
}
table ipv4_da2 {
key = {
hdr.ipv4.dstAddr: exact @name("hdr.ipv4.dstAddr");
}
actions = {
@tableonly next_hop2();
@defaultonly add_on_miss_action2();
}
add_on_miss = true;
const default_action = add_on_miss_action2();
}
apply {
if (hdr.ipv4.isValid()) {
ipv4_da.apply();
ipv4_da2.apply();
}
}
}

control MainDeparserImpl(packet_out pkt, in headers_t hdr, in main_metadata_t user_meta, in pna_main_output_metadata_t ostd) {
apply {
pkt.emit<ethernet_t>(hdr.ethernet);
pkt.emit<ipv4_t>(hdr.ipv4);
}
}

PNA_NIC<headers_t, main_metadata_t, headers_t, main_metadata_t>(MainParserImpl(), PreControlImpl(), MainControlImpl(), MainDeparserImpl()) main;
Loading