775 lines
23 KiB
C
775 lines
23 KiB
C
/*
|
|
******************************************************************************
|
|
*
|
|
* File: config_init.c
|
|
*
|
|
* Author: Damien Stuart
|
|
*
|
|
* Purpose: Command-line and config file processing for fwknop server.
|
|
*
|
|
* Copyright 2010 Damien Stuart (dstuart@dstuart.org)
|
|
*
|
|
* License (GNU 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
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
#include "fwknopd_common.h"
|
|
#include "config_init.h"
|
|
#include "cmd_opts.h"
|
|
#include "utils.h"
|
|
#include "log_msg.h"
|
|
|
|
/* Take an index and a string value. malloc the space for the value
|
|
* and assign it to the array at the specified index.
|
|
*/
|
|
void
|
|
set_config_entry(fko_srv_options_t *opts, int var_ndx, char *value)
|
|
{
|
|
int space_needed;
|
|
|
|
/* Sanity check the index value.
|
|
*/
|
|
if(var_ndx < 0 || var_ndx >= NUMBER_OF_CONFIG_ENTRIES)
|
|
{
|
|
fprintf(stderr, "Index value of %i is not valid\n", var_ndx);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
/* If this particular entry was already set (i.e. not NULL), then
|
|
* assume it needs to be freed first.
|
|
*/
|
|
if(opts->config[var_ndx] != NULL)
|
|
free(opts->config[var_ndx]);
|
|
|
|
/* If we are setting it to NULL, do it and be done.
|
|
*/
|
|
if(value == NULL)
|
|
{
|
|
opts->config[var_ndx] = NULL;
|
|
return;
|
|
}
|
|
|
|
/* Otherwise, make the space we need and set it.
|
|
*/
|
|
space_needed = strlen(value) + 1;
|
|
|
|
opts->config[var_ndx] = malloc(space_needed);
|
|
|
|
if(opts->config[var_ndx] == NULL)
|
|
{
|
|
fprintf(stderr, "*Fatal memory allocation error!\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
strlcpy(opts->config[var_ndx], value, space_needed);
|
|
|
|
return;
|
|
}
|
|
|
|
/* Given a config parameter name, return its index or -1 if not found.
|
|
*/
|
|
int
|
|
config_entry_index(fko_srv_options_t *opts, char *var)
|
|
{
|
|
int i;
|
|
|
|
for(i=0; i<NUMBER_OF_CONFIG_ENTRIES; i++)
|
|
if(opts->config[i] != NULL && CONF_VAR_IS(var, config_map[i]))
|
|
return(i);
|
|
|
|
return(-1);
|
|
}
|
|
|
|
/* Free the config memory
|
|
*/
|
|
void
|
|
free_configs(fko_srv_options_t *opts)
|
|
{
|
|
int i;
|
|
|
|
for(i=0; i<NUMBER_OF_CONFIG_ENTRIES; i++)
|
|
if(opts->config[i] != NULL)
|
|
free(opts->config[i]);
|
|
}
|
|
|
|
/* Parse the config file...
|
|
*/
|
|
static void
|
|
parse_config_file(fko_srv_options_t *opts, char *config_file)
|
|
{
|
|
FILE *cfile_ptr;
|
|
unsigned int numLines = 0;
|
|
unsigned int i, good_ent;
|
|
int cndx;
|
|
|
|
char conf_line_buf[MAX_LINE_LEN] = {0};
|
|
char var[MAX_LINE_LEN] = {0};
|
|
char val[MAX_LINE_LEN] = {0};
|
|
char tmp1[MAX_LINE_LEN] = {0};
|
|
char tmp2[MAX_LINE_LEN] = {0};
|
|
|
|
struct stat st;
|
|
|
|
/* First see if the config file exists. If it doesn't, complain
|
|
* and go on with program defaults.
|
|
*/
|
|
if(stat(config_file, &st) != 0)
|
|
{
|
|
fprintf(stderr, "[*] Config file: '%s' was not found.\n",
|
|
config_file);
|
|
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
if ((cfile_ptr = fopen(config_file, "r")) == NULL)
|
|
{
|
|
fprintf(stderr, "[*] Could not open config file: %s\n",
|
|
config_file);
|
|
perror(NULL);
|
|
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
while ((fgets(conf_line_buf, MAX_LINE_LEN, cfile_ptr)) != NULL)
|
|
{
|
|
numLines++;
|
|
conf_line_buf[MAX_LINE_LEN-1] = '\0';
|
|
|
|
/* Get past comments and empty lines (note: we only look at the
|
|
* first character.
|
|
*/
|
|
if(IS_EMPTY_LINE(conf_line_buf[0]))
|
|
continue;
|
|
|
|
if(sscanf(conf_line_buf, "%s %[^;\n\r]", var, val) != 2)
|
|
{
|
|
fprintf(stderr,
|
|
"*Invalid config file entry in %s at line %i.\n - '%s'",
|
|
config_file, numLines, conf_line_buf
|
|
);
|
|
continue;
|
|
}
|
|
|
|
/*
|
|
fprintf(stderr,
|
|
"CONF FILE: %s, LINE: %s\tVar: %s, Val: '%s'\n",
|
|
config_file, conf_line_buf, var, val
|
|
);
|
|
*/
|
|
|
|
good_ent = 0;
|
|
for(i=0; i<NUMBER_OF_CONFIG_ENTRIES; i++)
|
|
{
|
|
if(CONF_VAR_IS(config_map[i], var))
|
|
{
|
|
/* First check to see if we need to do a varable expansion
|
|
* on this value. Note: this only supports one expansion and
|
|
* only if the value starts with the variable.
|
|
*/
|
|
if(*val == '$')
|
|
{
|
|
if(sscanf((val+1), "%[A-Z_]%s", tmp1, tmp2))
|
|
{
|
|
if((cndx = config_entry_index(opts, tmp1)) >= 0)
|
|
{
|
|
strlcpy(val, opts->config[cndx], MAX_LINE_LEN);
|
|
strlcat(val, tmp2, MAX_LINE_LEN);
|
|
}
|
|
}
|
|
}
|
|
|
|
set_config_entry(opts, i, val);
|
|
good_ent++;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(good_ent == 0)
|
|
fprintf(stderr,
|
|
"*Ignoring unknown configuration parameter: '%s' in %s\n",
|
|
var, config_file
|
|
);
|
|
}
|
|
|
|
fclose(cfile_ptr);
|
|
|
|
return;
|
|
}
|
|
|
|
/* Set defaults, and do sanity and bounds checks for the various options.
|
|
*/
|
|
static void
|
|
validate_options(fko_srv_options_t *opts)
|
|
{
|
|
char tmp_path[MAX_PATH_LEN];
|
|
|
|
/* If no conf dir is set in the config file, use the default.
|
|
*/
|
|
if(opts->config[CONF_FWKNOP_CONF_DIR] == NULL)
|
|
set_config_entry(opts, CONF_FWKNOP_CONF_DIR, DEF_CONF_DIR);
|
|
|
|
/* If no access.conf path was specified on the command line or set in
|
|
* the config file, use the default.
|
|
*/
|
|
if(opts->config[CONF_ACCESS_FILE] == NULL)
|
|
set_config_entry(opts, CONF_ACCESS_FILE, DEF_ACCESS_FILE);
|
|
|
|
/* If the pid and digest cache files where not set in the config file or
|
|
* via command-line, then grab the defaults. Start with RUN_DIR as the
|
|
* files may depend on that.
|
|
*/
|
|
if(opts->config[CONF_FWKNOP_RUN_DIR] == NULL)
|
|
set_config_entry(opts, CONF_FWKNOP_RUN_DIR, DEF_RUN_DIR);
|
|
|
|
if(opts->config[CONF_FWKNOP_PID_FILE] == NULL)
|
|
{
|
|
strlcpy(tmp_path, opts->config[CONF_FWKNOP_RUN_DIR], MAX_PATH_LEN);
|
|
|
|
if(tmp_path[strlen(tmp_path)-1] != '/')
|
|
strlcat(tmp_path, "/", MAX_PATH_LEN);
|
|
|
|
strlcat(tmp_path, DEF_PID_FILENAME, MAX_PATH_LEN);
|
|
|
|
set_config_entry(opts, CONF_FWKNOP_PID_FILE, tmp_path);
|
|
}
|
|
|
|
#if USE_FILE_CACHE
|
|
if(opts->config[CONF_DIGEST_FILE] == NULL)
|
|
#else
|
|
if(opts->config[CONF_DIGEST_DB_FILE] == NULL)
|
|
#endif
|
|
{
|
|
strlcpy(tmp_path, opts->config[CONF_FWKNOP_RUN_DIR], MAX_PATH_LEN);
|
|
|
|
if(tmp_path[strlen(tmp_path)-1] != '/')
|
|
strlcat(tmp_path, "/", MAX_PATH_LEN);
|
|
|
|
|
|
#if USE_FILE_CACHE
|
|
strlcat(tmp_path, DEF_DIGEST_CACHE_FILENAME, MAX_PATH_LEN);
|
|
set_config_entry(opts, CONF_DIGEST_FILE, tmp_path);
|
|
#else
|
|
strlcat(tmp_path, DEF_DIGEST_CACHE_DB_FILENAME, MAX_PATH_LEN);
|
|
set_config_entry(opts, CONF_DIGEST_DB_FILE, tmp_path);
|
|
#endif
|
|
}
|
|
|
|
/* Set remaining require CONF_ vars if they are not already set. */
|
|
|
|
/* PCAP capture interface.
|
|
*/
|
|
if(opts->config[CONF_PCAP_INTF] == NULL)
|
|
set_config_entry(opts, CONF_PCAP_INTF, DEF_INTERFACE);
|
|
|
|
/* PCAP Promiscuous mode.
|
|
*/
|
|
if(opts->config[CONF_ENABLE_PCAP_PROMISC] == NULL)
|
|
set_config_entry(opts, CONF_ENABLE_PCAP_PROMISC,
|
|
DEF_ENABLE_PCAP_PROMISC);
|
|
|
|
/* PCAP Filter.
|
|
*/
|
|
if(opts->config[CONF_PCAP_FILTER] == NULL)
|
|
set_config_entry(opts, CONF_PCAP_FILTER, DEF_PCAP_FILTER);
|
|
|
|
/* Enable SPA packet aging.
|
|
*/
|
|
if(opts->config[CONF_ENABLE_SPA_PACKET_AGING] == NULL)
|
|
set_config_entry(opts, CONF_ENABLE_SPA_PACKET_AGING,
|
|
DEF_ENABLE_SPA_PACKET_AGING);
|
|
|
|
/* SPA packet age.
|
|
*/
|
|
if(opts->config[CONF_MAX_SPA_PACKET_AGE] == NULL)
|
|
set_config_entry(opts, CONF_MAX_SPA_PACKET_AGE,
|
|
DEF_MAX_SPA_PACKET_AGE);
|
|
|
|
|
|
/* Enable digest persistence.
|
|
*/
|
|
if(opts->config[CONF_ENABLE_DIGEST_PERSISTENCE] == NULL)
|
|
set_config_entry(opts, CONF_ENABLE_DIGEST_PERSISTENCE,
|
|
DEF_ENABLE_DIGEST_PERSISTENCE);
|
|
|
|
/* Max sniff bytes.
|
|
*/
|
|
if(opts->config[CONF_MAX_SNIFF_BYTES] == NULL)
|
|
set_config_entry(opts, CONF_MAX_SNIFF_BYTES, DEF_MAX_SNIFF_BYTES);
|
|
|
|
#if FIREWALL_IPTABLES
|
|
/* Enable IPT forwarding.
|
|
*/
|
|
if(opts->config[CONF_ENABLE_IPT_FORWARDING] == NULL)
|
|
set_config_entry(opts, CONF_ENABLE_IPT_FORWARDING,
|
|
DEF_ENABLE_IPT_FORWARDING);
|
|
|
|
/* Enable IPT local NAT.
|
|
*/
|
|
if(opts->config[CONF_ENABLE_IPT_LOCAL_NAT] == NULL)
|
|
set_config_entry(opts, CONF_ENABLE_IPT_LOCAL_NAT,
|
|
DEF_ENABLE_IPT_LOCAL_NAT);
|
|
|
|
/* Enable IPT SNAT.
|
|
*/
|
|
if(opts->config[CONF_ENABLE_IPT_SNAT] == NULL)
|
|
set_config_entry(opts, CONF_ENABLE_IPT_SNAT,
|
|
DEF_ENABLE_IPT_SNAT);
|
|
|
|
/* Enable IPT OUTPUT.
|
|
*/
|
|
if(opts->config[CONF_ENABLE_IPT_OUTPUT] == NULL)
|
|
set_config_entry(opts, CONF_ENABLE_IPT_OUTPUT,
|
|
DEF_ENABLE_IPT_OUTPUT);
|
|
|
|
/* Flush IPT at init.
|
|
*/
|
|
if(opts->config[CONF_FLUSH_IPT_AT_INIT] == NULL)
|
|
set_config_entry(opts, CONF_FLUSH_IPT_AT_INIT, DEF_FLUSH_IPT_AT_INIT);
|
|
|
|
/* Flush IPT at exit.
|
|
*/
|
|
if(opts->config[CONF_FLUSH_IPT_AT_EXIT] == NULL)
|
|
set_config_entry(opts, CONF_FLUSH_IPT_AT_EXIT, DEF_FLUSH_IPT_AT_EXIT);
|
|
|
|
/* IPT input access.
|
|
*/
|
|
if(opts->config[CONF_IPT_INPUT_ACCESS] == NULL)
|
|
set_config_entry(opts, CONF_IPT_INPUT_ACCESS,
|
|
DEF_IPT_INPUT_ACCESS);
|
|
|
|
/* IPT output access.
|
|
*/
|
|
if(opts->config[CONF_IPT_OUTPUT_ACCESS] == NULL)
|
|
set_config_entry(opts, CONF_IPT_OUTPUT_ACCESS,
|
|
DEF_IPT_OUTPUT_ACCESS);
|
|
|
|
/* IPT forward access.
|
|
*/
|
|
if(opts->config[CONF_IPT_FORWARD_ACCESS] == NULL)
|
|
set_config_entry(opts, CONF_IPT_FORWARD_ACCESS,
|
|
DEF_IPT_FORWARD_ACCESS);
|
|
|
|
/* IPT dnat access.
|
|
*/
|
|
if(opts->config[CONF_IPT_DNAT_ACCESS] == NULL)
|
|
set_config_entry(opts, CONF_IPT_DNAT_ACCESS,
|
|
DEF_IPT_DNAT_ACCESS);
|
|
|
|
/* IPT snat access.
|
|
*/
|
|
if(opts->config[CONF_IPT_SNAT_ACCESS] == NULL)
|
|
set_config_entry(opts, CONF_IPT_SNAT_ACCESS,
|
|
DEF_IPT_SNAT_ACCESS);
|
|
|
|
/* IPT masquerade access.
|
|
*/
|
|
if(opts->config[CONF_IPT_MASQUERADE_ACCESS] == NULL)
|
|
set_config_entry(opts, CONF_IPT_MASQUERADE_ACCESS,
|
|
DEF_IPT_MASQUERADE_ACCESS);
|
|
|
|
#elif FIREWALL_IPFW
|
|
/* Set IPFW start rule number.
|
|
*/
|
|
if(opts->config[CONF_IPFW_START_RULE_NUM] == NULL)
|
|
set_config_entry(opts, CONF_IPFW_START_RULE_NUM,
|
|
DEF_IPFW_START_RULE_NUM);
|
|
|
|
/* Set IPFW max rules.
|
|
*/
|
|
if(opts->config[CONF_IPFW_MAX_RULES] == NULL)
|
|
set_config_entry(opts, CONF_IPFW_MAX_RULES,
|
|
DEF_IPFW_MAX_RULES);
|
|
|
|
/* Set IPFW active set number.
|
|
*/
|
|
if(opts->config[CONF_IPFW_ACTIVE_SET_NUM] == NULL)
|
|
set_config_entry(opts, CONF_IPFW_ACTIVE_SET_NUM,
|
|
DEF_IPFW_ACTIVE_SET_NUM);
|
|
|
|
/* Set IPFW expire set number.
|
|
*/
|
|
if(opts->config[CONF_IPFW_EXPIRE_SET_NUM] == NULL)
|
|
set_config_entry(opts, CONF_IPFW_EXPIRE_SET_NUM,
|
|
DEF_IPFW_EXPIRE_SET_NUM);
|
|
|
|
/* Set IPFW Dynamic rule expiry interval.
|
|
*/
|
|
if(opts->config[CONF_IPFW_EXPIRE_PURGE_INTERVAL] == NULL)
|
|
set_config_entry(opts, CONF_IPFW_EXPIRE_PURGE_INTERVAL,
|
|
DEF_IPFW_EXPIRE_PURGE_INTERVAL);
|
|
|
|
/* Set IPFW Dynamic rule expiry interval.
|
|
*/
|
|
if(opts->config[CONF_IPFW_ADD_CHECK_STATE] == NULL)
|
|
set_config_entry(opts, CONF_IPFW_ADD_CHECK_STATE,
|
|
DEF_IPFW_ADD_CHECK_STATE);
|
|
|
|
#elif FIREWALL_PF
|
|
/* Set PF anchor name
|
|
*/
|
|
if(opts->config[CONF_PF_ANCHOR_NAME] == NULL)
|
|
set_config_entry(opts, CONF_PF_ANCHOR_NAME,
|
|
DEF_PF_ANCHOR_NAME);
|
|
|
|
/* Set PF rule expiry interval.
|
|
*/
|
|
if(opts->config[CONF_PF_EXPIRE_INTERVAL] == NULL)
|
|
set_config_entry(opts, CONF_PF_EXPIRE_INTERVAL,
|
|
DEF_PF_EXPIRE_INTERVAL);
|
|
|
|
#elif FIREWALL_IPF
|
|
/* --DSS Place-holder */
|
|
|
|
#endif /* FIREWALL type */
|
|
|
|
/* GPG Home dir.
|
|
*/
|
|
if(opts->config[CONF_GPG_HOME_DIR] == NULL)
|
|
set_config_entry(opts, CONF_GPG_HOME_DIR, DEF_GPG_HOME_DIR);
|
|
|
|
/* Enable SPA over HTTP.
|
|
*/
|
|
if(opts->config[CONF_ENABLE_SPA_OVER_HTTP] == NULL)
|
|
set_config_entry(opts, CONF_ENABLE_SPA_OVER_HTTP,
|
|
DEF_ENABLE_SPA_OVER_HTTP);
|
|
|
|
/* Enable TCP server.
|
|
*/
|
|
if(opts->config[CONF_ENABLE_TCP_SERVER] == NULL)
|
|
set_config_entry(opts, CONF_ENABLE_TCP_SERVER, DEF_ENABLE_TCP_SERVER);
|
|
|
|
/* TCP Server port.
|
|
*/
|
|
if(opts->config[CONF_TCPSERV_PORT] == NULL)
|
|
set_config_entry(opts, CONF_TCPSERV_PORT, DEF_TCPSERV_PORT);
|
|
|
|
/* Syslog identity.
|
|
*/
|
|
if(opts->config[CONF_SYSLOG_IDENTITY] == NULL)
|
|
set_config_entry(opts, CONF_SYSLOG_IDENTITY, DEF_SYSLOG_IDENTITY);
|
|
|
|
/* Syslog facility.
|
|
*/
|
|
if(opts->config[CONF_SYSLOG_FACILITY] == NULL)
|
|
set_config_entry(opts, CONF_SYSLOG_FACILITY, DEF_SYSLOG_FACILITY);
|
|
|
|
/* Some options just trigger some output of information, or trigger an
|
|
* external function, but do not actually start fwknopd. If any of those
|
|
* are set, we can return here an skip the validation routines as all
|
|
* other options will be ignored anyway.
|
|
*
|
|
* These are also mutually exclusive (for now).
|
|
*/
|
|
if((opts->dump_config + opts->kill + opts->restart + opts->status) == 1)
|
|
return;
|
|
|
|
if((opts->dump_config + opts->kill + opts->restart + opts->status) > 1)
|
|
{
|
|
fprintf(stderr,
|
|
"The -D, -K, -R, and -S options are mutually exclusive. Pick only one.\n"
|
|
);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
if(opts->config[CONF_FIREWALL_EXE] == NULL)
|
|
{
|
|
fprintf(stderr,
|
|
"No firewall command executable is set. Please check FIREWALL_EXE in fwknopd.conf.\n"
|
|
);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
void
|
|
set_preconfig_entries(fko_srv_options_t *opts)
|
|
{
|
|
/* First, set any default or otherwise static settings here. Some may
|
|
* end up being overwritten via config file or command-line.
|
|
*/
|
|
|
|
/* Setup the firewall executable based on build-time info.
|
|
* --DSS Note: We will want to either force external script mode, or
|
|
* error out if we do not have a firewall executable defined.
|
|
*/
|
|
#ifdef FIREWALL_EXE
|
|
set_config_entry(opts, CONF_FIREWALL_EXE, FIREWALL_EXE);
|
|
#endif
|
|
|
|
}
|
|
|
|
/* Initialize program configuration via config file and/or command-line
|
|
* switches.
|
|
*/
|
|
void
|
|
config_init(fko_srv_options_t *opts, int argc, char **argv)
|
|
{
|
|
int cmd_arg, index;
|
|
unsigned char got_conf_file = 0, got_override_config = 0;
|
|
|
|
char override_file[MAX_LINE_LEN];
|
|
char *ndx, *cmrk;
|
|
|
|
/* Zero out options and opts_track.
|
|
*/
|
|
memset(opts, 0x00, sizeof(fko_srv_options_t));
|
|
|
|
/* Set some preconfiguration options (i.e. build-time defaults)
|
|
*/
|
|
set_preconfig_entries(opts);
|
|
|
|
/* In case this is a re-config.
|
|
*/
|
|
optind = 0;
|
|
|
|
/* First, scan the command-line args for -h/--help or an alternate
|
|
* configuration file. If we find an alternate config file, use it,
|
|
* otherwise use the default. We also grab any override config files
|
|
* as well.
|
|
*/
|
|
while ((cmd_arg = getopt_long(argc, argv,
|
|
GETOPTS_OPTION_STRING, cmd_opts, &index)) != -1) {
|
|
|
|
/* If help is wanted, give it and exit.
|
|
*/
|
|
switch(cmd_arg) {
|
|
case 'h':
|
|
usage();
|
|
exit(EXIT_SUCCESS);
|
|
break;
|
|
|
|
/* Look for configuration file arg.
|
|
*/
|
|
case 'c':
|
|
set_config_entry(opts, CONF_CONFIG_FILE, optarg);
|
|
got_conf_file++;
|
|
|
|
/* If we already have the config_override option, we are done.
|
|
*/
|
|
if(got_override_config > 0)
|
|
break;
|
|
|
|
/* Look for override configuration file arg.
|
|
*/
|
|
case 'O':
|
|
set_config_entry(opts, CONF_OVERRIDE_CONFIG, optarg);
|
|
got_override_config++;
|
|
|
|
/* If we already have the conf_file option, we are done.
|
|
*/
|
|
if(got_conf_file > 0)
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* If no alternate configuration file was specified, we use the
|
|
* default.
|
|
*/
|
|
if(opts->config[CONF_CONFIG_FILE] == NULL)
|
|
set_config_entry(opts, CONF_CONFIG_FILE, DEF_CONFIG_FILE);
|
|
|
|
/* Parse configuration file to populate any params not already specified
|
|
* via command-line options.
|
|
*/
|
|
parse_config_file(opts, opts->config[CONF_CONFIG_FILE]);
|
|
|
|
/* If there are override configuration entries, process them
|
|
* here.
|
|
*/
|
|
if(opts->config[CONF_OVERRIDE_CONFIG] != NULL)
|
|
{
|
|
/* Make a copy of the override_config string so we can munge it.
|
|
*/
|
|
strlcpy(override_file, opts->config[CONF_OVERRIDE_CONFIG], MAX_LINE_LEN);
|
|
|
|
ndx = override_file;
|
|
cmrk = strchr(ndx, ',');
|
|
|
|
if(cmrk == NULL)
|
|
{
|
|
/* Only one to process...
|
|
*/
|
|
parse_config_file(opts, ndx);
|
|
|
|
} else {
|
|
/* Walk the string pulling the next config override
|
|
* at the comma delimiters.
|
|
*/
|
|
while(cmrk != NULL) {
|
|
*cmrk = '\0';
|
|
parse_config_file(opts, ndx);
|
|
ndx = cmrk + 1;
|
|
cmrk = strchr(ndx, ',');
|
|
}
|
|
|
|
/* Process the last entry
|
|
*/
|
|
parse_config_file(opts, ndx);
|
|
}
|
|
}
|
|
|
|
/* Reset the options index so we can run through them again.
|
|
*/
|
|
optind = 0;
|
|
|
|
/* Last, but not least, we process command-line options (some of which
|
|
* may override configuration file options.
|
|
*/
|
|
while ((cmd_arg = getopt_long(argc, argv,
|
|
GETOPTS_OPTION_STRING, cmd_opts, &index)) != -1) {
|
|
|
|
switch(cmd_arg) {
|
|
case 'a':
|
|
set_config_entry(opts, CONF_ACCESS_FILE, optarg);
|
|
break;
|
|
case 'c':
|
|
/* This was handled earlier */
|
|
break;
|
|
case 'C':
|
|
opts->packet_ctr_limit = atoi(optarg);
|
|
break;
|
|
case 'D':
|
|
opts->dump_config = 1;
|
|
break;
|
|
case 'f':
|
|
opts->foreground = 1;
|
|
break;
|
|
case FW_LIST:
|
|
opts->fw_list = 1;
|
|
break;
|
|
case GPG_HOME_DIR:
|
|
if (is_valid_dir(optarg))
|
|
{
|
|
set_config_entry(opts, CONF_GPG_HOME_DIR, optarg);
|
|
}
|
|
else
|
|
{
|
|
fprintf(stderr,
|
|
"[*] Directory '%s' could not stat()/does not exist?\n",
|
|
optarg);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
break;
|
|
case 'i':
|
|
set_config_entry(opts, CONF_PCAP_INTF, optarg);
|
|
break;
|
|
case 'K':
|
|
opts->kill = 1;
|
|
break;
|
|
case 'l':
|
|
set_config_entry(opts, CONF_LOCALE, optarg);
|
|
break;
|
|
case 'O':
|
|
/* This was handled earlier */
|
|
break;
|
|
case 'P':
|
|
set_config_entry(opts, CONF_PCAP_FILTER, optarg);
|
|
break;
|
|
case ROTATE_DIGEST_CACHE:
|
|
opts->rotate_digest_cache = 1;
|
|
break;
|
|
case 'R':
|
|
opts->restart = 1;
|
|
break;
|
|
case 'S':
|
|
opts->status = 1;
|
|
break;
|
|
case 'v':
|
|
opts->verbose++;
|
|
break;
|
|
case 'V':
|
|
fprintf(stdout, "fwknopd server %s\n", MY_VERSION);
|
|
exit(EXIT_SUCCESS);
|
|
break;
|
|
default:
|
|
usage();
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
/* Now that we have all of our options set, and we are actually going to
|
|
* start fwknopd, we can validate them.
|
|
*/
|
|
validate_options(opts);
|
|
|
|
return;
|
|
}
|
|
|
|
/* Dump the configuration
|
|
*/
|
|
void
|
|
dump_config(fko_srv_options_t *opts)
|
|
{
|
|
int i;
|
|
|
|
fprintf(stderr, "Current fwknopd config settings:\n");
|
|
|
|
for(i=0; i<NUMBER_OF_CONFIG_ENTRIES; i++)
|
|
fprintf(stderr, "%3i. %-28s = '%s'\n",
|
|
i,
|
|
config_map[i],
|
|
(opts->config[i] == NULL) ? "<not set>" : opts->config[i]
|
|
);
|
|
|
|
fprintf(stderr, "\n");
|
|
}
|
|
|
|
/* Print usage message...
|
|
*/
|
|
void
|
|
usage(void)
|
|
{
|
|
fprintf(stderr, "\n%s server version %s\n%s\n\n", MY_NAME, MY_VERSION, MY_DESC);
|
|
fprintf(stderr,
|
|
"Usage: fwknopd [options]\n\n"
|
|
" -h, --help - Print this usage message and exit.\n"
|
|
" -a, --access-file - Specify an alternate access.conf file.\n"
|
|
" -c, --config-file - Specify an alternate configuration file.\n"
|
|
" -C, --packet-limit - Limit the number of candidate SPA packets to\n"
|
|
" process and exit when this limit is reached.\n"
|
|
" -D, --dump-config - Dump the current fwknop configuration values.\n"
|
|
" -f, --foreground - Run fwknopd in the foreground (do not become\n"
|
|
" a background daemon).\n"
|
|
" -i, --interface - Specify interface to listen for incoming SPA\n"
|
|
" packets.\n"
|
|
" -K, --kill - Kill the currently running fwknopd.\n"
|
|
" --gpg-home-dir - Specify the GPG home directory.\n"
|
|
" -l, --locale - Provide a locale setting other than the system\n"
|
|
" default.\n"
|
|
" -O, --override-config - Specify a file with configuration entries that will\n"
|
|
" overide those in fwknopd.conf\n"
|
|
" -P, --pcap-filter - Specify a Berkeley packet filter statement to\n"
|
|
" override the PCAP_FILTER variable in fwknopd.conf.\n"
|
|
" -R, --restart - Force the currently running fwknopd to restart.\n"
|
|
" --rotate-digest-cache\n"
|
|
" - Rotate the digest cache file by renaming it to\n"
|
|
" '<name>-old', and starting a new one.\n"
|
|
" -S, --status - Display the status of any running fwknopd process.\n"
|
|
" -v, --verbose - Set verbose mode.\n"
|
|
" -V, --version - Print version number.\n"
|
|
" --fw-list - List add firewall rules that fwknop has created\n"
|
|
" and then exit.\n"
|
|
"\n"
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
/***EOF***/
|