|
|
|
/* Copyright (C) 2011,2012 Open Information Security Foundation
|
|
|
|
*
|
|
|
|
* You can copy, redistribute or modify this Program under the terms of
|
|
|
|
* the GNU General Public License version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* version 2 along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
*
|
|
|
|
* \author Eric Leblond <eric@regit.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SOURCE_AFP_H__
|
|
|
|
#define __SOURCE_AFP_H__
|
|
|
|
|
|
|
|
#ifndef HAVE_PACKET_FANOUT /* not defined if linux/if_packet.h trying to force */
|
|
|
|
#define HAVE_PACKET_FANOUT 1
|
|
|
|
|
|
|
|
#define PACKET_FANOUT 18
|
|
|
|
|
|
|
|
#define PACKET_FANOUT_HASH 0
|
|
|
|
#define PACKET_FANOUT_LB 1
|
|
|
|
#define PACKET_FANOUT_CPU 2
|
|
|
|
#define PACKET_FANOUT_ROLLOVER 3
|
|
|
|
#define PACKET_FANOUT_RND 4
|
|
|
|
#define PACKET_FANOUT_QM 5
|
|
|
|
|
|
|
|
#define PACKET_FANOUT_FLAG_ROLLOVER 0x1000
|
|
|
|
#define PACKET_FANOUT_FLAG_DEFRAG 0x8000
|
|
|
|
#else /* HAVE_PACKET_FANOUT */
|
|
|
|
#include <linux/if_packet.h>
|
|
|
|
#endif /* HAVE_PACKET_FANOUT */
|
|
|
|
#include "queue.h"
|
|
|
|
|
|
|
|
/* value for flags */
|
|
|
|
#define AFP_RING_MODE (1<<0)
|
|
|
|
#define AFP_ZERO_COPY (1<<1)
|
|
|
|
#define AFP_SOCK_PROTECT (1<<2)
|
|
|
|
#define AFP_EMERGENCY_MODE (1<<3)
|
|
|
|
#define AFP_TPACKET_V3 (1<<4)
|
|
|
|
#define AFP_VLAN_DISABLED (1<<5)
|
|
|
|
#define AFP_MMAP_LOCKED (1<<6)
|
|
|
|
|
|
|
|
#define AFP_COPY_MODE_NONE 0
|
|
|
|
#define AFP_COPY_MODE_TAP 1
|
|
|
|
#define AFP_COPY_MODE_IPS 2
|
|
|
|
|
|
|
|
#define AFP_FILE_MAX_PKTS 256
|
|
|
|
#define AFP_IFACE_NAME_LENGTH 48
|
|
|
|
|
|
|
|
/* In kernel the allocated block size is allocated using the formula
|
|
|
|
* page_size << order. So default value is using the same formula with
|
|
|
|
* an order of 3 which guarantee we have some room in the block compared
|
|
|
|
* to standard frame size */
|
|
|
|
#define AFP_BLOCK_SIZE_DEFAULT_ORDER 3
|
|
|
|
|
|
|
|
typedef struct AFPIfaceConfig_
|
|
|
|
{
|
|
|
|
char iface[AFP_IFACE_NAME_LENGTH];
|
|
|
|
/* number of threads */
|
|
|
|
int threads;
|
|
|
|
/* socket buffer size */
|
|
|
|
int buffer_size;
|
|
|
|
/* ring size in number of packets */
|
|
|
|
int ring_size;
|
|
|
|
/* block size for tpacket_v3 in */
|
|
|
|
int block_size;
|
|
|
|
/* block timeout for tpacket_v3 in milliseconds */
|
|
|
|
int block_timeout;
|
|
|
|
/* cluster param */
|
|
|
|
int cluster_id;
|
|
|
|
int cluster_type;
|
|
|
|
/* promisc mode */
|
|
|
|
int promisc;
|
|
|
|
/* misc use flags including ring mode */
|
|
|
|
int flags;
|
|
|
|
int copy_mode;
|
|
|
|
ChecksumValidationMode checksum_mode;
|
|
|
|
char *bpf_filter;
|
|
|
|
char *out_iface;
|
|
|
|
SC_ATOMIC_DECLARE(unsigned int, ref);
|
|
|
|
void (*DerefFunc)(void *);
|
|
|
|
} AFPIfaceConfig;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \ingroup afppeers
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct AFPPeer_ {
|
|
|
|
SC_ATOMIC_DECLARE(int, socket);
|
|
|
|
SC_ATOMIC_DECLARE(int, sock_usage);
|
|
|
|
SC_ATOMIC_DECLARE(int, if_idx);
|
|
|
|
int flags;
|
|
|
|
SCMutex sock_protect;
|
|
|
|
int turn; /**< Field used to store initialisation order. */
|
|
|
|
SC_ATOMIC_DECLARE(uint8_t, state);
|
|
|
|
struct AFPPeer_ *peer;
|
|
|
|
TAILQ_ENTRY(AFPPeer_) next;
|
|
|
|
char iface[AFP_IFACE_NAME_LENGTH];
|
|
|
|
} AFPPeer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief per packet AF_PACKET vars
|
|
|
|
*
|
|
|
|
* This structure is used y the release data system and is cleaned
|
|
|
|
* up by the AFPV_CLEANUP macro below.
|
|
|
|
*/
|
|
|
|
typedef struct AFPPacketVars_
|
|
|
|
{
|
|
|
|
void *relptr;
|
|
|
|
AFPPeer *peer; /**< Sending peer for IPS/TAP mode */
|
|
|
|
/** Pointer to ::AFPPeer used for capture. Field is used to be able
|
|
|
|
* to do reference counting.
|
|
|
|
*/
|
|
|
|
AFPPeer *mpeer;
|
|
|
|
uint8_t copy_mode;
|
|
|
|
} AFPPacketVars;
|
|
|
|
|
|
|
|
#define AFPV_CLEANUP(afpv) do { \
|
|
|
|
(afpv)->relptr = NULL; \
|
|
|
|
(afpv)->copy_mode = 0; \
|
|
|
|
(afpv)->peer = NULL; \
|
|
|
|
(afpv)->mpeer = NULL; \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
void TmModuleReceiveAFPRegister (void);
|
|
|
|
void TmModuleDecodeAFPRegister (void);
|
|
|
|
|
|
|
|
TmEcode AFPPeersListInit();
|
|
|
|
TmEcode AFPPeersListCheck();
|
|
|
|
void AFPPeersListClean();
|
|
|
|
int AFPGetLinkType(const char *ifname);
|
|
|
|
|
af-packet: test if fanout is supported before use
Older system may pretend they can support FANOUT but then fail to
work at runtime. CentOS6 is an example of this. It would fail to
start up with the default configuration with errors like:
[15770] 21/6/2016 -- 16:00:13 - (tm-threads.c:2168) <Notice> (TmThreadWaitOnThreadInit) -- all 4 packet processing threads, 4 management threads initialized, engine started.
[15785] 21/6/2016 -- 16:00:13 - (source-af-packet.c:1907) <Error> (AFPCreateSocket) -- [ERRCODE: SC_ERR_AFP_CREATE(190)] - Coudn't set fanout mode, error Protocol not available
[15785] 21/6/2016 -- 16:00:13 - (source-af-packet.c:1337) <Error> (ReceiveAFPLoop) -- [ERRCODE: SC_ERR_AFP_CREATE(190)] - Couldn't init AF_PACKET socket, fatal error
[15770] 21/6/2016 -- 16:00:13 - (suricata.c:2664) <Notice> (main) -- Signal Received. Stopping engine.
[15787] 21/6/2016 -- 16:00:13 - (source-af-packet.c:1907) <Error> (AFPCreateSocket) -- [ERRCODE: SC_ERR_AFP_CREATE(190)] - Coudn't set fanout mode, error Protocol not available
[15788] 21/6/2016 -- 16:00:13 - (source-af-packet.c:1907) <Error> (AFPCreateSocket) -- [ERRCODE: SC_ERR_AFP_CREATE(190)] - Coudn't set fanout mode, error Protocol not available
[15786] 21/6/2016 -- 16:00:13 - (source-af-packet.c:1907) <Error> (AFPCreateSocket) -- [ERRCODE: SC_ERR_AFP_CREATE(190)] - Coudn't set fanout mode, error Protocol not available
[15789] 21/6/2016 -- 16:00:13 - (flow-manager.c:693) <Perf> (FlowManager) -- 0 new flows, 0 established flows were timed out, 0 flows in closed state
[15787] 21/6/2016 -- 16:00:13 - (source-af-packet.c:1337) <Error> (ReceiveAFPLoop) -- [ERRCODE: SC_ERR_AFP_CREATE(190)] - Couldn't init AF_PACKET socket, fatal error
[15788] 21/6/2016 -- 16:00:13 - (source-af-packet.c:1337) <Error> (ReceiveAFPLoop) -- [ERRCODE: SC_ERR_AFP_CREATE(190)] - Couldn't init AF_PACKET socket, fatal error
[15786] 21/6/2016 -- 16:00:13 - (source-af-packet.c:1337) <Error> (ReceiveAFPLoop) -- [ERRCODE: SC_ERR_AFP_CREATE(190)] - Couldn't init AF_PACKET socket, fatal error
This patch adds a test that if run before the number of threads
is determined. If the test fails, only 1 thread is created.
9 years ago
|
|
|
int AFPIsFanoutSupported(void);
|
|
|
|
|
|
|
|
#endif /* __SOURCE_AFP_H__ */
|