1 /* * This file is part of UBIFS.
3 * Copyright (C) 2006-2008 Nokia Corporation.
4 * Copyright (C) 2006, 2007 University of Szeged, Hungary
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.
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
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
19 * Authors: Artem Bityutskiy (Битюцкий Артём)
25 * This file implements directory operations.
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.
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.
46 * inherit_flags - inherit flags of the parent inode.
48 * @mode: new inode mode flags
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.
57 * This function returns the inherited flags.
59 static int inherit_flags(const struct inode
*dir
, umode_t mode
)
62 const struct ubifs_inode
*ui
= ubifs_inode(dir
);
64 if (!S_ISDIR(dir
->i_mode
))
66 * The parent is not a directory, which means that an extended
67 * attribute inode is being created. No flags.
71 flags
= ui
->flags
& (UBIFS_COMPR_FL
| UBIFS_SYNC_FL
| UBIFS_DIRSYNC_FL
);
73 /* The "DIRSYNC" flag only applies to directories */
74 flags
&= ~UBIFS_DIRSYNC_FL
;
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
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
88 struct inode
*ubifs_new_inode(struct ubifs_info
*c
, const struct inode
*dir
,
92 struct ubifs_inode
*ui
;
94 inode
= new_inode(c
->vfs_sb
);
95 ui
= ubifs_inode(inode
);
97 return ERR_PTR(-ENOMEM
);
100 * Set 'S_NOCMTIME' to prevent VFS form updating [mc]time of inodes and
101 * marking them dirty in file write path (see 'file_update_time()').
102 * UBIFS has to fully control "clean <-> dirty" transitions of inodes
103 * to make budgeting work.
105 inode
->i_flags
|= S_NOCMTIME
;
107 inode_init_owner(inode
, dir
, mode
);
108 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
=
109 ubifs_current_time(inode
);
110 inode
->i_mapping
->nrpages
= 0;
111 /* Disable readahead */
112 inode
->i_mapping
->backing_dev_info
= &c
->bdi
;
114 switch (mode
& S_IFMT
) {
116 inode
->i_mapping
->a_ops
= &ubifs_file_address_operations
;
117 inode
->i_op
= &ubifs_file_inode_operations
;
118 inode
->i_fop
= &ubifs_file_operations
;
121 inode
->i_op
= &ubifs_dir_inode_operations
;
122 inode
->i_fop
= &ubifs_dir_operations
;
123 inode
->i_size
= ui
->ui_size
= UBIFS_INO_NODE_SZ
;
126 inode
->i_op
= &ubifs_symlink_inode_operations
;
132 inode
->i_op
= &ubifs_file_inode_operations
;
138 ui
->flags
= inherit_flags(dir
, mode
);
139 ubifs_set_inode_flags(inode
);
141 ui
->compr_type
= c
->default_compr
;
143 ui
->compr_type
= UBIFS_COMPR_NONE
;
144 ui
->synced_i_size
= 0;
146 spin_lock(&c
->cnt_lock
);
147 /* Inode number overflow is currently not supported */
148 if (c
->highest_inum
>= INUM_WARN_WATERMARK
) {
149 if (c
->highest_inum
>= INUM_WATERMARK
) {
150 spin_unlock(&c
->cnt_lock
);
151 ubifs_err("out of inode numbers");
152 make_bad_inode(inode
);
154 return ERR_PTR(-EINVAL
);
156 ubifs_warn("running out of inode numbers (current %lu, max %d)",
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 static int dbg_check_name(const struct ubifs_info
*c
,
174 const struct ubifs_dent_node
*dent
,
175 const struct qstr
*nm
)
177 if (!dbg_is_chk_gen(c
))
179 if (le16_to_cpu(dent
->nlen
) != nm
->len
)
181 if (memcmp(dent
->name
, nm
->name
, nm
->len
))
186 static struct dentry
*ubifs_lookup(struct inode
*dir
, struct dentry
*dentry
,
191 struct inode
*inode
= NULL
;
192 struct ubifs_dent_node
*dent
;
193 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
195 dbg_gen("'%.*s' in dir ino %lu",
196 dentry
->d_name
.len
, dentry
->d_name
.name
, dir
->i_ino
);
198 if (dentry
->d_name
.len
> UBIFS_MAX_NLEN
)
199 return ERR_PTR(-ENAMETOOLONG
);
201 dent
= kmalloc(UBIFS_MAX_DENT_NODE_SZ
, GFP_NOFS
);
203 return ERR_PTR(-ENOMEM
);
205 dent_key_init(c
, &key
, dir
->i_ino
, &dentry
->d_name
);
207 err
= ubifs_tnc_lookup_nm(c
, &key
, dent
, &dentry
->d_name
);
209 if (err
== -ENOENT
) {
210 dbg_gen("not found");
216 if (dbg_check_name(c
, dent
, &dentry
->d_name
)) {
221 inode
= ubifs_iget(dir
->i_sb
, le64_to_cpu(dent
->inum
));
224 * This should not happen. Probably the file-system needs
227 err
= PTR_ERR(inode
);
228 ubifs_err("dead directory entry '%.*s', error %d",
229 dentry
->d_name
.len
, dentry
->d_name
.name
, err
);
230 ubifs_ro_mode(c
, err
);
237 * Note, d_splice_alias() would be required instead if we supported
240 d_add(dentry
, inode
);
248 static int ubifs_create(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
252 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
253 int err
, sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
254 struct ubifs_budget_req req
= { .new_ino
= 1, .new_dent
= 1,
256 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
259 * Budget request settings: new inode, new direntry, changing the
260 * parent directory inode.
263 dbg_gen("dent '%.*s', mode %#hx in dir ino %lu",
264 dentry
->d_name
.len
, dentry
->d_name
.name
, mode
, dir
->i_ino
);
266 err
= ubifs_budget_space(c
, &req
);
270 inode
= ubifs_new_inode(c
, dir
, mode
);
272 err
= PTR_ERR(inode
);
276 mutex_lock(&dir_ui
->ui_mutex
);
277 dir
->i_size
+= sz_change
;
278 dir_ui
->ui_size
= dir
->i_size
;
279 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
280 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
283 mutex_unlock(&dir_ui
->ui_mutex
);
285 ubifs_release_budget(c
, &req
);
286 insert_inode_hash(inode
);
287 d_instantiate(dentry
, inode
);
291 dir
->i_size
-= sz_change
;
292 dir_ui
->ui_size
= dir
->i_size
;
293 mutex_unlock(&dir_ui
->ui_mutex
);
294 make_bad_inode(inode
);
297 ubifs_release_budget(c
, &req
);
298 ubifs_err("cannot create regular file, error %d", err
);
303 * vfs_dent_type - get VFS directory entry type.
304 * @type: UBIFS directory entry type
306 * This function converts UBIFS directory entry type into VFS directory entry
309 static unsigned int vfs_dent_type(uint8_t type
)
312 case UBIFS_ITYPE_REG
:
314 case UBIFS_ITYPE_DIR
:
316 case UBIFS_ITYPE_LNK
:
318 case UBIFS_ITYPE_BLK
:
320 case UBIFS_ITYPE_CHR
:
322 case UBIFS_ITYPE_FIFO
:
324 case UBIFS_ITYPE_SOCK
:
333 * The classical Unix view for directory is that it is a linear array of
334 * (name, inode number) entries. Linux/VFS assumes this model as well.
335 * Particularly, 'readdir()' call wants us to return a directory entry offset
336 * which later may be used to continue 'readdir()'ing the directory or to
337 * 'seek()' to that specific direntry. Obviously UBIFS does not really fit this
338 * model because directory entries are identified by keys, which may collide.
340 * UBIFS uses directory entry hash value for directory offsets, so
341 * 'seekdir()'/'telldir()' may not always work because of possible key
342 * collisions. But UBIFS guarantees that consecutive 'readdir()' calls work
343 * properly by means of saving full directory entry name in the private field
344 * of the file description object.
346 * This means that UBIFS cannot support NFS which requires full
347 * 'seekdir()'/'telldir()' support.
349 static int ubifs_readdir(struct file
*file
, struct dir_context
*ctx
)
354 struct ubifs_dent_node
*dent
;
355 struct inode
*dir
= file_inode(file
);
356 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
358 dbg_gen("dir ino %lu, f_pos %#llx", dir
->i_ino
, ctx
->pos
);
360 if (ctx
->pos
> UBIFS_S_KEY_HASH_MASK
|| ctx
->pos
== 2)
362 * The directory was seek'ed to a senseless position or there
363 * are no more entries.
367 if (file
->f_version
== 0) {
369 * The file was seek'ed, which means that @file->private_data
370 * is now invalid. This may also be just the first
371 * 'ubifs_readdir()' invocation, in which case
372 * @file->private_data is NULL, and the below code is
375 kfree(file
->private_data
);
376 file
->private_data
= NULL
;
380 * 'generic_file_llseek()' unconditionally sets @file->f_version to
381 * zero, and we use this for detecting whether the file was seek'ed.
385 /* File positions 0 and 1 correspond to "." and ".." */
387 ubifs_assert(!file
->private_data
);
388 if (!dir_emit_dots(file
, ctx
))
391 /* Find the first entry in TNC and save it */
392 lowest_dent_key(c
, &key
, dir
->i_ino
);
394 dent
= ubifs_tnc_next_ent(c
, &key
, &nm
);
400 ctx
->pos
= key_hash_flash(c
, &dent
->key
);
401 file
->private_data
= dent
;
404 dent
= file
->private_data
;
407 * The directory was seek'ed to and is now readdir'ed.
408 * Find the entry corresponding to @ctx->pos or the closest one.
410 dent_key_init_hash(c
, &key
, dir
->i_ino
, ctx
->pos
);
412 dent
= ubifs_tnc_next_ent(c
, &key
, &nm
);
417 ctx
->pos
= key_hash_flash(c
, &dent
->key
);
418 file
->private_data
= dent
;
422 dbg_gen("feed '%s', ino %llu, new f_pos %#x",
423 dent
->name
, (unsigned long long)le64_to_cpu(dent
->inum
),
424 key_hash_flash(c
, &dent
->key
));
425 ubifs_assert(le64_to_cpu(dent
->ch
.sqnum
) >
426 ubifs_inode(dir
)->creat_sqnum
);
428 nm
.len
= le16_to_cpu(dent
->nlen
);
429 if (!dir_emit(ctx
, dent
->name
, nm
.len
,
430 le64_to_cpu(dent
->inum
),
431 vfs_dent_type(dent
->type
)))
434 /* Switch to the next entry */
435 key_read(c
, &dent
->key
, &key
);
436 nm
.name
= dent
->name
;
437 dent
= ubifs_tnc_next_ent(c
, &key
, &nm
);
443 kfree(file
->private_data
);
444 ctx
->pos
= key_hash_flash(c
, &dent
->key
);
445 file
->private_data
= dent
;
450 if (err
!= -ENOENT
) {
451 ubifs_err("cannot find next direntry, error %d", err
);
455 kfree(file
->private_data
);
456 file
->private_data
= NULL
;
457 /* 2 is a special value indicating that there are no more direntries */
462 /* Free saved readdir() state when the directory is closed */
463 static int ubifs_dir_release(struct inode
*dir
, struct file
*file
)
465 kfree(file
->private_data
);
466 file
->private_data
= NULL
;
471 * lock_2_inodes - a wrapper for locking two UBIFS inodes.
472 * @inode1: first inode
473 * @inode2: second inode
475 * We do not implement any tricks to guarantee strict lock ordering, because
476 * VFS has already done it for us on the @i_mutex. So this is just a simple
479 static void lock_2_inodes(struct inode
*inode1
, struct inode
*inode2
)
481 mutex_lock_nested(&ubifs_inode(inode1
)->ui_mutex
, WB_MUTEX_1
);
482 mutex_lock_nested(&ubifs_inode(inode2
)->ui_mutex
, WB_MUTEX_2
);
486 * unlock_2_inodes - a wrapper for unlocking two UBIFS inodes.
487 * @inode1: first inode
488 * @inode2: second inode
490 static void unlock_2_inodes(struct inode
*inode1
, struct inode
*inode2
)
492 mutex_unlock(&ubifs_inode(inode2
)->ui_mutex
);
493 mutex_unlock(&ubifs_inode(inode1
)->ui_mutex
);
496 static int ubifs_link(struct dentry
*old_dentry
, struct inode
*dir
,
497 struct dentry
*dentry
)
499 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
500 struct inode
*inode
= old_dentry
->d_inode
;
501 struct ubifs_inode
*ui
= ubifs_inode(inode
);
502 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
503 int err
, sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
504 struct ubifs_budget_req req
= { .new_dent
= 1, .dirtied_ino
= 2,
505 .dirtied_ino_d
= ALIGN(ui
->data_len
, 8) };
508 * Budget request settings: new direntry, changing the target inode,
509 * changing the parent inode.
512 dbg_gen("dent '%.*s' to ino %lu (nlink %d) in dir ino %lu",
513 dentry
->d_name
.len
, dentry
->d_name
.name
, inode
->i_ino
,
514 inode
->i_nlink
, dir
->i_ino
);
515 ubifs_assert(mutex_is_locked(&dir
->i_mutex
));
516 ubifs_assert(mutex_is_locked(&inode
->i_mutex
));
518 err
= dbg_check_synced_i_size(c
, inode
);
522 err
= ubifs_budget_space(c
, &req
);
526 lock_2_inodes(dir
, inode
);
529 inode
->i_ctime
= ubifs_current_time(inode
);
530 dir
->i_size
+= sz_change
;
531 dir_ui
->ui_size
= dir
->i_size
;
532 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
533 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
536 unlock_2_inodes(dir
, inode
);
538 ubifs_release_budget(c
, &req
);
539 d_instantiate(dentry
, inode
);
543 dir
->i_size
-= sz_change
;
544 dir_ui
->ui_size
= dir
->i_size
;
546 unlock_2_inodes(dir
, inode
);
547 ubifs_release_budget(c
, &req
);
552 static int ubifs_unlink(struct inode
*dir
, struct dentry
*dentry
)
554 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
555 struct inode
*inode
= dentry
->d_inode
;
556 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
557 int sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
558 int err
, budgeted
= 1;
559 struct ubifs_budget_req req
= { .mod_dent
= 1, .dirtied_ino
= 2 };
560 unsigned int saved_nlink
= inode
->i_nlink
;
563 * Budget request settings: deletion direntry, deletion inode (+1 for
564 * @dirtied_ino), changing the parent directory inode. If budgeting
565 * fails, go ahead anyway because we have extra space reserved for
569 dbg_gen("dent '%.*s' from ino %lu (nlink %d) in dir ino %lu",
570 dentry
->d_name
.len
, dentry
->d_name
.name
, inode
->i_ino
,
571 inode
->i_nlink
, dir
->i_ino
);
572 ubifs_assert(mutex_is_locked(&dir
->i_mutex
));
573 ubifs_assert(mutex_is_locked(&inode
->i_mutex
));
574 err
= dbg_check_synced_i_size(c
, inode
);
578 err
= ubifs_budget_space(c
, &req
);
585 lock_2_inodes(dir
, inode
);
586 inode
->i_ctime
= ubifs_current_time(dir
);
588 dir
->i_size
-= sz_change
;
589 dir_ui
->ui_size
= dir
->i_size
;
590 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
591 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 1, 0);
594 unlock_2_inodes(dir
, inode
);
597 ubifs_release_budget(c
, &req
);
599 /* We've deleted something - clean the "no space" flags */
600 c
->bi
.nospace
= c
->bi
.nospace_rp
= 0;
606 dir
->i_size
+= sz_change
;
607 dir_ui
->ui_size
= dir
->i_size
;
608 set_nlink(inode
, saved_nlink
);
609 unlock_2_inodes(dir
, inode
);
611 ubifs_release_budget(c
, &req
);
616 * check_dir_empty - check if a directory is empty or not.
617 * @c: UBIFS file-system description object
618 * @dir: VFS inode object of the directory to check
620 * This function checks if directory @dir is empty. Returns zero if the
621 * directory is empty, %-ENOTEMPTY if it is not, and other negative error codes
622 * in case of of errors.
624 static int check_dir_empty(struct ubifs_info
*c
, struct inode
*dir
)
626 struct qstr nm
= { .name
= NULL
};
627 struct ubifs_dent_node
*dent
;
631 lowest_dent_key(c
, &key
, dir
->i_ino
);
632 dent
= ubifs_tnc_next_ent(c
, &key
, &nm
);
644 static int ubifs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
646 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
647 struct inode
*inode
= dentry
->d_inode
;
648 int sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
649 int err
, budgeted
= 1;
650 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
651 struct ubifs_budget_req req
= { .mod_dent
= 1, .dirtied_ino
= 2 };
654 * Budget request settings: deletion direntry, deletion inode and
655 * changing the parent inode. If budgeting fails, go ahead anyway
656 * because we have extra space reserved for deletions.
659 dbg_gen("directory '%.*s', ino %lu in dir ino %lu", dentry
->d_name
.len
,
660 dentry
->d_name
.name
, inode
->i_ino
, dir
->i_ino
);
661 ubifs_assert(mutex_is_locked(&dir
->i_mutex
));
662 ubifs_assert(mutex_is_locked(&inode
->i_mutex
));
663 err
= check_dir_empty(c
, dentry
->d_inode
);
667 err
= ubifs_budget_space(c
, &req
);
674 lock_2_inodes(dir
, inode
);
675 inode
->i_ctime
= ubifs_current_time(dir
);
678 dir
->i_size
-= sz_change
;
679 dir_ui
->ui_size
= dir
->i_size
;
680 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
681 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 1, 0);
684 unlock_2_inodes(dir
, inode
);
687 ubifs_release_budget(c
, &req
);
689 /* We've deleted something - clean the "no space" flags */
690 c
->bi
.nospace
= c
->bi
.nospace_rp
= 0;
696 dir
->i_size
+= sz_change
;
697 dir_ui
->ui_size
= dir
->i_size
;
700 unlock_2_inodes(dir
, inode
);
702 ubifs_release_budget(c
, &req
);
706 static int ubifs_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
709 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
710 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
711 int err
, sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
712 struct ubifs_budget_req req
= { .new_ino
= 1, .new_dent
= 1 };
715 * Budget request settings: new inode, new direntry and changing parent
719 dbg_gen("dent '%.*s', mode %#hx in dir ino %lu",
720 dentry
->d_name
.len
, dentry
->d_name
.name
, mode
, dir
->i_ino
);
722 err
= ubifs_budget_space(c
, &req
);
726 inode
= ubifs_new_inode(c
, dir
, S_IFDIR
| mode
);
728 err
= PTR_ERR(inode
);
732 mutex_lock(&dir_ui
->ui_mutex
);
733 insert_inode_hash(inode
);
736 dir
->i_size
+= sz_change
;
737 dir_ui
->ui_size
= dir
->i_size
;
738 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
739 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
741 ubifs_err("cannot create directory, error %d", err
);
744 mutex_unlock(&dir_ui
->ui_mutex
);
746 ubifs_release_budget(c
, &req
);
747 d_instantiate(dentry
, inode
);
751 dir
->i_size
-= sz_change
;
752 dir_ui
->ui_size
= dir
->i_size
;
754 mutex_unlock(&dir_ui
->ui_mutex
);
755 make_bad_inode(inode
);
758 ubifs_release_budget(c
, &req
);
762 static int ubifs_mknod(struct inode
*dir
, struct dentry
*dentry
,
763 umode_t mode
, dev_t rdev
)
766 struct ubifs_inode
*ui
;
767 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
768 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
769 union ubifs_dev_desc
*dev
= NULL
;
770 int sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
772 struct ubifs_budget_req req
= { .new_ino
= 1, .new_dent
= 1,
773 .new_ino_d
= ALIGN(devlen
, 8),
777 * Budget request settings: new inode, new direntry and changing parent
781 dbg_gen("dent '%.*s' in dir ino %lu",
782 dentry
->d_name
.len
, dentry
->d_name
.name
, dir
->i_ino
);
784 if (!new_valid_dev(rdev
))
787 if (S_ISBLK(mode
) || S_ISCHR(mode
)) {
788 dev
= kmalloc(sizeof(union ubifs_dev_desc
), GFP_NOFS
);
791 devlen
= ubifs_encode_dev(dev
, rdev
);
794 err
= ubifs_budget_space(c
, &req
);
800 inode
= ubifs_new_inode(c
, dir
, mode
);
803 err
= PTR_ERR(inode
);
807 init_special_inode(inode
, inode
->i_mode
, rdev
);
808 inode
->i_size
= ubifs_inode(inode
)->ui_size
= devlen
;
809 ui
= ubifs_inode(inode
);
811 ui
->data_len
= devlen
;
813 mutex_lock(&dir_ui
->ui_mutex
);
814 dir
->i_size
+= sz_change
;
815 dir_ui
->ui_size
= dir
->i_size
;
816 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
817 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
820 mutex_unlock(&dir_ui
->ui_mutex
);
822 ubifs_release_budget(c
, &req
);
823 insert_inode_hash(inode
);
824 d_instantiate(dentry
, inode
);
828 dir
->i_size
-= sz_change
;
829 dir_ui
->ui_size
= dir
->i_size
;
830 mutex_unlock(&dir_ui
->ui_mutex
);
831 make_bad_inode(inode
);
834 ubifs_release_budget(c
, &req
);
838 static int ubifs_symlink(struct inode
*dir
, struct dentry
*dentry
,
842 struct ubifs_inode
*ui
;
843 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
844 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
845 int err
, len
= strlen(symname
);
846 int sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
847 struct ubifs_budget_req req
= { .new_ino
= 1, .new_dent
= 1,
848 .new_ino_d
= ALIGN(len
, 8),
852 * Budget request settings: new inode, new direntry and changing parent
856 dbg_gen("dent '%.*s', target '%s' in dir ino %lu", dentry
->d_name
.len
,
857 dentry
->d_name
.name
, symname
, dir
->i_ino
);
859 if (len
> UBIFS_MAX_INO_DATA
)
860 return -ENAMETOOLONG
;
862 err
= ubifs_budget_space(c
, &req
);
866 inode
= ubifs_new_inode(c
, dir
, S_IFLNK
| S_IRWXUGO
);
868 err
= PTR_ERR(inode
);
872 ui
= ubifs_inode(inode
);
873 ui
->data
= kmalloc(len
+ 1, GFP_NOFS
);
879 memcpy(ui
->data
, symname
, len
);
880 ((char *)ui
->data
)[len
] = '\0';
882 * The terminating zero byte is not written to the flash media and it
883 * is put just to make later in-memory string processing simpler. Thus,
884 * data length is @len, not @len + %1.
887 inode
->i_size
= ubifs_inode(inode
)->ui_size
= len
;
889 mutex_lock(&dir_ui
->ui_mutex
);
890 dir
->i_size
+= sz_change
;
891 dir_ui
->ui_size
= dir
->i_size
;
892 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
893 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
896 mutex_unlock(&dir_ui
->ui_mutex
);
898 ubifs_release_budget(c
, &req
);
899 insert_inode_hash(inode
);
900 d_instantiate(dentry
, inode
);
904 dir
->i_size
-= sz_change
;
905 dir_ui
->ui_size
= dir
->i_size
;
906 mutex_unlock(&dir_ui
->ui_mutex
);
908 make_bad_inode(inode
);
911 ubifs_release_budget(c
, &req
);
916 * lock_3_inodes - a wrapper for locking three UBIFS inodes.
917 * @inode1: first inode
918 * @inode2: second inode
919 * @inode3: third inode
921 * This function is used for 'ubifs_rename()' and @inode1 may be the same as
922 * @inode2 whereas @inode3 may be %NULL.
924 * We do not implement any tricks to guarantee strict lock ordering, because
925 * VFS has already done it for us on the @i_mutex. So this is just a simple
928 static void lock_3_inodes(struct inode
*inode1
, struct inode
*inode2
,
929 struct inode
*inode3
)
931 mutex_lock_nested(&ubifs_inode(inode1
)->ui_mutex
, WB_MUTEX_1
);
932 if (inode2
!= inode1
)
933 mutex_lock_nested(&ubifs_inode(inode2
)->ui_mutex
, WB_MUTEX_2
);
935 mutex_lock_nested(&ubifs_inode(inode3
)->ui_mutex
, WB_MUTEX_3
);
939 * unlock_3_inodes - a wrapper for unlocking three UBIFS inodes for rename.
940 * @inode1: first inode
941 * @inode2: second inode
942 * @inode3: third inode
944 static void unlock_3_inodes(struct inode
*inode1
, struct inode
*inode2
,
945 struct inode
*inode3
)
948 mutex_unlock(&ubifs_inode(inode3
)->ui_mutex
);
949 if (inode1
!= inode2
)
950 mutex_unlock(&ubifs_inode(inode2
)->ui_mutex
);
951 mutex_unlock(&ubifs_inode(inode1
)->ui_mutex
);
954 static int ubifs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
955 struct inode
*new_dir
, struct dentry
*new_dentry
)
957 struct ubifs_info
*c
= old_dir
->i_sb
->s_fs_info
;
958 struct inode
*old_inode
= old_dentry
->d_inode
;
959 struct inode
*new_inode
= new_dentry
->d_inode
;
960 struct ubifs_inode
*old_inode_ui
= ubifs_inode(old_inode
);
961 int err
, release
, sync
= 0, move
= (new_dir
!= old_dir
);
962 int is_dir
= S_ISDIR(old_inode
->i_mode
);
963 int unlink
= !!new_inode
;
964 int new_sz
= CALC_DENT_SIZE(new_dentry
->d_name
.len
);
965 int old_sz
= CALC_DENT_SIZE(old_dentry
->d_name
.len
);
966 struct ubifs_budget_req req
= { .new_dent
= 1, .mod_dent
= 1,
968 struct ubifs_budget_req ino_req
= { .dirtied_ino
= 1,
969 .dirtied_ino_d
= ALIGN(old_inode_ui
->data_len
, 8) };
970 struct timespec time
;
971 unsigned int uninitialized_var(saved_nlink
);
974 * Budget request settings: deletion direntry, new direntry, removing
975 * the old inode, and changing old and new parent directory inodes.
977 * However, this operation also marks the target inode as dirty and
978 * does not write it, so we allocate budget for the target inode
982 dbg_gen("dent '%.*s' ino %lu in dir ino %lu to dent '%.*s' in dir ino %lu",
983 old_dentry
->d_name
.len
, old_dentry
->d_name
.name
,
984 old_inode
->i_ino
, old_dir
->i_ino
, new_dentry
->d_name
.len
,
985 new_dentry
->d_name
.name
, new_dir
->i_ino
);
986 ubifs_assert(mutex_is_locked(&old_dir
->i_mutex
));
987 ubifs_assert(mutex_is_locked(&new_dir
->i_mutex
));
989 ubifs_assert(mutex_is_locked(&new_inode
->i_mutex
));
992 if (unlink
&& is_dir
) {
993 err
= check_dir_empty(c
, new_inode
);
998 err
= ubifs_budget_space(c
, &req
);
1001 err
= ubifs_budget_space(c
, &ino_req
);
1003 ubifs_release_budget(c
, &req
);
1007 lock_3_inodes(old_dir
, new_dir
, new_inode
);
1010 * Like most other Unix systems, set the @i_ctime for inodes on a
1013 time
= ubifs_current_time(old_dir
);
1014 old_inode
->i_ctime
= time
;
1016 /* We must adjust parent link count when renaming directories */
1020 * @old_dir loses a link because we are moving
1021 * @old_inode to a different directory.
1023 drop_nlink(old_dir
);
1025 * @new_dir only gains a link if we are not also
1026 * overwriting an existing directory.
1032 * @old_inode is not moving to a different directory,
1033 * but @old_dir still loses a link if we are
1034 * overwriting an existing directory.
1037 drop_nlink(old_dir
);
1041 old_dir
->i_size
-= old_sz
;
1042 ubifs_inode(old_dir
)->ui_size
= old_dir
->i_size
;
1043 old_dir
->i_mtime
= old_dir
->i_ctime
= time
;
1044 new_dir
->i_mtime
= new_dir
->i_ctime
= time
;
1047 * And finally, if we unlinked a direntry which happened to have the
1048 * same name as the moved direntry, we have to decrement @i_nlink of
1049 * the unlinked inode and change its ctime.
1053 * Directories cannot have hard-links, so if this is a
1054 * directory, just clear @i_nlink.
1056 saved_nlink
= new_inode
->i_nlink
;
1058 clear_nlink(new_inode
);
1060 drop_nlink(new_inode
);
1061 new_inode
->i_ctime
= time
;
1063 new_dir
->i_size
+= new_sz
;
1064 ubifs_inode(new_dir
)->ui_size
= new_dir
->i_size
;
1068 * Do not ask 'ubifs_jnl_rename()' to flush write-buffer if @old_inode
1069 * is dirty, because this will be done later on at the end of
1072 if (IS_SYNC(old_inode
)) {
1073 sync
= IS_DIRSYNC(old_dir
) || IS_DIRSYNC(new_dir
);
1074 if (unlink
&& IS_SYNC(new_inode
))
1077 err
= ubifs_jnl_rename(c
, old_dir
, old_dentry
, new_dir
, new_dentry
,
1082 unlock_3_inodes(old_dir
, new_dir
, new_inode
);
1083 ubifs_release_budget(c
, &req
);
1085 mutex_lock(&old_inode_ui
->ui_mutex
);
1086 release
= old_inode_ui
->dirty
;
1087 mark_inode_dirty_sync(old_inode
);
1088 mutex_unlock(&old_inode_ui
->ui_mutex
);
1091 ubifs_release_budget(c
, &ino_req
);
1092 if (IS_SYNC(old_inode
))
1093 err
= old_inode
->i_sb
->s_op
->write_inode(old_inode
, NULL
);
1098 set_nlink(new_inode
, saved_nlink
);
1100 new_dir
->i_size
-= new_sz
;
1101 ubifs_inode(new_dir
)->ui_size
= new_dir
->i_size
;
1103 old_dir
->i_size
+= old_sz
;
1104 ubifs_inode(old_dir
)->ui_size
= old_dir
->i_size
;
1109 drop_nlink(new_dir
);
1115 unlock_3_inodes(old_dir
, new_dir
, new_inode
);
1116 ubifs_release_budget(c
, &ino_req
);
1117 ubifs_release_budget(c
, &req
);
1121 int ubifs_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
1125 struct inode
*inode
= dentry
->d_inode
;
1126 struct ubifs_inode
*ui
= ubifs_inode(inode
);
1128 mutex_lock(&ui
->ui_mutex
);
1129 generic_fillattr(inode
, stat
);
1130 stat
->blksize
= UBIFS_BLOCK_SIZE
;
1131 stat
->size
= ui
->ui_size
;
1134 * Unfortunately, the 'stat()' system call was designed for block
1135 * device based file systems, and it is not appropriate for UBIFS,
1136 * because UBIFS does not have notion of "block". For example, it is
1137 * difficult to tell how many block a directory takes - it actually
1138 * takes less than 300 bytes, but we have to round it to block size,
1139 * which introduces large mistake. This makes utilities like 'du' to
1140 * report completely senseless numbers. This is the reason why UBIFS
1141 * goes the same way as JFFS2 - it reports zero blocks for everything
1142 * but regular files, which makes more sense than reporting completely
1145 if (S_ISREG(inode
->i_mode
)) {
1146 size
= ui
->xattr_size
;
1148 size
= ALIGN(size
, UBIFS_BLOCK_SIZE
);
1150 * Note, user-space expects 512-byte blocks count irrespectively
1151 * of what was reported in @stat->size.
1153 stat
->blocks
= size
>> 9;
1156 mutex_unlock(&ui
->ui_mutex
);
1160 const struct inode_operations ubifs_dir_inode_operations
= {
1161 .lookup
= ubifs_lookup
,
1162 .create
= ubifs_create
,
1164 .symlink
= ubifs_symlink
,
1165 .unlink
= ubifs_unlink
,
1166 .mkdir
= ubifs_mkdir
,
1167 .rmdir
= ubifs_rmdir
,
1168 .mknod
= ubifs_mknod
,
1169 .rename
= ubifs_rename
,
1170 .setattr
= ubifs_setattr
,
1171 .getattr
= ubifs_getattr
,
1172 .setxattr
= ubifs_setxattr
,
1173 .getxattr
= ubifs_getxattr
,
1174 .listxattr
= ubifs_listxattr
,
1175 .removexattr
= ubifs_removexattr
,
1178 const struct file_operations ubifs_dir_operations
= {
1179 .llseek
= generic_file_llseek
,
1180 .release
= ubifs_dir_release
,
1181 .read
= generic_read_dir
,
1182 .iterate
= ubifs_readdir
,
1183 .fsync
= ubifs_fsync
,
1184 .unlocked_ioctl
= ubifs_ioctl
,
1185 #ifdef CONFIG_COMPAT
1186 .compat_ioctl
= ubifs_compat_ioctl
,