This commit updates all authorship and copyright information to include a standard header that references the AUTHORS and CREDITS file. This standard header was written by the Debian legal team at the request of Franck Joncourt.
525 lines
16 KiB
C
525 lines
16 KiB
C
/*
|
||
******************************************************************************
|
||
*
|
||
* File: fwknopd_common.h
|
||
*
|
||
* Purpose: Header file for fwknopd source files.
|
||
*
|
||
* Fwknop is developed primarily by the people listed in the file 'AUTHORS'.
|
||
* Copyright (C) 2009–2014 fwknop developers and contributors. For a full
|
||
* list of contributors, see the file 'CREDITS'.
|
||
*
|
||
* License (GNU General Public License):
|
||
*
|
||
* This program is free software; you can redistribute it and/or
|
||
* modify it under the terms of the GNU General Public License
|
||
* as published by the Free Software Foundation; either version 2
|
||
* of the License, or (at your option) any later version.
|
||
*
|
||
* 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
|
||
* along with this program; if not, write to the Free Software
|
||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||
* USA
|
||
*
|
||
******************************************************************************
|
||
*/
|
||
#ifndef FWKNOPD_COMMON_H
|
||
#define FWKNOPD_COMMON_H
|
||
|
||
#include "common.h"
|
||
|
||
#if PLATFORM_OPENBSD
|
||
#include <netinet/in.h>
|
||
#endif
|
||
|
||
#if HAVE_SYS_STAT_H
|
||
#include <sys/stat.h>
|
||
#endif
|
||
|
||
#if HAVE_LIBPCAP
|
||
#include <pcap.h>
|
||
#endif
|
||
|
||
/* My Name and Version
|
||
*/
|
||
#define MY_NAME "fwknopd"
|
||
#define MY_DESC "Single Packet Authorization server"
|
||
|
||
/* Get our program version from VERSION (defined in config.h).
|
||
*/
|
||
#define MY_VERSION VERSION
|
||
|
||
/* Some program defaults.
|
||
*/
|
||
#ifndef DEF_CONF_DIR
|
||
/* Our default config directory is based on SYSCONFDIR as set by the
|
||
* configure script.
|
||
*/
|
||
#define DEF_CONF_DIR SYSCONFDIR"/"PACKAGE_NAME
|
||
#endif
|
||
|
||
#define DEF_CONFIG_FILE DEF_CONF_DIR"/"MY_NAME".conf"
|
||
#define DEF_ACCESS_FILE DEF_CONF_DIR"/access.conf"
|
||
|
||
#ifndef DEF_RUN_DIR
|
||
/* Our default run directory is based on LOCALSTATEDIR as set by the
|
||
* configure script. This is where we put the PID and digest cache files.
|
||
*/
|
||
#define DEF_RUN_DIR SYSRUNDIR"/run/"PACKAGE_NAME
|
||
#endif
|
||
|
||
/* More Conf defaults
|
||
*/
|
||
#define DEF_PID_FILENAME MY_NAME".pid"
|
||
#if USE_FILE_CACHE
|
||
#define DEF_DIGEST_CACHE_FILENAME "digest.cache"
|
||
#else
|
||
#define DEF_DIGEST_CACHE_DB_FILENAME "digest_db.cache"
|
||
#endif
|
||
|
||
#define DEF_INTERFACE "eth0"
|
||
#define DEF_ENABLE_PCAP_PROMISC "N"
|
||
#define DEF_PCAP_FILTER "udp port 62201"
|
||
#define DEF_PCAP_DISPATCH_COUNT "100"
|
||
#define DEF_PCAP_LOOP_SLEEP "100000" /* a tenth of a second (in microseconds) */
|
||
#define DEF_ENABLE_PCAP_ANY_DIRECTION "N"
|
||
#define DEF_ENABLE_SPA_PACKET_AGING "Y"
|
||
#define DEF_MAX_SPA_PACKET_AGE "120"
|
||
#define DEF_ENABLE_DIGEST_PERSISTENCE "Y"
|
||
#define DEF_MAX_SNIFF_BYTES "1500"
|
||
#define DEF_GPG_HOME_DIR "/root/.gnupg"
|
||
#define DEF_ENABLE_SPA_OVER_HTTP "N"
|
||
#define DEF_ENABLE_TCP_SERVER "N"
|
||
#define DEF_TCPSERV_PORT "62201"
|
||
#define DEF_SYSLOG_IDENTITY MY_NAME
|
||
#define DEF_SYSLOG_FACILITY "LOG_DAEMON"
|
||
|
||
#define DEF_FW_ACCESS_TIMEOUT 30
|
||
|
||
/* For integer variable range checking
|
||
*/
|
||
#define RCHK_MAX_PCAP_LOOP_SLEEP (2 << 22)
|
||
#define RCHK_MAX_SPA_PACKET_AGE 100000 /* seconds, can disable */
|
||
#define RCHK_MAX_SNIFF_BYTES (2 << 14)
|
||
#define RCHK_MAX_TCPSERV_PORT ((2 << 16) - 1)
|
||
#define RCHK_MAX_PCAP_DISPATCH_COUNT (2 << 22)
|
||
#define RCHK_MAX_FW_TIMEOUT (2 << 22)
|
||
|
||
/* Iptables-specific defines
|
||
*/
|
||
#if FIREWALL_IPTABLES
|
||
|
||
#define DEF_FLUSH_IPT_AT_INIT "Y"
|
||
#define DEF_FLUSH_IPT_AT_EXIT "Y"
|
||
#define DEF_ENABLE_IPT_FORWARDING "N"
|
||
#define DEF_ENABLE_IPT_LOCAL_NAT "Y"
|
||
#define DEF_ENABLE_IPT_SNAT "N"
|
||
#define DEF_ENABLE_IPT_OUTPUT "N"
|
||
#define DEF_ENABLE_IPT_COMMENT_CHECK "Y"
|
||
#define DEF_IPT_INPUT_ACCESS "ACCEPT, filter, INPUT, 1, FWKNOP_INPUT, 1"
|
||
#define DEF_IPT_OUTPUT_ACCESS "ACCEPT, filter, OUTPUT, 1, FWKNOP_OUTPUT, 1"
|
||
#define DEF_IPT_FORWARD_ACCESS "ACCEPT, filter, FORWARD, 1, FWKNOP_FORWARD, 1"
|
||
#define DEF_IPT_DNAT_ACCESS "DNAT, nat, PREROUTING, 1, FWKNOP_PREROUTING, 1"
|
||
#define DEF_IPT_SNAT_ACCESS "SNAT, nat, POSTROUTING, 1, FWKNOP_POSTROUTING, 1"
|
||
#define DEF_IPT_MASQUERADE_ACCESS "MASQUERADE, nat, POSTROUTING, 1, FWKNOP_POSTROUTING, 1"
|
||
|
||
#define RCHK_MAX_IPT_RULE_NUM (2 << 15)
|
||
|
||
/* Ipfw-specific defines
|
||
*/
|
||
#elif FIREWALL_IPFW
|
||
|
||
#define DEF_FLUSH_IPFW_AT_INIT "Y"
|
||
#define DEF_FLUSH_IPFW_AT_EXIT "Y"
|
||
#define DEF_IPFW_START_RULE_NUM "10000"
|
||
#define DEF_IPFW_MAX_RULES "65535"
|
||
#define DEF_IPFW_ACTIVE_SET_NUM "1"
|
||
#define DEF_IPFW_EXPIRE_SET_NUM "2"
|
||
#define DEF_IPFW_EXPIRE_PURGE_INTERVAL "30"
|
||
#define DEF_IPFW_ADD_CHECK_STATE "N"
|
||
|
||
#define RCHK_MAX_IPFW_START_RULE_NUM ((2 << 16) - 1)
|
||
#define RCHK_MAX_IPFW_MAX_RULES ((2 << 16) - 1)
|
||
#define RCHK_MAX_IPFW_SET_NUM ((2 << 5) - 1)
|
||
#define RCHK_MAX_IPFW_PURGE_INTERVAL ((2 << 16) - 1)
|
||
|
||
#elif FIREWALL_PF
|
||
|
||
#define DEF_PF_ANCHOR_NAME "fwknop"
|
||
#define DEF_PF_EXPIRE_INTERVAL "30"
|
||
|
||
#define RCHK_MAX_PF_EXPIRE_INTERVAL ((2 << 16) - 1)
|
||
|
||
#elif FIREWALL_IPF
|
||
|
||
/* --DSS Place-holder */
|
||
|
||
#endif /* FIREWALL Type */
|
||
|
||
/* fwknopd-specific limits
|
||
*/
|
||
#define MAX_PCAP_FILTER_LEN 1024
|
||
#define MAX_IFNAME_LEN 128
|
||
#define MAX_SPA_PACKET_LEN 1500 /* --DSS check this? */
|
||
#define MAX_HOSTNAME_LEN 64
|
||
#define MAX_DECRYPTED_SPA_LEN 1024
|
||
|
||
/* The minimum possible valid SPA data size.
|
||
*/
|
||
#define MIN_SPA_DATA_SIZE 140
|
||
|
||
/* Configuration file parameter tags.
|
||
* This will correspond to entries in the configuration parameters
|
||
* array.
|
||
*
|
||
* Note: It is important to maintain an equivalence between this enum and the
|
||
* config_map[] array in server/cmd_opts.h
|
||
*/
|
||
enum {
|
||
CONF_CONFIG_FILE = 0,
|
||
CONF_OVERRIDE_CONFIG,
|
||
//CONF_FIREWALL_TYPE,
|
||
CONF_PCAP_INTF,
|
||
CONF_PCAP_FILE,
|
||
CONF_ENABLE_PCAP_PROMISC,
|
||
CONF_PCAP_FILTER,
|
||
CONF_PCAP_DISPATCH_COUNT,
|
||
CONF_PCAP_LOOP_SLEEP,
|
||
CONF_ENABLE_PCAP_ANY_DIRECTION,
|
||
CONF_MAX_SNIFF_BYTES,
|
||
CONF_ENABLE_SPA_PACKET_AGING,
|
||
CONF_MAX_SPA_PACKET_AGE,
|
||
CONF_ENABLE_DIGEST_PERSISTENCE,
|
||
CONF_CMD_EXEC_TIMEOUT,
|
||
//CONF_BLACKLIST,
|
||
CONF_ENABLE_SPA_OVER_HTTP,
|
||
CONF_ENABLE_TCP_SERVER,
|
||
CONF_TCPSERV_PORT,
|
||
CONF_LOCALE,
|
||
CONF_SYSLOG_IDENTITY,
|
||
CONF_SYSLOG_FACILITY,
|
||
//CONF_IPT_EXEC_TRIES,
|
||
//CONF_ENABLE_EXTERNAL_CMDS,
|
||
//CONF_EXTERNAL_CMD_OPEN,
|
||
//CONF_EXTERNAL_CMD_CLOSE,
|
||
//CONF_EXTERNAL_CMD_ALARM,
|
||
//CONF_ENABLE_EXT_CMD_PREFIX,
|
||
//CONF_EXT_CMD_PREFIX,
|
||
#if FIREWALL_IPTABLES
|
||
CONF_ENABLE_IPT_FORWARDING,
|
||
CONF_ENABLE_IPT_LOCAL_NAT,
|
||
CONF_ENABLE_IPT_SNAT,
|
||
CONF_SNAT_TRANSLATE_IP,
|
||
CONF_ENABLE_IPT_OUTPUT,
|
||
CONF_FLUSH_IPT_AT_INIT,
|
||
CONF_FLUSH_IPT_AT_EXIT,
|
||
CONF_IPT_INPUT_ACCESS,
|
||
CONF_IPT_OUTPUT_ACCESS,
|
||
CONF_IPT_FORWARD_ACCESS,
|
||
CONF_IPT_DNAT_ACCESS,
|
||
CONF_IPT_SNAT_ACCESS,
|
||
CONF_IPT_MASQUERADE_ACCESS,
|
||
CONF_ENABLE_IPT_COMMENT_CHECK,
|
||
#elif FIREWALL_IPFW
|
||
CONF_FLUSH_IPFW_AT_INIT,
|
||
CONF_FLUSH_IPFW_AT_EXIT,
|
||
CONF_IPFW_START_RULE_NUM,
|
||
CONF_IPFW_MAX_RULES,
|
||
CONF_IPFW_ACTIVE_SET_NUM,
|
||
CONF_IPFW_EXPIRE_SET_NUM,
|
||
CONF_IPFW_EXPIRE_PURGE_INTERVAL,
|
||
CONF_IPFW_ADD_CHECK_STATE,
|
||
#elif FIREWALL_PF
|
||
CONF_PF_ANCHOR_NAME,
|
||
CONF_PF_EXPIRE_INTERVAL,
|
||
#elif FIREWALL_IPF
|
||
/* --DSS Place-holder */
|
||
#endif /* FIREWALL type */
|
||
CONF_FWKNOP_RUN_DIR,
|
||
CONF_FWKNOP_CONF_DIR,
|
||
CONF_ACCESS_FILE,
|
||
CONF_FWKNOP_PID_FILE,
|
||
#if USE_FILE_CACHE
|
||
CONF_DIGEST_FILE,
|
||
#else
|
||
CONF_DIGEST_DB_FILE,
|
||
#endif
|
||
CONF_GPG_HOME_DIR,
|
||
CONF_FIREWALL_EXE,
|
||
CONF_VERBOSE,
|
||
|
||
NUMBER_OF_CONFIG_ENTRIES /* Marks the end and number of entries */
|
||
};
|
||
|
||
/* A simple linked list of uints for the access stanza items that allow
|
||
* multiple comma-separated entries.
|
||
*/
|
||
typedef struct acc_int_list
|
||
{
|
||
unsigned int maddr;
|
||
unsigned int mask;
|
||
struct acc_int_list *next;
|
||
} acc_int_list_t;
|
||
|
||
/* A simple linked list of proto and ports for the access stanza items that
|
||
* allow multiple comma-separated entries.
|
||
*/
|
||
typedef struct acc_port_list
|
||
{
|
||
unsigned int proto;
|
||
unsigned int port;
|
||
struct acc_port_list *next;
|
||
} acc_port_list_t;
|
||
|
||
/* A simple linked list of strings for the access stanza items that
|
||
* allow multiple comma-separated entries.
|
||
*/
|
||
typedef struct acc_string_list
|
||
{
|
||
char *str;
|
||
struct acc_string_list *next;
|
||
} acc_string_list_t;
|
||
|
||
/* Access stanza list struct.
|
||
*/
|
||
typedef struct acc_stanza
|
||
{
|
||
char *source;
|
||
acc_int_list_t *source_list;
|
||
char *open_ports;
|
||
acc_port_list_t *oport_list;
|
||
char *restrict_ports;
|
||
acc_port_list_t *rport_list;
|
||
char *key;
|
||
int key_len;
|
||
char *key_base64;
|
||
char *hmac_key;
|
||
int hmac_key_len;
|
||
char *hmac_key_base64;
|
||
int hmac_type;
|
||
unsigned char use_rijndael;
|
||
int fw_access_timeout;
|
||
unsigned char enable_cmd_exec;
|
||
char *cmd_exec_user;
|
||
uid_t cmd_exec_uid;
|
||
char *require_username;
|
||
unsigned char require_source_address;
|
||
char *gpg_home_dir;
|
||
char *gpg_decrypt_id;
|
||
char *gpg_decrypt_pw;
|
||
unsigned char gpg_require_sig;
|
||
unsigned char gpg_ignore_sig_error;
|
||
unsigned char use_gpg;
|
||
unsigned char gpg_allow_no_pw;
|
||
char *gpg_remote_id;
|
||
acc_string_list_t *gpg_remote_id_list;
|
||
time_t access_expire_time;
|
||
int expired;
|
||
int encryption_mode;
|
||
|
||
/* DNAT parameters
|
||
*/
|
||
unsigned char force_nat;
|
||
char *force_nat_ip;
|
||
char *force_nat_proto;
|
||
unsigned int force_nat_port;
|
||
|
||
/* SNAT parameters
|
||
*/
|
||
unsigned char force_snat;
|
||
char *force_snat_ip;
|
||
unsigned char force_masquerade;
|
||
|
||
struct acc_stanza *next;
|
||
} acc_stanza_t;
|
||
|
||
|
||
/* Firewall-related data and types. */
|
||
|
||
#if FIREWALL_IPTABLES
|
||
/* --DSS XXX: These are arbitrary. We should determine appropriate values.
|
||
*/
|
||
#define MAX_TABLE_NAME_LEN 64
|
||
#define MAX_CHAIN_NAME_LEN 64
|
||
#define MAX_TARGET_NAME_LEN 64
|
||
|
||
/* Fwknop custom chain types
|
||
*/
|
||
enum {
|
||
IPT_INPUT_ACCESS,
|
||
IPT_OUTPUT_ACCESS,
|
||
IPT_FORWARD_ACCESS,
|
||
IPT_DNAT_ACCESS,
|
||
IPT_SNAT_ACCESS,
|
||
IPT_MASQUERADE_ACCESS,
|
||
NUM_FWKNOP_ACCESS_TYPES /* Leave this entry last */
|
||
};
|
||
|
||
/* Structure to define an fwknop firewall chain configuration.
|
||
*/
|
||
struct fw_chain {
|
||
int type;
|
||
char target[MAX_TARGET_NAME_LEN];
|
||
//int direction;
|
||
char table[MAX_TABLE_NAME_LEN];
|
||
char from_chain[MAX_CHAIN_NAME_LEN];
|
||
int jump_rule_pos;
|
||
char to_chain[MAX_CHAIN_NAME_LEN];
|
||
int rule_pos;
|
||
int active_rules;
|
||
time_t next_expire;
|
||
};
|
||
|
||
/* Based on the fw_chain fields (not counting type)
|
||
*/
|
||
#define FW_NUM_CHAIN_FIELDS 6
|
||
|
||
struct fw_config {
|
||
struct fw_chain chain[NUM_FWKNOP_ACCESS_TYPES];
|
||
char fw_command[MAX_PATH_LEN];
|
||
|
||
/* Flag for iptables SNAT vs. MASQUERADE usage
|
||
*/
|
||
unsigned char use_masquerade;
|
||
};
|
||
|
||
#elif FIREWALL_IPFW
|
||
|
||
struct fw_config {
|
||
unsigned short start_rule_num;
|
||
unsigned short max_rules;
|
||
unsigned short active_rules;
|
||
unsigned short total_rules;
|
||
unsigned short active_set_num;
|
||
unsigned short expire_set_num;
|
||
unsigned short purge_interval;
|
||
unsigned char *rule_map;
|
||
time_t next_expire;
|
||
time_t last_purge;
|
||
char fw_command[MAX_PATH_LEN];
|
||
};
|
||
|
||
#elif FIREWALL_PF
|
||
|
||
#define MAX_PF_ANCHOR_LEN 64
|
||
|
||
struct fw_config {
|
||
unsigned short active_rules;
|
||
time_t next_expire;
|
||
char anchor[MAX_PF_ANCHOR_LEN];
|
||
char fw_command[MAX_PATH_LEN];
|
||
};
|
||
|
||
#elif FIREWALL_IPF
|
||
|
||
/* --DSS Place-holder */
|
||
|
||
#endif /* FIREWALL type */
|
||
|
||
/* SPA Packet info struct.
|
||
*/
|
||
typedef struct spa_pkt_info
|
||
{
|
||
unsigned int packet_data_len;
|
||
unsigned int packet_proto;
|
||
unsigned int packet_src_ip;
|
||
unsigned int packet_dst_ip;
|
||
unsigned short packet_src_port;
|
||
unsigned short packet_dst_port;
|
||
unsigned char packet_data[MAX_SPA_PACKET_LEN+1];
|
||
} spa_pkt_info_t;
|
||
|
||
/* Struct for (processed and verified) SPA data used by the server.
|
||
*/
|
||
typedef struct spa_data
|
||
{
|
||
char *username;
|
||
time_t timestamp;
|
||
char *version;
|
||
short message_type;
|
||
char *spa_message;
|
||
char spa_message_src_ip[MAX_IPV4_STR_LEN];
|
||
char pkt_source_ip[MAX_IPV4_STR_LEN];
|
||
char spa_message_remain[1024]; /* --DSS FIXME: arbitrary bounds */
|
||
char *nat_access;
|
||
char *server_auth;
|
||
unsigned int client_timeout;
|
||
unsigned int fw_access_timeout;
|
||
char *use_src_ip;
|
||
} spa_data_t;
|
||
|
||
/* fwknopd server configuration parameters and values
|
||
*/
|
||
typedef struct fko_srv_options
|
||
{
|
||
/* The command-line options or flags that invoke an immediate response
|
||
* then exit.
|
||
*/
|
||
unsigned char dump_config; /* Dump current configuration flag */
|
||
unsigned char foreground; /* Run in foreground flag */
|
||
unsigned char kill; /* flag to initiate kill of fwknopd */
|
||
unsigned char rotate_digest_cache;/* flag to force rotation of digest */
|
||
unsigned char restart; /* Restart fwknopd flag */
|
||
unsigned char status; /* Get fwknopd status flag */
|
||
unsigned char fw_list; /* List current firewall rules */
|
||
unsigned char fw_list_all; /* List all current firewall rules */
|
||
unsigned char fw_flush; /* Flush current firewall rules */
|
||
unsigned char test; /* Test mode flag */
|
||
unsigned char verbose; /* Verbose mode flag */
|
||
|
||
/* Flag for permitting SPA packets regardless of directionality test
|
||
* w.r.t. the sniffing interface. This can sometimes be useful for SPA
|
||
* packets that are sent _through_ a system and fwknopd is sniffing on
|
||
* the outbound interface as far as these packets are concerned.
|
||
*/
|
||
unsigned char pcap_any_direction;
|
||
|
||
int data_link_offset;
|
||
int tcp_server_pid;
|
||
int lock_fd;
|
||
|
||
#if USE_FILE_CACHE
|
||
struct digest_cache_list *digest_cache; /* In-memory digest cache list */
|
||
#endif
|
||
|
||
spa_pkt_info_t spa_pkt; /* The current SPA packet */
|
||
|
||
/* Counter set from the command line to exit after the specified
|
||
* number of SPA packets are processed.
|
||
*/
|
||
unsigned int packet_ctr_limit;
|
||
unsigned int packet_ctr; /* counts packets with >0 payload bytes */
|
||
|
||
/* This array holds all of the config file entry values as strings
|
||
* indexed by their tag name.
|
||
*/
|
||
char *config[NUMBER_OF_CONFIG_ENTRIES];
|
||
|
||
acc_stanza_t *acc_stanzas; /* List of access stanzas */
|
||
|
||
/* Firewall config info.
|
||
*/
|
||
struct fw_config *fw_config;
|
||
|
||
/* Set to 1 when messages have to go through syslog, 0 otherwise */
|
||
unsigned char syslog_enable;
|
||
|
||
} fko_srv_options_t;
|
||
|
||
extern fko_srv_options_t options;
|
||
|
||
/* For cleaning up memory before exiting
|
||
*/
|
||
#define FW_CLEANUP 1
|
||
#define NO_FW_CLEANUP 0
|
||
void clean_exit(fko_srv_options_t *opts, unsigned int fw_cleanup_flag, unsigned int exit_status);
|
||
|
||
#endif /* FWKNOPD_COMMON_H */
|
||
|
||
/***EOF***/
|