FD.io VPP  v21.01
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 
61 /* *INDENT-OFF* */
63  .function = cnat_scanner_process,
64  .type = VLIB_NODE_TYPE_PROCESS,
65  .name = "cnat-scanner-process",
66 };
67 /* *INDENT-ON* */
68 
69 static clib_error_t *
72 {
74 
75  cmd = CNAT_SCANNER_ON;
76 
78  {
79  if (unformat (input, "on"))
80  cmd = CNAT_SCANNER_ON;
81  else if (unformat (input, "off"))
82  cmd = CNAT_SCANNER_OFF;
83  else
84  return (clib_error_return (0, "unknown input '%U'",
85  format_unformat_error, input));
86  }
88 
89  return (NULL);
90 }
91 
92 /* *INDENT-OFF* */
93 VLIB_CLI_COMMAND (cnat_scanner_cmd_node, static) = {
94  .path = "test cnat scanner",
95  .function = cnat_scanner_cmd,
96  .short_help = "test cnat scanner",
97 };
98 /* *INDENT-ON* */
99 
100 static clib_error_t *
102 {
105 
106  return (NULL);
107 }
108 
110 
111 /*
112  * fd.io coding-style-patch-verification: ON
113  *
114  * Local Variables:
115  * eval: (c-set-style "gnu")
116  * End:
117  */
u64 cnat_session_scan(vlib_main_t *vm, f64 start_time, int i)
Scan the session DB for expired sessions.
Definition: cnat_session.c:159
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:751
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:656
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:334
vlib_main_t * vm
Definition: in2out_ed.c:1578
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
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:579
#define clib_error_return(e, args...)
Definition: error.h:99
vnet_crypto_main_t * cm
Definition: quic_crypto.c:53
static clib_error_t * cnat_scanner_cmd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *c)
Definition: cnat_scanner.c:70
struct _unformat_input_t unformat_input_t
void cnat_client_throttle_pool_process()
Definition: cnat_client.c:71
void cnat_enable_disable_scanner(cnat_scanner_cmd_t event_type)
Enable/Disable session cleanup.
Definition: cnat_types.c:161
f64 scanner_timeout
Definition: cnat_types.h:125
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:170
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
svmdb_client_t * c
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
vlib_node_registration_t cnat_scanner_process_node
(constructor) VLIB_REGISTER_NODE (cnat_scanner_process_node)
Definition: cnat_scanner.c:62
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:158
#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:140
static clib_error_t * cnat_scanner_init(vlib_main_t *vm)
Definition: cnat_scanner.c:101
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:170