master-thesis/p4src/parsers.p4

110 lines
2.3 KiB
Plaintext
Raw Normal View History

2019-02-21 22:09:03 +00:00
/* -*- P4_16 -*- */
#ifndef PARSERS_P4
#define PARSERS_P4
#include <core.p4>
#include <v1model.p4>
#include "headers.p4"
parser MyParser(packet_in packet,
out headers hdr,
inout metadata meta,
inout standard_metadata_t standard_metadata) {
state start {
packet.extract(hdr.ethernet);
transition select(hdr.ethernet.ethertype){
TYPE_IPV4: ipv4;
TYPE_IPV6: ipv6;
default: accept;
}
}
state ipv4 {
packet.extract(hdr.ipv4);
2019-02-21 22:27:55 +00:00
meta.tcp_length = hdr.ipv4.totalLen - 16w20;
2019-02-21 22:09:03 +00:00
transition select(hdr.ipv4.protocol){
2019-02-21 23:01:53 +00:00
PROTO_TCP: tcp;
PROTO_UDP: udp;
PROTO_ICMP: icmp;
2019-02-21 22:09:03 +00:00
default: accept;
}
}
state ipv6 {
packet.extract(hdr.ipv6);
2019-02-21 22:27:55 +00:00
meta.tcp_length = hdr.ipv6.payload_length;
2019-02-21 22:09:03 +00:00
transition select(hdr.ipv6.next_header){
2019-02-21 23:01:53 +00:00
PROTO_TCP: tcp;
PROTO_UDP: udp;
PROTO_ICMP6: icmp6;
2019-02-21 22:09:03 +00:00
default: accept;
}
}
2019-03-21 19:48:56 +00:00
/*
state icmp6 {
packet.extract(hdr.icmp6);
transition select(hdr.ipv6.next_header){
ICMP6_NS:
default: accept;
}
}
state icmp6_neighbor_solicitation {
} */
2019-02-21 23:01:53 +00:00
/* Leaf */
2019-02-21 22:09:03 +00:00
state tcp {
packet.extract(hdr.tcp);
transition accept;
}
2019-02-21 23:01:53 +00:00
state udp {
packet.extract(hdr.udp);
transition accept;
}
state icmp6 {
2019-03-21 19:48:56 +00:00
packet.extract(hdr.icmp6);
transition accept;
2019-02-21 23:01:53 +00:00
}
state icmp {
packet.extract(hdr.icmp);
transition accept;
}
2019-02-21 22:09:03 +00:00
}
/*************************************************************************
************************ D E P A R S E R *******************************
*************************************************************************/
control MyDeparser(packet_out packet, in headers hdr) {
apply {
/* always */
2019-02-21 22:09:03 +00:00
packet.emit(hdr.ethernet);
2019-03-04 15:38:06 +00:00
/* only if information is sent to the controller */
packet.emit(hdr.cpu);
2019-02-21 22:09:03 +00:00
/* either */
packet.emit(hdr.ipv4);
packet.emit(hdr.ipv6);
/* either */
packet.emit(hdr.tcp);
packet.emit(hdr.udp);
packet.emit(hdr.icmp);
2019-02-23 20:15:47 +00:00
packet.emit(hdr.icmp6);
2019-02-21 22:09:03 +00:00
}
}
#endif