ubi: fastmap: Fix add_vol() return value test in ubi_attach_fastmap()
[linux-2.6-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);
235c362b 149 ubifs_err(c, "out of inode numbers");
1e51764a
AB
150 make_bad_inode(inode);
151 iput(inode);
152 return ERR_PTR(-EINVAL);
153 }
1a7e985d 154 ubifs_warn(c, "running out of inode numbers (current %lu, max %u)",
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);
235c362b 225 ubifs_err(c, "dead directory entry '%pd', error %d",
4cb2a01d 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
d7f0b70d
SN
273 err = ubifs_init_security(dir, inode, &dentry->d_name);
274 if (err)
9401a795 275 goto out_inode;
d7f0b70d 276
1e51764a
AB
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);
282 if (err)
283 goto out_cancel;
284 mutex_unlock(&dir_ui->ui_mutex);
285
286 ubifs_release_budget(c, &req);
287 insert_inode_hash(inode);
288 d_instantiate(dentry, inode);
289 return 0;
290
291out_cancel:
292 dir->i_size -= sz_change;
293 dir_ui->ui_size = dir->i_size;
294 mutex_unlock(&dir_ui->ui_mutex);
9401a795 295out_inode:
1e51764a
AB
296 make_bad_inode(inode);
297 iput(inode);
298out_budg:
299 ubifs_release_budget(c, &req);
235c362b 300 ubifs_err(c, "cannot create regular file, error %d", err);
1e51764a
AB
301 return err;
302}
303
9e0a1fff
RW
304static int do_tmpfile(struct inode *dir, struct dentry *dentry,
305 umode_t mode, struct inode **whiteout)
474b9370
RW
306{
307 struct inode *inode;
308 struct ubifs_info *c = dir->i_sb->s_fs_info;
309 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1};
310 struct ubifs_budget_req ino_req = { .dirtied_ino = 1 };
311 struct ubifs_inode *ui, *dir_ui = ubifs_inode(dir);
312 int err, instantiated = 0;
313
314 /*
315 * Budget request settings: new dirty inode, new direntry,
316 * budget for dirtied inode will be released via writeback.
317 */
318
319 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
320 dentry, mode, dir->i_ino);
321
322 err = ubifs_budget_space(c, &req);
323 if (err)
324 return err;
325
326 err = ubifs_budget_space(c, &ino_req);
327 if (err) {
328 ubifs_release_budget(c, &req);
329 return err;
330 }
331
332 inode = ubifs_new_inode(c, dir, mode);
333 if (IS_ERR(inode)) {
334 err = PTR_ERR(inode);
335 goto out_budg;
336 }
337 ui = ubifs_inode(inode);
338
9e0a1fff
RW
339 if (whiteout) {
340 init_special_inode(inode, inode->i_mode, WHITEOUT_DEV);
341 ubifs_assert(inode->i_op == &ubifs_file_inode_operations);
342 }
343
474b9370
RW
344 err = ubifs_init_security(dir, inode, &dentry->d_name);
345 if (err)
346 goto out_inode;
347
348 mutex_lock(&ui->ui_mutex);
349 insert_inode_hash(inode);
9e0a1fff
RW
350
351 if (whiteout) {
352 mark_inode_dirty(inode);
353 drop_nlink(inode);
354 *whiteout = inode;
355 } else {
356 d_tmpfile(dentry, inode);
357 }
474b9370 358 ubifs_assert(ui->dirty);
9e0a1fff 359
474b9370
RW
360 instantiated = 1;
361 mutex_unlock(&ui->ui_mutex);
362
363 mutex_lock(&dir_ui->ui_mutex);
364 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 1, 0);
365 if (err)
366 goto out_cancel;
367 mutex_unlock(&dir_ui->ui_mutex);
368
369 ubifs_release_budget(c, &req);
370
371 return 0;
372
373out_cancel:
374 mutex_unlock(&dir_ui->ui_mutex);
375out_inode:
376 make_bad_inode(inode);
377 if (!instantiated)
378 iput(inode);
379out_budg:
380 ubifs_release_budget(c, &req);
381 if (!instantiated)
382 ubifs_release_budget(c, &ino_req);
383 ubifs_err(c, "cannot create temporary file, error %d", err);
384 return err;
385}
386
9e0a1fff
RW
387static int ubifs_tmpfile(struct inode *dir, struct dentry *dentry,
388 umode_t mode)
389{
390 return do_tmpfile(dir, dentry, mode, NULL);
391}
392
1e51764a
AB
393/**
394 * vfs_dent_type - get VFS directory entry type.
395 * @type: UBIFS directory entry type
396 *
397 * This function converts UBIFS directory entry type into VFS directory entry
398 * type.
399 */
400static unsigned int vfs_dent_type(uint8_t type)
401{
402 switch (type) {
403 case UBIFS_ITYPE_REG:
404 return DT_REG;
405 case UBIFS_ITYPE_DIR:
406 return DT_DIR;
407 case UBIFS_ITYPE_LNK:
408 return DT_LNK;
409 case UBIFS_ITYPE_BLK:
410 return DT_BLK;
411 case UBIFS_ITYPE_CHR:
412 return DT_CHR;
413 case UBIFS_ITYPE_FIFO:
414 return DT_FIFO;
415 case UBIFS_ITYPE_SOCK:
416 return DT_SOCK;
417 default:
418 BUG();
419 }
420 return 0;
421}
422
423/*
424 * The classical Unix view for directory is that it is a linear array of
425 * (name, inode number) entries. Linux/VFS assumes this model as well.
426 * Particularly, 'readdir()' call wants us to return a directory entry offset
427 * which later may be used to continue 'readdir()'ing the directory or to
428 * 'seek()' to that specific direntry. Obviously UBIFS does not really fit this
429 * model because directory entries are identified by keys, which may collide.
430 *
431 * UBIFS uses directory entry hash value for directory offsets, so
432 * 'seekdir()'/'telldir()' may not always work because of possible key
433 * collisions. But UBIFS guarantees that consecutive 'readdir()' calls work
434 * properly by means of saving full directory entry name in the private field
435 * of the file description object.
436 *
437 * This means that UBIFS cannot support NFS which requires full
438 * 'seekdir()'/'telldir()' support.
439 */
01122e06 440static int ubifs_readdir(struct file *file, struct dir_context *ctx)
1e51764a 441{
c83ed4c9 442 int err = 0;
1e51764a
AB
443 struct qstr nm;
444 union ubifs_key key;
445 struct ubifs_dent_node *dent;
496ad9aa 446 struct inode *dir = file_inode(file);
1e51764a
AB
447 struct ubifs_info *c = dir->i_sb->s_fs_info;
448
01122e06 449 dbg_gen("dir ino %lu, f_pos %#llx", dir->i_ino, ctx->pos);
1e51764a 450
01122e06 451 if (ctx->pos > UBIFS_S_KEY_HASH_MASK || ctx->pos == 2)
1e51764a
AB
452 /*
453 * The directory was seek'ed to a senseless position or there
454 * are no more entries.
455 */
456 return 0;
457
605c912b
AB
458 if (file->f_version == 0) {
459 /*
460 * The file was seek'ed, which means that @file->private_data
461 * is now invalid. This may also be just the first
462 * 'ubifs_readdir()' invocation, in which case
463 * @file->private_data is NULL, and the below code is
464 * basically a no-op.
465 */
466 kfree(file->private_data);
467 file->private_data = NULL;
468 }
469
470 /*
471 * 'generic_file_llseek()' unconditionally sets @file->f_version to
472 * zero, and we use this for detecting whether the file was seek'ed.
473 */
474 file->f_version = 1;
475
1e51764a 476 /* File positions 0 and 1 correspond to "." and ".." */
01122e06 477 if (ctx->pos < 2) {
1e51764a 478 ubifs_assert(!file->private_data);
01122e06 479 if (!dir_emit_dots(file, ctx))
1e51764a
AB
480 return 0;
481
482 /* Find the first entry in TNC and save it */
483 lowest_dent_key(c, &key, dir->i_ino);
484 nm.name = NULL;
485 dent = ubifs_tnc_next_ent(c, &key, &nm);
486 if (IS_ERR(dent)) {
487 err = PTR_ERR(dent);
488 goto out;
489 }
490
01122e06 491 ctx->pos = key_hash_flash(c, &dent->key);
1e51764a
AB
492 file->private_data = dent;
493 }
494
495 dent = file->private_data;
496 if (!dent) {
497 /*
498 * The directory was seek'ed to and is now readdir'ed.
01122e06 499 * Find the entry corresponding to @ctx->pos or the closest one.
1e51764a 500 */
01122e06 501 dent_key_init_hash(c, &key, dir->i_ino, ctx->pos);
1e51764a
AB
502 nm.name = NULL;
503 dent = ubifs_tnc_next_ent(c, &key, &nm);
504 if (IS_ERR(dent)) {
505 err = PTR_ERR(dent);
506 goto out;
507 }
01122e06 508 ctx->pos = key_hash_flash(c, &dent->key);
1e51764a
AB
509 file->private_data = dent;
510 }
511
512 while (1) {
513 dbg_gen("feed '%s', ino %llu, new f_pos %#x",
7424bac8 514 dent->name, (unsigned long long)le64_to_cpu(dent->inum),
1e51764a 515 key_hash_flash(c, &dent->key));
0ecb9529
HH
516 ubifs_assert(le64_to_cpu(dent->ch.sqnum) >
517 ubifs_inode(dir)->creat_sqnum);
1e51764a
AB
518
519 nm.len = le16_to_cpu(dent->nlen);
01122e06 520 if (!dir_emit(ctx, dent->name, nm.len,
1e51764a 521 le64_to_cpu(dent->inum),
01122e06 522 vfs_dent_type(dent->type)))
1e51764a
AB
523 return 0;
524
525 /* Switch to the next entry */
526 key_read(c, &dent->key, &key);
527 nm.name = dent->name;
528 dent = ubifs_tnc_next_ent(c, &key, &nm);
529 if (IS_ERR(dent)) {
530 err = PTR_ERR(dent);
531 goto out;
532 }
533
534 kfree(file->private_data);
01122e06 535 ctx->pos = key_hash_flash(c, &dent->key);
1e51764a
AB
536 file->private_data = dent;
537 cond_resched();
538 }
539
540out:
aeeb14f7
RW
541 kfree(file->private_data);
542 file->private_data = NULL;
543
c83ed4c9 544 if (err != -ENOENT)
235c362b 545 ubifs_err(c, "cannot find next direntry, error %d", err);
1e51764a 546
605c912b 547 /* 2 is a special value indicating that there are no more direntries */
01122e06 548 ctx->pos = 2;
c83ed4c9 549 return err;
1e51764a
AB
550}
551
1e51764a
AB
552/* Free saved readdir() state when the directory is closed */
553static int ubifs_dir_release(struct inode *dir, struct file *file)
554{
555 kfree(file->private_data);
556 file->private_data = NULL;
557 return 0;
558}
559
560/**
82c1593c 561 * lock_2_inodes - a wrapper for locking two UBIFS inodes.
1e51764a
AB
562 * @inode1: first inode
563 * @inode2: second inode
82c1593c
AB
564 *
565 * We do not implement any tricks to guarantee strict lock ordering, because
566 * VFS has already done it for us on the @i_mutex. So this is just a simple
567 * wrapper function.
1e51764a
AB
568 */
569static void lock_2_inodes(struct inode *inode1, struct inode *inode2)
570{
82c1593c
AB
571 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
572 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
1e51764a
AB
573}
574
575/**
82c1593c 576 * unlock_2_inodes - a wrapper for unlocking two UBIFS inodes.
1e51764a
AB
577 * @inode1: first inode
578 * @inode2: second inode
579 */
580static void unlock_2_inodes(struct inode *inode1, struct inode *inode2)
581{
1e51764a 582 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
82c1593c 583 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
1e51764a
AB
584}
585
586static int ubifs_link(struct dentry *old_dentry, struct inode *dir,
587 struct dentry *dentry)
588{
589 struct ubifs_info *c = dir->i_sb->s_fs_info;
2b0143b5 590 struct inode *inode = d_inode(old_dentry);
1e51764a
AB
591 struct ubifs_inode *ui = ubifs_inode(inode);
592 struct ubifs_inode *dir_ui = ubifs_inode(dir);
593 int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len);
594 struct ubifs_budget_req req = { .new_dent = 1, .dirtied_ino = 2,
dab4b4d2 595 .dirtied_ino_d = ALIGN(ui->data_len, 8) };
1e51764a
AB
596
597 /*
598 * Budget request settings: new direntry, changing the target inode,
599 * changing the parent inode.
600 */
601
4cb2a01d
AV
602 dbg_gen("dent '%pd' to ino %lu (nlink %d) in dir ino %lu",
603 dentry, inode->i_ino,
1e51764a 604 inode->i_nlink, dir->i_ino);
5955102c
AV
605 ubifs_assert(inode_is_locked(dir));
606 ubifs_assert(inode_is_locked(inode));
8b3884a8 607
d808efb4 608 err = dbg_check_synced_i_size(c, inode);
1e51764a
AB
609 if (err)
610 return err;
611
612 err = ubifs_budget_space(c, &req);
613 if (err)
614 return err;
615
616 lock_2_inodes(dir, inode);
617 inc_nlink(inode);
7de9c6ee 618 ihold(inode);
1e51764a
AB
619 inode->i_ctime = ubifs_current_time(inode);
620 dir->i_size += sz_change;
621 dir_ui->ui_size = dir->i_size;
622 dir->i_mtime = dir->i_ctime = inode->i_ctime;
623 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0);
624 if (err)
625 goto out_cancel;
626 unlock_2_inodes(dir, inode);
627
628 ubifs_release_budget(c, &req);
629 d_instantiate(dentry, inode);
630 return 0;
631
632out_cancel:
633 dir->i_size -= sz_change;
634 dir_ui->ui_size = dir->i_size;
635 drop_nlink(inode);
636 unlock_2_inodes(dir, inode);
637 ubifs_release_budget(c, &req);
638 iput(inode);
639 return err;
640}
641
642static int ubifs_unlink(struct inode *dir, struct dentry *dentry)
643{
644 struct ubifs_info *c = dir->i_sb->s_fs_info;
2b0143b5 645 struct inode *inode = d_inode(dentry);
1e51764a
AB
646 struct ubifs_inode *dir_ui = ubifs_inode(dir);
647 int sz_change = CALC_DENT_SIZE(dentry->d_name.len);
648 int err, budgeted = 1;
649 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
c43be108 650 unsigned int saved_nlink = inode->i_nlink;
1e51764a
AB
651
652 /*
653 * Budget request settings: deletion direntry, deletion inode (+1 for
654 * @dirtied_ino), changing the parent directory inode. If budgeting
655 * fails, go ahead anyway because we have extra space reserved for
656 * deletions.
657 */
658
4cb2a01d
AV
659 dbg_gen("dent '%pd' from ino %lu (nlink %d) in dir ino %lu",
660 dentry, inode->i_ino,
1e51764a 661 inode->i_nlink, dir->i_ino);
5955102c
AV
662 ubifs_assert(inode_is_locked(dir));
663 ubifs_assert(inode_is_locked(inode));
d808efb4 664 err = dbg_check_synced_i_size(c, inode);
1e51764a
AB
665 if (err)
666 return err;
667
668 err = ubifs_budget_space(c, &req);
669 if (err) {
670 if (err != -ENOSPC)
671 return err;
1e51764a
AB
672 budgeted = 0;
673 }
674
675 lock_2_inodes(dir, inode);
676 inode->i_ctime = ubifs_current_time(dir);
677 drop_nlink(inode);
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);
682 if (err)
683 goto out_cancel;
684 unlock_2_inodes(dir, inode);
685
686 if (budgeted)
687 ubifs_release_budget(c, &req);
688 else {
689 /* We've deleted something - clean the "no space" flags */
b137545c 690 c->bi.nospace = c->bi.nospace_rp = 0;
1e51764a
AB
691 smp_wmb();
692 }
693 return 0;
694
695out_cancel:
696 dir->i_size += sz_change;
697 dir_ui->ui_size = dir->i_size;
c43be108 698 set_nlink(inode, saved_nlink);
1e51764a
AB
699 unlock_2_inodes(dir, inode);
700 if (budgeted)
701 ubifs_release_budget(c, &req);
702 return err;
703}
704
705/**
706 * check_dir_empty - check if a directory is empty or not.
707 * @c: UBIFS file-system description object
708 * @dir: VFS inode object of the directory to check
709 *
710 * This function checks if directory @dir is empty. Returns zero if the
711 * directory is empty, %-ENOTEMPTY if it is not, and other negative error codes
712 * in case of of errors.
713 */
714static int check_dir_empty(struct ubifs_info *c, struct inode *dir)
715{
716 struct qstr nm = { .name = NULL };
717 struct ubifs_dent_node *dent;
718 union ubifs_key key;
719 int err;
720
721 lowest_dent_key(c, &key, dir->i_ino);
722 dent = ubifs_tnc_next_ent(c, &key, &nm);
723 if (IS_ERR(dent)) {
724 err = PTR_ERR(dent);
725 if (err == -ENOENT)
726 err = 0;
727 } else {
728 kfree(dent);
729 err = -ENOTEMPTY;
730 }
731 return err;
732}
733
734static int ubifs_rmdir(struct inode *dir, struct dentry *dentry)
735{
736 struct ubifs_info *c = dir->i_sb->s_fs_info;
2b0143b5 737 struct inode *inode = d_inode(dentry);
1e51764a
AB
738 int sz_change = CALC_DENT_SIZE(dentry->d_name.len);
739 int err, budgeted = 1;
740 struct ubifs_inode *dir_ui = ubifs_inode(dir);
741 struct ubifs_budget_req req = { .mod_dent = 1, .dirtied_ino = 2 };
742
743 /*
744 * Budget request settings: deletion direntry, deletion inode and
745 * changing the parent inode. If budgeting fails, go ahead anyway
746 * because we have extra space reserved for deletions.
747 */
748
4cb2a01d
AV
749 dbg_gen("directory '%pd', ino %lu in dir ino %lu", dentry,
750 inode->i_ino, dir->i_ino);
5955102c
AV
751 ubifs_assert(inode_is_locked(dir));
752 ubifs_assert(inode_is_locked(inode));
2b0143b5 753 err = check_dir_empty(c, d_inode(dentry));
1e51764a
AB
754 if (err)
755 return err;
756
757 err = ubifs_budget_space(c, &req);
758 if (err) {
759 if (err != -ENOSPC)
760 return err;
761 budgeted = 0;
762 }
763
764 lock_2_inodes(dir, inode);
765 inode->i_ctime = ubifs_current_time(dir);
766 clear_nlink(inode);
767 drop_nlink(dir);
768 dir->i_size -= sz_change;
769 dir_ui->ui_size = dir->i_size;
770 dir->i_mtime = dir->i_ctime = inode->i_ctime;
771 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 1, 0);
772 if (err)
773 goto out_cancel;
774 unlock_2_inodes(dir, inode);
775
776 if (budgeted)
777 ubifs_release_budget(c, &req);
778 else {
779 /* We've deleted something - clean the "no space" flags */
b137545c 780 c->bi.nospace = c->bi.nospace_rp = 0;
1e51764a
AB
781 smp_wmb();
782 }
783 return 0;
784
785out_cancel:
786 dir->i_size += sz_change;
787 dir_ui->ui_size = dir->i_size;
788 inc_nlink(dir);
c43be108 789 set_nlink(inode, 2);
1e51764a
AB
790 unlock_2_inodes(dir, inode);
791 if (budgeted)
792 ubifs_release_budget(c, &req);
793 return err;
794}
795
18bb1db3 796static int ubifs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1e51764a
AB
797{
798 struct inode *inode;
799 struct ubifs_inode *dir_ui = ubifs_inode(dir);
800 struct ubifs_info *c = dir->i_sb->s_fs_info;
801 int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len);
182854b4 802 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1 };
1e51764a
AB
803
804 /*
805 * Budget request settings: new inode, new direntry and changing parent
806 * directory inode.
807 */
808
4cb2a01d
AV
809 dbg_gen("dent '%pd', mode %#hx in dir ino %lu",
810 dentry, mode, dir->i_ino);
1e51764a
AB
811
812 err = ubifs_budget_space(c, &req);
813 if (err)
814 return err;
815
816 inode = ubifs_new_inode(c, dir, S_IFDIR | mode);
817 if (IS_ERR(inode)) {
818 err = PTR_ERR(inode);
819 goto out_budg;
820 }
821
d7f0b70d
SN
822 err = ubifs_init_security(dir, inode, &dentry->d_name);
823 if (err)
9401a795 824 goto out_inode;
d7f0b70d 825
1e51764a
AB
826 mutex_lock(&dir_ui->ui_mutex);
827 insert_inode_hash(inode);
828 inc_nlink(inode);
829 inc_nlink(dir);
830 dir->i_size += sz_change;
831 dir_ui->ui_size = dir->i_size;
832 dir->i_mtime = dir->i_ctime = inode->i_ctime;
833 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0);
834 if (err) {
235c362b 835 ubifs_err(c, "cannot create directory, error %d", err);
1e51764a
AB
836 goto out_cancel;
837 }
838 mutex_unlock(&dir_ui->ui_mutex);
839
840 ubifs_release_budget(c, &req);
841 d_instantiate(dentry, inode);
842 return 0;
843
844out_cancel:
845 dir->i_size -= sz_change;
846 dir_ui->ui_size = dir->i_size;
847 drop_nlink(dir);
848 mutex_unlock(&dir_ui->ui_mutex);
9401a795 849out_inode:
1e51764a
AB
850 make_bad_inode(inode);
851 iput(inode);
852out_budg:
853 ubifs_release_budget(c, &req);
854 return err;
855}
856
857static int ubifs_mknod(struct inode *dir, struct dentry *dentry,
1a67aafb 858 umode_t mode, dev_t rdev)
1e51764a
AB
859{
860 struct inode *inode;
861 struct ubifs_inode *ui;
862 struct ubifs_inode *dir_ui = ubifs_inode(dir);
863 struct ubifs_info *c = dir->i_sb->s_fs_info;
864 union ubifs_dev_desc *dev = NULL;
865 int sz_change = CALC_DENT_SIZE(dentry->d_name.len);
866 int err, devlen = 0;
867 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
dab4b4d2
AB
868 .new_ino_d = ALIGN(devlen, 8),
869 .dirtied_ino = 1 };
1e51764a
AB
870
871 /*
872 * Budget request settings: new inode, new direntry and changing parent
873 * directory inode.
874 */
875
4cb2a01d 876 dbg_gen("dent '%pd' in dir ino %lu", dentry, dir->i_ino);
1e51764a 877
1e51764a
AB
878 if (S_ISBLK(mode) || S_ISCHR(mode)) {
879 dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
880 if (!dev)
881 return -ENOMEM;
882 devlen = ubifs_encode_dev(dev, rdev);
883 }
884
885 err = ubifs_budget_space(c, &req);
886 if (err) {
887 kfree(dev);
888 return err;
889 }
890
891 inode = ubifs_new_inode(c, dir, mode);
892 if (IS_ERR(inode)) {
893 kfree(dev);
894 err = PTR_ERR(inode);
895 goto out_budg;
896 }
897
898 init_special_inode(inode, inode->i_mode, rdev);
899 inode->i_size = ubifs_inode(inode)->ui_size = devlen;
900 ui = ubifs_inode(inode);
901 ui->data = dev;
902 ui->data_len = devlen;
903
d7f0b70d
SN
904 err = ubifs_init_security(dir, inode, &dentry->d_name);
905 if (err)
9401a795 906 goto out_inode;
d7f0b70d 907
1e51764a
AB
908 mutex_lock(&dir_ui->ui_mutex);
909 dir->i_size += sz_change;
910 dir_ui->ui_size = dir->i_size;
911 dir->i_mtime = dir->i_ctime = inode->i_ctime;
912 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0);
913 if (err)
914 goto out_cancel;
915 mutex_unlock(&dir_ui->ui_mutex);
916
917 ubifs_release_budget(c, &req);
918 insert_inode_hash(inode);
919 d_instantiate(dentry, inode);
920 return 0;
921
922out_cancel:
923 dir->i_size -= sz_change;
924 dir_ui->ui_size = dir->i_size;
925 mutex_unlock(&dir_ui->ui_mutex);
9401a795 926out_inode:
1e51764a
AB
927 make_bad_inode(inode);
928 iput(inode);
929out_budg:
930 ubifs_release_budget(c, &req);
931 return err;
932}
933
934static int ubifs_symlink(struct inode *dir, struct dentry *dentry,
935 const char *symname)
936{
937 struct inode *inode;
938 struct ubifs_inode *ui;
939 struct ubifs_inode *dir_ui = ubifs_inode(dir);
940 struct ubifs_info *c = dir->i_sb->s_fs_info;
941 int err, len = strlen(symname);
942 int sz_change = CALC_DENT_SIZE(dentry->d_name.len);
943 struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
dab4b4d2
AB
944 .new_ino_d = ALIGN(len, 8),
945 .dirtied_ino = 1 };
1e51764a
AB
946
947 /*
948 * Budget request settings: new inode, new direntry and changing parent
949 * directory inode.
950 */
951
4cb2a01d
AV
952 dbg_gen("dent '%pd', target '%s' in dir ino %lu", dentry,
953 symname, dir->i_ino);
1e51764a
AB
954
955 if (len > UBIFS_MAX_INO_DATA)
956 return -ENAMETOOLONG;
957
958 err = ubifs_budget_space(c, &req);
959 if (err)
960 return err;
961
962 inode = ubifs_new_inode(c, dir, S_IFLNK | S_IRWXUGO);
963 if (IS_ERR(inode)) {
964 err = PTR_ERR(inode);
965 goto out_budg;
966 }
967
968 ui = ubifs_inode(inode);
969 ui->data = kmalloc(len + 1, GFP_NOFS);
970 if (!ui->data) {
971 err = -ENOMEM;
972 goto out_inode;
973 }
974
975 memcpy(ui->data, symname, len);
976 ((char *)ui->data)[len] = '\0';
0f301bd3 977 inode->i_link = ui->data;
1e51764a
AB
978 /*
979 * The terminating zero byte is not written to the flash media and it
980 * is put just to make later in-memory string processing simpler. Thus,
981 * data length is @len, not @len + %1.
982 */
983 ui->data_len = len;
984 inode->i_size = ubifs_inode(inode)->ui_size = len;
985
d7f0b70d
SN
986 err = ubifs_init_security(dir, inode, &dentry->d_name);
987 if (err)
9401a795 988 goto out_inode;
d7f0b70d 989
1e51764a
AB
990 mutex_lock(&dir_ui->ui_mutex);
991 dir->i_size += sz_change;
992 dir_ui->ui_size = dir->i_size;
993 dir->i_mtime = dir->i_ctime = inode->i_ctime;
994 err = ubifs_jnl_update(c, dir, &dentry->d_name, inode, 0, 0);
995 if (err)
996 goto out_cancel;
997 mutex_unlock(&dir_ui->ui_mutex);
998
999 ubifs_release_budget(c, &req);
1000 insert_inode_hash(inode);
1001 d_instantiate(dentry, inode);
1002 return 0;
1003
1004out_cancel:
1005 dir->i_size -= sz_change;
1006 dir_ui->ui_size = dir->i_size;
1007 mutex_unlock(&dir_ui->ui_mutex);
1008out_inode:
1009 make_bad_inode(inode);
1010 iput(inode);
1011out_budg:
1012 ubifs_release_budget(c, &req);
1013 return err;
1014}
1015
1016/**
9e0a1fff 1017 * lock_4_inodes - a wrapper for locking three UBIFS inodes.
1e51764a
AB
1018 * @inode1: first inode
1019 * @inode2: second inode
1020 * @inode3: third inode
9e0a1fff 1021 * @inode4: fouth inode
1e51764a 1022 *
82c1593c 1023 * This function is used for 'ubifs_rename()' and @inode1 may be the same as
9e0a1fff 1024 * @inode2 whereas @inode3 and @inode4 may be %NULL.
82c1593c
AB
1025 *
1026 * We do not implement any tricks to guarantee strict lock ordering, because
1027 * VFS has already done it for us on the @i_mutex. So this is just a simple
1028 * wrapper function.
1e51764a 1029 */
9e0a1fff
RW
1030static void lock_4_inodes(struct inode *inode1, struct inode *inode2,
1031 struct inode *inode3, struct inode *inode4)
1e51764a 1032{
82c1593c
AB
1033 mutex_lock_nested(&ubifs_inode(inode1)->ui_mutex, WB_MUTEX_1);
1034 if (inode2 != inode1)
1035 mutex_lock_nested(&ubifs_inode(inode2)->ui_mutex, WB_MUTEX_2);
1036 if (inode3)
1037 mutex_lock_nested(&ubifs_inode(inode3)->ui_mutex, WB_MUTEX_3);
9e0a1fff
RW
1038 if (inode4)
1039 mutex_lock_nested(&ubifs_inode(inode4)->ui_mutex, WB_MUTEX_4);
1e51764a
AB
1040}
1041
1042/**
9e0a1fff 1043 * unlock_4_inodes - a wrapper for unlocking three UBIFS inodes for rename.
1e51764a
AB
1044 * @inode1: first inode
1045 * @inode2: second inode
1046 * @inode3: third inode
9e0a1fff 1047 * @inode4: fouth inode
1e51764a 1048 */
9e0a1fff
RW
1049static void unlock_4_inodes(struct inode *inode1, struct inode *inode2,
1050 struct inode *inode3, struct inode *inode4)
1e51764a 1051{
9e0a1fff
RW
1052 if (inode4)
1053 mutex_unlock(&ubifs_inode(inode4)->ui_mutex);
1e51764a
AB
1054 if (inode3)
1055 mutex_unlock(&ubifs_inode(inode3)->ui_mutex);
82c1593c
AB
1056 if (inode1 != inode2)
1057 mutex_unlock(&ubifs_inode(inode2)->ui_mutex);
1058 mutex_unlock(&ubifs_inode(inode1)->ui_mutex);
1e51764a
AB
1059}
1060
390975ac
RW
1061static int do_rename(struct inode *old_dir, struct dentry *old_dentry,
1062 struct inode *new_dir, struct dentry *new_dentry,
1063 unsigned int flags)
1e51764a
AB
1064{
1065 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
2b0143b5
DH
1066 struct inode *old_inode = d_inode(old_dentry);
1067 struct inode *new_inode = d_inode(new_dentry);
9e0a1fff 1068 struct inode *whiteout = NULL;
1e51764a 1069 struct ubifs_inode *old_inode_ui = ubifs_inode(old_inode);
9e0a1fff 1070 struct ubifs_inode *whiteout_ui = NULL;
1e51764a
AB
1071 int err, release, sync = 0, move = (new_dir != old_dir);
1072 int is_dir = S_ISDIR(old_inode->i_mode);
1073 int unlink = !!new_inode;
1074 int new_sz = CALC_DENT_SIZE(new_dentry->d_name.len);
1075 int old_sz = CALC_DENT_SIZE(old_dentry->d_name.len);
1076 struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1077 .dirtied_ino = 3 };
1078 struct ubifs_budget_req ino_req = { .dirtied_ino = 1,
dab4b4d2 1079 .dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) };
1e51764a 1080 struct timespec time;
782759b9 1081 unsigned int uninitialized_var(saved_nlink);
1e51764a 1082
f03b8ad8
MS
1083 if (flags & ~RENAME_NOREPLACE)
1084 return -EINVAL;
1085
1e51764a
AB
1086 /*
1087 * Budget request settings: deletion direntry, new direntry, removing
1088 * the old inode, and changing old and new parent directory inodes.
1089 *
1090 * However, this operation also marks the target inode as dirty and
1091 * does not write it, so we allocate budget for the target inode
1092 * separately.
1093 */
1094
9e0a1fff 1095 dbg_gen("dent '%pd' ino %lu in dir ino %lu to dent '%pd' in dir ino %lu flags 0x%x",
4cb2a01d 1096 old_dentry, old_inode->i_ino, old_dir->i_ino,
9e0a1fff
RW
1097 new_dentry, new_dir->i_ino, flags);
1098
82c1593c 1099 if (unlink)
5955102c 1100 ubifs_assert(inode_is_locked(new_inode));
82c1593c 1101
1e51764a
AB
1102 if (unlink && is_dir) {
1103 err = check_dir_empty(c, new_inode);
1104 if (err)
1105 return err;
1106 }
1107
1108 err = ubifs_budget_space(c, &req);
1109 if (err)
1110 return err;
1111 err = ubifs_budget_space(c, &ino_req);
1112 if (err) {
1113 ubifs_release_budget(c, &req);
1114 return err;
1115 }
1116
9e0a1fff
RW
1117 if (flags & RENAME_WHITEOUT) {
1118 union ubifs_dev_desc *dev = NULL;
1119
1120 dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
1121 if (!dev) {
1122 ubifs_release_budget(c, &req);
1123 ubifs_release_budget(c, &ino_req);
1124 return -ENOMEM;
1125 }
1126
1127 err = do_tmpfile(old_dir, old_dentry, S_IFCHR | WHITEOUT_MODE, &whiteout);
1128 if (err) {
1129 ubifs_release_budget(c, &req);
1130 ubifs_release_budget(c, &ino_req);
1131 kfree(dev);
1132 return err;
1133 }
1134
1135 whiteout->i_state |= I_LINKABLE;
1136 whiteout_ui = ubifs_inode(whiteout);
1137 whiteout_ui->data = dev;
1138 whiteout_ui->data_len = ubifs_encode_dev(dev, MKDEV(0, 0));
1139 ubifs_assert(!whiteout_ui->dirty);
1140 }
1141
1142 lock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1e51764a
AB
1143
1144 /*
1145 * Like most other Unix systems, set the @i_ctime for inodes on a
1146 * rename.
1147 */
1148 time = ubifs_current_time(old_dir);
1149 old_inode->i_ctime = time;
1150
1151 /* We must adjust parent link count when renaming directories */
1152 if (is_dir) {
1153 if (move) {
1154 /*
1155 * @old_dir loses a link because we are moving
1156 * @old_inode to a different directory.
1157 */
1158 drop_nlink(old_dir);
1159 /*
1160 * @new_dir only gains a link if we are not also
1161 * overwriting an existing directory.
1162 */
1163 if (!unlink)
1164 inc_nlink(new_dir);
1165 } else {
1166 /*
1167 * @old_inode is not moving to a different directory,
1168 * but @old_dir still loses a link if we are
1169 * overwriting an existing directory.
1170 */
1171 if (unlink)
1172 drop_nlink(old_dir);
1173 }
1174 }
1175
1176 old_dir->i_size -= old_sz;
1177 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1178 old_dir->i_mtime = old_dir->i_ctime = time;
1179 new_dir->i_mtime = new_dir->i_ctime = time;
1180
1181 /*
1182 * And finally, if we unlinked a direntry which happened to have the
1183 * same name as the moved direntry, we have to decrement @i_nlink of
1184 * the unlinked inode and change its ctime.
1185 */
1186 if (unlink) {
1187 /*
1188 * Directories cannot have hard-links, so if this is a
c43be108 1189 * directory, just clear @i_nlink.
1e51764a 1190 */
c43be108 1191 saved_nlink = new_inode->i_nlink;
1e51764a 1192 if (is_dir)
c43be108
AB
1193 clear_nlink(new_inode);
1194 else
1e51764a
AB
1195 drop_nlink(new_inode);
1196 new_inode->i_ctime = time;
1e51764a
AB
1197 } else {
1198 new_dir->i_size += new_sz;
1199 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1200 }
1201
1202 /*
1203 * Do not ask 'ubifs_jnl_rename()' to flush write-buffer if @old_inode
1204 * is dirty, because this will be done later on at the end of
1205 * 'ubifs_rename()'.
1206 */
1207 if (IS_SYNC(old_inode)) {
1208 sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1209 if (unlink && IS_SYNC(new_inode))
1210 sync = 1;
1211 }
9e0a1fff
RW
1212
1213 if (whiteout) {
1214 struct ubifs_budget_req wht_req = { .dirtied_ino = 1,
1215 .dirtied_ino_d = \
1216 ALIGN(ubifs_inode(whiteout)->data_len, 8) };
1217
1218 err = ubifs_budget_space(c, &wht_req);
1219 if (err) {
1220 ubifs_release_budget(c, &req);
1221 ubifs_release_budget(c, &ino_req);
1222 kfree(whiteout_ui->data);
1223 whiteout_ui->data_len = 0;
1224 iput(whiteout);
1225 return err;
1226 }
1227
1228 inc_nlink(whiteout);
1229 mark_inode_dirty(whiteout);
1230 whiteout->i_state &= ~I_LINKABLE;
1231 iput(whiteout);
1232 }
1233
1234 err = ubifs_jnl_rename(c, old_dir, old_dentry, new_dir, new_dentry, whiteout,
1e51764a
AB
1235 sync);
1236 if (err)
1237 goto out_cancel;
1238
9e0a1fff 1239 unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1e51764a
AB
1240 ubifs_release_budget(c, &req);
1241
1242 mutex_lock(&old_inode_ui->ui_mutex);
1243 release = old_inode_ui->dirty;
1244 mark_inode_dirty_sync(old_inode);
1245 mutex_unlock(&old_inode_ui->ui_mutex);
1246
1247 if (release)
1248 ubifs_release_budget(c, &ino_req);
1249 if (IS_SYNC(old_inode))
a9185b41 1250 err = old_inode->i_sb->s_op->write_inode(old_inode, NULL);
1e51764a
AB
1251 return err;
1252
1253out_cancel:
1254 if (unlink) {
c43be108 1255 set_nlink(new_inode, saved_nlink);
1e51764a
AB
1256 } else {
1257 new_dir->i_size -= new_sz;
1258 ubifs_inode(new_dir)->ui_size = new_dir->i_size;
1259 }
1260 old_dir->i_size += old_sz;
1261 ubifs_inode(old_dir)->ui_size = old_dir->i_size;
1262 if (is_dir) {
1263 if (move) {
1264 inc_nlink(old_dir);
1265 if (!unlink)
1266 drop_nlink(new_dir);
1267 } else {
1268 if (unlink)
1269 inc_nlink(old_dir);
1270 }
1271 }
9e0a1fff
RW
1272 if (whiteout) {
1273 drop_nlink(whiteout);
1274 iput(whiteout);
1275 }
1276 unlock_4_inodes(old_dir, new_dir, new_inode, whiteout);
1e51764a
AB
1277 ubifs_release_budget(c, &ino_req);
1278 ubifs_release_budget(c, &req);
1279 return err;
1280}
1281
9ec64962
RW
1282static int ubifs_xrename(struct inode *old_dir, struct dentry *old_dentry,
1283 struct inode *new_dir, struct dentry *new_dentry)
1284{
1285 struct ubifs_info *c = old_dir->i_sb->s_fs_info;
1286 struct ubifs_budget_req req = { .new_dent = 1, .mod_dent = 1,
1287 .dirtied_ino = 2 };
1288 int sync = IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir);
1289 struct inode *fst_inode = d_inode(old_dentry);
1290 struct inode *snd_inode = d_inode(new_dentry);
1291 struct timespec time;
1292 int err;
1293
1294 ubifs_assert(fst_inode && snd_inode);
1295
1296 lock_4_inodes(old_dir, new_dir, NULL, NULL);
1297
1298 time = ubifs_current_time(old_dir);
1299 fst_inode->i_ctime = time;
1300 snd_inode->i_ctime = time;
1301 old_dir->i_mtime = old_dir->i_ctime = time;
1302 new_dir->i_mtime = new_dir->i_ctime = time;
1303
1304 if (old_dir != new_dir) {
1305 if (S_ISDIR(fst_inode->i_mode) && !S_ISDIR(snd_inode->i_mode)) {
1306 inc_nlink(new_dir);
1307 drop_nlink(old_dir);
1308 }
1309 else if (!S_ISDIR(fst_inode->i_mode) && S_ISDIR(snd_inode->i_mode)) {
1310 drop_nlink(new_dir);
1311 inc_nlink(old_dir);
1312 }
1313 }
1314
1315 err = ubifs_jnl_xrename(c, old_dir, old_dentry, new_dir, new_dentry,
1316 sync);
1317
1318 unlock_4_inodes(old_dir, new_dir, NULL, NULL);
1319 ubifs_release_budget(c, &req);
1320
1321 return err;
1322}
1323
390975ac 1324static int ubifs_rename(struct inode *old_dir, struct dentry *old_dentry,
9ec64962
RW
1325 struct inode *new_dir, struct dentry *new_dentry,
1326 unsigned int flags)
1327{
1328 if (flags & ~(RENAME_NOREPLACE | RENAME_WHITEOUT | RENAME_EXCHANGE))
1329 return -EINVAL;
1330
1331 ubifs_assert(inode_is_locked(old_dir));
1332 ubifs_assert(inode_is_locked(new_dir));
1333
1334 if (flags & RENAME_EXCHANGE)
1335 return ubifs_xrename(old_dir, old_dentry, new_dir, new_dentry);
1336
390975ac 1337 return do_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
9ec64962
RW
1338}
1339
1e51764a
AB
1340int ubifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
1341 struct kstat *stat)
1342{
1343 loff_t size;
2b0143b5 1344 struct inode *inode = d_inode(dentry);
1e51764a
AB
1345 struct ubifs_inode *ui = ubifs_inode(inode);
1346
1347 mutex_lock(&ui->ui_mutex);
6d42e7e9 1348 generic_fillattr(inode, stat);
1e51764a
AB
1349 stat->blksize = UBIFS_BLOCK_SIZE;
1350 stat->size = ui->ui_size;
1351
1352 /*
1353 * Unfortunately, the 'stat()' system call was designed for block
1354 * device based file systems, and it is not appropriate for UBIFS,
1355 * because UBIFS does not have notion of "block". For example, it is
1356 * difficult to tell how many block a directory takes - it actually
1357 * takes less than 300 bytes, but we have to round it to block size,
1358 * which introduces large mistake. This makes utilities like 'du' to
1359 * report completely senseless numbers. This is the reason why UBIFS
1360 * goes the same way as JFFS2 - it reports zero blocks for everything
1361 * but regular files, which makes more sense than reporting completely
1362 * wrong sizes.
1363 */
1364 if (S_ISREG(inode->i_mode)) {
1365 size = ui->xattr_size;
1366 size += stat->size;
1367 size = ALIGN(size, UBIFS_BLOCK_SIZE);
1368 /*
1369 * Note, user-space expects 512-byte blocks count irrespectively
1370 * of what was reported in @stat->size.
1371 */
1372 stat->blocks = size >> 9;
1373 } else
1374 stat->blocks = 0;
1375 mutex_unlock(&ui->ui_mutex);
1376 return 0;
1377}
1378
e8b81566 1379const struct inode_operations ubifs_dir_inode_operations = {
1e51764a
AB
1380 .lookup = ubifs_lookup,
1381 .create = ubifs_create,
1382 .link = ubifs_link,
1383 .symlink = ubifs_symlink,
1384 .unlink = ubifs_unlink,
1385 .mkdir = ubifs_mkdir,
1386 .rmdir = ubifs_rmdir,
1387 .mknod = ubifs_mknod,
390975ac 1388 .rename = ubifs_rename,
1e51764a
AB
1389 .setattr = ubifs_setattr,
1390 .getattr = ubifs_getattr,
1e51764a 1391 .listxattr = ubifs_listxattr,
8c1c5f26
DY
1392#ifdef CONFIG_UBIFS_ATIME_SUPPORT
1393 .update_time = ubifs_update_time,
1394#endif
474b9370 1395 .tmpfile = ubifs_tmpfile,
1e51764a
AB
1396};
1397
e8b81566 1398const struct file_operations ubifs_dir_operations = {
01122e06 1399 .llseek = generic_file_llseek,
1e51764a
AB
1400 .release = ubifs_dir_release,
1401 .read = generic_read_dir,
c51da20c 1402 .iterate_shared = ubifs_readdir,
1e51764a
AB
1403 .fsync = ubifs_fsync,
1404 .unlocked_ioctl = ubifs_ioctl,
1405#ifdef CONFIG_COMPAT
1406 .compat_ioctl = ubifs_compat_ioctl,
1407#endif
1408};