fs: remove mapping->backing_dev_info
[linux-block.git] / fs / ubifs / dir.c
CommitLineData
1e51764a
AB
1/* * This file is part of UBIFS.
2 *
3 * Copyright (C) 2006-2008 Nokia Corporation.
4 * Copyright (C) 2006, 2007 University of Szeged, Hungary
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * Authors: Artem Bityutskiy (Битюцкий Артём)
20 * Adrian Hunter
21 * Zoltan Sogor
22 */
23
24/*
25 * This file implements directory operations.
26 *
27 * All FS operations in this file allocate budget before writing anything to the
28 * media. If they fail to allocate it, the error is returned. The only
29 * exceptions are 'ubifs_unlink()' and 'ubifs_rmdir()' which keep working even
30 * if they unable to allocate the budget, because deletion %-ENOSPC failure is
31 * not what users are usually ready to get. UBIFS budgeting subsystem has some
32 * space reserved for these purposes.
33 *
34 * All operations in this file write all inodes which they change straight
35 * away, instead of marking them dirty. For example, 'ubifs_link()' changes
36 * @i_size of the parent inode and writes the parent inode together with the
37 * target inode. This was done to simplify file-system recovery which would
38 * otherwise be very difficult to do. The only exception is rename which marks
39 * the re-named inode dirty (because its @i_ctime is updated) but does not
40 * write it, but just marks it as dirty.
41 */
42
43#include "ubifs.h"
44
45/**
46 * inherit_flags - inherit flags of the parent inode.
47 * @dir: parent inode
48 * @mode: new inode mode flags
49 *
50 * This is a helper function for 'ubifs_new_inode()' which inherits flag of the
51 * parent directory inode @dir. UBIFS inodes inherit the following flags:
52 * o %UBIFS_COMPR_FL, which is useful to switch compression on/of on
53 * sub-directory basis;
54 * o %UBIFS_SYNC_FL - useful for the same reasons;
55 * o %UBIFS_DIRSYNC_FL - similar, but relevant only to directories.
56 *
57 * This function returns the inherited flags.
58 */
ad44be5c 59static int inherit_flags(const struct inode *dir, umode_t mode)
1e51764a
AB
60{
61 int flags;
62 const struct ubifs_inode *ui = ubifs_inode(dir);
63
64 if (!S_ISDIR(dir->i_mode))
65 /*
66 * The parent is not a directory, which means that an extended
67 * attribute inode is being created. No flags.
68 */
69 return 0;
70
71 flags = ui->flags & (UBIFS_COMPR_FL | UBIFS_SYNC_FL | UBIFS_DIRSYNC_FL);
72 if (!S_ISDIR(mode))
73 /* The "DIRSYNC" flag only applies to directories */
74 flags &= ~UBIFS_DIRSYNC_FL;
75 return flags;
76}
77
78/**
79 * ubifs_new_inode - allocate new UBIFS inode object.
80 * @c: UBIFS file-system description object
81 * @dir: parent directory inode
82 * @mode: inode mode flags
83 *
84 * This function finds an unused inode number, allocates new inode and
85 * initializes it. Returns new inode in case of success and an error code in
86 * case of failure.
87 */
88struct inode *ubifs_new_inode(struct ubifs_info *c, const struct inode *dir,
ad44be5c 89 umode_t mode)
1e51764a
AB
90{
91 struct inode *inode;
92 struct ubifs_inode *ui;
93
94 inode = new_inode(c->vfs_sb);
95 ui = ubifs_inode(inode);
96 if (!inode)
97 return ERR_PTR(-ENOMEM);
98
99 /*
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.
104 */
12e776a0 105 inode->i_flags |= S_NOCMTIME;
1e51764a 106
abf5d08a 107 inode_init_owner(inode, dir, mode);
1e51764a
AB
108 inode->i_mtime = inode->i_atime = inode->i_ctime =
109 ubifs_current_time(inode);
110 inode->i_mapping->nrpages = 0;
1e51764a
AB
111
112 switch (mode & S_IFMT) {
113 case S_IFREG:
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;
117 break;
118 case S_IFDIR:
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;
122 break;
123 case S_IFLNK:
124 inode->i_op = &ubifs_symlink_inode_operations;
125 break;
126 case S_IFSOCK:
127 case S_IFIFO:
128 case S_IFBLK:
129 case S_IFCHR:
130 inode->i_op = &ubifs_file_inode_operations;
131 break;
132 default:
133 BUG();
134 }
135
136 ui->flags = inherit_flags(dir, mode);
137 ubifs_set_inode_flags(inode);
138 if (S_ISREG(mode))
139 ui->compr_type = c->default_compr;
140 else
141 ui->compr_type = UBIFS_COMPR_NONE;
142 ui->synced_i_size = 0;
143
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("out of inode numbers");
150 make_bad_inode(inode);
151 iput(inode);
152 return ERR_PTR(-EINVAL);
153 }
154 ubifs_warn("running out of inode numbers (current %lu, max %d)",
e84461ad 155 (unsigned long)c->highest_inum, INUM_WATERMARK);
1e51764a
AB
156 }
157
158 inode->i_ino = ++c->highest_inum;
1e51764a
AB
159 /*
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.
165 */
166 ui->creat_sqnum = ++c->max_sqnum;
167 spin_unlock(&c->cnt_lock);
168 return inode;
169}
170
bb2615d4
AB
171static int dbg_check_name(const struct ubifs_info *c,
172 const struct ubifs_dent_node *dent,
173 const struct qstr *nm)
1e51764a 174{
2b1844a8 175 if (!dbg_is_chk_gen(c))
1e51764a
AB
176 return 0;
177 if (le16_to_cpu(dent->nlen) != nm->len)
178 return -EINVAL;
179 if (memcmp(dent->name, nm->name, nm->len))
180 return -EINVAL;
181 return 0;
182}
183
1e51764a 184static struct dentry *ubifs_lookup(struct inode *dir, struct dentry *dentry,
00cd8dd3 185 unsigned int flags)
1e51764a
AB
186{
187 int err;
188 union ubifs_key key;
189 struct inode *inode = NULL;
190 struct ubifs_dent_node *dent;
191 struct ubifs_info *c = dir->i_sb->s_fs_info;
192
4cb2a01d 193 dbg_gen("'%pd' in dir ino %lu", dentry, dir->i_ino);
1e51764a
AB
194
195 if (dentry->d_name.len > UBIFS_MAX_NLEN)
196 return ERR_PTR(-ENAMETOOLONG);
197
198 dent = kmalloc(UBIFS_MAX_DENT_NODE_SZ, GFP_NOFS);
199 if (!dent)
200 return ERR_PTR(-ENOMEM);
201
202 dent_key_init(c, &key, dir->i_ino, &dentry->d_name);
203
204 err = ubifs_tnc_lookup_nm(c, &key, dent, &dentry->d_name);
205 if (err) {
720b499c 206 if (err == -ENOENT) {
1e51764a
AB
207 dbg_gen("not found");
208 goto done;
209 }
210 goto out;
211 }
212
bb2615d4 213 if (dbg_check_name(c, dent, &dentry->d_name)) {
1e51764a
AB
214 err = -EINVAL;
215 goto out;
216 }
217
218 inode = ubifs_iget(dir->i_sb, le64_to_cpu(dent->inum));
219 if (IS_ERR(inode)) {
220 /*
221 * This should not happen. Probably the file-system needs
222 * checking.
223 */
224 err = PTR_ERR(inode);
4cb2a01d
AV
225 ubifs_err("dead directory entry '%pd', error %d",
226 dentry, err);
1e51764a
AB
227 ubifs_ro_mode(c, err);
228 goto out;
229 }
230
231done:
232 kfree(dent);
233 /*
234 * Note, d_splice_alias() would be required instead if we supported
235 * NFS.
236 */
237 d_add(dentry, inode);
238 return NULL;
239
240out:
241 kfree(dent);
242 return ERR_PTR(err);
243}
244
4acdaf27 245static int ubifs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
ebfc3b49 246 bool excl)
1e51764a
AB
247{
248 struct inode *inode;
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,
252 .dirtied_ino = 1 };
253 struct ubifs_inode *dir_ui = ubifs_inode(dir);
254
255 /*
256 * Budget request settings: new inode, new direntry, changing the
257 * parent directory inode.
258 */
259
4cb2a01d
AV
260 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
261 dentry, mode, dir->i_ino);
1e51764a
AB
262
263 err = ubifs_budget_space(c, &req);
264 if (err)
265 return err;
266
267 inode = ubifs_new_inode(c, dir, mode);
268 if (IS_ERR(inode)) {
269 err = PTR_ERR(inode);
270 goto out_budg;
271 }
272
273 mutex_lock(&dir_ui->ui_mutex);
274 dir->i_size += sz_change;
275 dir_ui->ui_size = dir->i_size;
276 dir->i_mtime = dir->i_ctime = inode->i_ctime;
277 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0);
278 if (err)
279 goto out_cancel;
280 mutex_unlock(&dir_ui->ui_mutex);
281
282 ubifs_release_budget(c, &req);
283 insert_inode_hash(inode);
284 d_instantiate(dentry, inode);
285 return 0;
286
287out_cancel:
288 dir->i_size -= sz_change;
289 dir_ui->ui_size = dir->i_size;
290 mutex_unlock(&dir_ui->ui_mutex);
291 make_bad_inode(inode);
292 iput(inode);
293out_budg:
294 ubifs_release_budget(c, &req);
295 ubifs_err("cannot create regular file, error %d", err);
296 return err;
297}
298
299/**
300 * vfs_dent_type - get VFS directory entry type.
301 * @type: UBIFS directory entry type
302 *
303 * This function converts UBIFS directory entry type into VFS directory entry
304 * type.
305 */
306static unsigned int vfs_dent_type(uint8_t type)
307{
308 switch (type) {
309 case UBIFS_ITYPE_REG:
310 return DT_REG;
311 case UBIFS_ITYPE_DIR:
312 return DT_DIR;
313 case UBIFS_ITYPE_LNK:
314 return DT_LNK;
315 case UBIFS_ITYPE_BLK:
316 return DT_BLK;
317 case UBIFS_ITYPE_CHR:
318 return DT_CHR;
319 case UBIFS_ITYPE_FIFO:
320 return DT_FIFO;
321 case UBIFS_ITYPE_SOCK:
322 return DT_SOCK;
323 default:
324 BUG();
325 }
326 return 0;
327}
328
329/*
330 * The classical Unix view for directory is that it is a linear array of
331 * (name, inode number) entries. Linux/VFS assumes this model as well.
332 * Particularly, 'readdir()' call wants us to return a directory entry offset
333 * which later may be used to continue 'readdir()'ing the directory or to
334 * 'seek()' to that specific direntry. Obviously UBIFS does not really fit this
335 * model because directory entries are identified by keys, which may collide.
336 *
337 * UBIFS uses directory entry hash value for directory offsets, so
338 * 'seekdir()'/'telldir()' may not always work because of possible key
339 * collisions. But UBIFS guarantees that consecutive 'readdir()' calls work
340 * properly by means of saving full directory entry name in the private field
341 * of the file description object.
342 *
343 * This means that UBIFS cannot support NFS which requires full
344 * 'seekdir()'/'telldir()' support.
345 */
01122e06 346static int ubifs_readdir(struct file *file, struct dir_context *ctx)
1e51764a 347{
01122e06 348 int err;
1e51764a
AB
349 struct qstr nm;
350 union ubifs_key key;
351 struct ubifs_dent_node *dent;
496ad9aa 352 struct inode *dir = file_inode(file);
1e51764a
AB
353 struct ubifs_info *c = dir->i_sb->s_fs_info;
354
01122e06 355 dbg_gen("dir ino %lu, f_pos %#llx", dir->i_ino, ctx->pos);
1e51764a 356
01122e06 357 if (ctx->pos > UBIFS_S_KEY_HASH_MASK || ctx->pos == 2)
1e51764a
AB
358 /*
359 * The directory was seek'ed to a senseless position or there
360 * are no more entries.
361 */
362 return 0;
363
605c912b
AB
364 if (file->f_version == 0) {
365 /*
366 * The file was seek'ed, which means that @file->private_data
367 * is now invalid. This may also be just the first
368 * 'ubifs_readdir()' invocation, in which case
369 * @file->private_data is NULL, and the below code is
370 * basically a no-op.
371 */
372 kfree(file->private_data);
373 file->private_data = NULL;
374 }
375
376 /*
377 * 'generic_file_llseek()' unconditionally sets @file->f_version to
378 * zero, and we use this for detecting whether the file was seek'ed.
379 */
380 file->f_version = 1;
381
1e51764a 382 /* File positions 0 and 1 correspond to "." and ".." */
01122e06 383 if (ctx->pos < 2) {
1e51764a 384 ubifs_assert(!file->private_data);
01122e06 385 if (!dir_emit_dots(file, ctx))
1e51764a
AB
386 return 0;
387
388 /* Find the first entry in TNC and save it */
389 lowest_dent_key(c, &key, dir->i_ino);
390 nm.name = NULL;
391 dent = ubifs_tnc_next_ent(c, &key, &nm);
392 if (IS_ERR(dent)) {
393 err = PTR_ERR(dent);
394 goto out;
395 }
396
01122e06 397 ctx->pos = key_hash_flash(c, &dent->key);
1e51764a
AB
398 file->private_data = dent;
399 }
400
401 dent = file->private_data;
402 if (!dent) {
403 /*
404 * The directory was seek'ed to and is now readdir'ed.
01122e06 405 * Find the entry corresponding to @ctx->pos or the closest one.
1e51764a 406 */
01122e06 407 dent_key_init_hash(c, &key, dir->i_ino, ctx->pos);
1e51764a
AB
408 nm.name = NULL;
409 dent = ubifs_tnc_next_ent(c, &key, &nm);
410 if (IS_ERR(dent)) {
411 err = PTR_ERR(dent);
412 goto out;
413 }
01122e06 414 ctx->pos = key_hash_flash(c, &dent->key);
1e51764a
AB
415 file->private_data = dent;
416 }
417
418 while (1) {
419 dbg_gen("feed '%s', ino %llu, new f_pos %#x",
7424bac8 420 dent->name, (unsigned long long)le64_to_cpu(dent->inum),
1e51764a 421 key_hash_flash(c, &dent->key));
0ecb9529
HH
422 ubifs_assert(le64_to_cpu(dent->ch.sqnum) >
423 ubifs_inode(dir)->creat_sqnum);
1e51764a
AB
424
425 nm.len = le16_to_cpu(dent->nlen);
01122e06 426 if (!dir_emit(ctx, dent->name, nm.len,
1e51764a 427 le64_to_cpu(dent->inum),
01122e06 428 vfs_dent_type(dent->type)))
1e51764a
AB
429 return 0;
430
431 /* Switch to the next entry */
432 key_read(c, &dent->key, &key);
433 nm.name = dent->name;
434 dent = ubifs_tnc_next_ent(c, &key, &nm);
435 if (IS_ERR(dent)) {
436 err = PTR_ERR(dent);
437 goto out;
438 }
439
440 kfree(file->private_data);
01122e06 441 ctx->pos = key_hash_flash(c, &dent->key);
1e51764a
AB
442 file->private_data = dent;
443 cond_resched();
444 }
445
446out:
447 if (err != -ENOENT) {
448 ubifs_err("cannot find next direntry, error %d", err);
449 return err;
450 }
451
452 kfree(file->private_data);
453 file->private_data = NULL;
605c912b 454 /* 2 is a special value indicating that there are no more direntries */
01122e06 455 ctx->pos = 2;
1e51764a
AB
456 return 0;
457}
458
1e51764a
AB
459/* Free saved readdir() state when the directory is closed */
460static int ubifs_dir_release(struct inode *dir, struct file *file)
461{
462 kfree(file->private_data);
463 file->private_data = NULL;
464 return 0;
465}
466
467/**
82c1593c 468 * lock_2_inodes - a wrapper for locking two UBIFS inodes.
1e51764a
AB
469 * @inode1: first inode
470 * @inode2: second inode
82c1593c
AB
471 *
472 * We do not implement any tricks to guarantee strict lock ordering, because
473 * VFS has already done it for us on the @i_mutex. So this is just a simple
474 * wrapper function.
1e51764a
AB
475 */
476static void lock_2_inodes(struct inode *inode1, struct inode *inode2)
477{
82c1593c
AB
478 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
479 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
1e51764a
AB
480}
481
482/**
82c1593c 483 * unlock_2_inodes - a wrapper for unlocking two UBIFS inodes.
1e51764a
AB
484 * @inode1: first inode
485 * @inode2: second inode
486 */
487static void unlock_2_inodes(struct inode *inode1, struct inode *inode2)
488{
1e51764a 489 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
82c1593c 490 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
1e51764a
AB
491}
492
493static int ubifs_link(struct dentry *old_dentry, struct inode *dir,
494 struct dentry *dentry)
495{
496 struct ubifs_info *c = dir->i_sb->s_fs_info;
497 struct inode *inode = old_dentry->d_inode;
498 struct ubifs_inode *ui = ubifs_inode(inode);
499 struct ubifs_inode *dir_ui = ubifs_inode(dir);
500 int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len);
501 struct ubifs_budget_req req = { .new_dent = 1, .dirtied_ino = 2,
dab4b4d2 502 .dirtied_ino_d = ALIGN(ui->data_len, 8) };
1e51764a
AB
503
504 /*
505 * Budget request settings: new direntry, changing the target inode,
506 * changing the parent inode.
507 */
508
4cb2a01d
AV
509 dbg_gen("dent '%pd' to ino %lu (nlink %d) in dir ino %lu",
510 dentry, inode->i_ino,
1e51764a 511 inode->i_nlink, dir->i_ino);
82c1593c
AB
512 ubifs_assert(mutex_is_locked(&dir->i_mutex));
513 ubifs_assert(mutex_is_locked(&inode->i_mutex));
8b3884a8 514
d808efb4 515 err = dbg_check_synced_i_size(c, inode);
1e51764a
AB
516 if (err)
517 return err;
518
519 err = ubifs_budget_space(c, &req);
520 if (err)
521 return err;
522
523 lock_2_inodes(dir, inode);
524 inc_nlink(inode);
7de9c6ee 525 ihold(inode);
1e51764a
AB
526 inode->i_ctime = ubifs_current_time(inode);
527 dir->i_size += sz_change;
528 dir_ui->ui_size = dir->i_size;
529 dir->i_mtime = dir->i_ctime = inode->i_ctime;
530 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0);
531 if (err)
532 goto out_cancel;
533 unlock_2_inodes(dir, inode);
534
535 ubifs_release_budget(c, &req);
536 d_instantiate(dentry, inode);
537 return 0;
538
539out_cancel:
540 dir->i_size -= sz_change;
541 dir_ui->ui_size = dir->i_size;
542 drop_nlink(inode);
543 unlock_2_inodes(dir, inode);
544 ubifs_release_budget(c, &req);
545 iput(inode);
546 return err;
547}
548
549static int ubifs_unlink(struct inode *dir, struct dentry *dentry)
550{
551 struct ubifs_info *c = dir->i_sb->s_fs_info;
552 struct inode *inode = dentry->d_inode;
553 struct ubifs_inode *dir_ui = ubifs_inode(dir);
554 int sz_change = CALC_DENT_SIZE(dentry->d_name.len);
555 int err, budgeted = 1;
556 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
c43be108 557 unsigned int saved_nlink = inode->i_nlink;
1e51764a
AB
558
559 /*
560 * Budget request settings: deletion direntry, deletion inode (+1 for
561 * @dirtied_ino), changing the parent directory inode. If budgeting
562 * fails, go ahead anyway because we have extra space reserved for
563 * deletions.
564 */
565
4cb2a01d
AV
566 dbg_gen("dent '%pd' from ino %lu (nlink %d) in dir ino %lu",
567 dentry, inode->i_ino,
1e51764a 568 inode->i_nlink, dir->i_ino);
82c1593c
AB
569 ubifs_assert(mutex_is_locked(&dir->i_mutex));
570 ubifs_assert(mutex_is_locked(&inode->i_mutex));
d808efb4 571 err = dbg_check_synced_i_size(c, inode);
1e51764a
AB
572 if (err)
573 return err;
574
575 err = ubifs_budget_space(c, &req);
576 if (err) {
577 if (err != -ENOSPC)
578 return err;
1e51764a
AB
579 budgeted = 0;
580 }
581
582 lock_2_inodes(dir, inode);
583 inode->i_ctime = ubifs_current_time(dir);
584 drop_nlink(inode);
585 dir->i_size -= sz_change;
586 dir_ui->ui_size = dir->i_size;
587 dir->i_mtime = dir->i_ctime = inode->i_ctime;
588 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 1, 0);
589 if (err)
590 goto out_cancel;
591 unlock_2_inodes(dir, inode);
592
593 if (budgeted)
594 ubifs_release_budget(c, &req);
595 else {
596 /* We've deleted something - clean the "no space" flags */
b137545c 597 c->bi.nospace = c->bi.nospace_rp = 0;
1e51764a
AB
598 smp_wmb();
599 }
600 return 0;
601
602out_cancel:
603 dir->i_size += sz_change;
604 dir_ui->ui_size = dir->i_size;
c43be108 605 set_nlink(inode, saved_nlink);
1e51764a
AB
606 unlock_2_inodes(dir, inode);
607 if (budgeted)
608 ubifs_release_budget(c, &req);
609 return err;
610}
611
612/**
613 * check_dir_empty - check if a directory is empty or not.
614 * @c: UBIFS file-system description object
615 * @dir: VFS inode object of the directory to check
616 *
617 * This function checks if directory @dir is empty. Returns zero if the
618 * directory is empty, %-ENOTEMPTY if it is not, and other negative error codes
619 * in case of of errors.
620 */
621static int check_dir_empty(struct ubifs_info *c, struct inode *dir)
622{
623 struct qstr nm = { .name = NULL };
624 struct ubifs_dent_node *dent;
625 union ubifs_key key;
626 int err;
627
628 lowest_dent_key(c, &key, dir->i_ino);
629 dent = ubifs_tnc_next_ent(c, &key, &nm);
630 if (IS_ERR(dent)) {
631 err = PTR_ERR(dent);
632 if (err == -ENOENT)
633 err = 0;
634 } else {
635 kfree(dent);
636 err = -ENOTEMPTY;
637 }
638 return err;
639}
640
641static int ubifs_rmdir(struct inode *dir, struct dentry *dentry)
642{
643 struct ubifs_info *c = dir->i_sb->s_fs_info;
644 struct inode *inode = dentry->d_inode;
645 int sz_change = CALC_DENT_SIZE(dentry->d_name.len);
646 int err, budgeted = 1;
647 struct ubifs_inode *dir_ui = ubifs_inode(dir);
648 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
649
650 /*
651 * Budget request settings: deletion direntry, deletion inode and
652 * changing the parent inode. If budgeting fails, go ahead anyway
653 * because we have extra space reserved for deletions.
654 */
655
4cb2a01d
AV
656 dbg_gen("directory '%pd', ino %lu in dir ino %lu", dentry,
657 inode->i_ino, dir->i_ino);
82c1593c
AB
658 ubifs_assert(mutex_is_locked(&dir->i_mutex));
659 ubifs_assert(mutex_is_locked(&inode->i_mutex));
1e51764a
AB
660 err = check_dir_empty(c, dentry->d_inode);
661 if (err)
662 return err;
663
664 err = ubifs_budget_space(c, &req);
665 if (err) {
666 if (err != -ENOSPC)
667 return err;
668 budgeted = 0;
669 }
670
671 lock_2_inodes(dir, inode);
672 inode->i_ctime = ubifs_current_time(dir);
673 clear_nlink(inode);
674 drop_nlink(dir);
675 dir->i_size -= sz_change;
676 dir_ui->ui_size = dir->i_size;
677 dir->i_mtime = dir->i_ctime = inode->i_ctime;
678 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 1, 0);
679 if (err)
680 goto out_cancel;
681 unlock_2_inodes(dir, inode);
682
683 if (budgeted)
684 ubifs_release_budget(c, &req);
685 else {
686 /* We've deleted something - clean the "no space" flags */
b137545c 687 c->bi.nospace = c->bi.nospace_rp = 0;
1e51764a
AB
688 smp_wmb();
689 }
690 return 0;
691
692out_cancel:
693 dir->i_size += sz_change;
694 dir_ui->ui_size = dir->i_size;
695 inc_nlink(dir);
c43be108 696 set_nlink(inode, 2);
1e51764a
AB
697 unlock_2_inodes(dir, inode);
698 if (budgeted)
699 ubifs_release_budget(c, &req);
700 return err;
701}
702
18bb1db3 703static int ubifs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1e51764a
AB
704{
705 struct inode *inode;
706 struct ubifs_inode *dir_ui = ubifs_inode(dir);
707 struct ubifs_info *c = dir->i_sb->s_fs_info;
708 int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len);
182854b4 709 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1 };
1e51764a
AB
710
711 /*
712 * Budget request settings: new inode, new direntry and changing parent
713 * directory inode.
714 */
715
4cb2a01d
AV
716 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
717 dentry, mode, dir->i_ino);
1e51764a
AB
718
719 err = ubifs_budget_space(c, &req);
720 if (err)
721 return err;
722
723 inode = ubifs_new_inode(c, dir, S_IFDIR | mode);
724 if (IS_ERR(inode)) {
725 err = PTR_ERR(inode);
726 goto out_budg;
727 }
728
729 mutex_lock(&dir_ui->ui_mutex);
730 insert_inode_hash(inode);
731 inc_nlink(inode);
732 inc_nlink(dir);
733 dir->i_size += sz_change;
734 dir_ui->ui_size = dir->i_size;
735 dir->i_mtime = dir->i_ctime = inode->i_ctime;
736 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0);
737 if (err) {
738 ubifs_err("cannot create directory, error %d", err);
739 goto out_cancel;
740 }
741 mutex_unlock(&dir_ui->ui_mutex);
742
743 ubifs_release_budget(c, &req);
744 d_instantiate(dentry, inode);
745 return 0;
746
747out_cancel:
748 dir->i_size -= sz_change;
749 dir_ui->ui_size = dir->i_size;
750 drop_nlink(dir);
751 mutex_unlock(&dir_ui->ui_mutex);
752 make_bad_inode(inode);
753 iput(inode);
754out_budg:
755 ubifs_release_budget(c, &req);
756 return err;
757}
758
759static int ubifs_mknod(struct inode *dir, struct dentry *dentry,
1a67aafb 760 umode_t mode, dev_t rdev)
1e51764a
AB
761{
762 struct inode *inode;
763 struct ubifs_inode *ui;
764 struct ubifs_inode *dir_ui = ubifs_inode(dir);
765 struct ubifs_info *c = dir->i_sb->s_fs_info;
766 union ubifs_dev_desc *dev = NULL;
767 int sz_change = CALC_DENT_SIZE(dentry->d_name.len);
768 int err, devlen = 0;
769 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
dab4b4d2
AB
770 .new_ino_d = ALIGN(devlen, 8),
771 .dirtied_ino = 1 };
1e51764a
AB
772
773 /*
774 * Budget request settings: new inode, new direntry and changing parent
775 * directory inode.
776 */
777
4cb2a01d 778 dbg_gen("dent '%pd' in dir ino %lu", dentry, dir->i_ino);
1e51764a
AB
779
780 if (!new_valid_dev(rdev))
781 return -EINVAL;
782
783 if (S_ISBLK(mode) || S_ISCHR(mode)) {
784 dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
785 if (!dev)
786 return -ENOMEM;
787 devlen = ubifs_encode_dev(dev, rdev);
788 }
789
790 err = ubifs_budget_space(c, &req);
791 if (err) {
792 kfree(dev);
793 return err;
794 }
795
796 inode = ubifs_new_inode(c, dir, mode);
797 if (IS_ERR(inode)) {
798 kfree(dev);
799 err = PTR_ERR(inode);
800 goto out_budg;
801 }
802
803 init_special_inode(inode, inode->i_mode, rdev);
804 inode->i_size = ubifs_inode(inode)->ui_size = devlen;
805 ui = ubifs_inode(inode);
806 ui->data = dev;
807 ui->data_len = devlen;
808
809 mutex_lock(&dir_ui->ui_mutex);
810 dir->i_size += sz_change;
811 dir_ui->ui_size = dir->i_size;
812 dir->i_mtime = dir->i_ctime = inode->i_ctime;
813 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0);
814 if (err)
815 goto out_cancel;
816 mutex_unlock(&dir_ui->ui_mutex);
817
818 ubifs_release_budget(c, &req);
819 insert_inode_hash(inode);
820 d_instantiate(dentry, inode);
821 return 0;
822
823out_cancel:
824 dir->i_size -= sz_change;
825 dir_ui->ui_size = dir->i_size;
826 mutex_unlock(&dir_ui->ui_mutex);
827 make_bad_inode(inode);
828 iput(inode);
829out_budg:
830 ubifs_release_budget(c, &req);
831 return err;
832}
833
834static int ubifs_symlink(struct inode *dir, struct dentry *dentry,
835 const char *symname)
836{
837 struct inode *inode;
838 struct ubifs_inode *ui;
839 struct ubifs_inode *dir_ui = ubifs_inode(dir);
840 struct ubifs_info *c = dir->i_sb->s_fs_info;
841 int err, len = strlen(symname);
842 int sz_change = CALC_DENT_SIZE(dentry->d_name.len);
843 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
dab4b4d2
AB
844 .new_ino_d = ALIGN(len, 8),
845 .dirtied_ino = 1 };
1e51764a
AB
846
847 /*
848 * Budget request settings: new inode, new direntry and changing parent
849 * directory inode.
850 */
851
4cb2a01d
AV
852 dbg_gen("dent '%pd', target '%s' in dir ino %lu", dentry,
853 symname, dir->i_ino);
1e51764a
AB
854
855 if (len > UBIFS_MAX_INO_DATA)
856 return -ENAMETOOLONG;
857
858 err = ubifs_budget_space(c, &req);
859 if (err)
860 return err;
861
862 inode = ubifs_new_inode(c, dir, S_IFLNK | S_IRWXUGO);
863 if (IS_ERR(inode)) {
864 err = PTR_ERR(inode);
865 goto out_budg;
866 }
867
868 ui = ubifs_inode(inode);
869 ui->data = kmalloc(len + 1, GFP_NOFS);
870 if (!ui->data) {
871 err = -ENOMEM;
872 goto out_inode;
873 }
874
875 memcpy(ui->data, symname, len);
876 ((char *)ui->data)[len] = '\0';
877 /*
878 * The terminating zero byte is not written to the flash media and it
879 * is put just to make later in-memory string processing simpler. Thus,
880 * data length is @len, not @len + %1.
881 */
882 ui->data_len = len;
883 inode->i_size = ubifs_inode(inode)->ui_size = len;
884
885 mutex_lock(&dir_ui->ui_mutex);
886 dir->i_size += sz_change;
887 dir_ui->ui_size = dir->i_size;
888 dir->i_mtime = dir->i_ctime = inode->i_ctime;
889 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0);
890 if (err)
891 goto out_cancel;
892 mutex_unlock(&dir_ui->ui_mutex);
893
894 ubifs_release_budget(c, &req);
895 insert_inode_hash(inode);
896 d_instantiate(dentry, inode);
897 return 0;
898
899out_cancel:
900 dir->i_size -= sz_change;
901 dir_ui->ui_size = dir->i_size;
902 mutex_unlock(&dir_ui->ui_mutex);
903out_inode:
904 make_bad_inode(inode);
905 iput(inode);
906out_budg:
907 ubifs_release_budget(c, &req);
908 return err;
909}
910
911/**
82c1593c 912 * lock_3_inodes - a wrapper for locking three UBIFS inodes.
1e51764a
AB
913 * @inode1: first inode
914 * @inode2: second inode
915 * @inode3: third inode
916 *
82c1593c
AB
917 * This function is used for 'ubifs_rename()' and @inode1 may be the same as
918 * @inode2 whereas @inode3 may be %NULL.
919 *
920 * We do not implement any tricks to guarantee strict lock ordering, because
921 * VFS has already done it for us on the @i_mutex. So this is just a simple
922 * wrapper function.
1e51764a
AB
923 */
924static void lock_3_inodes(struct inode *inode1, struct inode *inode2,
925 struct inode *inode3)
926{
82c1593c
AB
927 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
928 if (inode2 != inode1)
929 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
930 if (inode3)
931 mutex_lock_nested(&ubifs_inode(inode3)->ui_mutex, WB_MUTEX_3);
1e51764a
AB
932}
933
934/**
82c1593c 935 * unlock_3_inodes - a wrapper for unlocking three UBIFS inodes for rename.
1e51764a
AB
936 * @inode1: first inode
937 * @inode2: second inode
938 * @inode3: third inode
939 */
940static void unlock_3_inodes(struct inode *inode1, struct inode *inode2,
941 struct inode *inode3)
942{
1e51764a
AB
943 if (inode3)
944 mutex_unlock(&ubifs_inode(inode3)->ui_mutex);
82c1593c
AB
945 if (inode1 != inode2)
946 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
947 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
1e51764a
AB
948}
949
950static int ubifs_rename(struct inode *old_dir, struct dentry *old_dentry,
951 struct inode *new_dir, struct dentry *new_dentry)
952{
953 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
954 struct inode *old_inode = old_dentry->d_inode;
955 struct inode *new_inode = new_dentry->d_inode;
956 struct ubifs_inode *old_inode_ui = ubifs_inode(old_inode);
957 int err, release, sync = 0, move = (new_dir != old_dir);
958 int is_dir = S_ISDIR(old_inode->i_mode);
959 int unlink = !!new_inode;
960 int new_sz = CALC_DENT_SIZE(new_dentry->d_name.len);
961 int old_sz = CALC_DENT_SIZE(old_dentry->d_name.len);
962 struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
963 .dirtied_ino = 3 };
964 struct ubifs_budget_req ino_req = { .dirtied_ino = 1,
dab4b4d2 965 .dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) };
1e51764a 966 struct timespec time;
782759b9 967 unsigned int uninitialized_var(saved_nlink);
1e51764a
AB
968
969 /*
970 * Budget request settings: deletion direntry, new direntry, removing
971 * the old inode, and changing old and new parent directory inodes.
972 *
973 * However, this operation also marks the target inode as dirty and
974 * does not write it, so we allocate budget for the target inode
975 * separately.
976 */
977
4cb2a01d
AV
978 dbg_gen("dent '%pd' ino %lu in dir ino %lu to dent '%pd' in dir ino %lu",
979 old_dentry, old_inode->i_ino, old_dir->i_ino,
980 new_dentry, new_dir->i_ino);
82c1593c
AB
981 ubifs_assert(mutex_is_locked(&old_dir->i_mutex));
982 ubifs_assert(mutex_is_locked(&new_dir->i_mutex));
983 if (unlink)
984 ubifs_assert(mutex_is_locked(&new_inode->i_mutex));
985
1e51764a
AB
986
987 if (unlink && is_dir) {
988 err = check_dir_empty(c, new_inode);
989 if (err)
990 return err;
991 }
992
993 err = ubifs_budget_space(c, &req);
994 if (err)
995 return err;
996 err = ubifs_budget_space(c, &ino_req);
997 if (err) {
998 ubifs_release_budget(c, &req);
999 return err;
1000 }
1001
1002 lock_3_inodes(old_dir, new_dir, new_inode);
1003
1004 /*
1005 * Like most other Unix systems, set the @i_ctime for inodes on a
1006 * rename.
1007 */
1008 time = ubifs_current_time(old_dir);
1009 old_inode->i_ctime = time;
1010
1011 /* We must adjust parent link count when renaming directories */
1012 if (is_dir) {
1013 if (move) {
1014 /*
1015 * @old_dir loses a link because we are moving
1016 * @old_inode to a different directory.
1017 */
1018 drop_nlink(old_dir);
1019 /*
1020 * @new_dir only gains a link if we are not also
1021 * overwriting an existing directory.
1022 */
1023 if (!unlink)
1024 inc_nlink(new_dir);
1025 } else {
1026 /*
1027 * @old_inode is not moving to a different directory,
1028 * but @old_dir still loses a link if we are
1029 * overwriting an existing directory.
1030 */
1031 if (unlink)
1032 drop_nlink(old_dir);
1033 }
1034 }
1035
1036 old_dir->i_size -= old_sz;
1037 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1038 old_dir->i_mtime = old_dir->i_ctime = time;
1039 new_dir->i_mtime = new_dir->i_ctime = time;
1040
1041 /*
1042 * And finally, if we unlinked a direntry which happened to have the
1043 * same name as the moved direntry, we have to decrement @i_nlink of
1044 * the unlinked inode and change its ctime.
1045 */
1046 if (unlink) {
1047 /*
1048 * Directories cannot have hard-links, so if this is a
c43be108 1049 * directory, just clear @i_nlink.
1e51764a 1050 */
c43be108 1051 saved_nlink = new_inode->i_nlink;
1e51764a 1052 if (is_dir)
c43be108
AB
1053 clear_nlink(new_inode);
1054 else
1e51764a
AB
1055 drop_nlink(new_inode);
1056 new_inode->i_ctime = time;
1e51764a
AB
1057 } else {
1058 new_dir->i_size += new_sz;
1059 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1060 }
1061
1062 /*
1063 * Do not ask 'ubifs_jnl_rename()' to flush write-buffer if @old_inode
1064 * is dirty, because this will be done later on at the end of
1065 * 'ubifs_rename()'.
1066 */
1067 if (IS_SYNC(old_inode)) {
1068 sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1069 if (unlink && IS_SYNC(new_inode))
1070 sync = 1;
1071 }
1072 err = ubifs_jnl_rename(c, old_dir, old_dentry, new_dir, new_dentry,
1073 sync);
1074 if (err)
1075 goto out_cancel;
1076
1077 unlock_3_inodes(old_dir, new_dir, new_inode);
1078 ubifs_release_budget(c, &req);
1079
1080 mutex_lock(&old_inode_ui->ui_mutex);
1081 release = old_inode_ui->dirty;
1082 mark_inode_dirty_sync(old_inode);
1083 mutex_unlock(&old_inode_ui->ui_mutex);
1084
1085 if (release)
1086 ubifs_release_budget(c, &ino_req);
1087 if (IS_SYNC(old_inode))
a9185b41 1088 err = old_inode->i_sb->s_op->write_inode(old_inode, NULL);
1e51764a
AB
1089 return err;
1090
1091out_cancel:
1092 if (unlink) {
c43be108 1093 set_nlink(new_inode, saved_nlink);
1e51764a
AB
1094 } else {
1095 new_dir->i_size -= new_sz;
1096 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1097 }
1098 old_dir->i_size += old_sz;
1099 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1100 if (is_dir) {
1101 if (move) {
1102 inc_nlink(old_dir);
1103 if (!unlink)
1104 drop_nlink(new_dir);
1105 } else {
1106 if (unlink)
1107 inc_nlink(old_dir);
1108 }
1109 }
1110 unlock_3_inodes(old_dir, new_dir, new_inode);
1111 ubifs_release_budget(c, &ino_req);
1112 ubifs_release_budget(c, &req);
1113 return err;
1114}
1115
1116int ubifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
1117 struct kstat *stat)
1118{
1119 loff_t size;
1120 struct inode *inode = dentry->d_inode;
1121 struct ubifs_inode *ui = ubifs_inode(inode);
1122
1123 mutex_lock(&ui->ui_mutex);
6d42e7e9 1124 generic_fillattr(inode, stat);
1e51764a
AB
1125 stat->blksize = UBIFS_BLOCK_SIZE;
1126 stat->size = ui->ui_size;
1127
1128 /*
1129 * Unfortunately, the 'stat()' system call was designed for block
1130 * device based file systems, and it is not appropriate for UBIFS,
1131 * because UBIFS does not have notion of "block". For example, it is
1132 * difficult to tell how many block a directory takes - it actually
1133 * takes less than 300 bytes, but we have to round it to block size,
1134 * which introduces large mistake. This makes utilities like 'du' to
1135 * report completely senseless numbers. This is the reason why UBIFS
1136 * goes the same way as JFFS2 - it reports zero blocks for everything
1137 * but regular files, which makes more sense than reporting completely
1138 * wrong sizes.
1139 */
1140 if (S_ISREG(inode->i_mode)) {
1141 size = ui->xattr_size;
1142 size += stat->size;
1143 size = ALIGN(size, UBIFS_BLOCK_SIZE);
1144 /*
1145 * Note, user-space expects 512-byte blocks count irrespectively
1146 * of what was reported in @stat->size.
1147 */
1148 stat->blocks = size >> 9;
1149 } else
1150 stat->blocks = 0;
1151 mutex_unlock(&ui->ui_mutex);
1152 return 0;
1153}
1154
e8b81566 1155const struct inode_operations ubifs_dir_inode_operations = {
1e51764a
AB
1156 .lookup = ubifs_lookup,
1157 .create = ubifs_create,
1158 .link = ubifs_link,
1159 .symlink = ubifs_symlink,
1160 .unlink = ubifs_unlink,
1161 .mkdir = ubifs_mkdir,
1162 .rmdir = ubifs_rmdir,
1163 .mknod = ubifs_mknod,
1164 .rename = ubifs_rename,
1165 .setattr = ubifs_setattr,
1166 .getattr = ubifs_getattr,
1e51764a
AB
1167 .setxattr = ubifs_setxattr,
1168 .getxattr = ubifs_getxattr,
1169 .listxattr = ubifs_listxattr,
1170 .removexattr = ubifs_removexattr,
1e51764a
AB
1171};
1172
e8b81566 1173const struct file_operations ubifs_dir_operations = {
01122e06 1174 .llseek = generic_file_llseek,
1e51764a
AB
1175 .release = ubifs_dir_release,
1176 .read = generic_read_dir,
01122e06 1177 .iterate = ubifs_readdir,
1e51764a
AB
1178 .fsync = ubifs_fsync,
1179 .unlocked_ioctl = ubifs_ioctl,
1180#ifdef CONFIG_COMPAT
1181 .compat_ioctl = ubifs_compat_ioctl,
1182#endif
1183};