2017-01-24 10:58:06 -08:00
|
|
|
/*
|
2017-10-09 12:15:34 -07:00
|
|
|
* fscrypt.h: declarations for per-file encryption
|
|
|
|
*
|
|
|
|
* Filesystems that implement per-file encryption include this header
|
|
|
|
* file with the __FS_HAS_ENCRYPTION set according to whether that filesystem
|
|
|
|
* is being built with encryption support or not.
|
2017-01-24 10:58:06 -08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2015, Google, Inc.
|
|
|
|
*
|
|
|
|
* Written by Michael Halcrow, 2015.
|
|
|
|
* Modified by Jaegeuk Kim, 2015.
|
|
|
|
*/
|
2017-10-09 12:15:34 -07:00
|
|
|
#ifndef _LINUX_FSCRYPT_H
|
|
|
|
#define _LINUX_FSCRYPT_H
|
2017-01-24 10:58:06 -08:00
|
|
|
|
|
|
|
#include <linux/key.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/bio.h>
|
|
|
|
#include <linux/dcache.h>
|
|
|
|
#include <crypto/skcipher.h>
|
|
|
|
#include <uapi/linux/fs.h>
|
|
|
|
|
|
|
|
#define FS_CRYPTO_BLOCK_SIZE 16
|
|
|
|
|
|
|
|
struct fscrypt_info;
|
|
|
|
|
|
|
|
struct fscrypt_ctx {
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
struct page *bounce_page; /* Ciphertext page */
|
|
|
|
struct page *control_page; /* Original page */
|
|
|
|
} w;
|
|
|
|
struct {
|
|
|
|
struct bio *bio;
|
|
|
|
struct work_struct work;
|
|
|
|
} r;
|
|
|
|
struct list_head free_list; /* Free list */
|
|
|
|
};
|
|
|
|
u8 flags; /* Flags */
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* For encrypted symlinks, the ciphertext length is stored at the beginning
|
|
|
|
* of the string in little-endian format.
|
|
|
|
*/
|
|
|
|
struct fscrypt_symlink_data {
|
|
|
|
__le16 len;
|
|
|
|
char encrypted_path[1];
|
|
|
|
} __packed;
|
|
|
|
|
|
|
|
struct fscrypt_str {
|
|
|
|
unsigned char *name;
|
|
|
|
u32 len;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct fscrypt_name {
|
|
|
|
const struct qstr *usr_fname;
|
|
|
|
struct fscrypt_str disk_name;
|
|
|
|
u32 hash;
|
|
|
|
u32 minor_hash;
|
|
|
|
struct fscrypt_str crypto_buf;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define FSTR_INIT(n, l) { .name = n, .len = l }
|
|
|
|
#define FSTR_TO_QSTR(f) QSTR_INIT((f)->name, (f)->len)
|
|
|
|
#define fname_name(p) ((p)->disk_name.name)
|
|
|
|
#define fname_len(p) ((p)->disk_name.len)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fscrypt superblock flags
|
|
|
|
*/
|
|
|
|
#define FS_CFLG_OWN_PAGES (1U << 1)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* crypto opertions for filesystems
|
|
|
|
*/
|
|
|
|
struct fscrypt_operations {
|
|
|
|
unsigned int flags;
|
|
|
|
const char *key_prefix;
|
|
|
|
int (*get_context)(struct inode *, void *, size_t);
|
|
|
|
int (*set_context)(struct inode *, const void *, size_t, void *);
|
2017-06-22 12:14:40 -07:00
|
|
|
bool (*dummy_context)(struct inode *);
|
2017-01-24 10:58:06 -08:00
|
|
|
bool (*empty_dir)(struct inode *);
|
|
|
|
unsigned (*max_namelen)(struct inode *);
|
|
|
|
};
|
|
|
|
|
2017-07-06 00:01:59 -04:00
|
|
|
/* Maximum value for the third parameter of fscrypt_operations.set_context(). */
|
|
|
|
#define FSCRYPT_SET_CONTEXT_MAX_SIZE 28
|
|
|
|
|
2017-01-24 10:58:06 -08:00
|
|
|
static inline bool fscrypt_dummy_context_enabled(struct inode *inode)
|
|
|
|
{
|
|
|
|
if (inode->i_sb->s_cop->dummy_context &&
|
|
|
|
inode->i_sb->s_cop->dummy_context(inode))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-06-19 09:27:58 +02:00
|
|
|
static inline bool fscrypt_valid_enc_modes(u32 contents_mode,
|
|
|
|
u32 filenames_mode)
|
2017-01-24 10:58:06 -08:00
|
|
|
{
|
2017-06-19 09:27:58 +02:00
|
|
|
if (contents_mode == FS_ENCRYPTION_MODE_AES_128_CBC &&
|
|
|
|
filenames_mode == FS_ENCRYPTION_MODE_AES_128_CTS)
|
|
|
|
return true;
|
2017-01-24 10:58:06 -08:00
|
|
|
|
2017-06-19 09:27:58 +02:00
|
|
|
if (contents_mode == FS_ENCRYPTION_MODE_AES_256_XTS &&
|
|
|
|
filenames_mode == FS_ENCRYPTION_MODE_AES_256_CTS)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
2017-01-24 10:58:06 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool fscrypt_is_dot_dotdot(const struct qstr *str)
|
|
|
|
{
|
|
|
|
if (str->len == 1 && str->name[0] == '.')
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.')
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-09 12:15:34 -07:00
|
|
|
#if __FS_HAS_ENCRYPTION
|
|
|
|
|
2017-01-24 10:58:06 -08:00
|
|
|
static inline struct page *fscrypt_control_page(struct page *page)
|
|
|
|
{
|
|
|
|
return ((struct fscrypt_ctx *)page_private(page))->w.control_page;
|
2017-10-09 12:15:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool fscrypt_has_encryption_key(const struct inode *inode)
|
|
|
|
{
|
|
|
|
return (inode->i_crypt_info != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <linux/fscrypt_supp.h>
|
|
|
|
|
|
|
|
#else /* !__FS_HAS_ENCRYPTION */
|
|
|
|
|
|
|
|
static inline struct page *fscrypt_control_page(struct page *page)
|
|
|
|
{
|
2017-01-24 10:58:06 -08:00
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
}
|
|
|
|
|
2017-10-09 12:15:34 -07:00
|
|
|
static inline bool fscrypt_has_encryption_key(const struct inode *inode)
|
2017-01-24 10:58:06 -08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-09 12:15:34 -07:00
|
|
|
#include <linux/fscrypt_notsupp.h>
|
|
|
|
#endif /* __FS_HAS_ENCRYPTION */
|
|
|
|
|
2017-10-09 12:15:39 -07:00
|
|
|
/**
|
|
|
|
* fscrypt_require_key - require an inode's encryption key
|
|
|
|
* @inode: the inode we need the key for
|
|
|
|
*
|
|
|
|
* If the inode is encrypted, set up its encryption key if not already done.
|
|
|
|
* Then require that the key be present and return -ENOKEY otherwise.
|
|
|
|
*
|
|
|
|
* No locks are needed, and the key will live as long as the struct inode --- so
|
|
|
|
* it won't go away from under you.
|
|
|
|
*
|
|
|
|
* Return: 0 on success, -ENOKEY if the key is missing, or another -errno code
|
|
|
|
* if a problem occurred while setting up the encryption key.
|
|
|
|
*/
|
|
|
|
static inline int fscrypt_require_key(struct inode *inode)
|
|
|
|
{
|
|
|
|
if (IS_ENCRYPTED(inode)) {
|
|
|
|
int err = fscrypt_get_encryption_info(inode);
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
if (!fscrypt_has_encryption_key(inode))
|
|
|
|
return -ENOKEY;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2017-10-09 12:15:34 -07:00
|
|
|
|
|
|
|
#endif /* _LINUX_FSCRYPT_H */
|