2 dnl # Check if posix_acl_release can be used from a ZFS_META_LICENSED
3 dnl # module. The is_owner_or_cap macro was replaced by
4 dnl # inode_owner_or_capable
6 AC_DEFUN([ZFS_AC_KERNEL_SRC_POSIX_ACL_RELEASE], [
7 ZFS_LINUX_TEST_SRC([posix_acl_release], [
8 #include <linux/cred.h>
10 #include <linux/posix_acl.h>
12 struct posix_acl *tmp = posix_acl_alloc(1, 0);
13 posix_acl_release(tmp);
14 ], [], [ZFS_META_LICENSE])
17 AC_DEFUN([ZFS_AC_KERNEL_POSIX_ACL_RELEASE], [
18 AC_MSG_CHECKING([whether posix_acl_release() is available])
19 ZFS_LINUX_TEST_RESULT([posix_acl_release], [
21 AC_DEFINE(HAVE_POSIX_ACL_RELEASE, 1,
22 [posix_acl_release() is available])
24 AC_MSG_CHECKING([whether posix_acl_release() is GPL-only])
25 ZFS_LINUX_TEST_RESULT([posix_acl_release_license], [
29 AC_DEFINE(HAVE_POSIX_ACL_RELEASE_GPL_ONLY, 1,
30 [posix_acl_release() is GPL-only])
38 dnl # 3.14 API change,
39 dnl # set_cached_acl() and forget_cached_acl() changed from inline to
40 dnl # EXPORT_SYMBOL. In the former case, they may not be usable because of
41 dnl # posix_acl_release. In the latter case, we can always use them.
43 AC_DEFUN([ZFS_AC_KERNEL_SRC_SET_CACHED_ACL_USABLE], [
44 ZFS_LINUX_TEST_SRC([set_cached_acl], [
45 #include <linux/cred.h>
47 #include <linux/posix_acl.h>
49 struct inode *ip = NULL;
50 struct posix_acl *acl = posix_acl_alloc(1, 0);
51 set_cached_acl(ip, ACL_TYPE_ACCESS, acl);
52 forget_cached_acl(ip, ACL_TYPE_ACCESS);
53 ], [], [ZFS_META_LICENSE])
56 AC_DEFUN([ZFS_AC_KERNEL_SET_CACHED_ACL_USABLE], [
57 AC_MSG_CHECKING([whether set_cached_acl() is usable])
58 ZFS_LINUX_TEST_RESULT([set_cached_acl_license], [
60 AC_DEFINE(HAVE_SET_CACHED_ACL_USABLE, 1,
61 [set_cached_acl() is usable])
69 dnl # posix_acl_chmod() was added as the preferred interface.
71 dnl # 3.14 API change,
72 dnl # posix_acl_chmod() was changed to __posix_acl_chmod()
74 AC_DEFUN([ZFS_AC_KERNEL_SRC_POSIX_ACL_CHMOD], [
75 ZFS_LINUX_TEST_SRC([posix_acl_chmod], [
77 #include <linux/posix_acl.h>
79 posix_acl_chmod(NULL, 0, 0)
82 ZFS_LINUX_TEST_SRC([__posix_acl_chmod], [
84 #include <linux/posix_acl.h>
86 __posix_acl_chmod(NULL, 0, 0)
90 AC_DEFUN([ZFS_AC_KERNEL_POSIX_ACL_CHMOD], [
91 AC_MSG_CHECKING([whether __posix_acl_chmod exists])
92 ZFS_LINUX_TEST_RESULT([__posix_acl_chmod], [
94 AC_DEFINE(HAVE___POSIX_ACL_CHMOD, 1,
95 [__posix_acl_chmod() exists])
99 AC_MSG_CHECKING([whether posix_acl_chmod exists])
100 ZFS_LINUX_TEST_RESULT([posix_acl_chmod], [
102 AC_DEFINE(HAVE_POSIX_ACL_CHMOD, 1,
103 [posix_acl_chmod() exists])
105 ZFS_LINUX_TEST_ERROR([posix_acl_chmod()])
111 dnl # 3.1 API change,
112 dnl # posix_acl_equiv_mode now wants an umode_t instead of a mode_t
114 AC_DEFUN([ZFS_AC_KERNEL_SRC_POSIX_ACL_EQUIV_MODE_WANTS_UMODE_T], [
115 ZFS_LINUX_TEST_SRC([posix_acl_equiv_mode], [
116 #include <linux/fs.h>
117 #include <linux/posix_acl.h>
120 posix_acl_equiv_mode(NULL, &tmp);
124 AC_DEFUN([ZFS_AC_KERNEL_POSIX_ACL_EQUIV_MODE_WANTS_UMODE_T], [
125 AC_MSG_CHECKING([whether posix_acl_equiv_mode() wants umode_t])
126 ZFS_LINUX_TEST_RESULT([posix_acl_equiv_mode], [
129 ZFS_LINUX_TEST_ERROR([posix_acl_equiv_mode()])
134 dnl # 4.8 API change,
135 dnl # The function posix_acl_valid now must be passed a namespace.
137 AC_DEFUN([ZFS_AC_KERNEL_SRC_POSIX_ACL_VALID_WITH_NS], [
138 ZFS_LINUX_TEST_SRC([posix_acl_valid_with_ns], [
139 #include <linux/fs.h>
140 #include <linux/posix_acl.h>
142 struct user_namespace *user_ns = NULL;
143 const struct posix_acl *acl = NULL;
146 error = posix_acl_valid(user_ns, acl);
150 AC_DEFUN([ZFS_AC_KERNEL_POSIX_ACL_VALID_WITH_NS], [
151 AC_MSG_CHECKING([whether posix_acl_valid() wants user namespace])
152 ZFS_LINUX_TEST_RESULT([posix_acl_valid_with_ns], [
154 AC_DEFINE(HAVE_POSIX_ACL_VALID_WITH_NS, 1,
155 [posix_acl_valid() wants user namespace])
162 dnl # 3.1 API change,
163 dnl # Check if inode_operations contains the function get_acl
165 dnl # 5.15 API change,
166 dnl # Added the bool rcu argument to get_acl for rcu path walk.
168 dnl # 6.2 API change,
169 dnl # get_acl() was renamed to get_inode_acl()
171 AC_DEFUN([ZFS_AC_KERNEL_SRC_INODE_OPERATIONS_GET_ACL], [
172 ZFS_LINUX_TEST_SRC([inode_operations_get_acl], [
173 #include <linux/fs.h>
175 struct posix_acl *get_acl_fn(struct inode *inode, int type)
178 static const struct inode_operations
179 iops __attribute__ ((unused)) = {
180 .get_acl = get_acl_fn,
184 ZFS_LINUX_TEST_SRC([inode_operations_get_acl_rcu], [
185 #include <linux/fs.h>
187 struct posix_acl *get_acl_fn(struct inode *inode, int type,
188 bool rcu) { return NULL; }
190 static const struct inode_operations
191 iops __attribute__ ((unused)) = {
192 .get_acl = get_acl_fn,
196 ZFS_LINUX_TEST_SRC([inode_operations_get_inode_acl], [
197 #include <linux/fs.h>
199 struct posix_acl *get_inode_acl_fn(struct inode *inode, int type,
200 bool rcu) { return NULL; }
202 static const struct inode_operations
203 iops __attribute__ ((unused)) = {
204 .get_inode_acl = get_inode_acl_fn,
209 AC_DEFUN([ZFS_AC_KERNEL_INODE_OPERATIONS_GET_ACL], [
210 AC_MSG_CHECKING([whether iops->get_acl() exists])
211 ZFS_LINUX_TEST_RESULT([inode_operations_get_acl], [
213 AC_DEFINE(HAVE_GET_ACL, 1, [iops->get_acl() exists])
215 ZFS_LINUX_TEST_RESULT([inode_operations_get_acl_rcu], [
217 AC_DEFINE(HAVE_GET_ACL_RCU, 1, [iops->get_acl() takes rcu])
219 ZFS_LINUX_TEST_RESULT([inode_operations_get_inode_acl], [
221 AC_DEFINE(HAVE_GET_INODE_ACL, 1, [has iops->get_inode_acl()])
223 ZFS_LINUX_TEST_ERROR([iops->get_acl() or iops->get_inode_acl()])
230 dnl # 3.14 API change,
231 dnl # Check if inode_operations contains the function set_acl
233 dnl # 5.12 API change,
234 dnl # set_acl() added a user_namespace* parameter first
236 dnl # 6.2 API change,
237 dnl # set_acl() second paramter changed to a struct dentry *
239 dnl # 6.3 API change,
240 dnl # set_acl() first parameter changed to struct mnt_idmap *
242 AC_DEFUN([ZFS_AC_KERNEL_SRC_INODE_OPERATIONS_SET_ACL], [
243 ZFS_LINUX_TEST_SRC([inode_operations_set_acl_mnt_idmap_dentry], [
244 #include <linux/fs.h>
246 int set_acl_fn(struct mnt_idmap *idmap,
247 struct dentry *dent, struct posix_acl *acl,
248 int type) { return 0; }
250 static const struct inode_operations
251 iops __attribute__ ((unused)) = {
252 .set_acl = set_acl_fn,
255 ZFS_LINUX_TEST_SRC([inode_operations_set_acl_userns_dentry], [
256 #include <linux/fs.h>
258 int set_acl_fn(struct user_namespace *userns,
259 struct dentry *dent, struct posix_acl *acl,
260 int type) { return 0; }
262 static const struct inode_operations
263 iops __attribute__ ((unused)) = {
264 .set_acl = set_acl_fn,
267 ZFS_LINUX_TEST_SRC([inode_operations_set_acl_userns], [
268 #include <linux/fs.h>
270 int set_acl_fn(struct user_namespace *userns,
271 struct inode *inode, struct posix_acl *acl,
272 int type) { return 0; }
274 static const struct inode_operations
275 iops __attribute__ ((unused)) = {
276 .set_acl = set_acl_fn,
279 ZFS_LINUX_TEST_SRC([inode_operations_set_acl], [
280 #include <linux/fs.h>
282 int set_acl_fn(struct inode *inode, struct posix_acl *acl,
283 int type) { return 0; }
285 static const struct inode_operations
286 iops __attribute__ ((unused)) = {
287 .set_acl = set_acl_fn,
292 AC_DEFUN([ZFS_AC_KERNEL_INODE_OPERATIONS_SET_ACL], [
293 AC_MSG_CHECKING([whether iops->set_acl() exists])
294 ZFS_LINUX_TEST_RESULT([inode_operations_set_acl_userns], [
296 AC_DEFINE(HAVE_SET_ACL, 1, [iops->set_acl() exists])
297 AC_DEFINE(HAVE_SET_ACL_USERNS, 1, [iops->set_acl() takes 4 args])
299 ZFS_LINUX_TEST_RESULT([inode_operations_set_acl_mnt_idmap_dentry], [
301 AC_DEFINE(HAVE_SET_ACL, 1, [iops->set_acl() exists])
302 AC_DEFINE(HAVE_SET_ACL_IDMAP_DENTRY, 1,
303 [iops->set_acl() takes 4 args, arg1 is struct mnt_idmap *])
305 ZFS_LINUX_TEST_RESULT([inode_operations_set_acl_userns_dentry], [
307 AC_DEFINE(HAVE_SET_ACL, 1, [iops->set_acl() exists])
308 AC_DEFINE(HAVE_SET_ACL_USERNS_DENTRY_ARG2, 1,
309 [iops->set_acl() takes 4 args, arg2 is struct dentry *])
311 ZFS_LINUX_TEST_RESULT([inode_operations_set_acl], [
313 AC_DEFINE(HAVE_SET_ACL, 1, [iops->set_acl() exists, takes 3 args])
315 ZFS_LINUX_REQUIRE_API([i_op->set_acl()], [3.14])
323 dnl # 4.7 API change,
324 dnl # The kernel get_acl will now check cache before calling i_op->get_acl and
325 dnl # do set_cached_acl after that, so i_op->get_acl don't need to do that
328 AC_DEFUN([ZFS_AC_KERNEL_SRC_GET_ACL_HANDLE_CACHE], [
329 ZFS_LINUX_TEST_SRC([get_acl_handle_cache], [
330 #include <linux/fs.h>
332 void *sentinel __attribute__ ((unused)) =
333 uncached_acl_sentinel(NULL);
337 AC_DEFUN([ZFS_AC_KERNEL_GET_ACL_HANDLE_CACHE], [
338 AC_MSG_CHECKING([whether uncached_acl_sentinel() exists])
339 ZFS_LINUX_TEST_RESULT([get_acl_handle_cache], [
341 AC_DEFINE(HAVE_KERNEL_GET_ACL_HANDLE_CACHE, 1,
342 [uncached_acl_sentinel() exists])
349 dnl # 4.16 kernel: check if struct posix_acl acl.a_refcount is a refcount_t.
350 dnl # It's an atomic_t on older kernels.
352 AC_DEFUN([ZFS_AC_KERNEL_SRC_ACL_HAS_REFCOUNT], [
353 ZFS_LINUX_TEST_SRC([acl_refcount], [
354 #include <linux/backing-dev.h>
355 #include <linux/refcount.h>
356 #include <linux/posix_acl.h>
358 struct posix_acl acl;
359 refcount_t *r __attribute__ ((unused)) = &acl.a_refcount;
363 AC_DEFUN([ZFS_AC_KERNEL_ACL_HAS_REFCOUNT], [
364 AC_MSG_CHECKING([whether posix_acl has refcount_t])
365 ZFS_LINUX_TEST_RESULT([acl_refcount], [
367 AC_DEFINE(HAVE_ACL_REFCOUNT, 1, [posix_acl has refcount_t])
373 AC_DEFUN([ZFS_AC_KERNEL_SRC_ACL], [
374 ZFS_AC_KERNEL_SRC_POSIX_ACL_RELEASE
375 ZFS_AC_KERNEL_SRC_SET_CACHED_ACL_USABLE
376 ZFS_AC_KERNEL_SRC_POSIX_ACL_CHMOD
377 ZFS_AC_KERNEL_SRC_POSIX_ACL_EQUIV_MODE_WANTS_UMODE_T
378 ZFS_AC_KERNEL_SRC_POSIX_ACL_VALID_WITH_NS
379 ZFS_AC_KERNEL_SRC_INODE_OPERATIONS_GET_ACL
380 ZFS_AC_KERNEL_SRC_INODE_OPERATIONS_SET_ACL
381 ZFS_AC_KERNEL_SRC_GET_ACL_HANDLE_CACHE
382 ZFS_AC_KERNEL_SRC_ACL_HAS_REFCOUNT
385 AC_DEFUN([ZFS_AC_KERNEL_ACL], [
386 ZFS_AC_KERNEL_POSIX_ACL_RELEASE
387 ZFS_AC_KERNEL_SET_CACHED_ACL_USABLE
388 ZFS_AC_KERNEL_POSIX_ACL_CHMOD
389 ZFS_AC_KERNEL_POSIX_ACL_EQUIV_MODE_WANTS_UMODE_T
390 ZFS_AC_KERNEL_POSIX_ACL_VALID_WITH_NS
391 ZFS_AC_KERNEL_INODE_OPERATIONS_GET_ACL
392 ZFS_AC_KERNEL_INODE_OPERATIONS_SET_ACL
393 ZFS_AC_KERNEL_GET_ACL_HANDLE_CACHE
394 ZFS_AC_KERNEL_ACL_HAS_REFCOUNT