Whamcloud - gitweb
d3f5832fd6da2a1894f78a8c1e9666f786cdbf5f
[fs/lustre-release.git] / libcfs / libcfs / crypto / fname.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * This contains functions for filename crypto management
4  *
5  * Copyright (C) 2015, Google, Inc.
6  * Copyright (C) 2015, Motorola Mobility
7  *
8  * Written by Uday Savagaonkar, 2014.
9  * Modified by Jaegeuk Kim, 2015.
10  *
11  * This has not yet undergone a rigorous security audit.
12  */
13 /*
14  * Linux commit 219d54332a09
15  * tags/v5.4
16  */
17
18 #include <linux/scatterlist.h>
19 #include <crypto/skcipher.h>
20 #include "llcrypt_private.h"
21
22 static inline bool llcrypt_is_dot_dotdot(const struct qstr *str)
23 {
24         if (str->len == 1 && str->name[0] == '.')
25                 return true;
26
27         if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.')
28                 return true;
29
30         return false;
31 }
32
33 /**
34  * fname_encrypt() - encrypt a filename
35  *
36  * The output buffer must be at least as large as the input buffer.
37  * Any extra space is filled with NUL padding before encryption.
38  *
39  * Return: 0 on success, -errno on failure
40  */
41 int fname_encrypt(struct inode *inode, const struct qstr *iname,
42                   u8 *out, unsigned int olen)
43 {
44         struct skcipher_request *req = NULL;
45         DECLARE_CRYPTO_WAIT(wait);
46         struct llcrypt_info *ci = llcrypt_info(inode);
47         struct crypto_skcipher *tfm = ci->ci_ctfm;
48         union llcrypt_iv iv;
49         struct scatterlist sg;
50         int res;
51
52         /*
53          * Copy the filename to the output buffer for encrypting in-place and
54          * pad it with the needed number of NUL bytes.
55          */
56         if (WARN_ON(olen < iname->len))
57                 return -ENOBUFS;
58         memcpy(out, iname->name, iname->len);
59         memset(out + iname->len, 0, olen - iname->len);
60
61         if (tfm == NULL)
62                 return 0;
63
64         /* Initialize the IV */
65         llcrypt_generate_iv(&iv, 0, ci);
66
67         /* Set up the encryption request */
68         req = skcipher_request_alloc(tfm, GFP_NOFS);
69         if (!req)
70                 return -ENOMEM;
71         skcipher_request_set_callback(req,
72                         CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
73                         crypto_req_done, &wait);
74         sg_init_one(&sg, out, olen);
75         skcipher_request_set_crypt(req, &sg, &sg, olen, &iv);
76
77         /* Do the encryption */
78         res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
79         skcipher_request_free(req);
80         if (res < 0) {
81                 llcrypt_err(inode, "Filename encryption failed: %d", res);
82                 return res;
83         }
84
85         return 0;
86 }
87
88 /**
89  * fname_decrypt() - decrypt a filename
90  *
91  * The caller must have allocated sufficient memory for the @oname string.
92  *
93  * Return: 0 on success, -errno on failure
94  */
95 static int fname_decrypt(struct inode *inode,
96                                 const struct llcrypt_str *iname,
97                                 struct llcrypt_str *oname)
98 {
99         struct skcipher_request *req = NULL;
100         DECLARE_CRYPTO_WAIT(wait);
101         struct scatterlist src_sg, dst_sg;
102         struct llcrypt_info *ci = llcrypt_info(inode);
103         struct crypto_skcipher *tfm = ci->ci_ctfm;
104         union llcrypt_iv iv;
105         int res;
106
107         if (tfm == NULL) {
108                 memcpy(oname->name, iname->name, iname->len);
109                 oname->name[iname->len] = '\0';
110                 oname->len = iname->len;
111                 return 0;
112         }
113
114         /* Allocate request */
115         req = skcipher_request_alloc(tfm, GFP_NOFS);
116         if (!req)
117                 return -ENOMEM;
118         skcipher_request_set_callback(req,
119                 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
120                 crypto_req_done, &wait);
121
122         /* Initialize IV */
123         llcrypt_generate_iv(&iv, 0, ci);
124
125         /* Create decryption request */
126         sg_init_one(&src_sg, iname->name, iname->len);
127         sg_init_one(&dst_sg, oname->name, oname->len);
128         skcipher_request_set_crypt(req, &src_sg, &dst_sg, iname->len, &iv);
129         res = crypto_wait_req(crypto_skcipher_decrypt(req), &wait);
130         skcipher_request_free(req);
131         if (res < 0) {
132                 llcrypt_err(inode, "Filename decryption failed: %d", res);
133                 return res;
134         }
135
136         oname->len = strnlen(oname->name, iname->len);
137         return 0;
138 }
139
140 static const char lookup_table[65] =
141         "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+,";
142
143 #define BASE64_CHARS(nbytes)    DIV_ROUND_UP((nbytes) * 4, 3)
144
145 /**
146  * base64_encode() -
147  *
148  * Encodes the input string using characters from the set [A-Za-z0-9+,].
149  * The encoded string is roughly 4/3 times the size of the input string.
150  *
151  * Return: length of the encoded string
152  */
153 static int base64_encode(const u8 *src, int len, char *dst)
154 {
155         int i, bits = 0, ac = 0;
156         char *cp = dst;
157
158         for (i = 0; i < len; i++) {
159                 ac += src[i] << bits;
160                 bits += 8;
161                 do {
162                         *cp++ = lookup_table[ac & 0x3f];
163                         ac >>= 6;
164                         bits -= 6;
165                 } while (bits >= 6);
166         }
167         if (bits)
168                 *cp++ = lookup_table[ac & 0x3f];
169         return cp - dst;
170 }
171
172 static int base64_decode(const char *src, int len, u8 *dst)
173 {
174         int i, bits = 0, ac = 0;
175         const char *p;
176         u8 *cp = dst;
177
178         for (i = 0; i < len; i++) {
179                 p = strchr(lookup_table, src[i]);
180                 if (p == NULL || src[i] == 0)
181                         return -2;
182                 ac += (p - lookup_table) << bits;
183                 bits += 6;
184                 if (bits >= 8) {
185                         *cp++ = ac & 0xff;
186                         ac >>= 8;
187                         bits -= 8;
188                 }
189         }
190         if (ac)
191                 return -1;
192         return cp - dst;
193 }
194
195 bool llcrypt_fname_encrypted_size(const struct inode *inode, u32 orig_len,
196                                   u32 max_len, u32 *encrypted_len_ret)
197 {
198         const struct llcrypt_info *ci = llcrypt_info(inode);
199         int padding = 4 << (llcrypt_policy_flags(&ci->ci_policy) &
200                             LLCRYPT_POLICY_FLAGS_PAD_MASK);
201         u32 encrypted_len;
202
203         if (orig_len > max_len)
204                 return false;
205         encrypted_len = max(orig_len, (u32)LL_CRYPTO_BLOCK_SIZE);
206         encrypted_len = round_up(encrypted_len, padding);
207         *encrypted_len_ret = min(encrypted_len, max_len);
208         return true;
209 }
210
211 /**
212  * llcrypt_fname_alloc_buffer - allocate a buffer for presented filenames
213  *
214  * Allocate a buffer that is large enough to hold any decrypted or encoded
215  * filename (null-terminated), for the given maximum encrypted filename length.
216  *
217  * Return: 0 on success, -errno on failure
218  */
219 int llcrypt_fname_alloc_buffer(const struct inode *inode,
220                                u32 max_encrypted_len,
221                                struct llcrypt_str *crypto_str)
222 {
223         const u32 max_encoded_len =
224                 max_t(u32, BASE64_CHARS(LLCRYPT_FNAME_MAX_UNDIGESTED_SIZE),
225                       1 + BASE64_CHARS(sizeof(struct llcrypt_digested_name)));
226         u32 max_presented_len;
227
228         max_presented_len = max(max_encoded_len, max_encrypted_len);
229
230         crypto_str->name = kmalloc(max_presented_len + 1, GFP_NOFS);
231         if (!crypto_str->name)
232                 return -ENOMEM;
233         crypto_str->len = max_presented_len;
234         return 0;
235 }
236 EXPORT_SYMBOL(llcrypt_fname_alloc_buffer);
237
238 /**
239  * llcrypt_fname_free_buffer - free the buffer for presented filenames
240  *
241  * Free the buffer allocated by llcrypt_fname_alloc_buffer().
242  */
243 void llcrypt_fname_free_buffer(struct llcrypt_str *crypto_str)
244 {
245         if (!crypto_str)
246                 return;
247         kfree(crypto_str->name);
248         crypto_str->name = NULL;
249 }
250 EXPORT_SYMBOL(llcrypt_fname_free_buffer);
251
252 /**
253  * llcrypt_fname_disk_to_usr() - converts a filename from disk space to user
254  * space
255  *
256  * The caller must have allocated sufficient memory for the @oname string.
257  *
258  * If the key is available, we'll decrypt the disk name; otherwise, we'll encode
259  * it for presentation.  Short names are directly base64-encoded, while long
260  * names are encoded in llcrypt_digested_name format.
261  *
262  * Return: 0 on success, -errno on failure
263  */
264 int llcrypt_fname_disk_to_usr(struct inode *inode,
265                         u32 hash, u32 minor_hash,
266                         const struct llcrypt_str *iname,
267                         struct llcrypt_str *oname)
268 {
269         const struct qstr qname = LLTR_TO_QSTR(iname);
270         struct llcrypt_digested_name digested_name;
271
272         if (llcrypt_is_dot_dotdot(&qname)) {
273                 oname->name[0] = '.';
274                 oname->name[iname->len - 1] = '.';
275                 oname->len = iname->len;
276                 return 0;
277         }
278
279         if (iname->len < LL_CRYPTO_BLOCK_SIZE)
280                 return -EUCLEAN;
281
282         if (llcrypt_has_encryption_key(inode))
283                 return fname_decrypt(inode, iname, oname);
284
285         if (iname->len <= LLCRYPT_FNAME_MAX_UNDIGESTED_SIZE) {
286                 oname->len = base64_encode(iname->name, iname->len,
287                                            oname->name);
288                 return 0;
289         }
290         if (hash) {
291                 digested_name.hash = hash;
292                 digested_name.minor_hash = minor_hash;
293         } else {
294                 digested_name.hash = 0;
295                 digested_name.minor_hash = 0;
296         }
297         memcpy(digested_name.digest,
298                LLCRYPT_FNAME_DIGEST(iname->name, iname->len),
299                LLCRYPT_FNAME_DIGEST_SIZE);
300         oname->name[0] = '_';
301         oname->len = 1 + base64_encode((const u8 *)&digested_name,
302                                        sizeof(digested_name), oname->name + 1);
303         return 0;
304 }
305 EXPORT_SYMBOL(llcrypt_fname_disk_to_usr);
306
307 /**
308  * llcrypt_setup_filename() - prepare to search a possibly encrypted directory
309  * @dir: the directory that will be searched
310  * @iname: the user-provided filename being searched for
311  * @lookup: 1 if we're allowed to proceed without the key because it's
312  *      ->lookup() or we're finding the dir_entry for deletion; 0 if we cannot
313  *      proceed without the key because we're going to create the dir_entry.
314  * @fname: the filename information to be filled in
315  *
316  * Given a user-provided filename @iname, this function sets @fname->disk_name
317  * to the name that would be stored in the on-disk directory entry, if possible.
318  * If the directory is unencrypted this is simply @iname.  Else, if we have the
319  * directory's encryption key, then @iname is the plaintext, so we encrypt it to
320  * get the disk_name.
321  *
322  * Else, for keyless @lookup operations, @iname is the presented ciphertext, so
323  * we decode it to get either the ciphertext disk_name (for short names) or the
324  * llcrypt_digested_name (for long names).  Non-@lookup operations will be
325  * impossible in this case, so we fail them with ENOKEY.
326  *
327  * If successful, llcrypt_free_filename() must be called later to clean up.
328  *
329  * Return: 0 on success, -errno on failure
330  */
331 int llcrypt_setup_filename(struct inode *dir, const struct qstr *iname,
332                               int lookup, struct llcrypt_name *fname)
333 {
334         int ret;
335         int digested;
336
337         memset(fname, 0, sizeof(struct llcrypt_name));
338         fname->usr_fname = iname;
339
340         if (!IS_ENCRYPTED(dir) || llcrypt_is_dot_dotdot(iname)) {
341                 fname->disk_name.name = (unsigned char *)iname->name;
342                 fname->disk_name.len = iname->len;
343                 return 0;
344         }
345         ret = llcrypt_get_encryption_info(dir);
346         if (ret)
347                 return ret;
348
349         if (llcrypt_has_encryption_key(dir)) {
350                 struct lustre_sb_info *lsi = s2lsi(dir->i_sb);
351
352                 if (!llcrypt_fname_encrypted_size(dir, iname->len,
353                                                   lsi ?
354                                                     lsi->lsi_cop->max_namelen :
355                                                     NAME_MAX,
356                                                   &fname->crypto_buf.len))
357                         return -ENAMETOOLONG;
358                 fname->crypto_buf.name = kmalloc(fname->crypto_buf.len,
359                                                  GFP_NOFS);
360                 if (!fname->crypto_buf.name)
361                         return -ENOMEM;
362
363                 ret = fname_encrypt(dir, iname, fname->crypto_buf.name,
364                                     fname->crypto_buf.len);
365                 if (ret)
366                         goto errout;
367                 fname->disk_name.name = fname->crypto_buf.name;
368                 fname->disk_name.len = fname->crypto_buf.len;
369                 return 0;
370         }
371         if (!lookup)
372                 return -ENOKEY;
373         fname->is_ciphertext_name = true;
374
375         /*
376          * We don't have the key and we are doing a lookup; decode the
377          * user-supplied name
378          */
379         if (iname->name[0] == '_') {
380                 if (iname->len !=
381                     1 + BASE64_CHARS(sizeof(struct llcrypt_digested_name)))
382                         return -ENOENT;
383                 digested = 1;
384         } else {
385                 if (iname->len >
386                     BASE64_CHARS(LLCRYPT_FNAME_MAX_UNDIGESTED_SIZE))
387                         return -ENOENT;
388                 digested = 0;
389         }
390
391         fname->crypto_buf.name =
392                 kmalloc(max_t(size_t, LLCRYPT_FNAME_MAX_UNDIGESTED_SIZE,
393                               sizeof(struct llcrypt_digested_name)),
394                         GFP_KERNEL);
395         if (fname->crypto_buf.name == NULL)
396                 return -ENOMEM;
397
398         ret = base64_decode(iname->name + digested, iname->len - digested,
399                             fname->crypto_buf.name);
400         if (ret < 0) {
401                 ret = -ENOENT;
402                 goto errout;
403         }
404         fname->crypto_buf.len = ret;
405         if (digested) {
406                 const struct llcrypt_digested_name *n =
407                         (const void *)fname->crypto_buf.name;
408                 fname->hash = n->hash;
409                 fname->minor_hash = n->minor_hash;
410         } else {
411                 fname->disk_name.name = fname->crypto_buf.name;
412                 fname->disk_name.len = fname->crypto_buf.len;
413         }
414         return 0;
415
416 errout:
417         kfree(fname->crypto_buf.name);
418         return ret;
419 }
420 EXPORT_SYMBOL(llcrypt_setup_filename);