FD.io VPP  v21.06
Vector Packet Processing
mss_clamp_api.c
Go to the documentation of this file.
1 /*
2  * mss_clamp_api.c - TCP MSS clamping plug-in
3  *
4  * Copyright (c) <current-year> <your-organization>
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #include <vnet/vnet.h>
19 #include <vnet/plugin/plugin.h> /* VLIB_PLUGIN_REGISTER */
20 #include <mss_clamp/mss_clamp.h>
21 #include <mss_clamp/mss_clamp.api_enum.h>
22 #include <mss_clamp/mss_clamp.api_types.h>
23 #include <vlibapi/api.h>
24 #include <vlibmemory/api.h>
25 #include <vpp/app/version.h> /* VPP_BUILD_VER */
26 
27 #define REPLY_MSG_ID_BASE cm->msg_id_base
29 
30 /* API message handler */
31 static void
34 {
36  vl_api_mss_clamp_enable_disable_reply_t *rmp;
37  int rv;
38 
40 
41  rv = mssc_enable_disable (ntohl (mp->sw_if_index), mp->ipv4_direction,
42  mp->ipv6_direction, ntohs (mp->ipv4_mss),
43  ntohs (mp->ipv6_mss));
44 
46  REPLY_MACRO (VL_API_MSS_CLAMP_ENABLE_DISABLE_REPLY);
47 }
48 
49 static void
51  u32 context)
52 {
55  u16 mss4, mss6;
56  u8 dir4, dir6;
57  int rv;
58 
59  mss4 = mss6 = 0;
60  dir4 = dir6 = MSS_CLAMP_DIR_NONE;
61  rv = mssc_get_mss (sw_if_index, &dir4, &dir6, &mss4, &mss6);
62  if (rv == VNET_API_ERROR_FEATURE_DISABLED)
63  return;
64 
65  REPLY_MACRO_DETAILS4 (VL_API_MSS_CLAMP_DETAILS, rp, context, ({
66  rmp->sw_if_index = htonl (sw_if_index);
67  rmp->ipv4_mss = htons (mss4);
68  rmp->ipv6_mss = htons (mss6);
69  rmp->ipv4_direction = dir4;
70  rmp->ipv6_direction = dir6;
71  }));
72 }
73 
74 static void
76 {
79  int rv = 0;
80  u32 sw_if_index = ntohl (mp->sw_if_index);
82 
84  if (!reg)
85  return;
86 
87  if (sw_if_index == ~0)
88  {
89  if (vec_len (cm->dir_enabled4) == 0)
90  {
91  REPLY_MACRO2 (VL_API_MSS_CLAMP_GET_REPLY, ({ rmp->cursor = ~0; }));
92  return;
93  }
94 
96  VL_API_MSS_CLAMP_GET_REPLY, cm->dir_enabled4,
97  ({ send_mss_clamp_details (cursor, reg, mp->context); }));
98  }
99  else
100  {
102  send_mss_clamp_details (sw_if_index, reg, mp->context);
103 
105  REPLY_MACRO2 (VL_API_MSS_CLAMP_GET_REPLY, ({ rmp->cursor = ~0; }));
106  }
107 }
108 
109 /* API definitions */
110 #include <vnet/format_fns.h>
111 #include <mss_clamp/mss_clamp.api.c>
112 
113 /* Set up the API message handling tables */
114 static clib_error_t *
116 {
118 
120  return 0;
121 }
122 
124 
126  .version = VPP_BUILD_VER,
127  .description = "TCP MSS clamping plugin",
128 };
129 
130 /*
131  * fd.io coding-style-patch-verification: ON
132  *
133  * Local Variables:
134  * eval: (c-set-style "gnu")
135  * End:
136  */
Configured MSS values on an interface.
Definition: mss_clamp.api:89
vl_api_interface_index_t sw_if_index
Definition: mss_clamp.api:67
u16 msg_id_base
Definition: mss_clamp.h:40
vl_api_mss_clamp_dir_t ipv6_direction
Definition: mss_clamp.api:44
#define ntohs(x)
Definition: af_xdp.bpf.c:29
static clib_error_t * mssc_api_hookup(vlib_main_t *vm)
#define REPLY_MACRO2(t, body)
vnet_feature_config_main_t * cm
vl_api_mss_clamp_dir_t ipv4_direction
Definition: mss_clamp.api:94
unsigned char u8
Definition: types.h:56
static void vl_api_mss_clamp_enable_disable_t_handler(vl_api_mss_clamp_enable_disable_t *mp)
Definition: mss_clamp_api.c:32
unsigned int u32
Definition: types.h:88
VLIB_API_INIT_FUNCTION(mssc_api_hookup)
int mssc_enable_disable(u32 sw_if_index, u8 dir4, u8 dir6, u16 mss4, u16 mss6)
Definition: mss_clamp.c:50
int __clib_unused rv
Definition: application.c:491
#define REPLY_MACRO_DETAILS4(t, rp, context, body)
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
unsigned short u16
Definition: types.h:57
mssc_main_t mssc_main
Definition: mss_clamp.c:23
#define REPLY_MACRO(t)
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
An API client registration, only in vpp/vlib.
Definition: api_common.h:47
static void setup_message_id_table(api_main_t *am)
Definition: bfd_api.c:451
#define BAD_SW_IF_INDEX_LABEL
vl_api_interface_index_t sw_if_index
Definition: mss_clamp.api:40
#define REPLY_AND_DETAILS_MACRO(t, p, body)
int mssc_get_mss(u32 sw_if_index, u8 *dir4, u8 *dir6, u16 *mss4, u16 *mss6)
Definition: mss_clamp.c:85
static void vl_api_mss_clamp_get_t_handler(vl_api_mss_clamp_get_t *mp)
Definition: mss_clamp_api.c:75
Get the TCP MSS Clamping feature settings.
Definition: mss_clamp.api:63
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:79
static void send_mss_clamp_details(u32 sw_if_index, vl_api_registration_t *rp, u32 context)
Definition: mss_clamp_api.c:50
Enable/Disable TCP MSS Clamping feature on an interface.
Definition: mss_clamp.api:37
u8 * dir_enabled4
Definition: mss_clamp.h:36
vl_api_interface_index_t sw_if_index
Definition: mss_clamp.api:91
vl_api_mss_clamp_dir_t ipv6_direction
Definition: mss_clamp.api:95
vl_api_mss_clamp_dir_t ipv4_direction
Definition: mss_clamp.api:43
u32 context
Definition: ip.api:780
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
VLIB_PLUGIN_REGISTER()
Reply for get TCP MSS Clamping feature settings request.
Definition: mss_clamp.api:75
#define VALIDATE_SW_IF_INDEX(mp)