77 lines
2.4 KiB
C
77 lines
2.4 KiB
C
/**
|
|
* \file server/fw_util.h
|
|
*
|
|
* \brief Header file for fw_util.c.
|
|
*/
|
|
|
|
/* Fwknop is developed primarily by the people listed in the file 'AUTHORS'.
|
|
* Copyright (C) 2009-2015 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 FW_UTIL_H
|
|
#define FW_UTIL_H
|
|
|
|
#define CMD_BUFSIZE 256
|
|
#define MAX_FW_COMMAND_ARGS_LEN 256
|
|
#define CMD_LOOP_TRIES 10 /* for repeated command executions */
|
|
|
|
#define STANDARD_CMD_OUT_BUFSIZE 4096
|
|
|
|
#define EXPIRE_COMMENT_PREFIX "_exp_"
|
|
#define TMP_COMMENT "__TMPCOMMENT__"
|
|
#define DUMMY_IP "127.0.0.2"
|
|
|
|
#if FIREWALL_FIREWALLD
|
|
#include "fw_util_firewalld.h"
|
|
#elif FIREWALL_IPTABLES
|
|
#include "fw_util_iptables.h"
|
|
#elif FIREWALL_IPFW
|
|
#include "fw_util_ipfw.h"
|
|
#elif FIREWALL_PF
|
|
#include "fw_util_pf.h"
|
|
#elif FIREWALL_IPF
|
|
#include "fw_util_ipf.h"
|
|
#endif
|
|
|
|
#if HAVE_TIME_H
|
|
#include <time.h>
|
|
#endif
|
|
|
|
/* Function prototypes.
|
|
*
|
|
* Note: These are the public functions for managing firewall rules.
|
|
* They should be implemented in each of the corresponding
|
|
* fw_util_<fw-type>.c files.
|
|
*/
|
|
int fw_config_init(fko_srv_options_t * const opts);
|
|
int fw_initialize(const fko_srv_options_t * const opts);
|
|
int fw_cleanup(const fko_srv_options_t * const opts);
|
|
void check_firewall_rules(const fko_srv_options_t * const opts,
|
|
const int chk_rm_all);
|
|
int fw_dump_rules(const fko_srv_options_t * const opts);
|
|
int process_spa_request(const fko_srv_options_t * const opts,
|
|
const acc_stanza_t * const acc, spa_data_t * const spadat);
|
|
|
|
#endif /* FW_UTIL_H */
|
|
|
|
/***EOF***/
|