blob: 72950c0e8894b24c6efbd253a84907948e75c262 [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
38#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboeebac4652005-12-08 15:25:21 +010039typedef cpu_set_t os_cpu_mask_t;
Shawn Lewis4d8947d2007-07-25 07:51:58 +020040#else
41typedef int os_cpu_mask_t;
42#endif
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 */
Shawn Lewis4d8947d2007-07-25 07:51:58 +020057#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboec8f025f2007-05-22 17:06:24 +020058#ifndef GLIBC_2_3_2
Jens Axboeebac4652005-12-08 15:25:21 +010059#define fio_setaffinity(td) \
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010060 sched_setaffinity((td)->pid, sizeof((td)->o.cpumask), &(td)->o.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
64#define fio_setaffinity(td) \
65 sched_setaffinity((td)->pid, &(td)->o.cpumask)
66#define fio_getaffinity(pid, ptr) \
67 sched_getaffinity((pid), (ptr))
68#endif
Shawn Lewis4d8947d2007-07-25 07:51:58 +020069#endif
70
Jens Axboeebac4652005-12-08 15:25:21 +010071static 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 Axboe3feedc62006-05-28 20:13:51 +0200106#define SPLICE_DEF_SIZE (64*1024)
107
Jens Axboeb6959b52007-02-14 21:40:27 +0000108#ifdef FIO_HAVE_SYSLET
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100109
110struct syslet_uatom;
111struct async_head_user;
112
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100113/*
114 * syslet stuff
115 */
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100116static inline struct syslet_uatom *
117async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100118{
Jens Axboe1df341f2007-02-22 14:08:13 +0100119 return (void *) syscall(__NR_async_exec, atom, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100120}
121
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100122static inline long
123async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
124 struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100125{
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100126 return syscall(__NR_async_wait, min_wait_events,
127 user_ring_idx, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100128}
129
Jens Axboe7756b0d2007-02-26 10:22:31 +0100130static inline long async_thread(void *event, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100131{
Jens Axboe7756b0d2007-02-26 10:22:31 +0100132 return syscall(__NR_async_thread, event, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100133}
134
135static inline long umem_add(unsigned long *uptr, unsigned long inc)
136{
137 return syscall(__NR_umem_add, uptr, inc);
138}
Jens Axboeb6959b52007-02-14 21:40:27 +0000139#endif /* FIO_HAVE_SYSLET */
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100140
Jens Axboeebac4652005-12-08 15:25:21 +0100141enum {
Jens Axboe6cefbe32007-04-18 12:46:56 +0200142 IOPRIO_CLASS_NONE,
143 IOPRIO_CLASS_RT,
144 IOPRIO_CLASS_BE,
145 IOPRIO_CLASS_IDLE,
146};
147
148enum {
Jens Axboeebac4652005-12-08 15:25:21 +0100149 IOPRIO_WHO_PROCESS = 1,
150 IOPRIO_WHO_PGRP,
151 IOPRIO_WHO_USER,
152};
153
Jens Axboe6cefbe32007-04-18 12:46:56 +0200154#define IOPRIO_BITS 16
Jens Axboeebac4652005-12-08 15:25:21 +0100155#define IOPRIO_CLASS_SHIFT 13
156
157#ifndef BLKGETSIZE64
158#define BLKGETSIZE64 _IOR(0x12,114,size_t)
159#endif
160
Jens Axboee5b401d2006-10-18 16:03:40 +0200161#ifndef BLKFLSBUF
162#define BLKFLSBUF _IO(0x12,97)
163#endif
164
165static inline int blockdev_invalidate_cache(int fd)
166{
Jens Axboea16211b2007-03-15 11:35:33 +0100167 return ioctl(fd, BLKFLSBUF);
Jens Axboee5b401d2006-10-18 16:03:40 +0200168}
169
Jens Axboe9104f872005-12-28 23:50:45 +0100170static inline int blockdev_size(int fd, unsigned long long *bytes)
Jens Axboeebac4652005-12-08 15:25:21 +0100171{
172 if (!ioctl(fd, BLKGETSIZE64, bytes))
173 return 0;
174
175 return errno;
176}
177
Jens Axboe32cd46a2006-06-07 13:40:40 +0200178static inline unsigned long long os_phys_mem(void)
179{
180 long pagesize, pages;
181
182 pagesize = sysconf(_SC_PAGESIZE);
183 pages = sysconf(_SC_PHYS_PAGES);
184 if (pages == -1 || pagesize == -1)
185 return 0;
186
187 return (unsigned long long) pages * (unsigned long long) pagesize;
188}
189
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200190static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
191{
192 srand48_r(seed, rs);
193}
194
195static inline long os_random_long(os_random_state_t *rs)
196{
197 long val;
198
199 lrand48_r(rs, &val);
200 return val;
201}
202
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200203static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
Jens Axboe07e5b262007-04-02 14:46:07 +0200204{
205 struct raw_config_request rq;
206 int fd;
207
208 if (major(dev) != RAW_MAJOR)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200209 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200210
211 /*
212 * we should be able to find /dev/rawctl or /dev/raw/rawctl
213 */
214 fd = open("/dev/rawctl", O_RDONLY);
215 if (fd < 0) {
216 fd = open("/dev/raw/rawctl", O_RDONLY);
217 if (fd < 0)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200218 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200219 }
220
221 rq.raw_minor = minor(dev);
222 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
223 close(fd);
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200224 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200225 }
226
227 close(fd);
228 *majdev = rq.block_major;
229 *mindev = rq.block_minor;
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200230 return 0;
Jens Axboe07e5b262007-04-02 14:46:07 +0200231}
232
Jens Axboe5921e802008-05-30 15:02:38 +0200233#define FIO_O_NOATIME O_NOATIME
234
Jens Axboeebac4652005-12-08 15:25:21 +0100235#endif