Whamcloud - gitweb
LU-8056 lloop: fix bio_for_each_segment_all for newer kernels
[fs/lustre-release.git] / lustre / include / lustre_compat.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _LUSTRE_COMPAT_H
38 #define _LUSTRE_COMPAT_H
39
40 #include <linux/fs_struct.h>
41 #include <linux/namei.h>
42 #include <linux/bio.h>
43
44 #include <lustre_patchless_compat.h>
45
46 #ifdef HAVE_FS_STRUCT_RWLOCK
47 # define LOCK_FS_STRUCT(fs)     write_lock(&(fs)->lock)
48 # define UNLOCK_FS_STRUCT(fs)   write_unlock(&(fs)->lock)
49 #else
50 # define LOCK_FS_STRUCT(fs)     spin_lock(&(fs)->lock)
51 # define UNLOCK_FS_STRUCT(fs)   spin_unlock(&(fs)->lock)
52 #endif
53
54 static inline void ll_set_fs_pwd(struct fs_struct *fs, struct vfsmount *mnt,
55                                  struct dentry *dentry)
56 {
57         struct path path;
58         struct path old_pwd;
59
60         path.mnt = mnt;
61         path.dentry = dentry;
62         LOCK_FS_STRUCT(fs);
63         old_pwd = fs->pwd;
64         path_get(&path);
65         fs->pwd = path;
66         UNLOCK_FS_STRUCT(fs);
67
68         if (old_pwd.dentry)
69                 path_put(&old_pwd);
70 }
71
72 /*
73  * set ATTR_BLOCKS to a high value to avoid any risk of collision with other
74  * ATTR_* attributes (see bug 13828)
75  */
76 #define ATTR_BLOCKS    (1 << 27)
77
78 #define current_ngroups current_cred()->group_info->ngroups
79 #define current_groups current_cred()->group_info->small_block
80
81 /*
82  * OBD need working random driver, thus all our
83  * initialization routines must be called after device
84  * driver initialization
85  */
86 #ifndef MODULE
87 #undef module_init
88 #define module_init(a)     late_initcall(a)
89 #endif
90
91 #ifndef MODULE_ALIAS_FS
92 #define MODULE_ALIAS_FS(name)
93 #endif
94
95 #define LTIME_S(time)                   (time.tv_sec)
96
97 #ifdef HAVE_GENERIC_PERMISSION_2ARGS
98 # define ll_generic_permission(inode, mask, flags, check_acl) \
99          generic_permission(inode, mask)
100 #elif defined HAVE_GENERIC_PERMISSION_4ARGS
101 # define ll_generic_permission(inode, mask, flags, check_acl) \
102          generic_permission(inode, mask, flags, check_acl)
103 #else
104 # define ll_generic_permission(inode, mask, flags, check_acl) \
105          generic_permission(inode, mask, check_acl)
106 #endif
107
108 #ifdef HAVE_4ARGS_VFS_SYMLINK
109 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
110                 vfs_symlink(dir, dentry, path, mode)
111 #else
112 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
113                        vfs_symlink(dir, dentry, path)
114 #endif
115
116 #if !defined(HAVE_FILE_LLSEEK_SIZE) || defined(HAVE_FILE_LLSEEK_SIZE_5ARGS)
117 #define ll_generic_file_llseek_size(file, offset, origin, maxbytes, eof) \
118                 generic_file_llseek_size(file, offset, origin, maxbytes, eof);
119 #else
120 #define ll_generic_file_llseek_size(file, offset, origin, maxbytes, eof) \
121                 generic_file_llseek_size(file, offset, origin, maxbytes);
122 #endif
123
124 #ifdef HAVE_INODE_DIO_WAIT
125 /* inode_dio_wait(i) use as-is for write lock */
126 # define inode_dio_write_done(i)        do {} while (0) /* for write unlock */
127 #else
128 # define inode_dio_wait(i)              down_write(&(i)->i_alloc_sem)
129 # define inode_dio_write_done(i)        up_write(&(i)->i_alloc_sem)
130 #endif
131
132 #ifndef FS_HAS_FIEMAP
133 #define FS_HAS_FIEMAP                   (0)
134 #endif
135
136 /* add a lustre compatible layer for crypto API */
137 #include <linux/crypto.h>
138 static inline int ll_crypto_hmac(struct crypto_hash *tfm,
139                                  u8 *key, unsigned int *keylen,
140                                  struct scatterlist *sg,
141                                  unsigned int size, u8 *result)
142 {
143         struct hash_desc desc;
144         int              rv;
145         desc.tfm   = tfm;
146         desc.flags = 0;
147         rv = crypto_hash_setkey(desc.tfm, key, *keylen);
148         if (rv) {
149                 CERROR("failed to hash setkey: %d\n", rv);
150                 return rv;
151         }
152         return crypto_hash_digest(&desc, sg, size, result);
153 }
154
155 static inline
156 unsigned int ll_crypto_tfm_alg_min_keysize(struct crypto_blkcipher *tfm)
157 {
158         return crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher.min_keysize;
159 }
160
161 #ifndef HAVE_SIMPLE_SETATTR
162 #define simple_setattr(dentry, ops) inode_setattr((dentry)->d_inode, ops)
163 #endif
164
165 #ifndef SLAB_DESTROY_BY_RCU
166 #define SLAB_DESTROY_BY_RCU 0
167 #endif
168
169 #ifndef HAVE_DQUOT_SUSPEND
170 # define ll_vfs_dq_init             vfs_dq_init
171 # define ll_vfs_dq_drop             vfs_dq_drop
172 # define ll_vfs_dq_transfer         vfs_dq_transfer
173 # define ll_vfs_dq_off(sb, remount) vfs_dq_off(sb, remount)
174 #else
175 # define ll_vfs_dq_init             dquot_initialize
176 # define ll_vfs_dq_drop             dquot_drop
177 # define ll_vfs_dq_transfer         dquot_transfer
178 # define ll_vfs_dq_off(sb, remount) dquot_suspend(sb, -1)
179 #endif
180
181 #ifndef HAVE_BLKDEV_GET_BY_DEV
182 # define blkdev_get_by_dev(dev, mode, holder) open_by_devnum(dev, mode)
183 #endif
184
185 #ifdef HAVE_BVEC_ITER
186 #define bio_idx(bio)                    (bio->bi_iter.bi_idx)
187 #define bio_set_sector(bio, sector)     (bio->bi_iter.bi_sector = sector)
188 #define bvl_to_page(bvl)                (bvl.bv_page)
189 #else
190 #define bio_idx(bio)                    (bio->bi_idx)
191 #define bio_set_sector(bio, sector)     (bio->bi_sector = sector)
192 #define bio_sectors(bio)                ((bio)->bi_size >> 9)
193 #ifndef HAVE_BIO_END_SECTOR
194 #define bio_end_sector(bio)             (bio->bi_sector + bio_sectors(bio))
195 #endif
196 #define bvl_to_page(bvl)                (bvl->bv_page)
197 #endif
198
199 #ifndef HAVE_BLK_QUEUE_MAX_SEGMENTS
200 #define blk_queue_max_segments(rq, seg)                      \
201         do { blk_queue_max_phys_segments(rq, seg);           \
202              blk_queue_max_hw_segments(rq, seg); } while (0)
203 #else
204 #define queue_max_phys_segments(rq)       queue_max_segments(rq)
205 #define queue_max_hw_segments(rq)         queue_max_segments(rq)
206 #endif
207
208 #ifdef HAVE_KMAP_ATOMIC_HAS_1ARG
209 #define ll_kmap_atomic(a, b)    kmap_atomic(a)
210 #define ll_kunmap_atomic(a, b)  kunmap_atomic(a)
211 #else
212 #define ll_kmap_atomic(a, b)    kmap_atomic(a, b)
213 #define ll_kunmap_atomic(a, b)  kunmap_atomic(a, b)
214 #endif
215
216 #ifndef HAVE_CLEAR_INODE
217 #define clear_inode(i)          end_writeback(i)
218 #endif
219
220 #ifndef HAVE_DENTRY_D_CHILD
221 #define d_child                 d_u.d_child
222 #endif
223
224 #ifdef HAVE_DENTRY_D_U_D_ALIAS
225 #define d_alias                 d_u.d_alias
226 #endif
227
228 #ifndef DATA_FOR_LLITE_IS_LIST
229 #define ll_d_hlist_node hlist_node
230 #define ll_d_hlist_empty(list) hlist_empty(list)
231 #define ll_d_hlist_entry(ptr, type, name) hlist_entry(ptr.first, type, name)
232 #define ll_d_hlist_for_each(tmp, i_dentry) hlist_for_each(tmp, i_dentry)
233 # ifdef HAVE_HLIST_FOR_EACH_3ARG
234 # define ll_d_hlist_for_each_entry(dentry, p, i_dentry) \
235         p = NULL; hlist_for_each_entry(dentry, i_dentry, d_alias)
236 # else
237 # define ll_d_hlist_for_each_entry(dentry, p, i_dentry) \
238         hlist_for_each_entry(dentry, p, i_dentry, d_alias)
239 # endif
240 #define DECLARE_LL_D_HLIST_NODE_PTR(name) struct ll_d_hlist_node *name
241 #else
242 #define ll_d_hlist_node list_head
243 #define ll_d_hlist_empty(list) list_empty(list)
244 #define ll_d_hlist_entry(ptr, type, name) list_entry(ptr.next, type, name)
245 #define ll_d_hlist_for_each(tmp, i_dentry) list_for_each(tmp, i_dentry)
246 #define ll_d_hlist_for_each_entry(dentry, p, i_dentry) \
247         list_for_each_entry(dentry, i_dentry, d_alias)
248 #define DECLARE_LL_D_HLIST_NODE_PTR(name) /* nothing */
249 #endif /* !DATA_FOR_LLITE_IS_LIST */
250
251 #ifndef QUOTA_OK
252 # define QUOTA_OK 0
253 #endif
254 #ifndef NO_QUOTA
255 # define NO_QUOTA (-EDQUOT)
256 #endif
257
258 #ifndef SEEK_DATA
259 #define SEEK_DATA      3       /* seek to the next data */
260 #endif
261 #ifndef SEEK_HOLE
262 #define SEEK_HOLE      4       /* seek to the next hole */
263 #endif
264
265 #ifndef FMODE_UNSIGNED_OFFSET
266 #define FMODE_UNSIGNED_OFFSET   ((__force fmode_t)0x2000)
267 #endif
268
269 #if !defined(_ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_) && !defined(ext2_set_bit)
270 # define ext2_set_bit             __test_and_set_bit_le
271 # define ext2_clear_bit           __test_and_clear_bit_le
272 # define ext2_test_bit            test_bit_le
273 # define ext2_find_first_zero_bit find_first_zero_bit_le
274 # define ext2_find_next_zero_bit  find_next_zero_bit_le
275 #endif
276
277 #ifdef ATTR_TIMES_SET
278 # define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)
279 #else
280 # define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET)
281 #endif
282
283 #ifndef HAVE_LM_XXX_LOCK_MANAGER_OPS
284 # define lm_compare_owner       fl_compare_owner
285 #endif
286
287 /*
288  * After 3.1, kernel's nameidata.intent.open.flags is different
289  * with lustre's lookup_intent.it_flags, as lustre's it_flags'
290  * lower bits equal to FMODE_xxx while kernel doesn't transliterate
291  * lower bits of nameidata.intent.open.flags to FMODE_xxx.
292  * */
293 #include <linux/version.h>
294 static inline int ll_namei_to_lookup_intent_flag(int flag)
295 {
296 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 1, 0)
297         flag = (flag & ~O_ACCMODE) | OPEN_FMODE(flag);
298 #endif
299         return flag;
300 }
301
302 #ifdef HAVE_QC_MAKE_REQUEST_FN
303 # define ll_mrf_ret blk_qc_t
304 # define LL_MRF_RETURN(rc) RETURN(BLK_QC_T_NONE)
305 #else
306 # ifdef HAVE_VOID_MAKE_REQUEST_FN
307 #  define ll_mrf_ret void
308 #  define LL_MRF_RETURN(rc)
309 # else
310 #  define ll_mrf_ret int
311 #  define LL_MRF_RETURN(rc) RETURN(rc)
312 # endif
313 #endif
314
315 #include <linux/fs.h>
316 #ifndef HAVE_PROTECT_I_NLINK
317 static inline void set_nlink(struct inode *inode, unsigned int nlink)
318 {
319         inode->i_nlink = nlink;
320 }
321 #endif
322
323 #ifdef HAVE_INODEOPS_USE_UMODE_T
324 # define ll_umode_t     umode_t
325 #else
326 # define ll_umode_t     int
327 #endif
328
329 #include <linux/dcache.h>
330 #ifndef HAVE_D_MAKE_ROOT
331 static inline struct dentry *d_make_root(struct inode *root)
332 {
333         struct dentry *res = d_alloc_root(root);
334
335         if (res == NULL && root)
336                 iput(root);
337
338         return res;
339 }
340 #endif
341
342 #ifdef HAVE_DIRTY_INODE_HAS_FLAG
343 # define ll_dirty_inode(inode, flag)    (inode)->i_sb->s_op->dirty_inode((inode), flag)
344 #else
345 # define ll_dirty_inode(inode, flag)    (inode)->i_sb->s_op->dirty_inode((inode))
346 #endif
347
348 #ifdef HAVE_FILE_F_INODE
349 # define set_file_inode(file, inode)    (file)->f_inode = inode
350 #else
351 # define set_file_inode(file, inode)
352 #endif
353
354 #ifdef HAVE_OLDSIZE_TRUNCATE_PAGECACHE
355 #define ll_truncate_pagecache(inode, size) truncate_pagecache(inode, 0, size)
356 #else
357 #define ll_truncate_pagecache(inode, size) truncate_pagecache(inode, size)
358 #endif
359
360 #ifdef HAVE_VFS_RENAME_5ARGS
361 #define ll_vfs_rename(a, b, c, d) vfs_rename(a, b, c, d, NULL)
362 #elif defined HAVE_VFS_RENAME_6ARGS
363 #define ll_vfs_rename(a, b, c, d) vfs_rename(a, b, c, d, NULL, 0)
364 #else
365 #define ll_vfs_rename(a, b, c, d) vfs_rename(a, b, c, d)
366 #endif
367
368 #ifdef HAVE_VFS_UNLINK_3ARGS
369 #define ll_vfs_unlink(a, b) vfs_unlink(a, b, NULL)
370 #else
371 #define ll_vfs_unlink(a, b) vfs_unlink(a, b)
372 #endif
373
374 #ifndef HAVE_RADIX_EXCEPTION_ENTRY
375 static inline int radix_tree_exceptional_entry(void *arg)
376 {
377         return 0;
378 }
379 #endif
380
381 #ifndef HAVE_TRUNCATE_INODE_PAGES_FINAL
382 static inline void truncate_inode_pages_final(struct address_space *map)
383 {
384         truncate_inode_pages(map, 0);
385                 /* Workaround for LU-118 */
386         if (map->nrpages) {
387                 spin_lock_irq(&map->tree_lock);
388                 spin_unlock_irq(&map->tree_lock);
389         }       /* Workaround end */
390 }
391 #endif
392
393 #ifndef SIZE_MAX
394 #define SIZE_MAX        (~(size_t)0)
395 #endif
396
397 #ifdef HAVE_SECURITY_IINITSEC_CALLBACK
398 # define ll_security_inode_init_security(inode, dir, name, value, len, \
399                                          initxattrs, dentry)           \
400          security_inode_init_security(inode, dir, &((dentry)->d_name), \
401                                       initxattrs, dentry)
402 #elif defined HAVE_SECURITY_IINITSEC_QSTR
403 # define ll_security_inode_init_security(inode, dir, name, value, len, \
404                                          initxattrs, dentry)           \
405          security_inode_init_security(inode, dir, &((dentry)->d_name), \
406                                       name, value, len)
407 #else /* !HAVE_SECURITY_IINITSEC_CALLBACK && !HAVE_SECURITY_IINITSEC_QSTR */
408 # define ll_security_inode_init_security(inode, dir, name, value, len, \
409                                          initxattrs, dentry)           \
410          security_inode_init_security(inode, dir, name, value, len)
411 #endif
412
413 #ifndef bio_for_each_segment_all /* since kernel version 3.9 */
414 #ifdef HAVE_BVEC_ITER
415 #define bio_for_each_segment_all(bv, bio, it) \
416         for (it = 0, bv = (bio)->bi_io_vec; it < (bio)->bi_vcnt; it++, bv++)
417 #else
418 #define bio_for_each_segment_all(bv, bio, it) bio_for_each_segment(bv, bio, it)
419 #endif
420 #endif
421
422 #endif /* _LUSTRE_COMPAT_H */