zmap-freebsd/src/probe_modules/probe_modules.h

49 lines
1.5 KiB
C
Raw Normal View History

2013-08-16 15:12:47 +00:00
#include "../state.h"
2013-08-19 08:42:25 +00:00
#include "../fieldset.h"
2013-08-16 15:12:47 +00:00
#ifndef HEADER_PROBE_MODULES_H
#define HEADER_PROBE_MODULES_H
typedef struct probe_response_type {
const uint8_t is_success;
const char *name;
} response_type_t;
typedef int (*probe_global_init_cb)(struct state_conf *);
typedef int (*probe_thread_init_cb)(void* packetbuf, macaddr_t* src_mac, macaddr_t* gw_mac, port_n_t src_port);
typedef int (*probe_make_packet_cb)(void* packetbuf, ipaddr_n_t src_ip, ipaddr_n_t dst_ip,
uint32_t *validation, int probe_num);
typedef void (*probe_print_packet_cb)(FILE *, void* packetbuf);
typedef int (*probe_close_cb)(struct state_conf*, struct state_send*, struct state_recv*);
typedef int (*probe_validate_packet_cb)(const struct iphdr *ip_hdr, uint32_t len, uint32_t *src_ip, uint32_t *validation);
2013-08-19 08:42:25 +00:00
typedef void (*probe_classify_packet_cb)(const u_char* packetbuf, uint32_t len, fieldset_t*);
2013-08-16 15:12:47 +00:00
typedef struct probe_module {
const char *name;
size_t packet_length;
const char *pcap_filter;
size_t pcap_snaplen;
// Should ZMap complain if the user hasn't specified valid
// source and target port numbers?
uint8_t port_args;
probe_global_init_cb global_initialize;
probe_thread_init_cb thread_initialize;
probe_make_packet_cb make_packet;
probe_print_packet_cb print_packet;
probe_validate_packet_cb validate_packet;
2013-08-19 08:42:25 +00:00
probe_classify_packet_cb process_packet;
2013-08-16 15:12:47 +00:00
probe_close_cb close;
2013-08-19 08:42:25 +00:00
fielddef_t *fields;
2013-08-16 15:12:47 +00:00
} probe_module_t;
probe_module_t* get_probe_module_by_name(const char*);
2013-08-19 08:42:25 +00:00
2013-08-16 15:12:47 +00:00
void print_probe_modules(void);
#endif // HEADER_PROBE_MODULES_H