stat: Fix ioprio print
[fio.git] / os / os.h
CommitLineData
ebac4655
JA
1#ifndef FIO_OS_H
2#define FIO_OS_H
3
a14ca44a 4#include <sys/types.h>
203913ea 5#include <sys/socket.h>
93bcfd20 6#include <fcntl.h>
03e20d68 7#include <pthread.h>
a14ca44a 8#include <unistd.h>
ecc314ba 9#include <stdlib.h>
30bec59e 10#include <errno.h>
a14ca44a 11
c473a9bd 12#include "../arch/arch.h" /* IWYU pragma: export */
e39c0676 13#include "../lib/types.h"
836fcc0f 14
cca84643
JA
15enum {
16 os_linux = 1,
17 os_aix,
18 os_freebsd,
19 os_hpux,
20 os_mac,
21 os_netbsd,
3cd4c66f 22 os_openbsd,
cca84643
JA
23 os_solaris,
24 os_windows,
ec5c6b12 25 os_android,
239b2882 26 os_dragonfly,
cca84643
JA
27
28 os_nr,
29};
30
58828d07
SW
31typedef enum {
32 CPU_ARM64_CRC32C,
33} cpu_features;
34
c473a9bd 35/* IWYU pragma: begin_exports */
910f378a 36#if defined(__linux__)
ebac4655
JA
37#include "os-linux.h"
38#elif defined(__FreeBSD__)
39#include "os-freebsd.h"
3cd4c66f
J
40#elif defined(__OpenBSD__)
41#include "os-openbsd.h"
7452440e
YT
42#elif defined(__NetBSD__)
43#include "os-netbsd.h"
2c0ecd28
JA
44#elif defined(__sun__)
45#include "os-solaris.h"
2afd826b
JA
46#elif defined(__APPLE__)
47#include "os-mac.h"
bf2e821a
CC
48#elif defined(_AIX)
49#include "os-aix.h"
c00a2289
JA
50#elif defined(__hpux)
51#include "os-hpux.h"
93bcfd20 52#elif defined(WIN32)
03e20d68 53#include "os-windows.h"
239b2882
JA
54#elif defined (__DragonFly__)
55#include "os-dragonfly.h"
ebac4655
JA
56#else
57#error "unsupported os"
58#endif
59
30bec59e
JA
60#ifndef EDQUOT
61#define EDQUOT EIO
62#endif
63
67bf9823 64#ifdef CONFIG_POSIXAIO
ebac4655 65#include <aio.h>
e97c1442
JA
66#ifndef FIO_OS_HAVE_AIOCB_TYPEDEF
67typedef struct aiocb os_aiocb_t;
68#endif
ebac4655
JA
69#endif
70
4feafb1e 71#ifndef CONFIG_STRSEP
984f30c9 72#include "../oslib/strsep.h"
5921e80c
JA
73#endif
74
5ad7be56 75#ifndef CONFIG_STRLCAT
984f30c9 76#include "../oslib/strlcat.h"
5ad7be56 77#endif
c473a9bd 78/* IWYU pragma: end_exports */
5ad7be56 79
8e239cae
JA
80#ifdef MSG_DONTWAIT
81#define OS_MSG_DONTWAIT MSG_DONTWAIT
82#endif
83
4d8947de 84#ifndef POSIX_FADV_DONTNEED
ebac4655
JA
85#define POSIX_FADV_DONTNEED (0)
86#define POSIX_FADV_SEQUENTIAL (0)
87#define POSIX_FADV_RANDOM (0)
3ab9ebca 88#define POSIX_FADV_NORMAL (0)
4d8947de 89#endif
ebac4655
JA
90
91#ifndef FIO_HAVE_CPU_AFFINITY
be4ecfdf 92#define fio_cpu_clear(mask, cpu) do { } while (0)
7452440e 93typedef unsigned long os_cpu_mask_t;
3e55d40f
TK
94
95static inline int fio_setaffinity(int pid, os_cpu_mask_t cpumask)
96{
97 return 0;
98}
99
2c6772e2
TK
100static inline int fio_getaffinity(int pid, os_cpu_mask_t *cpumask)
101{
102 return -1;
103}
104
3e55d40f
TK
105static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
106{
107 return -1;
108}
109
110static inline int fio_cpus_split(os_cpu_mask_t *mask, unsigned int cpu_index)
111{
112 return 0;
113}
c2acfbac
JA
114#else
115extern int fio_cpus_split(os_cpu_mask_t *mask, unsigned int cpu);
ebac4655
JA
116#endif
117
03ec570f 118#ifndef FIO_HAVE_IOPRIO_CLASS
a967e54d 119#define ioprio_class(prio) 0
03ec570f 120#define ioprio_value_is_class_rt(prio) (false)
971eef80
NC
121#define IOPRIO_MIN_PRIO_CLASS 0
122#define IOPRIO_MAX_PRIO_CLASS 0
03ec570f 123#endif
ebac4655 124#ifndef FIO_HAVE_IOPRIO
8d6e8d99 125#define ioprio_value(prioclass, prio) (0)
a967e54d 126#define ioprio(ioprio) 0
28727df7 127#define ioprio_set(which, who, prioclass, prio) (0)
971eef80
NC
128#define IOPRIO_MIN_PRIO 0
129#define IOPRIO_MAX_PRIO 0
ebac4655
JA
130#endif
131
2c0ecd28 132#ifndef FIO_HAVE_ODIRECT
7d424763
JA
133#define OS_O_DIRECT 0
134#else
135#define OS_O_DIRECT O_DIRECT
2c0ecd28
JA
136#endif
137
74b025b0
JA
138#ifndef FIO_HAVE_HUGETLB
139#define SHM_HUGETLB 0
d6dc02fb 140#define MAP_HUGETLB 0
4d8947de 141#ifndef FIO_HUGE_PAGE
74b025b0 142#define FIO_HUGE_PAGE 0
4d8947de 143#endif
74b025b0 144#else
cb25df61 145#ifndef FIO_HUGE_PAGE
ee0e0a71 146#define FIO_HUGE_PAGE 4194304
74b025b0 147#endif
cb25df61 148#endif
74b025b0 149
39b93568
JA
150#ifndef FIO_HAVE_MMAP_HUGE
151#define MAP_HUGETLB 0
152#endif
153
5921e80c
JA
154#ifndef FIO_O_NOATIME
155#define FIO_O_NOATIME 0
156#endif
157
dc873b6f
JA
158#ifndef OS_RAND_MAX
159#define OS_RAND_MAX RAND_MAX
160#endif
161
58483fa4 162#ifndef FIO_PREFERRED_ENGINE
df96a39e 163#define FIO_PREFERRED_ENGINE "psync"
58483fa4
JA
164#endif
165
b9fd788f 166#ifndef FIO_OS_PATH_SEPARATOR
53a7af85 167#define FIO_OS_PATH_SEPARATOR '/'
b9fd788f
BC
168#endif
169
16de1bf9 170#ifndef FIO_PREFERRED_CLOCK_SOURCE
86e53416 171#ifdef CONFIG_CLOCK_GETTIME
16de1bf9 172#define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME
86e53416
BC
173#else
174#define FIO_PREFERRED_CLOCK_SOURCE CS_GTOD
175#endif
16de1bf9
BC
176#endif
177
67bf9823
JA
178#ifndef CONFIG_SOCKLEN_T
179typedef unsigned int socklen_t;
5ba13ea6
JA
180#endif
181
45054cbe 182#ifndef FIO_OS_HAS_CTIME_R
1f81991e 183#define os_ctime_r(x, y, z) (void) ctime_r((x), (y))
45054cbe
SD
184#endif
185
901ebe18 186#ifdef FIO_USE_GENERIC_SWAP
9677bec3 187static inline uint16_t fio_swap16(uint16_t val)
232f9b73
JA
188{
189 return (val << 8) | (val >> 8);
190}
191
901ebe18 192static inline uint32_t fio_swap32(uint32_t val)
232f9b73
JA
193{
194 val = ((val & 0xff00ff00UL) >> 8) | ((val & 0x00ff00ffUL) << 8);
195
196 return (val >> 16) | (val << 16);
197}
198
901ebe18 199static inline uint64_t fio_swap64(uint64_t val)
232f9b73
JA
200{
201 val = ((val & 0xff00ff00ff00ff00ULL) >> 8) |
202 ((val & 0x00ff00ff00ff00ffULL) << 8);
203 val = ((val & 0xffff0000ffff0000ULL) >> 16) |
204 ((val & 0x0000ffff0000ffffULL) << 16);
205
206 return (val >> 32) | (val << 32);
207}
208#endif
209
ec5c6b12 210#ifndef FIO_HAVE_BYTEORDER_FUNCS
0dcebdf4 211#ifdef CONFIG_LITTLE_ENDIAN
a824149a
DF
212#define __be16_to_cpu(x) fio_swap16(x)
213#define __be32_to_cpu(x) fio_swap32(x)
b747af64 214#define __be64_to_cpu(x) fio_swap64(x)
8111092f
JA
215#define __le16_to_cpu(x) (x)
216#define __le32_to_cpu(x) (x)
217#define __le64_to_cpu(x) (x)
a824149a
DF
218#define __cpu_to_be16(x) fio_swap16(x)
219#define __cpu_to_be32(x) fio_swap32(x)
b747af64 220#define __cpu_to_be64(x) fio_swap64(x)
8111092f
JA
221#define __cpu_to_le16(x) (x)
222#define __cpu_to_le32(x) (x)
223#define __cpu_to_le64(x) (x)
224#else
a824149a
DF
225#define __be16_to_cpu(x) (x)
226#define __be32_to_cpu(x) (x)
b747af64 227#define __be64_to_cpu(x) (x)
8111092f
JA
228#define __le16_to_cpu(x) fio_swap16(x)
229#define __le32_to_cpu(x) fio_swap32(x)
230#define __le64_to_cpu(x) fio_swap64(x)
a824149a
DF
231#define __cpu_to_be16(x) (x)
232#define __cpu_to_be32(x) (x)
b747af64 233#define __cpu_to_be64(x) (x)
8111092f
JA
234#define __cpu_to_le16(x) fio_swap16(x)
235#define __cpu_to_le32(x) fio_swap32(x)
236#define __cpu_to_le64(x) fio_swap64(x)
237#endif
ec5c6b12 238#endif /* FIO_HAVE_BYTEORDER_FUNCS */
8111092f 239
0bbe46e7 240#ifdef FIO_INTERNAL
a824149a
DF
241#define be16_to_cpu(val) ({ \
242 typecheck(uint16_t, val); \
243 __be16_to_cpu(val); \
244})
245#define be32_to_cpu(val) ({ \
246 typecheck(uint32_t, val); \
247 __be32_to_cpu(val); \
248})
b747af64
SW
249#define be64_to_cpu(val) ({ \
250 typecheck(uint64_t, val); \
251 __be64_to_cpu(val); \
252})
8111092f 253#define le16_to_cpu(val) ({ \
ff8039b7 254 typecheck(uint16_t, val); \
c46fda90 255 __le16_to_cpu(val); \
8111092f
JA
256})
257#define le32_to_cpu(val) ({ \
ff8039b7 258 typecheck(uint32_t, val); \
c46fda90 259 __le32_to_cpu(val); \
8111092f
JA
260})
261#define le64_to_cpu(val) ({ \
ff8039b7
JA
262 typecheck(uint64_t, val); \
263 __le64_to_cpu(val); \
8111092f 264})
0bbe46e7
DG
265#endif
266
a824149a
DF
267#define cpu_to_be16(val) ({ \
268 typecheck(uint16_t, val); \
269 __cpu_to_be16(val); \
270})
271#define cpu_to_be32(val) ({ \
272 typecheck(uint32_t, val); \
273 __cpu_to_be32(val); \
274})
b747af64
SW
275#define cpu_to_be64(val) ({ \
276 typecheck(uint64_t, val); \
277 __cpu_to_be64(val); \
278})
8111092f 279#define cpu_to_le16(val) ({ \
ff8039b7 280 typecheck(uint16_t, val); \
c46fda90 281 __cpu_to_le16(val); \
8111092f
JA
282})
283#define cpu_to_le32(val) ({ \
ff8039b7 284 typecheck(uint32_t, val); \
c46fda90 285 __cpu_to_le32(val); \
8111092f
JA
286})
287#define cpu_to_le64(val) ({ \
ff8039b7 288 typecheck(uint64_t, val); \
c46fda90 289 __cpu_to_le64(val); \
8111092f
JA
290})
291
eb7ccf38
JA
292#define FIO_DEF_CL_SIZE 128
293
294static inline int os_cache_line_size(void)
295{
296#ifdef FIO_HAVE_CL_SIZE
297 int ret = arch_cache_line_size();
298
299 if (ret <= 0)
300 return FIO_DEF_CL_SIZE;
301
302 return ret;
303#else
304 return FIO_DEF_CL_SIZE;
305#endif
306}
307
792d5517 308#ifdef FIO_USE_GENERIC_BDEV_SIZE
ecc314ba 309static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
792d5517 310{
3b2e1464 311 off_t end;
792d5517 312
3b2e1464
JA
313 *bytes = 0;
314
ecc314ba 315 end = lseek(f->fd, 0, SEEK_END);
792d5517
JA
316 if (end < 0)
317 return errno;
318
319 *bytes = end;
320 return 0;
321}
322#endif
323
93bcfd20 324#ifdef FIO_USE_GENERIC_INIT_RANDOM_STATE
9781c080 325static inline int init_random_seeds(uint64_t *rand_seeds, int size)
93bcfd20
BC
326{
327 int fd;
328
329 fd = open("/dev/urandom", O_RDONLY);
330 if (fd == -1) {
331 return 1;
332 }
333
334 if (read(fd, rand_seeds, size) < size) {
335 close(fd);
336 return 1;
337 }
338
339 close(fd);
93bcfd20
BC
340 return 0;
341}
342#endif
343
2e3bd4c2 344#ifndef FIO_HAVE_FS_STAT
c08ad04c 345static inline unsigned long long get_fs_free_size(const char *path)
2e3bd4c2
JA
346{
347 return 0;
348}
349#endif
350
40f61ec7 351#ifndef FIO_HAVE_CPU_CONF_SYSCONF
352static inline unsigned int cpus_configured(void)
c00a2289 353{
192cdbe2
BVA
354 int nr_cpus = sysconf(_SC_NPROCESSORS_CONF);
355
356 return nr_cpus >= 1 ? nr_cpus : 1;
c00a2289
JA
357}
358#endif
359
7221da37 360#ifndef CPU_COUNT
6cf71c24
JA
361#ifdef FIO_HAVE_CPU_AFFINITY
362static inline int CPU_COUNT(os_cpu_mask_t *mask)
363{
40f61ec7 364 int max_cpus = cpus_configured();
6cf71c24
JA
365 int nr_cpus, i;
366
367 for (i = 0, nr_cpus = 0; i < max_cpus; i++)
368 if (fio_cpu_isset(mask, i))
369 nr_cpus++;
370
371 return nr_cpus;
372}
373#endif
374#endif
375
47f767c1 376#ifndef FIO_HAVE_GETTID
de5ed0e4 377#ifndef CONFIG_HAVE_GETTID
47f767c1
JA
378static inline int gettid(void)
379{
380 return getpid();
381}
382#endif
de5ed0e4 383#endif
47f767c1 384
0cfe2089
TK
385#ifndef FIO_HAVE_SHM_ATTACH_REMOVED
386static inline int shm_attach_to_open_removed(void)
387{
388 return 0;
389}
390#endif
391
2c3e17be
SW
392#ifndef FIO_HAVE_NATIVE_FALLOCATE
393static inline bool fio_fallocate(struct fio_file *f, uint64_t offset, uint64_t len)
394{
395 errno = ENOSYS;
396 return false;
397}
398#endif
399
cbbdf1c8 400#if defined(CONFIG_POSIX_FALLOCATE) || defined(FIO_HAVE_NATIVE_FALLOCATE)
38ca5f03 401# define FIO_HAVE_DEFAULT_FALLOCATE
cbbdf1c8
SW
402#endif
403
58828d07
SW
404#ifndef FIO_HAVE_CPU_HAS
405static inline bool os_cpu_has(cpu_features feature)
406{
407 return false;
408}
409#endif
410
df18600f
SW
411#ifndef FIO_EMULATED_MKDIR_TWO
412# define fio_mkdir(path, mode) mkdir(path, mode)
ebac4655 413#endif
df18600f 414
3d0d549a
BP
415#ifdef _SC_CLK_TCK
416static inline void os_clk_tck(long *clk_tck)
417{
418 *clk_tck = sysconf(_SC_CLK_TCK);
419}
420#else
421extern void os_clk_tck(long *clk_tck);
422#endif
423
df18600f 424#endif /* FIO_OS_H */