blob: 185b07a2c1be14e0c590dd7ee491ba4b92a76afa [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#include <vnet/dpo/dpo.h>
17#include <vnet/lisp-gpe/lisp_gpe.h>
18#include <vnet/lisp-cp/control.h>
19
Neale Ranns5e575b12016-10-03 09:40:25 +010020/**
21 * The static array of LISP punt DPOs
22 */
23static dpo_id_t lisp_cp_dpos[DPO_PROTO_NUM];
24
25const dpo_id_t *
26lisp_cp_dpo_get (dpo_proto_t proto)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010027{
Neale Ranns5e575b12016-10-03 09:40:25 +010028 /*
29 * there are only two instances of this DPO type.
30 * we can use the protocol as the index
31 */
32 return (&lisp_cp_dpos[proto]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010033}
34
Neale Ranns5e575b12016-10-03 09:40:25 +010035static u8 *
36format_lisp_cp_dpo (u8 * s, va_list * args)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010037{
Neale Ranns5e575b12016-10-03 09:40:25 +010038 index_t index = va_arg (*args, index_t);
39 CLIB_UNUSED (u32 indent) = va_arg (*args, u32);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010040
Neale Ranns5e575b12016-10-03 09:40:25 +010041 return (format (s, "lisp-cp-punt-%U", format_dpo_proto, index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +010042}
43
44static void
Neale Ranns5e575b12016-10-03 09:40:25 +010045lisp_cp_dpo_lock (dpo_id_t * dpo)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010046{
47}
48
49static void
Neale Ranns5e575b12016-10-03 09:40:25 +010050lisp_cp_dpo_unlock (dpo_id_t * dpo)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010051{
52}
53
54const static dpo_vft_t lisp_cp_vft = {
Neale Ranns5e575b12016-10-03 09:40:25 +010055 .dv_lock = lisp_cp_dpo_lock,
56 .dv_unlock = lisp_cp_dpo_unlock,
57 .dv_format = format_lisp_cp_dpo,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010058};
59
60/**
61 * @brief The per-protocol VLIB graph nodes that are assigned to a LISP-CP
62 * object.
63 *
64 * this means that these graph nodes are ones from which a LISP-CP is the
65 * parent object in the DPO-graph.
66 */
Neale Ranns5e575b12016-10-03 09:40:25 +010067const static char *const lisp_cp_ip4_nodes[] = {
68 "lisp-cp-lookup-ip4",
69 NULL,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010070};
71
Neale Ranns5e575b12016-10-03 09:40:25 +010072const static char *const lisp_cp_ip6_nodes[] = {
73 "lisp-cp-lookup-ip6",
74 NULL,
75};
76
77const static char *const lisp_cp_ethernet_nodes[] = {
78 "lisp-cp-lookup-l2",
79 NULL,
80};
81
82
83const static char *const *const lisp_cp_nodes[DPO_PROTO_NUM] = {
84 [DPO_PROTO_IP4] = lisp_cp_ip4_nodes,
85 [DPO_PROTO_IP6] = lisp_cp_ip6_nodes,
86 [DPO_PROTO_ETHERNET] = lisp_cp_ethernet_nodes,
87 [DPO_PROTO_MPLS] = NULL,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010088};
89
90clib_error_t *
91lisp_cp_dpo_module_init (vlib_main_t * vm)
92{
Neale Ranns5e575b12016-10-03 09:40:25 +010093 dpo_proto_t dproto;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010094
Neale Ranns5e575b12016-10-03 09:40:25 +010095 /*
96 * there are no exit arcs from the LIS-CP VLIB node, so we
97 * pass NULL as said node array.
98 */
99 dpo_register (DPO_LISP_CP, &lisp_cp_vft, lisp_cp_nodes);
100
101 FOR_EACH_DPO_PROTO (dproto)
102 {
103 dpo_set (&lisp_cp_dpos[dproto], DPO_LISP_CP, dproto, dproto);
104 }
105
106 return (NULL);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100107}
108
Neale Ranns5e575b12016-10-03 09:40:25 +0100109VLIB_INIT_FUNCTION (lisp_cp_dpo_module_init);
110
111/*
112 * fd.io coding-style-patch-verification: ON
113 *
114 * Local Variables:
115 * eval: (c-set-style "gnu")
116 * End:
117 */