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