USB: serial: cp210x: improve line-speed handling for CP2104 and CP2105
[linux/fpc-iii.git] / fs / ubifs / crypto.c
blob55c508fe8131577e77aae83865cee6b4effc0513
1 // SPDX-License-Identifier: GPL-2.0
2 #include "ubifs.h"
4 static int ubifs_crypt_get_context(struct inode *inode, void *ctx, size_t len)
6 return ubifs_xattr_get(inode, UBIFS_XATTR_NAME_ENCRYPTION_CONTEXT,
7 ctx, len);
10 static int ubifs_crypt_set_context(struct inode *inode, const void *ctx,
11 size_t len, void *fs_data)
14 * Creating an encryption context is done unlocked since we
15 * operate on a new inode which is not visible to other users
16 * at this point. So, no need to check whether inode is locked.
18 return ubifs_xattr_set(inode, UBIFS_XATTR_NAME_ENCRYPTION_CONTEXT,
19 ctx, len, 0, false);
22 static bool ubifs_crypt_empty_dir(struct inode *inode)
24 return ubifs_check_dir_empty(inode) == 0;
27 int ubifs_encrypt(const struct inode *inode, struct ubifs_data_node *dn,
28 unsigned int in_len, unsigned int *out_len, int block)
30 struct ubifs_info *c = inode->i_sb->s_fs_info;
31 void *p = &dn->data;
32 struct page *ret;
33 unsigned int pad_len = round_up(in_len, UBIFS_CIPHER_BLOCK_SIZE);
35 ubifs_assert(pad_len <= *out_len);
36 dn->compr_size = cpu_to_le16(in_len);
38 /* pad to full block cipher length */
39 if (pad_len != in_len)
40 memset(p + in_len, 0, pad_len - in_len);
42 ret = fscrypt_encrypt_page(inode, virt_to_page(&dn->data), pad_len,
43 offset_in_page(&dn->data), block, GFP_NOFS);
44 if (IS_ERR(ret)) {
45 ubifs_err(c, "fscrypt_encrypt_page failed: %ld", PTR_ERR(ret));
46 return PTR_ERR(ret);
48 *out_len = pad_len;
50 return 0;
53 int ubifs_decrypt(const struct inode *inode, struct ubifs_data_node *dn,
54 unsigned int *out_len, int block)
56 struct ubifs_info *c = inode->i_sb->s_fs_info;
57 int err;
58 unsigned int clen = le16_to_cpu(dn->compr_size);
59 unsigned int dlen = *out_len;
61 if (clen <= 0 || clen > UBIFS_BLOCK_SIZE || clen > dlen) {
62 ubifs_err(c, "bad compr_size: %i", clen);
63 return -EINVAL;
66 ubifs_assert(dlen <= UBIFS_BLOCK_SIZE);
67 err = fscrypt_decrypt_page(inode, virt_to_page(&dn->data), dlen,
68 offset_in_page(&dn->data), block);
69 if (err) {
70 ubifs_err(c, "fscrypt_decrypt_page failed: %i", err);
71 return err;
73 *out_len = clen;
75 return 0;
78 const struct fscrypt_operations ubifs_crypt_operations = {
79 .flags = FS_CFLG_OWN_PAGES,
80 .key_prefix = "ubifs:",
81 .get_context = ubifs_crypt_get_context,
82 .set_context = ubifs_crypt_set_context,
83 .empty_dir = ubifs_crypt_empty_dir,
84 .max_namelen = UBIFS_MAX_NLEN,