with the same command line arguments as the previous time it was executed. The previous arguments are parsed out of the ~/.fwknop.run file (if it exists). * Bug fix to not send any SPA packet out on the wire if a NULL password/key is provided to the fwknop client. This could happen if the user tried to abort fwknop execution by sending the process a SIGINT while being prompted to enter the password/key for SPA encryption. git-svn-id: file:///home/mbr/svn/fwknop/trunk@193 510a4753-2344-4c79-9c09-4d669213fbeb
121 lines
3.8 KiB
C
121 lines
3.8 KiB
C
/* $Id$
|
|
******************************************************************************
|
|
*
|
|
* File: fwknop.h
|
|
*
|
|
* Author: Damien Stuart
|
|
*
|
|
* Purpose: Header file for fwknop config_init.
|
|
*
|
|
* Copyright (C) 2009 Damien Stuart (dstuart@dstuart.org)
|
|
*
|
|
* License (GNU Public License):
|
|
*
|
|
* 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 CONFIG_INIT_H
|
|
#define CONFIG_INIT_H
|
|
|
|
#include <getopt.h>
|
|
#include <sys/stat.h>
|
|
|
|
/* Long options values (for those without a short option).
|
|
*/
|
|
enum {
|
|
FKO_DIGEST_NAME = 0x100,
|
|
NAT_LOCAL,
|
|
NAT_PORT,
|
|
NAT_RAND_PORT,
|
|
TIME_OFFSET_MINUS,
|
|
TIME_OFFSET_PLUS,
|
|
NO_SAVE_ARGS,
|
|
SHOW_LAST_ARGS,
|
|
/* Put GPG-related items below the following line */
|
|
GPG_ENCRYPTION = 0x200,
|
|
GPG_RECIP_KEY,
|
|
GPG_SIGNER_KEY,
|
|
GPG_HOME_DIR,
|
|
GPG_AGENT,
|
|
NOOP /* Just to be a marker for the end */
|
|
};
|
|
|
|
/* Our getopt_long options string.
|
|
*/
|
|
#define GETOPTS_OPTION_STRING "a:A:bB:C:D:f:gG:hH:lm:nN:p:P:qQ:rRsS:Tu:U:vV"
|
|
|
|
/* Our program command-line options...
|
|
*/
|
|
static struct option cmd_opts[] =
|
|
{
|
|
{"allow-ip", 1, NULL, 'a'},
|
|
{"access", 1, NULL, 'A'},
|
|
{"save-packet-append", 0, NULL, 'b'},
|
|
{"save-packet", 1, NULL, 'B'},
|
|
{"no-save-args", 0, NULL, NO_SAVE_ARGS},
|
|
{"server-command", 1, NULL, 'C'},
|
|
{"digest-type", 1, NULL, FKO_DIGEST_NAME},
|
|
{"destination", 1, NULL, 'D'},
|
|
{"fw-timeout", 1, NULL, 'f'},
|
|
{"gpg-encryption", 0, NULL, 'g'},
|
|
{"gpg-recipient-key", 1, NULL, GPG_RECIP_KEY },
|
|
{"gpg-signer-key", 1, NULL, GPG_SIGNER_KEY },
|
|
{"gpg-home-dir", 1, NULL, GPG_HOME_DIR },
|
|
{"gpg-agent", 0, NULL, GPG_AGENT },
|
|
{"get-key", 1, NULL, 'G'},
|
|
{"help", 0, NULL, 'h'},
|
|
{"http-proxy", 1, NULL, 'H'},
|
|
{"last-cmd", 0, NULL, 'l'},
|
|
{"nat-access", 1, NULL, 'N'},
|
|
{"nat-local", 0, NULL, NAT_LOCAL},
|
|
{"nat-port", 1, NULL, NAT_PORT},
|
|
{"nat-rand-port", 0, NULL, NAT_RAND_PORT},
|
|
{"server-port", 1, NULL, 'p'},
|
|
{"server-proto", 1, NULL, 'P'},
|
|
{"quiet", 0, NULL, 'q'},
|
|
{"spoof-src", 1, NULL, 'Q'},
|
|
{"rand-port", 0, NULL, 'r'},
|
|
{"resolve-ip-http", 0, NULL, 'R'},
|
|
{"show-last", 0, NULL, SHOW_LAST_ARGS},
|
|
{"source-ip", 0, NULL, 's'},
|
|
{"source-port", 1, NULL, 'S'},
|
|
{"test", 0, NULL, 'T'},
|
|
{"time-offset-plus", 1, NULL, TIME_OFFSET_PLUS},
|
|
{"time-offset-minus", 1, NULL, TIME_OFFSET_MINUS},
|
|
{"user-agent", 1, NULL, 'u'},
|
|
{"spoof-user", 1, NULL, 'U'},
|
|
{"verbose", 0, NULL, 'v'},
|
|
{"version", 0, NULL, 'V'},
|
|
{0, 0, 0, 0}
|
|
};
|
|
|
|
/* Track config options set via command-line.
|
|
* --DSS: XXX: These will need to be reviewed...
|
|
*/
|
|
typedef struct opts_track {
|
|
unsigned int got_destination:1;
|
|
unsigned int got_server_port:1;
|
|
unsigned int got_server_proto:1;
|
|
unsigned int got_config_file:1;
|
|
unsigned int got_source_port:1;
|
|
unsigned int got_spoof_src:1;
|
|
} opts_track_t;
|
|
|
|
/* Function Prototypes
|
|
*/
|
|
void config_init(fko_cli_options_t *options, int argc, char **argv);
|
|
void usage(void);
|
|
|
|
#endif /* CONFIG_INIT_H */
|
|
|
|
/***EOF***/
|