wlcore: Add RX_BA_WIN_SIZE_CHANGE_EVENT event
[linux/fpc-iii.git] / fs / f2fs / crypto_policy.c
blob5bbd1989d5e618bf094249f2f64f345dbf3c0743
1 /*
2 * copied from linux/fs/ext4/crypto_policy.c
4 * Copyright (C) 2015, Google, Inc.
5 * Copyright (C) 2015, Motorola Mobility.
7 * This contains encryption policy functions for f2fs with some modifications
8 * to support f2fs-specific xattr APIs.
10 * Written by Michael Halcrow, 2015.
11 * Modified by Jaegeuk Kim, 2015.
13 #include <linux/random.h>
14 #include <linux/string.h>
15 #include <linux/types.h>
16 #include <linux/f2fs_fs.h>
18 #include "f2fs.h"
19 #include "xattr.h"
21 static int f2fs_inode_has_encryption_context(struct inode *inode)
23 int res = f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
24 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT, NULL, 0, NULL);
25 return (res > 0);
29 * check whether the policy is consistent with the encryption context
30 * for the inode
32 static int f2fs_is_encryption_context_consistent_with_policy(
33 struct inode *inode, const struct f2fs_encryption_policy *policy)
35 struct f2fs_encryption_context ctx;
36 int res = f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
37 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT, &ctx,
38 sizeof(ctx), NULL);
40 if (res != sizeof(ctx))
41 return 0;
43 return (memcmp(ctx.master_key_descriptor, policy->master_key_descriptor,
44 F2FS_KEY_DESCRIPTOR_SIZE) == 0 &&
45 (ctx.flags == policy->flags) &&
46 (ctx.contents_encryption_mode ==
47 policy->contents_encryption_mode) &&
48 (ctx.filenames_encryption_mode ==
49 policy->filenames_encryption_mode));
52 static int f2fs_create_encryption_context_from_policy(
53 struct inode *inode, const struct f2fs_encryption_policy *policy)
55 struct f2fs_encryption_context ctx;
57 ctx.format = F2FS_ENCRYPTION_CONTEXT_FORMAT_V1;
58 memcpy(ctx.master_key_descriptor, policy->master_key_descriptor,
59 F2FS_KEY_DESCRIPTOR_SIZE);
61 if (!f2fs_valid_contents_enc_mode(policy->contents_encryption_mode)) {
62 printk(KERN_WARNING
63 "%s: Invalid contents encryption mode %d\n", __func__,
64 policy->contents_encryption_mode);
65 return -EINVAL;
68 if (!f2fs_valid_filenames_enc_mode(policy->filenames_encryption_mode)) {
69 printk(KERN_WARNING
70 "%s: Invalid filenames encryption mode %d\n", __func__,
71 policy->filenames_encryption_mode);
72 return -EINVAL;
75 if (policy->flags & ~F2FS_POLICY_FLAGS_VALID)
76 return -EINVAL;
78 ctx.contents_encryption_mode = policy->contents_encryption_mode;
79 ctx.filenames_encryption_mode = policy->filenames_encryption_mode;
80 ctx.flags = policy->flags;
81 BUILD_BUG_ON(sizeof(ctx.nonce) != F2FS_KEY_DERIVATION_NONCE_SIZE);
82 get_random_bytes(ctx.nonce, F2FS_KEY_DERIVATION_NONCE_SIZE);
84 return f2fs_setxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
85 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT, &ctx,
86 sizeof(ctx), NULL, XATTR_CREATE);
89 int f2fs_process_policy(const struct f2fs_encryption_policy *policy,
90 struct inode *inode)
92 if (!inode_owner_or_capable(inode))
93 return -EACCES;
95 if (policy->version != 0)
96 return -EINVAL;
98 if (!S_ISDIR(inode->i_mode))
99 return -EINVAL;
101 if (!f2fs_inode_has_encryption_context(inode)) {
102 if (!f2fs_empty_dir(inode))
103 return -ENOTEMPTY;
104 return f2fs_create_encryption_context_from_policy(inode,
105 policy);
108 if (f2fs_is_encryption_context_consistent_with_policy(inode, policy))
109 return 0;
111 printk(KERN_WARNING "%s: Policy inconsistent with encryption context\n",
112 __func__);
113 return -EINVAL;
116 int f2fs_get_policy(struct inode *inode, struct f2fs_encryption_policy *policy)
118 struct f2fs_encryption_context ctx;
119 int res;
121 if (!f2fs_encrypted_inode(inode))
122 return -ENODATA;
124 res = f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
125 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
126 &ctx, sizeof(ctx), NULL);
127 if (res != sizeof(ctx))
128 return -ENODATA;
129 if (ctx.format != F2FS_ENCRYPTION_CONTEXT_FORMAT_V1)
130 return -EINVAL;
132 policy->version = 0;
133 policy->contents_encryption_mode = ctx.contents_encryption_mode;
134 policy->filenames_encryption_mode = ctx.filenames_encryption_mode;
135 policy->flags = ctx.flags;
136 memcpy(&policy->master_key_descriptor, ctx.master_key_descriptor,
137 F2FS_KEY_DESCRIPTOR_SIZE);
138 return 0;
141 int f2fs_is_child_context_consistent_with_parent(struct inode *parent,
142 struct inode *child)
144 struct f2fs_crypt_info *parent_ci, *child_ci;
145 int res;
147 if ((parent == NULL) || (child == NULL)) {
148 pr_err("parent %p child %p\n", parent, child);
149 BUG_ON(1);
152 /* No restrictions on file types which are never encrypted */
153 if (!S_ISREG(child->i_mode) && !S_ISDIR(child->i_mode) &&
154 !S_ISLNK(child->i_mode))
155 return 1;
157 /* no restrictions if the parent directory is not encrypted */
158 if (!f2fs_encrypted_inode(parent))
159 return 1;
160 /* if the child directory is not encrypted, this is always a problem */
161 if (!f2fs_encrypted_inode(child))
162 return 0;
163 res = f2fs_get_encryption_info(parent);
164 if (res)
165 return 0;
166 res = f2fs_get_encryption_info(child);
167 if (res)
168 return 0;
169 parent_ci = F2FS_I(parent)->i_crypt_info;
170 child_ci = F2FS_I(child)->i_crypt_info;
171 if (!parent_ci && !child_ci)
172 return 1;
173 if (!parent_ci || !child_ci)
174 return 0;
176 return (memcmp(parent_ci->ci_master_key,
177 child_ci->ci_master_key,
178 F2FS_KEY_DESCRIPTOR_SIZE) == 0 &&
179 (parent_ci->ci_data_mode == child_ci->ci_data_mode) &&
180 (parent_ci->ci_filename_mode == child_ci->ci_filename_mode) &&
181 (parent_ci->ci_flags == child_ci->ci_flags));
185 * f2fs_inherit_context() - Sets a child context from its parent
186 * @parent: Parent inode from which the context is inherited.
187 * @child: Child inode that inherits the context from @parent.
189 * Return: Zero on success, non-zero otherwise
191 int f2fs_inherit_context(struct inode *parent, struct inode *child,
192 struct page *ipage)
194 struct f2fs_encryption_context ctx;
195 struct f2fs_crypt_info *ci;
196 int res;
198 res = f2fs_get_encryption_info(parent);
199 if (res < 0)
200 return res;
202 ci = F2FS_I(parent)->i_crypt_info;
203 BUG_ON(ci == NULL);
205 ctx.format = F2FS_ENCRYPTION_CONTEXT_FORMAT_V1;
207 ctx.contents_encryption_mode = ci->ci_data_mode;
208 ctx.filenames_encryption_mode = ci->ci_filename_mode;
209 ctx.flags = ci->ci_flags;
210 memcpy(ctx.master_key_descriptor, ci->ci_master_key,
211 F2FS_KEY_DESCRIPTOR_SIZE);
213 get_random_bytes(ctx.nonce, F2FS_KEY_DERIVATION_NONCE_SIZE);
214 return f2fs_setxattr(child, F2FS_XATTR_INDEX_ENCRYPTION,
215 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT, &ctx,
216 sizeof(ctx), ipage, XATTR_CREATE);