1 // SPDX-License-Identifier: GPL-2.0-only
2 /* * This file is part of UBIFS.
4 * Copyright (C) 2006-2008 Nokia Corporation.
5 * Copyright (C) 2006, 2007 University of Szeged, Hungary
7 * Authors: Artem Bityutskiy (Битюцкий Артём)
13 * This file implements directory operations.
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.
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.
34 * inherit_flags - inherit flags of the parent inode.
36 * @mode: new inode mode flags
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.
45 * This function returns the inherited flags.
47 static int inherit_flags(const struct inode *dir, umode_t mode)
50 const struct ubifs_inode *ui = ubifs_inode(dir);
52 if (!S_ISDIR(dir->i_mode))
54 * The parent is not a directory, which means that an extended
55 * attribute inode is being created. No flags.
59 flags = ui->flags & (UBIFS_COMPR_FL | UBIFS_SYNC_FL | UBIFS_DIRSYNC_FL);
61 /* The "DIRSYNC" flag only applies to directories */
62 flags &= ~UBIFS_DIRSYNC_FL;
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 * @is_xattr: whether the inode is xattr inode
73 * This function finds an unused inode number, allocates new inode and
74 * initializes it. Non-xattr new inode may be written with xattrs(selinux/
75 * encryption) before writing dentry, which could cause inconsistent problem
76 * when powercut happens between two operations. To deal with it, non-xattr
77 * new inode is initialized with zero-nlink and added into orphan list, caller
78 * should make sure that inode is relinked later, and make sure that orphan
79 * removing and journal writing into an committing atomic operation. Returns
80 * new inode in case of success and an error code in case of failure.
82 struct inode *ubifs_new_inode(struct ubifs_info *c, struct inode *dir,
83 umode_t mode, bool is_xattr)
87 struct ubifs_inode *ui;
88 bool encrypted = false;
90 inode = new_inode(c->vfs_sb);
91 ui = ubifs_inode(inode);
93 return ERR_PTR(-ENOMEM);
96 * Set 'S_NOCMTIME' to prevent VFS form updating [mc]time of inodes and
97 * marking them dirty in file write path (see 'file_update_time()').
98 * UBIFS has to fully control "clean <-> dirty" transitions of inodes
99 * to make budgeting work.
101 inode->i_flags |= S_NOCMTIME;
103 inode_init_owner(&nop_mnt_idmap, inode, dir, mode);
104 simple_inode_init_ts(inode);
105 inode->i_mapping->nrpages = 0;
108 err = fscrypt_prepare_new_inode(dir, inode, &encrypted);
110 ubifs_err(c, "fscrypt_prepare_new_inode failed: %i", err);
115 switch (mode & S_IFMT) {
117 inode->i_mapping->a_ops = &ubifs_file_address_operations;
118 inode->i_op = &ubifs_file_inode_operations;
119 inode->i_fop = &ubifs_file_operations;
122 inode->i_op = &ubifs_dir_inode_operations;
123 inode->i_fop = &ubifs_dir_operations;
124 inode->i_size = ui->ui_size = UBIFS_INO_NODE_SZ;
127 inode->i_op = &ubifs_symlink_inode_operations;
133 inode->i_op = &ubifs_file_inode_operations;
139 ui->flags = inherit_flags(dir, mode);
140 ubifs_set_inode_flags(inode);
142 ui->compr_type = c->default_compr;
144 ui->compr_type = UBIFS_COMPR_NONE;
145 ui->synced_i_size = 0;
147 spin_lock(&c->cnt_lock);
148 /* Inode number overflow is currently not supported */
149 if (c->highest_inum >= INUM_WARN_WATERMARK) {
150 if (c->highest_inum >= INUM_WATERMARK) {
151 spin_unlock(&c->cnt_lock);
152 ubifs_err(c, "out of inode numbers");
156 ubifs_warn(c, "running out of inode numbers (current %lu, max %u)",
157 (unsigned long)c->highest_inum, INUM_WATERMARK);
160 inode->i_ino = ++c->highest_inum;
162 * The creation sequence number remains with this inode for its
163 * lifetime. All nodes for this inode have a greater sequence number,
164 * and so it is possible to distinguish obsolete nodes belonging to a
165 * previous incarnation of the same inode number - for example, for the
166 * purpose of rebuilding the index.
168 ui->creat_sqnum = ++c->max_sqnum;
169 spin_unlock(&c->cnt_lock);
173 err = ubifs_add_orphan(c, inode->i_ino);
175 ubifs_err(c, "ubifs_add_orphan failed: %i", err);
178 down_read(&c->commit_sem);
179 ui->del_cmtno = c->cmt_no;
180 up_read(&c->commit_sem);
184 err = fscrypt_set_context(inode, NULL);
188 ubifs_delete_orphan(c, inode->i_ino);
190 ubifs_err(c, "fscrypt_set_context failed: %i", err);
198 make_bad_inode(inode);
203 static int dbg_check_name(const struct ubifs_info *c,
204 const struct ubifs_dent_node *dent,
205 const struct fscrypt_name *nm)
207 if (!dbg_is_chk_gen(c))
209 if (le16_to_cpu(dent->nlen) != fname_len(nm))
211 if (memcmp(dent->name, fname_name(nm), fname_len(nm)))
216 static struct dentry *ubifs_lookup(struct inode *dir, struct dentry *dentry,
221 struct inode *inode = NULL;
222 struct ubifs_dent_node *dent = NULL;
223 struct ubifs_info *c = dir->i_sb->s_fs_info;
224 struct fscrypt_name nm;
226 dbg_gen("'%pd' in dir ino %lu", dentry, dir->i_ino);
228 err = fscrypt_prepare_lookup(dir, dentry, &nm);
230 return d_splice_alias(NULL, dentry);
234 if (fname_len(&nm) > UBIFS_MAX_NLEN) {
235 inode = ERR_PTR(-ENAMETOOLONG);
239 dent = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
241 inode = ERR_PTR(-ENOMEM);
245 if (fname_name(&nm) == NULL) {
246 if (nm.hash & ~UBIFS_S_KEY_HASH_MASK)
247 goto done; /* ENOENT */
248 dent_key_init_hash(c, &key, dir->i_ino, nm.hash);
249 err = ubifs_tnc_lookup_dh(c, &key, dent, nm.minor_hash);
251 dent_key_init(c, &key, dir->i_ino, &nm);
252 err = ubifs_tnc_lookup_nm(c, &key, dent, &nm);
257 dbg_gen("not found");
259 inode = ERR_PTR(err);
263 if (dbg_check_name(c, dent, &nm)) {
264 inode = ERR_PTR(-EINVAL);
268 inode = ubifs_iget(dir->i_sb, le64_to_cpu(dent->inum));
271 * This should not happen. Probably the file-system needs
274 err = PTR_ERR(inode);
275 ubifs_err(c, "dead directory entry '%pd', error %d",
277 ubifs_ro_mode(c, err);
281 if (IS_ENCRYPTED(dir) &&
282 (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) &&
283 !fscrypt_has_permitted_context(dir, inode)) {
284 ubifs_warn(c, "Inconsistent encryption contexts: %lu/%lu",
285 dir->i_ino, inode->i_ino);
287 inode = ERR_PTR(-EPERM);
292 fscrypt_free_filename(&nm);
293 return d_splice_alias(inode, dentry);
296 static int ubifs_prepare_create(struct inode *dir, struct dentry *dentry,
297 struct fscrypt_name *nm)
299 if (fscrypt_is_nokey_name(dentry))
302 return fscrypt_setup_filename(dir, &dentry->d_name, 0, nm);
305 static int ubifs_create(struct mnt_idmap *idmap, struct inode *dir,
306 struct dentry *dentry, umode_t mode, bool excl)
309 struct ubifs_info *c = dir->i_sb->s_fs_info;
310 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
312 struct ubifs_inode *dir_ui = ubifs_inode(dir);
313 struct fscrypt_name nm;
317 * Budget request settings: new inode, new direntry, changing the
318 * parent directory inode.
321 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
322 dentry, mode, dir->i_ino);
324 err = ubifs_budget_space(c, &req);
328 err = ubifs_prepare_create(dir, dentry, &nm);
332 sz_change = CALC_DENT_SIZE(fname_len(&nm));
334 inode = ubifs_new_inode(c, dir, mode, false);
336 err = PTR_ERR(inode);
340 err = ubifs_init_security(dir, inode, &dentry->d_name);
345 mutex_lock(&dir_ui->ui_mutex);
346 dir->i_size += sz_change;
347 dir_ui->ui_size = dir->i_size;
348 inode_set_mtime_to_ts(dir,
349 inode_set_ctime_to_ts(dir, inode_get_ctime(inode)));
350 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0, 1);
353 mutex_unlock(&dir_ui->ui_mutex);
355 ubifs_release_budget(c, &req);
356 fscrypt_free_filename(&nm);
357 insert_inode_hash(inode);
358 d_instantiate(dentry, inode);
362 dir->i_size -= sz_change;
363 dir_ui->ui_size = dir->i_size;
364 mutex_unlock(&dir_ui->ui_mutex);
369 fscrypt_free_filename(&nm);
371 ubifs_release_budget(c, &req);
372 ubifs_err(c, "cannot create regular file, error %d", err);
376 static struct inode *create_whiteout(struct inode *dir, struct dentry *dentry)
379 umode_t mode = S_IFCHR | WHITEOUT_MODE;
381 struct ubifs_info *c = dir->i_sb->s_fs_info;
384 * Create an inode('nlink = 1') for whiteout without updating journal,
385 * let ubifs_jnl_rename() store it on flash to complete rename whiteout
389 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
390 dentry, mode, dir->i_ino);
392 inode = ubifs_new_inode(c, dir, mode, false);
394 err = PTR_ERR(inode);
398 init_special_inode(inode, inode->i_mode, WHITEOUT_DEV);
399 ubifs_assert(c, inode->i_op == &ubifs_file_inode_operations);
401 err = ubifs_init_security(dir, inode, &dentry->d_name);
405 /* The dir size is updated by do_rename. */
406 insert_inode_hash(inode);
413 ubifs_err(c, "cannot create whiteout file, error %d", err);
418 * lock_2_inodes - a wrapper for locking two UBIFS inodes.
419 * @inode1: first inode
420 * @inode2: second inode
422 * We do not implement any tricks to guarantee strict lock ordering, because
423 * VFS has already done it for us on the @i_mutex. So this is just a simple
426 static void lock_2_inodes(struct inode *inode1, struct inode *inode2)
428 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
429 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
433 * unlock_2_inodes - a wrapper for unlocking two UBIFS inodes.
434 * @inode1: first inode
435 * @inode2: second inode
437 static void unlock_2_inodes(struct inode *inode1, struct inode *inode2)
439 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
440 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
443 static int ubifs_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
444 struct file *file, umode_t mode)
446 struct dentry *dentry = file->f_path.dentry;
448 struct ubifs_info *c = dir->i_sb->s_fs_info;
449 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
451 struct ubifs_budget_req ino_req = { .dirtied_ino = 1 };
452 struct ubifs_inode *ui;
453 int err, instantiated = 0;
454 struct fscrypt_name nm;
457 * Budget request settings: new inode, new direntry, changing the
458 * parent directory inode.
459 * Allocate budget separately for new dirtied inode, the budget will
460 * be released via writeback.
463 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
464 dentry, mode, dir->i_ino);
466 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
470 err = ubifs_budget_space(c, &req);
472 fscrypt_free_filename(&nm);
476 err = ubifs_budget_space(c, &ino_req);
478 ubifs_release_budget(c, &req);
479 fscrypt_free_filename(&nm);
483 inode = ubifs_new_inode(c, dir, mode, false);
485 err = PTR_ERR(inode);
488 ui = ubifs_inode(inode);
490 err = ubifs_init_security(dir, inode, &dentry->d_name);
495 mutex_lock(&ui->ui_mutex);
496 insert_inode_hash(inode);
497 d_tmpfile(file, inode);
498 ubifs_assert(c, ui->dirty);
501 mutex_unlock(&ui->ui_mutex);
503 lock_2_inodes(dir, inode);
504 err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0, 1);
507 unlock_2_inodes(dir, inode);
509 ubifs_release_budget(c, &req);
510 fscrypt_free_filename(&nm);
512 return finish_open_simple(file, 0);
515 unlock_2_inodes(dir, inode);
520 ubifs_release_budget(c, &req);
522 ubifs_release_budget(c, &ino_req);
523 fscrypt_free_filename(&nm);
524 ubifs_err(c, "cannot create temporary file, error %d", err);
529 * vfs_dent_type - get VFS directory entry type.
530 * @type: UBIFS directory entry type
532 * This function converts UBIFS directory entry type into VFS directory entry
535 static unsigned int vfs_dent_type(uint8_t type)
538 case UBIFS_ITYPE_REG:
540 case UBIFS_ITYPE_DIR:
542 case UBIFS_ITYPE_LNK:
544 case UBIFS_ITYPE_BLK:
546 case UBIFS_ITYPE_CHR:
548 case UBIFS_ITYPE_FIFO:
550 case UBIFS_ITYPE_SOCK:
559 * The classical Unix view for directory is that it is a linear array of
560 * (name, inode number) entries. Linux/VFS assumes this model as well.
561 * Particularly, 'readdir()' call wants us to return a directory entry offset
562 * which later may be used to continue 'readdir()'ing the directory or to
563 * 'seek()' to that specific direntry. Obviously UBIFS does not really fit this
564 * model because directory entries are identified by keys, which may collide.
566 * UBIFS uses directory entry hash value for directory offsets, so
567 * 'seekdir()'/'telldir()' may not always work because of possible key
568 * collisions. But UBIFS guarantees that consecutive 'readdir()' calls work
569 * properly by means of saving full directory entry name in the private field
570 * of the file description object.
572 * This means that UBIFS cannot support NFS which requires full
573 * 'seekdir()'/'telldir()' support.
575 static int ubifs_readdir(struct file *file, struct dir_context *ctx)
577 int fstr_real_len = 0, err = 0;
578 struct fscrypt_name nm;
579 struct fscrypt_str fstr = {0};
581 struct ubifs_dent_node *dent;
582 struct inode *dir = file_inode(file);
583 struct ubifs_info *c = dir->i_sb->s_fs_info;
584 bool encrypted = IS_ENCRYPTED(dir);
586 dbg_gen("dir ino %lu, f_pos %#llx", dir->i_ino, ctx->pos);
588 if (ctx->pos > UBIFS_S_KEY_HASH_MASK || ctx->pos == 2)
590 * The directory was seek'ed to a senseless position or there
591 * are no more entries.
596 err = fscrypt_prepare_readdir(dir);
600 err = fscrypt_fname_alloc_buffer(UBIFS_MAX_NLEN, &fstr);
604 fstr_real_len = fstr.len;
607 if (file->f_version == 0) {
609 * The file was seek'ed, which means that @file->private_data
610 * is now invalid. This may also be just the first
611 * 'ubifs_readdir()' invocation, in which case
612 * @file->private_data is NULL, and the below code is
615 kfree(file->private_data);
616 file->private_data = NULL;
620 * 'generic_file_llseek()' unconditionally sets @file->f_version to
621 * zero, and we use this for detecting whether the file was seek'ed.
625 /* File positions 0 and 1 correspond to "." and ".." */
627 ubifs_assert(c, !file->private_data);
628 if (!dir_emit_dots(file, ctx)) {
630 fscrypt_fname_free_buffer(&fstr);
634 /* Find the first entry in TNC and save it */
635 lowest_dent_key(c, &key, dir->i_ino);
637 dent = ubifs_tnc_next_ent(c, &key, &nm);
643 ctx->pos = key_hash_flash(c, &dent->key);
644 file->private_data = dent;
647 dent = file->private_data;
650 * The directory was seek'ed to and is now readdir'ed.
651 * Find the entry corresponding to @ctx->pos or the closest one.
653 dent_key_init_hash(c, &key, dir->i_ino, ctx->pos);
655 dent = ubifs_tnc_next_ent(c, &key, &nm);
660 ctx->pos = key_hash_flash(c, &dent->key);
661 file->private_data = dent;
665 dbg_gen("ino %llu, new f_pos %#x",
666 (unsigned long long)le64_to_cpu(dent->inum),
667 key_hash_flash(c, &dent->key));
668 ubifs_assert(c, le64_to_cpu(dent->ch.sqnum) >
669 ubifs_inode(dir)->creat_sqnum);
671 fname_len(&nm) = le16_to_cpu(dent->nlen);
672 fname_name(&nm) = dent->name;
675 fstr.len = fstr_real_len;
677 err = fscrypt_fname_disk_to_usr(dir, key_hash_flash(c,
679 le32_to_cpu(dent->cookie),
680 &nm.disk_name, &fstr);
684 fstr.len = fname_len(&nm);
685 fstr.name = fname_name(&nm);
688 if (!dir_emit(ctx, fstr.name, fstr.len,
689 le64_to_cpu(dent->inum),
690 vfs_dent_type(dent->type))) {
692 fscrypt_fname_free_buffer(&fstr);
696 /* Switch to the next entry */
697 key_read(c, &dent->key, &key);
698 dent = ubifs_tnc_next_ent(c, &key, &nm);
704 kfree(file->private_data);
705 ctx->pos = key_hash_flash(c, &dent->key);
706 file->private_data = dent;
711 kfree(file->private_data);
712 file->private_data = NULL;
715 fscrypt_fname_free_buffer(&fstr);
718 ubifs_err(c, "cannot find next direntry, error %d", err);
721 * -ENOENT is a non-fatal error in this context, the TNC uses
722 * it to indicate that the cursor moved past the current directory
723 * and readdir() has to stop.
728 /* 2 is a special value indicating that there are no more direntries */
733 /* Free saved readdir() state when the directory is closed */
734 static int ubifs_dir_release(struct inode *dir, struct file *file)
736 kfree(file->private_data);
737 file->private_data = NULL;
741 static int ubifs_link(struct dentry *old_dentry, struct inode *dir,
742 struct dentry *dentry)
744 struct ubifs_info *c = dir->i_sb->s_fs_info;
745 struct inode *inode = d_inode(old_dentry);
746 struct ubifs_inode *ui = ubifs_inode(inode);
747 struct ubifs_inode *dir_ui = ubifs_inode(dir);
749 struct ubifs_budget_req req = { .new_dent = 1, .dirtied_ino = 2,
750 .dirtied_ino_d = ALIGN(ui->data_len, 8) };
751 struct fscrypt_name nm;
754 * Budget request settings: new direntry, changing the target inode,
755 * changing the parent inode.
758 dbg_gen("dent '%pd' to ino %lu (nlink %d) in dir ino %lu",
759 dentry, inode->i_ino,
760 inode->i_nlink, dir->i_ino);
761 ubifs_assert(c, inode_is_locked(dir));
762 ubifs_assert(c, inode_is_locked(inode));
764 err = fscrypt_prepare_link(old_dentry, dir, dentry);
768 err = fscrypt_setup_filename(dir, &dentry->d_name, 0, &nm);
772 sz_change = CALC_DENT_SIZE(fname_len(&nm));
774 err = dbg_check_synced_i_size(c, inode);
778 err = ubifs_budget_space(c, &req);
782 lock_2_inodes(dir, inode);
786 inode_set_ctime_current(inode);
787 dir->i_size += sz_change;
788 dir_ui->ui_size = dir->i_size;
789 inode_set_mtime_to_ts(dir,
790 inode_set_ctime_to_ts(dir, inode_get_ctime(inode)));
791 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0, inode->i_nlink == 1);
794 unlock_2_inodes(dir, inode);
796 ubifs_release_budget(c, &req);
797 d_instantiate(dentry, inode);
798 fscrypt_free_filename(&nm);
802 dir->i_size -= sz_change;
803 dir_ui->ui_size = dir->i_size;
805 unlock_2_inodes(dir, inode);
806 ubifs_release_budget(c, &req);
809 fscrypt_free_filename(&nm);
813 static int ubifs_unlink(struct inode *dir, struct dentry *dentry)
815 struct ubifs_info *c = dir->i_sb->s_fs_info;
816 struct inode *inode = d_inode(dentry);
817 struct ubifs_inode *dir_ui = ubifs_inode(dir);
818 int err, sz_change, budgeted = 1;
819 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
820 unsigned int saved_nlink = inode->i_nlink;
821 struct fscrypt_name nm;
824 * Budget request settings: deletion direntry, deletion inode (+1 for
825 * @dirtied_ino), changing the parent directory inode. If budgeting
826 * fails, go ahead anyway because we have extra space reserved for
830 dbg_gen("dent '%pd' from ino %lu (nlink %d) in dir ino %lu",
831 dentry, inode->i_ino,
832 inode->i_nlink, dir->i_ino);
834 err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm);
838 err = ubifs_purge_xattrs(inode);
842 sz_change = CALC_DENT_SIZE(fname_len(&nm));
844 ubifs_assert(c, inode_is_locked(dir));
845 ubifs_assert(c, inode_is_locked(inode));
846 err = dbg_check_synced_i_size(c, inode);
850 err = ubifs_budget_space(c, &req);
857 lock_2_inodes(dir, inode);
858 inode_set_ctime_current(inode);
860 dir->i_size -= sz_change;
861 dir_ui->ui_size = dir->i_size;
862 inode_set_mtime_to_ts(dir,
863 inode_set_ctime_to_ts(dir, inode_get_ctime(inode)));
864 err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0, 0);
867 unlock_2_inodes(dir, inode);
870 ubifs_release_budget(c, &req);
872 /* We've deleted something - clean the "no space" flags */
873 c->bi.nospace = c->bi.nospace_rp = 0;
876 fscrypt_free_filename(&nm);
880 dir->i_size += sz_change;
881 dir_ui->ui_size = dir->i_size;
882 set_nlink(inode, saved_nlink);
883 unlock_2_inodes(dir, inode);
885 ubifs_release_budget(c, &req);
887 fscrypt_free_filename(&nm);
892 * ubifs_check_dir_empty - check if a directory is empty or not.
893 * @dir: VFS inode object of the directory to check
895 * This function checks if directory @dir is empty. Returns zero if the
896 * directory is empty, %-ENOTEMPTY if it is not, and other negative error codes
899 int ubifs_check_dir_empty(struct inode *dir)
901 struct ubifs_info *c = dir->i_sb->s_fs_info;
902 struct fscrypt_name nm = { 0 };
903 struct ubifs_dent_node *dent;
907 lowest_dent_key(c, &key, dir->i_ino);
908 dent = ubifs_tnc_next_ent(c, &key, &nm);
920 static int ubifs_rmdir(struct inode *dir, struct dentry *dentry)
922 struct ubifs_info *c = dir->i_sb->s_fs_info;
923 struct inode *inode = d_inode(dentry);
924 int err, sz_change, budgeted = 1;
925 struct ubifs_inode *dir_ui = ubifs_inode(dir);
926 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
927 struct fscrypt_name nm;
930 * Budget request settings: deletion direntry, deletion inode and
931 * changing the parent inode. If budgeting fails, go ahead anyway
932 * because we have extra space reserved for deletions.
935 dbg_gen("directory '%pd', ino %lu in dir ino %lu", dentry,
936 inode->i_ino, dir->i_ino);
937 ubifs_assert(c, inode_is_locked(dir));
938 ubifs_assert(c, inode_is_locked(inode));
939 err = ubifs_check_dir_empty(d_inode(dentry));
943 err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm);
947 err = ubifs_purge_xattrs(inode);
951 sz_change = CALC_DENT_SIZE(fname_len(&nm));
953 err = ubifs_budget_space(c, &req);
960 lock_2_inodes(dir, inode);
961 inode_set_ctime_current(inode);
964 dir->i_size -= sz_change;
965 dir_ui->ui_size = dir->i_size;
966 inode_set_mtime_to_ts(dir,
967 inode_set_ctime_to_ts(dir, inode_get_ctime(inode)));
968 err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0, 0);
971 unlock_2_inodes(dir, inode);
974 ubifs_release_budget(c, &req);
976 /* We've deleted something - clean the "no space" flags */
977 c->bi.nospace = c->bi.nospace_rp = 0;
980 fscrypt_free_filename(&nm);
984 dir->i_size += sz_change;
985 dir_ui->ui_size = dir->i_size;
988 unlock_2_inodes(dir, inode);
990 ubifs_release_budget(c, &req);
992 fscrypt_free_filename(&nm);
996 static int ubifs_mkdir(struct mnt_idmap *idmap, struct inode *dir,
997 struct dentry *dentry, umode_t mode)
1000 struct ubifs_inode *dir_ui = ubifs_inode(dir);
1001 struct ubifs_info *c = dir->i_sb->s_fs_info;
1003 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
1005 struct fscrypt_name nm;
1008 * Budget request settings: new inode, new direntry and changing parent
1012 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
1013 dentry, mode, dir->i_ino);
1015 err = ubifs_budget_space(c, &req);
1019 err = ubifs_prepare_create(dir, dentry, &nm);
1023 sz_change = CALC_DENT_SIZE(fname_len(&nm));
1025 inode = ubifs_new_inode(c, dir, S_IFDIR | mode, false);
1026 if (IS_ERR(inode)) {
1027 err = PTR_ERR(inode);
1031 err = ubifs_init_security(dir, inode, &dentry->d_name);
1035 set_nlink(inode, 1);
1036 mutex_lock(&dir_ui->ui_mutex);
1037 insert_inode_hash(inode);
1040 dir->i_size += sz_change;
1041 dir_ui->ui_size = dir->i_size;
1042 inode_set_mtime_to_ts(dir,
1043 inode_set_ctime_to_ts(dir, inode_get_ctime(inode)));
1044 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0, 1);
1046 ubifs_err(c, "cannot create directory, error %d", err);
1049 mutex_unlock(&dir_ui->ui_mutex);
1051 ubifs_release_budget(c, &req);
1052 d_instantiate(dentry, inode);
1053 fscrypt_free_filename(&nm);
1057 dir->i_size -= sz_change;
1058 dir_ui->ui_size = dir->i_size;
1060 mutex_unlock(&dir_ui->ui_mutex);
1061 set_nlink(inode, 0);
1065 fscrypt_free_filename(&nm);
1067 ubifs_release_budget(c, &req);
1071 static int ubifs_mknod(struct mnt_idmap *idmap, struct inode *dir,
1072 struct dentry *dentry, umode_t mode, dev_t rdev)
1074 struct inode *inode;
1075 struct ubifs_inode *ui;
1076 struct ubifs_inode *dir_ui = ubifs_inode(dir);
1077 struct ubifs_info *c = dir->i_sb->s_fs_info;
1078 union ubifs_dev_desc *dev = NULL;
1080 int err, devlen = 0;
1081 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
1083 struct fscrypt_name nm;
1086 * Budget request settings: new inode, new direntry and changing parent
1090 dbg_gen("dent '%pd' in dir ino %lu", dentry, dir->i_ino);
1092 if (S_ISBLK(mode) || S_ISCHR(mode)) {
1093 dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
1096 devlen = ubifs_encode_dev(dev, rdev);
1099 req.new_ino_d = ALIGN(devlen, 8);
1100 err = ubifs_budget_space(c, &req);
1106 err = ubifs_prepare_create(dir, dentry, &nm);
1112 sz_change = CALC_DENT_SIZE(fname_len(&nm));
1114 inode = ubifs_new_inode(c, dir, mode, false);
1115 if (IS_ERR(inode)) {
1117 err = PTR_ERR(inode);
1121 err = ubifs_init_security(dir, inode, &dentry->d_name);
1127 init_special_inode(inode, inode->i_mode, rdev);
1128 inode->i_size = ubifs_inode(inode)->ui_size = devlen;
1129 ui = ubifs_inode(inode);
1131 ui->data_len = devlen;
1132 set_nlink(inode, 1);
1134 mutex_lock(&dir_ui->ui_mutex);
1135 dir->i_size += sz_change;
1136 dir_ui->ui_size = dir->i_size;
1137 inode_set_mtime_to_ts(dir,
1138 inode_set_ctime_to_ts(dir, inode_get_ctime(inode)));
1139 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0, 1);
1142 mutex_unlock(&dir_ui->ui_mutex);
1144 ubifs_release_budget(c, &req);
1145 insert_inode_hash(inode);
1146 d_instantiate(dentry, inode);
1147 fscrypt_free_filename(&nm);
1151 dir->i_size -= sz_change;
1152 dir_ui->ui_size = dir->i_size;
1153 mutex_unlock(&dir_ui->ui_mutex);
1154 set_nlink(inode, 0);
1158 fscrypt_free_filename(&nm);
1160 ubifs_release_budget(c, &req);
1164 static int ubifs_symlink(struct mnt_idmap *idmap, struct inode *dir,
1165 struct dentry *dentry, const char *symname)
1167 struct inode *inode;
1168 struct ubifs_inode *ui;
1169 struct ubifs_inode *dir_ui = ubifs_inode(dir);
1170 struct ubifs_info *c = dir->i_sb->s_fs_info;
1171 int err, sz_change, len = strlen(symname);
1172 struct fscrypt_str disk_link;
1173 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
1175 struct fscrypt_name nm;
1177 dbg_gen("dent '%pd', target '%s' in dir ino %lu", dentry,
1178 symname, dir->i_ino);
1180 err = fscrypt_prepare_symlink(dir, symname, len, UBIFS_MAX_INO_DATA,
1186 * Budget request settings: new inode, new direntry and changing parent
1189 req.new_ino_d = ALIGN(disk_link.len - 1, 8);
1190 err = ubifs_budget_space(c, &req);
1194 err = ubifs_prepare_create(dir, dentry, &nm);
1198 sz_change = CALC_DENT_SIZE(fname_len(&nm));
1200 inode = ubifs_new_inode(c, dir, S_IFLNK | S_IRWXUGO, false);
1201 if (IS_ERR(inode)) {
1202 err = PTR_ERR(inode);
1206 err = ubifs_init_security(dir, inode, &dentry->d_name);
1210 ui = ubifs_inode(inode);
1211 ui->data = kmalloc(disk_link.len, GFP_NOFS);
1217 if (IS_ENCRYPTED(inode)) {
1218 disk_link.name = ui->data; /* encrypt directly into ui->data */
1219 err = fscrypt_encrypt_symlink(inode, symname, len, &disk_link);
1223 memcpy(ui->data, disk_link.name, disk_link.len);
1224 inode->i_link = ui->data;
1228 * The terminating zero byte is not written to the flash media and it
1229 * is put just to make later in-memory string processing simpler. Thus,
1230 * data length is @disk_link.len - 1, not @disk_link.len.
1232 ui->data_len = disk_link.len - 1;
1233 inode->i_size = ubifs_inode(inode)->ui_size = disk_link.len - 1;
1234 set_nlink(inode, 1);
1236 mutex_lock(&dir_ui->ui_mutex);
1237 dir->i_size += sz_change;
1238 dir_ui->ui_size = dir->i_size;
1239 inode_set_mtime_to_ts(dir,
1240 inode_set_ctime_to_ts(dir, inode_get_ctime(inode)));
1241 err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0, 1);
1244 mutex_unlock(&dir_ui->ui_mutex);
1246 insert_inode_hash(inode);
1247 d_instantiate(dentry, inode);
1252 dir->i_size -= sz_change;
1253 dir_ui->ui_size = dir->i_size;
1254 mutex_unlock(&dir_ui->ui_mutex);
1255 set_nlink(inode, 0);
1257 /* Free inode->i_link before inode is marked as bad. */
1258 fscrypt_free_inode(inode);
1261 fscrypt_free_filename(&nm);
1263 ubifs_release_budget(c, &req);
1268 * lock_4_inodes - a wrapper for locking three UBIFS inodes.
1269 * @inode1: first inode
1270 * @inode2: second inode
1271 * @inode3: third inode
1272 * @inode4: fourth inode
1274 * This function is used for 'ubifs_rename()' and @inode1 may be the same as
1275 * @inode2 whereas @inode3 and @inode4 may be %NULL.
1277 * We do not implement any tricks to guarantee strict lock ordering, because
1278 * VFS has already done it for us on the @i_mutex. So this is just a simple
1281 static void lock_4_inodes(struct inode *inode1, struct inode *inode2,
1282 struct inode *inode3, struct inode *inode4)
1284 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
1285 if (inode2 != inode1)
1286 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
1288 mutex_lock_nested(&ubifs_inode(inode3)->ui_mutex, WB_MUTEX_3);
1290 mutex_lock_nested(&ubifs_inode(inode4)->ui_mutex, WB_MUTEX_4);
1294 * unlock_4_inodes - a wrapper for unlocking three UBIFS inodes for rename.
1295 * @inode1: first inode
1296 * @inode2: second inode
1297 * @inode3: third inode
1298 * @inode4: fourth inode
1300 static void unlock_4_inodes(struct inode *inode1, struct inode *inode2,
1301 struct inode *inode3, struct inode *inode4)
1304 mutex_unlock(&ubifs_inode(inode4)->ui_mutex);
1306 mutex_unlock(&ubifs_inode(inode3)->ui_mutex);
1307 if (inode1 != inode2)
1308 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
1309 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
1312 static int do_rename(struct inode *old_dir, struct dentry *old_dentry,
1313 struct inode *new_dir, struct dentry *new_dentry,
1316 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
1317 struct inode *old_inode = d_inode(old_dentry);
1318 struct inode *new_inode = d_inode(new_dentry);
1319 struct inode *whiteout = NULL;
1320 struct ubifs_inode *old_inode_ui = ubifs_inode(old_inode);
1321 struct ubifs_inode *whiteout_ui = NULL;
1322 int err, release, sync = 0, move = (new_dir != old_dir);
1323 int is_dir = S_ISDIR(old_inode->i_mode);
1324 int unlink = !!new_inode, new_sz, old_sz;
1325 struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1327 struct ubifs_budget_req ino_req = { .dirtied_ino = 1,
1328 .dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) };
1329 struct ubifs_budget_req wht_req;
1330 unsigned int saved_nlink;
1331 struct fscrypt_name old_nm, new_nm;
1334 * Budget request settings:
1335 * req: deletion direntry, new direntry, removing the old inode,
1336 * and changing old and new parent directory inodes.
1338 * wht_req: new whiteout inode for RENAME_WHITEOUT.
1340 * ino_req: marks the target inode as dirty and does not write it.
1343 dbg_gen("dent '%pd' ino %lu in dir ino %lu to dent '%pd' in dir ino %lu flags 0x%x",
1344 old_dentry, old_inode->i_ino, old_dir->i_ino,
1345 new_dentry, new_dir->i_ino, flags);
1348 ubifs_assert(c, inode_is_locked(new_inode));
1350 /* Budget for old inode's data when its nlink > 1. */
1351 req.dirtied_ino_d = ALIGN(ubifs_inode(new_inode)->data_len, 8);
1352 err = ubifs_purge_xattrs(new_inode);
1357 if (unlink && is_dir) {
1358 err = ubifs_check_dir_empty(new_inode);
1363 err = fscrypt_setup_filename(old_dir, &old_dentry->d_name, 0, &old_nm);
1367 err = fscrypt_setup_filename(new_dir, &new_dentry->d_name, 0, &new_nm);
1369 fscrypt_free_filename(&old_nm);
1373 new_sz = CALC_DENT_SIZE(fname_len(&new_nm));
1374 old_sz = CALC_DENT_SIZE(fname_len(&old_nm));
1376 err = ubifs_budget_space(c, &req);
1378 fscrypt_free_filename(&old_nm);
1379 fscrypt_free_filename(&new_nm);
1382 err = ubifs_budget_space(c, &ino_req);
1384 fscrypt_free_filename(&old_nm);
1385 fscrypt_free_filename(&new_nm);
1386 ubifs_release_budget(c, &req);
1390 if (flags & RENAME_WHITEOUT) {
1391 union ubifs_dev_desc *dev = NULL;
1393 dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
1400 * The whiteout inode without dentry is pinned in memory,
1401 * umount won't happen during rename process because we
1402 * got parent dentry.
1404 whiteout = create_whiteout(old_dir, old_dentry);
1405 if (IS_ERR(whiteout)) {
1406 err = PTR_ERR(whiteout);
1411 whiteout_ui = ubifs_inode(whiteout);
1412 whiteout_ui->data = dev;
1413 whiteout_ui->data_len = ubifs_encode_dev(dev, MKDEV(0, 0));
1414 ubifs_assert(c, !whiteout_ui->dirty);
1416 memset(&wht_req, 0, sizeof(struct ubifs_budget_req));
1417 wht_req.new_ino = 1;
1418 wht_req.new_ino_d = ALIGN(whiteout_ui->data_len, 8);
1420 * To avoid deadlock between space budget (holds ui_mutex and
1421 * waits wb work) and writeback work(waits ui_mutex), do space
1422 * budget before ubifs inodes locked.
1424 err = ubifs_budget_space(c, &wht_req);
1429 set_nlink(whiteout, 1);
1431 /* Add the old_dentry size to the old_dir size. */
1432 old_sz -= CALC_DENT_SIZE(fname_len(&old_nm));
1435 lock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1438 * Like most other Unix systems, set the @i_ctime for inodes on a
1441 simple_rename_timestamp(old_dir, old_dentry, new_dir, new_dentry);
1443 /* We must adjust parent link count when renaming directories */
1447 * @old_dir loses a link because we are moving
1448 * @old_inode to a different directory.
1450 drop_nlink(old_dir);
1452 * @new_dir only gains a link if we are not also
1453 * overwriting an existing directory.
1459 * @old_inode is not moving to a different directory,
1460 * but @old_dir still loses a link if we are
1461 * overwriting an existing directory.
1464 drop_nlink(old_dir);
1468 old_dir->i_size -= old_sz;
1469 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1472 * And finally, if we unlinked a direntry which happened to have the
1473 * same name as the moved direntry, we have to decrement @i_nlink of
1474 * the unlinked inode.
1478 * Directories cannot have hard-links, so if this is a
1479 * directory, just clear @i_nlink.
1481 saved_nlink = new_inode->i_nlink;
1483 clear_nlink(new_inode);
1485 drop_nlink(new_inode);
1487 new_dir->i_size += new_sz;
1488 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1492 * Do not ask 'ubifs_jnl_rename()' to flush write-buffer if @old_inode
1493 * is dirty, because this will be done later on at the end of
1496 if (IS_SYNC(old_inode)) {
1497 sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1498 if (unlink && IS_SYNC(new_inode))
1501 * S_SYNC flag of whiteout inherits from the old_dir, and we
1502 * have already checked the old dir inode. So there is no need
1503 * to check whiteout.
1507 err = ubifs_jnl_rename(c, old_dir, old_inode, &old_nm, new_dir,
1508 new_inode, &new_nm, whiteout, sync, !!whiteout);
1512 unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1513 ubifs_release_budget(c, &req);
1516 ubifs_release_budget(c, &wht_req);
1520 mutex_lock(&old_inode_ui->ui_mutex);
1521 release = old_inode_ui->dirty;
1522 mark_inode_dirty_sync(old_inode);
1523 mutex_unlock(&old_inode_ui->ui_mutex);
1526 ubifs_release_budget(c, &ino_req);
1527 if (IS_SYNC(old_inode))
1529 * Rename finished here. Although old inode cannot be updated
1530 * on flash, old ctime is not a big problem, don't return err
1531 * code to userspace.
1533 old_inode->i_sb->s_op->write_inode(old_inode, NULL);
1535 fscrypt_free_filename(&old_nm);
1536 fscrypt_free_filename(&new_nm);
1541 set_nlink(new_inode, saved_nlink);
1543 new_dir->i_size -= new_sz;
1544 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1546 old_dir->i_size += old_sz;
1547 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1552 drop_nlink(new_dir);
1558 unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1560 ubifs_release_budget(c, &wht_req);
1561 set_nlink(whiteout, 0);
1565 ubifs_release_budget(c, &ino_req);
1566 ubifs_release_budget(c, &req);
1567 fscrypt_free_filename(&old_nm);
1568 fscrypt_free_filename(&new_nm);
1572 static int ubifs_xrename(struct inode *old_dir, struct dentry *old_dentry,
1573 struct inode *new_dir, struct dentry *new_dentry)
1575 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
1576 struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1578 int sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1579 struct inode *fst_inode = d_inode(old_dentry);
1580 struct inode *snd_inode = d_inode(new_dentry);
1582 struct fscrypt_name fst_nm, snd_nm;
1584 ubifs_assert(c, fst_inode && snd_inode);
1587 * Budget request settings: changing two direntries, changing the two
1588 * parent directory inodes.
1591 dbg_gen("dent '%pd' ino %lu in dir ino %lu exchange dent '%pd' ino %lu in dir ino %lu",
1592 old_dentry, fst_inode->i_ino, old_dir->i_ino,
1593 new_dentry, snd_inode->i_ino, new_dir->i_ino);
1595 err = fscrypt_setup_filename(old_dir, &old_dentry->d_name, 0, &fst_nm);
1599 err = fscrypt_setup_filename(new_dir, &new_dentry->d_name, 0, &snd_nm);
1601 fscrypt_free_filename(&fst_nm);
1605 err = ubifs_budget_space(c, &req);
1609 lock_4_inodes(old_dir, new_dir, NULL, NULL);
1611 simple_rename_timestamp(old_dir, old_dentry, new_dir, new_dentry);
1613 if (old_dir != new_dir) {
1614 if (S_ISDIR(fst_inode->i_mode) && !S_ISDIR(snd_inode->i_mode)) {
1616 drop_nlink(old_dir);
1618 else if (!S_ISDIR(fst_inode->i_mode) && S_ISDIR(snd_inode->i_mode)) {
1619 drop_nlink(new_dir);
1624 err = ubifs_jnl_xrename(c, old_dir, fst_inode, &fst_nm, new_dir,
1625 snd_inode, &snd_nm, sync);
1627 unlock_4_inodes(old_dir, new_dir, NULL, NULL);
1628 ubifs_release_budget(c, &req);
1631 fscrypt_free_filename(&fst_nm);
1632 fscrypt_free_filename(&snd_nm);
1636 static int ubifs_rename(struct mnt_idmap *idmap,
1637 struct inode *old_dir, struct dentry *old_dentry,
1638 struct inode *new_dir, struct dentry *new_dentry,
1642 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
1644 if (flags & ~(RENAME_NOREPLACE | RENAME_WHITEOUT | RENAME_EXCHANGE))
1647 ubifs_assert(c, inode_is_locked(old_dir));
1648 ubifs_assert(c, inode_is_locked(new_dir));
1650 err = fscrypt_prepare_rename(old_dir, old_dentry, new_dir, new_dentry,
1655 if (flags & RENAME_EXCHANGE)
1656 return ubifs_xrename(old_dir, old_dentry, new_dir, new_dentry);
1658 return do_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
1661 int ubifs_getattr(struct mnt_idmap *idmap, const struct path *path,
1662 struct kstat *stat, u32 request_mask, unsigned int flags)
1665 struct inode *inode = d_inode(path->dentry);
1666 struct ubifs_inode *ui = ubifs_inode(inode);
1668 mutex_lock(&ui->ui_mutex);
1670 if (ui->flags & UBIFS_APPEND_FL)
1671 stat->attributes |= STATX_ATTR_APPEND;
1672 if (ui->flags & UBIFS_COMPR_FL)
1673 stat->attributes |= STATX_ATTR_COMPRESSED;
1674 if (ui->flags & UBIFS_CRYPT_FL)
1675 stat->attributes |= STATX_ATTR_ENCRYPTED;
1676 if (ui->flags & UBIFS_IMMUTABLE_FL)
1677 stat->attributes |= STATX_ATTR_IMMUTABLE;
1679 stat->attributes_mask |= (STATX_ATTR_APPEND |
1680 STATX_ATTR_COMPRESSED |
1681 STATX_ATTR_ENCRYPTED |
1682 STATX_ATTR_IMMUTABLE);
1684 generic_fillattr(&nop_mnt_idmap, request_mask, inode, stat);
1685 stat->blksize = UBIFS_BLOCK_SIZE;
1686 stat->size = ui->ui_size;
1689 * Unfortunately, the 'stat()' system call was designed for block
1690 * device based file systems, and it is not appropriate for UBIFS,
1691 * because UBIFS does not have notion of "block". For example, it is
1692 * difficult to tell how many block a directory takes - it actually
1693 * takes less than 300 bytes, but we have to round it to block size,
1694 * which introduces large mistake. This makes utilities like 'du' to
1695 * report completely senseless numbers. This is the reason why UBIFS
1696 * goes the same way as JFFS2 - it reports zero blocks for everything
1697 * but regular files, which makes more sense than reporting completely
1700 if (S_ISREG(inode->i_mode)) {
1701 size = ui->xattr_size;
1703 size = ALIGN(size, UBIFS_BLOCK_SIZE);
1705 * Note, user-space expects 512-byte blocks count irrespectively
1706 * of what was reported in @stat->size.
1708 stat->blocks = size >> 9;
1711 mutex_unlock(&ui->ui_mutex);
1715 const struct inode_operations ubifs_dir_inode_operations = {
1716 .lookup = ubifs_lookup,
1717 .create = ubifs_create,
1719 .symlink = ubifs_symlink,
1720 .unlink = ubifs_unlink,
1721 .mkdir = ubifs_mkdir,
1722 .rmdir = ubifs_rmdir,
1723 .mknod = ubifs_mknod,
1724 .rename = ubifs_rename,
1725 .setattr = ubifs_setattr,
1726 .getattr = ubifs_getattr,
1727 .listxattr = ubifs_listxattr,
1728 .update_time = ubifs_update_time,
1729 .tmpfile = ubifs_tmpfile,
1730 .fileattr_get = ubifs_fileattr_get,
1731 .fileattr_set = ubifs_fileattr_set,
1734 const struct file_operations ubifs_dir_operations = {
1735 .llseek = generic_file_llseek,
1736 .release = ubifs_dir_release,
1737 .read = generic_read_dir,
1738 .iterate_shared = ubifs_readdir,
1739 .fsync = ubifs_fsync,
1740 .unlocked_ioctl = ubifs_ioctl,
1741 #ifdef CONFIG_COMPAT
1742 .compat_ioctl = ubifs_compat_ioctl,