blob: dd9c5aaf493ce6ff403e5b1ec92c5390d7b82bb1 [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 Axboeb6959b52007-02-14 21:40:27 +000034
Jens Axboedc873b62008-06-04 20:13:04 +020035#define OS_MAP_ANON MAP_ANONYMOUS
Jens Axboeebac4652005-12-08 15:25:21 +010036
Shawn Lewis4d8947d2007-07-25 07:51:58 +020037#ifndef CLOCK_MONOTONIC
38#define CLOCK_MONOTONIC 1
39#endif
40
Jens Axboeebac4652005-12-08 15:25:21 +010041typedef cpu_set_t os_cpu_mask_t;
Jens Axboe4e78e402008-12-12 20:40:27 +010042
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 Axboee8462bd2009-07-06 12:59:04 +020058#define fio_setaffinity(pid, cpumask) \
59 sched_setaffinity((pid), sizeof(cpumask), &(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
Jens Axboee8462bd2009-07-06 12:59:04 +020063#define fio_setaffinity(pid, cpumask) \
64 sched_setaffinity((pid), &(cpumask))
Jens Axboec8f025f2007-05-22 17:06:24 +020065#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))
Jens Axboed2ce18b2008-12-12 20:51:40 +010071
72static inline int fio_cpuset_init(os_cpu_mask_t *mask)
73{
74 CPU_ZERO(mask);
75 return 0;
76}
77
78static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
79{
80 return 0;
81}
Jens Axboe6d459ee2008-12-12 20:02:58 +010082
83#define FIO_MAX_CPUS CPU_SETSIZE
Shawn Lewis4d8947d2007-07-25 07:51:58 +020084
Jens Axboeebac4652005-12-08 15:25:21 +010085static inline int ioprio_set(int which, int who, int ioprio)
86{
87 return syscall(__NR_ioprio_set, which, who, ioprio);
88}
89
Jens Axboe97fbdfa2006-10-05 13:44:15 +020090/*
91 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
92 * aren't either.
93 */
94#ifndef SPLICE_F_MOVE
Jens Axboe8756e4d2006-05-27 20:24:53 +020095#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
96#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
97 /* we may still block on the fd we splice */
98 /* from/to, of course */
99#define SPLICE_F_MORE (0x04) /* expect more data */
100#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
101
Jens Axboe97fbdfa2006-10-05 13:44:15 +0200102static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
Jens Axboe495ee9b2007-06-08 11:24:58 +0200103 size_t len, unsigned int flags)
Jens Axboe97fbdfa2006-10-05 13:44:15 +0200104{
105 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
106}
107
108static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
109{
110 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
111}
112
113static inline int vmsplice(int fd, const struct iovec *iov,
114 unsigned long nr_segs, unsigned int flags)
115{
116 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
117}
118#endif
119
Jens Axboe3feedc62006-05-28 20:13:51 +0200120#define SPLICE_DEF_SIZE (64*1024)
121
Jens Axboeb6959b52007-02-14 21:40:27 +0000122#ifdef FIO_HAVE_SYSLET
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100123
124struct syslet_uatom;
125struct async_head_user;
126
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100127/*
128 * syslet stuff
129 */
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100130static inline struct syslet_uatom *
131async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100132{
Daniel Rall2b525112008-09-10 08:56:01 +0200133 return (struct syslet_uatom *) syscall(__NR_async_exec, atom, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100134}
135
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100136static inline long
137async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
138 struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100139{
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100140 return syscall(__NR_async_wait, min_wait_events,
141 user_ring_idx, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100142}
143
Jens Axboe7756b0d2007-02-26 10:22:31 +0100144static inline long async_thread(void *event, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100145{
Jens Axboe7756b0d2007-02-26 10:22:31 +0100146 return syscall(__NR_async_thread, event, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100147}
148
149static inline long umem_add(unsigned long *uptr, unsigned long inc)
150{
151 return syscall(__NR_umem_add, uptr, inc);
152}
Jens Axboeb6959b52007-02-14 21:40:27 +0000153#endif /* FIO_HAVE_SYSLET */
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100154
Jens Axboeebac4652005-12-08 15:25:21 +0100155enum {
Jens Axboe6cefbe32007-04-18 12:46:56 +0200156 IOPRIO_CLASS_NONE,
157 IOPRIO_CLASS_RT,
158 IOPRIO_CLASS_BE,
159 IOPRIO_CLASS_IDLE,
160};
161
162enum {
Jens Axboeebac4652005-12-08 15:25:21 +0100163 IOPRIO_WHO_PROCESS = 1,
164 IOPRIO_WHO_PGRP,
165 IOPRIO_WHO_USER,
166};
167
Jens Axboe6cefbe32007-04-18 12:46:56 +0200168#define IOPRIO_BITS 16
Jens Axboeebac4652005-12-08 15:25:21 +0100169#define IOPRIO_CLASS_SHIFT 13
170
171#ifndef BLKGETSIZE64
172#define BLKGETSIZE64 _IOR(0x12,114,size_t)
173#endif
174
Jens Axboee5b401d2006-10-18 16:03:40 +0200175#ifndef BLKFLSBUF
176#define BLKFLSBUF _IO(0x12,97)
177#endif
178
179static inline int blockdev_invalidate_cache(int fd)
180{
Jens Axboea16211b2007-03-15 11:35:33 +0100181 return ioctl(fd, BLKFLSBUF);
Jens Axboee5b401d2006-10-18 16:03:40 +0200182}
183
Jens Axboe9104f872005-12-28 23:50:45 +0100184static inline int blockdev_size(int fd, unsigned long long *bytes)
Jens Axboeebac4652005-12-08 15:25:21 +0100185{
186 if (!ioctl(fd, BLKGETSIZE64, bytes))
187 return 0;
188
189 return errno;
190}
191
Jens Axboe32cd46a2006-06-07 13:40:40 +0200192static inline unsigned long long os_phys_mem(void)
193{
194 long pagesize, pages;
195
196 pagesize = sysconf(_SC_PAGESIZE);
197 pages = sysconf(_SC_PHYS_PAGES);
198 if (pages == -1 || pagesize == -1)
199 return 0;
200
201 return (unsigned long long) pages * (unsigned long long) pagesize;
202}
203
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200204static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
205{
206 srand48_r(seed, rs);
207}
208
209static inline long os_random_long(os_random_state_t *rs)
210{
211 long val;
212
213 lrand48_r(rs, &val);
214 return val;
215}
216
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200217static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
Jens Axboe07e5b262007-04-02 14:46:07 +0200218{
219 struct raw_config_request rq;
220 int fd;
221
222 if (major(dev) != RAW_MAJOR)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200223 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200224
225 /*
226 * we should be able to find /dev/rawctl or /dev/raw/rawctl
227 */
228 fd = open("/dev/rawctl", O_RDONLY);
229 if (fd < 0) {
230 fd = open("/dev/raw/rawctl", O_RDONLY);
231 if (fd < 0)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200232 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200233 }
234
235 rq.raw_minor = minor(dev);
236 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
237 close(fd);
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200238 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200239 }
240
241 close(fd);
242 *majdev = rq.block_major;
243 *mindev = rq.block_minor;
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200244 return 0;
Jens Axboe07e5b262007-04-02 14:46:07 +0200245}
246
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200247#ifdef O_NOATIME
Jens Axboe5921e802008-05-30 15:02:38 +0200248#define FIO_O_NOATIME O_NOATIME
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200249#else
250#define FIO_O_NOATIME 0
251#endif
Jens Axboe5921e802008-05-30 15:02:38 +0200252
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200253#define CACHE_LINE_FILE \
254 "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size"
255
256static inline int arch_cache_line_size(void)
257{
258 char size[32];
259 int fd, ret;
260
261 fd = open(CACHE_LINE_FILE, O_RDONLY);
262 if (fd < 0)
263 return -1;
264
265 ret = read(fd, size, sizeof(size));
Jens Axboeec76f152009-06-09 13:05:32 +0200266
267 close(fd);
268
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200269 if (ret <= 0)
270 return -1;
Jens Axboeec76f152009-06-09 13:05:32 +0200271 else
272 return atoi(size);
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200273}
274
Jens Axboeebac4652005-12-08 15:25:21 +0100275#endif