Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
Neale Ranns | 1357f3b | 2016-10-16 12:01:42 -0700 | [diff] [blame] | 2 | * pg.c: packet generator mpls interface |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (c) 2012 Cisco and/or its affiliates. |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #include <vlib/vlib.h> |
| 19 | #include <vnet/pg/pg.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 20 | #include <vnet/mpls/mpls.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 21 | |
| 22 | typedef struct { |
| 23 | pg_edit_t label; |
| 24 | } pg_mpls_header_t; |
| 25 | |
| 26 | static inline void |
| 27 | pg_mpls_header_init (pg_mpls_header_t * e) |
| 28 | { |
| 29 | pg_edit_init (&e->label, mpls_unicast_header_t, label_exp_s_ttl); |
| 30 | } |
| 31 | |
| 32 | uword |
| 33 | unformat_pg_mpls_header (unformat_input_t * input, va_list * args) |
| 34 | { |
| 35 | pg_stream_t * s = va_arg (*args, pg_stream_t *); |
| 36 | pg_mpls_header_t * h; |
| 37 | vlib_main_t * vm = vlib_get_main(); |
| 38 | u32 group_index, error; |
| 39 | |
| 40 | h = pg_create_edit_group (s, sizeof (h[0]), sizeof (mpls_unicast_header_t), |
| 41 | &group_index); |
| 42 | pg_mpls_header_init (h); |
| 43 | |
| 44 | error = 1; |
| 45 | if (! unformat (input, "%U", |
| 46 | unformat_pg_edit, |
| 47 | unformat_mpls_label_net_byte_order, &h->label)) |
| 48 | goto done; |
| 49 | |
| 50 | { |
| 51 | pg_node_t * pg_node = 0; |
| 52 | vlib_node_t * ip_lookup_node; |
| 53 | |
| 54 | ip_lookup_node = vlib_get_node_by_name (vm, (u8 *)"ip4-input"); |
| 55 | ASSERT (ip_lookup_node); |
| 56 | |
| 57 | pg_node = pg_get_node (ip_lookup_node->index); |
| 58 | |
| 59 | if (pg_node && pg_node->unformat_edit |
| 60 | && unformat_user (input, pg_node->unformat_edit, s)) |
| 61 | ; |
| 62 | } |
| 63 | |
| 64 | error = 0; |
| 65 | done: |
| 66 | if (error) |
| 67 | pg_free_edit_group (s); |
| 68 | return error == 0; |
| 69 | } |
| 70 | |