blob: 6580c47d7cca2bce040143a375fb2b3aa70fb9fb [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef __MPLS_LABEL_DPO_H__
17#define __MPLS_LABEL_DPO_H__
18
19#include <vnet/vnet.h>
20#include <vnet/mpls/packet.h>
21#include <vnet/dpo/dpo.h>
22
23/**
24 * A representation of an MPLS label for imposition in the data-path
25 */
26typedef struct mpls_label_dpo_t
27{
28 /**
Neale Rannsad422ed2016-11-02 14:20:04 +000029 * The MPLS label header to impose. Outer most label first.
Neale Ranns0bfe5d82016-08-25 15:29:12 +010030 */
Neale Rannsad422ed2016-11-02 14:20:04 +000031 mpls_unicast_header_t mld_hdr[8];
Neale Ranns0bfe5d82016-08-25 15:29:12 +010032
33 /**
34 * Next DPO in the graph
35 */
36 dpo_id_t mld_dpo;
37
38 /**
Neale Rannsad422ed2016-11-02 14:20:04 +000039 * The protocol of the payload/packets that are being encapped
40 */
41 dpo_proto_t mld_payload_proto;
42
43 /**
44 * Size of the label stack
45 */
46 u16 mld_n_labels;
47
48 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010049 * Number of locks/users of the label
50 */
51 u16 mld_locks;
52} mpls_label_dpo_t;
53
Neale Rannsad422ed2016-11-02 14:20:04 +000054/**
55 * @brief Assert that the MPLS label object is less than a cache line in size.
56 * Should this get any bigger then we will need to reconsider how many labels
57 * can be pushed in one object.
58 */
59_Static_assert((sizeof(mpls_label_dpo_t) <= CLIB_CACHE_LINE_BYTES),
60 "MPLS label DPO is larger than one cache line.");
61
62/**
63 * @brief Create an MPLS label object
64 *
65 * @param label_stack The stack if labels to impose, outer most label first
66 * @param eos The inner most label's EOS bit
67 * @param ttl The inner most label's TTL bit
68 * @param exp The inner most label's EXP bit
69 * @param payload_proto The ptocool of the payload packets that will
70 * be imposed with this label header.
71 * @param dpo The parent of the created MPLS label object
72 */
73extern index_t mpls_label_dpo_create(mpls_label_t *label_stack,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010074 mpls_eos_bit_t eos,
75 u8 ttl,
76 u8 exp,
Neale Rannsad422ed2016-11-02 14:20:04 +000077 dpo_proto_t payload_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010078 const dpo_id_t *dpo);
79
80extern u8* format_mpls_label_dpo(u8 *s, va_list *args);
81
82
83/*
84 * Encapsulation violation for fast data-path access
85 */
86extern mpls_label_dpo_t *mpls_label_dpo_pool;
87
88static inline mpls_label_dpo_t *
89mpls_label_dpo_get (index_t index)
90{
91 return (pool_elt_at_index(mpls_label_dpo_pool, index));
92}
93
94extern void mpls_label_dpo_module_init(void);
95
96#endif