UBIFS: optimize deletions
[linux-2.6] / fs / ubifs / super.c
1 /*
2  * This file is part of UBIFS.
3  *
4  * Copyright (C) 2006-2008 Nokia Corporation.
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  */
22
23 /*
24  * This file implements UBIFS initialization and VFS superblock operations. Some
25  * initialization stuff which is rather large and complex is placed at
26  * corresponding subsystems, but most of it is here.
27  */
28
29 #include <linux/init.h>
30 #include <linux/slab.h>
31 #include <linux/module.h>
32 #include <linux/ctype.h>
33 #include <linux/random.h>
34 #include <linux/kthread.h>
35 #include <linux/parser.h>
36 #include <linux/seq_file.h>
37 #include <linux/mount.h>
38 #include "ubifs.h"
39
40 /* Slab cache for UBIFS inodes */
41 struct kmem_cache *ubifs_inode_slab;
42
43 /* UBIFS TNC shrinker description */
44 static struct shrinker ubifs_shrinker_info = {
45         .shrink = ubifs_shrinker,
46         .seeks = DEFAULT_SEEKS,
47 };
48
49 /**
50  * validate_inode - validate inode.
51  * @c: UBIFS file-system description object
52  * @inode: the inode to validate
53  *
54  * This is a helper function for 'ubifs_iget()' which validates various fields
55  * of a newly built inode to make sure they contain sane values and prevent
56  * possible vulnerabilities. Returns zero if the inode is all right and
57  * a non-zero error code if not.
58  */
59 static int validate_inode(struct ubifs_info *c, const struct inode *inode)
60 {
61         int err;
62         const struct ubifs_inode *ui = ubifs_inode(inode);
63
64         if (inode->i_size > c->max_inode_sz) {
65                 ubifs_err("inode is too large (%lld)",
66                           (long long)inode->i_size);
67                 return 1;
68         }
69
70         if (ui->compr_type < 0 || ui->compr_type >= UBIFS_COMPR_TYPES_CNT) {
71                 ubifs_err("unknown compression type %d", ui->compr_type);
72                 return 2;
73         }
74
75         if (ui->xattr_names + ui->xattr_cnt > XATTR_LIST_MAX)
76                 return 3;
77
78         if (ui->data_len < 0 || ui->data_len > UBIFS_MAX_INO_DATA)
79                 return 4;
80
81         if (ui->xattr && (inode->i_mode & S_IFMT) != S_IFREG)
82                 return 5;
83
84         if (!ubifs_compr_present(ui->compr_type)) {
85                 ubifs_warn("inode %lu uses '%s' compression, but it was not "
86                            "compiled in", inode->i_ino,
87                            ubifs_compr_name(ui->compr_type));
88         }
89
90         err = dbg_check_dir_size(c, inode);
91         return err;
92 }
93
94 struct inode *ubifs_iget(struct super_block *sb, unsigned long inum)
95 {
96         int err;
97         union ubifs_key key;
98         struct ubifs_ino_node *ino;
99         struct ubifs_info *c = sb->s_fs_info;
100         struct inode *inode;
101         struct ubifs_inode *ui;
102
103         dbg_gen("inode %lu", inum);
104
105         inode = iget_locked(sb, inum);
106         if (!inode)
107                 return ERR_PTR(-ENOMEM);
108         if (!(inode->i_state & I_NEW))
109                 return inode;
110         ui = ubifs_inode(inode);
111
112         ino = kmalloc(UBIFS_MAX_INO_NODE_SZ, GFP_NOFS);
113         if (!ino) {
114                 err = -ENOMEM;
115                 goto out;
116         }
117
118         ino_key_init(c, &key, inode->i_ino);
119
120         err = ubifs_tnc_lookup(c, &key, ino);
121         if (err)
122                 goto out_ino;
123
124         inode->i_flags |= (S_NOCMTIME | S_NOATIME);
125         inode->i_nlink = le32_to_cpu(ino->nlink);
126         inode->i_uid   = le32_to_cpu(ino->uid);
127         inode->i_gid   = le32_to_cpu(ino->gid);
128         inode->i_atime.tv_sec  = (int64_t)le64_to_cpu(ino->atime_sec);
129         inode->i_atime.tv_nsec = le32_to_cpu(ino->atime_nsec);
130         inode->i_mtime.tv_sec  = (int64_t)le64_to_cpu(ino->mtime_sec);
131         inode->i_mtime.tv_nsec = le32_to_cpu(ino->mtime_nsec);
132         inode->i_ctime.tv_sec  = (int64_t)le64_to_cpu(ino->ctime_sec);
133         inode->i_ctime.tv_nsec = le32_to_cpu(ino->ctime_nsec);
134         inode->i_mode = le32_to_cpu(ino->mode);
135         inode->i_size = le64_to_cpu(ino->size);
136
137         ui->data_len    = le32_to_cpu(ino->data_len);
138         ui->flags       = le32_to_cpu(ino->flags);
139         ui->compr_type  = le16_to_cpu(ino->compr_type);
140         ui->creat_sqnum = le64_to_cpu(ino->creat_sqnum);
141         ui->xattr_cnt   = le32_to_cpu(ino->xattr_cnt);
142         ui->xattr_size  = le32_to_cpu(ino->xattr_size);
143         ui->xattr_names = le32_to_cpu(ino->xattr_names);
144         ui->synced_i_size = ui->ui_size = inode->i_size;
145
146         ui->xattr = (ui->flags & UBIFS_XATTR_FL) ? 1 : 0;
147
148         err = validate_inode(c, inode);
149         if (err)
150                 goto out_invalid;
151
152         /* Disable readahead */
153         inode->i_mapping->backing_dev_info = &c->bdi;
154
155         switch (inode->i_mode & S_IFMT) {
156         case S_IFREG:
157                 inode->i_mapping->a_ops = &ubifs_file_address_operations;
158                 inode->i_op = &ubifs_file_inode_operations;
159                 inode->i_fop = &ubifs_file_operations;
160                 if (ui->xattr) {
161                         ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
162                         if (!ui->data) {
163                                 err = -ENOMEM;
164                                 goto out_ino;
165                         }
166                         memcpy(ui->data, ino->data, ui->data_len);
167                         ((char *)ui->data)[ui->data_len] = '\0';
168                 } else if (ui->data_len != 0) {
169                         err = 10;
170                         goto out_invalid;
171                 }
172                 break;
173         case S_IFDIR:
174                 inode->i_op  = &ubifs_dir_inode_operations;
175                 inode->i_fop = &ubifs_dir_operations;
176                 if (ui->data_len != 0) {
177                         err = 11;
178                         goto out_invalid;
179                 }
180                 break;
181         case S_IFLNK:
182                 inode->i_op = &ubifs_symlink_inode_operations;
183                 if (ui->data_len <= 0 || ui->data_len > UBIFS_MAX_INO_DATA) {
184                         err = 12;
185                         goto out_invalid;
186                 }
187                 ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
188                 if (!ui->data) {
189                         err = -ENOMEM;
190                         goto out_ino;
191                 }
192                 memcpy(ui->data, ino->data, ui->data_len);
193                 ((char *)ui->data)[ui->data_len] = '\0';
194                 break;
195         case S_IFBLK:
196         case S_IFCHR:
197         {
198                 dev_t rdev;
199                 union ubifs_dev_desc *dev;
200
201                 ui->data = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
202                 if (!ui->data) {
203                         err = -ENOMEM;
204                         goto out_ino;
205                 }
206
207                 dev = (union ubifs_dev_desc *)ino->data;
208                 if (ui->data_len == sizeof(dev->new))
209                         rdev = new_decode_dev(le32_to_cpu(dev->new));
210                 else if (ui->data_len == sizeof(dev->huge))
211                         rdev = huge_decode_dev(le64_to_cpu(dev->huge));
212                 else {
213                         err = 13;
214                         goto out_invalid;
215                 }
216                 memcpy(ui->data, ino->data, ui->data_len);
217                 inode->i_op = &ubifs_file_inode_operations;
218                 init_special_inode(inode, inode->i_mode, rdev);
219                 break;
220         }
221         case S_IFSOCK:
222         case S_IFIFO:
223                 inode->i_op = &ubifs_file_inode_operations;
224                 init_special_inode(inode, inode->i_mode, 0);
225                 if (ui->data_len != 0) {
226                         err = 14;
227                         goto out_invalid;
228                 }
229                 break;
230         default:
231                 err = 15;
232                 goto out_invalid;
233         }
234
235         kfree(ino);
236         ubifs_set_inode_flags(inode);
237         unlock_new_inode(inode);
238         return inode;
239
240 out_invalid:
241         ubifs_err("inode %lu validation failed, error %d", inode->i_ino, err);
242         dbg_dump_node(c, ino);
243         dbg_dump_inode(c, inode);
244         err = -EINVAL;
245 out_ino:
246         kfree(ino);
247 out:
248         ubifs_err("failed to read inode %lu, error %d", inode->i_ino, err);
249         iget_failed(inode);
250         return ERR_PTR(err);
251 }
252
253 static struct inode *ubifs_alloc_inode(struct super_block *sb)
254 {
255         struct ubifs_inode *ui;
256
257         ui = kmem_cache_alloc(ubifs_inode_slab, GFP_NOFS);
258         if (!ui)
259                 return NULL;
260
261         memset((void *)ui + sizeof(struct inode), 0,
262                sizeof(struct ubifs_inode) - sizeof(struct inode));
263         mutex_init(&ui->ui_mutex);
264         spin_lock_init(&ui->ui_lock);
265         return &ui->vfs_inode;
266 };
267
268 static void ubifs_destroy_inode(struct inode *inode)
269 {
270         struct ubifs_inode *ui = ubifs_inode(inode);
271
272         kfree(ui->data);
273         kmem_cache_free(ubifs_inode_slab, inode);
274 }
275
276 /*
277  * Note, Linux write-back code calls this without 'i_mutex'.
278  */
279 static int ubifs_write_inode(struct inode *inode, int wait)
280 {
281         int err = 0;
282         struct ubifs_info *c = inode->i_sb->s_fs_info;
283         struct ubifs_inode *ui = ubifs_inode(inode);
284
285         ubifs_assert(!ui->xattr);
286         if (is_bad_inode(inode))
287                 return 0;
288
289         mutex_lock(&ui->ui_mutex);
290         /*
291          * Due to races between write-back forced by budgeting
292          * (see 'sync_some_inodes()') and pdflush write-back, the inode may
293          * have already been synchronized, do not do this again. This might
294          * also happen if it was synchronized in an VFS operation, e.g.
295          * 'ubifs_link()'.
296          */
297         if (!ui->dirty) {
298                 mutex_unlock(&ui->ui_mutex);
299                 return 0;
300         }
301
302         /*
303          * As an optimization, do not write orphan inodes to the media just
304          * because this is not needed.
305          */
306         dbg_gen("inode %lu, mode %#x, nlink %u",
307                 inode->i_ino, (int)inode->i_mode, inode->i_nlink);
308         if (inode->i_nlink) {
309                 err = ubifs_jnl_write_inode(c, inode);
310                 if (err)
311                         ubifs_err("can't write inode %lu, error %d",
312                                   inode->i_ino, err);
313         }
314
315         ui->dirty = 0;
316         mutex_unlock(&ui->ui_mutex);
317         ubifs_release_dirty_inode_budget(c, ui);
318         return err;
319 }
320
321 static void ubifs_delete_inode(struct inode *inode)
322 {
323         int err;
324         struct ubifs_info *c = inode->i_sb->s_fs_info;
325         struct ubifs_inode *ui = ubifs_inode(inode);
326
327         if (ui->xattr)
328                 /*
329                  * Extended attribute inode deletions are fully handled in
330                  * 'ubifs_removexattr()'. These inodes are special and have
331                  * limited usage, so there is nothing to do here.
332                  */
333                 goto out;
334
335         dbg_gen("inode %lu, mode %#x", inode->i_ino, (int)inode->i_mode);
336         ubifs_assert(!atomic_read(&inode->i_count));
337         ubifs_assert(inode->i_nlink == 0);
338
339         truncate_inode_pages(&inode->i_data, 0);
340         if (is_bad_inode(inode))
341                 goto out;
342
343         ui->ui_size = inode->i_size = 0;
344         err = ubifs_jnl_delete_inode(c, inode);
345         if (err)
346                 /*
347                  * Worst case we have a lost orphan inode wasting space, so a
348                  * simple error message is ok here.
349                  */
350                 ubifs_err("can't delete inode %lu, error %d",
351                           inode->i_ino, err);
352
353 out:
354         if (ui->dirty)
355                 ubifs_release_dirty_inode_budget(c, ui);
356         clear_inode(inode);
357 }
358
359 static void ubifs_dirty_inode(struct inode *inode)
360 {
361         struct ubifs_inode *ui = ubifs_inode(inode);
362
363         ubifs_assert(mutex_is_locked(&ui->ui_mutex));
364         if (!ui->dirty) {
365                 ui->dirty = 1;
366                 dbg_gen("inode %lu",  inode->i_ino);
367         }
368 }
369
370 static int ubifs_statfs(struct dentry *dentry, struct kstatfs *buf)
371 {
372         struct ubifs_info *c = dentry->d_sb->s_fs_info;
373         unsigned long long free;
374
375         free = ubifs_budg_get_free_space(c);
376         dbg_gen("free space %lld bytes (%lld blocks)",
377                 free, free >> UBIFS_BLOCK_SHIFT);
378
379         buf->f_type = UBIFS_SUPER_MAGIC;
380         buf->f_bsize = UBIFS_BLOCK_SIZE;
381         buf->f_blocks = c->block_cnt;
382         buf->f_bfree = free >> UBIFS_BLOCK_SHIFT;
383         if (free > c->report_rp_size)
384                 buf->f_bavail = (free - c->report_rp_size) >> UBIFS_BLOCK_SHIFT;
385         else
386                 buf->f_bavail = 0;
387         buf->f_files = 0;
388         buf->f_ffree = 0;
389         buf->f_namelen = UBIFS_MAX_NLEN;
390
391         return 0;
392 }
393
394 static int ubifs_show_options(struct seq_file *s, struct vfsmount *mnt)
395 {
396         struct ubifs_info *c = mnt->mnt_sb->s_fs_info;
397
398         if (c->mount_opts.unmount_mode == 2)
399                 seq_printf(s, ",fast_unmount");
400         else if (c->mount_opts.unmount_mode == 1)
401                 seq_printf(s, ",norm_unmount");
402
403         return 0;
404 }
405
406 static int ubifs_sync_fs(struct super_block *sb, int wait)
407 {
408         struct ubifs_info *c = sb->s_fs_info;
409         int i, ret = 0, err;
410
411         if (c->jheads)
412                 for (i = 0; i < c->jhead_cnt; i++) {
413                         err = ubifs_wbuf_sync(&c->jheads[i].wbuf);
414                         if (err && !ret)
415                                 ret = err;
416                 }
417         /*
418          * We ought to call sync for c->ubi but it does not have one. If it had
419          * it would in turn call mtd->sync, however mtd operations are
420          * synchronous anyway, so we don't lose any sleep here.
421          */
422         return ret;
423 }
424
425 /**
426  * init_constants_early - initialize UBIFS constants.
427  * @c: UBIFS file-system description object
428  *
429  * This function initialize UBIFS constants which do not need the superblock to
430  * be read. It also checks that the UBI volume satisfies basic UBIFS
431  * requirements. Returns zero in case of success and a negative error code in
432  * case of failure.
433  */
434 static int init_constants_early(struct ubifs_info *c)
435 {
436         if (c->vi.corrupted) {
437                 ubifs_warn("UBI volume is corrupted - read-only mode");
438                 c->ro_media = 1;
439         }
440
441         if (c->di.ro_mode) {
442                 ubifs_msg("read-only UBI device");
443                 c->ro_media = 1;
444         }
445
446         if (c->vi.vol_type == UBI_STATIC_VOLUME) {
447                 ubifs_msg("static UBI volume - read-only mode");
448                 c->ro_media = 1;
449         }
450
451         c->leb_cnt = c->vi.size;
452         c->leb_size = c->vi.usable_leb_size;
453         c->half_leb_size = c->leb_size / 2;
454         c->min_io_size = c->di.min_io_size;
455         c->min_io_shift = fls(c->min_io_size) - 1;
456
457         if (c->leb_size < UBIFS_MIN_LEB_SZ) {
458                 ubifs_err("too small LEBs (%d bytes), min. is %d bytes",
459                           c->leb_size, UBIFS_MIN_LEB_SZ);
460                 return -EINVAL;
461         }
462
463         if (c->leb_cnt < UBIFS_MIN_LEB_CNT) {
464                 ubifs_err("too few LEBs (%d), min. is %d",
465                           c->leb_cnt, UBIFS_MIN_LEB_CNT);
466                 return -EINVAL;
467         }
468
469         if (!is_power_of_2(c->min_io_size)) {
470                 ubifs_err("bad min. I/O size %d", c->min_io_size);
471                 return -EINVAL;
472         }
473
474         /*
475          * UBIFS aligns all node to 8-byte boundary, so to make function in
476          * io.c simpler, assume minimum I/O unit size to be 8 bytes if it is
477          * less than 8.
478          */
479         if (c->min_io_size < 8) {
480                 c->min_io_size = 8;
481                 c->min_io_shift = 3;
482         }
483
484         c->ref_node_alsz = ALIGN(UBIFS_REF_NODE_SZ, c->min_io_size);
485         c->mst_node_alsz = ALIGN(UBIFS_MST_NODE_SZ, c->min_io_size);
486
487         /*
488          * Initialize node length ranges which are mostly needed for node
489          * length validation.
490          */
491         c->ranges[UBIFS_PAD_NODE].len  = UBIFS_PAD_NODE_SZ;
492         c->ranges[UBIFS_SB_NODE].len   = UBIFS_SB_NODE_SZ;
493         c->ranges[UBIFS_MST_NODE].len  = UBIFS_MST_NODE_SZ;
494         c->ranges[UBIFS_REF_NODE].len  = UBIFS_REF_NODE_SZ;
495         c->ranges[UBIFS_TRUN_NODE].len = UBIFS_TRUN_NODE_SZ;
496         c->ranges[UBIFS_CS_NODE].len   = UBIFS_CS_NODE_SZ;
497
498         c->ranges[UBIFS_INO_NODE].min_len  = UBIFS_INO_NODE_SZ;
499         c->ranges[UBIFS_INO_NODE].max_len  = UBIFS_MAX_INO_NODE_SZ;
500         c->ranges[UBIFS_ORPH_NODE].min_len =
501                                 UBIFS_ORPH_NODE_SZ + sizeof(__le64);
502         c->ranges[UBIFS_ORPH_NODE].max_len = c->leb_size;
503         c->ranges[UBIFS_DENT_NODE].min_len = UBIFS_DENT_NODE_SZ;
504         c->ranges[UBIFS_DENT_NODE].max_len = UBIFS_MAX_DENT_NODE_SZ;
505         c->ranges[UBIFS_XENT_NODE].min_len = UBIFS_XENT_NODE_SZ;
506         c->ranges[UBIFS_XENT_NODE].max_len = UBIFS_MAX_XENT_NODE_SZ;
507         c->ranges[UBIFS_DATA_NODE].min_len = UBIFS_DATA_NODE_SZ;
508         c->ranges[UBIFS_DATA_NODE].max_len = UBIFS_MAX_DATA_NODE_SZ;
509         /*
510          * Minimum indexing node size is amended later when superblock is
511          * read and the key length is known.
512          */
513         c->ranges[UBIFS_IDX_NODE].min_len = UBIFS_IDX_NODE_SZ + UBIFS_BRANCH_SZ;
514         /*
515          * Maximum indexing node size is amended later when superblock is
516          * read and the fanout is known.
517          */
518         c->ranges[UBIFS_IDX_NODE].max_len = INT_MAX;
519
520         /*
521          * Initialize dead and dark LEB space watermarks.
522          *
523          * Dead space is the space which cannot be used. Its watermark is
524          * equivalent to min. I/O unit or minimum node size if it is greater
525          * then min. I/O unit.
526          *
527          * Dark space is the space which might be used, or might not, depending
528          * on which node should be written to the LEB. Its watermark is
529          * equivalent to maximum UBIFS node size.
530          */
531         c->dead_wm = ALIGN(MIN_WRITE_SZ, c->min_io_size);
532         c->dark_wm = ALIGN(UBIFS_MAX_NODE_SZ, c->min_io_size);
533
534         return 0;
535 }
536
537 /**
538  * bud_wbuf_callback - bud LEB write-buffer synchronization call-back.
539  * @c: UBIFS file-system description object
540  * @lnum: LEB the write-buffer was synchronized to
541  * @free: how many free bytes left in this LEB
542  * @pad: how many bytes were padded
543  *
544  * This is a callback function which is called by the I/O unit when the
545  * write-buffer is synchronized. We need this to correctly maintain space
546  * accounting in bud logical eraseblocks. This function returns zero in case of
547  * success and a negative error code in case of failure.
548  *
549  * This function actually belongs to the journal, but we keep it here because
550  * we want to keep it static.
551  */
552 static int bud_wbuf_callback(struct ubifs_info *c, int lnum, int free, int pad)
553 {
554         return ubifs_update_one_lp(c, lnum, free, pad, 0, 0);
555 }
556
557 /*
558  * init_constants_late - initialize UBIFS constants.
559  * @c: UBIFS file-system description object
560  *
561  * This is a helper function which initializes various UBIFS constants after
562  * the superblock has been read. It also checks various UBIFS parameters and
563  * makes sure they are all right. Returns zero in case of success and a
564  * negative error code in case of failure.
565  */
566 static int init_constants_late(struct ubifs_info *c)
567 {
568         int tmp, err;
569         uint64_t tmp64;
570
571         c->main_bytes = (long long)c->main_lebs * c->leb_size;
572         c->max_znode_sz = sizeof(struct ubifs_znode) +
573                                 c->fanout * sizeof(struct ubifs_zbranch);
574
575         tmp = ubifs_idx_node_sz(c, 1);
576         c->ranges[UBIFS_IDX_NODE].min_len = tmp;
577         c->min_idx_node_sz = ALIGN(tmp, 8);
578
579         tmp = ubifs_idx_node_sz(c, c->fanout);
580         c->ranges[UBIFS_IDX_NODE].max_len = tmp;
581         c->max_idx_node_sz = ALIGN(tmp, 8);
582
583         /* Make sure LEB size is large enough to fit full commit */
584         tmp = UBIFS_CS_NODE_SZ + UBIFS_REF_NODE_SZ * c->jhead_cnt;
585         tmp = ALIGN(tmp, c->min_io_size);
586         if (tmp > c->leb_size) {
587                 dbg_err("too small LEB size %d, at least %d needed",
588                         c->leb_size, tmp);
589                 return -EINVAL;
590         }
591
592         /*
593          * Make sure that the log is large enough to fit reference nodes for
594          * all buds plus one reserved LEB.
595          */
596         tmp64 = c->max_bud_bytes;
597         tmp = do_div(tmp64, c->leb_size);
598         c->max_bud_cnt = tmp64 + !!tmp;
599         tmp = (c->ref_node_alsz * c->max_bud_cnt + c->leb_size - 1);
600         tmp /= c->leb_size;
601         tmp += 1;
602         if (c->log_lebs < tmp) {
603                 dbg_err("too small log %d LEBs, required min. %d LEBs",
604                         c->log_lebs, tmp);
605                 return -EINVAL;
606         }
607
608         /*
609          * When budgeting we assume worst-case scenarios when the pages are not
610          * be compressed and direntries are of the maximum size.
611          *
612          * Note, data, which may be stored in inodes is budgeted separately, so
613          * it is not included into 'c->inode_budget'.
614          */
615         c->page_budget = UBIFS_MAX_DATA_NODE_SZ * UBIFS_BLOCKS_PER_PAGE;
616         c->inode_budget = UBIFS_INO_NODE_SZ;
617         c->dent_budget = UBIFS_MAX_DENT_NODE_SZ;
618
619         /*
620          * When the amount of flash space used by buds becomes
621          * 'c->max_bud_bytes', UBIFS just blocks all writers and starts commit.
622          * The writers are unblocked when the commit is finished. To avoid
623          * writers to be blocked UBIFS initiates background commit in advance,
624          * when number of bud bytes becomes above the limit defined below.
625          */
626         c->bg_bud_bytes = (c->max_bud_bytes * 13) >> 4;
627
628         /*
629          * Ensure minimum journal size. All the bytes in the journal heads are
630          * considered to be used, when calculating the current journal usage.
631          * Consequently, if the journal is too small, UBIFS will treat it as
632          * always full.
633          */
634         tmp64 = (uint64_t)(c->jhead_cnt + 1) * c->leb_size + 1;
635         if (c->bg_bud_bytes < tmp64)
636                 c->bg_bud_bytes = tmp64;
637         if (c->max_bud_bytes < tmp64 + c->leb_size)
638                 c->max_bud_bytes = tmp64 + c->leb_size;
639
640         err = ubifs_calc_lpt_geom(c);
641         if (err)
642                 return err;
643
644         c->min_idx_lebs = ubifs_calc_min_idx_lebs(c);
645
646         /*
647          * Calculate total amount of FS blocks. This number is not used
648          * internally because it does not make much sense for UBIFS, but it is
649          * necessary to report something for the 'statfs()' call.
650          *
651          * Subtract the LEB reserved for GC and the LEB which is reserved for
652          * deletions.
653          *
654          * Review 'ubifs_calc_available()' if changing this calculation.
655          */
656         tmp64 = c->main_lebs - 2;
657         tmp64 *= (uint64_t)c->leb_size - c->dark_wm;
658         tmp64 = ubifs_reported_space(c, tmp64);
659         c->block_cnt = tmp64 >> UBIFS_BLOCK_SHIFT;
660
661         return 0;
662 }
663
664 /**
665  * take_gc_lnum - reserve GC LEB.
666  * @c: UBIFS file-system description object
667  *
668  * This function ensures that the LEB reserved for garbage collection is
669  * unmapped and is marked as "taken" in lprops. We also have to set free space
670  * to LEB size and dirty space to zero, because lprops may contain out-of-date
671  * information if the file-system was un-mounted before it has been committed.
672  * This function returns zero in case of success and a negative error code in
673  * case of failure.
674  */
675 static int take_gc_lnum(struct ubifs_info *c)
676 {
677         int err;
678
679         if (c->gc_lnum == -1) {
680                 ubifs_err("no LEB for GC");
681                 return -EINVAL;
682         }
683
684         err = ubifs_leb_unmap(c, c->gc_lnum);
685         if (err)
686                 return err;
687
688         /* And we have to tell lprops that this LEB is taken */
689         err = ubifs_change_one_lp(c, c->gc_lnum, c->leb_size, 0,
690                                   LPROPS_TAKEN, 0, 0);
691         return err;
692 }
693
694 /**
695  * alloc_wbufs - allocate write-buffers.
696  * @c: UBIFS file-system description object
697  *
698  * This helper function allocates and initializes UBIFS write-buffers. Returns
699  * zero in case of success and %-ENOMEM in case of failure.
700  */
701 static int alloc_wbufs(struct ubifs_info *c)
702 {
703         int i, err;
704
705         c->jheads = kzalloc(c->jhead_cnt * sizeof(struct ubifs_jhead),
706                            GFP_KERNEL);
707         if (!c->jheads)
708                 return -ENOMEM;
709
710         /* Initialize journal heads */
711         for (i = 0; i < c->jhead_cnt; i++) {
712                 INIT_LIST_HEAD(&c->jheads[i].buds_list);
713                 err = ubifs_wbuf_init(c, &c->jheads[i].wbuf);
714                 if (err)
715                         return err;
716
717                 c->jheads[i].wbuf.sync_callback = &bud_wbuf_callback;
718                 c->jheads[i].wbuf.jhead = i;
719         }
720
721         c->jheads[BASEHD].wbuf.dtype = UBI_SHORTTERM;
722         /*
723          * Garbage Collector head likely contains long-term data and
724          * does not need to be synchronized by timer.
725          */
726         c->jheads[GCHD].wbuf.dtype = UBI_LONGTERM;
727         c->jheads[GCHD].wbuf.timeout = 0;
728
729         return 0;
730 }
731
732 /**
733  * free_wbufs - free write-buffers.
734  * @c: UBIFS file-system description object
735  */
736 static void free_wbufs(struct ubifs_info *c)
737 {
738         int i;
739
740         if (c->jheads) {
741                 for (i = 0; i < c->jhead_cnt; i++) {
742                         kfree(c->jheads[i].wbuf.buf);
743                         kfree(c->jheads[i].wbuf.inodes);
744                 }
745                 kfree(c->jheads);
746                 c->jheads = NULL;
747         }
748 }
749
750 /**
751  * free_orphans - free orphans.
752  * @c: UBIFS file-system description object
753  */
754 static void free_orphans(struct ubifs_info *c)
755 {
756         struct ubifs_orphan *orph;
757
758         while (c->orph_dnext) {
759                 orph = c->orph_dnext;
760                 c->orph_dnext = orph->dnext;
761                 list_del(&orph->list);
762                 kfree(orph);
763         }
764
765         while (!list_empty(&c->orph_list)) {
766                 orph = list_entry(c->orph_list.next, struct ubifs_orphan, list);
767                 list_del(&orph->list);
768                 kfree(orph);
769                 dbg_err("orphan list not empty at unmount");
770         }
771
772         vfree(c->orph_buf);
773         c->orph_buf = NULL;
774 }
775
776 /**
777  * free_buds - free per-bud objects.
778  * @c: UBIFS file-system description object
779  */
780 static void free_buds(struct ubifs_info *c)
781 {
782         struct rb_node *this = c->buds.rb_node;
783         struct ubifs_bud *bud;
784
785         while (this) {
786                 if (this->rb_left)
787                         this = this->rb_left;
788                 else if (this->rb_right)
789                         this = this->rb_right;
790                 else {
791                         bud = rb_entry(this, struct ubifs_bud, rb);
792                         this = rb_parent(this);
793                         if (this) {
794                                 if (this->rb_left == &bud->rb)
795                                         this->rb_left = NULL;
796                                 else
797                                         this->rb_right = NULL;
798                         }
799                         kfree(bud);
800                 }
801         }
802 }
803
804 /**
805  * check_volume_empty - check if the UBI volume is empty.
806  * @c: UBIFS file-system description object
807  *
808  * This function checks if the UBIFS volume is empty by looking if its LEBs are
809  * mapped or not. The result of checking is stored in the @c->empty variable.
810  * Returns zero in case of success and a negative error code in case of
811  * failure.
812  */
813 static int check_volume_empty(struct ubifs_info *c)
814 {
815         int lnum, err;
816
817         c->empty = 1;
818         for (lnum = 0; lnum < c->leb_cnt; lnum++) {
819                 err = ubi_is_mapped(c->ubi, lnum);
820                 if (unlikely(err < 0))
821                         return err;
822                 if (err == 1) {
823                         c->empty = 0;
824                         break;
825                 }
826
827                 cond_resched();
828         }
829
830         return 0;
831 }
832
833 /*
834  * UBIFS mount options.
835  *
836  * Opt_fast_unmount: do not run a journal commit before un-mounting
837  * Opt_norm_unmount: run a journal commit before un-mounting
838  * Opt_err: just end of array marker
839  */
840 enum {
841         Opt_fast_unmount,
842         Opt_norm_unmount,
843         Opt_err,
844 };
845
846 static match_table_t tokens = {
847         {Opt_fast_unmount, "fast_unmount"},
848         {Opt_norm_unmount, "norm_unmount"},
849         {Opt_err, NULL},
850 };
851
852 /**
853  * ubifs_parse_options - parse mount parameters.
854  * @c: UBIFS file-system description object
855  * @options: parameters to parse
856  * @is_remount: non-zero if this is FS re-mount
857  *
858  * This function parses UBIFS mount options and returns zero in case success
859  * and a negative error code in case of failure.
860  */
861 static int ubifs_parse_options(struct ubifs_info *c, char *options,
862                                int is_remount)
863 {
864         char *p;
865         substring_t args[MAX_OPT_ARGS];
866
867         if (!options)
868                 return 0;
869
870         while ((p = strsep(&options, ","))) {
871                 int token;
872
873                 if (!*p)
874                         continue;
875
876                 token = match_token(p, tokens, args);
877                 switch (token) {
878                 case Opt_fast_unmount:
879                         c->mount_opts.unmount_mode = 2;
880                         c->fast_unmount = 1;
881                         break;
882                 case Opt_norm_unmount:
883                         c->mount_opts.unmount_mode = 1;
884                         c->fast_unmount = 0;
885                         break;
886                 default:
887                         ubifs_err("unrecognized mount option \"%s\" "
888                                   "or missing value", p);
889                         return -EINVAL;
890                 }
891         }
892
893         return 0;
894 }
895
896 /**
897  * destroy_journal - destroy journal data structures.
898  * @c: UBIFS file-system description object
899  *
900  * This function destroys journal data structures including those that may have
901  * been created by recovery functions.
902  */
903 static void destroy_journal(struct ubifs_info *c)
904 {
905         while (!list_empty(&c->unclean_leb_list)) {
906                 struct ubifs_unclean_leb *ucleb;
907
908                 ucleb = list_entry(c->unclean_leb_list.next,
909                                    struct ubifs_unclean_leb, list);
910                 list_del(&ucleb->list);
911                 kfree(ucleb);
912         }
913         while (!list_empty(&c->old_buds)) {
914                 struct ubifs_bud *bud;
915
916                 bud = list_entry(c->old_buds.next, struct ubifs_bud, list);
917                 list_del(&bud->list);
918                 kfree(bud);
919         }
920         ubifs_destroy_idx_gc(c);
921         ubifs_destroy_size_tree(c);
922         ubifs_tnc_close(c);
923         free_buds(c);
924 }
925
926 /**
927  * mount_ubifs - mount UBIFS file-system.
928  * @c: UBIFS file-system description object
929  *
930  * This function mounts UBIFS file system. Returns zero in case of success and
931  * a negative error code in case of failure.
932  *
933  * Note, the function does not de-allocate resources it it fails half way
934  * through, and the caller has to do this instead.
935  */
936 static int mount_ubifs(struct ubifs_info *c)
937 {
938         struct super_block *sb = c->vfs_sb;
939         int err, mounted_read_only = (sb->s_flags & MS_RDONLY);
940         long long x;
941         size_t sz;
942
943         err = init_constants_early(c);
944         if (err)
945                 return err;
946
947 #ifdef CONFIG_UBIFS_FS_DEBUG
948         c->dbg_buf = vmalloc(c->leb_size);
949         if (!c->dbg_buf)
950                 return -ENOMEM;
951 #endif
952
953         err = check_volume_empty(c);
954         if (err)
955                 goto out_free;
956
957         if (c->empty && (mounted_read_only || c->ro_media)) {
958                 /*
959                  * This UBI volume is empty, and read-only, or the file system
960                  * is mounted read-only - we cannot format it.
961                  */
962                 ubifs_err("can't format empty UBI volume: read-only %s",
963                           c->ro_media ? "UBI volume" : "mount");
964                 err = -EROFS;
965                 goto out_free;
966         }
967
968         if (c->ro_media && !mounted_read_only) {
969                 ubifs_err("cannot mount read-write - read-only media");
970                 err = -EROFS;
971                 goto out_free;
972         }
973
974         /*
975          * The requirement for the buffer is that it should fit indexing B-tree
976          * height amount of integers. We assume the height if the TNC tree will
977          * never exceed 64.
978          */
979         err = -ENOMEM;
980         c->bottom_up_buf = kmalloc(BOTTOM_UP_HEIGHT * sizeof(int), GFP_KERNEL);
981         if (!c->bottom_up_buf)
982                 goto out_free;
983
984         c->sbuf = vmalloc(c->leb_size);
985         if (!c->sbuf)
986                 goto out_free;
987
988         if (!mounted_read_only) {
989                 c->ileb_buf = vmalloc(c->leb_size);
990                 if (!c->ileb_buf)
991                         goto out_free;
992         }
993
994         err = ubifs_read_superblock(c);
995         if (err)
996                 goto out_free;
997
998         /*
999          * Make sure the compressor which is set as the default on in the
1000          * superblock was actually compiled in.
1001          */
1002         if (!ubifs_compr_present(c->default_compr)) {
1003                 ubifs_warn("'%s' compressor is set by superblock, but not "
1004                            "compiled in", ubifs_compr_name(c->default_compr));
1005                 c->default_compr = UBIFS_COMPR_NONE;
1006         }
1007
1008         dbg_failure_mode_registration(c);
1009
1010         err = init_constants_late(c);
1011         if (err)
1012                 goto out_dereg;
1013
1014         sz = ALIGN(c->max_idx_node_sz, c->min_io_size);
1015         sz = ALIGN(sz + c->max_idx_node_sz, c->min_io_size);
1016         c->cbuf = kmalloc(sz, GFP_NOFS);
1017         if (!c->cbuf) {
1018                 err = -ENOMEM;
1019                 goto out_dereg;
1020         }
1021
1022         if (!mounted_read_only) {
1023                 err = alloc_wbufs(c);
1024                 if (err)
1025                         goto out_cbuf;
1026
1027                 /* Create background thread */
1028                 sprintf(c->bgt_name, BGT_NAME_PATTERN, c->vi.ubi_num,
1029                         c->vi.vol_id);
1030                 c->bgt = kthread_create(ubifs_bg_thread, c, c->bgt_name);
1031                 if (!c->bgt)
1032                         c->bgt = ERR_PTR(-EINVAL);
1033                 if (IS_ERR(c->bgt)) {
1034                         err = PTR_ERR(c->bgt);
1035                         c->bgt = NULL;
1036                         ubifs_err("cannot spawn \"%s\", error %d",
1037                                   c->bgt_name, err);
1038                         goto out_wbufs;
1039                 }
1040                 wake_up_process(c->bgt);
1041         }
1042
1043         err = ubifs_read_master(c);
1044         if (err)
1045                 goto out_master;
1046
1047         if ((c->mst_node->flags & cpu_to_le32(UBIFS_MST_DIRTY)) != 0) {
1048                 ubifs_msg("recovery needed");
1049                 c->need_recovery = 1;
1050                 if (!mounted_read_only) {
1051                         err = ubifs_recover_inl_heads(c, c->sbuf);
1052                         if (err)
1053                                 goto out_master;
1054                 }
1055         } else if (!mounted_read_only) {
1056                 /*
1057                  * Set the "dirty" flag so that if we reboot uncleanly we
1058                  * will notice this immediately on the next mount.
1059                  */
1060                 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY);
1061                 err = ubifs_write_master(c);
1062                 if (err)
1063                         goto out_master;
1064         }
1065
1066         err = ubifs_lpt_init(c, 1, !mounted_read_only);
1067         if (err)
1068                 goto out_lpt;
1069
1070         err = dbg_check_idx_size(c, c->old_idx_sz);
1071         if (err)
1072                 goto out_lpt;
1073
1074         err = ubifs_replay_journal(c);
1075         if (err)
1076                 goto out_journal;
1077
1078         err = ubifs_mount_orphans(c, c->need_recovery, mounted_read_only);
1079         if (err)
1080                 goto out_orphans;
1081
1082         if (!mounted_read_only) {
1083                 int lnum;
1084
1085                 /* Check for enough free space */
1086                 if (ubifs_calc_available(c, c->min_idx_lebs) <= 0) {
1087                         ubifs_err("insufficient available space");
1088                         err = -EINVAL;
1089                         goto out_orphans;
1090                 }
1091
1092                 /* Check for enough log space */
1093                 lnum = c->lhead_lnum + 1;
1094                 if (lnum >= UBIFS_LOG_LNUM + c->log_lebs)
1095                         lnum = UBIFS_LOG_LNUM;
1096                 if (lnum == c->ltail_lnum) {
1097                         err = ubifs_consolidate_log(c);
1098                         if (err)
1099                                 goto out_orphans;
1100                 }
1101
1102                 if (c->need_recovery) {
1103                         err = ubifs_recover_size(c);
1104                         if (err)
1105                                 goto out_orphans;
1106                         err = ubifs_rcvry_gc_commit(c);
1107                 } else
1108                         err = take_gc_lnum(c);
1109                 if (err)
1110                         goto out_orphans;
1111
1112                 err = dbg_check_lprops(c);
1113                 if (err)
1114                         goto out_orphans;
1115         } else if (c->need_recovery) {
1116                 err = ubifs_recover_size(c);
1117                 if (err)
1118                         goto out_orphans;
1119         }
1120
1121         spin_lock(&ubifs_infos_lock);
1122         list_add_tail(&c->infos_list, &ubifs_infos);
1123         spin_unlock(&ubifs_infos_lock);
1124
1125         if (c->need_recovery) {
1126                 if (mounted_read_only)
1127                         ubifs_msg("recovery deferred");
1128                 else {
1129                         c->need_recovery = 0;
1130                         ubifs_msg("recovery completed");
1131                 }
1132         }
1133
1134         err = dbg_check_filesystem(c);
1135         if (err)
1136                 goto out_infos;
1137
1138         ubifs_msg("mounted UBI device %d, volume %d, name \"%s\"",
1139                   c->vi.ubi_num, c->vi.vol_id, c->vi.name);
1140         if (mounted_read_only)
1141                 ubifs_msg("mounted read-only");
1142         x = (long long)c->main_lebs * c->leb_size;
1143         ubifs_msg("file system size: %lld bytes (%lld KiB, %lld MiB, %d LEBs)",
1144                   x, x >> 10, x >> 20, c->main_lebs);
1145         x = (long long)c->log_lebs * c->leb_size + c->max_bud_bytes;
1146         ubifs_msg("journal size: %lld bytes (%lld KiB, %lld MiB, %d LEBs)",
1147                   x, x >> 10, x >> 20, c->log_lebs + c->max_bud_cnt);
1148         ubifs_msg("default compressor: %s", ubifs_compr_name(c->default_compr));
1149         ubifs_msg("media format %d, latest format %d",
1150                   c->fmt_version, UBIFS_FORMAT_VERSION);
1151
1152         dbg_msg("compiled on:         " __DATE__ " at " __TIME__);
1153         dbg_msg("min. I/O unit size:  %d bytes", c->min_io_size);
1154         dbg_msg("LEB size:            %d bytes (%d KiB)",
1155                 c->leb_size, c->leb_size / 1024);
1156         dbg_msg("data journal heads:  %d",
1157                 c->jhead_cnt - NONDATA_JHEADS_CNT);
1158         dbg_msg("UUID:                %02X%02X%02X%02X-%02X%02X"
1159                "-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
1160                c->uuid[0], c->uuid[1], c->uuid[2], c->uuid[3],
1161                c->uuid[4], c->uuid[5], c->uuid[6], c->uuid[7],
1162                c->uuid[8], c->uuid[9], c->uuid[10], c->uuid[11],
1163                c->uuid[12], c->uuid[13], c->uuid[14], c->uuid[15]);
1164         dbg_msg("fast unmount:        %d", c->fast_unmount);
1165         dbg_msg("big_lpt              %d", c->big_lpt);
1166         dbg_msg("log LEBs:            %d (%d - %d)",
1167                 c->log_lebs, UBIFS_LOG_LNUM, c->log_last);
1168         dbg_msg("LPT area LEBs:       %d (%d - %d)",
1169                 c->lpt_lebs, c->lpt_first, c->lpt_last);
1170         dbg_msg("orphan area LEBs:    %d (%d - %d)",
1171                 c->orph_lebs, c->orph_first, c->orph_last);
1172         dbg_msg("main area LEBs:      %d (%d - %d)",
1173                 c->main_lebs, c->main_first, c->leb_cnt - 1);
1174         dbg_msg("index LEBs:          %d", c->lst.idx_lebs);
1175         dbg_msg("total index bytes:   %lld (%lld KiB, %lld MiB)",
1176                 c->old_idx_sz, c->old_idx_sz >> 10, c->old_idx_sz >> 20);
1177         dbg_msg("key hash type:       %d", c->key_hash_type);
1178         dbg_msg("tree fanout:         %d", c->fanout);
1179         dbg_msg("reserved GC LEB:     %d", c->gc_lnum);
1180         dbg_msg("first main LEB:      %d", c->main_first);
1181         dbg_msg("dead watermark:      %d", c->dead_wm);
1182         dbg_msg("dark watermark:      %d", c->dark_wm);
1183         x = (long long)c->main_lebs * c->dark_wm;
1184         dbg_msg("max. dark space:     %lld (%lld KiB, %lld MiB)",
1185                 x, x >> 10, x >> 20);
1186         dbg_msg("maximum bud bytes:   %lld (%lld KiB, %lld MiB)",
1187                 c->max_bud_bytes, c->max_bud_bytes >> 10,
1188                 c->max_bud_bytes >> 20);
1189         dbg_msg("BG commit bud bytes: %lld (%lld KiB, %lld MiB)",
1190                 c->bg_bud_bytes, c->bg_bud_bytes >> 10,
1191                 c->bg_bud_bytes >> 20);
1192         dbg_msg("current bud bytes    %lld (%lld KiB, %lld MiB)",
1193                 c->bud_bytes, c->bud_bytes >> 10, c->bud_bytes >> 20);
1194         dbg_msg("max. seq. number:    %llu", c->max_sqnum);
1195         dbg_msg("commit number:       %llu", c->cmt_no);
1196
1197         return 0;
1198
1199 out_infos:
1200         spin_lock(&ubifs_infos_lock);
1201         list_del(&c->infos_list);
1202         spin_unlock(&ubifs_infos_lock);
1203 out_orphans:
1204         free_orphans(c);
1205 out_journal:
1206         destroy_journal(c);
1207 out_lpt:
1208         ubifs_lpt_free(c, 0);
1209 out_master:
1210         kfree(c->mst_node);
1211         kfree(c->rcvrd_mst_node);
1212         if (c->bgt)
1213                 kthread_stop(c->bgt);
1214 out_wbufs:
1215         free_wbufs(c);
1216 out_cbuf:
1217         kfree(c->cbuf);
1218 out_dereg:
1219         dbg_failure_mode_deregistration(c);
1220 out_free:
1221         vfree(c->ileb_buf);
1222         vfree(c->sbuf);
1223         kfree(c->bottom_up_buf);
1224         UBIFS_DBG(vfree(c->dbg_buf));
1225         return err;
1226 }
1227
1228 /**
1229  * ubifs_umount - un-mount UBIFS file-system.
1230  * @c: UBIFS file-system description object
1231  *
1232  * Note, this function is called to free allocated resourced when un-mounting,
1233  * as well as free resources when an error occurred while we were half way
1234  * through mounting (error path cleanup function). So it has to make sure the
1235  * resource was actually allocated before freeing it.
1236  */
1237 static void ubifs_umount(struct ubifs_info *c)
1238 {
1239         dbg_gen("un-mounting UBI device %d, volume %d", c->vi.ubi_num,
1240                 c->vi.vol_id);
1241
1242         spin_lock(&ubifs_infos_lock);
1243         list_del(&c->infos_list);
1244         spin_unlock(&ubifs_infos_lock);
1245
1246         if (c->bgt)
1247                 kthread_stop(c->bgt);
1248
1249         destroy_journal(c);
1250         free_wbufs(c);
1251         free_orphans(c);
1252         ubifs_lpt_free(c, 0);
1253
1254         kfree(c->cbuf);
1255         kfree(c->rcvrd_mst_node);
1256         kfree(c->mst_node);
1257         vfree(c->sbuf);
1258         kfree(c->bottom_up_buf);
1259         UBIFS_DBG(vfree(c->dbg_buf));
1260         vfree(c->ileb_buf);
1261         dbg_failure_mode_deregistration(c);
1262 }
1263
1264 /**
1265  * ubifs_remount_rw - re-mount in read-write mode.
1266  * @c: UBIFS file-system description object
1267  *
1268  * UBIFS avoids allocating many unnecessary resources when mounted in read-only
1269  * mode. This function allocates the needed resources and re-mounts UBIFS in
1270  * read-write mode.
1271  */
1272 static int ubifs_remount_rw(struct ubifs_info *c)
1273 {
1274         int err, lnum;
1275
1276         if (c->ro_media)
1277                 return -EINVAL;
1278
1279         mutex_lock(&c->umount_mutex);
1280         c->remounting_rw = 1;
1281
1282         /* Check for enough free space */
1283         if (ubifs_calc_available(c, c->min_idx_lebs) <= 0) {
1284                 ubifs_err("insufficient available space");
1285                 err = -EINVAL;
1286                 goto out;
1287         }
1288
1289         if (c->old_leb_cnt != c->leb_cnt) {
1290                 struct ubifs_sb_node *sup;
1291
1292                 sup = ubifs_read_sb_node(c);
1293                 if (IS_ERR(sup)) {
1294                         err = PTR_ERR(sup);
1295                         goto out;
1296                 }
1297                 sup->leb_cnt = cpu_to_le32(c->leb_cnt);
1298                 err = ubifs_write_sb_node(c, sup);
1299                 if (err)
1300                         goto out;
1301         }
1302
1303         if (c->need_recovery) {
1304                 ubifs_msg("completing deferred recovery");
1305                 err = ubifs_write_rcvrd_mst_node(c);
1306                 if (err)
1307                         goto out;
1308                 err = ubifs_recover_size(c);
1309                 if (err)
1310                         goto out;
1311                 err = ubifs_clean_lebs(c, c->sbuf);
1312                 if (err)
1313                         goto out;
1314                 err = ubifs_recover_inl_heads(c, c->sbuf);
1315                 if (err)
1316                         goto out;
1317         }
1318
1319         if (!(c->mst_node->flags & cpu_to_le32(UBIFS_MST_DIRTY))) {
1320                 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY);
1321                 err = ubifs_write_master(c);
1322                 if (err)
1323                         goto out;
1324         }
1325
1326         c->ileb_buf = vmalloc(c->leb_size);
1327         if (!c->ileb_buf) {
1328                 err = -ENOMEM;
1329                 goto out;
1330         }
1331
1332         err = ubifs_lpt_init(c, 0, 1);
1333         if (err)
1334                 goto out;
1335
1336         err = alloc_wbufs(c);
1337         if (err)
1338                 goto out;
1339
1340         ubifs_create_buds_lists(c);
1341
1342         /* Create background thread */
1343         c->bgt = kthread_create(ubifs_bg_thread, c, c->bgt_name);
1344         if (!c->bgt)
1345                 c->bgt = ERR_PTR(-EINVAL);
1346         if (IS_ERR(c->bgt)) {
1347                 err = PTR_ERR(c->bgt);
1348                 c->bgt = NULL;
1349                 ubifs_err("cannot spawn \"%s\", error %d",
1350                           c->bgt_name, err);
1351                 return err;
1352         }
1353         wake_up_process(c->bgt);
1354
1355         c->orph_buf = vmalloc(c->leb_size);
1356         if (!c->orph_buf)
1357                 return -ENOMEM;
1358
1359         /* Check for enough log space */
1360         lnum = c->lhead_lnum + 1;
1361         if (lnum >= UBIFS_LOG_LNUM + c->log_lebs)
1362                 lnum = UBIFS_LOG_LNUM;
1363         if (lnum == c->ltail_lnum) {
1364                 err = ubifs_consolidate_log(c);
1365                 if (err)
1366                         goto out;
1367         }
1368
1369         if (c->need_recovery)
1370                 err = ubifs_rcvry_gc_commit(c);
1371         else
1372                 err = take_gc_lnum(c);
1373         if (err)
1374                 goto out;
1375
1376         if (c->need_recovery) {
1377                 c->need_recovery = 0;
1378                 ubifs_msg("deferred recovery completed");
1379         }
1380
1381         dbg_gen("re-mounted read-write");
1382         c->vfs_sb->s_flags &= ~MS_RDONLY;
1383         c->remounting_rw = 0;
1384         mutex_unlock(&c->umount_mutex);
1385         return 0;
1386
1387 out:
1388         vfree(c->orph_buf);
1389         c->orph_buf = NULL;
1390         if (c->bgt) {
1391                 kthread_stop(c->bgt);
1392                 c->bgt = NULL;
1393         }
1394         free_wbufs(c);
1395         vfree(c->ileb_buf);
1396         c->ileb_buf = NULL;
1397         ubifs_lpt_free(c, 1);
1398         c->remounting_rw = 0;
1399         mutex_unlock(&c->umount_mutex);
1400         return err;
1401 }
1402
1403 /**
1404  * commit_on_unmount - commit the journal when un-mounting.
1405  * @c: UBIFS file-system description object
1406  *
1407  * This function is called during un-mounting and it commits the journal unless
1408  * the "fast unmount" mode is enabled. It also avoids committing the journal if
1409  * it contains too few data.
1410  *
1411  * Sometimes recovery requires the journal to be committed at least once, and
1412  * this function takes care about this.
1413  */
1414 static void commit_on_unmount(struct ubifs_info *c)
1415 {
1416         if (!c->fast_unmount) {
1417                 long long bud_bytes;
1418
1419                 spin_lock(&c->buds_lock);
1420                 bud_bytes = c->bud_bytes;
1421                 spin_unlock(&c->buds_lock);
1422                 if (bud_bytes > c->leb_size)
1423                         ubifs_run_commit(c);
1424         }
1425 }
1426
1427 /**
1428  * ubifs_remount_ro - re-mount in read-only mode.
1429  * @c: UBIFS file-system description object
1430  *
1431  * We rely on VFS to have stopped writing. Possibly the background thread could
1432  * be running a commit, however kthread_stop will wait in that case.
1433  */
1434 static void ubifs_remount_ro(struct ubifs_info *c)
1435 {
1436         int i, err;
1437
1438         ubifs_assert(!c->need_recovery);
1439         commit_on_unmount(c);
1440
1441         mutex_lock(&c->umount_mutex);
1442         if (c->bgt) {
1443                 kthread_stop(c->bgt);
1444                 c->bgt = NULL;
1445         }
1446
1447         for (i = 0; i < c->jhead_cnt; i++) {
1448                 ubifs_wbuf_sync(&c->jheads[i].wbuf);
1449                 del_timer_sync(&c->jheads[i].wbuf.timer);
1450         }
1451
1452         if (!c->ro_media) {
1453                 c->mst_node->flags &= ~cpu_to_le32(UBIFS_MST_DIRTY);
1454                 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_NO_ORPHS);
1455                 c->mst_node->gc_lnum = cpu_to_le32(c->gc_lnum);
1456                 err = ubifs_write_master(c);
1457                 if (err)
1458                         ubifs_ro_mode(c, err);
1459         }
1460
1461         ubifs_destroy_idx_gc(c);
1462         free_wbufs(c);
1463         vfree(c->orph_buf);
1464         c->orph_buf = NULL;
1465         vfree(c->ileb_buf);
1466         c->ileb_buf = NULL;
1467         ubifs_lpt_free(c, 1);
1468         mutex_unlock(&c->umount_mutex);
1469 }
1470
1471 static void ubifs_put_super(struct super_block *sb)
1472 {
1473         int i;
1474         struct ubifs_info *c = sb->s_fs_info;
1475
1476         ubifs_msg("un-mount UBI device %d, volume %d", c->vi.ubi_num,
1477                   c->vi.vol_id);
1478         /*
1479          * The following asserts are only valid if there has not been a failure
1480          * of the media. For example, there will be dirty inodes if we failed
1481          * to write them back because of I/O errors.
1482          */
1483         ubifs_assert(atomic_long_read(&c->dirty_pg_cnt) == 0);
1484         ubifs_assert(c->budg_idx_growth == 0);
1485         ubifs_assert(c->budg_dd_growth == 0);
1486         ubifs_assert(c->budg_data_growth == 0);
1487
1488         /*
1489          * The 'c->umount_lock' prevents races between UBIFS memory shrinker
1490          * and file system un-mount. Namely, it prevents the shrinker from
1491          * picking this superblock for shrinking - it will be just skipped if
1492          * the mutex is locked.
1493          */
1494         mutex_lock(&c->umount_mutex);
1495         if (!(c->vfs_sb->s_flags & MS_RDONLY)) {
1496                 /*
1497                  * First of all kill the background thread to make sure it does
1498                  * not interfere with un-mounting and freeing resources.
1499                  */
1500                 if (c->bgt) {
1501                         kthread_stop(c->bgt);
1502                         c->bgt = NULL;
1503                 }
1504
1505                 /* Synchronize write-buffers */
1506                 if (c->jheads)
1507                         for (i = 0; i < c->jhead_cnt; i++) {
1508                                 ubifs_wbuf_sync(&c->jheads[i].wbuf);
1509                                 del_timer_sync(&c->jheads[i].wbuf.timer);
1510                         }
1511
1512                 /*
1513                  * On fatal errors c->ro_media is set to 1, in which case we do
1514                  * not write the master node.
1515                  */
1516                 if (!c->ro_media) {
1517                         /*
1518                          * We are being cleanly unmounted which means the
1519                          * orphans were killed - indicate this in the master
1520                          * node. Also save the reserved GC LEB number.
1521                          */
1522                         int err;
1523
1524                         c->mst_node->flags &= ~cpu_to_le32(UBIFS_MST_DIRTY);
1525                         c->mst_node->flags |= cpu_to_le32(UBIFS_MST_NO_ORPHS);
1526                         c->mst_node->gc_lnum = cpu_to_le32(c->gc_lnum);
1527                         err = ubifs_write_master(c);
1528                         if (err)
1529                                 /*
1530                                  * Recovery will attempt to fix the master area
1531                                  * next mount, so we just print a message and
1532                                  * continue to unmount normally.
1533                                  */
1534                                 ubifs_err("failed to write master node, "
1535                                           "error %d", err);
1536                 }
1537         }
1538
1539         ubifs_umount(c);
1540         bdi_destroy(&c->bdi);
1541         ubi_close_volume(c->ubi);
1542         mutex_unlock(&c->umount_mutex);
1543         kfree(c);
1544 }
1545
1546 static int ubifs_remount_fs(struct super_block *sb, int *flags, char *data)
1547 {
1548         int err;
1549         struct ubifs_info *c = sb->s_fs_info;
1550
1551         dbg_gen("old flags %#lx, new flags %#x", sb->s_flags, *flags);
1552
1553         err = ubifs_parse_options(c, data, 1);
1554         if (err) {
1555                 ubifs_err("invalid or unknown remount parameter");
1556                 return err;
1557         }
1558         if ((sb->s_flags & MS_RDONLY) && !(*flags & MS_RDONLY)) {
1559                 err = ubifs_remount_rw(c);
1560                 if (err)
1561                         return err;
1562         } else if (!(sb->s_flags & MS_RDONLY) && (*flags & MS_RDONLY))
1563                 ubifs_remount_ro(c);
1564
1565         return 0;
1566 }
1567
1568 struct super_operations ubifs_super_operations = {
1569         .alloc_inode   = ubifs_alloc_inode,
1570         .destroy_inode = ubifs_destroy_inode,
1571         .put_super     = ubifs_put_super,
1572         .write_inode   = ubifs_write_inode,
1573         .delete_inode  = ubifs_delete_inode,
1574         .statfs        = ubifs_statfs,
1575         .dirty_inode   = ubifs_dirty_inode,
1576         .remount_fs    = ubifs_remount_fs,
1577         .show_options  = ubifs_show_options,
1578         .sync_fs       = ubifs_sync_fs,
1579 };
1580
1581 /**
1582  * open_ubi - parse UBI device name string and open the UBI device.
1583  * @name: UBI volume name
1584  * @mode: UBI volume open mode
1585  *
1586  * There are several ways to specify UBI volumes when mounting UBIFS:
1587  * o ubiX_Y    - UBI device number X, volume Y;
1588  * o ubiY      - UBI device number 0, volume Y;
1589  * o ubiX:NAME - mount UBI device X, volume with name NAME;
1590  * o ubi:NAME  - mount UBI device 0, volume with name NAME.
1591  *
1592  * Alternative '!' separator may be used instead of ':' (because some shells
1593  * like busybox may interpret ':' as an NFS host name separator). This function
1594  * returns ubi volume object in case of success and a negative error code in
1595  * case of failure.
1596  */
1597 static struct ubi_volume_desc *open_ubi(const char *name, int mode)
1598 {
1599         int dev, vol;
1600         char *endptr;
1601
1602         if (name[0] != 'u' || name[1] != 'b' || name[2] != 'i')
1603                 return ERR_PTR(-EINVAL);
1604
1605         /* ubi:NAME method */
1606         if ((name[3] == ':' || name[3] == '!') && name[4] != '\0')
1607                 return ubi_open_volume_nm(0, name + 4, mode);
1608
1609         if (!isdigit(name[3]))
1610                 return ERR_PTR(-EINVAL);
1611
1612         dev = simple_strtoul(name + 3, &endptr, 0);
1613
1614         /* ubiY method */
1615         if (*endptr == '\0')
1616                 return ubi_open_volume(0, dev, mode);
1617
1618         /* ubiX_Y method */
1619         if (*endptr == '_' && isdigit(endptr[1])) {
1620                 vol = simple_strtoul(endptr + 1, &endptr, 0);
1621                 if (*endptr != '\0')
1622                         return ERR_PTR(-EINVAL);
1623                 return ubi_open_volume(dev, vol, mode);
1624         }
1625
1626         /* ubiX:NAME method */
1627         if ((*endptr == ':' || *endptr == '!') && endptr[1] != '\0')
1628                 return ubi_open_volume_nm(dev, ++endptr, mode);
1629
1630         return ERR_PTR(-EINVAL);
1631 }
1632
1633 static int ubifs_fill_super(struct super_block *sb, void *data, int silent)
1634 {
1635         struct ubi_volume_desc *ubi = sb->s_fs_info;
1636         struct ubifs_info *c;
1637         struct inode *root;
1638         int err;
1639
1640         c = kzalloc(sizeof(struct ubifs_info), GFP_KERNEL);
1641         if (!c)
1642                 return -ENOMEM;
1643
1644         spin_lock_init(&c->cnt_lock);
1645         spin_lock_init(&c->cs_lock);
1646         spin_lock_init(&c->buds_lock);
1647         spin_lock_init(&c->space_lock);
1648         spin_lock_init(&c->orphan_lock);
1649         init_rwsem(&c->commit_sem);
1650         mutex_init(&c->lp_mutex);
1651         mutex_init(&c->tnc_mutex);
1652         mutex_init(&c->log_mutex);
1653         mutex_init(&c->mst_mutex);
1654         mutex_init(&c->umount_mutex);
1655         init_waitqueue_head(&c->cmt_wq);
1656         c->buds = RB_ROOT;
1657         c->old_idx = RB_ROOT;
1658         c->size_tree = RB_ROOT;
1659         c->orph_tree = RB_ROOT;
1660         INIT_LIST_HEAD(&c->infos_list);
1661         INIT_LIST_HEAD(&c->idx_gc);
1662         INIT_LIST_HEAD(&c->replay_list);
1663         INIT_LIST_HEAD(&c->replay_buds);
1664         INIT_LIST_HEAD(&c->uncat_list);
1665         INIT_LIST_HEAD(&c->empty_list);
1666         INIT_LIST_HEAD(&c->freeable_list);
1667         INIT_LIST_HEAD(&c->frdi_idx_list);
1668         INIT_LIST_HEAD(&c->unclean_leb_list);
1669         INIT_LIST_HEAD(&c->old_buds);
1670         INIT_LIST_HEAD(&c->orph_list);
1671         INIT_LIST_HEAD(&c->orph_new);
1672
1673         c->highest_inum = UBIFS_FIRST_INO;
1674         get_random_bytes(&c->vfs_gen, sizeof(int));
1675         c->lhead_lnum = c->ltail_lnum = UBIFS_LOG_LNUM;
1676
1677         ubi_get_volume_info(ubi, &c->vi);
1678         ubi_get_device_info(c->vi.ubi_num, &c->di);
1679
1680         /* Re-open the UBI device in read-write mode */
1681         c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READWRITE);
1682         if (IS_ERR(c->ubi)) {
1683                 err = PTR_ERR(c->ubi);
1684                 goto out_free;
1685         }
1686
1687         /*
1688          * UBIFS provids 'backing_dev_info' in order to disable readahead. For
1689          * UBIFS, I/O is not deferred, it is done immediately in readpage,
1690          * which means the user would have to wait not just for their own I/O
1691          * but the readahead I/O as well i.e. completely pointless.
1692          *
1693          * Read-ahead will be disabled because @c->bdi.ra_pages is 0.
1694          */
1695         c->bdi.capabilities = BDI_CAP_MAP_COPY;
1696         c->bdi.unplug_io_fn = default_unplug_io_fn;
1697         err  = bdi_init(&c->bdi);
1698         if (err)
1699                 goto out_close;
1700
1701         err = ubifs_parse_options(c, data, 0);
1702         if (err)
1703                 goto out_bdi;
1704
1705         c->vfs_sb = sb;
1706
1707         sb->s_fs_info = c;
1708         sb->s_magic = UBIFS_SUPER_MAGIC;
1709         sb->s_blocksize = UBIFS_BLOCK_SIZE;
1710         sb->s_blocksize_bits = UBIFS_BLOCK_SHIFT;
1711         sb->s_dev = c->vi.cdev;
1712         sb->s_maxbytes = c->max_inode_sz = key_max_inode_size(c);
1713         if (c->max_inode_sz > MAX_LFS_FILESIZE)
1714                 sb->s_maxbytes = c->max_inode_sz = MAX_LFS_FILESIZE;
1715         sb->s_op = &ubifs_super_operations;
1716
1717         mutex_lock(&c->umount_mutex);
1718         err = mount_ubifs(c);
1719         if (err) {
1720                 ubifs_assert(err < 0);
1721                 goto out_unlock;
1722         }
1723
1724         /* Read the root inode */
1725         root = ubifs_iget(sb, UBIFS_ROOT_INO);
1726         if (IS_ERR(root)) {
1727                 err = PTR_ERR(root);
1728                 goto out_umount;
1729         }
1730
1731         sb->s_root = d_alloc_root(root);
1732         if (!sb->s_root)
1733                 goto out_iput;
1734
1735         mutex_unlock(&c->umount_mutex);
1736
1737         return 0;
1738
1739 out_iput:
1740         iput(root);
1741 out_umount:
1742         ubifs_umount(c);
1743 out_unlock:
1744         mutex_unlock(&c->umount_mutex);
1745 out_bdi:
1746         bdi_destroy(&c->bdi);
1747 out_close:
1748         ubi_close_volume(c->ubi);
1749 out_free:
1750         kfree(c);
1751         return err;
1752 }
1753
1754 static int sb_test(struct super_block *sb, void *data)
1755 {
1756         dev_t *dev = data;
1757
1758         return sb->s_dev == *dev;
1759 }
1760
1761 static int sb_set(struct super_block *sb, void *data)
1762 {
1763         dev_t *dev = data;
1764
1765         sb->s_dev = *dev;
1766         return 0;
1767 }
1768
1769 static int ubifs_get_sb(struct file_system_type *fs_type, int flags,
1770                         const char *name, void *data, struct vfsmount *mnt)
1771 {
1772         struct ubi_volume_desc *ubi;
1773         struct ubi_volume_info vi;
1774         struct super_block *sb;
1775         int err;
1776
1777         dbg_gen("name %s, flags %#x", name, flags);
1778
1779         /*
1780          * Get UBI device number and volume ID. Mount it read-only so far
1781          * because this might be a new mount point, and UBI allows only one
1782          * read-write user at a time.
1783          */
1784         ubi = open_ubi(name, UBI_READONLY);
1785         if (IS_ERR(ubi)) {
1786                 ubifs_err("cannot open \"%s\", error %d",
1787                           name, (int)PTR_ERR(ubi));
1788                 return PTR_ERR(ubi);
1789         }
1790         ubi_get_volume_info(ubi, &vi);
1791
1792         dbg_gen("opened ubi%d_%d", vi.ubi_num, vi.vol_id);
1793
1794         sb = sget(fs_type, &sb_test, &sb_set, &vi.cdev);
1795         if (IS_ERR(sb)) {
1796                 err = PTR_ERR(sb);
1797                 goto out_close;
1798         }
1799
1800         if (sb->s_root) {
1801                 /* A new mount point for already mounted UBIFS */
1802                 dbg_gen("this ubi volume is already mounted");
1803                 if ((flags ^ sb->s_flags) & MS_RDONLY) {
1804                         err = -EBUSY;
1805                         goto out_deact;
1806                 }
1807         } else {
1808                 sb->s_flags = flags;
1809                 /*
1810                  * Pass 'ubi' to 'fill_super()' in sb->s_fs_info where it is
1811                  * replaced by 'c'.
1812                  */
1813                 sb->s_fs_info = ubi;
1814                 err = ubifs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
1815                 if (err)
1816                         goto out_deact;
1817                 /* We do not support atime */
1818                 sb->s_flags |= MS_ACTIVE | MS_NOATIME;
1819         }
1820
1821         /* 'fill_super()' opens ubi again so we must close it here */
1822         ubi_close_volume(ubi);
1823
1824         return simple_set_mnt(mnt, sb);
1825
1826 out_deact:
1827         up_write(&sb->s_umount);
1828         deactivate_super(sb);
1829 out_close:
1830         ubi_close_volume(ubi);
1831         return err;
1832 }
1833
1834 static void ubifs_kill_sb(struct super_block *sb)
1835 {
1836         struct ubifs_info *c = sb->s_fs_info;
1837
1838         /*
1839          * We do 'commit_on_unmount()' here instead of 'ubifs_put_super()'
1840          * in order to be outside BKL.
1841          */
1842         if (sb->s_root && !(sb->s_flags & MS_RDONLY))
1843                 commit_on_unmount(c);
1844         /* The un-mount routine is actually done in put_super() */
1845         generic_shutdown_super(sb);
1846 }
1847
1848 static struct file_system_type ubifs_fs_type = {
1849         .name    = "ubifs",
1850         .owner   = THIS_MODULE,
1851         .get_sb  = ubifs_get_sb,
1852         .kill_sb = ubifs_kill_sb
1853 };
1854
1855 /*
1856  * Inode slab cache constructor.
1857  */
1858 static void inode_slab_ctor(void *obj)
1859 {
1860         struct ubifs_inode *ui = obj;
1861         inode_init_once(&ui->vfs_inode);
1862 }
1863
1864 static int __init ubifs_init(void)
1865 {
1866         int err;
1867
1868         BUILD_BUG_ON(sizeof(struct ubifs_ch) != 24);
1869
1870         /* Make sure node sizes are 8-byte aligned */
1871         BUILD_BUG_ON(UBIFS_CH_SZ        & 7);
1872         BUILD_BUG_ON(UBIFS_INO_NODE_SZ  & 7);
1873         BUILD_BUG_ON(UBIFS_DENT_NODE_SZ & 7);
1874         BUILD_BUG_ON(UBIFS_XENT_NODE_SZ & 7);
1875         BUILD_BUG_ON(UBIFS_DATA_NODE_SZ & 7);
1876         BUILD_BUG_ON(UBIFS_TRUN_NODE_SZ & 7);
1877         BUILD_BUG_ON(UBIFS_SB_NODE_SZ   & 7);
1878         BUILD_BUG_ON(UBIFS_MST_NODE_SZ  & 7);
1879         BUILD_BUG_ON(UBIFS_REF_NODE_SZ  & 7);
1880         BUILD_BUG_ON(UBIFS_CS_NODE_SZ   & 7);
1881         BUILD_BUG_ON(UBIFS_ORPH_NODE_SZ & 7);
1882
1883         BUILD_BUG_ON(UBIFS_MAX_DENT_NODE_SZ & 7);
1884         BUILD_BUG_ON(UBIFS_MAX_XENT_NODE_SZ & 7);
1885         BUILD_BUG_ON(UBIFS_MAX_DATA_NODE_SZ & 7);
1886         BUILD_BUG_ON(UBIFS_MAX_INO_NODE_SZ  & 7);
1887         BUILD_BUG_ON(UBIFS_MAX_NODE_SZ      & 7);
1888         BUILD_BUG_ON(MIN_WRITE_SZ           & 7);
1889
1890         /* Check min. node size */
1891         BUILD_BUG_ON(UBIFS_INO_NODE_SZ  < MIN_WRITE_SZ);
1892         BUILD_BUG_ON(UBIFS_DENT_NODE_SZ < MIN_WRITE_SZ);
1893         BUILD_BUG_ON(UBIFS_XENT_NODE_SZ < MIN_WRITE_SZ);
1894         BUILD_BUG_ON(UBIFS_TRUN_NODE_SZ < MIN_WRITE_SZ);
1895
1896         BUILD_BUG_ON(UBIFS_MAX_DENT_NODE_SZ > UBIFS_MAX_NODE_SZ);
1897         BUILD_BUG_ON(UBIFS_MAX_XENT_NODE_SZ > UBIFS_MAX_NODE_SZ);
1898         BUILD_BUG_ON(UBIFS_MAX_DATA_NODE_SZ > UBIFS_MAX_NODE_SZ);
1899         BUILD_BUG_ON(UBIFS_MAX_INO_NODE_SZ  > UBIFS_MAX_NODE_SZ);
1900
1901         /* Defined node sizes */
1902         BUILD_BUG_ON(UBIFS_SB_NODE_SZ  != 4096);
1903         BUILD_BUG_ON(UBIFS_MST_NODE_SZ != 512);
1904         BUILD_BUG_ON(UBIFS_INO_NODE_SZ != 160);
1905         BUILD_BUG_ON(UBIFS_REF_NODE_SZ != 64);
1906
1907         /*
1908          * We require that PAGE_CACHE_SIZE is greater-than-or-equal-to
1909          * UBIFS_BLOCK_SIZE. It is assumed that both are powers of 2.
1910          */
1911         if (PAGE_CACHE_SIZE < UBIFS_BLOCK_SIZE) {
1912                 ubifs_err("VFS page cache size is %u bytes, but UBIFS requires"
1913                           " at least 4096 bytes",
1914                           (unsigned int)PAGE_CACHE_SIZE);
1915                 return -EINVAL;
1916         }
1917
1918         err = register_filesystem(&ubifs_fs_type);
1919         if (err) {
1920                 ubifs_err("cannot register file system, error %d", err);
1921                 return err;
1922         }
1923
1924         err = -ENOMEM;
1925         ubifs_inode_slab = kmem_cache_create("ubifs_inode_slab",
1926                                 sizeof(struct ubifs_inode), 0,
1927                                 SLAB_MEM_SPREAD | SLAB_RECLAIM_ACCOUNT,
1928                                 &inode_slab_ctor);
1929         if (!ubifs_inode_slab)
1930                 goto out_reg;
1931
1932         register_shrinker(&ubifs_shrinker_info);
1933
1934         err = ubifs_compressors_init();
1935         if (err)
1936                 goto out_compr;
1937
1938         return 0;
1939
1940 out_compr:
1941         unregister_shrinker(&ubifs_shrinker_info);
1942         kmem_cache_destroy(ubifs_inode_slab);
1943 out_reg:
1944         unregister_filesystem(&ubifs_fs_type);
1945         return err;
1946 }
1947 /* late_initcall to let compressors initialize first */
1948 late_initcall(ubifs_init);
1949
1950 static void __exit ubifs_exit(void)
1951 {
1952         ubifs_assert(list_empty(&ubifs_infos));
1953         ubifs_assert(atomic_long_read(&ubifs_clean_zn_cnt) == 0);
1954
1955         ubifs_compressors_exit();
1956         unregister_shrinker(&ubifs_shrinker_info);
1957         kmem_cache_destroy(ubifs_inode_slab);
1958         unregister_filesystem(&ubifs_fs_type);
1959 }
1960 module_exit(ubifs_exit);
1961
1962 MODULE_LICENSE("GPL");
1963 MODULE_VERSION(__stringify(UBIFS_VERSION));
1964 MODULE_AUTHOR("Artem Bityutskiy, Adrian Hunter");
1965 MODULE_DESCRIPTION("UBIFS - UBI File System");