blob: 92a12ffc8be20883b1e36a2c8c59308a7a1d9273 [file] [log] [blame]
Jaegeuk Kime6b120d2017-07-10 12:55:09 -07001/*
2 * fscrypt_private.h
3 *
4 * Copyright (C) 2015, Google, Inc.
5 *
6 * This contains encryption key functions.
7 *
8 * Written by Michael Halcrow, Ildar Muslukhov, and Uday Savagaonkar, 2015.
9 */
10
11#ifndef _FSCRYPT_PRIVATE_H
12#define _FSCRYPT_PRIVATE_H
13
Dave Chinner16179292017-10-09 12:15:34 -070014#define __FS_HAS_ENCRYPTION 1
15#include <linux/fscrypt.h>
Daniel Walter8e989de2017-06-19 09:27:58 +020016#include <crypto/hash.h>
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070017
18/* Encryption parameters */
Daniel Walter8e989de2017-06-19 09:27:58 +020019#define FS_IV_SIZE 16
Eric Biggers56733c62018-04-30 15:51:46 -070020#define FS_KEY_DERIVATION_NONCE_SIZE 16
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070021
22/**
23 * Encryption context for inode
24 *
25 * Protector format:
26 * 1 byte: Protector format (1 = this version)
27 * 1 byte: File contents encryption mode
28 * 1 byte: File names encryption mode
29 * 1 byte: Flags
30 * 8 bytes: Master Key descriptor
31 * 16 bytes: Encryption Key derivation nonce
32 */
33struct fscrypt_context {
34 u8 format;
35 u8 contents_encryption_mode;
36 u8 filenames_encryption_mode;
37 u8 flags;
38 u8 master_key_descriptor[FS_KEY_DESCRIPTOR_SIZE];
39 u8 nonce[FS_KEY_DERIVATION_NONCE_SIZE];
40} __packed;
41
42#define FS_ENCRYPTION_CONTEXT_FORMAT_V1 1
43
Eric Biggers62cfdd92018-01-11 23:30:08 -050044/**
45 * For encrypted symlinks, the ciphertext length is stored at the beginning
46 * of the string in little-endian format.
47 */
48struct fscrypt_symlink_data {
49 __le16 len;
50 char encrypted_path[1];
51} __packed;
52
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070053/*
54 * A pointer to this structure is stored in the file system's in-core
55 * representation of an inode.
56 */
57struct fscrypt_info {
58 u8 ci_data_mode;
59 u8 ci_filename_mode;
60 u8 ci_flags;
61 struct crypto_skcipher *ci_ctfm;
Daniel Walter8e989de2017-06-19 09:27:58 +020062 struct crypto_cipher *ci_essiv_tfm;
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070063 u8 ci_master_key[FS_KEY_DESCRIPTOR_SIZE];
64};
65
66typedef enum {
67 FS_DECRYPT = 0,
68 FS_ENCRYPT,
69} fscrypt_direction_t;
70
71#define FS_CTX_REQUIRES_FREE_ENCRYPT_FL 0x00000001
72#define FS_CTX_HAS_BOUNCE_BUFFER_FL 0x00000002
73
Eric Biggers9d51ca82018-01-05 10:44:58 -080074static inline bool fscrypt_valid_enc_modes(u32 contents_mode,
75 u32 filenames_mode)
76{
77 if (contents_mode == FS_ENCRYPTION_MODE_AES_128_CBC &&
78 filenames_mode == FS_ENCRYPTION_MODE_AES_128_CTS)
79 return true;
80
81 if (contents_mode == FS_ENCRYPTION_MODE_AES_256_XTS &&
82 filenames_mode == FS_ENCRYPTION_MODE_AES_256_CTS)
83 return true;
84
85 return false;
86}
87
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070088/* crypto.c */
Eric Biggersbc76f392018-01-05 10:44:54 -080089extern struct kmem_cache *fscrypt_info_cachep;
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070090extern int fscrypt_initialize(unsigned int cop_flags);
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070091extern int fscrypt_do_page_crypto(const struct inode *inode,
92 fscrypt_direction_t rw, u64 lblk_num,
93 struct page *src_page,
94 struct page *dest_page,
95 unsigned int len, unsigned int offs,
96 gfp_t gfp_flags);
97extern struct page *fscrypt_alloc_bounce_page(struct fscrypt_ctx *ctx,
98 gfp_t gfp_flags);
Eric Biggers38660252018-04-30 15:51:36 -070099extern const struct dentry_operations fscrypt_d_ops;
Jaegeuk Kime6b120d2017-07-10 12:55:09 -0700100
Eric Biggers78275d82018-04-30 15:51:47 -0700101extern void __printf(3, 4) __cold
102fscrypt_msg(struct super_block *sb, const char *level, const char *fmt, ...);
103
104#define fscrypt_warn(sb, fmt, ...) \
105 fscrypt_msg(sb, KERN_WARNING, fmt, ##__VA_ARGS__)
106#define fscrypt_err(sb, fmt, ...) \
107 fscrypt_msg(sb, KERN_ERR, fmt, ##__VA_ARGS__)
108
Eric Biggersa7e05c72018-01-05 10:45:01 -0800109/* fname.c */
Eric Biggersb0edc2f2018-01-11 23:30:08 -0500110extern int fname_encrypt(struct inode *inode, const struct qstr *iname,
111 u8 *out, unsigned int olen);
Eric Biggers549b2062018-01-11 23:30:08 -0500112extern bool fscrypt_fname_encrypted_size(const struct inode *inode,
113 u32 orig_len, u32 max_len,
114 u32 *encrypted_len_ret);
Eric Biggersa7e05c72018-01-05 10:45:01 -0800115
Daniel Walter8e989de2017-06-19 09:27:58 +0200116/* keyinfo.c */
117extern void __exit fscrypt_essiv_cleanup(void);
118
Jaegeuk Kime6b120d2017-07-10 12:55:09 -0700119#endif /* _FSCRYPT_PRIVATE_H */