7fa0c9566a6d4e24405b93563f3958b87dd639bb
[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 #define FIO_HAVE_LIBAIO
14 #define FIO_HAVE_POSIXAIO
15 #define FIO_HAVE_FADVISE
16 #define FIO_HAVE_CPU_AFFINITY
17 #define FIO_HAVE_DISK_UTIL
18 #define FIO_HAVE_SGIO
19 #define FIO_HAVE_IOPRIO
20 #define FIO_HAVE_SPLICE
21 #define FIO_HAVE_IOSCHED_SWITCH
22 #define FIO_HAVE_ODIRECT
23 #define FIO_HAVE_HUGETLB
24 #define FIO_HAVE_RAWBIND
25 #define FIO_HAVE_BLKTRACE
26
27 #define OS_MAP_ANON             (MAP_ANONYMOUS)
28
29 typedef cpu_set_t os_cpu_mask_t;
30 typedef struct drand48_data os_random_state_t;
31
32 /*
33  * we want fadvise64 really, but it's so tangled... later
34  */
35 #define fadvise(fd, off, len, advice)   \
36         posix_fadvise((fd), (off_t)(off), (len), (advice))
37
38 #define fio_setaffinity(td)             \
39         sched_setaffinity((td)->pid, sizeof((td)->o.cpumask), &(td)->o.cpumask)
40 #define fio_getaffinity(pid, ptr)       \
41         sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
42
43 static inline int ioprio_set(int which, int who, int ioprio)
44 {
45         return syscall(__NR_ioprio_set, which, who, ioprio);
46 }
47
48 /*
49  * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
50  * aren't either.
51  */
52 #ifndef SPLICE_F_MOVE
53 #define SPLICE_F_MOVE   (0x01)  /* move pages instead of copying */
54 #define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
55                                  /* we may still block on the fd we splice */
56                                  /* from/to, of course */
57 #define SPLICE_F_MORE   (0x04)  /* expect more data */
58 #define SPLICE_F_GIFT   (0x08)  /* pages passed in are a gift */
59
60 static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
61                          size_t len, unsigned long flags)
62 {
63         return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
64 }
65
66 static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
67 {
68         return syscall(__NR_sys_tee, fdin, fdout, len, flags);
69 }
70
71 static inline int vmsplice(int fd, const struct iovec *iov,
72                            unsigned long nr_segs, unsigned int flags)
73 {
74         return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
75 }
76 #endif
77
78 #define SPLICE_DEF_SIZE (64*1024)
79
80 #ifdef FIO_HAVE_SYSLET
81
82 struct syslet_uatom;
83 struct async_head_user;
84
85 /*
86  * syslet stuff
87  */
88 static inline struct syslet_uatom *
89 async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
90 {
91         return (void *) syscall(__NR_async_exec, atom, ahu);
92 }
93
94 static inline long
95 async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
96            struct async_head_user *ahu)
97 {
98         return syscall(__NR_async_wait, min_wait_events,
99                         user_ring_idx, ahu);
100 }
101
102 static inline long async_thread(void *event, struct async_head_user *ahu)
103 {
104         return syscall(__NR_async_thread, event, ahu);
105 }
106
107 static inline long umem_add(unsigned long *uptr, unsigned long inc)
108 {
109         return syscall(__NR_umem_add, uptr, inc);
110 }
111 #endif /* FIO_HAVE_SYSLET */
112
113 enum {
114         IOPRIO_CLASS_NONE,
115         IOPRIO_CLASS_RT,
116         IOPRIO_CLASS_BE,
117         IOPRIO_CLASS_IDLE,
118 };
119
120 enum {
121         IOPRIO_WHO_PROCESS = 1,
122         IOPRIO_WHO_PGRP,
123         IOPRIO_WHO_USER,
124 };
125
126 #define IOPRIO_BITS             16
127 #define IOPRIO_CLASS_SHIFT      13
128
129 #ifndef BLKGETSIZE64
130 #define BLKGETSIZE64    _IOR(0x12,114,size_t)
131 #endif
132
133 #ifndef BLKFLSBUF
134 #define BLKFLSBUF       _IO(0x12,97)
135 #endif
136
137 static inline int blockdev_invalidate_cache(int fd)
138 {
139         return ioctl(fd, BLKFLSBUF);
140 }
141
142 static inline int blockdev_size(int fd, unsigned long long *bytes)
143 {
144         if (!ioctl(fd, BLKGETSIZE64, bytes))
145                 return 0;
146
147         return errno;
148 }
149
150 static inline unsigned long long os_phys_mem(void)
151 {
152         long pagesize, pages;
153
154         pagesize = sysconf(_SC_PAGESIZE);
155         pages = sysconf(_SC_PHYS_PAGES);
156         if (pages == -1 || pagesize == -1)
157                 return 0;
158
159         return (unsigned long long) pages * (unsigned long long) pagesize;
160 }
161
162 static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
163 {
164         srand48_r(seed, rs);
165 }
166
167 static inline long os_random_long(os_random_state_t *rs)
168 {
169         long val;
170
171         lrand48_r(rs, &val);
172         return val;
173 }
174
175 static inline double os_random_double(os_random_state_t *rs)
176 {
177         double val;
178
179         drand48_r(rs, &val);
180         return val;
181 }
182
183 static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
184 {
185         struct raw_config_request rq;
186         int fd;
187
188         if (major(dev) != RAW_MAJOR)
189                 return 1;
190
191         /*
192          * we should be able to find /dev/rawctl or /dev/raw/rawctl
193          */
194         fd = open("/dev/rawctl", O_RDONLY);
195         if (fd < 0) {
196                 fd = open("/dev/raw/rawctl", O_RDONLY);
197                 if (fd < 0)
198                         return 1;
199         }
200
201         rq.raw_minor = minor(dev);
202         if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
203                 close(fd);
204                 return 1;
205         }
206
207         close(fd);
208         *majdev = rq.block_major;
209         *mindev = rq.block_minor;
210         return 0;
211 }
212
213 #endif