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;
112 switch (mode
& S_IFMT
) {
114 inode
->i_mapping
->a_ops
= &ubifs_file_address_operations
;
115 inode
->i_op
= &ubifs_file_inode_operations
;
116 inode
->i_fop
= &ubifs_file_operations
;
119 inode
->i_op
= &ubifs_dir_inode_operations
;
120 inode
->i_fop
= &ubifs_dir_operations
;
121 inode
->i_size
= ui
->ui_size
= UBIFS_INO_NODE_SZ
;
124 inode
->i_op
= &ubifs_symlink_inode_operations
;
130 inode
->i_op
= &ubifs_file_inode_operations
;
136 ui
->flags
= inherit_flags(dir
, mode
);
137 ubifs_set_inode_flags(inode
);
139 ui
->compr_type
= c
->default_compr
;
141 ui
->compr_type
= UBIFS_COMPR_NONE
;
142 ui
->synced_i_size
= 0;
144 spin_lock(&c
->cnt_lock
);
145 /* Inode number overflow is currently not supported */
146 if (c
->highest_inum
>= INUM_WARN_WATERMARK
) {
147 if (c
->highest_inum
>= INUM_WATERMARK
) {
148 spin_unlock(&c
->cnt_lock
);
149 ubifs_err(c
, "out of inode numbers");
150 make_bad_inode(inode
);
152 return ERR_PTR(-EINVAL
);
154 ubifs_warn(c
, "running out of inode numbers (current %lu, max %u)",
155 (unsigned long)c
->highest_inum
, INUM_WATERMARK
);
158 inode
->i_ino
= ++c
->highest_inum
;
160 * The creation sequence number remains with this inode for its
161 * lifetime. All nodes for this inode have a greater sequence number,
162 * and so it is possible to distinguish obsolete nodes belonging to a
163 * previous incarnation of the same inode number - for example, for the
164 * purpose of rebuilding the index.
166 ui
->creat_sqnum
= ++c
->max_sqnum
;
167 spin_unlock(&c
->cnt_lock
);
171 static int dbg_check_name(const struct ubifs_info
*c
,
172 const struct ubifs_dent_node
*dent
,
173 const struct qstr
*nm
)
175 if (!dbg_is_chk_gen(c
))
177 if (le16_to_cpu(dent
->nlen
) != nm
->len
)
179 if (memcmp(dent
->name
, nm
->name
, nm
->len
))
184 static struct dentry
*ubifs_lookup(struct inode
*dir
, struct dentry
*dentry
,
189 struct inode
*inode
= NULL
;
190 struct ubifs_dent_node
*dent
;
191 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
193 dbg_gen("'%pd' in dir ino %lu", dentry
, dir
->i_ino
);
195 if (dentry
->d_name
.len
> UBIFS_MAX_NLEN
)
196 return ERR_PTR(-ENAMETOOLONG
);
198 dent
= kmalloc(UBIFS_MAX_DENT_NODE_SZ
, GFP_NOFS
);
200 return ERR_PTR(-ENOMEM
);
202 dent_key_init(c
, &key
, dir
->i_ino
, &dentry
->d_name
);
204 err
= ubifs_tnc_lookup_nm(c
, &key
, dent
, &dentry
->d_name
);
206 if (err
== -ENOENT
) {
207 dbg_gen("not found");
213 if (dbg_check_name(c
, dent
, &dentry
->d_name
)) {
218 inode
= ubifs_iget(dir
->i_sb
, le64_to_cpu(dent
->inum
));
221 * This should not happen. Probably the file-system needs
224 err
= PTR_ERR(inode
);
225 ubifs_err(c
, "dead directory entry '%pd', error %d",
227 ubifs_ro_mode(c
, err
);
234 * Note, d_splice_alias() would be required instead if we supported
237 d_add(dentry
, inode
);
245 static int ubifs_create(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
249 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
250 int err
, sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
251 struct ubifs_budget_req req
= { .new_ino
= 1, .new_dent
= 1,
253 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
256 * Budget request settings: new inode, new direntry, changing the
257 * parent directory inode.
260 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
261 dentry
, mode
, dir
->i_ino
);
263 err
= ubifs_budget_space(c
, &req
);
267 inode
= ubifs_new_inode(c
, dir
, mode
);
269 err
= PTR_ERR(inode
);
273 err
= ubifs_init_security(dir
, inode
, &dentry
->d_name
);
277 mutex_lock(&dir_ui
->ui_mutex
);
278 dir
->i_size
+= sz_change
;
279 dir_ui
->ui_size
= dir
->i_size
;
280 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
281 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
284 mutex_unlock(&dir_ui
->ui_mutex
);
286 ubifs_release_budget(c
, &req
);
287 insert_inode_hash(inode
);
288 d_instantiate(dentry
, inode
);
292 dir
->i_size
-= sz_change
;
293 dir_ui
->ui_size
= dir
->i_size
;
294 mutex_unlock(&dir_ui
->ui_mutex
);
296 make_bad_inode(inode
);
299 ubifs_release_budget(c
, &req
);
300 ubifs_err(c
, "cannot create regular file, error %d", err
);
305 * vfs_dent_type - get VFS directory entry type.
306 * @type: UBIFS directory entry type
308 * This function converts UBIFS directory entry type into VFS directory entry
311 static unsigned int vfs_dent_type(uint8_t type
)
314 case UBIFS_ITYPE_REG
:
316 case UBIFS_ITYPE_DIR
:
318 case UBIFS_ITYPE_LNK
:
320 case UBIFS_ITYPE_BLK
:
322 case UBIFS_ITYPE_CHR
:
324 case UBIFS_ITYPE_FIFO
:
326 case UBIFS_ITYPE_SOCK
:
335 * The classical Unix view for directory is that it is a linear array of
336 * (name, inode number) entries. Linux/VFS assumes this model as well.
337 * Particularly, 'readdir()' call wants us to return a directory entry offset
338 * which later may be used to continue 'readdir()'ing the directory or to
339 * 'seek()' to that specific direntry. Obviously UBIFS does not really fit this
340 * model because directory entries are identified by keys, which may collide.
342 * UBIFS uses directory entry hash value for directory offsets, so
343 * 'seekdir()'/'telldir()' may not always work because of possible key
344 * collisions. But UBIFS guarantees that consecutive 'readdir()' calls work
345 * properly by means of saving full directory entry name in the private field
346 * of the file description object.
348 * This means that UBIFS cannot support NFS which requires full
349 * 'seekdir()'/'telldir()' support.
351 static int ubifs_readdir(struct file
*file
, struct dir_context
*ctx
)
356 struct ubifs_dent_node
*dent
;
357 struct inode
*dir
= file_inode(file
);
358 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
360 dbg_gen("dir ino %lu, f_pos %#llx", dir
->i_ino
, ctx
->pos
);
362 if (ctx
->pos
> UBIFS_S_KEY_HASH_MASK
|| ctx
->pos
== 2)
364 * The directory was seek'ed to a senseless position or there
365 * are no more entries.
369 if (file
->f_version
== 0) {
371 * The file was seek'ed, which means that @file->private_data
372 * is now invalid. This may also be just the first
373 * 'ubifs_readdir()' invocation, in which case
374 * @file->private_data is NULL, and the below code is
377 kfree(file
->private_data
);
378 file
->private_data
= NULL
;
382 * 'generic_file_llseek()' unconditionally sets @file->f_version to
383 * zero, and we use this for detecting whether the file was seek'ed.
387 /* File positions 0 and 1 correspond to "." and ".." */
389 ubifs_assert(!file
->private_data
);
390 if (!dir_emit_dots(file
, ctx
))
393 /* Find the first entry in TNC and save it */
394 lowest_dent_key(c
, &key
, dir
->i_ino
);
396 dent
= ubifs_tnc_next_ent(c
, &key
, &nm
);
402 ctx
->pos
= key_hash_flash(c
, &dent
->key
);
403 file
->private_data
= dent
;
406 dent
= file
->private_data
;
409 * The directory was seek'ed to and is now readdir'ed.
410 * Find the entry corresponding to @ctx->pos or the closest one.
412 dent_key_init_hash(c
, &key
, dir
->i_ino
, ctx
->pos
);
414 dent
= ubifs_tnc_next_ent(c
, &key
, &nm
);
419 ctx
->pos
= key_hash_flash(c
, &dent
->key
);
420 file
->private_data
= dent
;
424 dbg_gen("feed '%s', ino %llu, new f_pos %#x",
425 dent
->name
, (unsigned long long)le64_to_cpu(dent
->inum
),
426 key_hash_flash(c
, &dent
->key
));
427 ubifs_assert(le64_to_cpu(dent
->ch
.sqnum
) >
428 ubifs_inode(dir
)->creat_sqnum
);
430 nm
.len
= le16_to_cpu(dent
->nlen
);
431 if (!dir_emit(ctx
, dent
->name
, nm
.len
,
432 le64_to_cpu(dent
->inum
),
433 vfs_dent_type(dent
->type
)))
436 /* Switch to the next entry */
437 key_read(c
, &dent
->key
, &key
);
438 nm
.name
= dent
->name
;
439 dent
= ubifs_tnc_next_ent(c
, &key
, &nm
);
445 kfree(file
->private_data
);
446 ctx
->pos
= key_hash_flash(c
, &dent
->key
);
447 file
->private_data
= dent
;
452 kfree(file
->private_data
);
453 file
->private_data
= NULL
;
456 ubifs_err(c
, "cannot find next direntry, error %d", err
);
459 * -ENOENT is a non-fatal error in this context, the TNC uses
460 * it to indicate that the cursor moved past the current directory
461 * and readdir() has to stop.
466 /* 2 is a special value indicating that there are no more direntries */
471 /* Free saved readdir() state when the directory is closed */
472 static int ubifs_dir_release(struct inode
*dir
, struct file
*file
)
474 kfree(file
->private_data
);
475 file
->private_data
= NULL
;
480 * lock_2_inodes - a wrapper for locking two UBIFS inodes.
481 * @inode1: first inode
482 * @inode2: second inode
484 * We do not implement any tricks to guarantee strict lock ordering, because
485 * VFS has already done it for us on the @i_mutex. So this is just a simple
488 static void lock_2_inodes(struct inode
*inode1
, struct inode
*inode2
)
490 mutex_lock_nested(&ubifs_inode(inode1
)->ui_mutex
, WB_MUTEX_1
);
491 mutex_lock_nested(&ubifs_inode(inode2
)->ui_mutex
, WB_MUTEX_2
);
495 * unlock_2_inodes - a wrapper for unlocking two UBIFS inodes.
496 * @inode1: first inode
497 * @inode2: second inode
499 static void unlock_2_inodes(struct inode
*inode1
, struct inode
*inode2
)
501 mutex_unlock(&ubifs_inode(inode2
)->ui_mutex
);
502 mutex_unlock(&ubifs_inode(inode1
)->ui_mutex
);
505 static int ubifs_link(struct dentry
*old_dentry
, struct inode
*dir
,
506 struct dentry
*dentry
)
508 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
509 struct inode
*inode
= d_inode(old_dentry
);
510 struct ubifs_inode
*ui
= ubifs_inode(inode
);
511 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
512 int err
, sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
513 struct ubifs_budget_req req
= { .new_dent
= 1, .dirtied_ino
= 2,
514 .dirtied_ino_d
= ALIGN(ui
->data_len
, 8) };
517 * Budget request settings: new direntry, changing the target inode,
518 * changing the parent inode.
521 dbg_gen("dent '%pd' to ino %lu (nlink %d) in dir ino %lu",
522 dentry
, inode
->i_ino
,
523 inode
->i_nlink
, dir
->i_ino
);
524 ubifs_assert(inode_is_locked(dir
));
525 ubifs_assert(inode_is_locked(inode
));
527 err
= dbg_check_synced_i_size(c
, inode
);
531 err
= ubifs_budget_space(c
, &req
);
535 lock_2_inodes(dir
, inode
);
538 inode
->i_ctime
= ubifs_current_time(inode
);
539 dir
->i_size
+= sz_change
;
540 dir_ui
->ui_size
= dir
->i_size
;
541 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
542 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
545 unlock_2_inodes(dir
, inode
);
547 ubifs_release_budget(c
, &req
);
548 d_instantiate(dentry
, inode
);
552 dir
->i_size
-= sz_change
;
553 dir_ui
->ui_size
= dir
->i_size
;
555 unlock_2_inodes(dir
, inode
);
556 ubifs_release_budget(c
, &req
);
561 static int ubifs_unlink(struct inode
*dir
, struct dentry
*dentry
)
563 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
564 struct inode
*inode
= d_inode(dentry
);
565 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
566 int sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
567 int err
, budgeted
= 1;
568 struct ubifs_budget_req req
= { .mod_dent
= 1, .dirtied_ino
= 2 };
569 unsigned int saved_nlink
= inode
->i_nlink
;
572 * Budget request settings: deletion direntry, deletion inode (+1 for
573 * @dirtied_ino), changing the parent directory inode. If budgeting
574 * fails, go ahead anyway because we have extra space reserved for
578 dbg_gen("dent '%pd' from ino %lu (nlink %d) in dir ino %lu",
579 dentry
, inode
->i_ino
,
580 inode
->i_nlink
, dir
->i_ino
);
581 ubifs_assert(inode_is_locked(dir
));
582 ubifs_assert(inode_is_locked(inode
));
583 err
= dbg_check_synced_i_size(c
, inode
);
587 err
= ubifs_budget_space(c
, &req
);
594 lock_2_inodes(dir
, inode
);
595 inode
->i_ctime
= ubifs_current_time(dir
);
597 dir
->i_size
-= sz_change
;
598 dir_ui
->ui_size
= dir
->i_size
;
599 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
600 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 1, 0);
603 unlock_2_inodes(dir
, inode
);
606 ubifs_release_budget(c
, &req
);
608 /* We've deleted something - clean the "no space" flags */
609 c
->bi
.nospace
= c
->bi
.nospace_rp
= 0;
615 dir
->i_size
+= sz_change
;
616 dir_ui
->ui_size
= dir
->i_size
;
617 set_nlink(inode
, saved_nlink
);
618 unlock_2_inodes(dir
, inode
);
620 ubifs_release_budget(c
, &req
);
625 * check_dir_empty - check if a directory is empty or not.
626 * @c: UBIFS file-system description object
627 * @dir: VFS inode object of the directory to check
629 * This function checks if directory @dir is empty. Returns zero if the
630 * directory is empty, %-ENOTEMPTY if it is not, and other negative error codes
631 * in case of of errors.
633 static int check_dir_empty(struct ubifs_info
*c
, struct inode
*dir
)
635 struct qstr nm
= { .name
= NULL
};
636 struct ubifs_dent_node
*dent
;
640 lowest_dent_key(c
, &key
, dir
->i_ino
);
641 dent
= ubifs_tnc_next_ent(c
, &key
, &nm
);
653 static int ubifs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
655 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
656 struct inode
*inode
= d_inode(dentry
);
657 int sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
658 int err
, budgeted
= 1;
659 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
660 struct ubifs_budget_req req
= { .mod_dent
= 1, .dirtied_ino
= 2 };
663 * Budget request settings: deletion direntry, deletion inode and
664 * changing the parent inode. If budgeting fails, go ahead anyway
665 * because we have extra space reserved for deletions.
668 dbg_gen("directory '%pd', ino %lu in dir ino %lu", dentry
,
669 inode
->i_ino
, dir
->i_ino
);
670 ubifs_assert(inode_is_locked(dir
));
671 ubifs_assert(inode_is_locked(inode
));
672 err
= check_dir_empty(c
, d_inode(dentry
));
676 err
= ubifs_budget_space(c
, &req
);
683 lock_2_inodes(dir
, inode
);
684 inode
->i_ctime
= ubifs_current_time(dir
);
687 dir
->i_size
-= sz_change
;
688 dir_ui
->ui_size
= dir
->i_size
;
689 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
690 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 1, 0);
693 unlock_2_inodes(dir
, inode
);
696 ubifs_release_budget(c
, &req
);
698 /* We've deleted something - clean the "no space" flags */
699 c
->bi
.nospace
= c
->bi
.nospace_rp
= 0;
705 dir
->i_size
+= sz_change
;
706 dir_ui
->ui_size
= dir
->i_size
;
709 unlock_2_inodes(dir
, inode
);
711 ubifs_release_budget(c
, &req
);
715 static int ubifs_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
718 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
719 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
720 int err
, sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
721 struct ubifs_budget_req req
= { .new_ino
= 1, .new_dent
= 1 };
724 * Budget request settings: new inode, new direntry and changing parent
728 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
729 dentry
, mode
, dir
->i_ino
);
731 err
= ubifs_budget_space(c
, &req
);
735 inode
= ubifs_new_inode(c
, dir
, S_IFDIR
| mode
);
737 err
= PTR_ERR(inode
);
741 err
= ubifs_init_security(dir
, inode
, &dentry
->d_name
);
745 mutex_lock(&dir_ui
->ui_mutex
);
746 insert_inode_hash(inode
);
749 dir
->i_size
+= sz_change
;
750 dir_ui
->ui_size
= dir
->i_size
;
751 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
752 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
754 ubifs_err(c
, "cannot create directory, error %d", err
);
757 mutex_unlock(&dir_ui
->ui_mutex
);
759 ubifs_release_budget(c
, &req
);
760 d_instantiate(dentry
, inode
);
764 dir
->i_size
-= sz_change
;
765 dir_ui
->ui_size
= dir
->i_size
;
767 mutex_unlock(&dir_ui
->ui_mutex
);
769 make_bad_inode(inode
);
772 ubifs_release_budget(c
, &req
);
776 static int ubifs_mknod(struct inode
*dir
, struct dentry
*dentry
,
777 umode_t mode
, dev_t rdev
)
780 struct ubifs_inode
*ui
;
781 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
782 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
783 union ubifs_dev_desc
*dev
= NULL
;
784 int sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
786 struct ubifs_budget_req req
= { .new_ino
= 1, .new_dent
= 1,
787 .new_ino_d
= ALIGN(devlen
, 8),
791 * Budget request settings: new inode, new direntry and changing parent
795 dbg_gen("dent '%pd' in dir ino %lu", dentry
, dir
->i_ino
);
797 if (S_ISBLK(mode
) || S_ISCHR(mode
)) {
798 dev
= kmalloc(sizeof(union ubifs_dev_desc
), GFP_NOFS
);
801 devlen
= ubifs_encode_dev(dev
, rdev
);
804 err
= ubifs_budget_space(c
, &req
);
810 inode
= ubifs_new_inode(c
, dir
, mode
);
813 err
= PTR_ERR(inode
);
817 init_special_inode(inode
, inode
->i_mode
, rdev
);
818 inode
->i_size
= ubifs_inode(inode
)->ui_size
= devlen
;
819 ui
= ubifs_inode(inode
);
821 ui
->data_len
= devlen
;
823 err
= ubifs_init_security(dir
, inode
, &dentry
->d_name
);
827 mutex_lock(&dir_ui
->ui_mutex
);
828 dir
->i_size
+= sz_change
;
829 dir_ui
->ui_size
= dir
->i_size
;
830 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
831 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
834 mutex_unlock(&dir_ui
->ui_mutex
);
836 ubifs_release_budget(c
, &req
);
837 insert_inode_hash(inode
);
838 d_instantiate(dentry
, inode
);
842 dir
->i_size
-= sz_change
;
843 dir_ui
->ui_size
= dir
->i_size
;
844 mutex_unlock(&dir_ui
->ui_mutex
);
846 make_bad_inode(inode
);
849 ubifs_release_budget(c
, &req
);
853 static int ubifs_symlink(struct inode
*dir
, struct dentry
*dentry
,
857 struct ubifs_inode
*ui
;
858 struct ubifs_inode
*dir_ui
= ubifs_inode(dir
);
859 struct ubifs_info
*c
= dir
->i_sb
->s_fs_info
;
860 int err
, len
= strlen(symname
);
861 int sz_change
= CALC_DENT_SIZE(dentry
->d_name
.len
);
862 struct ubifs_budget_req req
= { .new_ino
= 1, .new_dent
= 1,
863 .new_ino_d
= ALIGN(len
, 8),
867 * Budget request settings: new inode, new direntry and changing parent
871 dbg_gen("dent '%pd', target '%s' in dir ino %lu", dentry
,
872 symname
, dir
->i_ino
);
874 if (len
> UBIFS_MAX_INO_DATA
)
875 return -ENAMETOOLONG
;
877 err
= ubifs_budget_space(c
, &req
);
881 inode
= ubifs_new_inode(c
, dir
, S_IFLNK
| S_IRWXUGO
);
883 err
= PTR_ERR(inode
);
887 ui
= ubifs_inode(inode
);
888 ui
->data
= kmalloc(len
+ 1, GFP_NOFS
);
894 memcpy(ui
->data
, symname
, len
);
895 ((char *)ui
->data
)[len
] = '\0';
896 inode
->i_link
= ui
->data
;
898 * The terminating zero byte is not written to the flash media and it
899 * is put just to make later in-memory string processing simpler. Thus,
900 * data length is @len, not @len + %1.
903 inode
->i_size
= ubifs_inode(inode
)->ui_size
= len
;
905 err
= ubifs_init_security(dir
, inode
, &dentry
->d_name
);
909 mutex_lock(&dir_ui
->ui_mutex
);
910 dir
->i_size
+= sz_change
;
911 dir_ui
->ui_size
= dir
->i_size
;
912 dir
->i_mtime
= dir
->i_ctime
= inode
->i_ctime
;
913 err
= ubifs_jnl_update(c
, dir
, &dentry
->d_name
, inode
, 0, 0);
916 mutex_unlock(&dir_ui
->ui_mutex
);
918 ubifs_release_budget(c
, &req
);
919 insert_inode_hash(inode
);
920 d_instantiate(dentry
, inode
);
924 dir
->i_size
-= sz_change
;
925 dir_ui
->ui_size
= dir
->i_size
;
926 mutex_unlock(&dir_ui
->ui_mutex
);
928 make_bad_inode(inode
);
931 ubifs_release_budget(c
, &req
);
936 * lock_3_inodes - a wrapper for locking three UBIFS inodes.
937 * @inode1: first inode
938 * @inode2: second inode
939 * @inode3: third inode
941 * This function is used for 'ubifs_rename()' and @inode1 may be the same as
942 * @inode2 whereas @inode3 may be %NULL.
944 * We do not implement any tricks to guarantee strict lock ordering, because
945 * VFS has already done it for us on the @i_mutex. So this is just a simple
948 static void lock_3_inodes(struct inode
*inode1
, struct inode
*inode2
,
949 struct inode
*inode3
)
951 mutex_lock_nested(&ubifs_inode(inode1
)->ui_mutex
, WB_MUTEX_1
);
952 if (inode2
!= inode1
)
953 mutex_lock_nested(&ubifs_inode(inode2
)->ui_mutex
, WB_MUTEX_2
);
955 mutex_lock_nested(&ubifs_inode(inode3
)->ui_mutex
, WB_MUTEX_3
);
959 * unlock_3_inodes - a wrapper for unlocking three UBIFS inodes for rename.
960 * @inode1: first inode
961 * @inode2: second inode
962 * @inode3: third inode
964 static void unlock_3_inodes(struct inode
*inode1
, struct inode
*inode2
,
965 struct inode
*inode3
)
968 mutex_unlock(&ubifs_inode(inode3
)->ui_mutex
);
969 if (inode1
!= inode2
)
970 mutex_unlock(&ubifs_inode(inode2
)->ui_mutex
);
971 mutex_unlock(&ubifs_inode(inode1
)->ui_mutex
);
974 static int ubifs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
975 struct inode
*new_dir
, struct dentry
*new_dentry
)
977 struct ubifs_info
*c
= old_dir
->i_sb
->s_fs_info
;
978 struct inode
*old_inode
= d_inode(old_dentry
);
979 struct inode
*new_inode
= d_inode(new_dentry
);
980 struct ubifs_inode
*old_inode_ui
= ubifs_inode(old_inode
);
981 int err
, release
, sync
= 0, move
= (new_dir
!= old_dir
);
982 int is_dir
= S_ISDIR(old_inode
->i_mode
);
983 int unlink
= !!new_inode
;
984 int new_sz
= CALC_DENT_SIZE(new_dentry
->d_name
.len
);
985 int old_sz
= CALC_DENT_SIZE(old_dentry
->d_name
.len
);
986 struct ubifs_budget_req req
= { .new_dent
= 1, .mod_dent
= 1,
988 struct ubifs_budget_req ino_req
= { .dirtied_ino
= 1,
989 .dirtied_ino_d
= ALIGN(old_inode_ui
->data_len
, 8) };
990 struct timespec time
;
991 unsigned int uninitialized_var(saved_nlink
);
994 * Budget request settings: deletion direntry, new direntry, removing
995 * the old inode, and changing old and new parent directory inodes.
997 * However, this operation also marks the target inode as dirty and
998 * does not write it, so we allocate budget for the target inode
1002 dbg_gen("dent '%pd' ino %lu in dir ino %lu to dent '%pd' in dir ino %lu",
1003 old_dentry
, old_inode
->i_ino
, old_dir
->i_ino
,
1004 new_dentry
, new_dir
->i_ino
);
1005 ubifs_assert(inode_is_locked(old_dir
));
1006 ubifs_assert(inode_is_locked(new_dir
));
1008 ubifs_assert(inode_is_locked(new_inode
));
1011 if (unlink
&& is_dir
) {
1012 err
= check_dir_empty(c
, new_inode
);
1017 err
= ubifs_budget_space(c
, &req
);
1020 err
= ubifs_budget_space(c
, &ino_req
);
1022 ubifs_release_budget(c
, &req
);
1026 lock_3_inodes(old_dir
, new_dir
, new_inode
);
1029 * Like most other Unix systems, set the @i_ctime for inodes on a
1032 time
= ubifs_current_time(old_dir
);
1033 old_inode
->i_ctime
= time
;
1035 /* We must adjust parent link count when renaming directories */
1039 * @old_dir loses a link because we are moving
1040 * @old_inode to a different directory.
1042 drop_nlink(old_dir
);
1044 * @new_dir only gains a link if we are not also
1045 * overwriting an existing directory.
1051 * @old_inode is not moving to a different directory,
1052 * but @old_dir still loses a link if we are
1053 * overwriting an existing directory.
1056 drop_nlink(old_dir
);
1060 old_dir
->i_size
-= old_sz
;
1061 ubifs_inode(old_dir
)->ui_size
= old_dir
->i_size
;
1062 old_dir
->i_mtime
= old_dir
->i_ctime
= time
;
1063 new_dir
->i_mtime
= new_dir
->i_ctime
= time
;
1066 * And finally, if we unlinked a direntry which happened to have the
1067 * same name as the moved direntry, we have to decrement @i_nlink of
1068 * the unlinked inode and change its ctime.
1072 * Directories cannot have hard-links, so if this is a
1073 * directory, just clear @i_nlink.
1075 saved_nlink
= new_inode
->i_nlink
;
1077 clear_nlink(new_inode
);
1079 drop_nlink(new_inode
);
1080 new_inode
->i_ctime
= time
;
1082 new_dir
->i_size
+= new_sz
;
1083 ubifs_inode(new_dir
)->ui_size
= new_dir
->i_size
;
1087 * Do not ask 'ubifs_jnl_rename()' to flush write-buffer if @old_inode
1088 * is dirty, because this will be done later on at the end of
1091 if (IS_SYNC(old_inode
)) {
1092 sync
= IS_DIRSYNC(old_dir
) || IS_DIRSYNC(new_dir
);
1093 if (unlink
&& IS_SYNC(new_inode
))
1096 err
= ubifs_jnl_rename(c
, old_dir
, old_dentry
, new_dir
, new_dentry
,
1101 unlock_3_inodes(old_dir
, new_dir
, new_inode
);
1102 ubifs_release_budget(c
, &req
);
1104 mutex_lock(&old_inode_ui
->ui_mutex
);
1105 release
= old_inode_ui
->dirty
;
1106 mark_inode_dirty_sync(old_inode
);
1107 mutex_unlock(&old_inode_ui
->ui_mutex
);
1110 ubifs_release_budget(c
, &ino_req
);
1111 if (IS_SYNC(old_inode
))
1112 err
= old_inode
->i_sb
->s_op
->write_inode(old_inode
, NULL
);
1117 set_nlink(new_inode
, saved_nlink
);
1119 new_dir
->i_size
-= new_sz
;
1120 ubifs_inode(new_dir
)->ui_size
= new_dir
->i_size
;
1122 old_dir
->i_size
+= old_sz
;
1123 ubifs_inode(old_dir
)->ui_size
= old_dir
->i_size
;
1128 drop_nlink(new_dir
);
1134 unlock_3_inodes(old_dir
, new_dir
, new_inode
);
1135 ubifs_release_budget(c
, &ino_req
);
1136 ubifs_release_budget(c
, &req
);
1140 int ubifs_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
1144 struct inode
*inode
= d_inode(dentry
);
1145 struct ubifs_inode
*ui
= ubifs_inode(inode
);
1147 mutex_lock(&ui
->ui_mutex
);
1148 generic_fillattr(inode
, stat
);
1149 stat
->blksize
= UBIFS_BLOCK_SIZE
;
1150 stat
->size
= ui
->ui_size
;
1153 * Unfortunately, the 'stat()' system call was designed for block
1154 * device based file systems, and it is not appropriate for UBIFS,
1155 * because UBIFS does not have notion of "block". For example, it is
1156 * difficult to tell how many block a directory takes - it actually
1157 * takes less than 300 bytes, but we have to round it to block size,
1158 * which introduces large mistake. This makes utilities like 'du' to
1159 * report completely senseless numbers. This is the reason why UBIFS
1160 * goes the same way as JFFS2 - it reports zero blocks for everything
1161 * but regular files, which makes more sense than reporting completely
1164 if (S_ISREG(inode
->i_mode
)) {
1165 size
= ui
->xattr_size
;
1167 size
= ALIGN(size
, UBIFS_BLOCK_SIZE
);
1169 * Note, user-space expects 512-byte blocks count irrespectively
1170 * of what was reported in @stat->size.
1172 stat
->blocks
= size
>> 9;
1175 mutex_unlock(&ui
->ui_mutex
);
1179 const struct inode_operations ubifs_dir_inode_operations
= {
1180 .lookup
= ubifs_lookup
,
1181 .create
= ubifs_create
,
1183 .symlink
= ubifs_symlink
,
1184 .unlink
= ubifs_unlink
,
1185 .mkdir
= ubifs_mkdir
,
1186 .rmdir
= ubifs_rmdir
,
1187 .mknod
= ubifs_mknod
,
1188 .rename
= ubifs_rename
,
1189 .setattr
= ubifs_setattr
,
1190 .getattr
= ubifs_getattr
,
1191 .setxattr
= generic_setxattr
,
1192 .getxattr
= generic_getxattr
,
1193 .listxattr
= ubifs_listxattr
,
1194 .removexattr
= generic_removexattr
,
1195 #ifdef CONFIG_UBIFS_ATIME_SUPPORT
1196 .update_time
= ubifs_update_time
,
1200 const struct file_operations ubifs_dir_operations
= {
1201 .llseek
= generic_file_llseek
,
1202 .release
= ubifs_dir_release
,
1203 .read
= generic_read_dir
,
1204 .iterate_shared
= ubifs_readdir
,
1205 .fsync
= ubifs_fsync
,
1206 .unlocked_ioctl
= ubifs_ioctl
,
1207 #ifdef CONFIG_COMPAT
1208 .compat_ioctl
= ubifs_compat_ioctl
,