SCTP: API to delete a sub-connection
[vpp.git] / src / vnet / sctp / sctp_api.c
1 /*
2  *------------------------------------------------------------------
3  * sctp_api.c - vnet sctp-layer API
4  *
5  * Copyright (c) 2018 SUSE LLC.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19
20 #include <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22
23 #include <vnet/sctp/sctp.h>
24
25 #include <vnet/vnet_msg_enum.h>
26
27 #define vl_typedefs             /* define message structures */
28 #include <vnet/vnet_all_api_h.h>
29 #undef vl_typedefs
30
31 #define vl_endianfun            /* define message structures */
32 #include <vnet/vnet_all_api_h.h>
33 #undef vl_endianfun
34
35 /* instantiate all the print functions we know about */
36 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
37 #define vl_printfun
38 #include <vnet/vnet_all_api_h.h>
39 #undef vl_printfun
40
41 #include <vlibapi/api_helper_macros.h>
42
43 #define foreach_sctp_api_msg                                    \
44 _(SCTP_ADD_SRC_DST_CONNECTION, sctp_add_src_dst_connection)             \
45 _(SCTP_DEL_SRC_DST_CONNECTION, sctp_del_src_dst_connection)
46
47 static void
48   vl_api_sctp_add_src_dst_connection_t_handler
49   (vl_api_sctp_add_src_dst_connection_t * mp)
50 {
51   vlib_main_t *vm = vlib_get_main ();
52   vl_api_sctp_add_src_dst_connection_reply_t *rmp;
53   int rv;
54
55   if (mp->is_ipv6)
56     rv = sctp_sub_connection_add_ip6
57       (vm,
58        (ip6_address_t *) mp->src_address, (ip6_address_t *) mp->dst_address);
59   else
60     rv = sctp_sub_connection_add_ip4
61       (vm,
62        (ip4_address_t *) mp->src_address, (ip4_address_t *) mp->dst_address);
63
64   REPLY_MACRO (VL_API_SCTP_ADD_SRC_DST_CONNECTION_REPLY);
65 }
66
67 static void
68   vl_api_sctp_del_src_dst_connection_t_handler
69   (vl_api_sctp_del_src_dst_connection_t * mp)
70 {
71   vl_api_sctp_del_src_dst_connection_reply_t *rmp;
72   int rv;
73
74   if (mp->is_ipv6)
75     rv = sctp_sub_connection_del_ip6
76       ((ip6_address_t *) mp->src_address, (ip6_address_t *) mp->dst_address);
77   else
78     rv = sctp_sub_connection_del_ip4
79       ((ip4_address_t *) mp->src_address, (ip4_address_t *) mp->dst_address);
80
81   REPLY_MACRO (VL_API_SCTP_ADD_SRC_DST_CONNECTION_REPLY);
82 }
83
84 #define vl_msg_name_crc_list
85 #include <vnet/sctp/sctp.api.h>
86 #undef vl_msg_name_crc_list
87
88 static void
89 setup_message_id_table (api_main_t * am)
90 {
91 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
92   foreach_vl_msg_name_crc_sctp;
93 #undef _
94 }
95
96 static clib_error_t *
97 sctp_api_hookup (vlib_main_t * vm)
98 {
99   api_main_t *am = &api_main;
100
101 #define _(N,n)                                                  \
102     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
103                            vl_api_##n##_t_handler,              \
104                            vl_noop_handler,                     \
105                            vl_api_##n##_t_endian,               \
106                            vl_api_##n##_t_print,                \
107                            sizeof(vl_api_##n##_t), 1);
108   foreach_sctp_api_msg;
109 #undef _
110
111   /*
112    * Set up the (msg_name, crc, message-id) table
113    */
114   setup_message_id_table (am);
115
116   return 0;
117 }
118
119 VLIB_API_INIT_FUNCTION (sctp_api_hookup);
120
121 void
122 sctp_api_reference (void)
123 {
124 }
125
126 /*
127  * fd.io coding-style-patch-verification: ON
128  *
129  * Local Variables:
130  * eval: (c-set-style "gnu")
131  * End:
132  */