Whamcloud - gitweb
LU-13581 build: xarray and lockdep_is_held const clash
[fs/lustre-release.git] / lustre / include / lustre_compat.h
index 3ebef7a..5defcfd 100644 (file)
@@ -35,7 +35,6 @@
 
 #include <linux/aio.h>
 #include <linux/fs.h>
-#include <linux/fs_struct.h>
 #include <linux/namei.h>
 #include <linux/pagemap.h>
 #include <linux/posix_acl_xattr.h>
@@ -48,9 +47,6 @@
 #include <libcfs/linux/linux-fs.h>
 #include <obd_support.h>
 
-#define current_ngroups current_cred()->group_info->ngroups
-#define current_groups current_cred()->group_info->small_block
-
 #ifdef HAVE_4ARGS_VFS_SYMLINK
 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
                 vfs_symlink(dir, dentry, path, mode)
                        vfs_symlink(dir, dentry, path)
 #endif
 
-#if !defined(HAVE_FILE_LLSEEK_SIZE) || defined(HAVE_FILE_LLSEEK_SIZE_5ARGS)
-#define ll_generic_file_llseek_size(file, offset, origin, maxbytes, eof) \
-               generic_file_llseek_size(file, offset, origin, maxbytes, eof);
-#else
-#define ll_generic_file_llseek_size(file, offset, origin, maxbytes, eof) \
-               generic_file_llseek_size(file, offset, origin, maxbytes);
-#endif
-
-#ifdef HAVE_INODE_DIO_WAIT
-/* inode_dio_wait(i) use as-is for write lock */
-# define inode_dio_write_done(i)       do {} while (0) /* for write unlock */
-#else
-# define inode_dio_wait(i)             down_write(&(i)->i_alloc_sem)
-# define inode_dio_write_done(i)       up_write(&(i)->i_alloc_sem)
-#endif
-
-#ifndef HAVE_INIT_LIST_HEAD_RCU
-static inline void INIT_LIST_HEAD_RCU(struct list_head *list)
-{
-       WRITE_ONCE(list->next, list);
-       WRITE_ONCE(list->prev, list);
-}
-#endif
-
 #ifdef HAVE_BVEC_ITER
 #define bio_idx(bio)                   (bio->bi_iter.bi_idx)
 #define bio_set_sector(bio, sector)    (bio->bi_iter.bi_sector = sector)
@@ -91,9 +63,6 @@ static inline void INIT_LIST_HEAD_RCU(struct list_head *list)
 #define bio_idx(bio)                   (bio->bi_idx)
 #define bio_set_sector(bio, sector)    (bio->bi_sector = sector)
 #define bio_sectors(bio)               ((bio)->bi_size >> 9)
-#ifndef HAVE_BIO_END_SECTOR
-#define bio_end_sector(bio)            (bio->bi_sector + bio_sectors(bio))
-#endif
 #define bvl_to_page(bvl)               (bvl->bv_page)
 #endif
 
@@ -103,18 +72,6 @@ static inline void INIT_LIST_HEAD_RCU(struct list_head *list)
 #define bio_start_sector(bio) (bio->bi_sector)
 #endif
 
-#ifdef HAVE_KMAP_ATOMIC_HAS_1ARG
-#define ll_kmap_atomic(a, b)   kmap_atomic(a)
-#define ll_kunmap_atomic(a, b) kunmap_atomic(a)
-#else
-#define ll_kmap_atomic(a, b)   kmap_atomic(a, b)
-#define ll_kunmap_atomic(a, b) kunmap_atomic(a, b)
-#endif
-
-#ifndef HAVE_CLEAR_INODE
-#define clear_inode(i)         end_writeback(i)
-#endif
-
 #ifndef HAVE_DENTRY_D_CHILD
 #define d_child                        d_u.d_child
 #endif
@@ -123,29 +80,6 @@ static inline void INIT_LIST_HEAD_RCU(struct list_head *list)
 #define d_alias                        d_u.d_alias
 #endif
 
-#ifndef DATA_FOR_LLITE_IS_LIST
-#define ll_d_hlist_node hlist_node
-#define ll_d_hlist_empty(list) hlist_empty(list)
-#define ll_d_hlist_entry(ptr, type, name) hlist_entry(ptr.first, type, name)
-#define ll_d_hlist_for_each(tmp, i_dentry) hlist_for_each(tmp, i_dentry)
-# ifdef HAVE_HLIST_FOR_EACH_3ARG
-# define ll_d_hlist_for_each_entry(dentry, p, i_dentry) \
-       p = NULL; hlist_for_each_entry(dentry, i_dentry, d_alias)
-# else
-# define ll_d_hlist_for_each_entry(dentry, p, i_dentry) \
-       hlist_for_each_entry(dentry, p, i_dentry, d_alias)
-# endif
-#define DECLARE_LL_D_HLIST_NODE_PTR(name) struct ll_d_hlist_node *name
-#else
-#define ll_d_hlist_node list_head
-#define ll_d_hlist_empty(list) list_empty(list)
-#define ll_d_hlist_entry(ptr, type, name) list_entry(ptr.next, type, name)
-#define ll_d_hlist_for_each(tmp, i_dentry) list_for_each(tmp, i_dentry)
-#define ll_d_hlist_for_each_entry(dentry, p, i_dentry) \
-       list_for_each_entry(dentry, i_dentry, d_alias)
-#define DECLARE_LL_D_HLIST_NODE_PTR(name) /* nothing */
-#endif /* !DATA_FOR_LLITE_IS_LIST */
-
 #ifndef HAVE_D_IN_LOOKUP
 static inline int d_in_lookup(struct dentry *dentry)
 {
@@ -153,119 +87,14 @@ static inline int d_in_lookup(struct dentry *dentry)
 }
 #endif
 
-#ifndef QUOTA_OK
-# define QUOTA_OK 0
-#endif
-#ifndef NO_QUOTA
-# define NO_QUOTA (-EDQUOT)
-#endif
-
-#ifndef SEEK_DATA
-#define SEEK_DATA      3       /* seek to the next data */
-#endif
-#ifndef SEEK_HOLE
-#define SEEK_HOLE      4       /* seek to the next hole */
-#endif
-
-#ifndef FMODE_UNSIGNED_OFFSET
-#define FMODE_UNSIGNED_OFFSET  ((__force fmode_t)0x2000)
-#endif
-
-#if !defined(_ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_) && !defined(ext2_set_bit)
-# define ext2_set_bit             __test_and_set_bit_le
-# define ext2_clear_bit           __test_and_clear_bit_le
-# define ext2_test_bit            test_bit_le
-# define ext2_find_first_zero_bit find_first_zero_bit_le
-# define ext2_find_next_zero_bit  find_next_zero_bit_le
-#endif
-
-#ifdef ATTR_TIMES_SET
-# define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)
-#else
-# define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET)
-#endif
-
-#ifndef XATTR_NAME_POSIX_ACL_ACCESS
-# define XATTR_NAME_POSIX_ACL_ACCESS POSIX_ACL_XATTR_ACCESS
-#endif
-
-#ifndef XATTR_NAME_POSIX_ACL_DEFAULT
-# define XATTR_NAME_POSIX_ACL_DEFAULT POSIX_ACL_XATTR_DEFAULT
-#endif
-
-#ifndef HAVE_LM_XXX_LOCK_MANAGER_OPS
-# define lm_compare_owner      fl_compare_owner
-#endif
-
-/*
- * After 3.1, kernel's nameidata.intent.open.flags is different
- * with lustre's lookup_intent.it_flags, as lustre's it_flags'
- * lower bits equal to FMODE_xxx while kernel doesn't transliterate
- * lower bits of nameidata.intent.open.flags to FMODE_xxx.
- * */
-#include <linux/version.h>
-static inline int ll_namei_to_lookup_intent_flag(int flag)
-{
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 1, 0)
-       flag = (flag & ~O_ACCMODE) | OPEN_FMODE(flag);
-#endif
-       return flag;
-}
-
-#include <linux/fs.h>
-#ifndef HAVE_PROTECT_I_NLINK
-static inline void set_nlink(struct inode *inode, unsigned int nlink)
-{
-       inode->i_nlink = nlink;
-}
-#endif
-
-#ifdef HAVE_INODEOPS_USE_UMODE_T
-# define ll_umode_t    umode_t
-#else
-# define ll_umode_t    int
-#endif
-
 #ifndef HAVE_VM_FAULT_T
 #define vm_fault_t int
 #endif
 
-#include <linux/dcache.h>
-#ifndef HAVE_D_MAKE_ROOT
-static inline struct dentry *d_make_root(struct inode *root)
-{
-       struct dentry *res = d_alloc_root(root);
-
-       if (res == NULL && root)
-               iput(root);
-
-       return res;
-}
-#endif
-
 #ifndef HAVE_FOP_ITERATE_SHARED
 #define iterate_shared iterate
 #endif
 
-#ifdef HAVE_DIRTY_INODE_HAS_FLAG
-# define ll_dirty_inode(inode, flag)   (inode)->i_sb->s_op->dirty_inode((inode), flag)
-#else
-# define ll_dirty_inode(inode, flag)   (inode)->i_sb->s_op->dirty_inode((inode))
-#endif
-
-#ifdef HAVE_FILE_F_INODE
-# define set_file_inode(file, inode)   (file)->f_inode = inode
-#else
-# define set_file_inode(file, inode)
-#endif
-
-#ifndef HAVE_FILE_INODE
-static inline struct inode *file_inode(const struct file *file)
-{
-       return file->f_path.dentry->d_inode;
-}
-#endif
-
 #ifdef HAVE_OLDSIZE_TRUNCATE_PAGECACHE
 #define ll_truncate_pagecache(inode, size) truncate_pagecache(inode, 0, size)
 #else
@@ -286,20 +115,15 @@ static inline struct inode *file_inode(const struct file *file)
 #define ll_vfs_unlink(a, b) vfs_unlink(a, b)
 #endif
 
-#ifndef HAVE_INODE_OWNER_OR_CAPABLE
-#define inode_owner_or_capable(inode) is_owner_or_cap(inode)
-#endif
-
-static inline int ll_vfs_getattr(struct path *path, struct kstat *st)
+static inline int ll_vfs_getattr(struct path *path, struct kstat *st,
+                                u32 request_mask, unsigned int flags)
 {
        int rc;
 
 #ifdef HAVE_INODEOPS_ENHANCED_GETATTR
-       rc = vfs_getattr(path, st, STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
-#elif defined HAVE_VFS_GETATTR_2ARGS
-       rc = vfs_getattr(path, st);
+       rc = vfs_getattr(path, st, request_mask, flags);
 #else
-       rc = vfs_getattr(path->mnt, path->dentry, st);
+       rc = vfs_getattr(path, st);
 #endif
        return rc;
 }
@@ -311,30 +135,25 @@ static inline bool d_is_positive(const struct dentry *dentry)
 }
 #endif
 
-#ifdef HAVE_VFS_CREATE_USE_NAMEIDATA
-# define LL_VFS_CREATE_FALSE NULL
-#else
-# define LL_VFS_CREATE_FALSE false
-#endif
-
 #ifndef HAVE_INODE_LOCK
 # define inode_lock(inode) mutex_lock(&(inode)->i_mutex)
 # define inode_unlock(inode) mutex_unlock(&(inode)->i_mutex)
 # define inode_trylock(inode) mutex_trylock(&(inode)->i_mutex)
 #endif
 
-#ifndef HAVE_RADIX_EXCEPTION_ENTRY
-static inline int radix_tree_exceptional_entry(void *arg)
-{
-       return 0;
-}
-#endif
-
-#ifndef HAVE_XA_IS_VALUE
-static inline bool xa_is_value(void *entry)
+/* Old kernels lacked both Xarray support and the page cache
+ * using Xarrays. Our back ported Xarray support introduces
+ * the real xa_is_value() but we need a wrapper as well for
+ * the page cache interaction. Lets keep xa_is_value() separate
+ * in old kernels for Xarray support and page cache handling.
+ */
+#ifndef HAVE_XARRAY_SUPPORT
+static inline bool ll_xa_is_value(void *entry)
 {
        return radix_tree_exceptional_entry(entry);
 }
+#else
+#define ll_xa_is_value xa_is_value
 #endif
 
 #ifndef HAVE_TRUNCATE_INODE_PAGES_FINAL
@@ -354,35 +173,6 @@ static inline int __must_check PTR_ERR_OR_ZERO(__force const void *ptr)
 }
 #endif
 
-#ifndef SIZE_MAX
-#define SIZE_MAX       (~(size_t)0)
-#endif
-
-#ifdef HAVE_SECURITY_IINITSEC_CALLBACK
-# define ll_security_inode_init_security(inode, dir, name, value, len, \
-                                        initxattrs, dentry)           \
-        security_inode_init_security(inode, dir, &((dentry)->d_name), \
-                                     initxattrs, dentry)
-#elif defined HAVE_SECURITY_IINITSEC_QSTR
-# define ll_security_inode_init_security(inode, dir, name, value, len, \
-                                        initxattrs, dentry)           \
-        security_inode_init_security(inode, dir, &((dentry)->d_name), \
-                                     name, value, len)
-#else /* !HAVE_SECURITY_IINITSEC_CALLBACK && !HAVE_SECURITY_IINITSEC_QSTR */
-# define ll_security_inode_init_security(inode, dir, name, value, len, \
-                                        initxattrs, dentry)           \
-        security_inode_init_security(inode, dir, name, value, len)
-#endif
-
-#ifndef bio_for_each_segment_all /* since kernel version 3.9 */
-#ifdef HAVE_BVEC_ITER
-#define bio_for_each_segment_all(bv, bio, it) \
-       for (it = 0, bv = (bio)->bi_io_vec; it < (bio)->bi_vcnt; it++, bv++)
-#else
-#define bio_for_each_segment_all(bv, bio, it) bio_for_each_segment(bv, bio, it)
-#endif
-#endif
-
 #ifdef HAVE_PID_NS_FOR_CHILDREN
 # define ll_task_pid_ns(task) \
         ((task)->nsproxy ? ((task)->nsproxy->pid_ns_for_children) : NULL)
@@ -411,41 +201,6 @@ static inline int __must_check PTR_ERR_OR_ZERO(__force const void *ptr)
 #define ll_removexattr  generic_removexattr
 #endif /* HAVE_IOP_XATTR */
 
-#ifndef HAVE_VFS_SETXATTR
-const struct xattr_handler *get_xattr_type(const char *name);
-
-static inline int
-__vfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
-              const void *value, size_t size, int flags)
-{
-       const struct xattr_handler *handler;
-       int rc;
-
-       handler = get_xattr_type(name);
-       if (!handler)
-               return -EOPNOTSUPP;
-
-#  if defined(HAVE_XATTR_HANDLER_INODE_PARAM)
-       rc = handler->set(handler, dentry, inode, name, value, size, flags);
-#  elif defined(HAVE_XATTR_HANDLER_SIMPLIFIED)
-       rc = handler->set(handler, dentry, name, value, size, flags);
-#  else
-       rc = handler->set(dentry, name, value, size, flags, handler->flags);
-#  endif /* !HAVE_XATTR_HANDLER_INODE_PARAM */
-       return rc;
-}
-#endif /* HAVE_VFS_SETXATTR */
-
-#ifndef HAVE_POSIXACL_USER_NS
-/*
- * Mask out &init_user_ns so we don't jump
- * through hoops to define it somehow only
- * to have it ignored anyway.
- */
-#define posix_acl_from_xattr(a, b, c)  posix_acl_from_xattr(b, c)
-#define posix_acl_to_xattr(a, b, c, d) posix_acl_to_xattr(b, c, d)
-#endif
-
 #ifndef HAVE_POSIX_ACL_VALID_USER_NS
 #define posix_acl_valid(a,b)           posix_acl_valid(b)
 #endif
@@ -482,17 +237,6 @@ static inline void iov_iter_truncate(struct iov_iter *i, u64 count)
 }
 #endif
 
-#ifndef HAVE_IS_SXID
-static inline bool is_sxid(umode_t mode)
-{
-       return (mode & S_ISUID) || ((mode & S_ISGID) && (mode & S_IXGRP));
-}
-#endif
-
-#ifndef IS_NOSEC
-#define IS_NOSEC(inode)        (!is_sxid(inode->i_mode))
-#endif
-
 /*
  * mount MS_* flags split from superblock SB_* flags
  * if the SB_* flags are not available use the MS_* flags
@@ -575,7 +319,7 @@ __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *iter)
                struct iovec *iov_copy;
                int count = 0;
 
-               OBD_ALLOC(iov_copy, sizeof(*iov_copy) * iter->nr_segs);
+               OBD_ALLOC_PTR_ARRAY(iov_copy, iter->nr_segs);
                if (!iov_copy)
                        return -ENOMEM;
 
@@ -584,7 +328,7 @@ __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *iter)
 
                bytes = __generic_file_aio_write(iocb, iov_copy, count,
                                                 &iocb->ki_pos);
-               OBD_FREE(iov_copy, sizeof(*iov_copy) * iter->nr_segs);
+               OBD_FREE_PTR_ARRAY(iov_copy, iter->nr_segs);
 
                if (bytes > 0)
                        iov_iter_advance(iter, bytes);
@@ -640,6 +384,8 @@ static inline struct timespec current_time(struct inode *inode)
  * @a: the time which may be after @b
  * @b: the time which may be before @a
  *
+ * Needed for kernels earlier than v4.14-rc1~134^2
+ *
  * time_after32(a, b) returns true if the time @a is after time @b.
  * time_before32(b, a) returns true if the time @b is before time @a.
  *
@@ -653,22 +399,10 @@ static inline struct timespec current_time(struct inode *inode)
 
 #endif
 
-#ifndef __GFP_COLD
-#define __GFP_COLD 0
-#endif
-
-#ifndef alloc_workqueue
-#define alloc_workqueue(name, flags, max_active) create_workqueue(name)
-#endif
-
 #ifndef smp_store_mb
 #define smp_store_mb(var, value)       set_mb(var, value)
 #endif
 
-#ifndef READ_ONCE
-#define READ_ONCE ACCESS_ONCE
-#endif
-
 #if IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY)
 static inline unsigned short blk_integrity_interval(struct blk_integrity *bi)
 {
@@ -766,13 +500,12 @@ static inline bool bdev_integrity_enabled(struct block_device *bdev, int rw)
 
 #ifdef HAVE_I_PAGES
 #define page_tree i_pages
+#define ll_xa_lock_irqsave(lockp, flags) xa_lock_irqsave(lockp, flags)
+#define ll_xa_unlock_irqrestore(lockp, flags) xa_unlock_irqrestore(lockp, flags)
 #else
 #define i_pages tree_lock
-#endif
-
-#ifndef xa_lock_irqsave
-#define xa_lock_irqsave(lockp, flags) spin_lock_irqsave(lockp, flags)
-#define xa_unlock_irqrestore(lockp, flags) spin_unlock_irqrestore(lockp, flags)
+#define ll_xa_lock_irqsave(lockp, flags) spin_lock_irqsave(lockp, flags)
+#define ll_xa_unlock_irqrestore(lockp, flags) spin_unlock_irqrestore(lockp, flags)
 #endif
 
 #ifndef HAVE_LOCK_PAGE_MEMCG
@@ -790,4 +523,45 @@ static inline bool bdev_integrity_enabled(struct block_device *bdev, int rw)
 #define selinux_is_enabled() 1
 #endif
 
+static inline int ll_vfs_getxattr(struct dentry *dentry, struct inode *inode,
+                                 const char *name,
+                                 void *value, size_t size)
+{
+#ifndef HAVE_VFS_SETXATTR
+       if (unlikely(!inode->i_op->getxattr))
+               return -ENODATA;
+
+       return inode->i_op->getxattr(dentry, name, value, size);
+#else
+       return __vfs_getxattr(dentry, inode, name, value, size);
+#endif
+}
+
+static inline int ll_vfs_setxattr(struct dentry *dentry, struct inode *inode,
+                                 const char *name,
+                                 const void *value, size_t size, int flags)
+{
+#ifndef HAVE_VFS_SETXATTR
+       if (unlikely(!inode->i_op->setxattr))
+               return -EOPNOTSUPP;
+
+       return inode->i_op->setxattr(dentry, name, value, size, flags);
+#else
+       return __vfs_setxattr(dentry, inode, name, value, size, flags);
+#endif
+}
+
+static inline int ll_vfs_removexattr(struct dentry *dentry, struct inode *inode,
+                                    const char *name)
+{
+#ifndef HAVE_VFS_SETXATTR
+       if (unlikely(!inode->i_op->setxattr))
+               return -EOPNOTSUPP;
+
+       return inode->i_op->removexattr(dentry, name);
+#else
+       return __vfs_removexattr(dentry, name);
+#endif
+}
+
 #endif /* _LUSTRE_COMPAT_H */