blob: ac42264b1a7b6db77b9ef78d7d104382c522b656 [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 Axboeea421792006-07-11 09:11:07 +020010#include <linux/unistd.h>
Jens Axboe07e5b262007-04-02 14:46:07 +020011#include <linux/raw.h>
12#include <linux/major.h>
Jens Axboeebac4652005-12-08 15:25:21 +010013
Jens Axboef3de88a2008-02-24 21:36:00 +010014#include "indirect.h"
15
Jens Axboeebac4652005-12-08 15:25:21 +010016#define FIO_HAVE_LIBAIO
17#define FIO_HAVE_POSIXAIO
18#define FIO_HAVE_FADVISE
19#define FIO_HAVE_CPU_AFFINITY
20#define FIO_HAVE_DISK_UTIL
21#define FIO_HAVE_SGIO
Jens Axboeba4f8922006-01-26 13:45:54 -080022#define FIO_HAVE_IOPRIO
Jens Axboe8756e4d2006-05-27 20:24:53 +020023#define FIO_HAVE_SPLICE
Jens Axboe22f78b32006-06-07 11:30:07 +020024#define FIO_HAVE_IOSCHED_SWITCH
Jens Axboe2c0ecd22006-06-08 13:25:41 +020025#define FIO_HAVE_ODIRECT
Jens Axboe74b025b2006-12-19 15:18:14 +010026#define FIO_HAVE_HUGETLB
Jens Axboe07e5b262007-04-02 14:46:07 +020027#define FIO_HAVE_RAWBIND
Jens Axboe5e62c222007-05-22 13:27:30 +020028#define FIO_HAVE_BLKTRACE
Jens Axboe5921e802008-05-30 15:02:38 +020029#define FIO_HAVE_STRSEP
Jens Axboefffca022008-06-02 12:23:40 +020030#define FIO_HAVE_FALLOCATE
Jens Axboe207cb0f2008-06-02 12:28:02 +020031#define FIO_HAVE_POSIXAIO_FSYNC
Jens Axboef356d012009-01-05 09:56:29 +010032#define FIO_HAVE_PSHARED_MUTEX
Jens Axboeeb7ccf32009-04-29 09:48:04 +020033#define FIO_HAVE_CL_SIZE
Jens Axboea696fa22009-12-04 10:05:02 +010034#define FIO_HAVE_CGROUPS
Jens Axboeb6959b52007-02-14 21:40:27 +000035
Jens Axboedc873b62008-06-04 20:13:04 +020036#define OS_MAP_ANON MAP_ANONYMOUS
Jens Axboeebac4652005-12-08 15:25:21 +010037
Shawn Lewis4d8947d2007-07-25 07:51:58 +020038#ifndef CLOCK_MONOTONIC
39#define CLOCK_MONOTONIC 1
40#endif
41
Jens Axboeebac4652005-12-08 15:25:21 +010042typedef cpu_set_t os_cpu_mask_t;
Jens Axboe4e78e402008-12-12 20:40:27 +010043
Jens Axboe6dfd46b2006-06-07 13:57:06 +020044typedef struct drand48_data os_random_state_t;
Jens Axboeebac4652005-12-08 15:25:21 +010045
46/*
47 * we want fadvise64 really, but it's so tangled... later
48 */
Shawn Lewis4d8947d2007-07-25 07:51:58 +020049#ifdef FIO_HAVE_FADVISE
Jens Axboeebac4652005-12-08 15:25:21 +010050#define fadvise(fd, off, len, advice) \
51 posix_fadvise((fd), (off_t)(off), (len), (advice))
Shawn Lewis4d8947d2007-07-25 07:51:58 +020052#endif
Jens Axboeebac4652005-12-08 15:25:21 +010053
Jens Axboec8f025f2007-05-22 17:06:24 +020054/*
55 * If you are on an ancient glibc (2.3.2), then define GLIBC_2_3_2 if you want
56 * the affinity helpers to work.
57 */
58#ifndef GLIBC_2_3_2
Jens Axboee8462bd2009-07-06 12:59:04 +020059#define fio_setaffinity(pid, cpumask) \
60 sched_setaffinity((pid), sizeof(cpumask), &(cpumask))
Jens Axboeebac4652005-12-08 15:25:21 +010061#define fio_getaffinity(pid, ptr) \
62 sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
Jens Axboec8f025f2007-05-22 17:06:24 +020063#else
Jens Axboee8462bd2009-07-06 12:59:04 +020064#define fio_setaffinity(pid, cpumask) \
65 sched_setaffinity((pid), &(cpumask))
Jens Axboec8f025f2007-05-22 17:06:24 +020066#define fio_getaffinity(pid, ptr) \
67 sched_getaffinity((pid), (ptr))
68#endif
Jens Axboebe4ecfd2008-12-08 14:10:52 +010069
70#define fio_cpu_clear(mask, cpu) CPU_CLR((cpu), (mask))
Jens Axboe6d459ee2008-12-12 20:02:58 +010071#define fio_cpu_set(mask, cpu) CPU_SET((cpu), (mask))
Jens Axboed2ce18b2008-12-12 20:51:40 +010072
73static inline int fio_cpuset_init(os_cpu_mask_t *mask)
74{
75 CPU_ZERO(mask);
76 return 0;
77}
78
79static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
80{
81 return 0;
82}
Jens Axboe6d459ee2008-12-12 20:02:58 +010083
84#define FIO_MAX_CPUS CPU_SETSIZE
Shawn Lewis4d8947d2007-07-25 07:51:58 +020085
Jens Axboeebac4652005-12-08 15:25:21 +010086static inline int ioprio_set(int which, int who, int ioprio)
87{
88 return syscall(__NR_ioprio_set, which, who, ioprio);
89}
90
Jens Axboe97fbdfa2006-10-05 13:44:15 +020091/*
92 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
93 * aren't either.
94 */
95#ifndef SPLICE_F_MOVE
Jens Axboe8756e4d2006-05-27 20:24:53 +020096#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
97#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
98 /* we may still block on the fd we splice */
99 /* from/to, of course */
100#define SPLICE_F_MORE (0x04) /* expect more data */
101#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
102
Jens Axboe97fbdfa2006-10-05 13:44:15 +0200103static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
Jens Axboe495ee9b2007-06-08 11:24:58 +0200104 size_t len, unsigned int flags)
Jens Axboe97fbdfa2006-10-05 13:44:15 +0200105{
106 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
107}
108
109static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
110{
111 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
112}
113
114static inline int vmsplice(int fd, const struct iovec *iov,
115 unsigned long nr_segs, unsigned int flags)
116{
117 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
118}
119#endif
120
Jens Axboe3feedc62006-05-28 20:13:51 +0200121#define SPLICE_DEF_SIZE (64*1024)
122
Jens Axboeb6959b52007-02-14 21:40:27 +0000123#ifdef FIO_HAVE_SYSLET
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100124
125struct syslet_uatom;
126struct async_head_user;
127
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100128/*
129 * syslet stuff
130 */
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100131static inline struct syslet_uatom *
132async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100133{
Daniel Rall2b525112008-09-10 08:56:01 +0200134 return (struct syslet_uatom *) syscall(__NR_async_exec, atom, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100135}
136
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100137static inline long
138async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
139 struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100140{
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100141 return syscall(__NR_async_wait, min_wait_events,
142 user_ring_idx, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100143}
144
Jens Axboe7756b0d2007-02-26 10:22:31 +0100145static inline long async_thread(void *event, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100146{
Jens Axboe7756b0d2007-02-26 10:22:31 +0100147 return syscall(__NR_async_thread, event, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100148}
149
150static inline long umem_add(unsigned long *uptr, unsigned long inc)
151{
152 return syscall(__NR_umem_add, uptr, inc);
153}
Jens Axboeb6959b52007-02-14 21:40:27 +0000154#endif /* FIO_HAVE_SYSLET */
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100155
Jens Axboeebac4652005-12-08 15:25:21 +0100156enum {
Jens Axboe6cefbe32007-04-18 12:46:56 +0200157 IOPRIO_CLASS_NONE,
158 IOPRIO_CLASS_RT,
159 IOPRIO_CLASS_BE,
160 IOPRIO_CLASS_IDLE,
161};
162
163enum {
Jens Axboeebac4652005-12-08 15:25:21 +0100164 IOPRIO_WHO_PROCESS = 1,
165 IOPRIO_WHO_PGRP,
166 IOPRIO_WHO_USER,
167};
168
Jens Axboe6cefbe32007-04-18 12:46:56 +0200169#define IOPRIO_BITS 16
Jens Axboeebac4652005-12-08 15:25:21 +0100170#define IOPRIO_CLASS_SHIFT 13
171
172#ifndef BLKGETSIZE64
173#define BLKGETSIZE64 _IOR(0x12,114,size_t)
174#endif
175
Jens Axboee5b401d2006-10-18 16:03:40 +0200176#ifndef BLKFLSBUF
177#define BLKFLSBUF _IO(0x12,97)
178#endif
179
180static inline int blockdev_invalidate_cache(int fd)
181{
Jens Axboea16211b2007-03-15 11:35:33 +0100182 return ioctl(fd, BLKFLSBUF);
Jens Axboee5b401d2006-10-18 16:03:40 +0200183}
184
Jens Axboe9104f872005-12-28 23:50:45 +0100185static inline int blockdev_size(int fd, unsigned long long *bytes)
Jens Axboeebac4652005-12-08 15:25:21 +0100186{
187 if (!ioctl(fd, BLKGETSIZE64, bytes))
188 return 0;
189
190 return errno;
191}
192
Jens Axboe32cd46a2006-06-07 13:40:40 +0200193static inline unsigned long long os_phys_mem(void)
194{
195 long pagesize, pages;
196
197 pagesize = sysconf(_SC_PAGESIZE);
198 pages = sysconf(_SC_PHYS_PAGES);
199 if (pages == -1 || pagesize == -1)
200 return 0;
201
202 return (unsigned long long) pages * (unsigned long long) pagesize;
203}
204
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200205static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
206{
207 srand48_r(seed, rs);
208}
209
210static inline long os_random_long(os_random_state_t *rs)
211{
212 long val;
213
214 lrand48_r(rs, &val);
215 return val;
216}
217
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200218static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
Jens Axboe07e5b262007-04-02 14:46:07 +0200219{
220 struct raw_config_request rq;
221 int fd;
222
223 if (major(dev) != RAW_MAJOR)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200224 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200225
226 /*
227 * we should be able to find /dev/rawctl or /dev/raw/rawctl
228 */
229 fd = open("/dev/rawctl", O_RDONLY);
230 if (fd < 0) {
231 fd = open("/dev/raw/rawctl", O_RDONLY);
232 if (fd < 0)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200233 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200234 }
235
236 rq.raw_minor = minor(dev);
237 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
238 close(fd);
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200239 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200240 }
241
242 close(fd);
243 *majdev = rq.block_major;
244 *mindev = rq.block_minor;
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200245 return 0;
Jens Axboe07e5b262007-04-02 14:46:07 +0200246}
247
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200248#ifdef O_NOATIME
Jens Axboe5921e802008-05-30 15:02:38 +0200249#define FIO_O_NOATIME O_NOATIME
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200250#else
251#define FIO_O_NOATIME 0
252#endif
Jens Axboe5921e802008-05-30 15:02:38 +0200253
Jens Axboea1c58072009-08-04 23:17:02 +0200254#ifdef MADV_REMOVE
255#define FIO_MADV_FREE MADV_REMOVE
256#endif
257
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200258#define CACHE_LINE_FILE \
259 "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size"
260
261static inline int arch_cache_line_size(void)
262{
263 char size[32];
264 int fd, ret;
265
266 fd = open(CACHE_LINE_FILE, O_RDONLY);
267 if (fd < 0)
268 return -1;
269
270 ret = read(fd, size, sizeof(size));
Jens Axboeec76f152009-06-09 13:05:32 +0200271
272 close(fd);
273
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200274 if (ret <= 0)
275 return -1;
Jens Axboeec76f152009-06-09 13:05:32 +0200276 else
277 return atoi(size);
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200278}
279
Jens Axboeebac4652005-12-08 15:25:21 +0100280#endif