blob: ec16547eebff9ead056424ab726c926e1f96b4bb [file] [log] [blame]
Pablo Camarillofb380952016-12-07 18:34:18 +01001/*
2 * Copyright (c) 2015 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 *------------------------------------------------------------------
17 * srv6_localsid_sample.c - Simple SRv6 LocalSID
18 *------------------------------------------------------------------
19 */
20
21#include <vnet/vnet.h>
22#include <vnet/plugin/plugin.h>
23#include <srv6-localsid/srv6_localsid_sample.h>
24
25#include <vlibapi/api.h>
26#include <vlibmemory/api.h>
27#include <vlibsocket/api.h>
28
29unsigned char srv6_localsid_name[32] = "Sample-SRv6-LocalSID-plugin";
30unsigned char keyword_str[32] = "new_srv6_localsid";
31unsigned char def_str[64] = "This is a definition of a sample new_srv6_localsid";
32unsigned char params_str[32] = "<fib_table>";
33
34/*****************************************/
35/* SRv6 LocalSID instantiation and removal functions */
36static int
37srv6_localsid_creation_fn (ip6_sr_localsid_t *localsid)
38{
39 /*
40 * Do you want to do anything fancy upon localsid instantiation?
41 * You can do it here
42 * (If return != 0 the localsid creation will be cancelled.)
43 */
44 /* As an example Im going to do a +1 to the fib table inserted by the user */
45 srv6_localsid_sample_per_sid_memory_t *ls_mem = localsid->plugin_mem;
46 ls_mem->fib_table += 1;
47 return 0;
48}
49
50static int
51srv6_localsid_removal_fn (ip6_sr_localsid_t *localsid)
52{
53 /* Do you want to do anything fancy upon localsid removal?
54 * You can do it here
55 * (If return != 0 the localsid removal will be cancelled.)
56 */
57 /*
58 * BTW if you stored something in localsid->plugin_mem you should clean it now
59 */
60
61 //In this example we are only cleaning the memory allocated per localsid
62 clib_mem_free(localsid->plugin_mem);
63 return 0;
64}
65
66/**********************************/
67/* SRv6 LocalSID format functions */
68/*
69 * Prints nicely the parameters of a localsid
70 * Example: print "Table 5"
71 */
72u8 *
73format_srv6_localsid_sample (u8 * s, va_list * args)
74{
75 srv6_localsid_sample_per_sid_memory_t *ls_mem = va_arg (*args, void *);
76 return (format (s, "Table: %u", ls_mem->fib_table));
77}
78
79/*
80 * Process the parameters of a localsid
81 * Example: process from:
82 * sr localsid address cafe::1 behavior new_srv6_localsid 5
83 * everything from behavior on... so in this case 'new_srv6_localsid 5'
84 * Notice that it MUST match the keyword_str and params_str defined above.
85 */
86uword
87unformat_srv6_localsid_sample (unformat_input_t * input, va_list * args)
88{
89 void **plugin_mem = va_arg (*args, void **);
90 srv6_localsid_sample_per_sid_memory_t *ls_mem;
91 u32 table_id;
92 if (unformat (input, "new_srv6_localsid %u", &table_id))
93 {
94 /* Allocate a portion of memory */
95 ls_mem = clib_mem_alloc_aligned_at_offset (
96 sizeof(srv6_localsid_sample_per_sid_memory_t), 0, 0, 1);
97
98 /* Set to zero the memory */
99 memset (ls_mem, 0, sizeof(srv6_localsid_sample_per_sid_memory_t));
100
101 /* Our brand-new car is ready */
102 ls_mem->fib_table = table_id;
103
104 /* Dont forget to add it to the localsid */
105 *plugin_mem = ls_mem;
106 return 1;
107 }
108 return 0;
109}
110
111/*************************/
112/* SRv6 LocalSID FIB DPO */
113static u8 *
114format_srv6_localsid_sample_dpo (u8 * s, va_list * args)
115{
116 index_t index = va_arg (*args, index_t);
117 CLIB_UNUSED (u32 indent) = va_arg (*args, u32);
118
119 return (format (s, "SR: localsid_sample_index:[%u]", index));
120}
121
122void
123srv6_localsid_sample_dpo_lock (dpo_id_t * dpo)
124{
125}
126
127void
128srv6_localsid_sample_dpo_unlock (dpo_id_t * dpo)
129{
130}
131
132const static dpo_vft_t srv6_localsid_sample_vft = {
133 .dv_lock = srv6_localsid_sample_dpo_lock,
134 .dv_unlock = srv6_localsid_sample_dpo_unlock,
135 .dv_format = format_srv6_localsid_sample_dpo,
136};
137
138const static char *const srv6_localsid_sample_ip6_nodes[] = {
139 "srv6-localsid-sample",
140 NULL,
141};
142
143const static char *const *const srv6_localsid_sample_nodes[DPO_PROTO_NUM] = {
144 [DPO_PROTO_IP6] = srv6_localsid_sample_ip6_nodes,
145};
146
147/**********************/
148static clib_error_t * srv6_localsid_sample_init (vlib_main_t * vm)
149{
150 srv6_localsid_sample_main_t * sm = &srv6_localsid_sample_main;
151 int rv = 0;
152 /* Create DPO */
153 sm->srv6_localsid_sample_dpo_type = dpo_register_new_type (
154 &srv6_localsid_sample_vft, srv6_localsid_sample_nodes);
155
156 /* Register SRv6 LocalSID */
157 rv = sr_localsid_register_function (vm,
158 srv6_localsid_name,
159 keyword_str,
160 def_str,
161 params_str,
162 &sm->srv6_localsid_sample_dpo_type,
163 format_srv6_localsid_sample,
164 unformat_srv6_localsid_sample,
165 srv6_localsid_creation_fn,
166 srv6_localsid_removal_fn);
167 if (rv < 0)
168 clib_error_return (0, "SRv6 LocalSID function could not be registered.");
169 else
170 sm->srv6_localsid_behavior_id = rv;
171
172 return 0;
173}
174
175VLIB_INIT_FUNCTION (srv6_localsid_sample_init);
176
177VLIB_PLUGIN_REGISTER () = {
178 .version = "1.0",
179};