/* * Copyright 2019-present GEANT RARE project * * 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. */ #ifndef _INGRESS_DEPARSER_P4_ #define _INGRESS_DEPARSER_P4_ control ig_ctl_dprs(packet_out pkt, inout headers hdr, in ingress_metadata_t ig_md, in ingress_intrinsic_metadata_for_deparser_t ig_dprsr_md) { Checksum()ipv4_checksum; #ifdef HAVE_NAT Checksum() tcp_checksum; Checksum() udp_checksum; #endif apply { if (ig_md.saw_rsvp == 0) { hdr.ipv4.hdr_checksum = ipv4_checksum.update( { hdr.ipv4.version, hdr.ipv4.ihl, hdr.ipv4.diffserv, hdr.ipv4.total_len, hdr.ipv4.identification, hdr.ipv4.flags, hdr.ipv4.frag_offset, hdr.ipv4.ttl, hdr.ipv4.protocol, hdr.ipv4.src_addr, hdr.ipv4.dst_addr } ); } #ifdef HAVE_TUN hdr.ipv4d.hdr_checksum = ipv4_checksum.update( { hdr.ipv4d.version, hdr.ipv4d.ihl, hdr.ipv4d.diffserv, hdr.ipv4d.total_len, hdr.ipv4d.identification, hdr.ipv4d.flags, hdr.ipv4d.frag_offset, hdr.ipv4d.ttl, hdr.ipv4d.protocol, hdr.ipv4d.src_addr, hdr.ipv4d.dst_addr } ); #endif #ifdef HAVE_NAT if (ig_md.natted_ipv4tcp==1) { hdr.tcp.checksum = tcp_checksum.update(data = { hdr.ipv4.src_addr, hdr.ipv4.dst_addr, hdr.tcp.src_port, hdr.tcp.dst_port, ig_md.checksum_tcp_tmp }, zeros_as_ones = true); } if (ig_md.natted_ipv4udp==1) { hdr.udp.checksum = udp_checksum.update(data = { hdr.ipv4.src_addr, hdr.ipv4.dst_addr, hdr.udp.src_port, hdr.udp.dst_port, ig_md.checksum_udp_tmp }, zeros_as_ones = true); } if (ig_md.natted_ipv6tcp==1) { hdr.tcp.checksum = tcp_checksum.update(data = { hdr.ipv6.src_addr, hdr.ipv6.dst_addr, hdr.tcp.src_port, hdr.tcp.dst_port, ig_md.checksum_tcp_tmp }, zeros_as_ones = true); } if (ig_md.natted_ipv6udp==1) { hdr.udp.checksum = udp_checksum.update(data = { hdr.ipv6.src_addr, hdr.ipv6.dst_addr, hdr.udp.src_port, hdr.udp.dst_port, ig_md.checksum_udp_tmp }, zeros_as_ones = true); } #endif pkt.emit(hdr); } } #endif // _INGRESS_DEPARSER_P4_