Have cscope look in subdirs too
[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 <sys/vfs.h>
8 #include <unistd.h>
9 #include <fcntl.h>
10 #include <errno.h>
11 #include <sched.h>
12 #include <linux/unistd.h>
13 #include <linux/raw.h>
14 #include <linux/major.h>
15
16 #include "indirect.h"
17
18 #define FIO_HAVE_LIBAIO
19 #define FIO_HAVE_POSIXAIO
20 #define FIO_HAVE_FADVISE
21 #define FIO_HAVE_CPU_AFFINITY
22 #define FIO_HAVE_DISK_UTIL
23 #define FIO_HAVE_SGIO
24 #define FIO_HAVE_IOPRIO
25 #define FIO_HAVE_SPLICE
26 #define FIO_HAVE_IOSCHED_SWITCH
27 #define FIO_HAVE_ODIRECT
28 #define FIO_HAVE_HUGETLB
29 #define FIO_HAVE_RAWBIND
30 #define FIO_HAVE_BLKTRACE
31 #define FIO_HAVE_STRSEP
32 #define FIO_HAVE_FALLOCATE
33 #define FIO_HAVE_POSIXAIO_FSYNC
34 #define FIO_HAVE_PSHARED_MUTEX
35 #define FIO_HAVE_CL_SIZE
36 #define FIO_HAVE_CGROUPS
37 #define FIO_HAVE_FDATASYNC
38 #define FIO_HAVE_FS_STAT
39
40 #ifdef SYNC_FILE_RANGE_WAIT_BEFORE
41 #define FIO_HAVE_SYNC_FILE_RANGE
42 #endif
43
44 #define OS_MAP_ANON             MAP_ANONYMOUS
45
46 #ifndef CLOCK_MONOTONIC
47 #define CLOCK_MONOTONIC 1
48 #endif
49
50 typedef cpu_set_t os_cpu_mask_t;
51
52 typedef struct drand48_data os_random_state_t;
53
54 /*
55  * we want fadvise64 really, but it's so tangled... later
56  */
57 #ifdef FIO_HAVE_FADVISE
58 #define fadvise(fd, off, len, advice)   \
59         posix_fadvise((fd), (off_t)(off), (len), (advice))
60 #endif
61
62 /*
63  * If you are on an ancient glibc (2.3.2), then define GLIBC_2_3_2 if you want
64  * the affinity helpers to work.
65  */
66 #ifndef GLIBC_2_3_2
67 #define fio_setaffinity(pid, cpumask)           \
68         sched_setaffinity((pid), sizeof(cpumask), &(cpumask))
69 #define fio_getaffinity(pid, ptr)       \
70         sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
71 #else
72 #define fio_setaffinity(pid, cpumask)   \
73         sched_setaffinity((pid), &(cpumask))
74 #define fio_getaffinity(pid, ptr)       \
75         sched_getaffinity((pid), (ptr))
76 #endif
77
78 #define fio_cpu_clear(mask, cpu)        CPU_CLR((cpu), (mask))
79 #define fio_cpu_set(mask, cpu)          CPU_SET((cpu), (mask))
80
81 static inline int fio_cpuset_init(os_cpu_mask_t *mask)
82 {
83         CPU_ZERO(mask);
84         return 0;
85 }
86
87 static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
88 {
89         return 0;
90 }
91
92 #define FIO_MAX_CPUS                    CPU_SETSIZE
93
94 static inline int ioprio_set(int which, int who, int ioprio)
95 {
96         return syscall(__NR_ioprio_set, which, who, ioprio);
97 }
98
99 /*
100  * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
101  * aren't either.
102  */
103 #ifndef SPLICE_F_MOVE
104 #define SPLICE_F_MOVE   (0x01)  /* move pages instead of copying */
105 #define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
106                                  /* we may still block on the fd we splice */
107                                  /* from/to, of course */
108 #define SPLICE_F_MORE   (0x04)  /* expect more data */
109 #define SPLICE_F_GIFT   (0x08)  /* pages passed in are a gift */
110
111 static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
112                          size_t len, unsigned int flags)
113 {
114         return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
115 }
116
117 static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
118 {
119         return syscall(__NR_sys_tee, fdin, fdout, len, flags);
120 }
121
122 static inline int vmsplice(int fd, const struct iovec *iov,
123                            unsigned long nr_segs, unsigned int flags)
124 {
125         return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
126 }
127 #endif
128
129 #define SPLICE_DEF_SIZE (64*1024)
130
131 #ifdef FIO_HAVE_SYSLET
132
133 struct syslet_uatom;
134 struct async_head_user;
135
136 /*
137  * syslet stuff
138  */
139 static inline struct syslet_uatom *
140 async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
141 {
142         return (struct syslet_uatom *) syscall(__NR_async_exec, atom, ahu);
143 }
144
145 static inline long
146 async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
147            struct async_head_user *ahu)
148 {
149         return syscall(__NR_async_wait, min_wait_events,
150                         user_ring_idx, ahu);
151 }
152
153 static inline long async_thread(void *event, struct async_head_user *ahu)
154 {
155         return syscall(__NR_async_thread, event, ahu);
156 }
157
158 static inline long umem_add(unsigned long *uptr, unsigned long inc)
159 {
160         return syscall(__NR_umem_add, uptr, inc);
161 }
162 #endif /* FIO_HAVE_SYSLET */
163
164 enum {
165         IOPRIO_CLASS_NONE,
166         IOPRIO_CLASS_RT,
167         IOPRIO_CLASS_BE,
168         IOPRIO_CLASS_IDLE,
169 };
170
171 enum {
172         IOPRIO_WHO_PROCESS = 1,
173         IOPRIO_WHO_PGRP,
174         IOPRIO_WHO_USER,
175 };
176
177 #define IOPRIO_BITS             16
178 #define IOPRIO_CLASS_SHIFT      13
179
180 #ifndef BLKGETSIZE64
181 #define BLKGETSIZE64    _IOR(0x12,114,size_t)
182 #endif
183
184 #ifndef BLKFLSBUF
185 #define BLKFLSBUF       _IO(0x12,97)
186 #endif
187
188 static inline int blockdev_invalidate_cache(int fd)
189 {
190         return ioctl(fd, BLKFLSBUF);
191 }
192
193 static inline int blockdev_size(int fd, unsigned long long *bytes)
194 {
195         if (!ioctl(fd, BLKGETSIZE64, bytes))
196                 return 0;
197
198         return errno;
199 }
200
201 static inline unsigned long long os_phys_mem(void)
202 {
203         long pagesize, pages;
204
205         pagesize = sysconf(_SC_PAGESIZE);
206         pages = sysconf(_SC_PHYS_PAGES);
207         if (pages == -1 || pagesize == -1)
208                 return 0;
209
210         return (unsigned long long) pages * (unsigned long long) pagesize;
211 }
212
213 static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
214 {
215         srand48_r(seed, rs);
216 }
217
218 static inline long os_random_long(os_random_state_t *rs)
219 {
220         long val;
221
222         lrand48_r(rs, &val);
223         return val;
224 }
225
226 static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
227 {
228         struct raw_config_request rq;
229         int fd;
230
231         if (major(dev) != RAW_MAJOR)
232                 return 1;
233
234         /*
235          * we should be able to find /dev/rawctl or /dev/raw/rawctl
236          */
237         fd = open("/dev/rawctl", O_RDONLY);
238         if (fd < 0) {
239                 fd = open("/dev/raw/rawctl", O_RDONLY);
240                 if (fd < 0)
241                         return 1;
242         }
243
244         rq.raw_minor = minor(dev);
245         if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
246                 close(fd);
247                 return 1;
248         }
249
250         close(fd);
251         *majdev = rq.block_major;
252         *mindev = rq.block_minor;
253         return 0;
254 }
255
256 #ifdef O_NOATIME
257 #define FIO_O_NOATIME   O_NOATIME
258 #else
259 #define FIO_O_NOATIME   0
260 #endif
261
262 #ifdef MADV_REMOVE
263 #define FIO_MADV_FREE   MADV_REMOVE
264 #endif
265
266 #define CACHE_LINE_FILE \
267         "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size"
268
269 static inline int arch_cache_line_size(void)
270 {
271         char size[32];
272         int fd, ret;
273
274         fd = open(CACHE_LINE_FILE, O_RDONLY);
275         if (fd < 0)
276                 return -1;
277
278         ret = read(fd, size, sizeof(size));
279
280         close(fd);
281
282         if (ret <= 0)
283                 return -1;
284         else
285                 return atoi(size);
286 }
287
288 static inline unsigned long long get_fs_size(const char *path)
289 {
290         unsigned long long ret;
291         struct statfs s;
292
293         if (statfs(path, &s) < 0)
294                 return -1ULL;
295
296         ret = s.f_bsize;
297         ret *= (unsigned long long) s.f_bfree;
298         return ret;
299 }
300
301 #endif