Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1 | /* |
| 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 __FIB_PATH_EXT_H__ |
| 17 | #define __FIB_PATH_EXT_H__ |
| 18 | |
| 19 | #include <vnet/mpls/mpls.h> |
| 20 | #include <vnet/fib/fib_types.h> |
| 21 | |
| 22 | /** |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 23 | * A path extension is a per-entry addition to the forwarding information |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 24 | * when packets are sent for that entry over that path. |
| 25 | * |
| 26 | * For example: |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 27 | * ip route add 1.1.1.1/32 via 10.10.10.10 out-label 100 |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 28 | * |
| 29 | * The out-going MPLS label value 100 is a path-extension. It is a value sepcific |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 30 | * to the entry 1.1.1.1/32 and valid only when packets are sent via 10.10.10.10. |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 31 | */ |
| 32 | typedef struct fib_path_ext_t_ |
| 33 | { |
| 34 | /** |
| 35 | * A description of the path that is being extended. |
| 36 | * This description is used to match this extension with the [changing] |
| 37 | * instance of a fib_path_t that is extended |
| 38 | */ |
| 39 | fib_route_path_t fpe_path; |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 40 | #define fpe_label_stack fpe_path.frp_label_stack |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 41 | |
| 42 | /** |
| 43 | * The index of the path. This is the global index, not the path's |
| 44 | * position in the path-list. |
| 45 | */ |
| 46 | fib_node_index_t fpe_path_index; |
| 47 | } fib_path_ext_t; |
| 48 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 49 | struct fib_entry_t_; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 50 | |
| 51 | extern u8 * format_fib_path_ext(u8 * s, va_list * args); |
| 52 | |
| 53 | extern void fib_path_ext_init(fib_path_ext_t *path_ext, |
| 54 | fib_node_index_t path_list_index, |
| 55 | const fib_route_path_t *rpath); |
| 56 | |
| 57 | extern int fib_path_ext_cmp(fib_path_ext_t *path_ext, |
| 58 | const fib_route_path_t *rpath); |
| 59 | |
| 60 | extern void fib_path_ext_resolve(fib_path_ext_t *path_ext, |
| 61 | fib_node_index_t path_list_index); |
| 62 | |
| 63 | extern load_balance_path_t *fib_path_ext_stack(fib_path_ext_t *path_ext, |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 64 | const struct fib_entry_t_ *entry, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 65 | fib_forward_chain_type_t fct, |
| 66 | load_balance_path_t *nhs); |
| 67 | |
| 68 | #endif |
| 69 | |