Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fscrypt_supp.h |
| 3 | * |
Jaegeuk Kim | 8dec074 | 2017-06-22 12:14:40 -0700 | [diff] [blame] | 4 | * Do not include this file directly. Use fscrypt.h instead! |
Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 5 | */ |
Jaegeuk Kim | 8dec074 | 2017-06-22 12:14:40 -0700 | [diff] [blame] | 6 | #ifndef _LINUX_FSCRYPT_H |
| 7 | #error "Incorrect include of linux/fscrypt_supp.h!" |
| 8 | #endif |
Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 9 | |
| 10 | #ifndef _LINUX_FSCRYPT_SUPP_H |
| 11 | #define _LINUX_FSCRYPT_SUPP_H |
| 12 | |
Jaegeuk Kim | d919765 | 2018-01-05 10:44:52 -0800 | [diff] [blame] | 13 | #include <linux/mm.h> |
| 14 | #include <linux/slab.h> |
| 15 | |
| 16 | /* |
| 17 | * fscrypt superblock flags |
| 18 | */ |
| 19 | #define FS_CFLG_OWN_PAGES (1U << 1) |
| 20 | |
| 21 | /* |
| 22 | * crypto operations for filesystems |
| 23 | */ |
| 24 | struct fscrypt_operations { |
| 25 | unsigned int flags; |
| 26 | const char *key_prefix; |
| 27 | int (*get_context)(struct inode *, void *, size_t); |
| 28 | int (*set_context)(struct inode *, const void *, size_t, void *); |
| 29 | bool (*dummy_context)(struct inode *); |
| 30 | bool (*empty_dir)(struct inode *); |
| 31 | unsigned (*max_namelen)(struct inode *); |
| 32 | }; |
| 33 | |
| 34 | struct fscrypt_ctx { |
| 35 | union { |
| 36 | struct { |
| 37 | struct page *bounce_page; /* Ciphertext page */ |
| 38 | struct page *control_page; /* Original page */ |
| 39 | } w; |
| 40 | struct { |
| 41 | struct bio *bio; |
| 42 | struct work_struct work; |
| 43 | } r; |
| 44 | struct list_head free_list; /* Free list */ |
| 45 | }; |
| 46 | u8 flags; /* Flags */ |
| 47 | }; |
| 48 | |
| 49 | static inline bool fscrypt_has_encryption_key(const struct inode *inode) |
| 50 | { |
| 51 | return (inode->i_crypt_info != NULL); |
| 52 | } |
| 53 | |
| 54 | static inline bool fscrypt_dummy_context_enabled(struct inode *inode) |
| 55 | { |
| 56 | return inode->i_sb->s_cop->dummy_context && |
| 57 | inode->i_sb->s_cop->dummy_context(inode); |
| 58 | } |
| 59 | |
Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 60 | /* crypto.c */ |
Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 61 | extern struct fscrypt_ctx *fscrypt_get_ctx(const struct inode *, gfp_t); |
| 62 | extern void fscrypt_release_ctx(struct fscrypt_ctx *); |
| 63 | extern struct page *fscrypt_encrypt_page(const struct inode *, struct page *, |
| 64 | unsigned int, unsigned int, |
| 65 | u64, gfp_t); |
| 66 | extern int fscrypt_decrypt_page(const struct inode *, struct page *, unsigned int, |
| 67 | unsigned int, u64); |
Jaegeuk Kim | d919765 | 2018-01-05 10:44:52 -0800 | [diff] [blame] | 68 | |
| 69 | static inline struct page *fscrypt_control_page(struct page *page) |
| 70 | { |
| 71 | return ((struct fscrypt_ctx *)page_private(page))->w.control_page; |
| 72 | } |
| 73 | |
Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 74 | extern void fscrypt_restore_control_page(struct page *); |
| 75 | |
| 76 | extern const struct dentry_operations fscrypt_d_ops; |
| 77 | |
| 78 | static inline void fscrypt_set_d_op(struct dentry *dentry) |
| 79 | { |
| 80 | d_set_d_op(dentry, &fscrypt_d_ops); |
| 81 | } |
| 82 | |
| 83 | static inline void fscrypt_set_encrypted_dentry(struct dentry *dentry) |
| 84 | { |
| 85 | spin_lock(&dentry->d_lock); |
| 86 | dentry->d_flags |= DCACHE_ENCRYPTED_WITH_KEY; |
| 87 | spin_unlock(&dentry->d_lock); |
| 88 | } |
| 89 | |
| 90 | /* policy.c */ |
| 91 | extern int fscrypt_ioctl_set_policy(struct file *, const void __user *); |
| 92 | extern int fscrypt_ioctl_get_policy(struct file *, void __user *); |
| 93 | extern int fscrypt_has_permitted_context(struct inode *, struct inode *); |
| 94 | extern int fscrypt_inherit_context(struct inode *, struct inode *, |
| 95 | void *, bool); |
| 96 | /* keyinfo.c */ |
| 97 | extern int fscrypt_get_encryption_info(struct inode *); |
Jaegeuk Kim | d919765 | 2018-01-05 10:44:52 -0800 | [diff] [blame] | 98 | extern void fscrypt_put_encryption_info(struct inode *); |
Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 99 | |
| 100 | /* fname.c */ |
| 101 | extern int fscrypt_setup_filename(struct inode *, const struct qstr *, |
| 102 | int lookup, struct fscrypt_name *); |
| 103 | |
| 104 | static inline void fscrypt_free_filename(struct fscrypt_name *fname) |
| 105 | { |
| 106 | kfree(fname->crypto_buf.name); |
| 107 | } |
| 108 | |
Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 109 | extern int fscrypt_fname_alloc_buffer(const struct inode *, u32, |
| 110 | struct fscrypt_str *); |
| 111 | extern void fscrypt_fname_free_buffer(struct fscrypt_str *); |
| 112 | extern int fscrypt_fname_disk_to_usr(struct inode *, u32, u32, |
| 113 | const struct fscrypt_str *, struct fscrypt_str *); |
Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 114 | |
| 115 | #define FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE 32 |
| 116 | |
| 117 | /* Extracts the second-to-last ciphertext block; see explanation below */ |
| 118 | #define FSCRYPT_FNAME_DIGEST(name, len) \ |
| 119 | ((name) + round_down((len) - FS_CRYPTO_BLOCK_SIZE - 1, \ |
| 120 | FS_CRYPTO_BLOCK_SIZE)) |
| 121 | |
| 122 | #define FSCRYPT_FNAME_DIGEST_SIZE FS_CRYPTO_BLOCK_SIZE |
| 123 | |
| 124 | /** |
| 125 | * fscrypt_digested_name - alternate identifier for an on-disk filename |
| 126 | * |
| 127 | * When userspace lists an encrypted directory without access to the key, |
| 128 | * filenames whose ciphertext is longer than FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE |
| 129 | * bytes are shown in this abbreviated form (base64-encoded) rather than as the |
| 130 | * full ciphertext (base64-encoded). This is necessary to allow supporting |
| 131 | * filenames up to NAME_MAX bytes, since base64 encoding expands the length. |
| 132 | * |
| 133 | * To make it possible for filesystems to still find the correct directory entry |
| 134 | * despite not knowing the full on-disk name, we encode any filesystem-specific |
| 135 | * 'hash' and/or 'minor_hash' which the filesystem may need for its lookups, |
| 136 | * followed by the second-to-last ciphertext block of the filename. Due to the |
| 137 | * use of the CBC-CTS encryption mode, the second-to-last ciphertext block |
| 138 | * depends on the full plaintext. (Note that ciphertext stealing causes the |
| 139 | * last two blocks to appear "flipped".) This makes accidental collisions very |
| 140 | * unlikely: just a 1 in 2^128 chance for two filenames to collide even if they |
| 141 | * share the same filesystem-specific hashes. |
| 142 | * |
| 143 | * However, this scheme isn't immune to intentional collisions, which can be |
| 144 | * created by anyone able to create arbitrary plaintext filenames and view them |
| 145 | * without the key. Making the "digest" be a real cryptographic hash like |
| 146 | * SHA-256 over the full ciphertext would prevent this, although it would be |
| 147 | * less efficient and harder to implement, especially since the filesystem would |
| 148 | * need to calculate it for each directory entry examined during a search. |
| 149 | */ |
| 150 | struct fscrypt_digested_name { |
| 151 | u32 hash; |
| 152 | u32 minor_hash; |
| 153 | u8 digest[FSCRYPT_FNAME_DIGEST_SIZE]; |
| 154 | }; |
| 155 | |
| 156 | /** |
| 157 | * fscrypt_match_name() - test whether the given name matches a directory entry |
| 158 | * @fname: the name being searched for |
| 159 | * @de_name: the name from the directory entry |
| 160 | * @de_name_len: the length of @de_name in bytes |
| 161 | * |
| 162 | * Normally @fname->disk_name will be set, and in that case we simply compare |
| 163 | * that to the name stored in the directory entry. The only exception is that |
| 164 | * if we don't have the key for an encrypted directory and a filename in it is |
| 165 | * very long, then we won't have the full disk_name and we'll instead need to |
| 166 | * match against the fscrypt_digested_name. |
| 167 | * |
| 168 | * Return: %true if the name matches, otherwise %false. |
| 169 | */ |
| 170 | static inline bool fscrypt_match_name(const struct fscrypt_name *fname, |
| 171 | const u8 *de_name, u32 de_name_len) |
| 172 | { |
| 173 | if (unlikely(!fname->disk_name.name)) { |
| 174 | const struct fscrypt_digested_name *n = |
| 175 | (const void *)fname->crypto_buf.name; |
| 176 | if (WARN_ON_ONCE(fname->usr_fname->name[0] != '_')) |
| 177 | return false; |
| 178 | if (de_name_len <= FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE) |
| 179 | return false; |
| 180 | return !memcmp(FSCRYPT_FNAME_DIGEST(de_name, de_name_len), |
| 181 | n->digest, FSCRYPT_FNAME_DIGEST_SIZE); |
| 182 | } |
| 183 | |
| 184 | if (de_name_len != fname->disk_name.len) |
| 185 | return false; |
| 186 | return !memcmp(de_name, fname->disk_name.name, fname->disk_name.len); |
| 187 | } |
| 188 | |
| 189 | /* bio.c */ |
| 190 | extern void fscrypt_decrypt_bio_pages(struct fscrypt_ctx *, struct bio *); |
| 191 | extern void fscrypt_pullback_bio_page(struct page **, bool); |
| 192 | extern int fscrypt_zeroout_range(const struct inode *, pgoff_t, sector_t, |
| 193 | unsigned int); |
| 194 | |
Jaegeuk Kim | 8dec074 | 2017-06-22 12:14:40 -0700 | [diff] [blame] | 195 | /* hooks.c */ |
| 196 | extern int fscrypt_file_open(struct inode *inode, struct file *filp); |
| 197 | extern int __fscrypt_prepare_link(struct inode *inode, struct inode *dir); |
| 198 | extern int __fscrypt_prepare_rename(struct inode *old_dir, |
| 199 | struct dentry *old_dentry, |
| 200 | struct inode *new_dir, |
| 201 | struct dentry *new_dentry, |
| 202 | unsigned int flags); |
| 203 | extern int __fscrypt_prepare_lookup(struct inode *dir, struct dentry *dentry); |
Jaegeuk Kim | d919765 | 2018-01-05 10:44:52 -0800 | [diff] [blame] | 204 | extern int __fscrypt_prepare_symlink(struct inode *dir, unsigned int len, |
| 205 | unsigned int max_len, |
| 206 | struct fscrypt_str *disk_link); |
| 207 | extern int __fscrypt_encrypt_symlink(struct inode *inode, const char *target, |
| 208 | unsigned int len, |
| 209 | struct fscrypt_str *disk_link); |
| 210 | extern const char *fscrypt_get_symlink(struct inode *inode, const void *caddr, |
| 211 | unsigned int max_size, |
| 212 | struct delayed_call *done); |
Jaegeuk Kim | 8dec074 | 2017-06-22 12:14:40 -0700 | [diff] [blame] | 213 | |
Hyojun Kim | 63da420 | 2017-10-06 17:10:08 -0700 | [diff] [blame] | 214 | #endif /* _LINUX_FSCRYPT_SUPP_H */ |