2013-07-20 22:46:15 +04:00
|
|
|
/* $NetBSD: rumpuser_port.h,v 1.19 2013/07/20 18:46:15 pooka Exp $ */
|
2012-07-27 13:09:05 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Portability header for non-NetBSD platforms.
|
|
|
|
* Quick & dirty.
|
|
|
|
* Maybe should try to use the infrastructure in tools/compat instead?
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX:
|
|
|
|
* There is currently no errno translation for the error values reported
|
|
|
|
* by the hypercall layer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LIB_LIBRUMPUSER_RUMPUSER_PORT_H_
|
|
|
|
#define _LIB_LIBRUMPUSER_RUMPUSER_PORT_H_
|
|
|
|
|
|
|
|
#ifdef __NetBSD__
|
|
|
|
#include <sys/cdefs.h>
|
2012-08-25 22:00:06 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
|
|
|
|
#define PLATFORM_HAS_KQUEUE
|
|
|
|
#define PLATFORM_HAS_CHFLAGS
|
|
|
|
#define PLATFORM_HAS_NBMOUNT
|
|
|
|
#define PLATFORM_HAS_NFSSVC
|
|
|
|
#define PLATFORM_HAS_FSYNC_RANGE
|
|
|
|
#define PLATFORM_HAS_NBSYSCTL
|
2012-09-03 15:33:35 +04:00
|
|
|
#define PLATFORM_HAS_NBFILEHANDLE
|
2012-08-25 22:00:06 +04:00
|
|
|
|
|
|
|
#if __NetBSD_Prereq__(5,99,48)
|
|
|
|
#define PLATFORM_HAS_NBQUOTA
|
|
|
|
#endif
|
|
|
|
|
2013-04-28 17:17:24 +04:00
|
|
|
#if __NetBSD_Prereq__(6,99,16)
|
|
|
|
#define HAVE_CLOCK_NANOSLEEP
|
|
|
|
#endif
|
|
|
|
|
2012-08-25 22:00:06 +04:00
|
|
|
/*
|
|
|
|
* This includes also statvfs1() and fstatvfs1(). They could be
|
|
|
|
* reasonably easily emulated on other platforms.
|
|
|
|
*/
|
|
|
|
#define PLATFORM_HAS_NBVFSSTAT
|
2013-04-28 17:17:24 +04:00
|
|
|
#endif /* __NetBSD__ */
|
|
|
|
|
|
|
|
/* might not be 100% accurate, maybe need to revisit later */
|
|
|
|
#if defined(__linux__) || defined(__sun__)
|
|
|
|
#define HAVE_CLOCK_NANOSLEEP
|
2012-07-27 13:09:05 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
#define _XOPEN_SOURCE 600
|
|
|
|
#define _BSD_SOURCE
|
|
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <features.h>
|
|
|
|
#endif
|
|
|
|
|
2013-03-20 16:59:10 +04:00
|
|
|
#if defined(__sun__)
|
|
|
|
# if defined(RUMPUSER_NO_FILE_OFFSET_BITS)
|
|
|
|
# undef _FILE_OFFSET_BITS
|
|
|
|
# else
|
|
|
|
# define _FILE_OFFSET_BITS 64
|
|
|
|
# endif
|
2013-03-20 16:30:13 +04:00
|
|
|
#endif
|
|
|
|
|
2012-07-27 13:09:05 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
2012-11-26 23:57:24 +04:00
|
|
|
/* maybe this should be !__NetBSD__ ? */
|
|
|
|
#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
|
2013-01-15 01:00:16 +04:00
|
|
|
|| defined(__DragonFly__) || defined(__CYGWIN__)
|
2012-08-25 22:00:06 +04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* this is inline simply to make this header self-contained */
|
|
|
|
static inline int
|
|
|
|
getenv_r(const char *name, char *buf, size_t buflen)
|
|
|
|
{
|
|
|
|
char *tmp;
|
|
|
|
|
|
|
|
if ((tmp = getenv(name)) != NULL) {
|
|
|
|
if (strlen(tmp) >= buflen) {
|
|
|
|
errno = ERANGE;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
strcpy(buf, tmp);
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-03-15 01:31:35 +04:00
|
|
|
#if defined(__sun__)
|
2013-01-18 01:42:22 +04:00
|
|
|
#include <sys/sysmacros.h>
|
|
|
|
|
2013-03-15 01:31:35 +04:00
|
|
|
#if !defined(HAVE_POSIX_MEMALIGN)
|
2013-01-18 01:42:22 +04:00
|
|
|
/* Solarisa 10 has memalign() but no posix_memalign() */
|
2012-11-18 23:29:40 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
posix_memalign(void **ptr, size_t align, size_t size)
|
|
|
|
{
|
|
|
|
|
|
|
|
*ptr = memalign(align, size);
|
|
|
|
if (*ptr == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
return 0;
|
|
|
|
}
|
2013-03-15 01:31:35 +04:00
|
|
|
#endif /* !HAVE_POSIX_MEMALIGN */
|
2012-11-18 23:29:40 +04:00
|
|
|
#endif /* __sun__ */
|
|
|
|
|
2012-07-27 13:09:05 +04:00
|
|
|
#ifndef __RCSID
|
|
|
|
#define __RCSID(a)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INFTIM
|
|
|
|
#define INFTIM (-1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _DIAGASSERT
|
|
|
|
#define _DIAGASSERT(_p_)
|
|
|
|
#endif
|
|
|
|
|
2013-01-15 01:00:16 +04:00
|
|
|
#if defined(__linux__) || defined(__sun__) || defined(__CYGWIN__)
|
2012-11-26 20:30:14 +04:00
|
|
|
#define SIN_SETLEN(a,b)
|
2012-07-27 13:09:05 +04:00
|
|
|
#else /* BSD */
|
2012-11-26 20:30:14 +04:00
|
|
|
#define SIN_SETLEN(_sin_, _len_) _sin_.sin_len = _len_
|
2012-07-27 13:09:05 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __predict_true
|
|
|
|
#define __predict_true(a) a
|
|
|
|
#define __predict_false(a) a
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __dead
|
2012-11-23 01:23:08 +04:00
|
|
|
#define __dead __attribute__((__noreturn__))
|
2012-07-27 13:09:05 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __printflike
|
|
|
|
#define __printflike(a,b)
|
|
|
|
#endif
|
|
|
|
|
2012-08-25 22:00:06 +04:00
|
|
|
#ifndef __noinline
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define __noinline __attribute__((__noinline__))
|
|
|
|
#else
|
|
|
|
#define __noinline
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-07-27 13:09:05 +04:00
|
|
|
#ifndef __arraycount
|
|
|
|
#define __arraycount(_ar_) (sizeof(_ar_)/sizeof(_ar_[0]))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __UNCONST
|
|
|
|
#define __UNCONST(_a_) ((void *)(unsigned long)(const void *)(_a_))
|
|
|
|
#endif
|
|
|
|
|
2013-07-20 22:46:15 +04:00
|
|
|
#ifndef __CONCAT
|
|
|
|
#define __CONCAT(x,y) x ## y
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __STRING
|
|
|
|
#define __STRING(x) #x
|
|
|
|
#endif
|
|
|
|
|
2013-01-15 01:00:16 +04:00
|
|
|
#if defined(__linux__) || defined(__sun__) || defined (__CYGWIN__)
|
2013-04-27 20:56:29 +04:00
|
|
|
#define RUMPUSER_RANDOM() random()
|
|
|
|
#define RUMPUSER_USE_DEVRANDOM
|
|
|
|
#else
|
|
|
|
#define RUMPUSER_RANDOM() arc4random()
|
2012-07-27 13:09:05 +04:00
|
|
|
#endif
|
|
|
|
|
2012-08-25 22:00:06 +04:00
|
|
|
#ifndef __NetBSD_Prereq__
|
|
|
|
#define __NetBSD_Prereq__(a,b,c) 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/socket.h>
|
2012-11-18 23:29:40 +04:00
|
|
|
|
|
|
|
#if !defined(__CMSG_ALIGN)
|
2012-08-25 22:00:06 +04:00
|
|
|
#ifdef CMSG_ALIGN
|
|
|
|
#define __CMSG_ALIGN(a) CMSG_ALIGN(a)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-11-18 23:29:40 +04:00
|
|
|
#ifndef PF_LOCAL
|
|
|
|
#define PF_LOCAL PF_UNIX
|
|
|
|
#endif
|
|
|
|
#ifndef AF_LOCAL
|
|
|
|
#define AF_LOCAL AF_UNIX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* pfft, but what are you going to do? */
|
|
|
|
#ifndef MSG_NOSIGNAL
|
|
|
|
#define MSG_NOSIGNAL 0
|
|
|
|
#endif
|
|
|
|
|
2012-11-21 21:41:27 +04:00
|
|
|
#if defined(__sun__) && !defined(RUMP_REGISTER_T)
|
|
|
|
#define RUMP_REGISTER_T long
|
|
|
|
typedef RUMP_REGISTER_T register_t;
|
|
|
|
#endif
|
|
|
|
|
2012-07-27 13:09:05 +04:00
|
|
|
#endif /* _LIB_LIBRUMPUSER_RUMPUSER_PORT_H_ */
|