blob: 3f410d9cc44aa22b71c1d9c40982703d2c980ef2 [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
13#define FIO_HAVE_LIBAIO
14#define FIO_HAVE_POSIXAIO
15#define FIO_HAVE_FADVISE
16#define FIO_HAVE_CPU_AFFINITY
17#define FIO_HAVE_DISK_UTIL
18#define FIO_HAVE_SGIO
Jens Axboeba4f8922006-01-26 13:45:54 -080019#define FIO_HAVE_IOPRIO
Jens Axboe8756e4d2006-05-27 20:24:53 +020020#define FIO_HAVE_SPLICE
Jens Axboe22f78b32006-06-07 11:30:07 +020021#define FIO_HAVE_IOSCHED_SWITCH
Jens Axboe2c0ecd22006-06-08 13:25:41 +020022#define FIO_HAVE_ODIRECT
Jens Axboe74b025b2006-12-19 15:18:14 +010023#define FIO_HAVE_HUGETLB
Jens Axboe07e5b262007-04-02 14:46:07 +020024#define FIO_HAVE_RAWBIND
Jens Axboe5e62c222007-05-22 13:27:30 +020025#define FIO_HAVE_BLKTRACE
Shawn Lewis4d8947d2007-07-25 07:51:58 +020026#define FIO_HAVE_SETPSHARED
Jens Axboeb6959b52007-02-14 21:40:27 +000027
Jens Axboeebac4652005-12-08 15:25:21 +010028#define OS_MAP_ANON (MAP_ANONYMOUS)
29
Shawn Lewis4d8947d2007-07-25 07:51:58 +020030#ifndef CLOCK_MONOTONIC
31#define CLOCK_MONOTONIC 1
32#endif
33
34#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboeebac4652005-12-08 15:25:21 +010035typedef cpu_set_t os_cpu_mask_t;
Shawn Lewis4d8947d2007-07-25 07:51:58 +020036#else
37typedef int os_cpu_mask_t;
38#endif
Jens Axboe6dfd46b2006-06-07 13:57:06 +020039typedef struct drand48_data os_random_state_t;
Jens Axboeebac4652005-12-08 15:25:21 +010040
41/*
42 * we want fadvise64 really, but it's so tangled... later
43 */
Shawn Lewis4d8947d2007-07-25 07:51:58 +020044#ifdef FIO_HAVE_FADVISE
Jens Axboeebac4652005-12-08 15:25:21 +010045#define fadvise(fd, off, len, advice) \
46 posix_fadvise((fd), (off_t)(off), (len), (advice))
Shawn Lewis4d8947d2007-07-25 07:51:58 +020047#endif
Jens Axboeebac4652005-12-08 15:25:21 +010048
Jens Axboec8f025f2007-05-22 17:06:24 +020049/*
50 * If you are on an ancient glibc (2.3.2), then define GLIBC_2_3_2 if you want
51 * the affinity helpers to work.
52 */
Shawn Lewis4d8947d2007-07-25 07:51:58 +020053#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboec8f025f2007-05-22 17:06:24 +020054#ifndef GLIBC_2_3_2
Jens Axboeebac4652005-12-08 15:25:21 +010055#define fio_setaffinity(td) \
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010056 sched_setaffinity((td)->pid, sizeof((td)->o.cpumask), &(td)->o.cpumask)
Jens Axboeebac4652005-12-08 15:25:21 +010057#define fio_getaffinity(pid, ptr) \
58 sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
Jens Axboec8f025f2007-05-22 17:06:24 +020059#else
60#define fio_setaffinity(td) \
61 sched_setaffinity((td)->pid, &(td)->o.cpumask)
62#define fio_getaffinity(pid, ptr) \
63 sched_getaffinity((pid), (ptr))
64#endif
Shawn Lewis4d8947d2007-07-25 07:51:58 +020065#endif
66
67#ifndef FIO_HAVE_SETPSHARED
68#define pthread_mutexattr_setpshared(attr, pshared) (0)
69#endif
Jens Axboeebac4652005-12-08 15:25:21 +010070
71static inline int ioprio_set(int which, int who, int ioprio)
72{
73 return syscall(__NR_ioprio_set, which, who, ioprio);
74}
75
Jens Axboe97fbdfa2006-10-05 13:44:15 +020076/*
77 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
78 * aren't either.
79 */
80#ifndef SPLICE_F_MOVE
Jens Axboe8756e4d2006-05-27 20:24:53 +020081#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
82#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
83 /* we may still block on the fd we splice */
84 /* from/to, of course */
85#define SPLICE_F_MORE (0x04) /* expect more data */
86#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
87
Jens Axboe97fbdfa2006-10-05 13:44:15 +020088static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
Jens Axboe495ee9b2007-06-08 11:24:58 +020089 size_t len, unsigned int flags)
Jens Axboe97fbdfa2006-10-05 13:44:15 +020090{
91 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
92}
93
94static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
95{
96 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
97}
98
99static inline int vmsplice(int fd, const struct iovec *iov,
100 unsigned long nr_segs, unsigned int flags)
101{
102 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
103}
104#endif
105
Jens Axboef24254e2007-06-13 19:04:16 +0200106#ifdef SPLICE_F_UNMAP
107#define SPLICE_F_UNMAP (0x10)
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{
Jens Axboe1df341f2007-02-22 14:08:13 +0100123 return (void *) 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
207static inline double os_random_double(os_random_state_t *rs)
208{
209 double val;
210
211 drand48_r(rs, &val);
212 return val;
213}
214
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200215static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
Jens Axboe07e5b262007-04-02 14:46:07 +0200216{
217 struct raw_config_request rq;
218 int fd;
219
220 if (major(dev) != RAW_MAJOR)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200221 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200222
223 /*
224 * we should be able to find /dev/rawctl or /dev/raw/rawctl
225 */
226 fd = open("/dev/rawctl", O_RDONLY);
227 if (fd < 0) {
228 fd = open("/dev/raw/rawctl", O_RDONLY);
229 if (fd < 0)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200230 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200231 }
232
233 rq.raw_minor = minor(dev);
234 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
235 close(fd);
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200236 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200237 }
238
239 close(fd);
240 *majdev = rq.block_major;
241 *mindev = rq.block_minor;
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200242 return 0;
Jens Axboe07e5b262007-04-02 14:46:07 +0200243}
244
Jens Axboeebac4652005-12-08 15:25:21 +0100245#endif