123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346letcore_p4_str={|/*
Copyright 2013-present Barefoot Networks, Inc.
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.
*/
/* This is the P4-16 core library, which declares some built-in P4 constructs using P4 */
#ifndef _CORE_P4_
#define _CORE_P4_
/// Standard error codes. New error codes can be declared by users.
error {
NoError, /// No error.
PacketTooShort, /// Not enough bits in packet for 'extract'.
NoMatch, /// 'select' expression has no matches.
StackOutOfBounds, /// Reference to invalid element of a header stack.
HeaderTooShort, /// Extracting too many bits into a varbit field.
ParserTimeout, /// Parser execution time limit exceeded.
ParserInvalidArgument /// Parser operation was called with a value
/// not supported by the implementation.
}
extern packet_in {
/// Read a header from the packet into a fixed-sized header @hdr and advance the cursor.
/// May trigger error PacketTooShort or StackOutOfBounds.
/// @T must be a fixed-size header type
void extract<T>(out T hdr);
/// Read bits from the packet into a variable-sized header @variableSizeHeader
/// and advance the cursor.
/// @T must be a header containing exactly 1 varbit field.
/// May trigger errors PacketTooShort, StackOutOfBounds, or HeaderTooShort.
void extract<T>(out T variableSizeHeader,
in bit<32> variableFieldSizeInBits);
/// Read bits from the packet without advancing the cursor.
/// @returns: the bits read from the packet.
/// T may be an arbitrary fixed-size type.
T lookahead<T>();
/// Advance the packet cursor by the specified number of bits.
void advance(in bit<32> sizeInBits);
/// @return packet length in bytes. This method may be unavailable on
/// some target architectures.
bit<32> length();
}
extern packet_out {
/// Write @hdr into the output packet, advancing cursor.
/// @T can be a header type, a header stack, a header_union, or a struct
/// containing fields with such types.
void emit<T>(in T hdr);
}
// TODO: remove from this file, convert to built-in
/// Check a predicate @check in the parser; if the predicate is true do nothing,
/// otherwise set the parser error to @toSignal, and transition to the `reject` state.
extern void verify(in bool check, in error toSignal);
/// Built-in action that does nothing.
action NoAction() {}
/// Standard match kinds for table key fields.
/// Some architectures may not support all these match kinds.
/// Architectures can declare additional match kinds.
match_kind {
/// Match bits exactly.
exact,
/// Ternary match, using a mask.
ternary,
/// Longest-prefix match.
lpm
}
#endif /* _CORE_P4_ */
|}letcore_v1_model_str={|/*
Copyright 2013-present Barefoot Networks, Inc.
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.
*/
/* P4-16 declaration of the P4 v1.0 switch model */
#ifndef _V1_MODEL_P4_
#define _V1_MODEL_P4_
#include "core.p4"
match_kind {
range,
// Used for implementing dynamic_action_selection
selector
}
// Are these correct?
@metadata @name("standard_metadata")
struct standard_metadata_t {
bit<9> ingress_port;
bit<9> egress_spec;
bit<9> egress_port;
bit<32> clone_spec;
bit<32> instance_type;
// The drop and recirculate_port fields are not used at all by the
// behavioral-model simple_switch software switch as of September
// 2018, and perhaps never was. They may be considered
// deprecated, at least for that P4 target device. simple_switch
// uses the value of the egress_spec field to determine whether a
// packet is dropped or not, and it is recommended to use the
// P4_14 drop() primitive action, or the P4_16 + v1model
// mark_to_drop() primitive action, to cause that field to be
// changed so the packet will be dropped.
bit<1> drop;
bit<16> recirculate_port;
bit<32> packet_length;
//
// @alias is used to generate the field_alias section of the BMV2 JSON.
// Field alias creates a mapping from the metadata name in P4 program to
// the behavioral model's internal metadata name. Here we use it to
// expose all metadata supported by simple switch to the user through
// standard_metadata_t.
//
// flattening fields that exist in bmv2-ss
// queueing metadata
@alias("queueing_metadata.enq_timestamp") bit<32> enq_timestamp;
@alias("queueing_metadata.enq_qdepth") bit<19> enq_qdepth;
@alias("queueing_metadata.deq_timedelta") bit<32> deq_timedelta;
@alias("queueing_metadata.deq_qdepth") bit<19> deq_qdepth;
// intrinsic metadata
@alias("intrinsic_metadata.ingress_global_timestamp") bit<48> ingress_global_timestamp;
@alias("intrinsic_metadata.egress_global_timestamp") bit<48> egress_global_timestamp;
@alias("intrinsic_metadata.lf_field_list") bit<32> lf_field_list;
@alias("intrinsic_metadata.mcast_grp") bit<16> mcast_grp;
@alias("intrinsic_metadata.resubmit_flag") bit<32> resubmit_flag;
@alias("intrinsic_metadata.egress_rid") bit<16> egress_rid;
/// Indicates that a verify_checksum() method has failed.
// 1 if a checksum error was found, otherwise 0.
bit<1> checksum_error;
@alias("intrinsic_metadata.recirculate_flag") bit<32> recirculate_flag;
/// Error produced by parsing
error parser_error;
}
enum CounterType {
packets,
bytes,
packets_and_bytes
}
enum MeterType {
packets,
bytes
}
extern counter {
counter(bit<32> size, CounterType type);
void count(in bit<32> index);
}
extern direct_counter {
direct_counter(CounterType type);
void count();
}
extern meter {
meter(bit<32> size, MeterType type);
void execute_meter<T>(in bit<32> index, out T result);
}
extern direct_meter<T> {
direct_meter(MeterType type);
void read(out T result);
}
extern register<T> {
register(bit<32> size);
void read(out T result, in bit<32> index);
void write(in bit<32> index, in T value);
}
// used as table implementation attribute
extern action_profile {
action_profile(bit<32> size);
}
// Get a random number in the range lo..hi
extern void random<T>(out T result, in T lo, in T hi);
// If the type T is a named struct, the name is used
// to generate the control-plane API.
extern void digest<T>(in bit<32> receiver, in T data);
enum HashAlgorithm {
crc32,
crc32_custom,
crc16,
crc16_custom,
random,
identity,
csum16,
xor16
}
extern void mark_to_drop();
extern void hash<O, T, D, M>(out O result, in HashAlgorithm algo, in T base, in D data, in M max);
extern action_selector {
action_selector(HashAlgorithm algorithm, bit<32> size, bit<32> outputWidth);
}
enum CloneType {
I2E,
E2E
}
@deprecated("Please use verify_checksum/update_checksum instead.")
extern Checksum16 {
Checksum16();
bit<16> get<D>(in D data);
}
/**
Verifies the checksum of the supplied data.
If this method detects that a checksum of the data is not correct it
sets the standard_metadata checksum_error bit.
@param T Must be a tuple type where all the fields are bit-fields or varbits.
The total dynamic length of the fields is a multiple of the output size.
@param O Checksum type; must be bit<X> type.
@param condition If 'false' the verification always succeeds.
@param data Data whose checksum is verified.
@param checksum Expected checksum of the data; note that is must be a left-value.
@param algo Algorithm to use for checksum (not all algorithms may be supported).
Must be a compile-time constant.
*/
extern void verify_checksum<T, O>(in bool condition, in T data, inout O checksum, HashAlgorithm algo);
/**
Computes the checksum of the supplied data.
@param T Must be a tuple type where all the fields are bit-fields or varbits.
The total dynamic length of the fields is a multiple of the output size.
@param O Output type; must be bit<X> type.
@param condition If 'false' the checksum is not changed
@param data Data whose checksum is computed.
@param checksum Checksum of the data.
@param algo Algorithm to use for checksum (not all algorithms may be supported).
Must be a compile-time constant.
*/
extern void update_checksum<T, O>(in bool condition, in T data, inout O checksum, HashAlgorithm algo);
/**
Verifies the checksum of the supplied data including the payload.
The payload is defined as "all bytes of the packet which were not parsed by the parser".
If this method detects that a checksum of the data is not correct it
sets the standard_metadata checksum_error bit.
@param T Must be a tuple type where all the fields are bit-fields or varbits.
The total dynamic length of the fields is a multiple of the output size.
@param O Checksum type; must be bit<X> type.
@param condition If 'false' the verification always succeeds.
@param data Data whose checksum is verified.
@param checksum Expected checksum of the data; note that is must be a left-value.
@param algo Algorithm to use for checksum (not all algorithms may be supported).
Must be a compile-time constant.
*/
extern void verify_checksum_with_payload<T, O>(in bool condition, in T data, inout O checksum, HashAlgorithm algo);
/**
Computes the checksum of the supplied data including the payload.
The payload is defined as "all bytes of the packet which were not parsed by the parser".
@param T Must be a tuple type where all the fields are bit-fields or varbits.
The total dynamic length of the fields is a multiple of the output size.
@param O Output type; must be bit<X> type.
@param condition If 'false' the checksum is not changed
@param data Data whose checksum is computed.
@param checksum Checksum of the data.
@param algo Algorithm to use for checksum (not all algorithms may be supported).
Must be a compile-time constant.
*/
extern void update_checksum_with_payload<T, O>(in bool condition, in T data, inout O checksum, HashAlgorithm algo);
extern void resubmit<T>(in T data);
extern void recirculate<T>(in T data);
extern void clone(in CloneType type, in bit<32> session);
extern void clone3<T>(in CloneType type, in bit<32> session, in T data);
extern void truncate(in bit<32> length);
// The name 'standard_metadata' is reserved
// Architecture.
// M should be a struct of structs
// H should be a struct of headers, stacks or header_unions
parser Parser<H, M>(packet_in b,
out H parsedHdr,
inout M meta,
inout standard_metadata_t standard_metadata);
/* The only legal statements in the implementation of the
VerifyChecksum control are: block statements, calls to the
verify_checksum and verify_checksum_with_payload methods,
and return statements. */
control VerifyChecksum<H, M>(inout H hdr,
inout M meta);
@pipeline
control Ingress<H, M>(inout H hdr,
inout M meta,
inout standard_metadata_t standard_metadata);
@pipeline
control Egress<H, M>(inout H hdr,
inout M meta,
inout standard_metadata_t standard_metadata);
/* The only legal statements in the implementation of the
ComputeChecksum control are: block statements, calls to the
update_checksum and update_checksum_with_payload methods,
and return statements. */
control ComputeChecksum<H, M>(inout H hdr,
inout M meta);
@deparser
control Deparser<H>(packet_out b, in H hdr);
package V1Switch<H, M>(Parser<H, M> p,
VerifyChecksum<H, M> vr,
Ingress<H, M> ig,
Egress<H, M> eg,
ComputeChecksum<H, M> ck,
Deparser<H> dep
);
#endif /* _V1_MODEL_P4_ */
|}