blob: 2f6b25d33812b943c7240f8d46cfe281e22bd3dc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002/*
3 * This file is part of UBIFS.
4 *
5 * Copyright (C) 2006-2008 Nokia Corporation.
6 *
Stefan Roese9eefe2a2009-03-19 15:35:05 +01007 * Authors: Artem Bityutskiy (Битюцкий Артём)
8 * Adrian Hunter
9 */
10
11/*
12 * This file implements UBIFS initialization and VFS superblock operations. Some
13 * initialization stuff which is rather large and complex is placed at
14 * corresponding subsystems, but most of it is here.
15 */
16
Heiko Schocherff94bc42014-06-24 10:10:04 +020017#ifndef __UBOOT__
Simon Glassf7ae49f2020-05-10 11:40:05 -060018#include <log.h>
Simon Glass61b29b82020-02-03 07:36:15 -070019#include <dm/devres.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020020#include <linux/init.h>
21#include <linux/slab.h>
22#include <linux/module.h>
23#include <linux/ctype.h>
24#include <linux/kthread.h>
25#include <linux/parser.h>
26#include <linux/seq_file.h>
27#include <linux/mount.h>
Stefan Roese9eefe2a2009-03-19 15:35:05 +010028#include <linux/math64.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020029#include <linux/writeback.h>
30#else
31
Simon Glass6e295182015-09-02 17:24:57 -060032#include <common.h>
33#include <malloc.h>
34#include <memalign.h>
Masahiro Yamada84b8bf62016-01-24 23:27:48 +090035#include <linux/bug.h>
Fabio Estevamf8fdb812015-11-05 12:43:39 -020036#include <linux/log2.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020037#include <linux/stat.h>
38#include <linux/err.h>
39#include "ubifs.h"
40#include <ubi_uboot.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060041#include <linux/stringify.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020042#include <mtd/ubi-user.h>
43
44struct dentry;
45struct file;
46struct iattr;
47struct kstat;
48struct vfsmount;
Stefan Roese9eefe2a2009-03-19 15:35:05 +010049
50#define INODE_LOCKED_MAX 64
51
52struct super_block *ubifs_sb;
Heiko Schocherff94bc42014-06-24 10:10:04 +020053
Stefan Roese9eefe2a2009-03-19 15:35:05 +010054static struct inode *inodes_locked_down[INODE_LOCKED_MAX];
55
Heiko Schocherff94bc42014-06-24 10:10:04 +020056int set_anon_super(struct super_block *s, void *data)
Stefan Roese9eefe2a2009-03-19 15:35:05 +010057{
Stefan Roese9eefe2a2009-03-19 15:35:05 +010058 return 0;
59}
60
Stefan Roese9eefe2a2009-03-19 15:35:05 +010061struct inode *iget_locked(struct super_block *sb, unsigned long ino)
62{
63 struct inode *inode;
64
Marcel Ziswiler45196682015-08-18 13:06:37 +020065 inode = (struct inode *)malloc_cache_aligned(
66 sizeof(struct ubifs_inode));
Stefan Roese9eefe2a2009-03-19 15:35:05 +010067 if (inode) {
68 inode->i_ino = ino;
69 inode->i_sb = sb;
70 list_add(&inode->i_sb_list, &sb->s_inodes);
71 inode->i_state = I_LOCK | I_NEW;
72 }
73
74 return inode;
75}
76
Heiko Schocherff94bc42014-06-24 10:10:04 +020077void iget_failed(struct inode *inode)
78{
79}
80
Stefan Roese9eefe2a2009-03-19 15:35:05 +010081int ubifs_iput(struct inode *inode)
82{
83 list_del_init(&inode->i_sb_list);
84
85 free(inode);
86 return 0;
87}
88
89/*
90 * Lock (save) inode in inode array for readback after recovery
91 */
92void iput(struct inode *inode)
93{
94 int i;
95 struct inode *ino;
96
97 /*
98 * Search end of list
99 */
100 for (i = 0; i < INODE_LOCKED_MAX; i++) {
101 if (inodes_locked_down[i] == NULL)
102 break;
103 }
104
105 if (i >= INODE_LOCKED_MAX) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200106 dbg_gen("Error, can't lock (save) more inodes while recovery!!!");
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100107 return;
108 }
109
110 /*
111 * Allocate and use new inode
112 */
Marcel Ziswiler45196682015-08-18 13:06:37 +0200113 ino = (struct inode *)malloc_cache_aligned(sizeof(struct ubifs_inode));
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100114 memcpy(ino, inode, sizeof(struct ubifs_inode));
115
116 /*
117 * Finally save inode in array
118 */
119 inodes_locked_down[i] = ino;
120}
121
Heiko Schocherff94bc42014-06-24 10:10:04 +0200122/* from fs/inode.c */
123/**
124 * clear_nlink - directly zero an inode's link count
125 * @inode: inode
126 *
127 * This is a low-level filesystem helper to replace any
128 * direct filesystem manipulation of i_nlink. See
129 * drop_nlink() for why we care about i_nlink hitting zero.
130 */
131void clear_nlink(struct inode *inode)
132{
133 if (inode->i_nlink) {
134 inode->__i_nlink = 0;
135 atomic_long_inc(&inode->i_sb->s_remove_count);
136 }
137}
138EXPORT_SYMBOL(clear_nlink);
139
140/**
141 * set_nlink - directly set an inode's link count
142 * @inode: inode
143 * @nlink: new nlink (should be non-zero)
144 *
145 * This is a low-level filesystem helper to replace any
146 * direct filesystem manipulation of i_nlink.
147 */
148void set_nlink(struct inode *inode, unsigned int nlink)
149{
150 if (!nlink) {
151 clear_nlink(inode);
152 } else {
153 /* Yes, some filesystems do change nlink from zero to one */
154 if (inode->i_nlink == 0)
155 atomic_long_dec(&inode->i_sb->s_remove_count);
156
157 inode->__i_nlink = nlink;
158 }
159}
160EXPORT_SYMBOL(set_nlink);
161
162/* from include/linux/fs.h */
163static inline void i_uid_write(struct inode *inode, uid_t uid)
164{
165 inode->i_uid.val = uid;
166}
167
168static inline void i_gid_write(struct inode *inode, gid_t gid)
169{
170 inode->i_gid.val = gid;
171}
172
173void unlock_new_inode(struct inode *inode)
174{
175 return;
176}
177#endif
178
179/*
180 * Maximum amount of memory we may 'kmalloc()' without worrying that we are
181 * allocating too much.
182 */
183#define UBIFS_KMALLOC_OK (128*1024)
184
185/* Slab cache for UBIFS inodes */
186struct kmem_cache *ubifs_inode_slab;
187
188#ifndef __UBOOT__
189/* UBIFS TNC shrinker description */
190static struct shrinker ubifs_shrinker_info = {
191 .scan_objects = ubifs_shrink_scan,
192 .count_objects = ubifs_shrink_count,
193 .seeks = DEFAULT_SEEKS,
194};
195#endif
196
197/**
198 * validate_inode - validate inode.
199 * @c: UBIFS file-system description object
200 * @inode: the inode to validate
201 *
202 * This is a helper function for 'ubifs_iget()' which validates various fields
203 * of a newly built inode to make sure they contain sane values and prevent
204 * possible vulnerabilities. Returns zero if the inode is all right and
205 * a non-zero error code if not.
206 */
207static int validate_inode(struct ubifs_info *c, const struct inode *inode)
208{
209 int err;
210 const struct ubifs_inode *ui = ubifs_inode(inode);
211
212 if (inode->i_size > c->max_inode_sz) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200213 ubifs_err(c, "inode is too large (%lld)",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200214 (long long)inode->i_size);
215 return 1;
216 }
217
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200218 if (ui->compr_type >= UBIFS_COMPR_TYPES_CNT) {
219 ubifs_err(c, "unknown compression type %d", ui->compr_type);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200220 return 2;
221 }
222
223 if (ui->xattr_names + ui->xattr_cnt > XATTR_LIST_MAX)
224 return 3;
225
226 if (ui->data_len < 0 || ui->data_len > UBIFS_MAX_INO_DATA)
227 return 4;
228
229 if (ui->xattr && !S_ISREG(inode->i_mode))
230 return 5;
231
232 if (!ubifs_compr_present(ui->compr_type)) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200233 ubifs_warn(c, "inode %lu uses '%s' compression, but it was not compiled in",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200234 inode->i_ino, ubifs_compr_name(ui->compr_type));
235 }
236
237 err = dbg_check_dir(c, inode);
238 return err;
239}
240
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100241struct inode *ubifs_iget(struct super_block *sb, unsigned long inum)
242{
243 int err;
244 union ubifs_key key;
245 struct ubifs_ino_node *ino;
246 struct ubifs_info *c = sb->s_fs_info;
247 struct inode *inode;
248 struct ubifs_inode *ui;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200249#ifdef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100250 int i;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200251#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100252
253 dbg_gen("inode %lu", inum);
254
Heiko Schocherff94bc42014-06-24 10:10:04 +0200255#ifdef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100256 /*
257 * U-Boot special handling of locked down inodes via recovery
258 * e.g. ubifs_recover_size()
259 */
260 for (i = 0; i < INODE_LOCKED_MAX; i++) {
261 /*
262 * Exit on last entry (NULL), inode not found in list
263 */
264 if (inodes_locked_down[i] == NULL)
265 break;
266
267 if (inodes_locked_down[i]->i_ino == inum) {
268 /*
269 * We found the locked down inode in our array,
270 * so just return this pointer instead of creating
271 * a new one.
272 */
273 return inodes_locked_down[i];
274 }
275 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200276#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100277
278 inode = iget_locked(sb, inum);
279 if (!inode)
280 return ERR_PTR(-ENOMEM);
281 if (!(inode->i_state & I_NEW))
282 return inode;
283 ui = ubifs_inode(inode);
284
285 ino = kmalloc(UBIFS_MAX_INO_NODE_SZ, GFP_NOFS);
286 if (!ino) {
287 err = -ENOMEM;
288 goto out;
289 }
290
291 ino_key_init(c, &key, inode->i_ino);
292
293 err = ubifs_tnc_lookup(c, &key, ino);
294 if (err)
295 goto out_ino;
296
297 inode->i_flags |= (S_NOCMTIME | S_NOATIME);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200298 set_nlink(inode, le32_to_cpu(ino->nlink));
299 i_uid_write(inode, le32_to_cpu(ino->uid));
300 i_gid_write(inode, le32_to_cpu(ino->gid));
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100301 inode->i_atime.tv_sec = (int64_t)le64_to_cpu(ino->atime_sec);
302 inode->i_atime.tv_nsec = le32_to_cpu(ino->atime_nsec);
303 inode->i_mtime.tv_sec = (int64_t)le64_to_cpu(ino->mtime_sec);
304 inode->i_mtime.tv_nsec = le32_to_cpu(ino->mtime_nsec);
305 inode->i_ctime.tv_sec = (int64_t)le64_to_cpu(ino->ctime_sec);
306 inode->i_ctime.tv_nsec = le32_to_cpu(ino->ctime_nsec);
307 inode->i_mode = le32_to_cpu(ino->mode);
308 inode->i_size = le64_to_cpu(ino->size);
309
310 ui->data_len = le32_to_cpu(ino->data_len);
311 ui->flags = le32_to_cpu(ino->flags);
312 ui->compr_type = le16_to_cpu(ino->compr_type);
313 ui->creat_sqnum = le64_to_cpu(ino->creat_sqnum);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200314 ui->xattr_cnt = le32_to_cpu(ino->xattr_cnt);
315 ui->xattr_size = le32_to_cpu(ino->xattr_size);
316 ui->xattr_names = le32_to_cpu(ino->xattr_names);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100317 ui->synced_i_size = ui->ui_size = inode->i_size;
318
Heiko Schocherff94bc42014-06-24 10:10:04 +0200319 ui->xattr = (ui->flags & UBIFS_XATTR_FL) ? 1 : 0;
320
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100321 err = validate_inode(c, inode);
322 if (err)
323 goto out_invalid;
324
Heiko Schocherff94bc42014-06-24 10:10:04 +0200325#ifndef __UBOOT__
Heiko Schocherff94bc42014-06-24 10:10:04 +0200326 switch (inode->i_mode & S_IFMT) {
327 case S_IFREG:
328 inode->i_mapping->a_ops = &ubifs_file_address_operations;
329 inode->i_op = &ubifs_file_inode_operations;
330 inode->i_fop = &ubifs_file_operations;
331 if (ui->xattr) {
332 ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
333 if (!ui->data) {
334 err = -ENOMEM;
335 goto out_ino;
336 }
337 memcpy(ui->data, ino->data, ui->data_len);
338 ((char *)ui->data)[ui->data_len] = '\0';
339 } else if (ui->data_len != 0) {
340 err = 10;
341 goto out_invalid;
342 }
343 break;
344 case S_IFDIR:
345 inode->i_op = &ubifs_dir_inode_operations;
346 inode->i_fop = &ubifs_dir_operations;
347 if (ui->data_len != 0) {
348 err = 11;
349 goto out_invalid;
350 }
351 break;
352 case S_IFLNK:
353 inode->i_op = &ubifs_symlink_inode_operations;
354 if (ui->data_len <= 0 || ui->data_len > UBIFS_MAX_INO_DATA) {
355 err = 12;
356 goto out_invalid;
357 }
358 ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
359 if (!ui->data) {
360 err = -ENOMEM;
361 goto out_ino;
362 }
363 memcpy(ui->data, ino->data, ui->data_len);
364 ((char *)ui->data)[ui->data_len] = '\0';
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200365 inode->i_link = ui->data;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200366 break;
367 case S_IFBLK:
368 case S_IFCHR:
369 {
370 dev_t rdev;
371 union ubifs_dev_desc *dev;
372
373 ui->data = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
374 if (!ui->data) {
375 err = -ENOMEM;
376 goto out_ino;
377 }
378
379 dev = (union ubifs_dev_desc *)ino->data;
380 if (ui->data_len == sizeof(dev->new))
381 rdev = new_decode_dev(le32_to_cpu(dev->new));
382 else if (ui->data_len == sizeof(dev->huge))
383 rdev = huge_decode_dev(le64_to_cpu(dev->huge));
384 else {
385 err = 13;
386 goto out_invalid;
387 }
388 memcpy(ui->data, ino->data, ui->data_len);
389 inode->i_op = &ubifs_file_inode_operations;
390 init_special_inode(inode, inode->i_mode, rdev);
391 break;
392 }
393 case S_IFSOCK:
394 case S_IFIFO:
395 inode->i_op = &ubifs_file_inode_operations;
396 init_special_inode(inode, inode->i_mode, 0);
397 if (ui->data_len != 0) {
398 err = 14;
399 goto out_invalid;
400 }
401 break;
402 default:
403 err = 15;
404 goto out_invalid;
405 }
406#else
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100407 if ((inode->i_mode & S_IFMT) == S_IFLNK) {
408 if (ui->data_len <= 0 || ui->data_len > UBIFS_MAX_INO_DATA) {
409 err = 12;
410 goto out_invalid;
411 }
412 ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
413 if (!ui->data) {
414 err = -ENOMEM;
415 goto out_ino;
416 }
417 memcpy(ui->data, ino->data, ui->data_len);
418 ((char *)ui->data)[ui->data_len] = '\0';
419 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200420#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100421
422 kfree(ino);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200423#ifndef __UBOOT__
424 ubifs_set_inode_flags(inode);
425#endif
426 unlock_new_inode(inode);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100427 return inode;
428
429out_invalid:
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200430 ubifs_err(c, "inode %lu validation failed, error %d", inode->i_ino, err);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200431 ubifs_dump_node(c, ino);
432 ubifs_dump_inode(c, inode);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100433 err = -EINVAL;
434out_ino:
435 kfree(ino);
436out:
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200437 ubifs_err(c, "failed to read inode %lu, error %d", inode->i_ino, err);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200438 iget_failed(inode);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100439 return ERR_PTR(err);
440}
441
Heiko Schocherff94bc42014-06-24 10:10:04 +0200442static struct inode *ubifs_alloc_inode(struct super_block *sb)
443{
444 struct ubifs_inode *ui;
445
446 ui = kmem_cache_alloc(ubifs_inode_slab, GFP_NOFS);
447 if (!ui)
448 return NULL;
449
450 memset((void *)ui + sizeof(struct inode), 0,
451 sizeof(struct ubifs_inode) - sizeof(struct inode));
452 mutex_init(&ui->ui_mutex);
453 spin_lock_init(&ui->ui_lock);
454 return &ui->vfs_inode;
455};
456
457#ifndef __UBOOT__
458static void ubifs_i_callback(struct rcu_head *head)
459{
460 struct inode *inode = container_of(head, struct inode, i_rcu);
461 struct ubifs_inode *ui = ubifs_inode(inode);
462 kmem_cache_free(ubifs_inode_slab, ui);
463}
464
465static void ubifs_destroy_inode(struct inode *inode)
466{
467 struct ubifs_inode *ui = ubifs_inode(inode);
468
469 kfree(ui->data);
470 call_rcu(&inode->i_rcu, ubifs_i_callback);
471}
472
473/*
474 * Note, Linux write-back code calls this without 'i_mutex'.
475 */
476static int ubifs_write_inode(struct inode *inode, struct writeback_control *wbc)
477{
478 int err = 0;
479 struct ubifs_info *c = inode->i_sb->s_fs_info;
480 struct ubifs_inode *ui = ubifs_inode(inode);
481
482 ubifs_assert(!ui->xattr);
483 if (is_bad_inode(inode))
484 return 0;
485
486 mutex_lock(&ui->ui_mutex);
487 /*
488 * Due to races between write-back forced by budgeting
489 * (see 'sync_some_inodes()') and background write-back, the inode may
490 * have already been synchronized, do not do this again. This might
491 * also happen if it was synchronized in an VFS operation, e.g.
492 * 'ubifs_link()'.
493 */
494 if (!ui->dirty) {
495 mutex_unlock(&ui->ui_mutex);
496 return 0;
497 }
498
499 /*
500 * As an optimization, do not write orphan inodes to the media just
501 * because this is not needed.
502 */
503 dbg_gen("inode %lu, mode %#x, nlink %u",
504 inode->i_ino, (int)inode->i_mode, inode->i_nlink);
505 if (inode->i_nlink) {
506 err = ubifs_jnl_write_inode(c, inode);
507 if (err)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200508 ubifs_err(c, "can't write inode %lu, error %d",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200509 inode->i_ino, err);
510 else
511 err = dbg_check_inode_size(c, inode, ui->ui_size);
512 }
513
514 ui->dirty = 0;
515 mutex_unlock(&ui->ui_mutex);
516 ubifs_release_dirty_inode_budget(c, ui);
517 return err;
518}
519
520static void ubifs_evict_inode(struct inode *inode)
521{
522 int err;
523 struct ubifs_info *c = inode->i_sb->s_fs_info;
524 struct ubifs_inode *ui = ubifs_inode(inode);
525
526 if (ui->xattr)
527 /*
528 * Extended attribute inode deletions are fully handled in
529 * 'ubifs_removexattr()'. These inodes are special and have
530 * limited usage, so there is nothing to do here.
531 */
532 goto out;
533
534 dbg_gen("inode %lu, mode %#x", inode->i_ino, (int)inode->i_mode);
535 ubifs_assert(!atomic_read(&inode->i_count));
536
Heiko Schocher4e67c572014-07-15 16:08:43 +0200537 truncate_inode_pages_final(&inode->i_data);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200538
539 if (inode->i_nlink)
540 goto done;
541
542 if (is_bad_inode(inode))
543 goto out;
544
545 ui->ui_size = inode->i_size = 0;
546 err = ubifs_jnl_delete_inode(c, inode);
547 if (err)
548 /*
549 * Worst case we have a lost orphan inode wasting space, so a
550 * simple error message is OK here.
551 */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200552 ubifs_err(c, "can't delete inode %lu, error %d",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200553 inode->i_ino, err);
554
555out:
556 if (ui->dirty)
557 ubifs_release_dirty_inode_budget(c, ui);
558 else {
559 /* We've deleted something - clean the "no space" flags */
560 c->bi.nospace = c->bi.nospace_rp = 0;
561 smp_wmb();
562 }
563done:
564 clear_inode(inode);
565}
566#endif
567
568static void ubifs_dirty_inode(struct inode *inode, int flags)
569{
570 struct ubifs_inode *ui = ubifs_inode(inode);
571
572 ubifs_assert(mutex_is_locked(&ui->ui_mutex));
573 if (!ui->dirty) {
574 ui->dirty = 1;
575 dbg_gen("inode %lu", inode->i_ino);
576 }
577}
578
579#ifndef __UBOOT__
580static int ubifs_statfs(struct dentry *dentry, struct kstatfs *buf)
581{
582 struct ubifs_info *c = dentry->d_sb->s_fs_info;
583 unsigned long long free;
584 __le32 *uuid = (__le32 *)c->uuid;
585
586 free = ubifs_get_free_space(c);
587 dbg_gen("free space %lld bytes (%lld blocks)",
588 free, free >> UBIFS_BLOCK_SHIFT);
589
590 buf->f_type = UBIFS_SUPER_MAGIC;
591 buf->f_bsize = UBIFS_BLOCK_SIZE;
592 buf->f_blocks = c->block_cnt;
593 buf->f_bfree = free >> UBIFS_BLOCK_SHIFT;
594 if (free > c->report_rp_size)
595 buf->f_bavail = (free - c->report_rp_size) >> UBIFS_BLOCK_SHIFT;
596 else
597 buf->f_bavail = 0;
598 buf->f_files = 0;
599 buf->f_ffree = 0;
600 buf->f_namelen = UBIFS_MAX_NLEN;
601 buf->f_fsid.val[0] = le32_to_cpu(uuid[0]) ^ le32_to_cpu(uuid[2]);
602 buf->f_fsid.val[1] = le32_to_cpu(uuid[1]) ^ le32_to_cpu(uuid[3]);
603 ubifs_assert(buf->f_bfree <= c->block_cnt);
604 return 0;
605}
606
607static int ubifs_show_options(struct seq_file *s, struct dentry *root)
608{
609 struct ubifs_info *c = root->d_sb->s_fs_info;
610
611 if (c->mount_opts.unmount_mode == 2)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200612 seq_puts(s, ",fast_unmount");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200613 else if (c->mount_opts.unmount_mode == 1)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200614 seq_puts(s, ",norm_unmount");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200615
616 if (c->mount_opts.bulk_read == 2)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200617 seq_puts(s, ",bulk_read");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200618 else if (c->mount_opts.bulk_read == 1)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200619 seq_puts(s, ",no_bulk_read");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200620
621 if (c->mount_opts.chk_data_crc == 2)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200622 seq_puts(s, ",chk_data_crc");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200623 else if (c->mount_opts.chk_data_crc == 1)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200624 seq_puts(s, ",no_chk_data_crc");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200625
626 if (c->mount_opts.override_compr) {
627 seq_printf(s, ",compr=%s",
628 ubifs_compr_name(c->mount_opts.compr_type));
629 }
630
631 return 0;
632}
633
634static int ubifs_sync_fs(struct super_block *sb, int wait)
635{
636 int i, err;
637 struct ubifs_info *c = sb->s_fs_info;
638
639 /*
640 * Zero @wait is just an advisory thing to help the file system shove
641 * lots of data into the queues, and there will be the second
642 * '->sync_fs()' call, with non-zero @wait.
643 */
644 if (!wait)
645 return 0;
646
647 /*
648 * Synchronize write buffers, because 'ubifs_run_commit()' does not
649 * do this if it waits for an already running commit.
650 */
651 for (i = 0; i < c->jhead_cnt; i++) {
652 err = ubifs_wbuf_sync(&c->jheads[i].wbuf);
653 if (err)
654 return err;
655 }
656
657 /*
658 * Strictly speaking, it is not necessary to commit the journal here,
659 * synchronizing write-buffers would be enough. But committing makes
660 * UBIFS free space predictions much more accurate, so we want to let
661 * the user be able to get more accurate results of 'statfs()' after
662 * they synchronize the file system.
663 */
664 err = ubifs_run_commit(c);
665 if (err)
666 return err;
667
668 return ubi_sync(c->vi.ubi_num);
669}
670#endif
671
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100672/**
673 * init_constants_early - initialize UBIFS constants.
674 * @c: UBIFS file-system description object
675 *
676 * This function initialize UBIFS constants which do not need the superblock to
677 * be read. It also checks that the UBI volume satisfies basic UBIFS
678 * requirements. Returns zero in case of success and a negative error code in
679 * case of failure.
680 */
681static int init_constants_early(struct ubifs_info *c)
682{
683 if (c->vi.corrupted) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200684 ubifs_warn(c, "UBI volume is corrupted - read-only mode");
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100685 c->ro_media = 1;
686 }
687
688 if (c->di.ro_mode) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200689 ubifs_msg(c, "read-only UBI device");
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100690 c->ro_media = 1;
691 }
692
693 if (c->vi.vol_type == UBI_STATIC_VOLUME) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200694 ubifs_msg(c, "static UBI volume - read-only mode");
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100695 c->ro_media = 1;
696 }
697
698 c->leb_cnt = c->vi.size;
699 c->leb_size = c->vi.usable_leb_size;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200700 c->leb_start = c->di.leb_start;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100701 c->half_leb_size = c->leb_size / 2;
702 c->min_io_size = c->di.min_io_size;
703 c->min_io_shift = fls(c->min_io_size) - 1;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200704 c->max_write_size = c->di.max_write_size;
705 c->max_write_shift = fls(c->max_write_size) - 1;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100706
707 if (c->leb_size < UBIFS_MIN_LEB_SZ) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200708 ubifs_err(c, "too small LEBs (%d bytes), min. is %d bytes",
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100709 c->leb_size, UBIFS_MIN_LEB_SZ);
710 return -EINVAL;
711 }
712
713 if (c->leb_cnt < UBIFS_MIN_LEB_CNT) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200714 ubifs_err(c, "too few LEBs (%d), min. is %d",
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100715 c->leb_cnt, UBIFS_MIN_LEB_CNT);
716 return -EINVAL;
717 }
718
719 if (!is_power_of_2(c->min_io_size)) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200720 ubifs_err(c, "bad min. I/O size %d", c->min_io_size);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100721 return -EINVAL;
722 }
723
724 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200725 * Maximum write size has to be greater or equivalent to min. I/O
726 * size, and be multiple of min. I/O size.
727 */
728 if (c->max_write_size < c->min_io_size ||
729 c->max_write_size % c->min_io_size ||
730 !is_power_of_2(c->max_write_size)) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200731 ubifs_err(c, "bad write buffer size %d for %d min. I/O unit",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200732 c->max_write_size, c->min_io_size);
733 return -EINVAL;
734 }
735
736 /*
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100737 * UBIFS aligns all node to 8-byte boundary, so to make function in
738 * io.c simpler, assume minimum I/O unit size to be 8 bytes if it is
739 * less than 8.
740 */
741 if (c->min_io_size < 8) {
742 c->min_io_size = 8;
743 c->min_io_shift = 3;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200744 if (c->max_write_size < c->min_io_size) {
745 c->max_write_size = c->min_io_size;
746 c->max_write_shift = c->min_io_shift;
747 }
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100748 }
749
750 c->ref_node_alsz = ALIGN(UBIFS_REF_NODE_SZ, c->min_io_size);
751 c->mst_node_alsz = ALIGN(UBIFS_MST_NODE_SZ, c->min_io_size);
752
753 /*
754 * Initialize node length ranges which are mostly needed for node
755 * length validation.
756 */
757 c->ranges[UBIFS_PAD_NODE].len = UBIFS_PAD_NODE_SZ;
758 c->ranges[UBIFS_SB_NODE].len = UBIFS_SB_NODE_SZ;
759 c->ranges[UBIFS_MST_NODE].len = UBIFS_MST_NODE_SZ;
760 c->ranges[UBIFS_REF_NODE].len = UBIFS_REF_NODE_SZ;
761 c->ranges[UBIFS_TRUN_NODE].len = UBIFS_TRUN_NODE_SZ;
762 c->ranges[UBIFS_CS_NODE].len = UBIFS_CS_NODE_SZ;
763
764 c->ranges[UBIFS_INO_NODE].min_len = UBIFS_INO_NODE_SZ;
765 c->ranges[UBIFS_INO_NODE].max_len = UBIFS_MAX_INO_NODE_SZ;
766 c->ranges[UBIFS_ORPH_NODE].min_len =
767 UBIFS_ORPH_NODE_SZ + sizeof(__le64);
768 c->ranges[UBIFS_ORPH_NODE].max_len = c->leb_size;
769 c->ranges[UBIFS_DENT_NODE].min_len = UBIFS_DENT_NODE_SZ;
770 c->ranges[UBIFS_DENT_NODE].max_len = UBIFS_MAX_DENT_NODE_SZ;
771 c->ranges[UBIFS_XENT_NODE].min_len = UBIFS_XENT_NODE_SZ;
772 c->ranges[UBIFS_XENT_NODE].max_len = UBIFS_MAX_XENT_NODE_SZ;
773 c->ranges[UBIFS_DATA_NODE].min_len = UBIFS_DATA_NODE_SZ;
774 c->ranges[UBIFS_DATA_NODE].max_len = UBIFS_MAX_DATA_NODE_SZ;
775 /*
776 * Minimum indexing node size is amended later when superblock is
777 * read and the key length is known.
778 */
779 c->ranges[UBIFS_IDX_NODE].min_len = UBIFS_IDX_NODE_SZ + UBIFS_BRANCH_SZ;
780 /*
781 * Maximum indexing node size is amended later when superblock is
782 * read and the fanout is known.
783 */
784 c->ranges[UBIFS_IDX_NODE].max_len = INT_MAX;
785
786 /*
787 * Initialize dead and dark LEB space watermarks. See gc.c for comments
788 * about these values.
789 */
790 c->dead_wm = ALIGN(MIN_WRITE_SZ, c->min_io_size);
791 c->dark_wm = ALIGN(UBIFS_MAX_NODE_SZ, c->min_io_size);
792
793 /*
794 * Calculate how many bytes would be wasted at the end of LEB if it was
795 * fully filled with data nodes of maximum size. This is used in
796 * calculations when reporting free space.
797 */
798 c->leb_overhead = c->leb_size % UBIFS_MAX_DATA_NODE_SZ;
799
Heiko Schocherff94bc42014-06-24 10:10:04 +0200800 /* Buffer size for bulk-reads */
801 c->max_bu_buf_len = UBIFS_MAX_BULK_READ * UBIFS_MAX_DATA_NODE_SZ;
802 if (c->max_bu_buf_len > c->leb_size)
803 c->max_bu_buf_len = c->leb_size;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100804 return 0;
805}
806
Heiko Schocherff94bc42014-06-24 10:10:04 +0200807/**
808 * bud_wbuf_callback - bud LEB write-buffer synchronization call-back.
809 * @c: UBIFS file-system description object
810 * @lnum: LEB the write-buffer was synchronized to
811 * @free: how many free bytes left in this LEB
812 * @pad: how many bytes were padded
813 *
814 * This is a callback function which is called by the I/O unit when the
815 * write-buffer is synchronized. We need this to correctly maintain space
816 * accounting in bud logical eraseblocks. This function returns zero in case of
817 * success and a negative error code in case of failure.
818 *
819 * This function actually belongs to the journal, but we keep it here because
820 * we want to keep it static.
821 */
822static int bud_wbuf_callback(struct ubifs_info *c, int lnum, int free, int pad)
823{
824 return ubifs_update_one_lp(c, lnum, free, pad, 0, 0);
825}
826
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100827/*
828 * init_constants_sb - initialize UBIFS constants.
829 * @c: UBIFS file-system description object
830 *
831 * This is a helper function which initializes various UBIFS constants after
832 * the superblock has been read. It also checks various UBIFS parameters and
833 * makes sure they are all right. Returns zero in case of success and a
834 * negative error code in case of failure.
835 */
836static int init_constants_sb(struct ubifs_info *c)
837{
838 int tmp, err;
839 long long tmp64;
840
841 c->main_bytes = (long long)c->main_lebs * c->leb_size;
842 c->max_znode_sz = sizeof(struct ubifs_znode) +
843 c->fanout * sizeof(struct ubifs_zbranch);
844
845 tmp = ubifs_idx_node_sz(c, 1);
846 c->ranges[UBIFS_IDX_NODE].min_len = tmp;
847 c->min_idx_node_sz = ALIGN(tmp, 8);
848
849 tmp = ubifs_idx_node_sz(c, c->fanout);
850 c->ranges[UBIFS_IDX_NODE].max_len = tmp;
851 c->max_idx_node_sz = ALIGN(tmp, 8);
852
853 /* Make sure LEB size is large enough to fit full commit */
854 tmp = UBIFS_CS_NODE_SZ + UBIFS_REF_NODE_SZ * c->jhead_cnt;
855 tmp = ALIGN(tmp, c->min_io_size);
856 if (tmp > c->leb_size) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200857 ubifs_err(c, "too small LEB size %d, at least %d needed",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200858 c->leb_size, tmp);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100859 return -EINVAL;
860 }
861
862 /*
863 * Make sure that the log is large enough to fit reference nodes for
864 * all buds plus one reserved LEB.
865 */
866 tmp64 = c->max_bud_bytes + c->leb_size - 1;
867 c->max_bud_cnt = div_u64(tmp64, c->leb_size);
868 tmp = (c->ref_node_alsz * c->max_bud_cnt + c->leb_size - 1);
869 tmp /= c->leb_size;
870 tmp += 1;
871 if (c->log_lebs < tmp) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200872 ubifs_err(c, "too small log %d LEBs, required min. %d LEBs",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200873 c->log_lebs, tmp);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100874 return -EINVAL;
875 }
876
877 /*
878 * When budgeting we assume worst-case scenarios when the pages are not
879 * be compressed and direntries are of the maximum size.
880 *
881 * Note, data, which may be stored in inodes is budgeted separately, so
Heiko Schocherff94bc42014-06-24 10:10:04 +0200882 * it is not included into 'c->bi.inode_budget'.
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100883 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200884 c->bi.page_budget = UBIFS_MAX_DATA_NODE_SZ * UBIFS_BLOCKS_PER_PAGE;
885 c->bi.inode_budget = UBIFS_INO_NODE_SZ;
886 c->bi.dent_budget = UBIFS_MAX_DENT_NODE_SZ;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100887
888 /*
889 * When the amount of flash space used by buds becomes
890 * 'c->max_bud_bytes', UBIFS just blocks all writers and starts commit.
891 * The writers are unblocked when the commit is finished. To avoid
892 * writers to be blocked UBIFS initiates background commit in advance,
893 * when number of bud bytes becomes above the limit defined below.
894 */
895 c->bg_bud_bytes = (c->max_bud_bytes * 13) >> 4;
896
897 /*
898 * Ensure minimum journal size. All the bytes in the journal heads are
899 * considered to be used, when calculating the current journal usage.
900 * Consequently, if the journal is too small, UBIFS will treat it as
901 * always full.
902 */
903 tmp64 = (long long)(c->jhead_cnt + 1) * c->leb_size + 1;
904 if (c->bg_bud_bytes < tmp64)
905 c->bg_bud_bytes = tmp64;
906 if (c->max_bud_bytes < tmp64 + c->leb_size)
907 c->max_bud_bytes = tmp64 + c->leb_size;
908
909 err = ubifs_calc_lpt_geom(c);
910 if (err)
911 return err;
912
Heiko Schocherff94bc42014-06-24 10:10:04 +0200913 /* Initialize effective LEB size used in budgeting calculations */
914 c->idx_leb_size = c->leb_size - c->max_idx_node_sz;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100915 return 0;
916}
917
918/*
919 * init_constants_master - initialize UBIFS constants.
920 * @c: UBIFS file-system description object
921 *
922 * This is a helper function which initializes various UBIFS constants after
923 * the master node has been read. It also checks various UBIFS parameters and
924 * makes sure they are all right.
925 */
926static void init_constants_master(struct ubifs_info *c)
927{
928 long long tmp64;
929
Heiko Schocherff94bc42014-06-24 10:10:04 +0200930 c->bi.min_idx_lebs = ubifs_calc_min_idx_lebs(c);
931 c->report_rp_size = ubifs_reported_space(c, c->rp_size);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100932
933 /*
934 * Calculate total amount of FS blocks. This number is not used
935 * internally because it does not make much sense for UBIFS, but it is
936 * necessary to report something for the 'statfs()' call.
937 *
938 * Subtract the LEB reserved for GC, the LEB which is reserved for
939 * deletions, minimum LEBs for the index, and assume only one journal
940 * head is available.
941 */
942 tmp64 = c->main_lebs - 1 - 1 - MIN_INDEX_LEBS - c->jhead_cnt + 1;
943 tmp64 *= (long long)c->leb_size - c->leb_overhead;
944 tmp64 = ubifs_reported_space(c, tmp64);
945 c->block_cnt = tmp64 >> UBIFS_BLOCK_SHIFT;
946}
947
948/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200949 * take_gc_lnum - reserve GC LEB.
950 * @c: UBIFS file-system description object
951 *
952 * This function ensures that the LEB reserved for garbage collection is marked
953 * as "taken" in lprops. We also have to set free space to LEB size and dirty
954 * space to zero, because lprops may contain out-of-date information if the
955 * file-system was un-mounted before it has been committed. This function
956 * returns zero in case of success and a negative error code in case of
957 * failure.
958 */
959static int take_gc_lnum(struct ubifs_info *c)
960{
961 int err;
962
963 if (c->gc_lnum == -1) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200964 ubifs_err(c, "no LEB for GC");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200965 return -EINVAL;
966 }
967
968 /* And we have to tell lprops that this LEB is taken */
969 err = ubifs_change_one_lp(c, c->gc_lnum, c->leb_size, 0,
970 LPROPS_TAKEN, 0, 0);
971 return err;
972}
973
974/**
975 * alloc_wbufs - allocate write-buffers.
976 * @c: UBIFS file-system description object
977 *
978 * This helper function allocates and initializes UBIFS write-buffers. Returns
979 * zero in case of success and %-ENOMEM in case of failure.
980 */
981static int alloc_wbufs(struct ubifs_info *c)
982{
983 int i, err;
984
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200985 c->jheads = kcalloc(c->jhead_cnt, sizeof(struct ubifs_jhead),
986 GFP_KERNEL);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200987 if (!c->jheads)
988 return -ENOMEM;
989
990 /* Initialize journal heads */
991 for (i = 0; i < c->jhead_cnt; i++) {
992 INIT_LIST_HEAD(&c->jheads[i].buds_list);
993 err = ubifs_wbuf_init(c, &c->jheads[i].wbuf);
994 if (err)
995 return err;
996
997 c->jheads[i].wbuf.sync_callback = &bud_wbuf_callback;
998 c->jheads[i].wbuf.jhead = i;
999 c->jheads[i].grouped = 1;
1000 }
1001
1002 /*
1003 * Garbage Collector head does not need to be synchronized by timer.
1004 * Also GC head nodes are not grouped.
1005 */
1006 c->jheads[GCHD].wbuf.no_timer = 1;
1007 c->jheads[GCHD].grouped = 0;
1008
1009 return 0;
1010}
1011
1012/**
1013 * free_wbufs - free write-buffers.
1014 * @c: UBIFS file-system description object
1015 */
1016static void free_wbufs(struct ubifs_info *c)
1017{
1018 int i;
1019
1020 if (c->jheads) {
1021 for (i = 0; i < c->jhead_cnt; i++) {
1022 kfree(c->jheads[i].wbuf.buf);
1023 kfree(c->jheads[i].wbuf.inodes);
1024 }
1025 kfree(c->jheads);
1026 c->jheads = NULL;
1027 }
1028}
1029
1030/**
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001031 * free_orphans - free orphans.
1032 * @c: UBIFS file-system description object
1033 */
1034static void free_orphans(struct ubifs_info *c)
1035{
1036 struct ubifs_orphan *orph;
1037
1038 while (c->orph_dnext) {
1039 orph = c->orph_dnext;
1040 c->orph_dnext = orph->dnext;
1041 list_del(&orph->list);
1042 kfree(orph);
1043 }
1044
1045 while (!list_empty(&c->orph_list)) {
1046 orph = list_entry(c->orph_list.next, struct ubifs_orphan, list);
1047 list_del(&orph->list);
1048 kfree(orph);
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001049 ubifs_err(c, "orphan list not empty at unmount");
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001050 }
1051
1052 vfree(c->orph_buf);
1053 c->orph_buf = NULL;
1054}
1055
Heiko Schocherff94bc42014-06-24 10:10:04 +02001056/**
1057 * free_buds - free per-bud objects.
1058 * @c: UBIFS file-system description object
1059 */
1060static void free_buds(struct ubifs_info *c)
1061{
1062 struct ubifs_bud *bud, *n;
1063
1064 rbtree_postorder_for_each_entry_safe(bud, n, &c->buds, rb)
1065 kfree(bud);
1066}
Heiko Schocherff94bc42014-06-24 10:10:04 +02001067
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001068/**
1069 * check_volume_empty - check if the UBI volume is empty.
1070 * @c: UBIFS file-system description object
1071 *
1072 * This function checks if the UBIFS volume is empty by looking if its LEBs are
1073 * mapped or not. The result of checking is stored in the @c->empty variable.
1074 * Returns zero in case of success and a negative error code in case of
1075 * failure.
1076 */
1077static int check_volume_empty(struct ubifs_info *c)
1078{
1079 int lnum, err;
1080
1081 c->empty = 1;
1082 for (lnum = 0; lnum < c->leb_cnt; lnum++) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001083 err = ubifs_is_mapped(c, lnum);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001084 if (unlikely(err < 0))
1085 return err;
1086 if (err == 1) {
1087 c->empty = 0;
1088 break;
1089 }
1090
1091 cond_resched();
1092 }
1093
1094 return 0;
1095}
1096
Heiko Schocherff94bc42014-06-24 10:10:04 +02001097/*
1098 * UBIFS mount options.
1099 *
1100 * Opt_fast_unmount: do not run a journal commit before un-mounting
1101 * Opt_norm_unmount: run a journal commit before un-mounting
1102 * Opt_bulk_read: enable bulk-reads
1103 * Opt_no_bulk_read: disable bulk-reads
1104 * Opt_chk_data_crc: check CRCs when reading data nodes
1105 * Opt_no_chk_data_crc: do not check CRCs when reading data nodes
1106 * Opt_override_compr: override default compressor
1107 * Opt_err: just end of array marker
1108 */
1109enum {
1110 Opt_fast_unmount,
1111 Opt_norm_unmount,
1112 Opt_bulk_read,
1113 Opt_no_bulk_read,
1114 Opt_chk_data_crc,
1115 Opt_no_chk_data_crc,
1116 Opt_override_compr,
1117 Opt_err,
1118};
1119
1120#ifndef __UBOOT__
1121static const match_table_t tokens = {
1122 {Opt_fast_unmount, "fast_unmount"},
1123 {Opt_norm_unmount, "norm_unmount"},
1124 {Opt_bulk_read, "bulk_read"},
1125 {Opt_no_bulk_read, "no_bulk_read"},
1126 {Opt_chk_data_crc, "chk_data_crc"},
1127 {Opt_no_chk_data_crc, "no_chk_data_crc"},
1128 {Opt_override_compr, "compr=%s"},
1129 {Opt_err, NULL},
1130};
1131
1132/**
1133 * parse_standard_option - parse a standard mount option.
1134 * @option: the option to parse
1135 *
1136 * Normally, standard mount options like "sync" are passed to file-systems as
1137 * flags. However, when a "rootflags=" kernel boot parameter is used, they may
1138 * be present in the options string. This function tries to deal with this
1139 * situation and parse standard options. Returns 0 if the option was not
1140 * recognized, and the corresponding integer flag if it was.
1141 *
1142 * UBIFS is only interested in the "sync" option, so do not check for anything
1143 * else.
1144 */
1145static int parse_standard_option(const char *option)
1146{
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001147
1148 pr_notice("UBIFS: parse %s\n", option);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001149 if (!strcmp(option, "sync"))
1150 return MS_SYNCHRONOUS;
1151 return 0;
1152}
1153
1154/**
1155 * ubifs_parse_options - parse mount parameters.
1156 * @c: UBIFS file-system description object
1157 * @options: parameters to parse
1158 * @is_remount: non-zero if this is FS re-mount
1159 *
1160 * This function parses UBIFS mount options and returns zero in case success
1161 * and a negative error code in case of failure.
1162 */
1163static int ubifs_parse_options(struct ubifs_info *c, char *options,
1164 int is_remount)
1165{
1166 char *p;
1167 substring_t args[MAX_OPT_ARGS];
1168
1169 if (!options)
1170 return 0;
1171
1172 while ((p = strsep(&options, ","))) {
1173 int token;
1174
1175 if (!*p)
1176 continue;
1177
1178 token = match_token(p, tokens, args);
1179 switch (token) {
1180 /*
1181 * %Opt_fast_unmount and %Opt_norm_unmount options are ignored.
1182 * We accept them in order to be backward-compatible. But this
1183 * should be removed at some point.
1184 */
1185 case Opt_fast_unmount:
1186 c->mount_opts.unmount_mode = 2;
1187 break;
1188 case Opt_norm_unmount:
1189 c->mount_opts.unmount_mode = 1;
1190 break;
1191 case Opt_bulk_read:
1192 c->mount_opts.bulk_read = 2;
1193 c->bulk_read = 1;
1194 break;
1195 case Opt_no_bulk_read:
1196 c->mount_opts.bulk_read = 1;
1197 c->bulk_read = 0;
1198 break;
1199 case Opt_chk_data_crc:
1200 c->mount_opts.chk_data_crc = 2;
1201 c->no_chk_data_crc = 0;
1202 break;
1203 case Opt_no_chk_data_crc:
1204 c->mount_opts.chk_data_crc = 1;
1205 c->no_chk_data_crc = 1;
1206 break;
1207 case Opt_override_compr:
1208 {
1209 char *name = match_strdup(&args[0]);
1210
1211 if (!name)
1212 return -ENOMEM;
1213 if (!strcmp(name, "none"))
1214 c->mount_opts.compr_type = UBIFS_COMPR_NONE;
1215 else if (!strcmp(name, "lzo"))
1216 c->mount_opts.compr_type = UBIFS_COMPR_LZO;
1217 else if (!strcmp(name, "zlib"))
1218 c->mount_opts.compr_type = UBIFS_COMPR_ZLIB;
1219 else {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001220 ubifs_err(c, "unknown compressor \"%s\"", name); //FIXME: is c ready?
Heiko Schocherff94bc42014-06-24 10:10:04 +02001221 kfree(name);
1222 return -EINVAL;
1223 }
1224 kfree(name);
1225 c->mount_opts.override_compr = 1;
1226 c->default_compr = c->mount_opts.compr_type;
1227 break;
1228 }
1229 default:
1230 {
1231 unsigned long flag;
1232 struct super_block *sb = c->vfs_sb;
1233
1234 flag = parse_standard_option(p);
1235 if (!flag) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001236 ubifs_err(c, "unrecognized mount option \"%s\" or missing value",
Heiko Schocherff94bc42014-06-24 10:10:04 +02001237 p);
1238 return -EINVAL;
1239 }
1240 sb->s_flags |= flag;
1241 break;
1242 }
1243 }
1244 }
1245
1246 return 0;
1247}
Anton Habegger040cc7b2015-01-22 22:29:11 +01001248#endif
Heiko Schocherff94bc42014-06-24 10:10:04 +02001249
1250/**
1251 * destroy_journal - destroy journal data structures.
1252 * @c: UBIFS file-system description object
1253 *
1254 * This function destroys journal data structures including those that may have
1255 * been created by recovery functions.
1256 */
1257static void destroy_journal(struct ubifs_info *c)
1258{
1259 while (!list_empty(&c->unclean_leb_list)) {
1260 struct ubifs_unclean_leb *ucleb;
1261
1262 ucleb = list_entry(c->unclean_leb_list.next,
1263 struct ubifs_unclean_leb, list);
1264 list_del(&ucleb->list);
1265 kfree(ucleb);
1266 }
1267 while (!list_empty(&c->old_buds)) {
1268 struct ubifs_bud *bud;
1269
1270 bud = list_entry(c->old_buds.next, struct ubifs_bud, list);
1271 list_del(&bud->list);
1272 kfree(bud);
1273 }
1274 ubifs_destroy_idx_gc(c);
1275 ubifs_destroy_size_tree(c);
1276 ubifs_tnc_close(c);
1277 free_buds(c);
1278}
Heiko Schocherff94bc42014-06-24 10:10:04 +02001279
1280/**
1281 * bu_init - initialize bulk-read information.
1282 * @c: UBIFS file-system description object
1283 */
1284static void bu_init(struct ubifs_info *c)
1285{
1286 ubifs_assert(c->bulk_read == 1);
1287
1288 if (c->bu.buf)
1289 return; /* Already initialized */
1290
1291again:
1292 c->bu.buf = kmalloc(c->max_bu_buf_len, GFP_KERNEL | __GFP_NOWARN);
1293 if (!c->bu.buf) {
1294 if (c->max_bu_buf_len > UBIFS_KMALLOC_OK) {
1295 c->max_bu_buf_len = UBIFS_KMALLOC_OK;
1296 goto again;
1297 }
1298
1299 /* Just disable bulk-read */
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001300 ubifs_warn(c, "cannot allocate %d bytes of memory for bulk-read, disabling it",
Heiko Schocherff94bc42014-06-24 10:10:04 +02001301 c->max_bu_buf_len);
1302 c->mount_opts.bulk_read = 1;
1303 c->bulk_read = 0;
1304 return;
1305 }
1306}
1307
1308#ifndef __UBOOT__
1309/**
1310 * check_free_space - check if there is enough free space to mount.
1311 * @c: UBIFS file-system description object
1312 *
1313 * This function makes sure UBIFS has enough free space to be mounted in
1314 * read/write mode. UBIFS must always have some free space to allow deletions.
1315 */
1316static int check_free_space(struct ubifs_info *c)
1317{
1318 ubifs_assert(c->dark_wm > 0);
1319 if (c->lst.total_free + c->lst.total_dirty < c->dark_wm) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001320 ubifs_err(c, "insufficient free space to mount in R/W mode");
Heiko Schocherff94bc42014-06-24 10:10:04 +02001321 ubifs_dump_budg(c, &c->bi);
1322 ubifs_dump_lprops(c);
1323 return -ENOSPC;
1324 }
1325 return 0;
1326}
1327#endif
1328
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001329/**
1330 * mount_ubifs - mount UBIFS file-system.
1331 * @c: UBIFS file-system description object
1332 *
1333 * This function mounts UBIFS file system. Returns zero in case of success and
1334 * a negative error code in case of failure.
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001335 */
1336static int mount_ubifs(struct ubifs_info *c)
1337{
Heiko Schocherff94bc42014-06-24 10:10:04 +02001338 int err;
Petr Vorelafb6fda2018-03-24 01:49:23 +01001339 long long x;
1340#ifndef CONFIG_UBIFS_SILENCE_MSG
1341 long long y;
1342#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001343 size_t sz;
1344
Heiko Schocherff94bc42014-06-24 10:10:04 +02001345 c->ro_mount = !!(c->vfs_sb->s_flags & MS_RDONLY);
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001346 /* Suppress error messages while probing if MS_SILENT is set */
1347 c->probing = !!(c->vfs_sb->s_flags & MS_SILENT);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001348#ifdef __UBOOT__
1349 if (!c->ro_mount) {
1350 printf("UBIFS: only ro mode in U-Boot allowed.\n");
1351 return -EACCES;
1352 }
1353#endif
1354
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001355 err = init_constants_early(c);
1356 if (err)
1357 return err;
1358
1359 err = ubifs_debugging_init(c);
1360 if (err)
1361 return err;
1362
1363 err = check_volume_empty(c);
1364 if (err)
1365 goto out_free;
1366
Heiko Schocherff94bc42014-06-24 10:10:04 +02001367 if (c->empty && (c->ro_mount || c->ro_media)) {
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001368 /*
1369 * This UBI volume is empty, and read-only, or the file system
1370 * is mounted read-only - we cannot format it.
1371 */
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001372 ubifs_err(c, "can't format empty UBI volume: read-only %s",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001373 c->ro_media ? "UBI volume" : "mount");
1374 err = -EROFS;
1375 goto out_free;
1376 }
1377
Heiko Schocherff94bc42014-06-24 10:10:04 +02001378 if (c->ro_media && !c->ro_mount) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001379 ubifs_err(c, "cannot mount read-write - read-only media");
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001380 err = -EROFS;
1381 goto out_free;
1382 }
1383
1384 /*
1385 * The requirement for the buffer is that it should fit indexing B-tree
1386 * height amount of integers. We assume the height if the TNC tree will
1387 * never exceed 64.
1388 */
1389 err = -ENOMEM;
1390 c->bottom_up_buf = kmalloc(BOTTOM_UP_HEIGHT * sizeof(int), GFP_KERNEL);
1391 if (!c->bottom_up_buf)
1392 goto out_free;
1393
1394 c->sbuf = vmalloc(c->leb_size);
1395 if (!c->sbuf)
1396 goto out_free;
1397
Heiko Schocherff94bc42014-06-24 10:10:04 +02001398#ifndef __UBOOT__
1399 if (!c->ro_mount) {
1400 c->ileb_buf = vmalloc(c->leb_size);
1401 if (!c->ileb_buf)
1402 goto out_free;
1403 }
1404#endif
1405
1406 if (c->bulk_read == 1)
1407 bu_init(c);
1408
1409#ifndef __UBOOT__
1410 if (!c->ro_mount) {
1411 c->write_reserve_buf = kmalloc(COMPRESSED_DATA_NODE_BUF_SZ,
1412 GFP_KERNEL);
1413 if (!c->write_reserve_buf)
1414 goto out_free;
1415 }
1416#endif
1417
1418 c->mounting = 1;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001419
1420 err = ubifs_read_superblock(c);
1421 if (err)
1422 goto out_free;
1423
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001424 c->probing = 0;
1425
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001426 /*
1427 * Make sure the compressor which is set as default in the superblock
1428 * or overridden by mount options is actually compiled in.
1429 */
1430 if (!ubifs_compr_present(c->default_compr)) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001431 ubifs_err(c, "'compressor \"%s\" is not compiled in",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001432 ubifs_compr_name(c->default_compr));
Heiko Schocherff94bc42014-06-24 10:10:04 +02001433 err = -ENOTSUPP;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001434 goto out_free;
1435 }
1436
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001437 err = init_constants_sb(c);
1438 if (err)
1439 goto out_free;
1440
1441 sz = ALIGN(c->max_idx_node_sz, c->min_io_size);
1442 sz = ALIGN(sz + c->max_idx_node_sz, c->min_io_size);
1443 c->cbuf = kmalloc(sz, GFP_NOFS);
1444 if (!c->cbuf) {
1445 err = -ENOMEM;
1446 goto out_free;
1447 }
1448
Heiko Schocherff94bc42014-06-24 10:10:04 +02001449 err = alloc_wbufs(c);
1450 if (err)
1451 goto out_cbuf;
1452
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001453 sprintf(c->bgt_name, BGT_NAME_PATTERN, c->vi.ubi_num, c->vi.vol_id);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001454#ifndef __UBOOT__
1455 if (!c->ro_mount) {
1456 /* Create background thread */
1457 c->bgt = kthread_create(ubifs_bg_thread, c, "%s", c->bgt_name);
1458 if (IS_ERR(c->bgt)) {
1459 err = PTR_ERR(c->bgt);
1460 c->bgt = NULL;
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001461 ubifs_err(c, "cannot spawn \"%s\", error %d",
Heiko Schocherff94bc42014-06-24 10:10:04 +02001462 c->bgt_name, err);
1463 goto out_wbufs;
1464 }
1465 wake_up_process(c->bgt);
1466 }
1467#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001468
1469 err = ubifs_read_master(c);
1470 if (err)
1471 goto out_master;
1472
1473 init_constants_master(c);
1474
1475 if ((c->mst_node->flags & cpu_to_le32(UBIFS_MST_DIRTY)) != 0) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001476 ubifs_msg(c, "recovery needed");
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001477 c->need_recovery = 1;
1478 }
1479
Heiko Schocherff94bc42014-06-24 10:10:04 +02001480#ifndef __UBOOT__
1481 if (c->need_recovery && !c->ro_mount) {
1482 err = ubifs_recover_inl_heads(c, c->sbuf);
1483 if (err)
1484 goto out_master;
1485 }
1486#endif
1487
1488 err = ubifs_lpt_init(c, 1, !c->ro_mount);
1489 if (err)
1490 goto out_master;
1491
1492#ifndef __UBOOT__
1493 if (!c->ro_mount && c->space_fixup) {
1494 err = ubifs_fixup_free_space(c);
1495 if (err)
1496 goto out_lpt;
1497 }
1498
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001499 if (!c->ro_mount && !c->need_recovery) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001500 /*
1501 * Set the "dirty" flag so that if we reboot uncleanly we
1502 * will notice this immediately on the next mount.
1503 */
1504 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY);
1505 err = ubifs_write_master(c);
1506 if (err)
1507 goto out_lpt;
1508 }
1509#endif
1510
1511 err = dbg_check_idx_size(c, c->bi.old_idx_sz);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001512 if (err)
1513 goto out_lpt;
1514
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001515 err = ubifs_replay_journal(c);
1516 if (err)
1517 goto out_journal;
1518
Heiko Schocherff94bc42014-06-24 10:10:04 +02001519 /* Calculate 'min_idx_lebs' after journal replay */
1520 c->bi.min_idx_lebs = ubifs_calc_min_idx_lebs(c);
1521
1522 err = ubifs_mount_orphans(c, c->need_recovery, c->ro_mount);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001523 if (err)
1524 goto out_orphans;
1525
Heiko Schocherff94bc42014-06-24 10:10:04 +02001526 if (!c->ro_mount) {
1527#ifndef __UBOOT__
1528 int lnum;
1529
1530 err = check_free_space(c);
1531 if (err)
1532 goto out_orphans;
1533
1534 /* Check for enough log space */
1535 lnum = c->lhead_lnum + 1;
1536 if (lnum >= UBIFS_LOG_LNUM + c->log_lebs)
1537 lnum = UBIFS_LOG_LNUM;
1538 if (lnum == c->ltail_lnum) {
1539 err = ubifs_consolidate_log(c);
1540 if (err)
1541 goto out_orphans;
1542 }
1543
1544 if (c->need_recovery) {
1545 err = ubifs_recover_size(c);
1546 if (err)
1547 goto out_orphans;
1548 err = ubifs_rcvry_gc_commit(c);
1549 if (err)
1550 goto out_orphans;
1551 } else {
1552 err = take_gc_lnum(c);
1553 if (err)
1554 goto out_orphans;
1555
1556 /*
1557 * GC LEB may contain garbage if there was an unclean
1558 * reboot, and it should be un-mapped.
1559 */
1560 err = ubifs_leb_unmap(c, c->gc_lnum);
1561 if (err)
1562 goto out_orphans;
1563 }
1564
1565 err = dbg_check_lprops(c);
1566 if (err)
1567 goto out_orphans;
1568#endif
1569 } else if (c->need_recovery) {
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001570 err = ubifs_recover_size(c);
1571 if (err)
1572 goto out_orphans;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001573 } else {
1574 /*
1575 * Even if we mount read-only, we have to set space in GC LEB
1576 * to proper value because this affects UBIFS free space
1577 * reporting. We do not want to have a situation when
1578 * re-mounting from R/O to R/W changes amount of free space.
1579 */
1580 err = take_gc_lnum(c);
1581 if (err)
1582 goto out_orphans;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001583 }
1584
Heiko Schocherff94bc42014-06-24 10:10:04 +02001585#ifndef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001586 spin_lock(&ubifs_infos_lock);
1587 list_add_tail(&c->infos_list, &ubifs_infos);
1588 spin_unlock(&ubifs_infos_lock);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001589#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001590
1591 if (c->need_recovery) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001592 if (c->ro_mount)
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001593 ubifs_msg(c, "recovery deferred");
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001594 else {
1595 c->need_recovery = 0;
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001596 ubifs_msg(c, "recovery completed");
Heiko Schocherff94bc42014-06-24 10:10:04 +02001597 /*
1598 * GC LEB has to be empty and taken at this point. But
1599 * the journal head LEBs may also be accounted as
1600 * "empty taken" if they are empty.
1601 */
1602 ubifs_assert(c->lst.taken_empty_lebs > 0);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001603 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001604 } else
1605 ubifs_assert(c->lst.taken_empty_lebs > 0);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001606
1607 err = dbg_check_filesystem(c);
1608 if (err)
1609 goto out_infos;
1610
Heiko Schocherff94bc42014-06-24 10:10:04 +02001611 err = dbg_debugfs_init_fs(c);
1612 if (err)
1613 goto out_infos;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001614
Heiko Schocherff94bc42014-06-24 10:10:04 +02001615 c->mounting = 0;
1616
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001617 ubifs_msg(c, "UBIFS: mounted UBI device %d, volume %d, name \"%s\"%s",
Heiko Schocherff94bc42014-06-24 10:10:04 +02001618 c->vi.ubi_num, c->vi.vol_id, c->vi.name,
1619 c->ro_mount ? ", R/O mode" : "");
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001620 x = (long long)c->main_lebs * c->leb_size;
Petr Vorelafb6fda2018-03-24 01:49:23 +01001621#ifndef CONFIG_UBIFS_SILENCE_MSG
Heiko Schocherff94bc42014-06-24 10:10:04 +02001622 y = (long long)c->log_lebs * c->leb_size + c->max_bud_bytes;
Petr Vorelafb6fda2018-03-24 01:49:23 +01001623#endif
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001624 ubifs_msg(c, "LEB size: %d bytes (%d KiB), min./max. I/O unit sizes: %d bytes/%d bytes",
Heiko Schocherff94bc42014-06-24 10:10:04 +02001625 c->leb_size, c->leb_size >> 10, c->min_io_size,
1626 c->max_write_size);
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001627 ubifs_msg(c, "FS size: %lld bytes (%lld MiB, %d LEBs), journal size %lld bytes (%lld MiB, %d LEBs)",
Heiko Schocherff94bc42014-06-24 10:10:04 +02001628 x, x >> 20, c->main_lebs,
1629 y, y >> 20, c->log_lebs + c->max_bud_cnt);
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001630 ubifs_msg(c, "reserved for root: %llu bytes (%llu KiB)",
Heiko Schocherff94bc42014-06-24 10:10:04 +02001631 c->report_rp_size, c->report_rp_size >> 10);
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001632 ubifs_msg(c, "media format: w%d/r%d (latest is w%d/r%d), UUID %pUB%s",
Artem Bityutskiyfebd7e42009-03-27 10:21:14 +01001633 c->fmt_version, c->ro_compat_version,
Heiko Schocherff94bc42014-06-24 10:10:04 +02001634 UBIFS_FORMAT_VERSION, UBIFS_RO_COMPAT_VERSION, c->uuid,
1635 c->big_lpt ? ", big LPT model" : ", small LPT model");
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001636
Heiko Schocherff94bc42014-06-24 10:10:04 +02001637 dbg_gen("default compressor: %s", ubifs_compr_name(c->default_compr));
1638 dbg_gen("data journal heads: %d",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001639 c->jhead_cnt - NONDATA_JHEADS_CNT);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001640 dbg_gen("log LEBs: %d (%d - %d)",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001641 c->log_lebs, UBIFS_LOG_LNUM, c->log_last);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001642 dbg_gen("LPT area LEBs: %d (%d - %d)",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001643 c->lpt_lebs, c->lpt_first, c->lpt_last);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001644 dbg_gen("orphan area LEBs: %d (%d - %d)",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001645 c->orph_lebs, c->orph_first, c->orph_last);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001646 dbg_gen("main area LEBs: %d (%d - %d)",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001647 c->main_lebs, c->main_first, c->leb_cnt - 1);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001648 dbg_gen("index LEBs: %d", c->lst.idx_lebs);
1649 dbg_gen("total index bytes: %lld (%lld KiB, %lld MiB)",
1650 c->bi.old_idx_sz, c->bi.old_idx_sz >> 10,
1651 c->bi.old_idx_sz >> 20);
1652 dbg_gen("key hash type: %d", c->key_hash_type);
1653 dbg_gen("tree fanout: %d", c->fanout);
1654 dbg_gen("reserved GC LEB: %d", c->gc_lnum);
1655 dbg_gen("max. znode size %d", c->max_znode_sz);
1656 dbg_gen("max. index node size %d", c->max_idx_node_sz);
1657 dbg_gen("node sizes: data %zu, inode %zu, dentry %zu",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001658 UBIFS_DATA_NODE_SZ, UBIFS_INO_NODE_SZ, UBIFS_DENT_NODE_SZ);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001659 dbg_gen("node sizes: trun %zu, sb %zu, master %zu",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001660 UBIFS_TRUN_NODE_SZ, UBIFS_SB_NODE_SZ, UBIFS_MST_NODE_SZ);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001661 dbg_gen("node sizes: ref %zu, cmt. start %zu, orph %zu",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001662 UBIFS_REF_NODE_SZ, UBIFS_CS_NODE_SZ, UBIFS_ORPH_NODE_SZ);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001663 dbg_gen("max. node sizes: data %zu, inode %zu dentry %zu, idx %d",
Wolfgang Denk93e14592013-10-04 17:43:24 +02001664 UBIFS_MAX_DATA_NODE_SZ, UBIFS_MAX_INO_NODE_SZ,
Heiko Schocherff94bc42014-06-24 10:10:04 +02001665 UBIFS_MAX_DENT_NODE_SZ, ubifs_idx_node_sz(c, c->fanout));
1666 dbg_gen("dead watermark: %d", c->dead_wm);
1667 dbg_gen("dark watermark: %d", c->dark_wm);
1668 dbg_gen("LEB overhead: %d", c->leb_overhead);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001669 x = (long long)c->main_lebs * c->dark_wm;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001670 dbg_gen("max. dark space: %lld (%lld KiB, %lld MiB)",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001671 x, x >> 10, x >> 20);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001672 dbg_gen("maximum bud bytes: %lld (%lld KiB, %lld MiB)",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001673 c->max_bud_bytes, c->max_bud_bytes >> 10,
1674 c->max_bud_bytes >> 20);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001675 dbg_gen("BG commit bud bytes: %lld (%lld KiB, %lld MiB)",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001676 c->bg_bud_bytes, c->bg_bud_bytes >> 10,
1677 c->bg_bud_bytes >> 20);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001678 dbg_gen("current bud bytes %lld (%lld KiB, %lld MiB)",
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001679 c->bud_bytes, c->bud_bytes >> 10, c->bud_bytes >> 20);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001680 dbg_gen("max. seq. number: %llu", c->max_sqnum);
1681 dbg_gen("commit number: %llu", c->cmt_no);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001682
1683 return 0;
1684
1685out_infos:
1686 spin_lock(&ubifs_infos_lock);
1687 list_del(&c->infos_list);
1688 spin_unlock(&ubifs_infos_lock);
1689out_orphans:
1690 free_orphans(c);
1691out_journal:
Heiko Schocherff94bc42014-06-24 10:10:04 +02001692 destroy_journal(c);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001693out_lpt:
1694 ubifs_lpt_free(c, 0);
1695out_master:
1696 kfree(c->mst_node);
1697 kfree(c->rcvrd_mst_node);
1698 if (c->bgt)
1699 kthread_stop(c->bgt);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001700#ifndef __UBOOT__
1701out_wbufs:
1702#endif
1703 free_wbufs(c);
1704out_cbuf:
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001705 kfree(c->cbuf);
1706out_free:
Heiko Schocherff94bc42014-06-24 10:10:04 +02001707 kfree(c->write_reserve_buf);
1708 kfree(c->bu.buf);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001709 vfree(c->ileb_buf);
1710 vfree(c->sbuf);
1711 kfree(c->bottom_up_buf);
1712 ubifs_debugging_exit(c);
1713 return err;
1714}
1715
1716/**
1717 * ubifs_umount - un-mount UBIFS file-system.
1718 * @c: UBIFS file-system description object
1719 *
1720 * Note, this function is called to free allocated resourced when un-mounting,
1721 * as well as free resources when an error occurred while we were half way
1722 * through mounting (error path cleanup function). So it has to make sure the
1723 * resource was actually allocated before freeing it.
1724 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02001725#ifndef __UBOOT__
1726static void ubifs_umount(struct ubifs_info *c)
1727#else
Stefan Roesecb9c09d2010-10-28 14:09:22 +02001728void ubifs_umount(struct ubifs_info *c)
Heiko Schocherff94bc42014-06-24 10:10:04 +02001729#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001730{
1731 dbg_gen("un-mounting UBI device %d, volume %d", c->vi.ubi_num,
1732 c->vi.vol_id);
1733
Heiko Schocherff94bc42014-06-24 10:10:04 +02001734 dbg_debugfs_exit_fs(c);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001735 spin_lock(&ubifs_infos_lock);
1736 list_del(&c->infos_list);
1737 spin_unlock(&ubifs_infos_lock);
1738
Heiko Schocherff94bc42014-06-24 10:10:04 +02001739#ifndef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001740 if (c->bgt)
1741 kthread_stop(c->bgt);
1742
Heiko Schocherff94bc42014-06-24 10:10:04 +02001743 destroy_journal(c);
1744#endif
1745 free_wbufs(c);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001746 free_orphans(c);
1747 ubifs_lpt_free(c, 0);
1748
1749 kfree(c->cbuf);
1750 kfree(c->rcvrd_mst_node);
1751 kfree(c->mst_node);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001752 kfree(c->write_reserve_buf);
1753 kfree(c->bu.buf);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001754 vfree(c->ileb_buf);
1755 vfree(c->sbuf);
1756 kfree(c->bottom_up_buf);
1757 ubifs_debugging_exit(c);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001758#ifdef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001759 /* Finally free U-Boot's global copy of superblock */
Lars Poeschel349a8d52011-10-12 11:31:19 +02001760 if (ubifs_sb != NULL) {
1761 free(ubifs_sb->s_fs_info);
1762 free(ubifs_sb);
1763 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001764#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001765}
1766
Heiko Schocherff94bc42014-06-24 10:10:04 +02001767#ifndef __UBOOT__
1768/**
1769 * ubifs_remount_rw - re-mount in read-write mode.
1770 * @c: UBIFS file-system description object
1771 *
1772 * UBIFS avoids allocating many unnecessary resources when mounted in read-only
1773 * mode. This function allocates the needed resources and re-mounts UBIFS in
1774 * read-write mode.
1775 */
1776static int ubifs_remount_rw(struct ubifs_info *c)
1777{
1778 int err, lnum;
1779
1780 if (c->rw_incompat) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001781 ubifs_err(c, "the file-system is not R/W-compatible");
1782 ubifs_msg(c, "on-flash format version is w%d/r%d, but software only supports up to version w%d/r%d",
Heiko Schocherff94bc42014-06-24 10:10:04 +02001783 c->fmt_version, c->ro_compat_version,
1784 UBIFS_FORMAT_VERSION, UBIFS_RO_COMPAT_VERSION);
1785 return -EROFS;
1786 }
1787
1788 mutex_lock(&c->umount_mutex);
1789 dbg_save_space_info(c);
1790 c->remounting_rw = 1;
1791 c->ro_mount = 0;
1792
1793 if (c->space_fixup) {
1794 err = ubifs_fixup_free_space(c);
1795 if (err)
Heiko Schocher4e67c572014-07-15 16:08:43 +02001796 goto out;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001797 }
1798
1799 err = check_free_space(c);
1800 if (err)
1801 goto out;
1802
1803 if (c->old_leb_cnt != c->leb_cnt) {
1804 struct ubifs_sb_node *sup;
1805
1806 sup = ubifs_read_sb_node(c);
1807 if (IS_ERR(sup)) {
1808 err = PTR_ERR(sup);
1809 goto out;
1810 }
1811 sup->leb_cnt = cpu_to_le32(c->leb_cnt);
1812 err = ubifs_write_sb_node(c, sup);
1813 kfree(sup);
1814 if (err)
1815 goto out;
1816 }
1817
1818 if (c->need_recovery) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001819 ubifs_msg(c, "completing deferred recovery");
Heiko Schocherff94bc42014-06-24 10:10:04 +02001820 err = ubifs_write_rcvrd_mst_node(c);
1821 if (err)
1822 goto out;
1823 err = ubifs_recover_size(c);
1824 if (err)
1825 goto out;
1826 err = ubifs_clean_lebs(c, c->sbuf);
1827 if (err)
1828 goto out;
1829 err = ubifs_recover_inl_heads(c, c->sbuf);
1830 if (err)
1831 goto out;
1832 } else {
1833 /* A readonly mount is not allowed to have orphans */
1834 ubifs_assert(c->tot_orphans == 0);
1835 err = ubifs_clear_orphans(c);
1836 if (err)
1837 goto out;
1838 }
1839
1840 if (!(c->mst_node->flags & cpu_to_le32(UBIFS_MST_DIRTY))) {
1841 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY);
1842 err = ubifs_write_master(c);
1843 if (err)
1844 goto out;
1845 }
1846
1847 c->ileb_buf = vmalloc(c->leb_size);
1848 if (!c->ileb_buf) {
1849 err = -ENOMEM;
1850 goto out;
1851 }
1852
1853 c->write_reserve_buf = kmalloc(COMPRESSED_DATA_NODE_BUF_SZ, GFP_KERNEL);
1854 if (!c->write_reserve_buf) {
1855 err = -ENOMEM;
1856 goto out;
1857 }
1858
1859 err = ubifs_lpt_init(c, 0, 1);
1860 if (err)
1861 goto out;
1862
1863 /* Create background thread */
1864 c->bgt = kthread_create(ubifs_bg_thread, c, "%s", c->bgt_name);
1865 if (IS_ERR(c->bgt)) {
1866 err = PTR_ERR(c->bgt);
1867 c->bgt = NULL;
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001868 ubifs_err(c, "cannot spawn \"%s\", error %d",
Heiko Schocherff94bc42014-06-24 10:10:04 +02001869 c->bgt_name, err);
1870 goto out;
1871 }
1872 wake_up_process(c->bgt);
1873
1874 c->orph_buf = vmalloc(c->leb_size);
1875 if (!c->orph_buf) {
1876 err = -ENOMEM;
1877 goto out;
1878 }
1879
1880 /* Check for enough log space */
1881 lnum = c->lhead_lnum + 1;
1882 if (lnum >= UBIFS_LOG_LNUM + c->log_lebs)
1883 lnum = UBIFS_LOG_LNUM;
1884 if (lnum == c->ltail_lnum) {
1885 err = ubifs_consolidate_log(c);
1886 if (err)
1887 goto out;
1888 }
1889
1890 if (c->need_recovery)
1891 err = ubifs_rcvry_gc_commit(c);
1892 else
1893 err = ubifs_leb_unmap(c, c->gc_lnum);
1894 if (err)
1895 goto out;
1896
1897 dbg_gen("re-mounted read-write");
1898 c->remounting_rw = 0;
1899
1900 if (c->need_recovery) {
1901 c->need_recovery = 0;
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001902 ubifs_msg(c, "deferred recovery completed");
Heiko Schocherff94bc42014-06-24 10:10:04 +02001903 } else {
1904 /*
1905 * Do not run the debugging space check if the were doing
1906 * recovery, because when we saved the information we had the
1907 * file-system in a state where the TNC and lprops has been
1908 * modified in memory, but all the I/O operations (including a
1909 * commit) were deferred. So the file-system was in
1910 * "non-committed" state. Now the file-system is in committed
1911 * state, and of course the amount of free space will change
1912 * because, for example, the old index size was imprecise.
1913 */
1914 err = dbg_check_space_info(c);
1915 }
1916
1917 mutex_unlock(&c->umount_mutex);
1918 return err;
1919
1920out:
1921 c->ro_mount = 1;
1922 vfree(c->orph_buf);
1923 c->orph_buf = NULL;
1924 if (c->bgt) {
1925 kthread_stop(c->bgt);
1926 c->bgt = NULL;
1927 }
1928 free_wbufs(c);
1929 kfree(c->write_reserve_buf);
1930 c->write_reserve_buf = NULL;
1931 vfree(c->ileb_buf);
1932 c->ileb_buf = NULL;
1933 ubifs_lpt_free(c, 1);
1934 c->remounting_rw = 0;
1935 mutex_unlock(&c->umount_mutex);
1936 return err;
1937}
1938
1939/**
1940 * ubifs_remount_ro - re-mount in read-only mode.
1941 * @c: UBIFS file-system description object
1942 *
1943 * We assume VFS has stopped writing. Possibly the background thread could be
1944 * running a commit, however kthread_stop will wait in that case.
1945 */
1946static void ubifs_remount_ro(struct ubifs_info *c)
1947{
1948 int i, err;
1949
1950 ubifs_assert(!c->need_recovery);
1951 ubifs_assert(!c->ro_mount);
1952
1953 mutex_lock(&c->umount_mutex);
1954 if (c->bgt) {
1955 kthread_stop(c->bgt);
1956 c->bgt = NULL;
1957 }
1958
1959 dbg_save_space_info(c);
1960
1961 for (i = 0; i < c->jhead_cnt; i++)
1962 ubifs_wbuf_sync(&c->jheads[i].wbuf);
1963
1964 c->mst_node->flags &= ~cpu_to_le32(UBIFS_MST_DIRTY);
1965 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_NO_ORPHS);
1966 c->mst_node->gc_lnum = cpu_to_le32(c->gc_lnum);
1967 err = ubifs_write_master(c);
1968 if (err)
1969 ubifs_ro_mode(c, err);
1970
1971 vfree(c->orph_buf);
1972 c->orph_buf = NULL;
1973 kfree(c->write_reserve_buf);
1974 c->write_reserve_buf = NULL;
1975 vfree(c->ileb_buf);
1976 c->ileb_buf = NULL;
1977 ubifs_lpt_free(c, 1);
1978 c->ro_mount = 1;
1979 err = dbg_check_space_info(c);
1980 if (err)
1981 ubifs_ro_mode(c, err);
1982 mutex_unlock(&c->umount_mutex);
1983}
1984
1985static void ubifs_put_super(struct super_block *sb)
1986{
1987 int i;
1988 struct ubifs_info *c = sb->s_fs_info;
1989
Heiko Schocher0195a7b2015-10-22 06:19:21 +02001990 ubifs_msg(c, "un-mount UBI device %d", c->vi.ubi_num);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001991
1992 /*
1993 * The following asserts are only valid if there has not been a failure
1994 * of the media. For example, there will be dirty inodes if we failed
1995 * to write them back because of I/O errors.
1996 */
1997 if (!c->ro_error) {
1998 ubifs_assert(c->bi.idx_growth == 0);
1999 ubifs_assert(c->bi.dd_growth == 0);
2000 ubifs_assert(c->bi.data_growth == 0);
2001 }
2002
2003 /*
2004 * The 'c->umount_lock' prevents races between UBIFS memory shrinker
2005 * and file system un-mount. Namely, it prevents the shrinker from
2006 * picking this superblock for shrinking - it will be just skipped if
2007 * the mutex is locked.
2008 */
2009 mutex_lock(&c->umount_mutex);
2010 if (!c->ro_mount) {
2011 /*
2012 * First of all kill the background thread to make sure it does
2013 * not interfere with un-mounting and freeing resources.
2014 */
2015 if (c->bgt) {
2016 kthread_stop(c->bgt);
2017 c->bgt = NULL;
2018 }
2019
2020 /*
2021 * On fatal errors c->ro_error is set to 1, in which case we do
2022 * not write the master node.
2023 */
2024 if (!c->ro_error) {
2025 int err;
2026
2027 /* Synchronize write-buffers */
2028 for (i = 0; i < c->jhead_cnt; i++)
2029 ubifs_wbuf_sync(&c->jheads[i].wbuf);
2030
2031 /*
2032 * We are being cleanly unmounted which means the
2033 * orphans were killed - indicate this in the master
2034 * node. Also save the reserved GC LEB number.
2035 */
2036 c->mst_node->flags &= ~cpu_to_le32(UBIFS_MST_DIRTY);
2037 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_NO_ORPHS);
2038 c->mst_node->gc_lnum = cpu_to_le32(c->gc_lnum);
2039 err = ubifs_write_master(c);
2040 if (err)
2041 /*
2042 * Recovery will attempt to fix the master area
2043 * next mount, so we just print a message and
2044 * continue to unmount normally.
2045 */
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002046 ubifs_err(c, "failed to write master node, error %d",
Heiko Schocherff94bc42014-06-24 10:10:04 +02002047 err);
2048 } else {
2049#ifndef __UBOOT__
2050 for (i = 0; i < c->jhead_cnt; i++)
2051 /* Make sure write-buffer timers are canceled */
2052 hrtimer_cancel(&c->jheads[i].wbuf.timer);
2053#endif
2054 }
2055 }
2056
2057 ubifs_umount(c);
2058#ifndef __UBOOT__
2059 bdi_destroy(&c->bdi);
2060#endif
2061 ubi_close_volume(c->ubi);
2062 mutex_unlock(&c->umount_mutex);
2063}
2064#endif
2065
2066#ifndef __UBOOT__
2067static int ubifs_remount_fs(struct super_block *sb, int *flags, char *data)
2068{
2069 int err;
2070 struct ubifs_info *c = sb->s_fs_info;
2071
Heiko Schocher4e67c572014-07-15 16:08:43 +02002072 sync_filesystem(sb);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002073 dbg_gen("old flags %#lx, new flags %#x", sb->s_flags, *flags);
2074
2075 err = ubifs_parse_options(c, data, 1);
2076 if (err) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002077 ubifs_err(c, "invalid or unknown remount parameter");
Heiko Schocherff94bc42014-06-24 10:10:04 +02002078 return err;
2079 }
2080
2081 if (c->ro_mount && !(*flags & MS_RDONLY)) {
2082 if (c->ro_error) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002083 ubifs_msg(c, "cannot re-mount R/W due to prior errors");
Heiko Schocherff94bc42014-06-24 10:10:04 +02002084 return -EROFS;
2085 }
2086 if (c->ro_media) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002087 ubifs_msg(c, "cannot re-mount R/W - UBI volume is R/O");
Heiko Schocherff94bc42014-06-24 10:10:04 +02002088 return -EROFS;
2089 }
2090 err = ubifs_remount_rw(c);
2091 if (err)
2092 return err;
2093 } else if (!c->ro_mount && (*flags & MS_RDONLY)) {
2094 if (c->ro_error) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002095 ubifs_msg(c, "cannot re-mount R/O due to prior errors");
Heiko Schocherff94bc42014-06-24 10:10:04 +02002096 return -EROFS;
2097 }
2098 ubifs_remount_ro(c);
2099 }
2100
2101 if (c->bulk_read == 1)
2102 bu_init(c);
2103 else {
2104 dbg_gen("disable bulk-read");
2105 kfree(c->bu.buf);
2106 c->bu.buf = NULL;
2107 }
2108
2109 ubifs_assert(c->lst.taken_empty_lebs > 0);
2110 return 0;
2111}
2112#endif
2113
2114const struct super_operations ubifs_super_operations = {
2115 .alloc_inode = ubifs_alloc_inode,
2116#ifndef __UBOOT__
2117 .destroy_inode = ubifs_destroy_inode,
2118 .put_super = ubifs_put_super,
2119 .write_inode = ubifs_write_inode,
2120 .evict_inode = ubifs_evict_inode,
2121 .statfs = ubifs_statfs,
2122#endif
2123 .dirty_inode = ubifs_dirty_inode,
2124#ifndef __UBOOT__
2125 .remount_fs = ubifs_remount_fs,
2126 .show_options = ubifs_show_options,
2127 .sync_fs = ubifs_sync_fs,
2128#endif
2129};
2130
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002131/**
2132 * open_ubi - parse UBI device name string and open the UBI device.
2133 * @name: UBI volume name
2134 * @mode: UBI volume open mode
2135 *
Heiko Schocherff94bc42014-06-24 10:10:04 +02002136 * The primary method of mounting UBIFS is by specifying the UBI volume
2137 * character device node path. However, UBIFS may also be mounted withoug any
2138 * character device node using one of the following methods:
2139 *
2140 * o ubiX_Y - mount UBI device number X, volume Y;
2141 * o ubiY - mount UBI device number 0, volume Y;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002142 * o ubiX:NAME - mount UBI device X, volume with name NAME;
2143 * o ubi:NAME - mount UBI device 0, volume with name NAME.
2144 *
2145 * Alternative '!' separator may be used instead of ':' (because some shells
2146 * like busybox may interpret ':' as an NFS host name separator). This function
Heiko Schocherff94bc42014-06-24 10:10:04 +02002147 * returns UBI volume description object in case of success and a negative
2148 * error code in case of failure.
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002149 */
2150static struct ubi_volume_desc *open_ubi(const char *name, int mode)
2151{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002152#ifndef __UBOOT__
2153 struct ubi_volume_desc *ubi;
2154#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002155 int dev, vol;
2156 char *endptr;
2157
Heiko Schocherff94bc42014-06-24 10:10:04 +02002158#ifndef __UBOOT__
2159 /* First, try to open using the device node path method */
2160 ubi = ubi_open_volume_path(name, mode);
2161 if (!IS_ERR(ubi))
2162 return ubi;
2163#endif
2164
2165 /* Try the "nodev" method */
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002166 if (name[0] != 'u' || name[1] != 'b' || name[2] != 'i')
2167 return ERR_PTR(-EINVAL);
2168
2169 /* ubi:NAME method */
2170 if ((name[3] == ':' || name[3] == '!') && name[4] != '\0')
2171 return ubi_open_volume_nm(0, name + 4, mode);
2172
2173 if (!isdigit(name[3]))
2174 return ERR_PTR(-EINVAL);
2175
2176 dev = simple_strtoul(name + 3, &endptr, 0);
2177
2178 /* ubiY method */
2179 if (*endptr == '\0')
2180 return ubi_open_volume(0, dev, mode);
2181
2182 /* ubiX_Y method */
2183 if (*endptr == '_' && isdigit(endptr[1])) {
2184 vol = simple_strtoul(endptr + 1, &endptr, 0);
2185 if (*endptr != '\0')
2186 return ERR_PTR(-EINVAL);
2187 return ubi_open_volume(dev, vol, mode);
2188 }
2189
2190 /* ubiX:NAME method */
2191 if ((*endptr == ':' || *endptr == '!') && endptr[1] != '\0')
2192 return ubi_open_volume_nm(dev, ++endptr, mode);
2193
2194 return ERR_PTR(-EINVAL);
2195}
2196
Heiko Schocherff94bc42014-06-24 10:10:04 +02002197static struct ubifs_info *alloc_ubifs_info(struct ubi_volume_desc *ubi)
2198{
2199 struct ubifs_info *c;
2200
2201 c = kzalloc(sizeof(struct ubifs_info), GFP_KERNEL);
2202 if (c) {
2203 spin_lock_init(&c->cnt_lock);
2204 spin_lock_init(&c->cs_lock);
2205 spin_lock_init(&c->buds_lock);
2206 spin_lock_init(&c->space_lock);
2207 spin_lock_init(&c->orphan_lock);
2208 init_rwsem(&c->commit_sem);
2209 mutex_init(&c->lp_mutex);
2210 mutex_init(&c->tnc_mutex);
2211 mutex_init(&c->log_mutex);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002212 mutex_init(&c->umount_mutex);
2213 mutex_init(&c->bu_mutex);
2214 mutex_init(&c->write_reserve_mutex);
2215 init_waitqueue_head(&c->cmt_wq);
2216 c->buds = RB_ROOT;
2217 c->old_idx = RB_ROOT;
2218 c->size_tree = RB_ROOT;
2219 c->orph_tree = RB_ROOT;
2220 INIT_LIST_HEAD(&c->infos_list);
2221 INIT_LIST_HEAD(&c->idx_gc);
2222 INIT_LIST_HEAD(&c->replay_list);
2223 INIT_LIST_HEAD(&c->replay_buds);
2224 INIT_LIST_HEAD(&c->uncat_list);
2225 INIT_LIST_HEAD(&c->empty_list);
2226 INIT_LIST_HEAD(&c->freeable_list);
2227 INIT_LIST_HEAD(&c->frdi_idx_list);
2228 INIT_LIST_HEAD(&c->unclean_leb_list);
2229 INIT_LIST_HEAD(&c->old_buds);
2230 INIT_LIST_HEAD(&c->orph_list);
2231 INIT_LIST_HEAD(&c->orph_new);
2232 c->no_chk_data_crc = 1;
2233
2234 c->highest_inum = UBIFS_FIRST_INO;
2235 c->lhead_lnum = c->ltail_lnum = UBIFS_LOG_LNUM;
2236
2237 ubi_get_volume_info(ubi, &c->vi);
2238 ubi_get_device_info(c->vi.ubi_num, &c->di);
2239 }
2240 return c;
2241}
2242
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002243static int ubifs_fill_super(struct super_block *sb, void *data, int silent)
2244{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002245 struct ubifs_info *c = sb->s_fs_info;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002246 struct inode *root;
2247 int err;
2248
Heiko Schocherff94bc42014-06-24 10:10:04 +02002249 c->vfs_sb = sb;
Heiko Schocherddf7bcf2014-07-15 16:08:42 +02002250#ifndef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002251 /* Re-open the UBI device in read-write mode */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002252 c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READWRITE);
Heiko Schocherddf7bcf2014-07-15 16:08:42 +02002253#else
2254 /* U-Boot read only mode */
2255 c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READONLY);
2256#endif
2257
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002258 if (IS_ERR(c->ubi)) {
2259 err = PTR_ERR(c->ubi);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002260 goto out;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002261 }
2262
Heiko Schocherff94bc42014-06-24 10:10:04 +02002263#ifndef __UBOOT__
2264 /*
2265 * UBIFS provides 'backing_dev_info' in order to disable read-ahead. For
2266 * UBIFS, I/O is not deferred, it is done immediately in readpage,
2267 * which means the user would have to wait not just for their own I/O
2268 * but the read-ahead I/O as well i.e. completely pointless.
2269 *
2270 * Read-ahead will be disabled because @c->bdi.ra_pages is 0.
2271 */
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002272 c->bdi.name = "ubifs",
2273 c->bdi.capabilities = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002274 err = bdi_init(&c->bdi);
2275 if (err)
2276 goto out_close;
2277 err = bdi_register(&c->bdi, NULL, "ubifs_%d_%d",
2278 c->vi.ubi_num, c->vi.vol_id);
2279 if (err)
2280 goto out_bdi;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002281
Heiko Schocherff94bc42014-06-24 10:10:04 +02002282 err = ubifs_parse_options(c, data, 0);
2283 if (err)
2284 goto out_bdi;
2285
2286 sb->s_bdi = &c->bdi;
2287#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002288 sb->s_fs_info = c;
2289 sb->s_magic = UBIFS_SUPER_MAGIC;
2290 sb->s_blocksize = UBIFS_BLOCK_SIZE;
2291 sb->s_blocksize_bits = UBIFS_BLOCK_SHIFT;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002292 sb->s_maxbytes = c->max_inode_sz = key_max_inode_size(c);
2293 if (c->max_inode_sz > MAX_LFS_FILESIZE)
2294 sb->s_maxbytes = c->max_inode_sz = MAX_LFS_FILESIZE;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002295 sb->s_op = &ubifs_super_operations;
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002296#ifndef __UBOOT__
2297 sb->s_xattr = ubifs_xattr_handlers;
2298#endif
Artem Bityutskiyfebd7e42009-03-27 10:21:14 +01002299
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002300 mutex_lock(&c->umount_mutex);
2301 err = mount_ubifs(c);
2302 if (err) {
2303 ubifs_assert(err < 0);
2304 goto out_unlock;
2305 }
2306
2307 /* Read the root inode */
2308 root = ubifs_iget(sb, UBIFS_ROOT_INO);
2309 if (IS_ERR(root)) {
2310 err = PTR_ERR(root);
2311 goto out_umount;
2312 }
2313
Heiko Schocherff94bc42014-06-24 10:10:04 +02002314#ifndef __UBOOT__
2315 sb->s_root = d_make_root(root);
2316 if (!sb->s_root) {
2317 err = -ENOMEM;
2318 goto out_umount;
2319 }
2320#else
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002321 sb->s_root = NULL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002322#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002323
2324 mutex_unlock(&c->umount_mutex);
2325 return 0;
2326
2327out_umount:
2328 ubifs_umount(c);
2329out_unlock:
2330 mutex_unlock(&c->umount_mutex);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002331#ifndef __UBOOT__
2332out_bdi:
2333 bdi_destroy(&c->bdi);
2334out_close:
2335#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002336 ubi_close_volume(c->ubi);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002337out:
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002338 return err;
2339}
2340
2341static int sb_test(struct super_block *sb, void *data)
2342{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002343 struct ubifs_info *c1 = data;
2344 struct ubifs_info *c = sb->s_fs_info;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002345
Heiko Schocherff94bc42014-06-24 10:10:04 +02002346 return c->vi.cdev == c1->vi.cdev;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002347}
2348
Heiko Schocherff94bc42014-06-24 10:10:04 +02002349static int sb_set(struct super_block *sb, void *data)
2350{
2351 sb->s_fs_info = data;
2352 return set_anon_super(sb, NULL);
2353}
2354
2355static struct super_block *alloc_super(struct file_system_type *type, int flags)
2356{
2357 struct super_block *s;
2358 int err;
2359
2360 s = kzalloc(sizeof(struct super_block), GFP_USER);
2361 if (!s) {
2362 err = -ENOMEM;
2363 return ERR_PTR(err);
2364 }
2365
Christophe Kerello5a08cfe2018-06-27 10:06:59 +02002366#ifndef __UBOOT__
Heiko Schocherff94bc42014-06-24 10:10:04 +02002367 INIT_HLIST_NODE(&s->s_instances);
Christophe Kerello5a08cfe2018-06-27 10:06:59 +02002368#endif
Heiko Schocherff94bc42014-06-24 10:10:04 +02002369 INIT_LIST_HEAD(&s->s_inodes);
2370 s->s_time_gran = 1000000000;
2371 s->s_flags = flags;
2372
2373 return s;
2374}
2375
2376/**
2377 * sget - find or create a superblock
2378 * @type: filesystem type superblock should belong to
2379 * @test: comparison callback
2380 * @set: setup callback
2381 * @flags: mount flags
2382 * @data: argument to each of them
2383 */
2384struct super_block *sget(struct file_system_type *type,
2385 int (*test)(struct super_block *,void *),
2386 int (*set)(struct super_block *,void *),
2387 int flags,
2388 void *data)
2389{
2390 struct super_block *s = NULL;
2391#ifndef __UBOOT__
2392 struct super_block *old;
2393#endif
2394 int err;
2395
2396#ifndef __UBOOT__
2397retry:
2398 spin_lock(&sb_lock);
2399 if (test) {
2400 hlist_for_each_entry(old, &type->fs_supers, s_instances) {
2401 if (!test(old, data))
2402 continue;
2403 if (!grab_super(old))
2404 goto retry;
2405 if (s) {
2406 up_write(&s->s_umount);
2407 destroy_super(s);
2408 s = NULL;
2409 }
2410 return old;
2411 }
2412 }
2413#endif
2414 if (!s) {
2415 spin_unlock(&sb_lock);
2416 s = alloc_super(type, flags);
2417 if (!s)
2418 return ERR_PTR(-ENOMEM);
2419#ifndef __UBOOT__
2420 goto retry;
2421#endif
2422 }
2423
2424 err = set(s, data);
2425 if (err) {
2426#ifndef __UBOOT__
2427 spin_unlock(&sb_lock);
2428 up_write(&s->s_umount);
2429 destroy_super(s);
2430#endif
2431 return ERR_PTR(err);
2432 }
2433 s->s_type = type;
2434#ifndef __UBOOT__
2435 strlcpy(s->s_id, type->name, sizeof(s->s_id));
Heiko Schocherb1d65902016-04-21 12:16:58 +02002436 list_add_tail(&s->s_list, &super_blocks);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002437 hlist_add_head(&s->s_instances, &type->fs_supers);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002438 spin_unlock(&sb_lock);
2439 get_filesystem(type);
2440 register_shrinker(&s->s_shrink);
Christophe Kerello5a08cfe2018-06-27 10:06:59 +02002441#else
2442 strncpy(s->s_id, type->name, sizeof(s->s_id));
Heiko Schocherff94bc42014-06-24 10:10:04 +02002443#endif
2444 return s;
2445}
2446
2447EXPORT_SYMBOL(sget);
2448
2449
2450static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags,
2451 const char *name, void *data)
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002452{
2453 struct ubi_volume_desc *ubi;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002454 struct ubifs_info *c;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002455 struct super_block *sb;
2456 int err;
2457
2458 dbg_gen("name %s, flags %#x", name, flags);
2459
2460 /*
2461 * Get UBI device number and volume ID. Mount it read-only so far
2462 * because this might be a new mount point, and UBI allows only one
2463 * read-write user at a time.
2464 */
2465 ubi = open_ubi(name, UBI_READONLY);
2466 if (IS_ERR(ubi)) {
Stefan Roese7236e242018-08-09 09:09:20 +02002467 pr_err("UBIFS error (pid: %d): cannot open \"%s\", error %d\n",
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002468 current->pid, name, (int)PTR_ERR(ubi));
Heiko Schocherff94bc42014-06-24 10:10:04 +02002469 return ERR_CAST(ubi);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002470 }
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002471
Heiko Schocherff94bc42014-06-24 10:10:04 +02002472 c = alloc_ubifs_info(ubi);
2473 if (!c) {
2474 err = -ENOMEM;
2475 goto out_close;
2476 }
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002477
Heiko Schocherff94bc42014-06-24 10:10:04 +02002478 dbg_gen("opened ubi%d_%d", c->vi.ubi_num, c->vi.vol_id);
2479
2480 sb = sget(fs_type, sb_test, sb_set, flags, c);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002481 if (IS_ERR(sb)) {
2482 err = PTR_ERR(sb);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002483 kfree(c);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002484 goto out_close;
2485 }
2486
2487 if (sb->s_root) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002488 struct ubifs_info *c1 = sb->s_fs_info;
2489 kfree(c);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002490 /* A new mount point for already mounted UBIFS */
2491 dbg_gen("this ubi volume is already mounted");
Heiko Schocherff94bc42014-06-24 10:10:04 +02002492 if (!!(flags & MS_RDONLY) != c1->ro_mount) {
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002493 err = -EBUSY;
2494 goto out_deact;
2495 }
2496 } else {
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002497 err = ubifs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
2498 if (err)
2499 goto out_deact;
2500 /* We do not support atime */
2501 sb->s_flags |= MS_ACTIVE | MS_NOATIME;
2502 }
2503
2504 /* 'fill_super()' opens ubi again so we must close it here */
2505 ubi_close_volume(ubi);
2506
Heiko Schocherff94bc42014-06-24 10:10:04 +02002507#ifdef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002508 ubifs_sb = sb;
2509 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002510#else
2511 return dget(sb->s_root);
2512#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002513
2514out_deact:
Heiko Schocherff94bc42014-06-24 10:10:04 +02002515#ifndef __UBOOT__
2516 deactivate_locked_super(sb);
2517#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002518out_close:
2519 ubi_close_volume(ubi);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002520 return ERR_PTR(err);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002521}
2522
Heiko Schocherff94bc42014-06-24 10:10:04 +02002523static void kill_ubifs_super(struct super_block *s)
2524{
2525 struct ubifs_info *c = s->s_fs_info;
2526#ifndef __UBOOT__
2527 kill_anon_super(s);
2528#endif
2529 kfree(c);
2530}
2531
2532static struct file_system_type ubifs_fs_type = {
2533 .name = "ubifs",
2534 .owner = THIS_MODULE,
2535 .mount = ubifs_mount,
2536 .kill_sb = kill_ubifs_super,
2537};
2538#ifndef __UBOOT__
2539MODULE_ALIAS_FS("ubifs");
2540
2541/*
2542 * Inode slab cache constructor.
2543 */
2544static void inode_slab_ctor(void *obj)
2545{
2546 struct ubifs_inode *ui = obj;
2547 inode_init_once(&ui->vfs_inode);
2548}
2549
2550static int __init ubifs_init(void)
2551#else
2552int ubifs_init(void)
2553#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002554{
2555 int err;
2556
2557 BUILD_BUG_ON(sizeof(struct ubifs_ch) != 24);
2558
2559 /* Make sure node sizes are 8-byte aligned */
2560 BUILD_BUG_ON(UBIFS_CH_SZ & 7);
2561 BUILD_BUG_ON(UBIFS_INO_NODE_SZ & 7);
2562 BUILD_BUG_ON(UBIFS_DENT_NODE_SZ & 7);
2563 BUILD_BUG_ON(UBIFS_XENT_NODE_SZ & 7);
2564 BUILD_BUG_ON(UBIFS_DATA_NODE_SZ & 7);
2565 BUILD_BUG_ON(UBIFS_TRUN_NODE_SZ & 7);
2566 BUILD_BUG_ON(UBIFS_SB_NODE_SZ & 7);
2567 BUILD_BUG_ON(UBIFS_MST_NODE_SZ & 7);
2568 BUILD_BUG_ON(UBIFS_REF_NODE_SZ & 7);
2569 BUILD_BUG_ON(UBIFS_CS_NODE_SZ & 7);
2570 BUILD_BUG_ON(UBIFS_ORPH_NODE_SZ & 7);
2571
2572 BUILD_BUG_ON(UBIFS_MAX_DENT_NODE_SZ & 7);
2573 BUILD_BUG_ON(UBIFS_MAX_XENT_NODE_SZ & 7);
2574 BUILD_BUG_ON(UBIFS_MAX_DATA_NODE_SZ & 7);
2575 BUILD_BUG_ON(UBIFS_MAX_INO_NODE_SZ & 7);
2576 BUILD_BUG_ON(UBIFS_MAX_NODE_SZ & 7);
2577 BUILD_BUG_ON(MIN_WRITE_SZ & 7);
2578
2579 /* Check min. node size */
2580 BUILD_BUG_ON(UBIFS_INO_NODE_SZ < MIN_WRITE_SZ);
2581 BUILD_BUG_ON(UBIFS_DENT_NODE_SZ < MIN_WRITE_SZ);
2582 BUILD_BUG_ON(UBIFS_XENT_NODE_SZ < MIN_WRITE_SZ);
2583 BUILD_BUG_ON(UBIFS_TRUN_NODE_SZ < MIN_WRITE_SZ);
2584
2585 BUILD_BUG_ON(UBIFS_MAX_DENT_NODE_SZ > UBIFS_MAX_NODE_SZ);
2586 BUILD_BUG_ON(UBIFS_MAX_XENT_NODE_SZ > UBIFS_MAX_NODE_SZ);
2587 BUILD_BUG_ON(UBIFS_MAX_DATA_NODE_SZ > UBIFS_MAX_NODE_SZ);
2588 BUILD_BUG_ON(UBIFS_MAX_INO_NODE_SZ > UBIFS_MAX_NODE_SZ);
2589
2590 /* Defined node sizes */
2591 BUILD_BUG_ON(UBIFS_SB_NODE_SZ != 4096);
2592 BUILD_BUG_ON(UBIFS_MST_NODE_SZ != 512);
2593 BUILD_BUG_ON(UBIFS_INO_NODE_SZ != 160);
2594 BUILD_BUG_ON(UBIFS_REF_NODE_SZ != 64);
2595
2596 /*
2597 * We use 2 bit wide bit-fields to store compression type, which should
2598 * be amended if more compressors are added. The bit-fields are:
2599 * @compr_type in 'struct ubifs_inode', @default_compr in
2600 * 'struct ubifs_info' and @compr_type in 'struct ubifs_mount_opts'.
2601 */
2602 BUILD_BUG_ON(UBIFS_COMPR_TYPES_CNT > 4);
2603
2604 /*
2605 * We require that PAGE_CACHE_SIZE is greater-than-or-equal-to
2606 * UBIFS_BLOCK_SIZE. It is assumed that both are powers of 2.
2607 */
2608 if (PAGE_CACHE_SIZE < UBIFS_BLOCK_SIZE) {
Stefan Roese7236e242018-08-09 09:09:20 +02002609 pr_err("UBIFS error (pid %d): VFS page cache size is %u bytes, but UBIFS requires at least 4096 bytes\n",
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002610 current->pid, (unsigned int)PAGE_CACHE_SIZE);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002611 return -EINVAL;
2612 }
2613
Heiko Schocherff94bc42014-06-24 10:10:04 +02002614#ifndef __UBOOT__
2615 ubifs_inode_slab = kmem_cache_create("ubifs_inode_slab",
2616 sizeof(struct ubifs_inode), 0,
2617 SLAB_MEM_SPREAD | SLAB_RECLAIM_ACCOUNT,
2618 &inode_slab_ctor);
2619 if (!ubifs_inode_slab)
2620 return -ENOMEM;
2621
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002622 err = register_shrinker(&ubifs_shrinker_info);
2623 if (err)
2624 goto out_slab;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002625#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002626
2627 err = ubifs_compressors_init();
2628 if (err)
2629 goto out_shrinker;
2630
Heiko Schocherff94bc42014-06-24 10:10:04 +02002631#ifndef __UBOOT__
2632 err = dbg_debugfs_init();
2633 if (err)
2634 goto out_compr;
2635
2636 err = register_filesystem(&ubifs_fs_type);
2637 if (err) {
Stefan Roese7236e242018-08-09 09:09:20 +02002638 pr_err("UBIFS error (pid %d): cannot register file system, error %d\n",
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002639 current->pid, err);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002640 goto out_dbg;
2641 }
2642#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002643 return 0;
2644
Heiko Schocherff94bc42014-06-24 10:10:04 +02002645#ifndef __UBOOT__
2646out_dbg:
2647 dbg_debugfs_exit();
2648out_compr:
2649 ubifs_compressors_exit();
2650#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002651out_shrinker:
Heiko Schocherff94bc42014-06-24 10:10:04 +02002652#ifndef __UBOOT__
2653 unregister_shrinker(&ubifs_shrinker_info);
Heiko Schocher0195a7b2015-10-22 06:19:21 +02002654out_slab:
Heiko Schocherff94bc42014-06-24 10:10:04 +02002655#endif
2656 kmem_cache_destroy(ubifs_inode_slab);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002657 return err;
2658}
Heiko Schocherff94bc42014-06-24 10:10:04 +02002659/* late_initcall to let compressors initialize first */
2660late_initcall(ubifs_init);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002661
Heiko Schocherff94bc42014-06-24 10:10:04 +02002662#ifndef __UBOOT__
2663static void __exit ubifs_exit(void)
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002664{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002665 ubifs_assert(list_empty(&ubifs_infos));
2666 ubifs_assert(atomic_long_read(&ubifs_clean_zn_cnt) == 0);
2667
2668 dbg_debugfs_exit();
2669 ubifs_compressors_exit();
2670 unregister_shrinker(&ubifs_shrinker_info);
2671
2672 /*
2673 * Make sure all delayed rcu free inodes are flushed before we
2674 * destroy cache.
2675 */
2676 rcu_barrier();
2677 kmem_cache_destroy(ubifs_inode_slab);
2678 unregister_filesystem(&ubifs_fs_type);
2679}
2680module_exit(ubifs_exit);
2681
2682MODULE_LICENSE("GPL");
2683MODULE_VERSION(__stringify(UBIFS_VERSION));
2684MODULE_AUTHOR("Artem Bityutskiy, Adrian Hunter");
2685MODULE_DESCRIPTION("UBIFS - UBI File System");
2686#else
2687int uboot_ubifs_mount(char *vol_name)
2688{
2689 struct dentry *ret;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002690 int flags;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002691
2692 /*
2693 * First unmount if allready mounted
2694 */
2695 if (ubifs_sb)
2696 ubifs_umount(ubifs_sb->s_fs_info);
2697
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002698 /*
2699 * Mount in read-only mode
2700 */
2701 flags = MS_RDONLY;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002702 ret = ubifs_mount(&ubifs_fs_type, flags, vol_name, NULL);
2703 if (IS_ERR(ret)) {
2704 printf("Error reading superblock on volume '%s' " \
2705 "errno=%d!\n", vol_name, (int)PTR_ERR(ret));
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002706 return -1;
2707 }
2708
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002709 return 0;
2710}
Heiko Schocherff94bc42014-06-24 10:10:04 +02002711#endif