blob: 7162dfa20fa7721434ccb23a9e3660909d776d36 [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 Axboe3c2d93e2009-01-05 19:04:15 +01009#include <errno.h>
Jens Axboed09913c2009-12-16 19:23:10 +010010#include <sched.h>
Jens Axboeea421792006-07-11 09:11:07 +020011#include <linux/unistd.h>
Jens Axboe07e5b262007-04-02 14:46:07 +020012#include <linux/raw.h>
13#include <linux/major.h>
Jens Axboeebac4652005-12-08 15:25:21 +010014
Jens Axboef3de88a2008-02-24 21:36:00 +010015#include "indirect.h"
16
Jens Axboeebac4652005-12-08 15:25:21 +010017#define FIO_HAVE_LIBAIO
18#define FIO_HAVE_POSIXAIO
19#define FIO_HAVE_FADVISE
20#define FIO_HAVE_CPU_AFFINITY
21#define FIO_HAVE_DISK_UTIL
22#define FIO_HAVE_SGIO
Jens Axboeba4f8922006-01-26 13:45:54 -080023#define FIO_HAVE_IOPRIO
Jens Axboe8756e4d2006-05-27 20:24:53 +020024#define FIO_HAVE_SPLICE
Jens Axboe22f78b32006-06-07 11:30:07 +020025#define FIO_HAVE_IOSCHED_SWITCH
Jens Axboe2c0ecd22006-06-08 13:25:41 +020026#define FIO_HAVE_ODIRECT
Jens Axboe74b025b2006-12-19 15:18:14 +010027#define FIO_HAVE_HUGETLB
Jens Axboe07e5b262007-04-02 14:46:07 +020028#define FIO_HAVE_RAWBIND
Jens Axboe5e62c222007-05-22 13:27:30 +020029#define FIO_HAVE_BLKTRACE
Jens Axboe5921e802008-05-30 15:02:38 +020030#define FIO_HAVE_STRSEP
Jens Axboefffca022008-06-02 12:23:40 +020031#define FIO_HAVE_FALLOCATE
Jens Axboe207cb0f2008-06-02 12:28:02 +020032#define FIO_HAVE_POSIXAIO_FSYNC
Jens Axboef356d012009-01-05 09:56:29 +010033#define FIO_HAVE_PSHARED_MUTEX
Jens Axboeeb7ccf32009-04-29 09:48:04 +020034#define FIO_HAVE_CL_SIZE
Jens Axboea696fa22009-12-04 10:05:02 +010035#define FIO_HAVE_CGROUPS
Jens Axboeb6959b52007-02-14 21:40:27 +000036
Jens Axboedc873b62008-06-04 20:13:04 +020037#define OS_MAP_ANON MAP_ANONYMOUS
Jens Axboeebac4652005-12-08 15:25:21 +010038
Shawn Lewis4d8947d2007-07-25 07:51:58 +020039#ifndef CLOCK_MONOTONIC
40#define CLOCK_MONOTONIC 1
41#endif
42
Jens Axboeebac4652005-12-08 15:25:21 +010043typedef cpu_set_t os_cpu_mask_t;
Jens Axboe4e78e402008-12-12 20:40:27 +010044
Jens Axboe6dfd46b2006-06-07 13:57:06 +020045typedef struct drand48_data os_random_state_t;
Jens Axboeebac4652005-12-08 15:25:21 +010046
47/*
48 * we want fadvise64 really, but it's so tangled... later
49 */
Shawn Lewis4d8947d2007-07-25 07:51:58 +020050#ifdef FIO_HAVE_FADVISE
Jens Axboeebac4652005-12-08 15:25:21 +010051#define fadvise(fd, off, len, advice) \
52 posix_fadvise((fd), (off_t)(off), (len), (advice))
Shawn Lewis4d8947d2007-07-25 07:51:58 +020053#endif
Jens Axboeebac4652005-12-08 15:25:21 +010054
Jens Axboec8f025f2007-05-22 17:06:24 +020055/*
56 * If you are on an ancient glibc (2.3.2), then define GLIBC_2_3_2 if you want
57 * the affinity helpers to work.
58 */
59#ifndef GLIBC_2_3_2
Jens Axboee8462bd2009-07-06 12:59:04 +020060#define fio_setaffinity(pid, cpumask) \
61 sched_setaffinity((pid), sizeof(cpumask), &(cpumask))
Jens Axboeebac4652005-12-08 15:25:21 +010062#define fio_getaffinity(pid, ptr) \
63 sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
Jens Axboec8f025f2007-05-22 17:06:24 +020064#else
Jens Axboee8462bd2009-07-06 12:59:04 +020065#define fio_setaffinity(pid, cpumask) \
66 sched_setaffinity((pid), &(cpumask))
Jens Axboec8f025f2007-05-22 17:06:24 +020067#define fio_getaffinity(pid, ptr) \
68 sched_getaffinity((pid), (ptr))
69#endif
Jens Axboebe4ecfd2008-12-08 14:10:52 +010070
71#define fio_cpu_clear(mask, cpu) CPU_CLR((cpu), (mask))
Jens Axboe6d459ee2008-12-12 20:02:58 +010072#define fio_cpu_set(mask, cpu) CPU_SET((cpu), (mask))
Jens Axboed2ce18b2008-12-12 20:51:40 +010073
74static inline int fio_cpuset_init(os_cpu_mask_t *mask)
75{
76 CPU_ZERO(mask);
77 return 0;
78}
79
80static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
81{
82 return 0;
83}
Jens Axboe6d459ee2008-12-12 20:02:58 +010084
85#define FIO_MAX_CPUS CPU_SETSIZE
Shawn Lewis4d8947d2007-07-25 07:51:58 +020086
Jens Axboeebac4652005-12-08 15:25:21 +010087static inline int ioprio_set(int which, int who, int ioprio)
88{
89 return syscall(__NR_ioprio_set, which, who, ioprio);
90}
91
Jens Axboe97fbdfa2006-10-05 13:44:15 +020092/*
93 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
94 * aren't either.
95 */
96#ifndef SPLICE_F_MOVE
Jens Axboe8756e4d2006-05-27 20:24:53 +020097#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
98#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
99 /* we may still block on the fd we splice */
100 /* from/to, of course */
101#define SPLICE_F_MORE (0x04) /* expect more data */
102#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
103
Jens Axboe97fbdfa2006-10-05 13:44:15 +0200104static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
Jens Axboe495ee9b2007-06-08 11:24:58 +0200105 size_t len, unsigned int flags)
Jens Axboe97fbdfa2006-10-05 13:44:15 +0200106{
107 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
108}
109
110static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
111{
112 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
113}
114
115static inline int vmsplice(int fd, const struct iovec *iov,
116 unsigned long nr_segs, unsigned int flags)
117{
118 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
119}
120#endif
121
Jens Axboe3feedc62006-05-28 20:13:51 +0200122#define SPLICE_DEF_SIZE (64*1024)
123
Jens Axboeb6959b52007-02-14 21:40:27 +0000124#ifdef FIO_HAVE_SYSLET
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100125
126struct syslet_uatom;
127struct async_head_user;
128
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100129/*
130 * syslet stuff
131 */
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100132static inline struct syslet_uatom *
133async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100134{
Daniel Rall2b525112008-09-10 08:56:01 +0200135 return (struct syslet_uatom *) syscall(__NR_async_exec, atom, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100136}
137
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100138static inline long
139async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
140 struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100141{
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100142 return syscall(__NR_async_wait, min_wait_events,
143 user_ring_idx, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100144}
145
Jens Axboe7756b0d2007-02-26 10:22:31 +0100146static inline long async_thread(void *event, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100147{
Jens Axboe7756b0d2007-02-26 10:22:31 +0100148 return syscall(__NR_async_thread, event, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100149}
150
151static inline long umem_add(unsigned long *uptr, unsigned long inc)
152{
153 return syscall(__NR_umem_add, uptr, inc);
154}
Jens Axboeb6959b52007-02-14 21:40:27 +0000155#endif /* FIO_HAVE_SYSLET */
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100156
Jens Axboeebac4652005-12-08 15:25:21 +0100157enum {
Jens Axboe6cefbe32007-04-18 12:46:56 +0200158 IOPRIO_CLASS_NONE,
159 IOPRIO_CLASS_RT,
160 IOPRIO_CLASS_BE,
161 IOPRIO_CLASS_IDLE,
162};
163
164enum {
Jens Axboeebac4652005-12-08 15:25:21 +0100165 IOPRIO_WHO_PROCESS = 1,
166 IOPRIO_WHO_PGRP,
167 IOPRIO_WHO_USER,
168};
169
Jens Axboe6cefbe32007-04-18 12:46:56 +0200170#define IOPRIO_BITS 16
Jens Axboeebac4652005-12-08 15:25:21 +0100171#define IOPRIO_CLASS_SHIFT 13
172
173#ifndef BLKGETSIZE64
174#define BLKGETSIZE64 _IOR(0x12,114,size_t)
175#endif
176
Jens Axboee5b401d2006-10-18 16:03:40 +0200177#ifndef BLKFLSBUF
178#define BLKFLSBUF _IO(0x12,97)
179#endif
180
181static inline int blockdev_invalidate_cache(int fd)
182{
Jens Axboea16211b2007-03-15 11:35:33 +0100183 return ioctl(fd, BLKFLSBUF);
Jens Axboee5b401d2006-10-18 16:03:40 +0200184}
185
Jens Axboe9104f872005-12-28 23:50:45 +0100186static inline int blockdev_size(int fd, unsigned long long *bytes)
Jens Axboeebac4652005-12-08 15:25:21 +0100187{
188 if (!ioctl(fd, BLKGETSIZE64, bytes))
189 return 0;
190
191 return errno;
192}
193
Jens Axboe32cd46a2006-06-07 13:40:40 +0200194static inline unsigned long long os_phys_mem(void)
195{
196 long pagesize, pages;
197
198 pagesize = sysconf(_SC_PAGESIZE);
199 pages = sysconf(_SC_PHYS_PAGES);
200 if (pages == -1 || pagesize == -1)
201 return 0;
202
203 return (unsigned long long) pages * (unsigned long long) pagesize;
204}
205
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200206static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
207{
208 srand48_r(seed, rs);
209}
210
211static inline long os_random_long(os_random_state_t *rs)
212{
213 long val;
214
215 lrand48_r(rs, &val);
216 return val;
217}
218
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200219static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
Jens Axboe07e5b262007-04-02 14:46:07 +0200220{
221 struct raw_config_request rq;
222 int fd;
223
224 if (major(dev) != RAW_MAJOR)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200225 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200226
227 /*
228 * we should be able to find /dev/rawctl or /dev/raw/rawctl
229 */
230 fd = open("/dev/rawctl", O_RDONLY);
231 if (fd < 0) {
232 fd = open("/dev/raw/rawctl", O_RDONLY);
233 if (fd < 0)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200234 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200235 }
236
237 rq.raw_minor = minor(dev);
238 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
239 close(fd);
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200240 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200241 }
242
243 close(fd);
244 *majdev = rq.block_major;
245 *mindev = rq.block_minor;
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200246 return 0;
Jens Axboe07e5b262007-04-02 14:46:07 +0200247}
248
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200249#ifdef O_NOATIME
Jens Axboe5921e802008-05-30 15:02:38 +0200250#define FIO_O_NOATIME O_NOATIME
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200251#else
252#define FIO_O_NOATIME 0
253#endif
Jens Axboe5921e802008-05-30 15:02:38 +0200254
Jens Axboea1c58072009-08-04 23:17:02 +0200255#ifdef MADV_REMOVE
256#define FIO_MADV_FREE MADV_REMOVE
257#endif
258
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200259#define CACHE_LINE_FILE \
260 "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size"
261
262static inline int arch_cache_line_size(void)
263{
264 char size[32];
265 int fd, ret;
266
267 fd = open(CACHE_LINE_FILE, O_RDONLY);
268 if (fd < 0)
269 return -1;
270
271 ret = read(fd, size, sizeof(size));
Jens Axboeec76f152009-06-09 13:05:32 +0200272
273 close(fd);
274
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200275 if (ret <= 0)
276 return -1;
Jens Axboeec76f152009-06-09 13:05:32 +0200277 else
278 return atoi(size);
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200279}
280
Jens Axboeebac4652005-12-08 15:25:21 +0100281#endif