blob: 03d2450cf5f9388199ec227743eb9172807d71c9 [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
Jens Axboeebac4652005-12-08 15:25:21 +010038typedef cpu_set_t os_cpu_mask_t;
Jens Axboe4e78e402008-12-12 20:40:27 +010039
Jens Axboe6dfd46b2006-06-07 13:57:06 +020040typedef struct drand48_data os_random_state_t;
Jens Axboeebac4652005-12-08 15:25:21 +010041
42/*
43 * we want fadvise64 really, but it's so tangled... later
44 */
Shawn Lewis4d8947d2007-07-25 07:51:58 +020045#ifdef FIO_HAVE_FADVISE
Jens Axboeebac4652005-12-08 15:25:21 +010046#define fadvise(fd, off, len, advice) \
47 posix_fadvise((fd), (off_t)(off), (len), (advice))
Shawn Lewis4d8947d2007-07-25 07:51:58 +020048#endif
Jens Axboeebac4652005-12-08 15:25:21 +010049
Jens Axboec8f025f2007-05-22 17:06:24 +020050/*
51 * If you are on an ancient glibc (2.3.2), then define GLIBC_2_3_2 if you want
52 * the affinity helpers to work.
53 */
54#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
Jens Axboebe4ecfd2008-12-08 14:10:52 +010065
66#define fio_cpu_clear(mask, cpu) CPU_CLR((cpu), (mask))
Jens Axboe6d459ee2008-12-12 20:02:58 +010067#define fio_cpu_set(mask, cpu) CPU_SET((cpu), (mask))
Jens Axboed2ce18b2008-12-12 20:51:40 +010068
69static inline int fio_cpuset_init(os_cpu_mask_t *mask)
70{
71 CPU_ZERO(mask);
72 return 0;
73}
74
75static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
76{
77 return 0;
78}
Jens Axboe6d459ee2008-12-12 20:02:58 +010079
80#define FIO_MAX_CPUS CPU_SETSIZE
Shawn Lewis4d8947d2007-07-25 07:51:58 +020081
Jens Axboeebac4652005-12-08 15:25:21 +010082static inline int ioprio_set(int which, int who, int ioprio)
83{
84 return syscall(__NR_ioprio_set, which, who, ioprio);
85}
86
Jens Axboe97fbdfa2006-10-05 13:44:15 +020087/*
88 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
89 * aren't either.
90 */
91#ifndef SPLICE_F_MOVE
Jens Axboe8756e4d2006-05-27 20:24:53 +020092#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
93#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
94 /* we may still block on the fd we splice */
95 /* from/to, of course */
96#define SPLICE_F_MORE (0x04) /* expect more data */
97#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
98
Jens Axboe97fbdfa2006-10-05 13:44:15 +020099static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
Jens Axboe495ee9b2007-06-08 11:24:58 +0200100 size_t len, unsigned int flags)
Jens Axboe97fbdfa2006-10-05 13:44:15 +0200101{
102 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
103}
104
105static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
106{
107 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
108}
109
110static inline int vmsplice(int fd, const struct iovec *iov,
111 unsigned long nr_segs, unsigned int flags)
112{
113 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
114}
115#endif
116
Jens Axboe3feedc62006-05-28 20:13:51 +0200117#define SPLICE_DEF_SIZE (64*1024)
118
Jens Axboeb6959b52007-02-14 21:40:27 +0000119#ifdef FIO_HAVE_SYSLET
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100120
121struct syslet_uatom;
122struct async_head_user;
123
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100124/*
125 * syslet stuff
126 */
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100127static inline struct syslet_uatom *
128async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100129{
Daniel Rall2b525112008-09-10 08:56:01 +0200130 return (struct syslet_uatom *) syscall(__NR_async_exec, atom, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100131}
132
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100133static inline long
134async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
135 struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100136{
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100137 return syscall(__NR_async_wait, min_wait_events,
138 user_ring_idx, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100139}
140
Jens Axboe7756b0d2007-02-26 10:22:31 +0100141static inline long async_thread(void *event, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100142{
Jens Axboe7756b0d2007-02-26 10:22:31 +0100143 return syscall(__NR_async_thread, event, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100144}
145
146static inline long umem_add(unsigned long *uptr, unsigned long inc)
147{
148 return syscall(__NR_umem_add, uptr, inc);
149}
Jens Axboeb6959b52007-02-14 21:40:27 +0000150#endif /* FIO_HAVE_SYSLET */
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100151
Jens Axboeebac4652005-12-08 15:25:21 +0100152enum {
Jens Axboe6cefbe32007-04-18 12:46:56 +0200153 IOPRIO_CLASS_NONE,
154 IOPRIO_CLASS_RT,
155 IOPRIO_CLASS_BE,
156 IOPRIO_CLASS_IDLE,
157};
158
159enum {
Jens Axboeebac4652005-12-08 15:25:21 +0100160 IOPRIO_WHO_PROCESS = 1,
161 IOPRIO_WHO_PGRP,
162 IOPRIO_WHO_USER,
163};
164
Jens Axboe6cefbe32007-04-18 12:46:56 +0200165#define IOPRIO_BITS 16
Jens Axboeebac4652005-12-08 15:25:21 +0100166#define IOPRIO_CLASS_SHIFT 13
167
168#ifndef BLKGETSIZE64
169#define BLKGETSIZE64 _IOR(0x12,114,size_t)
170#endif
171
Jens Axboee5b401d2006-10-18 16:03:40 +0200172#ifndef BLKFLSBUF
173#define BLKFLSBUF _IO(0x12,97)
174#endif
175
176static inline int blockdev_invalidate_cache(int fd)
177{
Jens Axboea16211b2007-03-15 11:35:33 +0100178 return ioctl(fd, BLKFLSBUF);
Jens Axboee5b401d2006-10-18 16:03:40 +0200179}
180
Jens Axboe9104f872005-12-28 23:50:45 +0100181static inline int blockdev_size(int fd, unsigned long long *bytes)
Jens Axboeebac4652005-12-08 15:25:21 +0100182{
183 if (!ioctl(fd, BLKGETSIZE64, bytes))
184 return 0;
185
186 return errno;
187}
188
Jens Axboe32cd46a2006-06-07 13:40:40 +0200189static inline unsigned long long os_phys_mem(void)
190{
191 long pagesize, pages;
192
193 pagesize = sysconf(_SC_PAGESIZE);
194 pages = sysconf(_SC_PHYS_PAGES);
195 if (pages == -1 || pagesize == -1)
196 return 0;
197
198 return (unsigned long long) pages * (unsigned long long) pagesize;
199}
200
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200201static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
202{
203 srand48_r(seed, rs);
204}
205
206static inline long os_random_long(os_random_state_t *rs)
207{
208 long val;
209
210 lrand48_r(rs, &val);
211 return val;
212}
213
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200214static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
Jens Axboe07e5b262007-04-02 14:46:07 +0200215{
216 struct raw_config_request rq;
217 int fd;
218
219 if (major(dev) != RAW_MAJOR)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200220 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200221
222 /*
223 * we should be able to find /dev/rawctl or /dev/raw/rawctl
224 */
225 fd = open("/dev/rawctl", O_RDONLY);
226 if (fd < 0) {
227 fd = open("/dev/raw/rawctl", O_RDONLY);
228 if (fd < 0)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200229 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200230 }
231
232 rq.raw_minor = minor(dev);
233 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
234 close(fd);
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200235 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200236 }
237
238 close(fd);
239 *majdev = rq.block_major;
240 *mindev = rq.block_minor;
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200241 return 0;
Jens Axboe07e5b262007-04-02 14:46:07 +0200242}
243
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200244#ifdef O_NOATIME
Jens Axboe5921e802008-05-30 15:02:38 +0200245#define FIO_O_NOATIME O_NOATIME
Jens Axboe5b6f5c62008-06-11 10:21:43 +0200246#else
247#define FIO_O_NOATIME 0
248#endif
Jens Axboe5921e802008-05-30 15:02:38 +0200249
Jens Axboeebac4652005-12-08 15:25:21 +0100250#endif