FD.io VPP  v21.06-1-gbb7418cf9
Vector Packet Processing
cnat_scanner.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 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 <cnat/cnat_session.h>
17 #include <cnat/cnat_client.h>
18 
19 static uword
22 {
23  uword event_type, *event_data = 0;
25  f64 start_time;
26  int enabled = 0, i = 0;
27 
28  while (1)
29  {
30  if (enabled)
32  else
34 
35  event_type = vlib_process_get_events (vm, &event_data);
36  vec_reset_length (event_data);
37 
38  start_time = vlib_time_now (vm);
39 
40  switch (event_type)
41  {
42  /* timer expired */
43  case ~0:
44  break;
45  case CNAT_SCANNER_OFF:
46  enabled = 0;
47  break;
48  case CNAT_SCANNER_ON:
49  enabled = 1;
50  break;
51  default:
52  ASSERT (0);
53  }
54 
56  i = cnat_session_scan (vm, start_time, i);
57  }
58  return 0;
59 }
60 
62  .function = cnat_scanner_process,
63  .type = VLIB_NODE_TYPE_PROCESS,
64  .name = "cnat-scanner-process",
65 };
66 
67 static clib_error_t *
70 {
72 
73  cmd = CNAT_SCANNER_ON;
74 
76  {
77  if (unformat (input, "on"))
78  cmd = CNAT_SCANNER_ON;
79  else if (unformat (input, "off"))
80  cmd = CNAT_SCANNER_OFF;
81  else
82  return (clib_error_return (0, "unknown input '%U'",
83  format_unformat_error, input));
84  }
86 
87  return (NULL);
88 }
89 
90 VLIB_CLI_COMMAND (cnat_scanner_cmd_node, static) = {
91  .path = "test cnat scanner",
92  .function = cnat_scanner_cmd,
93  .short_help = "test cnat scanner",
94 };
95 
96 static clib_error_t *
98 {
101 
102  return (NULL);
103 }
104 
106 
107 /*
108  * fd.io coding-style-patch-verification: ON
109  *
110  * Local Variables:
111  * eval: (c-set-style "gnu")
112  * End:
113  */
vnet_interface_output_runtime_t * rt
u64 cnat_session_scan(vlib_main_t *vm, f64 start_time, int i)
Scan the session DB for expired sessions.
Definition: cnat_session.c:176
enum cnat_scanner_cmd_t_ cnat_scanner_cmd_t
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:755
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:660
vnet_feature_config_main_t * cm
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:325
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
vlib_frame_t * f
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:583
#define clib_error_return(e, args...)
Definition: error.h:99
static clib_error_t * cnat_scanner_cmd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *c)
Definition: cnat_scanner.c:68
struct _unformat_input_t unformat_input_t
void cnat_client_throttle_pool_process()
Definition: cnat_client.c:69
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
void cnat_enable_disable_scanner(cnat_scanner_cmd_t event_type)
Enable/Disable session cleanup.
Definition: cnat_types.c:169
f64 scanner_timeout
Definition: cnat_types.h:126
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
#define UNFORMAT_END_OF_INPUT
Definition: format.h:137
svmdb_client_t * c
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:261
vlib_node_registration_t cnat_scanner_process_node
(constructor) VLIB_REGISTER_NODE (cnat_scanner_process_node)
Definition: cnat_scanner.c:61
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:163
#define ASSERT(truth)
static uword cnat_scanner_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: cnat_scanner.c:20
u64 uword
Definition: types.h:112
cnat_main_t cnat_main
Definition: cnat_types.c:18
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
uword scanner_node_index
Definition: cnat_types.h:132
static clib_error_t * cnat_scanner_init(vlib_main_t *vm)
Definition: cnat_scanner.c:97
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:163