blob: e7c0e47cbf0e5c23bbbe8feb0722b97d49a3ded0 [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 Axboeb6959b52007-02-14 21:40:27 +000028
Jens Axboeebac4652005-12-08 15:25:21 +010029#define OS_MAP_ANON (MAP_ANONYMOUS)
30
Shawn Lewis4d8947d2007-07-25 07:51:58 +020031#ifndef CLOCK_MONOTONIC
32#define CLOCK_MONOTONIC 1
33#endif
34
35#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboeebac4652005-12-08 15:25:21 +010036typedef cpu_set_t os_cpu_mask_t;
Shawn Lewis4d8947d2007-07-25 07:51:58 +020037#else
38typedef int os_cpu_mask_t;
39#endif
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 */
Shawn Lewis4d8947d2007-07-25 07:51:58 +020054#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboec8f025f2007-05-22 17:06:24 +020055#ifndef GLIBC_2_3_2
Jens Axboeebac4652005-12-08 15:25:21 +010056#define fio_setaffinity(td) \
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010057 sched_setaffinity((td)->pid, sizeof((td)->o.cpumask), &(td)->o.cpumask)
Jens Axboeebac4652005-12-08 15:25:21 +010058#define fio_getaffinity(pid, ptr) \
59 sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
Jens Axboec8f025f2007-05-22 17:06:24 +020060#else
61#define fio_setaffinity(td) \
62 sched_setaffinity((td)->pid, &(td)->o.cpumask)
63#define fio_getaffinity(pid, ptr) \
64 sched_getaffinity((pid), (ptr))
65#endif
Shawn Lewis4d8947d2007-07-25 07:51:58 +020066#endif
67
Jens Axboeebac4652005-12-08 15:25:21 +010068static inline int ioprio_set(int which, int who, int ioprio)
69{
70 return syscall(__NR_ioprio_set, which, who, ioprio);
71}
72
Jens Axboe97fbdfa2006-10-05 13:44:15 +020073/*
74 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
75 * aren't either.
76 */
77#ifndef SPLICE_F_MOVE
Jens Axboe8756e4d2006-05-27 20:24:53 +020078#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
79#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
80 /* we may still block on the fd we splice */
81 /* from/to, of course */
82#define SPLICE_F_MORE (0x04) /* expect more data */
83#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
84
Jens Axboe97fbdfa2006-10-05 13:44:15 +020085static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
Jens Axboe495ee9b2007-06-08 11:24:58 +020086 size_t len, unsigned int flags)
Jens Axboe97fbdfa2006-10-05 13:44:15 +020087{
88 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
89}
90
91static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
92{
93 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
94}
95
96static inline int vmsplice(int fd, const struct iovec *iov,
97 unsigned long nr_segs, unsigned int flags)
98{
99 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
100}
101#endif
102
Jens Axboe3feedc62006-05-28 20:13:51 +0200103#define SPLICE_DEF_SIZE (64*1024)
104
Jens Axboeb6959b52007-02-14 21:40:27 +0000105#ifdef FIO_HAVE_SYSLET
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100106
107struct syslet_uatom;
108struct async_head_user;
109
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100110/*
111 * syslet stuff
112 */
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100113static inline struct syslet_uatom *
114async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100115{
Jens Axboe1df341f2007-02-22 14:08:13 +0100116 return (void *) syscall(__NR_async_exec, atom, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100117}
118
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100119static inline long
120async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
121 struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100122{
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100123 return syscall(__NR_async_wait, min_wait_events,
124 user_ring_idx, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100125}
126
Jens Axboe7756b0d2007-02-26 10:22:31 +0100127static inline long async_thread(void *event, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100128{
Jens Axboe7756b0d2007-02-26 10:22:31 +0100129 return syscall(__NR_async_thread, event, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100130}
131
132static inline long umem_add(unsigned long *uptr, unsigned long inc)
133{
134 return syscall(__NR_umem_add, uptr, inc);
135}
Jens Axboeb6959b52007-02-14 21:40:27 +0000136#endif /* FIO_HAVE_SYSLET */
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100137
Jens Axboeebac4652005-12-08 15:25:21 +0100138enum {
Jens Axboe6cefbe32007-04-18 12:46:56 +0200139 IOPRIO_CLASS_NONE,
140 IOPRIO_CLASS_RT,
141 IOPRIO_CLASS_BE,
142 IOPRIO_CLASS_IDLE,
143};
144
145enum {
Jens Axboeebac4652005-12-08 15:25:21 +0100146 IOPRIO_WHO_PROCESS = 1,
147 IOPRIO_WHO_PGRP,
148 IOPRIO_WHO_USER,
149};
150
Jens Axboe6cefbe32007-04-18 12:46:56 +0200151#define IOPRIO_BITS 16
Jens Axboeebac4652005-12-08 15:25:21 +0100152#define IOPRIO_CLASS_SHIFT 13
153
154#ifndef BLKGETSIZE64
155#define BLKGETSIZE64 _IOR(0x12,114,size_t)
156#endif
157
Jens Axboee5b401d2006-10-18 16:03:40 +0200158#ifndef BLKFLSBUF
159#define BLKFLSBUF _IO(0x12,97)
160#endif
161
162static inline int blockdev_invalidate_cache(int fd)
163{
Jens Axboea16211b2007-03-15 11:35:33 +0100164 return ioctl(fd, BLKFLSBUF);
Jens Axboee5b401d2006-10-18 16:03:40 +0200165}
166
Jens Axboe9104f872005-12-28 23:50:45 +0100167static inline int blockdev_size(int fd, unsigned long long *bytes)
Jens Axboeebac4652005-12-08 15:25:21 +0100168{
169 if (!ioctl(fd, BLKGETSIZE64, bytes))
170 return 0;
171
172 return errno;
173}
174
Jens Axboe32cd46a2006-06-07 13:40:40 +0200175static inline unsigned long long os_phys_mem(void)
176{
177 long pagesize, pages;
178
179 pagesize = sysconf(_SC_PAGESIZE);
180 pages = sysconf(_SC_PHYS_PAGES);
181 if (pages == -1 || pagesize == -1)
182 return 0;
183
184 return (unsigned long long) pages * (unsigned long long) pagesize;
185}
186
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200187static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
188{
189 srand48_r(seed, rs);
190}
191
192static inline long os_random_long(os_random_state_t *rs)
193{
194 long val;
195
196 lrand48_r(rs, &val);
197 return val;
198}
199
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200200static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
Jens Axboe07e5b262007-04-02 14:46:07 +0200201{
202 struct raw_config_request rq;
203 int fd;
204
205 if (major(dev) != RAW_MAJOR)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200206 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200207
208 /*
209 * we should be able to find /dev/rawctl or /dev/raw/rawctl
210 */
211 fd = open("/dev/rawctl", O_RDONLY);
212 if (fd < 0) {
213 fd = open("/dev/raw/rawctl", O_RDONLY);
214 if (fd < 0)
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200215 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200216 }
217
218 rq.raw_minor = minor(dev);
219 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
220 close(fd);
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200221 return 1;
Jens Axboe07e5b262007-04-02 14:46:07 +0200222 }
223
224 close(fd);
225 *majdev = rq.block_major;
226 *mindev = rq.block_minor;
Jens Axboe8cc7afa2007-04-17 09:06:43 +0200227 return 0;
Jens Axboe07e5b262007-04-02 14:46:07 +0200228}
229
Jens Axboeebac4652005-12-08 15:25:21 +0100230#endif