blob: ea2db9b8023c75eba4cb949d451aafe1bd4d2dab [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001#ifndef FIO_OS_LINUX_H
2#define FIO_OS_LINUX_H
3
4#include <sys/ioctl.h>
Jens Axboe8756e4d2006-05-27 20:24:53 +02005#include <sys/uio.h>
Jens Axboe3c39a372006-06-06 20:56:12 +02006#include <sys/syscall.h>
7#include <unistd.h>
Jens Axboe97fbdfa2006-10-05 13:44:15 +02008#include <fcntl.h>
Jens Axboeea421792006-07-11 09:11:07 +02009#include <linux/unistd.h>
Jens Axboe07e5b262007-04-02 14:46:07 +020010#include <linux/raw.h>
11#include <linux/major.h>
Jens Axboeebac4652005-12-08 15:25:21 +010012
Jens Axboef3de88a2008-02-24 21:36:00 +010013#include "indirect.h"
14
Jens Axboeebac4652005-12-08 15:25:21 +010015#define FIO_HAVE_LIBAIO
16#define FIO_HAVE_POSIXAIO
17#define FIO_HAVE_FADVISE
18#define FIO_HAVE_CPU_AFFINITY
19#define FIO_HAVE_DISK_UTIL
20#define FIO_HAVE_SGIO
Jens Axboeba4f8922006-01-26 13:45:54 -080021#define FIO_HAVE_IOPRIO
Jens Axboe8756e4d2006-05-27 20:24:53 +020022#define FIO_HAVE_SPLICE
Jens Axboe22f78b32006-06-07 11:30:07 +020023#define FIO_HAVE_IOSCHED_SWITCH
Jens Axboe2c0ecd22006-06-08 13:25:41 +020024#define FIO_HAVE_ODIRECT
Jens Axboe74b025b2006-12-19 15:18:14 +010025#define FIO_HAVE_HUGETLB
Jens Axboe07e5b262007-04-02 14:46:07 +020026#define FIO_HAVE_RAWBIND
Jens Axboe5e62c222007-05-22 13:27:30 +020027#define FIO_HAVE_BLKTRACE
Jens Axboe5921e802008-05-30 15:02:38 +020028#define FIO_HAVE_STRSEP
Jens Axboefffca022008-06-02 12:23:40 +020029#define FIO_HAVE_FALLOCATE
Jens Axboe207cb0f2008-06-02 12:28:02 +020030#define FIO_HAVE_POSIXAIO_FSYNC
Jens Axboeb6959b52007-02-14 21:40:27 +000031
Jens Axboedc873b62008-06-04 20:13:04 +020032#define OS_MAP_ANON MAP_ANONYMOUS
Jens Axboeebac4652005-12-08 15:25:21 +010033
Shawn Lewis4d8947d2007-07-25 07:51:58 +020034#ifndef CLOCK_MONOTONIC
35#define CLOCK_MONOTONIC 1
36#endif
37
38#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboeebac4652005-12-08 15:25:21 +010039typedef cpu_set_t os_cpu_mask_t;
Shawn Lewis4d8947d2007-07-25 07:51:58 +020040#else
41typedef int os_cpu_mask_t;
42#endif
Jens Axboe6dfd46b2006-06-07 13:57:06 +020043typedef struct drand48_data os_random_state_t;
Jens Axboeebac4652005-12-08 15:25:21 +010044
45/*
46 * we want fadvise64 really, but it's so tangled... later
47 */
Shawn Lewis4d8947d2007-07-25 07:51:58 +020048#ifdef FIO_HAVE_FADVISE
Jens Axboeebac4652005-12-08 15:25:21 +010049#define fadvise(fd, off, len, advice) \
50 posix_fadvise((fd), (off_t)(off), (len), (advice))
Shawn Lewis4d8947d2007-07-25 07:51:58 +020051#endif
Jens Axboeebac4652005-12-08 15:25:21 +010052
Jens Axboec8f025f2007-05-22 17:06:24 +020053/*
54 * If you are on an ancient glibc (2.3.2), then define GLIBC_2_3_2 if you want
55 * the affinity helpers to work.
56 */
57#ifndef GLIBC_2_3_2
Jens Axboeebac4652005-12-08 15:25:21 +010058#define fio_setaffinity(td) \
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010059 sched_setaffinity((td)->pid, sizeof((td)->o.cpumask), &(td)->o.cpumask)
Jens Axboeebac4652005-12-08 15:25:21 +010060#define fio_getaffinity(pid, ptr) \
61 sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
Jens Axboec8f025f2007-05-22 17:06:24 +020062#else
63#define fio_setaffinity(td) \
64 sched_setaffinity((td)->pid, &(td)->o.cpumask)
65#define fio_getaffinity(pid, ptr) \
66 sched_getaffinity((pid), (ptr))
67#endif
Jens Axboebe4ecfd2008-12-08 14:10:52 +010068
69#define fio_cpu_clear(mask, cpu) CPU_CLR((cpu), (mask))
Jens Axboe6d459ee2008-12-12 20:02:58 +010070#define fio_cpu_set(mask, cpu) CPU_SET((cpu), (mask))
71#define fio_cpuset_init(td) CPU_ZERO(&(td)->o.cpumask)
72
73#define FIO_MAX_CPUS CPU_SETSIZE
Shawn Lewis4d8947d2007-07-25 07:51:58 +020074
Jens Axboeebac4652005-12-08 15:25:21 +010075static inline int ioprio_set(int which, int who, int ioprio)
76{
77 return syscall(__NR_ioprio_set, which, who, ioprio);
78}
79
Jens Axboe97fbdfa2006-10-05 13:44:15 +020080/*
81 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
82 * aren't either.
83 */
84#ifndef SPLICE_F_MOVE
Jens Axboe8756e4d2006-05-27 20:24:53 +020085#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
86#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
87 /* we may still block on the fd we splice */
88 /* from/to, of course */
89#define SPLICE_F_MORE (0x04) /* expect more data */
90#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
91
Jens Axboe97fbdfa2006-10-05 13:44:15 +020092static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
Jens Axboe495ee9b2007-06-08 11:24:58 +020093 size_t len, unsigned int flags)
Jens Axboe97fbdfa2006-10-05 13:44:15 +020094{
95 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
96}
97
98static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
99{
100 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
101}
102
103static inline int vmsplice(int fd, const struct iovec *iov,
104 unsigned long nr_segs, unsigned int flags)
105{
106 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
107}
108#endif
109
Jens Axboe3feedc62006-05-28 20:13:51 +0200110#define SPLICE_DEF_SIZE (64*1024)
111
Jens Axboeb6959b52007-02-14 21:40:27 +0000112#ifdef FIO_HAVE_SYSLET
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100113
114struct syslet_uatom;
115struct async_head_user;
116
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100117/*
118 * syslet stuff
119 */
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100120static inline struct syslet_uatom *
121async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100122{
Daniel Rall2b525112008-09-10 08:56:01 +0200123 return (struct syslet_uatom *) syscall(__NR_async_exec, atom, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100124}
125
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100126static inline long
127async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
128 struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100129{
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100130 return syscall(__NR_async_wait, min_wait_events,
131 user_ring_idx, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100132}
133
Jens Axboe7756b0d2007-02-26 10:22:31 +0100134static inline long async_thread(void *event, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100135{
Jens Axboe7756b0d2007-02-26 10:22:31 +0100136 return syscall(__NR_async_thread, event, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100137}
138
139static inline long umem_add(unsigned long *uptr, unsigned long inc)
140{
141 return syscall(__NR_umem_add, uptr, inc);
142}
Jens Axboeb6959b52007-02-14 21:40:27 +0000143#endif /* FIO_HAVE_SYSLET */
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100144
Jens Axboeebac4652005-12-08 15:25:21 +0100145enum {
Jens Axboe6cefbe32007-04-18 12:46:56 +0200146 IOPRIO_CLASS_NONE,
147 IOPRIO_CLASS_RT,
148 IOPRIO_CLASS_BE,
149 IOPRIO_CLASS_IDLE,
150};
151
152enum {
Jens Axboeebac4652005-12-08 15:25:21 +0100153 IOPRIO_WHO_PROCESS = 1,
154 IOPRIO_WHO_PGRP,
155 IOPRIO_WHO_USER,
156};
157
Jens Axboe6cefbe32007-04-18 12:46:56 +0200158#define IOPRIO_BITS 16
Jens Axboeebac4652005-12-08 15:25:21 +0100159#define IOPRIO_CLASS_SHIFT 13
160
161#ifndef BLKGETSIZE64
162#define BLKGETSIZE64 _IOR(0x12,114,size_t)
163#endif
164
Jens Axboee5b401d2006-10-18 16:03:40 +0200165#ifndef BLKFLSBUF
166#define BLKFLSBUF _IO(0x12,97)
167#endif
168
169static inline int blockdev_invalidate_cache(int fd)
170{
Jens Axboea16211b2007-03-15 11:35:33 +0100171 return ioctl(fd, BLKFLSBUF);
Jens Axboee5b401d2006-10-18 16:03:40 +0200172}
173
Jens Axboe9104f872005-12-28 23:50:45 +0100174static inline int blockdev_size(int fd, unsigned long long *bytes)
Jens Axboeebac4652005-12-08 15:25:21 +0100175{
176 if (!ioctl(fd, BLKGETSIZE64, bytes))
177 return 0;
178
179 return errno;
180}
181
Jens Axboe32cd46a2006-06-07 13:40:40 +0200182static inline unsigned long long os_phys_mem(void)
183{
184 long pagesize, pages;
185
186 pagesize = sysconf(_SC_PAGESIZE);
187 pages = sysconf(_SC_PHYS_PAGES);
188 if (pages == -1 || pagesize == -1)
189 return 0;
190
191 return (unsigned long long) pages * (unsigned long long) pagesize;
192}
193
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200194static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
195{
196 srand48_r(seed, rs);
197}
198
199static inline long os_random_long(os_random_state_t *rs)
200{
201 long val;
202
203 lrand48_r(rs, &val);
204 return val;
205}
206
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200207static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
Jens Axboe07e5b262007-04-02 14:46:07 +0200208{
209 struct raw_config_request rq;
210 int fd;
211
212 if (major(dev) != RAW_MAJOR)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200213 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200214
215 /*
216 * we should be able to find /dev/rawctl or /dev/raw/rawctl
217 */
218 fd = open("/dev/rawctl", O_RDONLY);
219 if (fd < 0) {
220 fd = open("/dev/raw/rawctl", O_RDONLY);
221 if (fd < 0)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200222 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200223 }
224
225 rq.raw_minor = minor(dev);
226 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
227 close(fd);
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200228 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200229 }
230
231 close(fd);
232 *majdev = rq.block_major;
233 *mindev = rq.block_minor;
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200234 return 0;
Jens Axboe07e5b262007-04-02 14:46:07 +0200235}
236
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200237#ifdef O_NOATIME
Jens Axboe5921e802008-05-30 15:02:38 +0200238#define FIO_O_NOATIME O_NOATIME
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200239#else
240#define FIO_O_NOATIME 0
241#endif
Jens Axboe5921e802008-05-30 15:02:38 +0200242
Jens Axboeebac4652005-12-08 15:25:21 +0100243#endif