e7c0e47cbf0e5c23bbbe8feb0722b97d49a3ded0
[fio.git] / os / os-linux.h
1 #ifndef FIO_OS_LINUX_H
2 #define FIO_OS_LINUX_H
3
4 #include <sys/ioctl.h>
5 #include <sys/uio.h>
6 #include <sys/syscall.h>
7 #include <unistd.h>
8 #include <fcntl.h>
9 #include <linux/unistd.h>
10 #include <linux/raw.h>
11 #include <linux/major.h>
12
13 #include "indirect.h"
14
15 #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
21 #define FIO_HAVE_IOPRIO
22 #define FIO_HAVE_SPLICE
23 #define FIO_HAVE_IOSCHED_SWITCH
24 #define FIO_HAVE_ODIRECT
25 #define FIO_HAVE_HUGETLB
26 #define FIO_HAVE_RAWBIND
27 #define FIO_HAVE_BLKTRACE
28
29 #define OS_MAP_ANON             (MAP_ANONYMOUS)
30
31 #ifndef CLOCK_MONOTONIC
32 #define CLOCK_MONOTONIC 1
33 #endif
34
35 #ifdef FIO_HAVE_CPU_AFFINITY
36 typedef cpu_set_t os_cpu_mask_t;
37 #else
38 typedef int os_cpu_mask_t;
39 #endif
40 typedef struct drand48_data os_random_state_t;
41
42 /*
43  * we want fadvise64 really, but it's so tangled... later
44  */
45 #ifdef FIO_HAVE_FADVISE
46 #define fadvise(fd, off, len, advice)   \
47         posix_fadvise((fd), (off_t)(off), (len), (advice))
48 #endif
49
50 /*
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 #ifdef FIO_HAVE_CPU_AFFINITY
55 #ifndef GLIBC_2_3_2
56 #define fio_setaffinity(td)             \
57         sched_setaffinity((td)->pid, sizeof((td)->o.cpumask), &(td)->o.cpumask)
58 #define fio_getaffinity(pid, ptr)       \
59         sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
60 #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
66 #endif
67
68 static inline int ioprio_set(int which, int who, int ioprio)
69 {
70         return syscall(__NR_ioprio_set, which, who, ioprio);
71 }
72
73 /*
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
78 #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
85 static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
86                          size_t len, unsigned int flags)
87 {
88         return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
89 }
90
91 static 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
96 static 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
103 #define SPLICE_DEF_SIZE (64*1024)
104
105 #ifdef FIO_HAVE_SYSLET
106
107 struct syslet_uatom;
108 struct async_head_user;
109
110 /*
111  * syslet stuff
112  */
113 static inline struct syslet_uatom *
114 async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
115 {
116         return (void *) syscall(__NR_async_exec, atom, ahu);
117 }
118
119 static inline long
120 async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
121            struct async_head_user *ahu)
122 {
123         return syscall(__NR_async_wait, min_wait_events,
124                         user_ring_idx, ahu);
125 }
126
127 static inline long async_thread(void *event, struct async_head_user *ahu)
128 {
129         return syscall(__NR_async_thread, event, ahu);
130 }
131
132 static inline long umem_add(unsigned long *uptr, unsigned long inc)
133 {
134         return syscall(__NR_umem_add, uptr, inc);
135 }
136 #endif /* FIO_HAVE_SYSLET */
137
138 enum {
139         IOPRIO_CLASS_NONE,
140         IOPRIO_CLASS_RT,
141         IOPRIO_CLASS_BE,
142         IOPRIO_CLASS_IDLE,
143 };
144
145 enum {
146         IOPRIO_WHO_PROCESS = 1,
147         IOPRIO_WHO_PGRP,
148         IOPRIO_WHO_USER,
149 };
150
151 #define IOPRIO_BITS             16
152 #define IOPRIO_CLASS_SHIFT      13
153
154 #ifndef BLKGETSIZE64
155 #define BLKGETSIZE64    _IOR(0x12,114,size_t)
156 #endif
157
158 #ifndef BLKFLSBUF
159 #define BLKFLSBUF       _IO(0x12,97)
160 #endif
161
162 static inline int blockdev_invalidate_cache(int fd)
163 {
164         return ioctl(fd, BLKFLSBUF);
165 }
166
167 static inline int blockdev_size(int fd, unsigned long long *bytes)
168 {
169         if (!ioctl(fd, BLKGETSIZE64, bytes))
170                 return 0;
171
172         return errno;
173 }
174
175 static 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
187 static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
188 {
189         srand48_r(seed, rs);
190 }
191
192 static 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
200 static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
201 {
202         struct raw_config_request rq;
203         int fd;
204
205         if (major(dev) != RAW_MAJOR)
206                 return 1;
207
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)
215                         return 1;
216         }
217
218         rq.raw_minor = minor(dev);
219         if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
220                 close(fd);
221                 return 1;
222         }
223
224         close(fd);
225         *majdev = rq.block_major;
226         *mindev = rq.block_minor;
227         return 0;
228 }
229
230 #endif