blob: dbced2937ec8954ae57a32cf2242de9abf819b00 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Theodore Ts'o3325bea2016-11-26 20:32:46 -05002/*
3 * fscrypt_private.h
4 *
5 * Copyright (C) 2015, Google, Inc.
6 *
Eric Biggers3ec4f2a62019-08-04 19:35:45 -07007 * Originally written by Michael Halcrow, Ildar Muslukhov, and Uday Savagaonkar.
8 * Heavily modified since then.
Theodore Ts'o3325bea2016-11-26 20:32:46 -05009 */
10
11#ifndef _FSCRYPT_PRIVATE_H
12#define _FSCRYPT_PRIVATE_H
13
Dave Chinner734f0d22017-10-09 12:15:34 -070014#include <linux/fscrypt.h>
Daniel Rosenbergaa408f82020-01-20 14:31:57 -080015#include <linux/siphash.h>
Daniel Walterb7e7cf72017-06-19 09:27:58 +020016#include <crypto/hash.h>
Theodore Ts'o3325bea2016-11-26 20:32:46 -050017
Eric Biggers22d94f42019-08-04 19:35:46 -070018#define CONST_STRLEN(str) (sizeof(str) - 1)
19
Eric Biggers11b88182018-04-30 15:51:46 -070020#define FS_KEY_DERIVATION_NONCE_SIZE 16
Theodore Ts'occ4e0df2016-11-26 22:05:18 -050021
Eric Biggers22d94f42019-08-04 19:35:46 -070022#define FSCRYPT_MIN_KEY_SIZE 16
23
Eric Biggers5dae4602019-08-04 19:35:47 -070024#define FSCRYPT_CONTEXT_V1 1
25#define FSCRYPT_CONTEXT_V2 2
26
27struct fscrypt_context_v1 {
28 u8 version; /* FSCRYPT_CONTEXT_V1 */
Theodore Ts'occ4e0df2016-11-26 22:05:18 -050029 u8 contents_encryption_mode;
30 u8 filenames_encryption_mode;
31 u8 flags;
Eric Biggers3b6df592019-08-04 19:35:44 -070032 u8 master_key_descriptor[FSCRYPT_KEY_DESCRIPTOR_SIZE];
Theodore Ts'occ4e0df2016-11-26 22:05:18 -050033 u8 nonce[FS_KEY_DERIVATION_NONCE_SIZE];
Eric Biggers5dae4602019-08-04 19:35:47 -070034};
Theodore Ts'occ4e0df2016-11-26 22:05:18 -050035
Eric Biggers5dae4602019-08-04 19:35:47 -070036struct fscrypt_context_v2 {
37 u8 version; /* FSCRYPT_CONTEXT_V2 */
38 u8 contents_encryption_mode;
39 u8 filenames_encryption_mode;
40 u8 flags;
41 u8 __reserved[4];
42 u8 master_key_identifier[FSCRYPT_KEY_IDENTIFIER_SIZE];
43 u8 nonce[FS_KEY_DERIVATION_NONCE_SIZE];
44};
45
46/**
47 * fscrypt_context - the encryption context of an inode
48 *
49 * This is the on-disk equivalent of an fscrypt_policy, stored alongside each
50 * encrypted file usually in a hidden extended attribute. It contains the
51 * fields from the fscrypt_policy, in order to identify the encryption algorithm
52 * and key with which the file is encrypted. It also contains a nonce that was
53 * randomly generated by fscrypt itself; this is used as KDF input or as a tweak
54 * to cause different files to be encrypted differently.
55 */
56union fscrypt_context {
57 u8 version;
58 struct fscrypt_context_v1 v1;
59 struct fscrypt_context_v2 v2;
60};
61
62/*
63 * Return the size expected for the given fscrypt_context based on its version
64 * number, or 0 if the context version is unrecognized.
65 */
66static inline int fscrypt_context_size(const union fscrypt_context *ctx)
67{
68 switch (ctx->version) {
69 case FSCRYPT_CONTEXT_V1:
70 BUILD_BUG_ON(sizeof(ctx->v1) != 28);
71 return sizeof(ctx->v1);
72 case FSCRYPT_CONTEXT_V2:
73 BUILD_BUG_ON(sizeof(ctx->v2) != 40);
74 return sizeof(ctx->v2);
75 }
76 return 0;
77}
78
Eric Biggerse98ad462020-03-14 13:50:49 -070079/* Check whether an fscrypt_context has a recognized version number and size */
80static inline bool fscrypt_context_is_valid(const union fscrypt_context *ctx,
81 int ctx_size)
82{
83 return ctx_size >= 1 && ctx_size == fscrypt_context_size(ctx);
84}
85
86/* Retrieve the context's nonce, assuming the context was already validated */
87static inline const u8 *fscrypt_context_nonce(const union fscrypt_context *ctx)
88{
89 switch (ctx->version) {
90 case FSCRYPT_CONTEXT_V1:
91 return ctx->v1.nonce;
92 case FSCRYPT_CONTEXT_V2:
93 return ctx->v2.nonce;
94 }
95 WARN_ON(1);
96 return NULL;
97}
98
Eric Biggers5dae4602019-08-04 19:35:47 -070099#undef fscrypt_policy
100union fscrypt_policy {
101 u8 version;
102 struct fscrypt_policy_v1 v1;
103 struct fscrypt_policy_v2 v2;
104};
105
106/*
107 * Return the size expected for the given fscrypt_policy based on its version
108 * number, or 0 if the policy version is unrecognized.
109 */
110static inline int fscrypt_policy_size(const union fscrypt_policy *policy)
111{
112 switch (policy->version) {
113 case FSCRYPT_POLICY_V1:
114 return sizeof(policy->v1);
115 case FSCRYPT_POLICY_V2:
116 return sizeof(policy->v2);
117 }
118 return 0;
119}
120
121/* Return the contents encryption mode of a valid encryption policy */
122static inline u8
123fscrypt_policy_contents_mode(const union fscrypt_policy *policy)
124{
125 switch (policy->version) {
126 case FSCRYPT_POLICY_V1:
127 return policy->v1.contents_encryption_mode;
128 case FSCRYPT_POLICY_V2:
129 return policy->v2.contents_encryption_mode;
130 }
131 BUG();
132}
133
134/* Return the filenames encryption mode of a valid encryption policy */
135static inline u8
136fscrypt_policy_fnames_mode(const union fscrypt_policy *policy)
137{
138 switch (policy->version) {
139 case FSCRYPT_POLICY_V1:
140 return policy->v1.filenames_encryption_mode;
141 case FSCRYPT_POLICY_V2:
142 return policy->v2.filenames_encryption_mode;
143 }
144 BUG();
145}
146
147/* Return the flags (FSCRYPT_POLICY_FLAG*) of a valid encryption policy */
148static inline u8
149fscrypt_policy_flags(const union fscrypt_policy *policy)
150{
151 switch (policy->version) {
152 case FSCRYPT_POLICY_V1:
153 return policy->v1.flags;
154 case FSCRYPT_POLICY_V2:
155 return policy->v2.flags;
156 }
157 BUG();
158}
159
Eric Biggers0eaab5b2018-01-11 23:30:08 -0500160/**
161 * For encrypted symlinks, the ciphertext length is stored at the beginning
162 * of the string in little-endian format.
163 */
164struct fscrypt_symlink_data {
165 __le16 len;
166 char encrypted_path[1];
167} __packed;
168
Theodore Ts'occ4e0df2016-11-26 22:05:18 -0500169/*
Eric Biggers8094c3c2019-01-06 08:36:21 -0500170 * fscrypt_info - the "encryption key" for an inode
171 *
172 * When an encrypted file's key is made available, an instance of this struct is
173 * allocated and stored in ->i_crypt_info. Once created, it remains until the
174 * inode is evicted.
Theodore Ts'occ4e0df2016-11-26 22:05:18 -0500175 */
176struct fscrypt_info {
Eric Biggers8094c3c2019-01-06 08:36:21 -0500177
178 /* The actual crypto transform used for encryption and decryption */
179 struct crypto_skcipher *ci_ctfm;
180
Eric Biggersb103fb72019-10-24 14:54:36 -0700181 /* True if the key should be freed when this fscrypt_info is freed */
182 bool ci_owns_key;
183
Eric Biggers8094c3c2019-01-06 08:36:21 -0500184 /*
Eric Biggers5dae4602019-08-04 19:35:47 -0700185 * Encryption mode used for this inode. It corresponds to either the
186 * contents or filenames encryption mode, depending on the inode type.
Eric Biggers8094c3c2019-01-06 08:36:21 -0500187 */
188 struct fscrypt_mode *ci_mode;
189
Eric Biggers59dc6a82019-08-04 19:35:44 -0700190 /* Back-pointer to the inode */
191 struct inode *ci_inode;
192
Eric Biggers8094c3c2019-01-06 08:36:21 -0500193 /*
Eric Biggersb1c0ec32019-08-04 19:35:46 -0700194 * The master key with which this inode was unlocked (decrypted). This
195 * will be NULL if the master key was found in a process-subscribed
196 * keyring rather than in the filesystem-level keyring.
197 */
198 struct key *ci_master_key;
199
200 /*
201 * Link in list of inodes that were unlocked with the master key.
202 * Only used when ->ci_master_key is set.
203 */
204 struct list_head ci_master_key_link;
205
206 /*
Eric Biggersa828daa2019-08-04 19:35:45 -0700207 * If non-NULL, then encryption is done using the master key directly
208 * and ci_ctfm will equal ci_direct_key->dk_ctfm.
Eric Biggers8094c3c2019-01-06 08:36:21 -0500209 */
Eric Biggersa828daa2019-08-04 19:35:45 -0700210 struct fscrypt_direct_key *ci_direct_key;
Eric Biggers8094c3c2019-01-06 08:36:21 -0500211
Daniel Rosenbergaa408f82020-01-20 14:31:57 -0800212 /*
213 * This inode's hash key for filenames. This is a 128-bit SipHash-2-4
214 * key. This is only set for directories that use a keyed dirhash over
215 * the plaintext filenames -- currently just casefolded directories.
216 */
217 siphash_key_t ci_dirhash_key;
218 bool ci_dirhash_key_initialized;
219
Eric Biggers5dae4602019-08-04 19:35:47 -0700220 /* The encryption policy used by this inode */
221 union fscrypt_policy ci_policy;
222
223 /* This inode's nonce, copied from the fscrypt_context */
Eric Biggers8094c3c2019-01-06 08:36:21 -0500224 u8 ci_nonce[FS_KEY_DERIVATION_NONCE_SIZE];
Theodore Ts'occ4e0df2016-11-26 22:05:18 -0500225};
226
Richard Weinberger58ae7462016-12-19 12:25:32 +0100227typedef enum {
228 FS_DECRYPT = 0,
229 FS_ENCRYPT,
230} fscrypt_direction_t;
231
Theodore Ts'ob98701df2016-11-26 20:43:09 -0500232/* crypto.c */
Eric Biggerse4de7822018-01-05 10:44:54 -0800233extern struct kmem_cache *fscrypt_info_cachep;
Richard Weinberger58ae7462016-12-19 12:25:32 +0100234extern int fscrypt_initialize(unsigned int cop_flags);
Eric Biggersf47fcbb2019-05-20 09:29:41 -0700235extern int fscrypt_crypt_block(const struct inode *inode,
236 fscrypt_direction_t rw, u64 lblk_num,
237 struct page *src_page, struct page *dest_page,
238 unsigned int len, unsigned int offs,
239 gfp_t gfp_flags);
Eric Biggersd2d07272019-05-20 09:29:39 -0700240extern struct page *fscrypt_alloc_bounce_page(gfp_t gfp_flags);
Theodore Ts'ob98701df2016-11-26 20:43:09 -0500241
Eric Biggers544d08f2018-04-30 15:51:47 -0700242extern void __printf(3, 4) __cold
Eric Biggers886da8b2019-07-24 11:07:58 -0700243fscrypt_msg(const struct inode *inode, const char *level, const char *fmt, ...);
Eric Biggers544d08f2018-04-30 15:51:47 -0700244
Eric Biggers886da8b2019-07-24 11:07:58 -0700245#define fscrypt_warn(inode, fmt, ...) \
246 fscrypt_msg((inode), KERN_WARNING, fmt, ##__VA_ARGS__)
247#define fscrypt_err(inode, fmt, ...) \
248 fscrypt_msg((inode), KERN_ERR, fmt, ##__VA_ARGS__)
Eric Biggers544d08f2018-04-30 15:51:47 -0700249
Eric Biggers8094c3c2019-01-06 08:36:21 -0500250#define FSCRYPT_MAX_IV_SIZE 32
251
252union fscrypt_iv {
253 struct {
254 /* logical block number within the file */
255 __le64 lblk_num;
256
257 /* per-file nonce; only set in DIRECT_KEY mode */
258 u8 nonce[FS_KEY_DERIVATION_NONCE_SIZE];
259 };
260 u8 raw[FSCRYPT_MAX_IV_SIZE];
261};
262
263void fscrypt_generate_iv(union fscrypt_iv *iv, u64 lblk_num,
264 const struct fscrypt_info *ci);
265
Eric Biggers76e81d62018-01-05 10:45:01 -0800266/* fname.c */
Eric Biggers1b3b8272020-01-19 23:17:36 -0800267extern int fscrypt_fname_encrypt(const struct inode *inode,
268 const struct qstr *iname,
269 u8 *out, unsigned int olen);
Eric Biggersb9db0b42018-01-11 23:30:08 -0500270extern bool fscrypt_fname_encrypted_size(const struct inode *inode,
271 u32 orig_len, u32 max_len,
272 u32 *encrypted_len_ret);
Eric Biggers2ebdef62019-12-09 12:43:59 -0800273extern const struct dentry_operations fscrypt_d_ops;
Eric Biggers76e81d62018-01-05 10:45:01 -0800274
Eric Biggersc1144c92019-08-04 19:35:47 -0700275/* hkdf.c */
276
277struct fscrypt_hkdf {
278 struct crypto_shash *hmac_tfm;
279};
280
281extern int fscrypt_init_hkdf(struct fscrypt_hkdf *hkdf, const u8 *master_key,
282 unsigned int master_key_size);
283
Eric Biggers5dae4602019-08-04 19:35:47 -0700284/*
285 * The list of contexts in which fscrypt uses HKDF. These values are used as
286 * the first byte of the HKDF application-specific info string to guarantee that
287 * info strings are never repeated between contexts. This ensures that all HKDF
288 * outputs are unique and cryptographically isolated, i.e. knowledge of one
289 * output doesn't reveal another.
290 */
291#define HKDF_CONTEXT_KEY_IDENTIFIER 1
Eric Biggersf592efe2020-01-20 14:31:58 -0800292#define HKDF_CONTEXT_PER_FILE_ENC_KEY 2
Eric Biggersb103fb72019-10-24 14:54:36 -0700293#define HKDF_CONTEXT_DIRECT_KEY 3
294#define HKDF_CONTEXT_IV_INO_LBLK_64_KEY 4
Daniel Rosenbergaa408f82020-01-20 14:31:57 -0800295#define HKDF_CONTEXT_DIRHASH_KEY 5
Eric Biggers5dae4602019-08-04 19:35:47 -0700296
Eric Biggers2a5831b2019-12-09 12:40:54 -0800297extern int fscrypt_hkdf_expand(const struct fscrypt_hkdf *hkdf, u8 context,
Eric Biggersc1144c92019-08-04 19:35:47 -0700298 const u8 *info, unsigned int infolen,
299 u8 *okm, unsigned int okmlen);
300
301extern void fscrypt_destroy_hkdf(struct fscrypt_hkdf *hkdf);
302
Eric Biggers22d94f42019-08-04 19:35:46 -0700303/* keyring.c */
304
305/*
306 * fscrypt_master_key_secret - secret key material of an in-use master key
307 */
308struct fscrypt_master_key_secret {
309
Eric Biggers5dae4602019-08-04 19:35:47 -0700310 /*
311 * For v2 policy keys: HKDF context keyed by this master key.
312 * For v1 policy keys: not set (hkdf.hmac_tfm == NULL).
313 */
314 struct fscrypt_hkdf hkdf;
315
316 /* Size of the raw key in bytes. Set even if ->raw isn't set. */
Eric Biggers22d94f42019-08-04 19:35:46 -0700317 u32 size;
318
Eric Biggers5dae4602019-08-04 19:35:47 -0700319 /* For v1 policy keys: the raw key. Wiped for v2 policy keys. */
Eric Biggers22d94f42019-08-04 19:35:46 -0700320 u8 raw[FSCRYPT_MAX_KEY_SIZE];
321
322} __randomize_layout;
323
324/*
325 * fscrypt_master_key - an in-use master key
326 *
327 * This represents a master encryption key which has been added to the
328 * filesystem and can be used to "unlock" the encrypted files which were
329 * encrypted with it.
330 */
331struct fscrypt_master_key {
332
Eric Biggersb1c0ec32019-08-04 19:35:46 -0700333 /*
334 * The secret key material. After FS_IOC_REMOVE_ENCRYPTION_KEY is
335 * executed, this is wiped and no new inodes can be unlocked with this
336 * key; however, there may still be inodes in ->mk_decrypted_inodes
337 * which could not be evicted. As long as some inodes still remain,
338 * FS_IOC_REMOVE_ENCRYPTION_KEY can be retried, or
339 * FS_IOC_ADD_ENCRYPTION_KEY can add the secret again.
340 *
Eric Biggers23c688b2019-08-04 19:35:47 -0700341 * Locking: protected by key->sem (outer) and mk_secret_sem (inner).
342 * The reason for two locks is that key->sem also protects modifying
343 * mk_users, which ranks it above the semaphore for the keyring key
344 * type, which is in turn above page faults (via keyring_read). But
345 * sometimes filesystems call fscrypt_get_encryption_info() from within
346 * a transaction, which ranks it below page faults. So we need a
347 * separate lock which protects mk_secret but not also mk_users.
Eric Biggersb1c0ec32019-08-04 19:35:46 -0700348 */
Eric Biggers22d94f42019-08-04 19:35:46 -0700349 struct fscrypt_master_key_secret mk_secret;
Eric Biggers23c688b2019-08-04 19:35:47 -0700350 struct rw_semaphore mk_secret_sem;
Eric Biggers22d94f42019-08-04 19:35:46 -0700351
Eric Biggers5dae4602019-08-04 19:35:47 -0700352 /*
353 * For v1 policy keys: an arbitrary key descriptor which was assigned by
354 * userspace (->descriptor).
355 *
356 * For v2 policy keys: a cryptographic hash of this key (->identifier).
357 */
Eric Biggers22d94f42019-08-04 19:35:46 -0700358 struct fscrypt_key_specifier mk_spec;
359
Eric Biggersb1c0ec32019-08-04 19:35:46 -0700360 /*
Eric Biggers23c688b2019-08-04 19:35:47 -0700361 * Keyring which contains a key of type 'key_type_fscrypt_user' for each
362 * user who has added this key. Normally each key will be added by just
363 * one user, but it's possible that multiple users share a key, and in
364 * that case we need to keep track of those users so that one user can't
365 * remove the key before the others want it removed too.
366 *
367 * This is NULL for v1 policy keys; those can only be added by root.
368 *
369 * Locking: in addition to this keyrings own semaphore, this is
370 * protected by the master key's key->sem, so we can do atomic
371 * search+insert. It can also be searched without taking any locks, but
372 * in that case the returned key may have already been removed.
373 */
374 struct key *mk_users;
375
376 /*
Eric Biggersb1c0ec32019-08-04 19:35:46 -0700377 * Length of ->mk_decrypted_inodes, plus one if mk_secret is present.
378 * Once this goes to 0, the master key is removed from ->s_master_keys.
379 * The 'struct fscrypt_master_key' will continue to live as long as the
380 * 'struct key' whose payload it is, but we won't let this reference
381 * count rise again.
382 */
383 refcount_t mk_refcount;
384
385 /*
386 * List of inodes that were unlocked using this key. This allows the
387 * inodes to be evicted efficiently if the key is removed.
388 */
389 struct list_head mk_decrypted_inodes;
390 spinlock_t mk_decrypted_inodes_lock;
391
Eric Biggersb103fb72019-10-24 14:54:36 -0700392 /* Crypto API transforms for DIRECT_KEY policies, allocated on-demand */
393 struct crypto_skcipher *mk_direct_tfms[__FSCRYPT_MODE_MAX + 1];
394
395 /*
396 * Crypto API transforms for filesystem-layer implementation of
397 * IV_INO_LBLK_64 policies, allocated on-demand.
398 */
399 struct crypto_skcipher *mk_iv_ino_lblk_64_tfms[__FSCRYPT_MODE_MAX + 1];
Eric Biggers5dae4602019-08-04 19:35:47 -0700400
Eric Biggers22d94f42019-08-04 19:35:46 -0700401} __randomize_layout;
402
Eric Biggersb1c0ec32019-08-04 19:35:46 -0700403static inline bool
404is_master_key_secret_present(const struct fscrypt_master_key_secret *secret)
405{
406 /*
407 * The READ_ONCE() is only necessary for fscrypt_drop_inode() and
408 * fscrypt_key_describe(). These run in atomic context, so they can't
Eric Biggers23c688b2019-08-04 19:35:47 -0700409 * take ->mk_secret_sem and thus 'secret' can change concurrently which
410 * would be a data race. But they only need to know whether the secret
411 * *was* present at the time of check, so READ_ONCE() suffices.
Eric Biggersb1c0ec32019-08-04 19:35:46 -0700412 */
413 return READ_ONCE(secret->size) != 0;
414}
415
Eric Biggers22d94f42019-08-04 19:35:46 -0700416static inline const char *master_key_spec_type(
417 const struct fscrypt_key_specifier *spec)
418{
419 switch (spec->type) {
420 case FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR:
421 return "descriptor";
Eric Biggers5dae4602019-08-04 19:35:47 -0700422 case FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER:
423 return "identifier";
Eric Biggers22d94f42019-08-04 19:35:46 -0700424 }
425 return "[unknown]";
426}
427
428static inline int master_key_spec_len(const struct fscrypt_key_specifier *spec)
429{
430 switch (spec->type) {
431 case FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR:
432 return FSCRYPT_KEY_DESCRIPTOR_SIZE;
Eric Biggers5dae4602019-08-04 19:35:47 -0700433 case FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER:
434 return FSCRYPT_KEY_IDENTIFIER_SIZE;
Eric Biggers22d94f42019-08-04 19:35:46 -0700435 }
436 return 0;
437}
438
439extern struct key *
440fscrypt_find_master_key(struct super_block *sb,
441 const struct fscrypt_key_specifier *mk_spec);
442
Eric Biggers5ab71892019-08-04 19:35:48 -0700443extern int fscrypt_verify_key_added(struct super_block *sb,
444 const u8 identifier[FSCRYPT_KEY_IDENTIFIER_SIZE]);
445
Eric Biggers22d94f42019-08-04 19:35:46 -0700446extern int __init fscrypt_init_keyring(void);
447
Eric Biggersfeed8252019-08-04 19:35:45 -0700448/* keysetup.c */
Eric Biggers8094c3c2019-01-06 08:36:21 -0500449
450struct fscrypt_mode {
451 const char *friendly_name;
452 const char *cipher_str;
453 int keysize;
454 int ivsize;
Eric Biggersff73c2c2019-10-21 13:49:03 -0700455 int logged_impl_name;
Eric Biggers8094c3c2019-01-06 08:36:21 -0500456};
457
Eric Biggers85af90e2019-12-09 13:18:27 -0800458extern struct fscrypt_mode fscrypt_modes[];
Eric Biggers3ec4f2a62019-08-04 19:35:45 -0700459
Eric Biggers0109ce762019-08-04 19:35:45 -0700460extern struct crypto_skcipher *
461fscrypt_allocate_skcipher(struct fscrypt_mode *mode, const u8 *raw_key,
462 const struct inode *inode);
463
Eric Biggersf592efe2020-01-20 14:31:58 -0800464extern int fscrypt_set_per_file_enc_key(struct fscrypt_info *ci,
465 const u8 *raw_key);
Eric Biggers0109ce762019-08-04 19:35:45 -0700466
Daniel Rosenbergaa408f82020-01-20 14:31:57 -0800467extern int fscrypt_derive_dirhash_key(struct fscrypt_info *ci,
468 const struct fscrypt_master_key *mk);
469
Eric Biggers0109ce762019-08-04 19:35:45 -0700470/* keysetup_v1.c */
471
472extern void fscrypt_put_direct_key(struct fscrypt_direct_key *dk);
473
474extern int fscrypt_setup_v1_file_key(struct fscrypt_info *ci,
475 const u8 *raw_master_key);
476
477extern int fscrypt_setup_v1_file_key_via_subscribed_keyrings(
478 struct fscrypt_info *ci);
Eric Biggers5dae4602019-08-04 19:35:47 -0700479/* policy.c */
480
481extern bool fscrypt_policies_equal(const union fscrypt_policy *policy1,
482 const union fscrypt_policy *policy2);
483extern bool fscrypt_supported_policy(const union fscrypt_policy *policy_u,
484 const struct inode *inode);
485extern int fscrypt_policy_from_context(union fscrypt_policy *policy_u,
486 const union fscrypt_context *ctx_u,
487 int ctx_size);
Eric Biggers0109ce762019-08-04 19:35:45 -0700488
Theodore Ts'o3325bea2016-11-26 20:32:46 -0500489#endif /* _FSCRYPT_PRIVATE_H */