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