1 /* SPDX-License-Identifier: GPL-2.0 */
5 * This stubs out the fscrypt functions for filesystems configured without
8 * Do not include this file directly. Use fscrypt.h instead!
10 #ifndef _LINUX_FSCRYPT_H
11 #error "Incorrect include of linux/fscrypt_notsupp.h!"
14 #ifndef _LINUX_FSCRYPT_NOTSUPP_H
15 #define _LINUX_FSCRYPT_NOTSUPP_H
17 static inline bool fscrypt_has_encryption_key(const struct inode
*inode
)
22 static inline bool fscrypt_dummy_context_enabled(struct inode
*inode
)
28 static inline struct fscrypt_ctx
*fscrypt_get_ctx(const struct inode
*inode
,
31 return ERR_PTR(-EOPNOTSUPP
);
34 static inline void fscrypt_release_ctx(struct fscrypt_ctx
*ctx
)
39 static inline struct page
*fscrypt_encrypt_page(const struct inode
*inode
,
43 u64 lblk_num
, gfp_t gfp_flags
)
45 return ERR_PTR(-EOPNOTSUPP
);
48 static inline int fscrypt_decrypt_page(const struct inode
*inode
,
50 unsigned int len
, unsigned int offs
,
56 static inline struct page
*fscrypt_control_page(struct page
*page
)
59 return ERR_PTR(-EINVAL
);
62 static inline void fscrypt_restore_control_page(struct page
*page
)
67 static inline void fscrypt_set_d_op(struct dentry
*dentry
)
72 static inline void fscrypt_set_encrypted_dentry(struct dentry
*dentry
)
78 static inline int fscrypt_ioctl_set_policy(struct file
*filp
,
79 const void __user
*arg
)
84 static inline int fscrypt_ioctl_get_policy(struct file
*filp
, void __user
*arg
)
89 static inline int fscrypt_has_permitted_context(struct inode
*parent
,
95 static inline int fscrypt_inherit_context(struct inode
*parent
,
97 void *fs_data
, bool preload
)
103 static inline int fscrypt_get_encryption_info(struct inode
*inode
)
108 static inline void fscrypt_put_encryption_info(struct inode
*inode
)
114 static inline int fscrypt_setup_filename(struct inode
*dir
,
115 const struct qstr
*iname
,
116 int lookup
, struct fscrypt_name
*fname
)
118 if (IS_ENCRYPTED(dir
))
121 memset(fname
, 0, sizeof(struct fscrypt_name
));
122 fname
->usr_fname
= iname
;
123 fname
->disk_name
.name
= (unsigned char *)iname
->name
;
124 fname
->disk_name
.len
= iname
->len
;
128 static inline void fscrypt_free_filename(struct fscrypt_name
*fname
)
133 static inline int fscrypt_fname_alloc_buffer(const struct inode
*inode
,
134 u32 max_encrypted_len
,
135 struct fscrypt_str
*crypto_str
)
140 static inline void fscrypt_fname_free_buffer(struct fscrypt_str
*crypto_str
)
145 static inline int fscrypt_fname_disk_to_usr(struct inode
*inode
,
146 u32 hash
, u32 minor_hash
,
147 const struct fscrypt_str
*iname
,
148 struct fscrypt_str
*oname
)
153 static inline bool fscrypt_match_name(const struct fscrypt_name
*fname
,
154 const u8
*de_name
, u32 de_name_len
)
156 /* Encryption support disabled; use standard comparison */
157 if (de_name_len
!= fname
->disk_name
.len
)
159 return !memcmp(de_name
, fname
->disk_name
.name
, fname
->disk_name
.len
);
163 static inline void fscrypt_decrypt_bio_pages(struct fscrypt_ctx
*ctx
,
169 static inline void fscrypt_pullback_bio_page(struct page
**page
, bool restore
)
174 static inline int fscrypt_zeroout_range(const struct inode
*inode
, pgoff_t lblk
,
175 sector_t pblk
, unsigned int len
)
182 static inline int fscrypt_file_open(struct inode
*inode
, struct file
*filp
)
184 if (IS_ENCRYPTED(inode
))
189 static inline int __fscrypt_prepare_link(struct inode
*inode
,
195 static inline int __fscrypt_prepare_rename(struct inode
*old_dir
,
196 struct dentry
*old_dentry
,
197 struct inode
*new_dir
,
198 struct dentry
*new_dentry
,
204 static inline int __fscrypt_prepare_lookup(struct inode
*dir
,
205 struct dentry
*dentry
)
210 static inline int __fscrypt_prepare_symlink(struct inode
*dir
,
212 unsigned int max_len
,
213 struct fscrypt_str
*disk_link
)
218 static inline int __fscrypt_encrypt_symlink(struct inode
*inode
,
221 struct fscrypt_str
*disk_link
)
226 static inline const char *fscrypt_get_symlink(struct inode
*inode
,
228 unsigned int max_size
,
229 struct delayed_call
*done
)
231 return ERR_PTR(-EOPNOTSUPP
);
234 #endif /* _LINUX_FSCRYPT_NOTSUPP_H */