/** * \file common/common.h * * \brief Common header file for fwknop client and server programs. */ /* 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 _COMMON_H #define _COMMON_H /* Common includes for our other fwknop client and server source files. */ #if HAVE_CONFIG_H #include "config.h" #endif #if HAVE_LIBFIU #include #include #endif /* Include cunit header if c unit testing support is enabled. */ #ifdef HAVE_C_UNIT_TESTS #include "CUnit/Basic.h" #include "cunit_common.h" #endif #include #if HAVE_SYS_TYPES_H #include #endif #if HAVE_ERRNO_H #include #endif #if STDC_HEADERS #include #include #elif HAVE_STRINGS_H #include #endif /* STDC_HEADERS*/ #if HAVE_UNISTD_H #include #endif #ifdef HAVE_SYS_STAT_H #include #endif #if HAVE_NETINET_IN_H #include #endif #if HAVE_CTYPE_H #include #endif #if HAVE_TIME_H #include #endif /* Some hoops for accommodating Windows */ #ifdef WIN32 #include #define strcasecmp _stricmp #define strncasecmp _strnicmp #define snprintf _snprintf #define unlink _unlink #define open _open #define fdopen _fdopen #define close _close #define write _write #define popen _popen #define pclose _pclose #define O_WRONLY _O_WRONLY #define O_RDONLY _O_RDONLY #define O_RDWR _O_RDWR #define O_CREAT _O_CREAT #define O_EXCL _O_EXCL #define S_IRUSR _S_IREAD #define S_IWUSR _S_IWRITE #define PATH_SEP '\\' // --DSS needed for VS versions before 2010 #ifndef __MINGW32__ typedef __int8 int8_t; #endif typedef unsigned __int8 uint8_t; typedef __int16 int16_t; typedef unsigned __int16 uint16_t; typedef __int32 int32_t; typedef unsigned __int32 uint32_t; typedef __int64 int64_t; typedef unsigned __int64 uint64_t; #else #include #define PATH_SEP '/' #endif #include "fko.h" #include "fko_limits.h" #include "fko_util.h" /* Get our program version from VERSION (defined in config.h). */ #define MY_VERSION VERSION enum { FKO_PROTO_UDP, FKO_PROTO_UDP_RAW, FKO_PROTO_TCP, FKO_PROTO_TCP_RAW, FKO_PROTO_ICMP, FKO_PROTO_HTTP, }; /* Other common defines */ #define FKO_DEFAULT_PROTO FKO_PROTO_UDP #define FKO_DEFAULT_PORT 62201 #define DEFAULT_NAT_PORT 55000 #define MIN_HIGH_PORT 10000 /* sensible minimum for SPA dest port */ #define ANY_PORT 0 /* used as a wildcard */ #define ANY_PROTO 0 /* used as a wildcard */ #define NAT_ANY_PORT ANY_PORT #define MAX_SERVER_STR_LEN 50 #define MAX_ICMP_TYPE 40 #define MAX_ICMP_CODE 15 #define RAW_SPA_TTL 255 #define MAX_LINE_LEN 1024 #define MAX_PATH_LEN 1024 #define MAX_GPG_KEY_ID 128 #define MAX_USERNAME_LEN 30 #define MAX_KEY_LEN 128 #define MAX_B64_KEY_LEN 180 #if HAVE_LIBFIU #define MAX_FAULT_TAG_LEN 128 #endif /* Some convenience macros */ /* Get the number of elements of an array */ #define ARRAY_SIZE(t) (sizeof(t) / sizeof(t[0])) /* Characters allowed between a config parameter and its value. */ #define IS_CONFIG_PARAM_DELIMITER(x) (x == ' ' || x == '\t' || x == '='); /* End of line characters. */ #define IS_LINE_END(x) (x == '\n' || x == '\r' || x == ';'); /* Characters in the first position of a line that make it considered * empty or otherwise non-interesting (like a comment). */ #define IS_EMPTY_LINE(x) ( \ x == '#' || x == '\n' || x == '\r' || x == ';' || x == '\0' \ ) /* Work-around for not having strnlen */ #if !HAVE_STRNLEN #define strnlen(s, l) (strlen(s) < l ? strlen(s) : l) #endif #endif /* _COMMON_H */ /***EOF***/