/usr/include/dovecot/compat.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | #ifndef COMPAT_H
#define COMPAT_H
#if defined (HAVE_INTTYPES_H) && (defined(__osf__) || defined(_HPUX_SOURCE))
# include <inttypes.h>
#endif
/* well, this is obviously wrong since it assumes it's 64bit, but older
GCCs don't define it and we really want it. */
#ifndef LLONG_MAX
# define LLONG_MAX 9223372036854775807LL
#endif
#ifndef __cplusplus
#ifdef HAVE__BOOL
typedef _Bool bool;
#else
typedef int bool;
#endif
#endif
#if defined (HAVE_UOFF_T)
/* native support */
#elif defined (UOFF_T_INT)
typedef unsigned int uoff_t;
#elif defined (UOFF_T_LONG)
typedef unsigned long uoff_t;
#elif defined (UOFF_T_LONG_LONG)
typedef unsigned long long uoff_t;
#else
# error uoff_t size not set
#endif
#ifndef HAVE_UINTMAX_T
# if SIZEOF_LONG_LONG > 0
typedef unsigned long long uintmax_t;
# else
typedef unsigned long uintmax_t;
# endif
#endif
#ifndef HAVE_UINT_FAST32_T
# if SIZEOF_INT >= 4
typedef unsigned int uint_fast32_t;
# else
typedef unsigned long uint_fast32_t;
# endif
#endif
#ifndef HAVE_SOCKLEN_T
typedef int socklen_t;
#endif
#ifdef HAVE_SYS_SYSMACROS_H
# include <sys/sysmacros.h>
# ifdef HAVE_SYS_MKDEV_H
# include <sys/mkdev.h> /* UnixWare */
# endif
# define CMP_DEV_T(a, b) (major(a) == major(b) && minor(a) == minor(b))
#elif !defined (DEV_T_STRUCT)
# define CMP_DEV_T(a, b) ((a) == (b))
#else
# error I do not know how to compare dev_t
#endif
#ifdef HAVE_STAT_XTIM
# define HAVE_ST_NSECS
# define ST_ATIME_NSEC(st) ((unsigned long)(st).st_atim.tv_nsec)
# define ST_MTIME_NSEC(st) ((unsigned long)(st).st_mtim.tv_nsec)
# define ST_CTIME_NSEC(st) ((unsigned long)(st).st_ctim.tv_nsec)
#elif defined (HAVE_STAT_XTIMESPEC)
# define HAVE_ST_NSECS
# define ST_ATIME_NSEC(st) ((unsigned long)(st).st_atimespec.tv_nsec)
# define ST_MTIME_NSEC(st) ((unsigned long)(st).st_mtimespec.tv_nsec)
# define ST_CTIME_NSEC(st) ((unsigned long)(st).st_ctimespec.tv_nsec)
#else
# define ST_ATIME_NSEC(st) 0UL
# define ST_MTIME_NSEC(st) 0UL
# define ST_CTIME_NSEC(st) 0UL
#endif
#ifdef HAVE_ST_NSECS
/* TRUE if a nanosecond timestamp from struct stat matches another nanosecond.
If nanoseconds aren't supported in struct stat, returns always TRUE (useful
with NFS if some hosts support nanoseconds and others don't). */
# define ST_NTIMES_EQUAL(ns1, ns2) ((ns1) == (ns2))
#else
# define ST_NTIMES_EQUAL(ns1, ns2) TRUE
#endif
#define CMP_ST_MTIME(st1, st2) \
((st1)->st_mtime == (st2)->st_mtime && \
ST_NTIMES_EQUAL(ST_MTIME_NSEC(*(st1)), ST_MTIME_NSEC(*(st2))))
#define CMP_ST_CTIME(st1, st2) \
((st1)->st_ctime == (st2)->st_ctime && \
ST_NTIMES_EQUAL(ST_CTIME_NSEC(*(st1)), ST_CTIME_NSEC(*(st2))))
/* strcasecmp(), strncasecmp() */
#ifndef HAVE_STRCASECMP
# ifdef HAVE_STRICMP
# define strcasecmp stricmp
# define strncasecmp strnicmp
# else
# define strcasecmp i_my_strcasecmp
# define strncasecmp i_my_strncasecmp
int i_my_strcasecmp(const char *s1, const char *s2);
int i_my_strncasecmp(const char *s1, const char *s2, size_t max_chars);
# endif
#endif
#ifndef HAVE_INET_ATON
# include <sys/socket.h>
# include <netinet/in.h>
# include <arpa/inet.h>
# define inet_aton i_my_inet_aton
int i_my_inet_aton(const char *cp, struct in_addr *inp);
#endif
#ifndef HAVE_VSYSLOG
# define vsyslog i_my_vsyslog
void i_my_vsyslog(int priority, const char *format, va_list args);
#endif
#ifndef HAVE_GETPAGESIZE
# define getpagesize i_my_getpagesize
int i_my_getpagesize(void);
#endif
#ifndef HAVE_FDATASYNC
# define fdatasync fsync
#endif
struct const_iovec {
const void *iov_base;
size_t iov_len;
};
#ifndef HAVE_STRUCT_IOVEC
struct iovec {
void *iov_base;
size_t iov_len;
};
#endif
/* IOV_MAX should be in limits.h nowadays. Linux still (2005) requires
defining _XOPEN_SOURCE to get that value. UIO_MAXIOV works with it though,
so use it instead. 16 is the lowest acceptable value for all OSes. */
#ifndef IOV_MAX
# include <sys/uio.h>
# ifdef UIO_MAXIOV
# define IOV_MAX UIO_MAXIOV
# else
# define IOV_MAX 16
# endif
#endif
#ifndef HAVE_WRITEV
# define writev i_my_writev
struct iovec;
ssize_t i_my_writev(int fd, const struct iovec *iov, int iov_len);
#endif
#if !defined(HAVE_PREAD) || defined(PREAD_WRAPPERS) || defined(PREAD_BROKEN)
# ifndef IN_COMPAT_C
# define pread i_my_pread
# define pwrite i_my_pwrite
# endif
ssize_t i_my_pread(int fd, void *buf, size_t count, off_t offset);
ssize_t i_my_pwrite(int fd, const void *buf, size_t count, off_t offset);
#endif
#ifndef HAVE_SETEUID
# define seteuid i_my_seteuid
int i_my_seteuid(uid_t euid);
#endif
#ifndef HAVE_SETEGID
# define setegid i_my_setegid
int i_my_setegid(gid_t egid);
#endif
#ifndef HAVE_LIBGEN_H
# define basename i_my_basename
char *i_my_basename(char *path);
#endif
#ifndef HAVE_STRTOULL
# define strtoull i_my_strtoull
unsigned long long int i_my_strtoull(const char *nptr, char **endptr, int base);
#endif
#ifndef HAVE_STRTOLL
# define strtoll i_my_strtoll
unsigned long long int i_my_strtoll(const char *nptr, char **endptr, int base);
#endif
#ifdef HAVE_OLD_VSNPRINTF
# include <stdio.h>
# define vsnprintf i_my_vsnprintf
int i_my_vsnprintf(char *str, size_t size, const char *format, va_list ap);
#endif
#ifndef HAVE_CLOCK_GETTIME
# include <time.h>
# undef CLOCK_REALTIME
# define CLOCK_REALTIME 1
# define clock_gettime i_my_clock_gettime
int i_my_clock_gettime(int clk_id, struct timespec *tp);
#endif
/* ctype.h isn't safe with signed chars,
use our own instead if really needed */
#define i_toupper(x) ((char) toupper((int) (unsigned char) (x)))
#define i_tolower(x) ((char) tolower((int) (unsigned char) (x)))
#define i_isalnum(x) isalnum((int) (unsigned char) (x))
#define i_isalpha(x) isalpha((int) (unsigned char) (x))
#define i_isascii(x) isascii((int) (unsigned char) (x))
#define i_isblank(x) isblank((int) (unsigned char) (x))
#define i_iscntrl(x) iscntrl((int) (unsigned char) (x))
#define i_isdigit(x) isdigit((int) (unsigned char) (x))
#define i_isgraph(x) isgraph((int) (unsigned char) (x))
#define i_islower(x) islower((int) (unsigned char) (x))
#define i_isprint(x) isprint((int) (unsigned char) (x))
#define i_ispunct(x) ispunct((int) (unsigned char) (x))
#define i_isspace(x) isspace((int) (unsigned char) (x))
#define i_isupper(x) isupper((int) (unsigned char) (x))
#define i_isxdigit(x) isxdigit((int) (unsigned char) (x))
#ifndef EOVERFLOW
# define EOVERFLOW ERANGE
#endif
#ifdef EDQUOT
# define ENOSPACE(errno) ((errno) == ENOSPC || (errno) == EDQUOT)
#else
# define ENOSPACE(errno) ((errno) == ENOSPC)
#endif
/* EPERM is returned sometimes if device doesn't support such modification */
#ifdef EROFS
# define ENOACCESS(errno) \
((errno) == EACCES || (errno) == EROFS || (errno) == EPERM)
#else
# define ENOACCESS(errno) ((errno) == EACCES || (errno) == EPERM)
#endif
#define ENOTFOUND(errno) \
((errno) == ENOENT || (errno) == ENOTDIR || \
(errno) == ELOOP || (errno) == ENAMETOOLONG)
#define ECANTLINK(errno) \
((errno) == EXDEV || (errno) == EMLINK || (errno) == EPERM)
/* EBUSY is given by some NFS implementations */
#define EDESTDIREXISTS(errno) \
((errno) == EEXIST || (errno) == ENOTEMPTY || (errno) == EBUSY)
/* fstat() returns ENOENT instead of ESTALE with some Linux versions */
#define ESTALE_FSTAT(errno) \
((errno) == ESTALE || (errno) == ENOENT)
#if !defined(_POSIX_SYNCHRONIZED_IO) && \
defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && \
(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1060)
/* OS X Snow Leopard has fdatasync(), but no prototype for it. */
int fdatasync(int);
#endif
/* Try to keep IO operations at least this size */
#ifndef IO_BLOCK_SIZE
# define IO_BLOCK_SIZE 8192
#endif
#if !defined(PIPE_BUF) && defined(_POSIX_PIPE_BUF)
# define PIPE_BUF (8 * _POSIX_PIPE_BUF) /* for HURD */
#endif
#endif
|