2014-04-30 06:42:09 +04:00
|
|
|
dnl #
|
|
|
|
dnl # 2.6.39 API change,
|
|
|
|
dnl # The is_owner_or_cap() macro was renamed to inode_owner_or_capable(),
|
|
|
|
dnl # This is used for permission checks in the xattr and file attribute call
|
|
|
|
dnl # paths.
|
|
|
|
dnl #
|
2019-10-01 22:50:34 +03:00
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_SRC_INODE_OWNER_OR_CAPABLE], [
|
|
|
|
ZFS_LINUX_TEST_SRC([inode_owner_or_capable], [
|
2014-04-30 06:42:09 +04:00
|
|
|
#include <linux/fs.h>
|
|
|
|
],[
|
|
|
|
struct inode *ip = NULL;
|
|
|
|
(void) inode_owner_or_capable(ip);
|
2019-10-01 22:50:34 +03:00
|
|
|
])
|
2021-03-20 07:00:59 +03:00
|
|
|
|
|
|
|
ZFS_LINUX_TEST_SRC([inode_owner_or_capable_idmapped], [
|
|
|
|
#include <linux/fs.h>
|
|
|
|
],[
|
|
|
|
struct inode *ip = NULL;
|
|
|
|
(void) inode_owner_or_capable(&init_user_ns, ip);
|
|
|
|
])
|
2019-10-01 22:50:34 +03:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_INODE_OWNER_OR_CAPABLE], [
|
|
|
|
AC_MSG_CHECKING([whether inode_owner_or_capable() exists])
|
|
|
|
ZFS_LINUX_TEST_RESULT([inode_owner_or_capable], [
|
2014-04-30 06:42:09 +04:00
|
|
|
AC_MSG_RESULT(yes)
|
2021-03-20 07:00:59 +03:00
|
|
|
AC_DEFINE(HAVE_INODE_OWNER_OR_CAPABLE, 1,
|
|
|
|
[inode_owner_or_capable() exists])
|
|
|
|
], [
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(
|
|
|
|
[whether inode_owner_or_capable() takes user_ns])
|
|
|
|
ZFS_LINUX_TEST_RESULT([inode_owner_or_capable_idmapped], [
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_INODE_OWNER_OR_CAPABLE_IDMAPPED, 1,
|
|
|
|
[inode_owner_or_capable() takes user_ns])
|
|
|
|
],[
|
|
|
|
ZFS_LINUX_TEST_ERROR([capability])
|
|
|
|
])
|
2014-04-30 06:42:09 +04:00
|
|
|
])
|
|
|
|
])
|