Also, made disconnect-instance and delete-instance functions available via cli. Type: feature Change-Id: I7939d27867959cb871b1cc7205b94410b53906fd Signed-off-by: Alexander Skorichenko <askorichenko@netgate.com>
130 lines
3.0 KiB
C
130 lines
3.0 KiB
C
/* SPDX-License-Identifier: Apache-2.0
|
|
* Copyright(c) 2021 Cisco Systems, Inc.
|
|
*/
|
|
|
|
#ifndef __snort_snort_h__
|
|
#define __snort_snort_h__
|
|
|
|
#include <vppinfra/error.h>
|
|
#include <vppinfra/socket.h>
|
|
#include <vppinfra/file.h>
|
|
#include <vlib/vlib.h>
|
|
#include <snort/daq_vpp.h>
|
|
|
|
typedef struct
|
|
{
|
|
CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
|
|
u8 log2_queue_size;
|
|
daq_vpp_desc_t *descriptors;
|
|
volatile u32 *enq_head;
|
|
volatile u32 *deq_head;
|
|
volatile u32 *enq_ring;
|
|
volatile u32 *deq_ring;
|
|
u32 next_desc;
|
|
int enq_fd, deq_fd;
|
|
u32 deq_fd_file_index;
|
|
u32 *buffer_indices;
|
|
u16 *next_indices;
|
|
u32 *freelist;
|
|
u32 ready;
|
|
|
|
/* temporary storeage used by enqueue node */
|
|
u32 n_pending;
|
|
u16 pending_nexts[VLIB_FRAME_SIZE];
|
|
u32 pending_buffers[VLIB_FRAME_SIZE];
|
|
daq_vpp_desc_t pending_descs[VLIB_FRAME_SIZE];
|
|
} snort_qpair_t;
|
|
|
|
typedef struct
|
|
{
|
|
u32 index;
|
|
u32 client_index;
|
|
void *shm_base;
|
|
u32 shm_size;
|
|
int shm_fd;
|
|
snort_qpair_t *qpairs;
|
|
u8 *name;
|
|
u8 drop_on_disconnect;
|
|
} snort_instance_t;
|
|
|
|
typedef struct
|
|
{
|
|
daq_vpp_msg_t msg;
|
|
int fds[2];
|
|
int n_fds;
|
|
} snort_client_msg_queue_elt;
|
|
|
|
typedef struct
|
|
{
|
|
clib_socket_t socket;
|
|
u32 instance_index;
|
|
u32 file_index;
|
|
snort_client_msg_queue_elt *msg_queue;
|
|
} snort_client_t;
|
|
|
|
typedef struct
|
|
{
|
|
/* per-instance dequeue interrupts */
|
|
void *interrupts;
|
|
} snort_per_thread_data_t;
|
|
|
|
typedef struct
|
|
{
|
|
clib_socket_t *listener;
|
|
snort_client_t *clients;
|
|
snort_instance_t *instances;
|
|
uword *instance_by_name;
|
|
u32 *instance_by_sw_if_index;
|
|
u8 **buffer_pool_base_addrs;
|
|
snort_per_thread_data_t *per_thread_data;
|
|
u32 input_mode;
|
|
u8 *socket_name;
|
|
/* API message ID base */
|
|
u16 msg_id_base;
|
|
} snort_main_t;
|
|
|
|
extern clib_file_main_t file_main;
|
|
extern snort_main_t snort_main;
|
|
extern vlib_node_registration_t snort_enq_node;
|
|
extern vlib_node_registration_t snort_deq_node;
|
|
|
|
typedef enum
|
|
{
|
|
SNORT_ENQ_NEXT_DROP,
|
|
SNORT_ENQ_N_NEXT_NODES,
|
|
} snort_enq_next_t;
|
|
|
|
typedef enum
|
|
{
|
|
SNORT_INPUT = 1,
|
|
SNORT_OUTPUT = 2,
|
|
SNORT_INOUT = 3
|
|
} snort_attach_dir_t;
|
|
|
|
#define SNORT_ENQ_NEXT_NODES \
|
|
{ \
|
|
[SNORT_ENQ_NEXT_DROP] = "error-drop", \
|
|
}
|
|
|
|
/* functions */
|
|
snort_main_t *snort_get_main ();
|
|
snort_instance_t *snort_get_instance_by_index (u32 instance_index);
|
|
snort_instance_t *snort_get_instance_by_name (char *name);
|
|
int snort_instance_create (vlib_main_t *vm, char *name, u8 log2_queue_sz,
|
|
u8 drop_on_disconnect);
|
|
int snort_interface_enable_disable (vlib_main_t *vm, char *instance_name,
|
|
u32 sw_if_index, int is_enable,
|
|
snort_attach_dir_t dir);
|
|
int snort_set_node_mode (vlib_main_t *vm, u32 mode);
|
|
int snort_instance_delete (vlib_main_t *vm, u32 instance_index);
|
|
int snort_instance_disconnect (vlib_main_t *vm, u32 instance_index);
|
|
|
|
always_inline void
|
|
snort_freelist_init (u32 *fl)
|
|
{
|
|
for (int j = 0; j < vec_len (fl); j++)
|
|
fl[j] = j;
|
|
}
|
|
|
|
#endif /* __snort_snort_h__ */
|