/*
This file is part of TALER
Copyright (C) 2014, 2015, 2016, 2021 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
TALER 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
TALER; see the file COPYING. If not, see
*/
/**
* @file src/include/platform.h
* @brief This file contains the includes and definitions which are used by the
* rest of the modules
* @author Sree Harsha Totakura
*/
#ifndef PLATFORM_H_
#define PLATFORM_H_
/* Include our configuration header */
#ifndef HAVE_USED_CONFIG_H
#define HAVE_USED_CONFIG_H
#ifdef HAVE_CONFIG_H
#include "taler_merchant_config.h"
#endif
#endif
#if (GNUNET_EXTRA_LOGGING >= 1)
#define VERBOSE(cmd) cmd
#else
#define VERBOSE(cmd) do { break; } while (0)
#endif
/* Include the features available for GNU source */
#define _GNU_SOURCE
#ifdef HAVE_SYS_TYPES_H
#include
#endif
#ifdef __clang__
#undef HAVE_STATIC_ASSERT
#endif
/**
* These may be expensive, but good for debugging...
*/
#define ALLOW_EXTRA_CHECKS GNUNET_YES
/**
* For strptime (glibc2 needs this).
*/
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 499
#endif
#ifndef _REENTRANT
#define _REENTRANT
#endif
/* configuration options */
#define VERBOSE_STATS 0
#include
#include
#include
#if HAVE_NETINET_IN_H
#include
#endif
#if HAVE_NETINET_IN_SYSTM_H
#include
#endif
#if HAVE_NETINET_IP_H
#include /* superset of previous */
#endif
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#ifdef HAVE_MALLOC_H
#include /* for mallinfo on GNU */
#endif
#include /* KLB_FIX */
#include
#include
#include /* KLB_FIX */
#include
#include
#if HAVE_SYS_PARAM_H
#include
#endif
#if HAVE_SYS_TIME_H
#include
#endif
#include
#ifdef BSD
#include
#endif
#if defined(BSD) && defined(__FreeBSD__) && defined(__FreeBSD_kernel__)
#include
#endif
#ifdef DARWIN
#include
#include
#include
#endif
#if defined(__linux__) || defined(GNU)
#include
#endif
#ifdef SOLARIS
#include
#include
#include
#include
#endif
#if HAVE_UCRED_H
#include
#endif
#if HAVE_SYS_UCRED_H
#include
#endif
#if HAVE_IFADDRS_H
#include
#endif
#include
#include
#if HAVE_VFORK_H
#include
#endif
#include
#if HAVE_SYS_RESOURCE_H
#include
#endif
#if HAVE_ENDIAN_H
#include
#endif
#if HAVE_SYS_ENDIAN_H
#include
#endif
#define DIR_SEPARATOR '/'
#define DIR_SEPARATOR_STR "/"
#define PATH_SEPARATOR ':'
#define PATH_SEPARATOR_STR ":"
#define NEWLINE "\n"
#include
#include "gettext.h"
/**
* GNU gettext support macro.
*/
#define _(String) dgettext (PACKAGE, String)
#define LIBEXTRACTOR_GETTEXT_DOMAIN "libextractor"
#include
/* FreeBSD_kernel is not defined on the now discontinued kFreeBSD */
#if defined(BSD) && defined(__FreeBSD__) && defined(__FreeBSD_kernel__)
#define __BYTE_ORDER BYTE_ORDER
#define __BIG_ENDIAN BIG_ENDIAN
#endif
#ifdef DARWIN
#define __BYTE_ORDER BYTE_ORDER
#define __BIG_ENDIAN BIG_ENDIAN
/* not available on darwin, override configure */
#undef HAVE_STAT64
#undef HAVE_MREMAP
#endif
#if ! HAVE_ATOLL
long long
atoll (const char *nptr);
#endif
#if ENABLE_NLS
#include "langinfo.h"
#endif
#ifndef SIZE_MAX
#define SIZE_MAX ((size_t) (-1))
#endif
#ifndef O_LARGEFILE
#define O_LARGEFILE 0
#endif
/**
* AI_NUMERICSERV not defined in windows. Then we just do without.
*/
#ifndef AI_NUMERICSERV
#define AI_NUMERICSERV 0
#endif
#if defined(__sparc__)
#define MAKE_UNALIGNED(val) ({ __typeof__((val)) __tmp; memmove (&__tmp, &(val), \
sizeof((val))); \
__tmp; })
#else
#define MAKE_UNALIGNED(val) val
#endif
/**
* The termination signal
*/
#define GNUNET_TERM_SIG SIGTERM
#ifndef PATH_MAX
/**
* Assumed maximum path length.
*/
#define PATH_MAX 4096
#endif
#if HAVE_THREAD_LOCAL_GCC
#define TALER_THREAD_LOCAL __thread
#else
#define TALER_THREAD_LOCAL
#endif
/**
* clang et al do not have such an attribute
*/
#if __has_attribute (__nonstring__)
# define __nonstring __attribute__((__nonstring__))
#else
# define __nonstring
#endif
/* Do not use shortcuts for gcrypt mpi */
#define GCRYPT_NO_MPI_MACROS 1
/* Do not use deprecated functions from gcrypt */
#define GCRYPT_NO_DEPRECATED 1
/* Ignore MHD deprecations for now as we want to be compatible
to "ancient" MHD releases. */
#define MHD_NO_DEPRECATION 1
/**
* Required prefix for the authorization header as per RFC 8959.
* (Follows RFC 6750 albeit technically violates RFC 7235, but
* Mark Nottingham thinks this should be fixed by revising HTTP
* spec (https://github.com/httpwg/http-core/issues/733))
*/
#define RFC_8959_PREFIX "secret-token:"
/* LSB-style exit status codes */
#ifndef EXIT_INVALIDARGUMENT
/**
* Command-line arguments are invalid.
* Restarting useless.
*/
#define EXIT_INVALIDARGUMENT 2
#endif
#ifndef EXIT_NOTIMPLEMENTED
/**
* The requested operation is not implemented.
* Restarting useless.
*/
#define EXIT_NOTIMPLEMENTED 3
#endif
#ifndef EXIT_NOPERMISSION
/**
* Permissions needed to run are not available.
* Restarting useless.
*/
#define EXIT_NOPERMISSION 4
#endif
#ifndef EXIT_NOTINSTALLED
/**
* Key resources are not installed.
* Restarting useless.
*/
#define EXIT_NOTINSTALLED 5
#endif
#ifndef EXIT_NOTCONFIGURED
/**
* Key configuration settings are missing or invalid.
* Restarting useless.
*/
#define EXIT_NOTCONFIGURED 6
#endif
#ifndef EXIT_NOTRUNNING
#define EXIT_NOTRUNNING 7
#endif
#ifndef EXIT_NO_RESTART
/**
* Exit code from 'main' if we do not want to be restarted,
* except by manual intervention (hard failure).
*/
#define EXIT_NO_RESTART 9
#endif
#endif /* PLATFORM_H_ */
/* end of platform.h */