blob: 170796b83c7ef8dc117d7fdfe0f88b0ab5b61cc5 [file] [log] [blame]
Neale Ranns097fa662018-05-01 05:17:55 -07001/*
2 * Copyright (c) 2018 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#include <vnet/vnet.h>
17#include <vlibmemory/api.h>
18#include <vnet/mfib/mfib_api.h>
19#include <vnet/mfib/mfib_table.h>
20#include <vnet/fib/fib_api.h>
21#include <vnet/ip/ip_types_api.h>
22
Neale Ranns097fa662018-05-01 05:17:55 -070023static vl_api_mfib_itf_flags_t
24mfib_api_path_itf_flags_encode (mfib_itf_flags_t flags)
25{
26 vl_api_mfib_itf_flags_t out = MFIB_API_ITF_FLAG_NONE;
27
28 switch (flags)
29 {
30 case MFIB_ITF_FLAG_NONE:
31 out = MFIB_API_ITF_FLAG_NONE;
32 break;
33 case MFIB_ITF_FLAG_NEGATE_SIGNAL:
34 out = MFIB_API_ITF_FLAG_NEGATE_SIGNAL;
35 break;
36 case MFIB_ITF_FLAG_ACCEPT:
37 out = MFIB_API_ITF_FLAG_ACCEPT;
38 break;
39 case MFIB_ITF_FLAG_FORWARD:
40 out = MFIB_API_ITF_FLAG_FORWARD;
41 break;
42 case MFIB_ITF_FLAG_SIGNAL_PRESENT:
43 out = MFIB_API_ITF_FLAG_SIGNAL_PRESENT;
44 break;
45 case MFIB_ITF_FLAG_DONT_PRESERVE:
46 out = MFIB_API_ITF_FLAG_DONT_PRESERVE;
47 break;
48 }
49 return (ntohl(out));
50}
51
52void
53mfib_api_path_encode (const fib_route_path_t *in,
54 vl_api_mfib_path_t *out)
55{
56 out->itf_flags = mfib_api_path_itf_flags_encode(in->frp_mitf_flags);
57
58 fib_api_path_encode(in, &out->path);
59}
60
61static void
62mfib_api_path_itf_flags_decode (vl_api_mfib_itf_flags_t in,
63 mfib_itf_flags_t *out)
64{
65 in = clib_net_to_host_u32(in);
66
Neale Ranns097fa662018-05-01 05:17:55 -070067 if (in & MFIB_API_ITF_FLAG_NEGATE_SIGNAL)
68 *out |= MFIB_ITF_FLAG_NEGATE_SIGNAL;
69 if (in & MFIB_API_ITF_FLAG_ACCEPT)
70 *out |= MFIB_ITF_FLAG_ACCEPT;
71 if (in & MFIB_API_ITF_FLAG_FORWARD)
72 *out |= MFIB_ITF_FLAG_FORWARD;
73 if (in & MFIB_API_ITF_FLAG_SIGNAL_PRESENT)
74 *out |= MFIB_ITF_FLAG_SIGNAL_PRESENT;
75 if (in & MFIB_API_ITF_FLAG_DONT_PRESERVE)
76 *out |= MFIB_ITF_FLAG_DONT_PRESERVE;
77}
78
Neale Ranns990f6942020-10-20 07:20:17 +000079mfib_entry_flags_t
80mfib_api_path_entry_flags_decode (vl_api_mfib_entry_flags_t in)
81{
82 mfib_entry_flags_t out;
83
84 out = MFIB_ENTRY_FLAG_NONE;
85 in = clib_net_to_host_u32(in);
86
87 if (in & MFIB_API_ENTRY_FLAG_SIGNAL)
88 out |= MFIB_ENTRY_FLAG_SIGNAL;
89 if (in & MFIB_API_ENTRY_FLAG_DROP)
90 out |= MFIB_ENTRY_FLAG_DROP;
91 if (in & MFIB_API_ENTRY_FLAG_CONNECTED)
92 out |= MFIB_ENTRY_FLAG_CONNECTED;
93 if (in & MFIB_API_ENTRY_FLAG_ACCEPT_ALL_ITF)
94 out |= MFIB_ENTRY_FLAG_ACCEPT_ALL_ITF;
95
96 return (out);
97}
98
Neale Ranns097fa662018-05-01 05:17:55 -070099int
100mfib_api_path_decode (vl_api_mfib_path_t *in,
101 fib_route_path_t *out)
102{
103 mfib_api_path_itf_flags_decode(in->itf_flags, &out->frp_mitf_flags);
104
105 return (fib_api_path_decode(&in->path, out));
106}
107
108int
109mfib_api_table_id_decode (fib_protocol_t fproto,
110 u32 table_id,
111 u32 *fib_index)
112{
113 *fib_index = mfib_table_find(fproto, table_id);
114
115 if (INDEX_INVALID == *fib_index)
116 {
117 return VNET_API_ERROR_NO_SUCH_FIB;
118 }
119
120 return (0);
121}