]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/ubifs/dir.c
Merge tag 'powerpc-5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[mirror_ubuntu-hirsute-kernel.git] / fs / ubifs / dir.c
CommitLineData
1e51764a
AB
1/* * This file is part of UBIFS.
2 *
3 * Copyright (C) 2006-2008 Nokia Corporation.
4 * Copyright (C) 2006, 2007 University of Szeged, Hungary
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * Authors: Artem Bityutskiy (Битюцкий Артём)
20 * Adrian Hunter
21 * Zoltan Sogor
22 */
23
24/*
25 * This file implements directory operations.
26 *
27 * All FS operations in this file allocate budget before writing anything to the
28 * media. If they fail to allocate it, the error is returned. The only
29 * exceptions are 'ubifs_unlink()' and 'ubifs_rmdir()' which keep working even
30 * if they unable to allocate the budget, because deletion %-ENOSPC failure is
31 * not what users are usually ready to get. UBIFS budgeting subsystem has some
32 * space reserved for these purposes.
33 *
34 * All operations in this file write all inodes which they change straight
35 * away, instead of marking them dirty. For example, 'ubifs_link()' changes
36 * @i_size of the parent inode and writes the parent inode together with the
37 * target inode. This was done to simplify file-system recovery which would
38 * otherwise be very difficult to do. The only exception is rename which marks
39 * the re-named inode dirty (because its @i_ctime is updated) but does not
40 * write it, but just marks it as dirty.
41 */
42
43#include "ubifs.h"
44
45/**
46 * inherit_flags - inherit flags of the parent inode.
47 * @dir: parent inode
48 * @mode: new inode mode flags
49 *
50 * This is a helper function for 'ubifs_new_inode()' which inherits flag of the
51 * parent directory inode @dir. UBIFS inodes inherit the following flags:
52 * o %UBIFS_COMPR_FL, which is useful to switch compression on/of on
53 * sub-directory basis;
54 * o %UBIFS_SYNC_FL - useful for the same reasons;
55 * o %UBIFS_DIRSYNC_FL - similar, but relevant only to directories.
56 *
57 * This function returns the inherited flags.
58 */
ad44be5c 59static int inherit_flags(const struct inode *dir, umode_t mode)
1e51764a
AB
60{
61 int flags;
62 const struct ubifs_inode *ui = ubifs_inode(dir);
63
64 if (!S_ISDIR(dir->i_mode))
65 /*
66 * The parent is not a directory, which means that an extended
67 * attribute inode is being created. No flags.
68 */
69 return 0;
70
71 flags = ui->flags & (UBIFS_COMPR_FL | UBIFS_SYNC_FL | UBIFS_DIRSYNC_FL);
72 if (!S_ISDIR(mode))
73 /* The "DIRSYNC" flag only applies to directories */
74 flags &= ~UBIFS_DIRSYNC_FL;
75 return flags;
76}
77
78/**
79 * ubifs_new_inode - allocate new UBIFS inode object.
80 * @c: UBIFS file-system description object
81 * @dir: parent directory inode
82 * @mode: inode mode flags
83 *
84 * This function finds an unused inode number, allocates new inode and
85 * initializes it. Returns new inode in case of success and an error code in
86 * case of failure.
87 */
d475a507 88struct inode *ubifs_new_inode(struct ubifs_info *c, struct inode *dir,
ad44be5c 89 umode_t mode)
1e51764a 90{
d475a507 91 int err;
1e51764a
AB
92 struct inode *inode;
93 struct ubifs_inode *ui;
d475a507
RW
94 bool encrypted = false;
95
96 if (ubifs_crypt_is_encrypted(dir)) {
97 err = fscrypt_get_encryption_info(dir);
98 if (err) {
99 ubifs_err(c, "fscrypt_get_encryption_info failed: %i", err);
100 return ERR_PTR(err);
101 }
102
103 if (!fscrypt_has_encryption_key(dir))
104 return ERR_PTR(-EPERM);
105
106 encrypted = true;
107 }
1e51764a
AB
108
109 inode = new_inode(c->vfs_sb);
110 ui = ubifs_inode(inode);
111 if (!inode)
112 return ERR_PTR(-ENOMEM);
113
114 /*
115 * Set 'S_NOCMTIME' to prevent VFS form updating [mc]time of inodes and
116 * marking them dirty in file write path (see 'file_update_time()').
117 * UBIFS has to fully control "clean <-> dirty" transitions of inodes
118 * to make budgeting work.
119 */
12e776a0 120 inode->i_flags |= S_NOCMTIME;
1e51764a 121
abf5d08a 122 inode_init_owner(inode, dir, mode);
1e51764a 123 inode->i_mtime = inode->i_atime = inode->i_ctime =
607a11ad 124 current_time(inode);
1e51764a 125 inode->i_mapping->nrpages = 0;
1e51764a
AB
126
127 switch (mode & S_IFMT) {
128 case S_IFREG:
129 inode->i_mapping->a_ops = &ubifs_file_address_operations;
130 inode->i_op = &ubifs_file_inode_operations;
131 inode->i_fop = &ubifs_file_operations;
132 break;
133 case S_IFDIR:
134 inode->i_op = &ubifs_dir_inode_operations;
135 inode->i_fop = &ubifs_dir_operations;
136 inode->i_size = ui->ui_size = UBIFS_INO_NODE_SZ;
137 break;
138 case S_IFLNK:
139 inode->i_op = &ubifs_symlink_inode_operations;
140 break;
141 case S_IFSOCK:
142 case S_IFIFO:
143 case S_IFBLK:
144 case S_IFCHR:
145 inode->i_op = &ubifs_file_inode_operations;
f34e87f5 146 encrypted = false;
1e51764a
AB
147 break;
148 default:
149 BUG();
150 }
151
152 ui->flags = inherit_flags(dir, mode);
153 ubifs_set_inode_flags(inode);
154 if (S_ISREG(mode))
155 ui->compr_type = c->default_compr;
156 else
157 ui->compr_type = UBIFS_COMPR_NONE;
158 ui->synced_i_size = 0;
159
160 spin_lock(&c->cnt_lock);
161 /* Inode number overflow is currently not supported */
162 if (c->highest_inum >= INUM_WARN_WATERMARK) {
163 if (c->highest_inum >= INUM_WATERMARK) {
164 spin_unlock(&c->cnt_lock);
235c362b 165 ubifs_err(c, "out of inode numbers");
1e51764a
AB
166 make_bad_inode(inode);
167 iput(inode);
168 return ERR_PTR(-EINVAL);
169 }
1a7e985d 170 ubifs_warn(c, "running out of inode numbers (current %lu, max %u)",
e84461ad 171 (unsigned long)c->highest_inum, INUM_WATERMARK);
1e51764a
AB
172 }
173
174 inode->i_ino = ++c->highest_inum;
1e51764a
AB
175 /*
176 * The creation sequence number remains with this inode for its
177 * lifetime. All nodes for this inode have a greater sequence number,
178 * and so it is possible to distinguish obsolete nodes belonging to a
179 * previous incarnation of the same inode number - for example, for the
180 * purpose of rebuilding the index.
181 */
182 ui->creat_sqnum = ++c->max_sqnum;
183 spin_unlock(&c->cnt_lock);
d475a507
RW
184
185 if (encrypted) {
186 err = fscrypt_inherit_context(dir, inode, &encrypted, true);
187 if (err) {
188 ubifs_err(c, "fscrypt_inherit_context failed: %i", err);
189 make_bad_inode(inode);
190 iput(inode);
191 return ERR_PTR(err);
192 }
193 }
194
1e51764a
AB
195 return inode;
196}
197
bb2615d4
AB
198static int dbg_check_name(const struct ubifs_info *c,
199 const struct ubifs_dent_node *dent,
f4f61d2c 200 const struct fscrypt_name *nm)
1e51764a 201{
2b1844a8 202 if (!dbg_is_chk_gen(c))
1e51764a 203 return 0;
f4f61d2c 204 if (le16_to_cpu(dent->nlen) != fname_len(nm))
1e51764a 205 return -EINVAL;
f4f61d2c 206 if (memcmp(dent->name, fname_name(nm), fname_len(nm)))
1e51764a
AB
207 return -EINVAL;
208 return 0;
209}
210
1e51764a 211static struct dentry *ubifs_lookup(struct inode *dir, struct dentry *dentry,
00cd8dd3 212 unsigned int flags)
1e51764a
AB
213{
214 int err;
215 union ubifs_key key;
216 struct inode *inode = NULL;
191ac107 217 struct ubifs_dent_node *dent = NULL;
1e51764a 218 struct ubifs_info *c = dir->i_sb->s_fs_info;
f4f61d2c 219 struct fscrypt_name nm;
1e51764a 220
4cb2a01d 221 dbg_gen("'%pd' in dir ino %lu", dentry, dir->i_ino);
1e51764a 222
b01531db
EB
223 err = fscrypt_prepare_lookup(dir, dentry, &nm);
224 if (err == -ENOENT)
225 return d_splice_alias(NULL, dentry);
f4f61d2c
RW
226 if (err)
227 return ERR_PTR(err);
228
229 if (fname_len(&nm) > UBIFS_MAX_NLEN) {
191ac107
AV
230 inode = ERR_PTR(-ENAMETOOLONG);
231 goto done;
f4f61d2c 232 }
1e51764a
AB
233
234 dent = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
f4f61d2c 235 if (!dent) {
191ac107
AV
236 inode = ERR_PTR(-ENOMEM);
237 goto done;
f4f61d2c 238 }
1e51764a 239
f4f61d2c 240 if (nm.hash) {
6eb61d58
RW
241 ubifs_assert(c, fname_len(&nm) == 0);
242 ubifs_assert(c, fname_name(&nm) == NULL);
f4f61d2c 243 dent_key_init_hash(c, &key, dir->i_ino, nm.hash);
528e3d17 244 err = ubifs_tnc_lookup_dh(c, &key, dent, nm.minor_hash);
f4f61d2c
RW
245 } else {
246 dent_key_init(c, &key, dir->i_ino, &nm);
247 err = ubifs_tnc_lookup_nm(c, &key, dent, &nm);
248 }
1e51764a 249
1e51764a 250 if (err) {
191ac107 251 if (err == -ENOENT)
1e51764a 252 dbg_gen("not found");
191ac107
AV
253 else
254 inode = ERR_PTR(err);
255 goto done;
1e51764a
AB
256 }
257
f4f61d2c 258 if (dbg_check_name(c, dent, &nm)) {
191ac107
AV
259 inode = ERR_PTR(-EINVAL);
260 goto done;
1e51764a
AB
261 }
262
263 inode = ubifs_iget(dir->i_sb, le64_to_cpu(dent->inum));
264 if (IS_ERR(inode)) {
265 /*
266 * This should not happen. Probably the file-system needs
267 * checking.
268 */
269 err = PTR_ERR(inode);
235c362b 270 ubifs_err(c, "dead directory entry '%pd', error %d",
4cb2a01d 271 dentry, err);
1e51764a 272 ubifs_ro_mode(c, err);
191ac107 273 goto done;
1e51764a
AB
274 }
275
413d5a9e
EB
276 if (ubifs_crypt_is_encrypted(dir) &&
277 (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) &&
278 !fscrypt_has_permitted_context(dir, inode)) {
279 ubifs_warn(c, "Inconsistent encryption contexts: %lu/%lu",
280 dir->i_ino, inode->i_ino);
191ac107
AV
281 iput(inode);
282 inode = ERR_PTR(-EPERM);
413d5a9e
EB
283 }
284
1e51764a
AB
285done:
286 kfree(dent);
f4f61d2c 287 fscrypt_free_filename(&nm);
191ac107 288 return d_splice_alias(inode, dentry);
1e51764a
AB
289}
290
4acdaf27 291static int ubifs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
ebfc3b49 292 bool excl)
1e51764a
AB
293{
294 struct inode *inode;
295 struct ubifs_info *c = dir->i_sb->s_fs_info;
1e51764a
AB
296 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
297 .dirtied_ino = 1 };
298 struct ubifs_inode *dir_ui = ubifs_inode(dir);
f4f61d2c
RW
299 struct fscrypt_name nm;
300 int err, sz_change;
1e51764a
AB
301
302 /*
303 * Budget request settings: new inode, new direntry, changing the
304 * parent directory inode.
305 */
306
4cb2a01d
AV
307 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
308 dentry, mode, dir->i_ino);
1e51764a
AB
309
310 err = ubifs_budget_space(c, &req);
311 if (err)
312 return err;
313
f4f61d2c
RW
314 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
315 if (err)
316 goto out_budg;
317
318 sz_change = CALC_DENT_SIZE(fname_len(&nm));
319
1e51764a
AB
320 inode = ubifs_new_inode(c, dir, mode);
321 if (IS_ERR(inode)) {
322 err = PTR_ERR(inode);
f4f61d2c 323 goto out_fname;
1e51764a
AB
324 }
325
d7f0b70d
SN
326 err = ubifs_init_security(dir, inode, &dentry->d_name);
327 if (err)
9401a795 328 goto out_inode;
d7f0b70d 329
1e51764a
AB
330 mutex_lock(&dir_ui->ui_mutex);
331 dir->i_size += sz_change;
332 dir_ui->ui_size = dir->i_size;
333 dir->i_mtime = dir->i_ctime = inode->i_ctime;
f4f61d2c 334 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
1e51764a
AB
335 if (err)
336 goto out_cancel;
337 mutex_unlock(&dir_ui->ui_mutex);
338
339 ubifs_release_budget(c, &req);
f4f61d2c 340 fscrypt_free_filename(&nm);
1e51764a
AB
341 insert_inode_hash(inode);
342 d_instantiate(dentry, inode);
343 return 0;
344
345out_cancel:
346 dir->i_size -= sz_change;
347 dir_ui->ui_size = dir->i_size;
348 mutex_unlock(&dir_ui->ui_mutex);
9401a795 349out_inode:
1e51764a
AB
350 make_bad_inode(inode);
351 iput(inode);
f4f61d2c
RW
352out_fname:
353 fscrypt_free_filename(&nm);
1e51764a
AB
354out_budg:
355 ubifs_release_budget(c, &req);
235c362b 356 ubifs_err(c, "cannot create regular file, error %d", err);
1e51764a
AB
357 return err;
358}
359
9e0a1fff
RW
360static int do_tmpfile(struct inode *dir, struct dentry *dentry,
361 umode_t mode, struct inode **whiteout)
474b9370
RW
362{
363 struct inode *inode;
364 struct ubifs_info *c = dir->i_sb->s_fs_info;
365 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1};
366 struct ubifs_budget_req ino_req = { .dirtied_ino = 1 };
367 struct ubifs_inode *ui, *dir_ui = ubifs_inode(dir);
368 int err, instantiated = 0;
f4f61d2c 369 struct fscrypt_name nm;
474b9370
RW
370
371 /*
372 * Budget request settings: new dirty inode, new direntry,
373 * budget for dirtied inode will be released via writeback.
374 */
375
376 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
377 dentry, mode, dir->i_ino);
378
f4f61d2c 379 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
474b9370
RW
380 if (err)
381 return err;
382
f4f61d2c
RW
383 err = ubifs_budget_space(c, &req);
384 if (err) {
385 fscrypt_free_filename(&nm);
386 return err;
387 }
388
474b9370
RW
389 err = ubifs_budget_space(c, &ino_req);
390 if (err) {
391 ubifs_release_budget(c, &req);
f4f61d2c 392 fscrypt_free_filename(&nm);
474b9370
RW
393 return err;
394 }
395
396 inode = ubifs_new_inode(c, dir, mode);
397 if (IS_ERR(inode)) {
398 err = PTR_ERR(inode);
399 goto out_budg;
400 }
401 ui = ubifs_inode(inode);
402
9e0a1fff
RW
403 if (whiteout) {
404 init_special_inode(inode, inode->i_mode, WHITEOUT_DEV);
6eb61d58 405 ubifs_assert(c, inode->i_op == &ubifs_file_inode_operations);
9e0a1fff
RW
406 }
407
474b9370
RW
408 err = ubifs_init_security(dir, inode, &dentry->d_name);
409 if (err)
410 goto out_inode;
411
412 mutex_lock(&ui->ui_mutex);
413 insert_inode_hash(inode);
9e0a1fff
RW
414
415 if (whiteout) {
416 mark_inode_dirty(inode);
417 drop_nlink(inode);
418 *whiteout = inode;
419 } else {
420 d_tmpfile(dentry, inode);
421 }
6eb61d58 422 ubifs_assert(c, ui->dirty);
9e0a1fff 423
474b9370
RW
424 instantiated = 1;
425 mutex_unlock(&ui->ui_mutex);
426
427 mutex_lock(&dir_ui->ui_mutex);
f4f61d2c 428 err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
474b9370
RW
429 if (err)
430 goto out_cancel;
431 mutex_unlock(&dir_ui->ui_mutex);
432
433 ubifs_release_budget(c, &req);
434
435 return 0;
436
437out_cancel:
438 mutex_unlock(&dir_ui->ui_mutex);
439out_inode:
440 make_bad_inode(inode);
441 if (!instantiated)
442 iput(inode);
443out_budg:
444 ubifs_release_budget(c, &req);
445 if (!instantiated)
446 ubifs_release_budget(c, &ino_req);
f4f61d2c 447 fscrypt_free_filename(&nm);
474b9370
RW
448 ubifs_err(c, "cannot create temporary file, error %d", err);
449 return err;
450}
451
9e0a1fff
RW
452static int ubifs_tmpfile(struct inode *dir, struct dentry *dentry,
453 umode_t mode)
454{
455 return do_tmpfile(dir, dentry, mode, NULL);
456}
457
1e51764a
AB
458/**
459 * vfs_dent_type - get VFS directory entry type.
460 * @type: UBIFS directory entry type
461 *
462 * This function converts UBIFS directory entry type into VFS directory entry
463 * type.
464 */
465static unsigned int vfs_dent_type(uint8_t type)
466{
467 switch (type) {
468 case UBIFS_ITYPE_REG:
469 return DT_REG;
470 case UBIFS_ITYPE_DIR:
471 return DT_DIR;
472 case UBIFS_ITYPE_LNK:
473 return DT_LNK;
474 case UBIFS_ITYPE_BLK:
475 return DT_BLK;
476 case UBIFS_ITYPE_CHR:
477 return DT_CHR;
478 case UBIFS_ITYPE_FIFO:
479 return DT_FIFO;
480 case UBIFS_ITYPE_SOCK:
481 return DT_SOCK;
482 default:
483 BUG();
484 }
485 return 0;
486}
487
488/*
489 * The classical Unix view for directory is that it is a linear array of
490 * (name, inode number) entries. Linux/VFS assumes this model as well.
491 * Particularly, 'readdir()' call wants us to return a directory entry offset
492 * which later may be used to continue 'readdir()'ing the directory or to
493 * 'seek()' to that specific direntry. Obviously UBIFS does not really fit this
494 * model because directory entries are identified by keys, which may collide.
495 *
496 * UBIFS uses directory entry hash value for directory offsets, so
497 * 'seekdir()'/'telldir()' may not always work because of possible key
498 * collisions. But UBIFS guarantees that consecutive 'readdir()' calls work
499 * properly by means of saving full directory entry name in the private field
500 * of the file description object.
501 *
502 * This means that UBIFS cannot support NFS which requires full
503 * 'seekdir()'/'telldir()' support.
504 */
01122e06 505static int ubifs_readdir(struct file *file, struct dir_context *ctx)
1e51764a 506{
ba75d570 507 int fstr_real_len = 0, err = 0;
f4f61d2c
RW
508 struct fscrypt_name nm;
509 struct fscrypt_str fstr = {0};
1e51764a
AB
510 union ubifs_key key;
511 struct ubifs_dent_node *dent;
496ad9aa 512 struct inode *dir = file_inode(file);
1e51764a 513 struct ubifs_info *c = dir->i_sb->s_fs_info;
f4f61d2c 514 bool encrypted = ubifs_crypt_is_encrypted(dir);
1e51764a 515
01122e06 516 dbg_gen("dir ino %lu, f_pos %#llx", dir->i_ino, ctx->pos);
1e51764a 517
01122e06 518 if (ctx->pos > UBIFS_S_KEY_HASH_MASK || ctx->pos == 2)
1e51764a
AB
519 /*
520 * The directory was seek'ed to a senseless position or there
521 * are no more entries.
522 */
523 return 0;
524
f4f61d2c
RW
525 if (encrypted) {
526 err = fscrypt_get_encryption_info(dir);
527 if (err && err != -ENOKEY)
528 return err;
529
530 err = fscrypt_fname_alloc_buffer(dir, UBIFS_MAX_NLEN, &fstr);
531 if (err)
532 return err;
533
534 fstr_real_len = fstr.len;
535 }
536
605c912b
AB
537 if (file->f_version == 0) {
538 /*
539 * The file was seek'ed, which means that @file->private_data
540 * is now invalid. This may also be just the first
541 * 'ubifs_readdir()' invocation, in which case
542 * @file->private_data is NULL, and the below code is
543 * basically a no-op.
544 */
545 kfree(file->private_data);
546 file->private_data = NULL;
547 }
548
549 /*
550 * 'generic_file_llseek()' unconditionally sets @file->f_version to
551 * zero, and we use this for detecting whether the file was seek'ed.
552 */
553 file->f_version = 1;
554
1e51764a 555 /* File positions 0 and 1 correspond to "." and ".." */
01122e06 556 if (ctx->pos < 2) {
6eb61d58 557 ubifs_assert(c, !file->private_data);
f4f61d2c
RW
558 if (!dir_emit_dots(file, ctx)) {
559 if (encrypted)
560 fscrypt_fname_free_buffer(&fstr);
1e51764a 561 return 0;
f4f61d2c 562 }
1e51764a
AB
563
564 /* Find the first entry in TNC and save it */
565 lowest_dent_key(c, &key, dir->i_ino);
f4f61d2c 566 fname_len(&nm) = 0;
1e51764a
AB
567 dent = ubifs_tnc_next_ent(c, &key, &nm);
568 if (IS_ERR(dent)) {
569 err = PTR_ERR(dent);
570 goto out;
571 }
572
01122e06 573 ctx->pos = key_hash_flash(c, &dent->key);
1e51764a
AB
574 file->private_data = dent;
575 }
576
577 dent = file->private_data;
578 if (!dent) {
579 /*
580 * The directory was seek'ed to and is now readdir'ed.
01122e06 581 * Find the entry corresponding to @ctx->pos or the closest one.
1e51764a 582 */
01122e06 583 dent_key_init_hash(c, &key, dir->i_ino, ctx->pos);
f4f61d2c 584 fname_len(&nm) = 0;
1e51764a
AB
585 dent = ubifs_tnc_next_ent(c, &key, &nm);
586 if (IS_ERR(dent)) {
587 err = PTR_ERR(dent);
588 goto out;
589 }
01122e06 590 ctx->pos = key_hash_flash(c, &dent->key);
1e51764a
AB
591 file->private_data = dent;
592 }
593
594 while (1) {
b20e2d99
HL
595 dbg_gen("ino %llu, new f_pos %#x",
596 (unsigned long long)le64_to_cpu(dent->inum),
1e51764a 597 key_hash_flash(c, &dent->key));
6eb61d58 598 ubifs_assert(c, le64_to_cpu(dent->ch.sqnum) >
0ecb9529 599 ubifs_inode(dir)->creat_sqnum);
1e51764a 600
f4f61d2c
RW
601 fname_len(&nm) = le16_to_cpu(dent->nlen);
602 fname_name(&nm) = dent->name;
603
604 if (encrypted) {
605 fstr.len = fstr_real_len;
606
528e3d17
RW
607 err = fscrypt_fname_disk_to_usr(dir, key_hash_flash(c,
608 &dent->key),
609 le32_to_cpu(dent->cookie),
610 &nm.disk_name, &fstr);
ca7f85be 611 if (err)
f4f61d2c
RW
612 goto out;
613 } else {
614 fstr.len = fname_len(&nm);
615 fstr.name = fname_name(&nm);
616 }
617
618 if (!dir_emit(ctx, fstr.name, fstr.len,
1e51764a 619 le64_to_cpu(dent->inum),
f4f61d2c
RW
620 vfs_dent_type(dent->type))) {
621 if (encrypted)
622 fscrypt_fname_free_buffer(&fstr);
1e51764a 623 return 0;
f4f61d2c 624 }
1e51764a
AB
625
626 /* Switch to the next entry */
627 key_read(c, &dent->key, &key);
1e51764a
AB
628 dent = ubifs_tnc_next_ent(c, &key, &nm);
629 if (IS_ERR(dent)) {
630 err = PTR_ERR(dent);
631 goto out;
632 }
633
634 kfree(file->private_data);
01122e06 635 ctx->pos = key_hash_flash(c, &dent->key);
1e51764a
AB
636 file->private_data = dent;
637 cond_resched();
638 }
639
640out:
aeeb14f7
RW
641 kfree(file->private_data);
642 file->private_data = NULL;
643
f4f61d2c
RW
644 if (encrypted)
645 fscrypt_fname_free_buffer(&fstr);
646
c83ed4c9 647 if (err != -ENOENT)
235c362b 648 ubifs_err(c, "cannot find next direntry, error %d", err);
a00052a2
RW
649 else
650 /*
651 * -ENOENT is a non-fatal error in this context, the TNC uses
652 * it to indicate that the cursor moved past the current directory
653 * and readdir() has to stop.
654 */
655 err = 0;
656
1e51764a 657
605c912b 658 /* 2 is a special value indicating that there are no more direntries */
01122e06 659 ctx->pos = 2;
c83ed4c9 660 return err;
1e51764a
AB
661}
662
1e51764a
AB
663/* Free saved readdir() state when the directory is closed */
664static int ubifs_dir_release(struct inode *dir, struct file *file)
665{
666 kfree(file->private_data);
667 file->private_data = NULL;
668 return 0;
669}
670
671/**
82c1593c 672 * lock_2_inodes - a wrapper for locking two UBIFS inodes.
1e51764a
AB
673 * @inode1: first inode
674 * @inode2: second inode
82c1593c
AB
675 *
676 * We do not implement any tricks to guarantee strict lock ordering, because
677 * VFS has already done it for us on the @i_mutex. So this is just a simple
678 * wrapper function.
1e51764a
AB
679 */
680static void lock_2_inodes(struct inode *inode1, struct inode *inode2)
681{
82c1593c
AB
682 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
683 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
1e51764a
AB
684}
685
686/**
82c1593c 687 * unlock_2_inodes - a wrapper for unlocking two UBIFS inodes.
1e51764a
AB
688 * @inode1: first inode
689 * @inode2: second inode
690 */
691static void unlock_2_inodes(struct inode *inode1, struct inode *inode2)
692{
1e51764a 693 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
82c1593c 694 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
1e51764a
AB
695}
696
697static int ubifs_link(struct dentry *old_dentry, struct inode *dir,
698 struct dentry *dentry)
699{
700 struct ubifs_info *c = dir->i_sb->s_fs_info;
2b0143b5 701 struct inode *inode = d_inode(old_dentry);
1e51764a
AB
702 struct ubifs_inode *ui = ubifs_inode(inode);
703 struct ubifs_inode *dir_ui = ubifs_inode(dir);
704 int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len);
705 struct ubifs_budget_req req = { .new_dent = 1, .dirtied_ino = 2,
dab4b4d2 706 .dirtied_ino_d = ALIGN(ui->data_len, 8) };
f4f61d2c 707 struct fscrypt_name nm;
1e51764a
AB
708
709 /*
710 * Budget request settings: new direntry, changing the target inode,
711 * changing the parent inode.
712 */
713
4cb2a01d
AV
714 dbg_gen("dent '%pd' to ino %lu (nlink %d) in dir ino %lu",
715 dentry, inode->i_ino,
1e51764a 716 inode->i_nlink, dir->i_ino);
6eb61d58
RW
717 ubifs_assert(c, inode_is_locked(dir));
718 ubifs_assert(c, inode_is_locked(inode));
8b3884a8 719
5653878c
EB
720 err = fscrypt_prepare_link(old_dentry, dir, dentry);
721 if (err)
722 return err;
f4f61d2c
RW
723
724 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
1e51764a
AB
725 if (err)
726 return err;
727
f4f61d2c
RW
728 err = dbg_check_synced_i_size(c, inode);
729 if (err)
730 goto out_fname;
731
1e51764a
AB
732 err = ubifs_budget_space(c, &req);
733 if (err)
f4f61d2c 734 goto out_fname;
1e51764a
AB
735
736 lock_2_inodes(dir, inode);
32fe905c
RW
737
738 /* Handle O_TMPFILE corner case, it is allowed to link a O_TMPFILE. */
739 if (inode->i_nlink == 0)
740 ubifs_delete_orphan(c, inode->i_ino);
741
1e51764a 742 inc_nlink(inode);
7de9c6ee 743 ihold(inode);
607a11ad 744 inode->i_ctime = current_time(inode);
1e51764a
AB
745 dir->i_size += sz_change;
746 dir_ui->ui_size = dir->i_size;
747 dir->i_mtime = dir->i_ctime = inode->i_ctime;
f4f61d2c 748 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
1e51764a
AB
749 if (err)
750 goto out_cancel;
751 unlock_2_inodes(dir, inode);
752
753 ubifs_release_budget(c, &req);
754 d_instantiate(dentry, inode);
f4f61d2c 755 fscrypt_free_filename(&nm);
1e51764a
AB
756 return 0;
757
758out_cancel:
759 dir->i_size -= sz_change;
760 dir_ui->ui_size = dir->i_size;
761 drop_nlink(inode);
32fe905c
RW
762 if (inode->i_nlink == 0)
763 ubifs_add_orphan(c, inode->i_ino);
1e51764a
AB
764 unlock_2_inodes(dir, inode);
765 ubifs_release_budget(c, &req);
766 iput(inode);
f4f61d2c
RW
767out_fname:
768 fscrypt_free_filename(&nm);
1e51764a
AB
769 return err;
770}
771
772static int ubifs_unlink(struct inode *dir, struct dentry *dentry)
773{
774 struct ubifs_info *c = dir->i_sb->s_fs_info;
2b0143b5 775 struct inode *inode = d_inode(dentry);
1e51764a 776 struct ubifs_inode *dir_ui = ubifs_inode(dir);
f4f61d2c 777 int err, sz_change, budgeted = 1;
1e51764a 778 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
c43be108 779 unsigned int saved_nlink = inode->i_nlink;
f4f61d2c 780 struct fscrypt_name nm;
1e51764a
AB
781
782 /*
783 * Budget request settings: deletion direntry, deletion inode (+1 for
784 * @dirtied_ino), changing the parent directory inode. If budgeting
785 * fails, go ahead anyway because we have extra space reserved for
786 * deletions.
787 */
788
4cb2a01d
AV
789 dbg_gen("dent '%pd' from ino %lu (nlink %d) in dir ino %lu",
790 dentry, inode->i_ino,
1e51764a 791 inode->i_nlink, dir->i_ino);
f4f61d2c 792
f4f61d2c
RW
793 err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm);
794 if (err)
795 return err;
796
9ca2d732
RW
797 err = ubifs_purge_xattrs(inode);
798 if (err)
799 return err;
800
f4f61d2c
RW
801 sz_change = CALC_DENT_SIZE(fname_len(&nm));
802
6eb61d58
RW
803 ubifs_assert(c, inode_is_locked(dir));
804 ubifs_assert(c, inode_is_locked(inode));
d808efb4 805 err = dbg_check_synced_i_size(c, inode);
1e51764a 806 if (err)
f4f61d2c 807 goto out_fname;
1e51764a
AB
808
809 err = ubifs_budget_space(c, &req);
810 if (err) {
811 if (err != -ENOSPC)
f4f61d2c 812 goto out_fname;
1e51764a
AB
813 budgeted = 0;
814 }
815
816 lock_2_inodes(dir, inode);
607a11ad 817 inode->i_ctime = current_time(dir);
1e51764a
AB
818 drop_nlink(inode);
819 dir->i_size -= sz_change;
820 dir_ui->ui_size = dir->i_size;
821 dir->i_mtime = dir->i_ctime = inode->i_ctime;
f4f61d2c 822 err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
1e51764a
AB
823 if (err)
824 goto out_cancel;
825 unlock_2_inodes(dir, inode);
826
827 if (budgeted)
828 ubifs_release_budget(c, &req);
829 else {
830 /* We've deleted something - clean the "no space" flags */
b137545c 831 c->bi.nospace = c->bi.nospace_rp = 0;
1e51764a
AB
832 smp_wmb();
833 }
f4f61d2c 834 fscrypt_free_filename(&nm);
1e51764a
AB
835 return 0;
836
837out_cancel:
838 dir->i_size += sz_change;
839 dir_ui->ui_size = dir->i_size;
c43be108 840 set_nlink(inode, saved_nlink);
1e51764a
AB
841 unlock_2_inodes(dir, inode);
842 if (budgeted)
843 ubifs_release_budget(c, &req);
f4f61d2c
RW
844out_fname:
845 fscrypt_free_filename(&nm);
1e51764a
AB
846 return err;
847}
848
849/**
850 * check_dir_empty - check if a directory is empty or not.
1e51764a
AB
851 * @dir: VFS inode object of the directory to check
852 *
853 * This function checks if directory @dir is empty. Returns zero if the
854 * directory is empty, %-ENOTEMPTY if it is not, and other negative error codes
855 * in case of of errors.
856 */
f6337d84 857int ubifs_check_dir_empty(struct inode *dir)
1e51764a 858{
f6337d84 859 struct ubifs_info *c = dir->i_sb->s_fs_info;
f4f61d2c 860 struct fscrypt_name nm = { 0 };
1e51764a
AB
861 struct ubifs_dent_node *dent;
862 union ubifs_key key;
863 int err;
864
865 lowest_dent_key(c, &key, dir->i_ino);
866 dent = ubifs_tnc_next_ent(c, &key, &nm);
867 if (IS_ERR(dent)) {
868 err = PTR_ERR(dent);
869 if (err == -ENOENT)
870 err = 0;
871 } else {
872 kfree(dent);
873 err = -ENOTEMPTY;
874 }
875 return err;
876}
877
878static int ubifs_rmdir(struct inode *dir, struct dentry *dentry)
879{
880 struct ubifs_info *c = dir->i_sb->s_fs_info;
2b0143b5 881 struct inode *inode = d_inode(dentry);
f4f61d2c 882 int err, sz_change, budgeted = 1;
1e51764a
AB
883 struct ubifs_inode *dir_ui = ubifs_inode(dir);
884 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
f4f61d2c 885 struct fscrypt_name nm;
1e51764a
AB
886
887 /*
888 * Budget request settings: deletion direntry, deletion inode and
889 * changing the parent inode. If budgeting fails, go ahead anyway
890 * because we have extra space reserved for deletions.
891 */
892
4cb2a01d
AV
893 dbg_gen("directory '%pd', ino %lu in dir ino %lu", dentry,
894 inode->i_ino, dir->i_ino);
6eb61d58
RW
895 ubifs_assert(c, inode_is_locked(dir));
896 ubifs_assert(c, inode_is_locked(inode));
f6337d84 897 err = ubifs_check_dir_empty(d_inode(dentry));
1e51764a
AB
898 if (err)
899 return err;
900
f4f61d2c
RW
901 err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm);
902 if (err)
903 return err;
904
9ca2d732
RW
905 err = ubifs_purge_xattrs(inode);
906 if (err)
907 return err;
908
f4f61d2c
RW
909 sz_change = CALC_DENT_SIZE(fname_len(&nm));
910
1e51764a
AB
911 err = ubifs_budget_space(c, &req);
912 if (err) {
913 if (err != -ENOSPC)
f4f61d2c 914 goto out_fname;
1e51764a
AB
915 budgeted = 0;
916 }
917
918 lock_2_inodes(dir, inode);
607a11ad 919 inode->i_ctime = current_time(dir);
1e51764a
AB
920 clear_nlink(inode);
921 drop_nlink(dir);
922 dir->i_size -= sz_change;
923 dir_ui->ui_size = dir->i_size;
924 dir->i_mtime = dir->i_ctime = inode->i_ctime;
f4f61d2c 925 err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
1e51764a
AB
926 if (err)
927 goto out_cancel;
928 unlock_2_inodes(dir, inode);
929
930 if (budgeted)
931 ubifs_release_budget(c, &req);
932 else {
933 /* We've deleted something - clean the "no space" flags */
b137545c 934 c->bi.nospace = c->bi.nospace_rp = 0;
1e51764a
AB
935 smp_wmb();
936 }
f4f61d2c 937 fscrypt_free_filename(&nm);
1e51764a
AB
938 return 0;
939
940out_cancel:
941 dir->i_size += sz_change;
942 dir_ui->ui_size = dir->i_size;
943 inc_nlink(dir);
c43be108 944 set_nlink(inode, 2);
1e51764a
AB
945 unlock_2_inodes(dir, inode);
946 if (budgeted)
947 ubifs_release_budget(c, &req);
f4f61d2c
RW
948out_fname:
949 fscrypt_free_filename(&nm);
1e51764a
AB
950 return err;
951}
952
18bb1db3 953static int ubifs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1e51764a
AB
954{
955 struct inode *inode;
956 struct ubifs_inode *dir_ui = ubifs_inode(dir);
957 struct ubifs_info *c = dir->i_sb->s_fs_info;
f4f61d2c 958 int err, sz_change;
182854b4 959 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1 };
f4f61d2c 960 struct fscrypt_name nm;
1e51764a
AB
961
962 /*
963 * Budget request settings: new inode, new direntry and changing parent
964 * directory inode.
965 */
966
4cb2a01d
AV
967 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
968 dentry, mode, dir->i_ino);
1e51764a
AB
969
970 err = ubifs_budget_space(c, &req);
971 if (err)
972 return err;
973
f4f61d2c
RW
974 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
975 if (err)
976 goto out_budg;
977
978 sz_change = CALC_DENT_SIZE(fname_len(&nm));
979
1e51764a
AB
980 inode = ubifs_new_inode(c, dir, S_IFDIR | mode);
981 if (IS_ERR(inode)) {
982 err = PTR_ERR(inode);
f4f61d2c 983 goto out_fname;
1e51764a
AB
984 }
985
d7f0b70d
SN
986 err = ubifs_init_security(dir, inode, &dentry->d_name);
987 if (err)
9401a795 988 goto out_inode;
d7f0b70d 989
1e51764a
AB
990 mutex_lock(&dir_ui->ui_mutex);
991 insert_inode_hash(inode);
992 inc_nlink(inode);
993 inc_nlink(dir);
994 dir->i_size += sz_change;
995 dir_ui->ui_size = dir->i_size;
996 dir->i_mtime = dir->i_ctime = inode->i_ctime;
f4f61d2c 997 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
1e51764a 998 if (err) {
235c362b 999 ubifs_err(c, "cannot create directory, error %d", err);
1e51764a
AB
1000 goto out_cancel;
1001 }
1002 mutex_unlock(&dir_ui->ui_mutex);
1003
1004 ubifs_release_budget(c, &req);
1005 d_instantiate(dentry, inode);
f4f61d2c 1006 fscrypt_free_filename(&nm);
1e51764a
AB
1007 return 0;
1008
1009out_cancel:
1010 dir->i_size -= sz_change;
1011 dir_ui->ui_size = dir->i_size;
1012 drop_nlink(dir);
1013 mutex_unlock(&dir_ui->ui_mutex);
9401a795 1014out_inode:
1e51764a
AB
1015 make_bad_inode(inode);
1016 iput(inode);
f4f61d2c
RW
1017out_fname:
1018 fscrypt_free_filename(&nm);
1e51764a
AB
1019out_budg:
1020 ubifs_release_budget(c, &req);
1021 return err;
1022}
1023
1024static int ubifs_mknod(struct inode *dir, struct dentry *dentry,
1a67aafb 1025 umode_t mode, dev_t rdev)
1e51764a
AB
1026{
1027 struct inode *inode;
1028 struct ubifs_inode *ui;
1029 struct ubifs_inode *dir_ui = ubifs_inode(dir);
1030 struct ubifs_info *c = dir->i_sb->s_fs_info;
1031 union ubifs_dev_desc *dev = NULL;
f4f61d2c 1032 int sz_change;
1e51764a
AB
1033 int err, devlen = 0;
1034 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
dab4b4d2 1035 .dirtied_ino = 1 };
f4f61d2c 1036 struct fscrypt_name nm;
1e51764a
AB
1037
1038 /*
1039 * Budget request settings: new inode, new direntry and changing parent
1040 * directory inode.
1041 */
1042
4cb2a01d 1043 dbg_gen("dent '%pd' in dir ino %lu", dentry, dir->i_ino);
1e51764a 1044
1e51764a
AB
1045 if (S_ISBLK(mode) || S_ISCHR(mode)) {
1046 dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
1047 if (!dev)
1048 return -ENOMEM;
1049 devlen = ubifs_encode_dev(dev, rdev);
1050 }
1051
4d35ca4f 1052 req.new_ino_d = ALIGN(devlen, 8);
1e51764a
AB
1053 err = ubifs_budget_space(c, &req);
1054 if (err) {
1055 kfree(dev);
1056 return err;
1057 }
1058
f4f61d2c 1059 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
63ed6573
RW
1060 if (err) {
1061 kfree(dev);
f4f61d2c 1062 goto out_budg;
63ed6573 1063 }
f4f61d2c
RW
1064
1065 sz_change = CALC_DENT_SIZE(fname_len(&nm));
1066
1e51764a
AB
1067 inode = ubifs_new_inode(c, dir, mode);
1068 if (IS_ERR(inode)) {
1069 kfree(dev);
1070 err = PTR_ERR(inode);
f4f61d2c 1071 goto out_fname;
1e51764a
AB
1072 }
1073
1074 init_special_inode(inode, inode->i_mode, rdev);
1075 inode->i_size = ubifs_inode(inode)->ui_size = devlen;
1076 ui = ubifs_inode(inode);
1077 ui->data = dev;
1078 ui->data_len = devlen;
1079
d7f0b70d
SN
1080 err = ubifs_init_security(dir, inode, &dentry->d_name);
1081 if (err)
9401a795 1082 goto out_inode;
d7f0b70d 1083
1e51764a
AB
1084 mutex_lock(&dir_ui->ui_mutex);
1085 dir->i_size += sz_change;
1086 dir_ui->ui_size = dir->i_size;
1087 dir->i_mtime = dir->i_ctime = inode->i_ctime;
f4f61d2c 1088 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
1e51764a
AB
1089 if (err)
1090 goto out_cancel;
1091 mutex_unlock(&dir_ui->ui_mutex);
1092
1093 ubifs_release_budget(c, &req);
1094 insert_inode_hash(inode);
1095 d_instantiate(dentry, inode);
f4f61d2c 1096 fscrypt_free_filename(&nm);
1e51764a
AB
1097 return 0;
1098
1099out_cancel:
1100 dir->i_size -= sz_change;
1101 dir_ui->ui_size = dir->i_size;
1102 mutex_unlock(&dir_ui->ui_mutex);
9401a795 1103out_inode:
1e51764a
AB
1104 make_bad_inode(inode);
1105 iput(inode);
f4f61d2c
RW
1106out_fname:
1107 fscrypt_free_filename(&nm);
1e51764a
AB
1108out_budg:
1109 ubifs_release_budget(c, &req);
1110 return err;
1111}
1112
1113static int ubifs_symlink(struct inode *dir, struct dentry *dentry,
1114 const char *symname)
1115{
1116 struct inode *inode;
1117 struct ubifs_inode *ui;
1118 struct ubifs_inode *dir_ui = ubifs_inode(dir);
1119 struct ubifs_info *c = dir->i_sb->s_fs_info;
00ee8b60 1120 int err, sz_change, len = strlen(symname);
0e4dda29 1121 struct fscrypt_str disk_link;
1e51764a 1122 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
dab4b4d2
AB
1123 .new_ino_d = ALIGN(len, 8),
1124 .dirtied_ino = 1 };
ca7f85be
RW
1125 struct fscrypt_name nm;
1126
0e4dda29
EB
1127 dbg_gen("dent '%pd', target '%s' in dir ino %lu", dentry,
1128 symname, dir->i_ino);
ca7f85be 1129
0e4dda29
EB
1130 err = fscrypt_prepare_symlink(dir, symname, len, UBIFS_MAX_INO_DATA,
1131 &disk_link);
1132 if (err)
1133 return err;
1e51764a
AB
1134
1135 /*
1136 * Budget request settings: new inode, new direntry and changing parent
1137 * directory inode.
1138 */
1e51764a
AB
1139 err = ubifs_budget_space(c, &req);
1140 if (err)
1141 return err;
1142
ca7f85be
RW
1143 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
1144 if (err)
1145 goto out_budg;
1146
00ee8b60
RW
1147 sz_change = CALC_DENT_SIZE(fname_len(&nm));
1148
1e51764a
AB
1149 inode = ubifs_new_inode(c, dir, S_IFLNK | S_IRWXUGO);
1150 if (IS_ERR(inode)) {
1151 err = PTR_ERR(inode);
ca7f85be 1152 goto out_fname;
1e51764a
AB
1153 }
1154
1155 ui = ubifs_inode(inode);
ca7f85be 1156 ui->data = kmalloc(disk_link.len, GFP_NOFS);
1e51764a
AB
1157 if (!ui->data) {
1158 err = -ENOMEM;
1159 goto out_inode;
1160 }
1161
0e4dda29
EB
1162 if (IS_ENCRYPTED(inode)) {
1163 disk_link.name = ui->data; /* encrypt directly into ui->data */
1164 err = fscrypt_encrypt_symlink(inode, symname, len, &disk_link);
6b46d444 1165 if (err)
ca7f85be 1166 goto out_inode;
ca7f85be 1167 } else {
0e4dda29 1168 memcpy(ui->data, disk_link.name, disk_link.len);
ca7f85be
RW
1169 inode->i_link = ui->data;
1170 }
1171
1e51764a
AB
1172 /*
1173 * The terminating zero byte is not written to the flash media and it
1174 * is put just to make later in-memory string processing simpler. Thus,
0e4dda29 1175 * data length is @disk_link.len - 1, not @disk_link.len.
1e51764a 1176 */
ca7f85be
RW
1177 ui->data_len = disk_link.len - 1;
1178 inode->i_size = ubifs_inode(inode)->ui_size = disk_link.len - 1;
1e51764a 1179
d7f0b70d
SN
1180 err = ubifs_init_security(dir, inode, &dentry->d_name);
1181 if (err)
9401a795 1182 goto out_inode;
d7f0b70d 1183
1e51764a
AB
1184 mutex_lock(&dir_ui->ui_mutex);
1185 dir->i_size += sz_change;
1186 dir_ui->ui_size = dir->i_size;
1187 dir->i_mtime = dir->i_ctime = inode->i_ctime;
ca7f85be 1188 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
1e51764a
AB
1189 if (err)
1190 goto out_cancel;
1191 mutex_unlock(&dir_ui->ui_mutex);
1192
1e51764a
AB
1193 insert_inode_hash(inode);
1194 d_instantiate(dentry, inode);
6b46d444
EB
1195 err = 0;
1196 goto out_fname;
1e51764a
AB
1197
1198out_cancel:
1199 dir->i_size -= sz_change;
1200 dir_ui->ui_size = dir->i_size;
1201 mutex_unlock(&dir_ui->ui_mutex);
1202out_inode:
1203 make_bad_inode(inode);
1204 iput(inode);
ca7f85be
RW
1205out_fname:
1206 fscrypt_free_filename(&nm);
1e51764a
AB
1207out_budg:
1208 ubifs_release_budget(c, &req);
1209 return err;
1210}
1211
1212/**
9e0a1fff 1213 * lock_4_inodes - a wrapper for locking three UBIFS inodes.
1e51764a
AB
1214 * @inode1: first inode
1215 * @inode2: second inode
1216 * @inode3: third inode
9e0a1fff 1217 * @inode4: fouth inode
1e51764a 1218 *
82c1593c 1219 * This function is used for 'ubifs_rename()' and @inode1 may be the same as
9e0a1fff 1220 * @inode2 whereas @inode3 and @inode4 may be %NULL.
82c1593c
AB
1221 *
1222 * We do not implement any tricks to guarantee strict lock ordering, because
1223 * VFS has already done it for us on the @i_mutex. So this is just a simple
1224 * wrapper function.
1e51764a 1225 */
9e0a1fff
RW
1226static void lock_4_inodes(struct inode *inode1, struct inode *inode2,
1227 struct inode *inode3, struct inode *inode4)
1e51764a 1228{
82c1593c
AB
1229 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
1230 if (inode2 != inode1)
1231 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
1232 if (inode3)
1233 mutex_lock_nested(&ubifs_inode(inode3)->ui_mutex, WB_MUTEX_3);
9e0a1fff
RW
1234 if (inode4)
1235 mutex_lock_nested(&ubifs_inode(inode4)->ui_mutex, WB_MUTEX_4);
1e51764a
AB
1236}
1237
1238/**
9e0a1fff 1239 * unlock_4_inodes - a wrapper for unlocking three UBIFS inodes for rename.
1e51764a
AB
1240 * @inode1: first inode
1241 * @inode2: second inode
1242 * @inode3: third inode
9e0a1fff 1243 * @inode4: fouth inode
1e51764a 1244 */
9e0a1fff
RW
1245static void unlock_4_inodes(struct inode *inode1, struct inode *inode2,
1246 struct inode *inode3, struct inode *inode4)
1e51764a 1247{
9e0a1fff
RW
1248 if (inode4)
1249 mutex_unlock(&ubifs_inode(inode4)->ui_mutex);
1e51764a
AB
1250 if (inode3)
1251 mutex_unlock(&ubifs_inode(inode3)->ui_mutex);
82c1593c
AB
1252 if (inode1 != inode2)
1253 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
1254 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
1e51764a
AB
1255}
1256
390975ac
RW
1257static int do_rename(struct inode *old_dir, struct dentry *old_dentry,
1258 struct inode *new_dir, struct dentry *new_dentry,
1259 unsigned int flags)
1e51764a
AB
1260{
1261 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
2b0143b5
DH
1262 struct inode *old_inode = d_inode(old_dentry);
1263 struct inode *new_inode = d_inode(new_dentry);
9e0a1fff 1264 struct inode *whiteout = NULL;
1e51764a 1265 struct ubifs_inode *old_inode_ui = ubifs_inode(old_inode);
9e0a1fff 1266 struct ubifs_inode *whiteout_ui = NULL;
1e51764a
AB
1267 int err, release, sync = 0, move = (new_dir != old_dir);
1268 int is_dir = S_ISDIR(old_inode->i_mode);
f4f61d2c 1269 int unlink = !!new_inode, new_sz, old_sz;
1e51764a
AB
1270 struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1271 .dirtied_ino = 3 };
1272 struct ubifs_budget_req ino_req = { .dirtied_ino = 1,
dab4b4d2 1273 .dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) };
95582b00 1274 struct timespec64 time;
782759b9 1275 unsigned int uninitialized_var(saved_nlink);
f4f61d2c 1276 struct fscrypt_name old_nm, new_nm;
1e51764a
AB
1277
1278 /*
1279 * Budget request settings: deletion direntry, new direntry, removing
1280 * the old inode, and changing old and new parent directory inodes.
1281 *
1282 * However, this operation also marks the target inode as dirty and
1283 * does not write it, so we allocate budget for the target inode
1284 * separately.
1285 */
1286
9e0a1fff 1287 dbg_gen("dent '%pd' ino %lu in dir ino %lu to dent '%pd' in dir ino %lu flags 0x%x",
4cb2a01d 1288 old_dentry, old_inode->i_ino, old_dir->i_ino,
9e0a1fff
RW
1289 new_dentry, new_dir->i_ino, flags);
1290
9ca2d732 1291 if (unlink) {
6eb61d58 1292 ubifs_assert(c, inode_is_locked(new_inode));
82c1593c 1293
9ca2d732
RW
1294 err = ubifs_purge_xattrs(new_inode);
1295 if (err)
1296 return err;
1297 }
1298
1e51764a 1299 if (unlink && is_dir) {
f6337d84 1300 err = ubifs_check_dir_empty(new_inode);
1e51764a
AB
1301 if (err)
1302 return err;
1303 }
1304
f4f61d2c 1305 err = fscrypt_setup_filename(old_dir, &old_dentry->d_name, 0, &old_nm);
1e51764a
AB
1306 if (err)
1307 return err;
f4f61d2c
RW
1308
1309 err = fscrypt_setup_filename(new_dir, &new_dentry->d_name, 0, &new_nm);
1310 if (err) {
1311 fscrypt_free_filename(&old_nm);
1312 return err;
1313 }
1314
1315 new_sz = CALC_DENT_SIZE(fname_len(&new_nm));
1316 old_sz = CALC_DENT_SIZE(fname_len(&old_nm));
1317
1318 err = ubifs_budget_space(c, &req);
1319 if (err) {
1320 fscrypt_free_filename(&old_nm);
1321 fscrypt_free_filename(&new_nm);
1322 return err;
1323 }
1e51764a
AB
1324 err = ubifs_budget_space(c, &ino_req);
1325 if (err) {
f4f61d2c
RW
1326 fscrypt_free_filename(&old_nm);
1327 fscrypt_free_filename(&new_nm);
1e51764a
AB
1328 ubifs_release_budget(c, &req);
1329 return err;
1330 }
1331
9e0a1fff
RW
1332 if (flags & RENAME_WHITEOUT) {
1333 union ubifs_dev_desc *dev = NULL;
1334
1335 dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
1336 if (!dev) {
bb50c632
HL
1337 err = -ENOMEM;
1338 goto out_release;
9e0a1fff
RW
1339 }
1340
1341 err = do_tmpfile(old_dir, old_dentry, S_IFCHR | WHITEOUT_MODE, &whiteout);
1342 if (err) {
9e0a1fff 1343 kfree(dev);
bb50c632 1344 goto out_release;
9e0a1fff
RW
1345 }
1346
1347 whiteout->i_state |= I_LINKABLE;
1348 whiteout_ui = ubifs_inode(whiteout);
1349 whiteout_ui->data = dev;
1350 whiteout_ui->data_len = ubifs_encode_dev(dev, MKDEV(0, 0));
6eb61d58 1351 ubifs_assert(c, !whiteout_ui->dirty);
9e0a1fff
RW
1352 }
1353
1354 lock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1e51764a
AB
1355
1356 /*
1357 * Like most other Unix systems, set the @i_ctime for inodes on a
1358 * rename.
1359 */
607a11ad 1360 time = current_time(old_dir);
1e51764a
AB
1361 old_inode->i_ctime = time;
1362
1363 /* We must adjust parent link count when renaming directories */
1364 if (is_dir) {
1365 if (move) {
1366 /*
1367 * @old_dir loses a link because we are moving
1368 * @old_inode to a different directory.
1369 */
1370 drop_nlink(old_dir);
1371 /*
1372 * @new_dir only gains a link if we are not also
1373 * overwriting an existing directory.
1374 */
1375 if (!unlink)
1376 inc_nlink(new_dir);
1377 } else {
1378 /*
1379 * @old_inode is not moving to a different directory,
1380 * but @old_dir still loses a link if we are
1381 * overwriting an existing directory.
1382 */
1383 if (unlink)
1384 drop_nlink(old_dir);
1385 }
1386 }
1387
1388 old_dir->i_size -= old_sz;
1389 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1390 old_dir->i_mtime = old_dir->i_ctime = time;
1391 new_dir->i_mtime = new_dir->i_ctime = time;
1392
1393 /*
1394 * And finally, if we unlinked a direntry which happened to have the
1395 * same name as the moved direntry, we have to decrement @i_nlink of
1396 * the unlinked inode and change its ctime.
1397 */
1398 if (unlink) {
1399 /*
1400 * Directories cannot have hard-links, so if this is a
c43be108 1401 * directory, just clear @i_nlink.
1e51764a 1402 */
c43be108 1403 saved_nlink = new_inode->i_nlink;
1e51764a 1404 if (is_dir)
c43be108
AB
1405 clear_nlink(new_inode);
1406 else
1e51764a
AB
1407 drop_nlink(new_inode);
1408 new_inode->i_ctime = time;
1e51764a
AB
1409 } else {
1410 new_dir->i_size += new_sz;
1411 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1412 }
1413
1414 /*
1415 * Do not ask 'ubifs_jnl_rename()' to flush write-buffer if @old_inode
1416 * is dirty, because this will be done later on at the end of
1417 * 'ubifs_rename()'.
1418 */
1419 if (IS_SYNC(old_inode)) {
1420 sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1421 if (unlink && IS_SYNC(new_inode))
1422 sync = 1;
1423 }
9e0a1fff
RW
1424
1425 if (whiteout) {
1426 struct ubifs_budget_req wht_req = { .dirtied_ino = 1,
1427 .dirtied_ino_d = \
1428 ALIGN(ubifs_inode(whiteout)->data_len, 8) };
1429
1430 err = ubifs_budget_space(c, &wht_req);
1431 if (err) {
9e0a1fff
RW
1432 kfree(whiteout_ui->data);
1433 whiteout_ui->data_len = 0;
1434 iput(whiteout);
bb50c632 1435 goto out_release;
9e0a1fff
RW
1436 }
1437
1438 inc_nlink(whiteout);
1439 mark_inode_dirty(whiteout);
1440 whiteout->i_state &= ~I_LINKABLE;
1441 iput(whiteout);
1442 }
1443
f4f61d2c
RW
1444 err = ubifs_jnl_rename(c, old_dir, old_inode, &old_nm, new_dir,
1445 new_inode, &new_nm, whiteout, sync);
1e51764a
AB
1446 if (err)
1447 goto out_cancel;
1448
9e0a1fff 1449 unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1e51764a
AB
1450 ubifs_release_budget(c, &req);
1451
1452 mutex_lock(&old_inode_ui->ui_mutex);
1453 release = old_inode_ui->dirty;
1454 mark_inode_dirty_sync(old_inode);
1455 mutex_unlock(&old_inode_ui->ui_mutex);
1456
1457 if (release)
1458 ubifs_release_budget(c, &ino_req);
1459 if (IS_SYNC(old_inode))
a9185b41 1460 err = old_inode->i_sb->s_op->write_inode(old_inode, NULL);
f4f61d2c
RW
1461
1462 fscrypt_free_filename(&old_nm);
1463 fscrypt_free_filename(&new_nm);
1e51764a
AB
1464 return err;
1465
1466out_cancel:
1467 if (unlink) {
c43be108 1468 set_nlink(new_inode, saved_nlink);
1e51764a
AB
1469 } else {
1470 new_dir->i_size -= new_sz;
1471 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1472 }
1473 old_dir->i_size += old_sz;
1474 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1475 if (is_dir) {
1476 if (move) {
1477 inc_nlink(old_dir);
1478 if (!unlink)
1479 drop_nlink(new_dir);
1480 } else {
1481 if (unlink)
1482 inc_nlink(old_dir);
1483 }
1484 }
9e0a1fff
RW
1485 if (whiteout) {
1486 drop_nlink(whiteout);
1487 iput(whiteout);
1488 }
1489 unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
bb50c632 1490out_release:
1e51764a
AB
1491 ubifs_release_budget(c, &ino_req);
1492 ubifs_release_budget(c, &req);
f4f61d2c
RW
1493 fscrypt_free_filename(&old_nm);
1494 fscrypt_free_filename(&new_nm);
1e51764a
AB
1495 return err;
1496}
1497
9ec64962
RW
1498static int ubifs_xrename(struct inode *old_dir, struct dentry *old_dentry,
1499 struct inode *new_dir, struct dentry *new_dentry)
1500{
1501 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
1502 struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1503 .dirtied_ino = 2 };
1504 int sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1505 struct inode *fst_inode = d_inode(old_dentry);
1506 struct inode *snd_inode = d_inode(new_dentry);
95582b00 1507 struct timespec64 time;
9ec64962 1508 int err;
f4f61d2c 1509 struct fscrypt_name fst_nm, snd_nm;
9ec64962 1510
6eb61d58 1511 ubifs_assert(c, fst_inode && snd_inode);
9ec64962 1512
f4f61d2c
RW
1513 err = fscrypt_setup_filename(old_dir, &old_dentry->d_name, 0, &fst_nm);
1514 if (err)
1515 return err;
1516
1517 err = fscrypt_setup_filename(new_dir, &new_dentry->d_name, 0, &snd_nm);
1518 if (err) {
1519 fscrypt_free_filename(&fst_nm);
1520 return err;
1521 }
1522
9ec64962
RW
1523 lock_4_inodes(old_dir, new_dir, NULL, NULL);
1524
607a11ad 1525 time = current_time(old_dir);
9ec64962
RW
1526 fst_inode->i_ctime = time;
1527 snd_inode->i_ctime = time;
1528 old_dir->i_mtime = old_dir->i_ctime = time;
1529 new_dir->i_mtime = new_dir->i_ctime = time;
1530
1531 if (old_dir != new_dir) {
1532 if (S_ISDIR(fst_inode->i_mode) && !S_ISDIR(snd_inode->i_mode)) {
1533 inc_nlink(new_dir);
1534 drop_nlink(old_dir);
1535 }
1536 else if (!S_ISDIR(fst_inode->i_mode) && S_ISDIR(snd_inode->i_mode)) {
1537 drop_nlink(new_dir);
1538 inc_nlink(old_dir);
1539 }
1540 }
1541
f4f61d2c
RW
1542 err = ubifs_jnl_xrename(c, old_dir, fst_inode, &fst_nm, new_dir,
1543 snd_inode, &snd_nm, sync);
9ec64962
RW
1544
1545 unlock_4_inodes(old_dir, new_dir, NULL, NULL);
1546 ubifs_release_budget(c, &req);
1547
f4f61d2c
RW
1548 fscrypt_free_filename(&fst_nm);
1549 fscrypt_free_filename(&snd_nm);
9ec64962
RW
1550 return err;
1551}
1552
390975ac 1553static int ubifs_rename(struct inode *old_dir, struct dentry *old_dentry,
9ec64962
RW
1554 struct inode *new_dir, struct dentry *new_dentry,
1555 unsigned int flags)
1556{
0c1ad524 1557 int err;
6eb61d58 1558 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
0c1ad524 1559
9ec64962
RW
1560 if (flags & ~(RENAME_NOREPLACE | RENAME_WHITEOUT | RENAME_EXCHANGE))
1561 return -EINVAL;
1562
6eb61d58
RW
1563 ubifs_assert(c, inode_is_locked(old_dir));
1564 ubifs_assert(c, inode_is_locked(new_dir));
9ec64962 1565
0c1ad524
EB
1566 err = fscrypt_prepare_rename(old_dir, old_dentry, new_dir, new_dentry,
1567 flags);
1568 if (err)
1569 return err;
1570
9ec64962
RW
1571 if (flags & RENAME_EXCHANGE)
1572 return ubifs_xrename(old_dir, old_dentry, new_dir, new_dentry);
1573
390975ac 1574 return do_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
9ec64962
RW
1575}
1576
a528d35e
DH
1577int ubifs_getattr(const struct path *path, struct kstat *stat,
1578 u32 request_mask, unsigned int flags)
1e51764a
AB
1579{
1580 loff_t size;
a528d35e 1581 struct inode *inode = d_inode(path->dentry);
1e51764a
AB
1582 struct ubifs_inode *ui = ubifs_inode(inode);
1583
1584 mutex_lock(&ui->ui_mutex);
a02a6eba
RW
1585
1586 if (ui->flags & UBIFS_APPEND_FL)
1587 stat->attributes |= STATX_ATTR_APPEND;
1588 if (ui->flags & UBIFS_COMPR_FL)
1589 stat->attributes |= STATX_ATTR_COMPRESSED;
1590 if (ui->flags & UBIFS_CRYPT_FL)
1591 stat->attributes |= STATX_ATTR_ENCRYPTED;
1592 if (ui->flags & UBIFS_IMMUTABLE_FL)
1593 stat->attributes |= STATX_ATTR_IMMUTABLE;
1594
1595 stat->attributes_mask |= (STATX_ATTR_APPEND |
1596 STATX_ATTR_COMPRESSED |
1597 STATX_ATTR_ENCRYPTED |
1598 STATX_ATTR_IMMUTABLE);
1599
6d42e7e9 1600 generic_fillattr(inode, stat);
1e51764a
AB
1601 stat->blksize = UBIFS_BLOCK_SIZE;
1602 stat->size = ui->ui_size;
1603
1604 /*
1605 * Unfortunately, the 'stat()' system call was designed for block
1606 * device based file systems, and it is not appropriate for UBIFS,
1607 * because UBIFS does not have notion of "block". For example, it is
1608 * difficult to tell how many block a directory takes - it actually
1609 * takes less than 300 bytes, but we have to round it to block size,
1610 * which introduces large mistake. This makes utilities like 'du' to
1611 * report completely senseless numbers. This is the reason why UBIFS
1612 * goes the same way as JFFS2 - it reports zero blocks for everything
1613 * but regular files, which makes more sense than reporting completely
1614 * wrong sizes.
1615 */
1616 if (S_ISREG(inode->i_mode)) {
1617 size = ui->xattr_size;
1618 size += stat->size;
1619 size = ALIGN(size, UBIFS_BLOCK_SIZE);
1620 /*
1621 * Note, user-space expects 512-byte blocks count irrespectively
1622 * of what was reported in @stat->size.
1623 */
1624 stat->blocks = size >> 9;
1625 } else
1626 stat->blocks = 0;
1627 mutex_unlock(&ui->ui_mutex);
1628 return 0;
1629}
1630
ba40e6a3
RW
1631static int ubifs_dir_open(struct inode *dir, struct file *file)
1632{
1633 if (ubifs_crypt_is_encrypted(dir))
1634 return fscrypt_get_encryption_info(dir) ? -EACCES : 0;
1635
1636 return 0;
1637}
1638
e8b81566 1639const struct inode_operations ubifs_dir_inode_operations = {
1e51764a
AB
1640 .lookup = ubifs_lookup,
1641 .create = ubifs_create,
1642 .link = ubifs_link,
1643 .symlink = ubifs_symlink,
1644 .unlink = ubifs_unlink,
1645 .mkdir = ubifs_mkdir,
1646 .rmdir = ubifs_rmdir,
1647 .mknod = ubifs_mknod,
390975ac 1648 .rename = ubifs_rename,
1e51764a
AB
1649 .setattr = ubifs_setattr,
1650 .getattr = ubifs_getattr,
7e5471ce 1651#ifdef CONFIG_UBIFS_FS_XATTR
1e51764a 1652 .listxattr = ubifs_listxattr,
7e5471ce 1653#endif
8c1c5f26 1654 .update_time = ubifs_update_time,
474b9370 1655 .tmpfile = ubifs_tmpfile,
1e51764a
AB
1656};
1657
e8b81566 1658const struct file_operations ubifs_dir_operations = {
01122e06 1659 .llseek = generic_file_llseek,
1e51764a
AB
1660 .release = ubifs_dir_release,
1661 .read = generic_read_dir,
c51da20c 1662 .iterate_shared = ubifs_readdir,
1e51764a
AB
1663 .fsync = ubifs_fsync,
1664 .unlocked_ioctl = ubifs_ioctl,
ba40e6a3 1665 .open = ubifs_dir_open,
1e51764a
AB
1666#ifdef CONFIG_COMPAT
1667 .compat_ioctl = ubifs_compat_ioctl,
1668#endif
1669};