blob: 8b169f8f1e3fcbc74885d5cd406c930875c6d946 [file] [log] [blame]
Dave Barach3bbcfab2017-08-15 19:03:44 -04001/*
2 *------------------------------------------------------------------
3 * tcp_api.c - vnet tcp-layer apis
4 *
Florin Corasc5df8c72019-04-08 07:42:30 -07005 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Barach3bbcfab2017-08-15 19:03:44 -04006 * 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/tcp/tcp.h>
24
Jakub Grajciar956819a2020-01-03 10:02:32 +010025#include <vnet/ip/ip_types_api.h>
26
Dave Barach3bbcfab2017-08-15 19:03:44 -040027#include <vnet/vnet_msg_enum.h>
28
29#define vl_typedefs /* define message structures */
30#include <vnet/vnet_all_api_h.h>
31#undef vl_typedefs
32
33#define vl_endianfun /* define message structures */
34#include <vnet/vnet_all_api_h.h>
35#undef vl_endianfun
36
37/* instantiate all the print functions we know about */
38#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
39#define vl_printfun
40#include <vnet/vnet_all_api_h.h>
41#undef vl_printfun
42
43#include <vlibapi/api_helper_macros.h>
44
45#define foreach_tcp_api_msg \
46_(TCP_CONFIGURE_SRC_ADDRESSES, tcp_configure_src_addresses)
47
48static void
49 vl_api_tcp_configure_src_addresses_t_handler
50 (vl_api_tcp_configure_src_addresses_t * mp)
51{
52 vlib_main_t *vm = vlib_get_main ();
53 vl_api_tcp_configure_src_addresses_reply_t *rmp;
54 u32 vrf_id;
55 int rv;
Jakub Grajciar956819a2020-01-03 10:02:32 +010056 ip46_address_t first_address, last_address;
57 ip46_type_t fa_af, la_af;
Dave Barach3bbcfab2017-08-15 19:03:44 -040058
59 vrf_id = clib_net_to_host_u32 (mp->vrf_id);
60
Jakub Grajciar956819a2020-01-03 10:02:32 +010061 fa_af = ip_address_decode (&mp->first_address, &first_address);
62 la_af = ip_address_decode (&mp->last_address, &last_address);
63
64 if (fa_af != la_af)
65 {
66 rv = VNET_API_ERROR_INVALID_VALUE;
67 goto error;
68 }
69
70 if (fa_af == IP46_TYPE_IP6)
Dave Barach3bbcfab2017-08-15 19:03:44 -040071 rv = tcp_configure_v6_source_address_range
Jakub Grajciar956819a2020-01-03 10:02:32 +010072 (vm, &first_address.ip6, &last_address.ip6, vrf_id);
Dave Barach3bbcfab2017-08-15 19:03:44 -040073 else
74 rv = tcp_configure_v4_source_address_range
Jakub Grajciar956819a2020-01-03 10:02:32 +010075 (vm, &first_address.ip4, &last_address.ip4, vrf_id);
Dave Barach3bbcfab2017-08-15 19:03:44 -040076
Jakub Grajciar956819a2020-01-03 10:02:32 +010077error:
Dave Barach3bbcfab2017-08-15 19:03:44 -040078 REPLY_MACRO (VL_API_TCP_CONFIGURE_SRC_ADDRESSES_REPLY);
79}
80
81#define vl_msg_name_crc_list
82#include <vnet/tcp/tcp.api.h>
83#undef vl_msg_name_crc_list
84
85static void
86setup_message_id_table (api_main_t * am)
87{
88#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
89 foreach_vl_msg_name_crc_tcp;
90#undef _
91}
92
93static clib_error_t *
94tcp_api_hookup (vlib_main_t * vm)
95{
Dave Barach39d69112019-11-27 11:42:13 -050096 api_main_t *am = vlibapi_get_main ();
Dave Barach3bbcfab2017-08-15 19:03:44 -040097
98#define _(N,n) \
99 vl_msg_api_set_handlers(VL_API_##N, #n, \
100 vl_api_##n##_t_handler, \
101 vl_noop_handler, \
102 vl_api_##n##_t_endian, \
103 vl_api_##n##_t_print, \
104 sizeof(vl_api_##n##_t), 1);
105 foreach_tcp_api_msg;
106#undef _
107
108 /*
109 * Set up the (msg_name, crc, message-id) table
110 */
111 setup_message_id_table (am);
112
113 return 0;
114}
115
116VLIB_API_INIT_FUNCTION (tcp_api_hookup);
117
Dave Barach3bbcfab2017-08-15 19:03:44 -0400118/*
119 * fd.io coding-style-patch-verification: ON
120 *
121 * Local Variables:
122 * eval: (c-set-style "gnu")
123 * End:
124 */