blob: 6d7c29dfeb12447705c7765cd57f15ca5ccf3911 [file] [log] [blame]
Jonghwan Hyuned478dc2018-08-06 15:35:18 +09001/*
2 * Copyright 2017-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/* -*- P4_16 -*- */
18#ifndef __INT_REPORT__
19#define __INT_REPORT__
20
21control process_int_report (
22 inout parsed_headers_t hdr,
23 inout fabric_metadata_t fabric_metadata,
24 inout standard_metadata_t standard_metadata) {
25
26 action add_report_fixed_header() {
27 /* Device should include its own INT metadata as embedded,
28 * we'll not use fabric_report_header for this purpose.
29 */
30 hdr.report_fixed_header.setValid();
31 hdr.report_fixed_header.ver = 0;
32 /* only support for flow_watchlist */
33 hdr.report_fixed_header.nproto = NPROTO_ETHERNET;
34 hdr.report_fixed_header.d = 0;
35 hdr.report_fixed_header.q = 0;
36 hdr.report_fixed_header.f = 1;
37 hdr.report_fixed_header.rsvd = 0;
38 //TODO how to get information specific to the switch
39 hdr.report_fixed_header.hw_id = HW_ID;
40 // TODO how save a variable and increment
41 hdr.report_fixed_header.seq_no = 0;
42 //TODO how to get timestamp from ingress ns
43 hdr.report_fixed_header.ingress_tstamp =
44 (bit<32>) standard_metadata.enq_timestamp;
45 }
46
Carmelo Cascone9b0171b2018-08-14 01:43:57 -070047 action do_report_encapsulation(mac_addr_t src_mac, mac_addr_t mon_mac, ipv4_addr_t src_ip,
48 ipv4_addr_t mon_ip, l4_port_t mon_port) {
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090049 //Report Ethernet Header
50 hdr.report_ethernet.setValid();
51 hdr.report_ethernet.dst_addr = mon_mac;
52 hdr.report_ethernet.src_addr = src_mac;
53 hdr.report_ethernet.ether_type = ETHERTYPE_IPV4;
54
55 //Report IPV4 Header
56 hdr.report_ipv4.setValid();
57 hdr.report_ipv4.version = 4w4;
58 hdr.report_ipv4.ihl = 4w5;
59 hdr.report_ipv4.dscp = 6w0;
60 hdr.report_ipv4.ecn = 2w0;
61 /* Total Len is report_ipv4_len + report_udp_len + report_fixed_hdr_len + ethernet_len + ipv4_totalLen */
62 hdr.report_ipv4.total_len = (bit<16>) IPV4_MIN_HEAD_LEN + (bit<16>) UDP_HEADER_LEN +
63 (bit<16>) REPORT_FIXED_HEADER_LEN + (bit<16>) ETH_HEADER_LEN + hdr.ipv4.total_len;
64 /* Dont Fragment bit should be set */
65 hdr.report_ipv4.identification = 0;
66 hdr.report_ipv4.flags = 0;
67 hdr.report_ipv4.frag_offset = 0;
68 hdr.report_ipv4.ttl = 0xFF;
69 hdr.report_ipv4.protocol = PROTO_UDP;
70 hdr.report_ipv4.src_addr = src_ip;
71 hdr.report_ipv4.dst_addr = mon_ip;
72
73 //Report UDP Header
74 hdr.report_udp.setValid();
75 hdr.report_udp.src_port = 0;
76 hdr.report_udp.dst_port = mon_port;
77 hdr.report_udp.len = (bit<16>) UDP_HEADER_LEN + (bit<16>) REPORT_FIXED_HEADER_LEN +
78 (bit<16>) ETH_HEADER_LEN + hdr.ipv4.total_len;
79
80 fabric_metadata.compute_checksum = true;
81 add_report_fixed_header();
82 }
83
84 /* Cloned packet instance_type is PKT_INSTANCE_TYPE_INGRESS_CLONE=1
85 * Packet is forwarded according to the mirroring_add command
86 */
87 table tb_generate_report {
88 key = {
89 }
90 actions = {
91 do_report_encapsulation;
92 }
93 }
94
95 apply {
96 tb_generate_report.apply();
97 }
98}
99#endif