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