blob: 245fe7e51b1e271ceec086986ce3ef54c0af8ecd [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_SOURCE__
19#define __INT_SOURCE__
20
21// Insert INT header to the packet
22control process_int_source (
23 inout parsed_headers_t hdr,
24 inout fabric_metadata_t fabric_metadata,
25 inout standard_metadata_t standard_metadata) {
26
27 direct_counter(CounterType.packets_and_bytes) counter_int_source;
28
29 action int_source(bit<8> max_hop, bit<5> ins_cnt, bit<4> ins_mask0003, bit<4> ins_mask0407) {
Carmelo Cascone79a3a312018-08-16 17:14:43 -070030 // Insert INT shim header.
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090031 hdr.intl4_shim.setValid();
32 // int_type: Hop-by-hop type (1) , destination type (2)
33 hdr.intl4_shim.int_type = 1;
Carmelo Cascone79a3a312018-08-16 17:14:43 -070034 hdr.intl4_shim.len_words = INT_HEADER_LEN_WORDS;
35 // Insert INT header.
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090036 hdr.int_header.setValid();
37 hdr.int_header.ver = 0;
38 hdr.int_header.rep = 0;
39 hdr.int_header.c = 0;
40 hdr.int_header.e = 0;
41 hdr.int_header.rsvd1 = 0;
42 hdr.int_header.ins_cnt = ins_cnt;
43 hdr.int_header.max_hop_cnt = max_hop;
44 hdr.int_header.total_hop_cnt = 0;
45 hdr.int_header.instruction_mask_0003 = ins_mask0003;
46 hdr.int_header.instruction_mask_0407 = ins_mask0407;
47 hdr.int_header.instruction_mask_0811 = 0; // not supported
48 hdr.int_header.instruction_mask_1215 = 0; // not supported
Carmelo Cascone79a3a312018-08-16 17:14:43 -070049 // Insert INT tail header.
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090050 hdr.intl4_tail.setValid();
51 hdr.intl4_tail.next_proto = hdr.ipv4.protocol;
52 hdr.intl4_tail.dest_port = fabric_metadata.l4_dst_port;
Carmelo Cascone79a3a312018-08-16 17:14:43 -070053 hdr.intl4_tail.dscp = hdr.ipv4.dscp;
54 // Update IP and UDP (if not valid we don't care) lens (in bytes).
55 hdr.ipv4.total_len = hdr.ipv4.total_len + INT_HEADER_LEN_BYTES;
56 hdr.udp.len = hdr.udp.len + INT_HEADER_LEN_BYTES;
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090057 }
Carmelo Cascone79a3a312018-08-16 17:14:43 -070058
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090059 action int_source_dscp(bit<8> max_hop, bit<5> ins_cnt, bit<4> ins_mask0003, bit<4> ins_mask0407) {
60 int_source(max_hop, ins_cnt, ins_mask0003, ins_mask0407);
61 hdr.ipv4.dscp = INT_DSCP;
Carmelo Cascone79a3a312018-08-16 17:14:43 -070062 counter_int_source.count();
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090063 }
64
65 table tb_int_source {
66 key = {
67 hdr.ipv4.src_addr: ternary;
68 hdr.ipv4.dst_addr: ternary;
69 fabric_metadata.l4_src_port: ternary;
70 fabric_metadata.l4_dst_port: ternary;
71 }
72 actions = {
73 int_source_dscp;
74 }
75 counters = counter_int_source;
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090076 }
77
78 apply {
79 tb_int_source.apply();
80 }
81}
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090082#endif