1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Landlock LSM - Filesystem management and hooks
5 * Copyright © 2017-2020 Mickaël Salaün <mic@digikod.net>
6 * Copyright © 2018-2020 ANSSI
9 #ifndef _SECURITY_LANDLOCK_FS_H
10 #define _SECURITY_LANDLOCK_FS_H
13 #include <linux/init.h>
14 #include <linux/rcupdate.h>
20 * struct landlock_inode_security - Inode security blob
22 * Enable to reference a &struct landlock_object tied to an inode (i.e.
25 struct landlock_inode_security {
27 * @object: Weak pointer to an allocated object. All assignments of a
28 * new object are protected by the underlying inode->i_lock. However,
29 * atomically disassociating @object from the inode is only protected
30 * by @object->lock, from the time @object's usage refcount drops to
31 * zero to the time this pointer is nulled out (cf. release_inode() and
32 * hook_sb_delete()). Indeed, such disassociation doesn't require
33 * inode->i_lock thanks to the careful rcu_access_pointer() check
34 * performed by get_inode_object().
36 struct landlock_object __rcu *object;
40 * struct landlock_superblock_security - Superblock security blob
42 * Enable hook_sb_delete() to wait for concurrent calls to release_inode().
44 struct landlock_superblock_security {
46 * @inode_refs: Number of pending inodes (from this superblock) that
47 * are being released by release_inode().
48 * Cf. struct super_block->s_fsnotify_inode_refs .
50 atomic_long_t inode_refs;
53 static inline struct landlock_inode_security *landlock_inode(
54 const struct inode *const inode)
56 return inode->i_security + landlock_blob_sizes.lbs_inode;
59 static inline struct landlock_superblock_security *landlock_superblock(
60 const struct super_block *const superblock)
62 return superblock->s_security + landlock_blob_sizes.lbs_superblock;
65 __init void landlock_add_fs_hooks(void);
67 int landlock_append_fs_rule(struct landlock_ruleset *const ruleset,
68 const struct path *const path, u32 access_hierarchy);
70 #endif /* _SECURITY_LANDLOCK_FS_H */