blob: 93f268b4cc1f530916eff036f99a71da64e7110c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese2fc10f62009-03-19 15:35:05 +01002/*
3 * This file is part of UBIFS.
4 *
5 * Copyright (C) 2006-2008 Nokia Corporation.
6 *
Stefan Roese2fc10f62009-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 Schocherf5895d12014-06-24 10:10:04 +020017#ifndef __UBOOT__
Simon Glass0f2af882020-05-10 11:40:05 -060018#include <log.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070019#include <dm/devres.h>
Heiko Schocherf5895d12014-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 Roese2fc10f62009-03-19 15:35:05 +010028#include <linux/math64.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020029#include <linux/writeback.h>
30#else
Stefan Roese2fc10f62009-03-19 15:35:05 +010031
Simon Glassa87fc0a2015-09-02 17:24:57 -060032#include <common.h>
33#include <malloc.h>
34#include <memalign.h>
Masahiro Yamada78eeb912016-01-24 23:27:48 +090035#include <linux/bug.h>
Fabio Estevam0297d1e2015-11-05 12:43:39 -020036#include <linux/log2.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020037#include <linux/stat.h>
38#include <linux/err.h>
39#include "ubifs.h"
40#include <ubi_uboot.h>
41#include <mtd/ubi-user.h>
Stefan Roese2fc10f62009-03-19 15:35:05 +010042
Heiko Schocherf5895d12014-06-24 10:10:04 +020043struct dentry;
44struct file;
45struct iattr;
46struct kstat;
47struct vfsmount;
Stefan Roese2fc10f62009-03-19 15:35:05 +010048
Heiko Schocherf5895d12014-06-24 10:10:04 +020049#define INODE_LOCKED_MAX 64
Stefan Roese2fc10f62009-03-19 15:35:05 +010050
Heiko Schocherf5895d12014-06-24 10:10:04 +020051struct super_block *ubifs_sb;
Stefan Roese2fc10f62009-03-19 15:35:05 +010052
Heiko Schocherf5895d12014-06-24 10:10:04 +020053static struct inode *inodes_locked_down[INODE_LOCKED_MAX];
Stefan Roese2fc10f62009-03-19 15:35:05 +010054
Heiko Schocherf5895d12014-06-24 10:10:04 +020055int set_anon_super(struct super_block *s, void *data)
Stefan Roese2fc10f62009-03-19 15:35:05 +010056{
Stefan Roese2fc10f62009-03-19 15:35:05 +010057 return 0;
58}
59
Stefan Roese2fc10f62009-03-19 15:35:05 +010060struct inode *iget_locked(struct super_block *sb, unsigned long ino)
61{
62 struct inode *inode;
63
Marcel Ziswilerabc574b2015-08-18 13:06:37 +020064 inode = (struct inode *)malloc_cache_aligned(
65 sizeof(struct ubifs_inode));
Stefan Roese2fc10f62009-03-19 15:35:05 +010066 if (inode) {
67 inode->i_ino = ino;
68 inode->i_sb = sb;
69 list_add(&inode->i_sb_list, &sb->s_inodes);
70 inode->i_state = I_LOCK | I_NEW;
71 }
72
73 return inode;
74}
75
Heiko Schocherf5895d12014-06-24 10:10:04 +020076void iget_failed(struct inode *inode)
77{
78}
79
Stefan Roese2fc10f62009-03-19 15:35:05 +010080int ubifs_iput(struct inode *inode)
81{
82 list_del_init(&inode->i_sb_list);
83
84 free(inode);
85 return 0;
86}
87
88/*
89 * Lock (save) inode in inode array for readback after recovery
90 */
91void iput(struct inode *inode)
92{
93 int i;
94 struct inode *ino;
95
96 /*
97 * Search end of list
98 */
99 for (i = 0; i < INODE_LOCKED_MAX; i++) {
100 if (inodes_locked_down[i] == NULL)
101 break;
102 }
103
104 if (i >= INODE_LOCKED_MAX) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200105 dbg_gen("Error, can't lock (save) more inodes while recovery!!!");
Stefan Roese2fc10f62009-03-19 15:35:05 +0100106 return;
107 }
108
109 /*
110 * Allocate and use new inode
111 */
Marcel Ziswilerabc574b2015-08-18 13:06:37 +0200112 ino = (struct inode *)malloc_cache_aligned(sizeof(struct ubifs_inode));
Stefan Roese2fc10f62009-03-19 15:35:05 +0100113 memcpy(ino, inode, sizeof(struct ubifs_inode));
114
115 /*
116 * Finally save inode in array
117 */
118 inodes_locked_down[i] = ino;
119}
120
Heiko Schocherf5895d12014-06-24 10:10:04 +0200121/* from fs/inode.c */
122/**
123 * clear_nlink - directly zero an inode's link count
124 * @inode: inode
125 *
126 * This is a low-level filesystem helper to replace any
127 * direct filesystem manipulation of i_nlink. See
128 * drop_nlink() for why we care about i_nlink hitting zero.
129 */
130void clear_nlink(struct inode *inode)
131{
132 if (inode->i_nlink) {
133 inode->__i_nlink = 0;
134 atomic_long_inc(&inode->i_sb->s_remove_count);
135 }
136}
137EXPORT_SYMBOL(clear_nlink);
138
139/**
140 * set_nlink - directly set an inode's link count
141 * @inode: inode
142 * @nlink: new nlink (should be non-zero)
143 *
144 * This is a low-level filesystem helper to replace any
145 * direct filesystem manipulation of i_nlink.
146 */
147void set_nlink(struct inode *inode, unsigned int nlink)
148{
149 if (!nlink) {
150 clear_nlink(inode);
151 } else {
152 /* Yes, some filesystems do change nlink from zero to one */
153 if (inode->i_nlink == 0)
154 atomic_long_dec(&inode->i_sb->s_remove_count);
155
156 inode->__i_nlink = nlink;
157 }
158}
159EXPORT_SYMBOL(set_nlink);
160
161/* from include/linux/fs.h */
162static inline void i_uid_write(struct inode *inode, uid_t uid)
163{
164 inode->i_uid.val = uid;
165}
166
167static inline void i_gid_write(struct inode *inode, gid_t gid)
168{
169 inode->i_gid.val = gid;
170}
171
172void unlock_new_inode(struct inode *inode)
173{
174 return;
175}
176#endif
177
178/*
179 * Maximum amount of memory we may 'kmalloc()' without worrying that we are
180 * allocating too much.
181 */
182#define UBIFS_KMALLOC_OK (128*1024)
183
184/* Slab cache for UBIFS inodes */
185struct kmem_cache *ubifs_inode_slab;
186
187#ifndef __UBOOT__
188/* UBIFS TNC shrinker description */
189static struct shrinker ubifs_shrinker_info = {
190 .scan_objects = ubifs_shrink_scan,
191 .count_objects = ubifs_shrink_count,
192 .seeks = DEFAULT_SEEKS,
193};
194#endif
195
196/**
197 * validate_inode - validate inode.
198 * @c: UBIFS file-system description object
199 * @inode: the inode to validate
200 *
201 * This is a helper function for 'ubifs_iget()' which validates various fields
202 * of a newly built inode to make sure they contain sane values and prevent
203 * possible vulnerabilities. Returns zero if the inode is all right and
204 * a non-zero error code if not.
205 */
206static int validate_inode(struct ubifs_info *c, const struct inode *inode)
207{
208 int err;
209 const struct ubifs_inode *ui = ubifs_inode(inode);
210
211 if (inode->i_size > c->max_inode_sz) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200212 ubifs_err(c, "inode is too large (%lld)",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200213 (long long)inode->i_size);
214 return 1;
215 }
216
Heiko Schocher94b66de2015-10-22 06:19:21 +0200217 if (ui->compr_type >= UBIFS_COMPR_TYPES_CNT) {
218 ubifs_err(c, "unknown compression type %d", ui->compr_type);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200219 return 2;
220 }
221
222 if (ui->xattr_names + ui->xattr_cnt > XATTR_LIST_MAX)
223 return 3;
224
225 if (ui->data_len < 0 || ui->data_len > UBIFS_MAX_INO_DATA)
226 return 4;
227
228 if (ui->xattr && !S_ISREG(inode->i_mode))
229 return 5;
230
231 if (!ubifs_compr_present(ui->compr_type)) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200232 ubifs_warn(c, "inode %lu uses '%s' compression, but it was not compiled in",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200233 inode->i_ino, ubifs_compr_name(ui->compr_type));
234 }
235
236 err = dbg_check_dir(c, inode);
237 return err;
238}
239
Stefan Roese2fc10f62009-03-19 15:35:05 +0100240struct inode *ubifs_iget(struct super_block *sb, unsigned long inum)
241{
242 int err;
243 union ubifs_key key;
244 struct ubifs_ino_node *ino;
245 struct ubifs_info *c = sb->s_fs_info;
246 struct inode *inode;
247 struct ubifs_inode *ui;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200248#ifdef __UBOOT__
Stefan Roese2fc10f62009-03-19 15:35:05 +0100249 int i;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200250#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +0100251
252 dbg_gen("inode %lu", inum);
253
Heiko Schocherf5895d12014-06-24 10:10:04 +0200254#ifdef __UBOOT__
Stefan Roese2fc10f62009-03-19 15:35:05 +0100255 /*
256 * U-Boot special handling of locked down inodes via recovery
257 * e.g. ubifs_recover_size()
258 */
259 for (i = 0; i < INODE_LOCKED_MAX; i++) {
260 /*
261 * Exit on last entry (NULL), inode not found in list
262 */
263 if (inodes_locked_down[i] == NULL)
264 break;
265
266 if (inodes_locked_down[i]->i_ino == inum) {
267 /*
268 * We found the locked down inode in our array,
269 * so just return this pointer instead of creating
270 * a new one.
271 */
272 return inodes_locked_down[i];
273 }
274 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200275#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +0100276
277 inode = iget_locked(sb, inum);
278 if (!inode)
279 return ERR_PTR(-ENOMEM);
280 if (!(inode->i_state & I_NEW))
281 return inode;
282 ui = ubifs_inode(inode);
283
284 ino = kmalloc(UBIFS_MAX_INO_NODE_SZ, GFP_NOFS);
285 if (!ino) {
286 err = -ENOMEM;
287 goto out;
288 }
289
290 ino_key_init(c, &key, inode->i_ino);
291
292 err = ubifs_tnc_lookup(c, &key, ino);
293 if (err)
294 goto out_ino;
295
296 inode->i_flags |= (S_NOCMTIME | S_NOATIME);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200297 set_nlink(inode, le32_to_cpu(ino->nlink));
298 i_uid_write(inode, le32_to_cpu(ino->uid));
299 i_gid_write(inode, le32_to_cpu(ino->gid));
Stefan Roese2fc10f62009-03-19 15:35:05 +0100300 inode->i_atime.tv_sec = (int64_t)le64_to_cpu(ino->atime_sec);
301 inode->i_atime.tv_nsec = le32_to_cpu(ino->atime_nsec);
302 inode->i_mtime.tv_sec = (int64_t)le64_to_cpu(ino->mtime_sec);
303 inode->i_mtime.tv_nsec = le32_to_cpu(ino->mtime_nsec);
304 inode->i_ctime.tv_sec = (int64_t)le64_to_cpu(ino->ctime_sec);
305 inode->i_ctime.tv_nsec = le32_to_cpu(ino->ctime_nsec);
306 inode->i_mode = le32_to_cpu(ino->mode);
307 inode->i_size = le64_to_cpu(ino->size);
308
309 ui->data_len = le32_to_cpu(ino->data_len);
310 ui->flags = le32_to_cpu(ino->flags);
311 ui->compr_type = le16_to_cpu(ino->compr_type);
312 ui->creat_sqnum = le64_to_cpu(ino->creat_sqnum);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200313 ui->xattr_cnt = le32_to_cpu(ino->xattr_cnt);
314 ui->xattr_size = le32_to_cpu(ino->xattr_size);
315 ui->xattr_names = le32_to_cpu(ino->xattr_names);
Stefan Roese2fc10f62009-03-19 15:35:05 +0100316 ui->synced_i_size = ui->ui_size = inode->i_size;
317
Heiko Schocherf5895d12014-06-24 10:10:04 +0200318 ui->xattr = (ui->flags & UBIFS_XATTR_FL) ? 1 : 0;
319
Stefan Roese2fc10f62009-03-19 15:35:05 +0100320 err = validate_inode(c, inode);
321 if (err)
322 goto out_invalid;
323
Heiko Schocherf5895d12014-06-24 10:10:04 +0200324#ifndef __UBOOT__
Heiko Schocherf5895d12014-06-24 10:10:04 +0200325 switch (inode->i_mode & S_IFMT) {
326 case S_IFREG:
327 inode->i_mapping->a_ops = &ubifs_file_address_operations;
328 inode->i_op = &ubifs_file_inode_operations;
329 inode->i_fop = &ubifs_file_operations;
330 if (ui->xattr) {
331 ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
332 if (!ui->data) {
333 err = -ENOMEM;
334 goto out_ino;
335 }
336 memcpy(ui->data, ino->data, ui->data_len);
337 ((char *)ui->data)[ui->data_len] = '\0';
338 } else if (ui->data_len != 0) {
339 err = 10;
340 goto out_invalid;
341 }
342 break;
343 case S_IFDIR:
344 inode->i_op = &ubifs_dir_inode_operations;
345 inode->i_fop = &ubifs_dir_operations;
346 if (ui->data_len != 0) {
347 err = 11;
348 goto out_invalid;
349 }
350 break;
351 case S_IFLNK:
352 inode->i_op = &ubifs_symlink_inode_operations;
353 if (ui->data_len <= 0 || ui->data_len > UBIFS_MAX_INO_DATA) {
354 err = 12;
355 goto out_invalid;
356 }
357 ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
358 if (!ui->data) {
359 err = -ENOMEM;
360 goto out_ino;
361 }
362 memcpy(ui->data, ino->data, ui->data_len);
363 ((char *)ui->data)[ui->data_len] = '\0';
Heiko Schocher94b66de2015-10-22 06:19:21 +0200364 inode->i_link = ui->data;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200365 break;
366 case S_IFBLK:
367 case S_IFCHR:
368 {
369 dev_t rdev;
370 union ubifs_dev_desc *dev;
371
372 ui->data = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
373 if (!ui->data) {
374 err = -ENOMEM;
375 goto out_ino;
376 }
377
378 dev = (union ubifs_dev_desc *)ino->data;
379 if (ui->data_len == sizeof(dev->new))
380 rdev = new_decode_dev(le32_to_cpu(dev->new));
381 else if (ui->data_len == sizeof(dev->huge))
382 rdev = huge_decode_dev(le64_to_cpu(dev->huge));
383 else {
384 err = 13;
385 goto out_invalid;
386 }
387 memcpy(ui->data, ino->data, ui->data_len);
388 inode->i_op = &ubifs_file_inode_operations;
389 init_special_inode(inode, inode->i_mode, rdev);
390 break;
391 }
392 case S_IFSOCK:
393 case S_IFIFO:
394 inode->i_op = &ubifs_file_inode_operations;
395 init_special_inode(inode, inode->i_mode, 0);
396 if (ui->data_len != 0) {
397 err = 14;
398 goto out_invalid;
399 }
400 break;
401 default:
402 err = 15;
403 goto out_invalid;
404 }
405#else
Stefan Roese2fc10f62009-03-19 15:35:05 +0100406 if ((inode->i_mode & S_IFMT) == S_IFLNK) {
407 if (ui->data_len <= 0 || ui->data_len > UBIFS_MAX_INO_DATA) {
408 err = 12;
409 goto out_invalid;
410 }
411 ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
412 if (!ui->data) {
413 err = -ENOMEM;
414 goto out_ino;
415 }
416 memcpy(ui->data, ino->data, ui->data_len);
417 ((char *)ui->data)[ui->data_len] = '\0';
418 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200419#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +0100420
421 kfree(ino);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200422#ifndef __UBOOT__
423 ubifs_set_inode_flags(inode);
424#endif
425 unlock_new_inode(inode);
Stefan Roese2fc10f62009-03-19 15:35:05 +0100426 return inode;
427
428out_invalid:
Heiko Schocher94b66de2015-10-22 06:19:21 +0200429 ubifs_err(c, "inode %lu validation failed, error %d", inode->i_ino, err);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200430 ubifs_dump_node(c, ino);
431 ubifs_dump_inode(c, inode);
Stefan Roese2fc10f62009-03-19 15:35:05 +0100432 err = -EINVAL;
433out_ino:
434 kfree(ino);
435out:
Heiko Schocher94b66de2015-10-22 06:19:21 +0200436 ubifs_err(c, "failed to read inode %lu, error %d", inode->i_ino, err);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200437 iget_failed(inode);
Stefan Roese2fc10f62009-03-19 15:35:05 +0100438 return ERR_PTR(err);
439}
440
Heiko Schocherf5895d12014-06-24 10:10:04 +0200441static struct inode *ubifs_alloc_inode(struct super_block *sb)
Stefan Roese2fc10f62009-03-19 15:35:05 +0100442{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200443 struct ubifs_inode *ui;
Stefan Roese2fc10f62009-03-19 15:35:05 +0100444
Heiko Schocherf5895d12014-06-24 10:10:04 +0200445 ui = kmem_cache_alloc(ubifs_inode_slab, GFP_NOFS);
446 if (!ui)
447 return NULL;
Stefan Roese2fc10f62009-03-19 15:35:05 +0100448
Heiko Schocherf5895d12014-06-24 10:10:04 +0200449 memset((void *)ui + sizeof(struct inode), 0,
450 sizeof(struct ubifs_inode) - sizeof(struct inode));
451 mutex_init(&ui->ui_mutex);
452 spin_lock_init(&ui->ui_lock);
453 return &ui->vfs_inode;
454};
Stefan Roese2fc10f62009-03-19 15:35:05 +0100455
Heiko Schocherf5895d12014-06-24 10:10:04 +0200456#ifndef __UBOOT__
457static void ubifs_i_callback(struct rcu_head *head)
458{
459 struct inode *inode = container_of(head, struct inode, i_rcu);
460 struct ubifs_inode *ui = ubifs_inode(inode);
461 kmem_cache_free(ubifs_inode_slab, ui);
462}
Stefan Roese2fc10f62009-03-19 15:35:05 +0100463
Heiko Schocherf5895d12014-06-24 10:10:04 +0200464static void ubifs_destroy_inode(struct inode *inode)
465{
466 struct ubifs_inode *ui = ubifs_inode(inode);
Stefan Roese2fc10f62009-03-19 15:35:05 +0100467
Heiko Schocherf5895d12014-06-24 10:10:04 +0200468 kfree(ui->data);
469 call_rcu(&inode->i_rcu, ubifs_i_callback);
470}
Stefan Roese2fc10f62009-03-19 15:35:05 +0100471
Heiko Schocherf5895d12014-06-24 10:10:04 +0200472/*
473 * Note, Linux write-back code calls this without 'i_mutex'.
474 */
475static int ubifs_write_inode(struct inode *inode, struct writeback_control *wbc)
476{
477 int err = 0;
478 struct ubifs_info *c = inode->i_sb->s_fs_info;
479 struct ubifs_inode *ui = ubifs_inode(inode);
480
481 ubifs_assert(!ui->xattr);
482 if (is_bad_inode(inode))
483 return 0;
Stefan Roese2fc10f62009-03-19 15:35:05 +0100484
Heiko Schocherf5895d12014-06-24 10:10:04 +0200485 mutex_lock(&ui->ui_mutex);
Stefan Roese2fc10f62009-03-19 15:35:05 +0100486 /*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200487 * Due to races between write-back forced by budgeting
488 * (see 'sync_some_inodes()') and background write-back, the inode may
489 * have already been synchronized, do not do this again. This might
490 * also happen if it was synchronized in an VFS operation, e.g.
491 * 'ubifs_link()'.
Stefan Roese2fc10f62009-03-19 15:35:05 +0100492 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200493 if (!ui->dirty) {
494 mutex_unlock(&ui->ui_mutex);
495 return 0;
Stefan Roese2fc10f62009-03-19 15:35:05 +0100496 }
497
Stefan Roese2fc10f62009-03-19 15:35:05 +0100498 /*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200499 * As an optimization, do not write orphan inodes to the media just
500 * because this is not needed.
Stefan Roese2fc10f62009-03-19 15:35:05 +0100501 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200502 dbg_gen("inode %lu, mode %#x, nlink %u",
503 inode->i_ino, (int)inode->i_mode, inode->i_nlink);
504 if (inode->i_nlink) {
505 err = ubifs_jnl_write_inode(c, inode);
506 if (err)
Heiko Schocher94b66de2015-10-22 06:19:21 +0200507 ubifs_err(c, "can't write inode %lu, error %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200508 inode->i_ino, err);
509 else
510 err = dbg_check_inode_size(c, inode, ui->ui_size);
511 }
Stefan Roese2fc10f62009-03-19 15:35:05 +0100512
Heiko Schocherf5895d12014-06-24 10:10:04 +0200513 ui->dirty = 0;
514 mutex_unlock(&ui->ui_mutex);
515 ubifs_release_dirty_inode_budget(c, ui);
516 return err;
517}
518
519static void ubifs_evict_inode(struct inode *inode)
520{
521 int err;
522 struct ubifs_info *c = inode->i_sb->s_fs_info;
523 struct ubifs_inode *ui = ubifs_inode(inode);
524
525 if (ui->xattr)
526 /*
527 * Extended attribute inode deletions are fully handled in
528 * 'ubifs_removexattr()'. These inodes are special and have
529 * limited usage, so there is nothing to do here.
530 */
531 goto out;
532
533 dbg_gen("inode %lu, mode %#x", inode->i_ino, (int)inode->i_mode);
534 ubifs_assert(!atomic_read(&inode->i_count));
535
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200536 truncate_inode_pages_final(&inode->i_data);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200537
538 if (inode->i_nlink)
539 goto done;
540
541 if (is_bad_inode(inode))
542 goto out;
543
544 ui->ui_size = inode->i_size = 0;
545 err = ubifs_jnl_delete_inode(c, inode);
546 if (err)
547 /*
548 * Worst case we have a lost orphan inode wasting space, so a
549 * simple error message is OK here.
550 */
Heiko Schocher94b66de2015-10-22 06:19:21 +0200551 ubifs_err(c, "can't delete inode %lu, error %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200552 inode->i_ino, err);
553
554out:
555 if (ui->dirty)
556 ubifs_release_dirty_inode_budget(c, ui);
557 else {
558 /* We've deleted something - clean the "no space" flags */
559 c->bi.nospace = c->bi.nospace_rp = 0;
560 smp_wmb();
561 }
562done:
563 clear_inode(inode);
564}
565#endif
566
567static void ubifs_dirty_inode(struct inode *inode, int flags)
568{
569 struct ubifs_inode *ui = ubifs_inode(inode);
570
571 ubifs_assert(mutex_is_locked(&ui->ui_mutex));
572 if (!ui->dirty) {
573 ui->dirty = 1;
574 dbg_gen("inode %lu", inode->i_ino);
575 }
576}
577
578#ifndef __UBOOT__
579static int ubifs_statfs(struct dentry *dentry, struct kstatfs *buf)
580{
581 struct ubifs_info *c = dentry->d_sb->s_fs_info;
582 unsigned long long free;
583 __le32 *uuid = (__le32 *)c->uuid;
584
585 free = ubifs_get_free_space(c);
586 dbg_gen("free space %lld bytes (%lld blocks)",
587 free, free >> UBIFS_BLOCK_SHIFT);
588
589 buf->f_type = UBIFS_SUPER_MAGIC;
590 buf->f_bsize = UBIFS_BLOCK_SIZE;
591 buf->f_blocks = c->block_cnt;
592 buf->f_bfree = free >> UBIFS_BLOCK_SHIFT;
593 if (free > c->report_rp_size)
594 buf->f_bavail = (free - c->report_rp_size) >> UBIFS_BLOCK_SHIFT;
595 else
596 buf->f_bavail = 0;
597 buf->f_files = 0;
598 buf->f_ffree = 0;
599 buf->f_namelen = UBIFS_MAX_NLEN;
600 buf->f_fsid.val[0] = le32_to_cpu(uuid[0]) ^ le32_to_cpu(uuid[2]);
601 buf->f_fsid.val[1] = le32_to_cpu(uuid[1]) ^ le32_to_cpu(uuid[3]);
602 ubifs_assert(buf->f_bfree <= c->block_cnt);
603 return 0;
604}
605
606static int ubifs_show_options(struct seq_file *s, struct dentry *root)
607{
608 struct ubifs_info *c = root->d_sb->s_fs_info;
609
610 if (c->mount_opts.unmount_mode == 2)
Heiko Schocher94b66de2015-10-22 06:19:21 +0200611 seq_puts(s, ",fast_unmount");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200612 else if (c->mount_opts.unmount_mode == 1)
Heiko Schocher94b66de2015-10-22 06:19:21 +0200613 seq_puts(s, ",norm_unmount");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200614
615 if (c->mount_opts.bulk_read == 2)
Heiko Schocher94b66de2015-10-22 06:19:21 +0200616 seq_puts(s, ",bulk_read");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200617 else if (c->mount_opts.bulk_read == 1)
Heiko Schocher94b66de2015-10-22 06:19:21 +0200618 seq_puts(s, ",no_bulk_read");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200619
620 if (c->mount_opts.chk_data_crc == 2)
Heiko Schocher94b66de2015-10-22 06:19:21 +0200621 seq_puts(s, ",chk_data_crc");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200622 else if (c->mount_opts.chk_data_crc == 1)
Heiko Schocher94b66de2015-10-22 06:19:21 +0200623 seq_puts(s, ",no_chk_data_crc");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200624
625 if (c->mount_opts.override_compr) {
626 seq_printf(s, ",compr=%s",
627 ubifs_compr_name(c->mount_opts.compr_type));
628 }
629
630 return 0;
631}
632
633static int ubifs_sync_fs(struct super_block *sb, int wait)
634{
635 int i, err;
636 struct ubifs_info *c = sb->s_fs_info;
637
638 /*
639 * Zero @wait is just an advisory thing to help the file system shove
640 * lots of data into the queues, and there will be the second
641 * '->sync_fs()' call, with non-zero @wait.
642 */
643 if (!wait)
644 return 0;
645
646 /*
647 * Synchronize write buffers, because 'ubifs_run_commit()' does not
648 * do this if it waits for an already running commit.
649 */
650 for (i = 0; i < c->jhead_cnt; i++) {
651 err = ubifs_wbuf_sync(&c->jheads[i].wbuf);
652 if (err)
653 return err;
654 }
655
656 /*
657 * Strictly speaking, it is not necessary to commit the journal here,
658 * synchronizing write-buffers would be enough. But committing makes
659 * UBIFS free space predictions much more accurate, so we want to let
660 * the user be able to get more accurate results of 'statfs()' after
661 * they synchronize the file system.
662 */
663 err = ubifs_run_commit(c);
664 if (err)
665 return err;
666
667 return ubi_sync(c->vi.ubi_num);
668}
669#endif
670
671/**
672 * init_constants_early - initialize UBIFS constants.
673 * @c: UBIFS file-system description object
674 *
675 * This function initialize UBIFS constants which do not need the superblock to
676 * be read. It also checks that the UBI volume satisfies basic UBIFS
677 * requirements. Returns zero in case of success and a negative error code in
678 * case of failure.
679 */
680static int init_constants_early(struct ubifs_info *c)
681{
682 if (c->vi.corrupted) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200683 ubifs_warn(c, "UBI volume is corrupted - read-only mode");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200684 c->ro_media = 1;
685 }
686
687 if (c->di.ro_mode) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200688 ubifs_msg(c, "read-only UBI device");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200689 c->ro_media = 1;
690 }
691
692 if (c->vi.vol_type == UBI_STATIC_VOLUME) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200693 ubifs_msg(c, "static UBI volume - read-only mode");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200694 c->ro_media = 1;
695 }
696
697 c->leb_cnt = c->vi.size;
698 c->leb_size = c->vi.usable_leb_size;
699 c->leb_start = c->di.leb_start;
700 c->half_leb_size = c->leb_size / 2;
701 c->min_io_size = c->di.min_io_size;
702 c->min_io_shift = fls(c->min_io_size) - 1;
703 c->max_write_size = c->di.max_write_size;
704 c->max_write_shift = fls(c->max_write_size) - 1;
705
706 if (c->leb_size < UBIFS_MIN_LEB_SZ) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200707 ubifs_err(c, "too small LEBs (%d bytes), min. is %d bytes",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200708 c->leb_size, UBIFS_MIN_LEB_SZ);
709 return -EINVAL;
710 }
711
712 if (c->leb_cnt < UBIFS_MIN_LEB_CNT) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200713 ubifs_err(c, "too few LEBs (%d), min. is %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200714 c->leb_cnt, UBIFS_MIN_LEB_CNT);
715 return -EINVAL;
716 }
717
718 if (!is_power_of_2(c->min_io_size)) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200719 ubifs_err(c, "bad min. I/O size %d", c->min_io_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200720 return -EINVAL;
721 }
722
723 /*
724 * Maximum write size has to be greater or equivalent to min. I/O
725 * size, and be multiple of min. I/O size.
726 */
727 if (c->max_write_size < c->min_io_size ||
728 c->max_write_size % c->min_io_size ||
729 !is_power_of_2(c->max_write_size)) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200730 ubifs_err(c, "bad write buffer size %d for %d min. I/O unit",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200731 c->max_write_size, c->min_io_size);
732 return -EINVAL;
733 }
734
735 /*
736 * UBIFS aligns all node to 8-byte boundary, so to make function in
737 * io.c simpler, assume minimum I/O unit size to be 8 bytes if it is
738 * less than 8.
739 */
740 if (c->min_io_size < 8) {
741 c->min_io_size = 8;
742 c->min_io_shift = 3;
743 if (c->max_write_size < c->min_io_size) {
744 c->max_write_size = c->min_io_size;
745 c->max_write_shift = c->min_io_shift;
746 }
747 }
748
749 c->ref_node_alsz = ALIGN(UBIFS_REF_NODE_SZ, c->min_io_size);
750 c->mst_node_alsz = ALIGN(UBIFS_MST_NODE_SZ, c->min_io_size);
751
752 /*
753 * Initialize node length ranges which are mostly needed for node
754 * length validation.
755 */
756 c->ranges[UBIFS_PAD_NODE].len = UBIFS_PAD_NODE_SZ;
757 c->ranges[UBIFS_SB_NODE].len = UBIFS_SB_NODE_SZ;
758 c->ranges[UBIFS_MST_NODE].len = UBIFS_MST_NODE_SZ;
759 c->ranges[UBIFS_REF_NODE].len = UBIFS_REF_NODE_SZ;
760 c->ranges[UBIFS_TRUN_NODE].len = UBIFS_TRUN_NODE_SZ;
761 c->ranges[UBIFS_CS_NODE].len = UBIFS_CS_NODE_SZ;
762
763 c->ranges[UBIFS_INO_NODE].min_len = UBIFS_INO_NODE_SZ;
764 c->ranges[UBIFS_INO_NODE].max_len = UBIFS_MAX_INO_NODE_SZ;
765 c->ranges[UBIFS_ORPH_NODE].min_len =
Stefan Roese2fc10f62009-03-19 15:35:05 +0100766 UBIFS_ORPH_NODE_SZ + sizeof(__le64);
767 c->ranges[UBIFS_ORPH_NODE].max_len = c->leb_size;
768 c->ranges[UBIFS_DENT_NODE].min_len = UBIFS_DENT_NODE_SZ;
769 c->ranges[UBIFS_DENT_NODE].max_len = UBIFS_MAX_DENT_NODE_SZ;
770 c->ranges[UBIFS_XENT_NODE].min_len = UBIFS_XENT_NODE_SZ;
771 c->ranges[UBIFS_XENT_NODE].max_len = UBIFS_MAX_XENT_NODE_SZ;
772 c->ranges[UBIFS_DATA_NODE].min_len = UBIFS_DATA_NODE_SZ;
773 c->ranges[UBIFS_DATA_NODE].max_len = UBIFS_MAX_DATA_NODE_SZ;
774 /*
775 * Minimum indexing node size is amended later when superblock is
776 * read and the key length is known.
777 */
778 c->ranges[UBIFS_IDX_NODE].min_len = UBIFS_IDX_NODE_SZ + UBIFS_BRANCH_SZ;
779 /*
780 * Maximum indexing node size is amended later when superblock is
781 * read and the fanout is known.
782 */
783 c->ranges[UBIFS_IDX_NODE].max_len = INT_MAX;
784
785 /*
786 * Initialize dead and dark LEB space watermarks. See gc.c for comments
787 * about these values.
788 */
789 c->dead_wm = ALIGN(MIN_WRITE_SZ, c->min_io_size);
790 c->dark_wm = ALIGN(UBIFS_MAX_NODE_SZ, c->min_io_size);
791
792 /*
793 * Calculate how many bytes would be wasted at the end of LEB if it was
794 * fully filled with data nodes of maximum size. This is used in
795 * calculations when reporting free space.
796 */
797 c->leb_overhead = c->leb_size % UBIFS_MAX_DATA_NODE_SZ;
798
Heiko Schocherf5895d12014-06-24 10:10:04 +0200799 /* Buffer size for bulk-reads */
800 c->max_bu_buf_len = UBIFS_MAX_BULK_READ * UBIFS_MAX_DATA_NODE_SZ;
801 if (c->max_bu_buf_len > c->leb_size)
802 c->max_bu_buf_len = c->leb_size;
Stefan Roese2fc10f62009-03-19 15:35:05 +0100803 return 0;
804}
805
Heiko Schocherf5895d12014-06-24 10:10:04 +0200806/**
807 * bud_wbuf_callback - bud LEB write-buffer synchronization call-back.
808 * @c: UBIFS file-system description object
809 * @lnum: LEB the write-buffer was synchronized to
810 * @free: how many free bytes left in this LEB
811 * @pad: how many bytes were padded
812 *
813 * This is a callback function which is called by the I/O unit when the
814 * write-buffer is synchronized. We need this to correctly maintain space
815 * accounting in bud logical eraseblocks. This function returns zero in case of
816 * success and a negative error code in case of failure.
817 *
818 * This function actually belongs to the journal, but we keep it here because
819 * we want to keep it static.
820 */
821static int bud_wbuf_callback(struct ubifs_info *c, int lnum, int free, int pad)
822{
823 return ubifs_update_one_lp(c, lnum, free, pad, 0, 0);
824}
825
Stefan Roese2fc10f62009-03-19 15:35:05 +0100826/*
827 * init_constants_sb - initialize UBIFS constants.
828 * @c: UBIFS file-system description object
829 *
830 * This is a helper function which initializes various UBIFS constants after
831 * the superblock has been read. It also checks various UBIFS parameters and
832 * makes sure they are all right. Returns zero in case of success and a
833 * negative error code in case of failure.
834 */
835static int init_constants_sb(struct ubifs_info *c)
836{
837 int tmp, err;
838 long long tmp64;
839
840 c->main_bytes = (long long)c->main_lebs * c->leb_size;
841 c->max_znode_sz = sizeof(struct ubifs_znode) +
842 c->fanout * sizeof(struct ubifs_zbranch);
843
844 tmp = ubifs_idx_node_sz(c, 1);
845 c->ranges[UBIFS_IDX_NODE].min_len = tmp;
846 c->min_idx_node_sz = ALIGN(tmp, 8);
847
848 tmp = ubifs_idx_node_sz(c, c->fanout);
849 c->ranges[UBIFS_IDX_NODE].max_len = tmp;
850 c->max_idx_node_sz = ALIGN(tmp, 8);
851
852 /* Make sure LEB size is large enough to fit full commit */
853 tmp = UBIFS_CS_NODE_SZ + UBIFS_REF_NODE_SZ * c->jhead_cnt;
854 tmp = ALIGN(tmp, c->min_io_size);
855 if (tmp > c->leb_size) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200856 ubifs_err(c, "too small LEB size %d, at least %d needed",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200857 c->leb_size, tmp);
Stefan Roese2fc10f62009-03-19 15:35:05 +0100858 return -EINVAL;
859 }
860
861 /*
862 * Make sure that the log is large enough to fit reference nodes for
863 * all buds plus one reserved LEB.
864 */
865 tmp64 = c->max_bud_bytes + c->leb_size - 1;
866 c->max_bud_cnt = div_u64(tmp64, c->leb_size);
867 tmp = (c->ref_node_alsz * c->max_bud_cnt + c->leb_size - 1);
868 tmp /= c->leb_size;
869 tmp += 1;
870 if (c->log_lebs < tmp) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200871 ubifs_err(c, "too small log %d LEBs, required min. %d LEBs",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200872 c->log_lebs, tmp);
Stefan Roese2fc10f62009-03-19 15:35:05 +0100873 return -EINVAL;
874 }
875
876 /*
877 * When budgeting we assume worst-case scenarios when the pages are not
878 * be compressed and direntries are of the maximum size.
879 *
880 * Note, data, which may be stored in inodes is budgeted separately, so
Heiko Schocherf5895d12014-06-24 10:10:04 +0200881 * it is not included into 'c->bi.inode_budget'.
Stefan Roese2fc10f62009-03-19 15:35:05 +0100882 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200883 c->bi.page_budget = UBIFS_MAX_DATA_NODE_SZ * UBIFS_BLOCKS_PER_PAGE;
884 c->bi.inode_budget = UBIFS_INO_NODE_SZ;
885 c->bi.dent_budget = UBIFS_MAX_DENT_NODE_SZ;
Stefan Roese2fc10f62009-03-19 15:35:05 +0100886
887 /*
888 * When the amount of flash space used by buds becomes
889 * 'c->max_bud_bytes', UBIFS just blocks all writers and starts commit.
890 * The writers are unblocked when the commit is finished. To avoid
891 * writers to be blocked UBIFS initiates background commit in advance,
892 * when number of bud bytes becomes above the limit defined below.
893 */
894 c->bg_bud_bytes = (c->max_bud_bytes * 13) >> 4;
895
896 /*
897 * Ensure minimum journal size. All the bytes in the journal heads are
898 * considered to be used, when calculating the current journal usage.
899 * Consequently, if the journal is too small, UBIFS will treat it as
900 * always full.
901 */
902 tmp64 = (long long)(c->jhead_cnt + 1) * c->leb_size + 1;
903 if (c->bg_bud_bytes < tmp64)
904 c->bg_bud_bytes = tmp64;
905 if (c->max_bud_bytes < tmp64 + c->leb_size)
906 c->max_bud_bytes = tmp64 + c->leb_size;
907
908 err = ubifs_calc_lpt_geom(c);
909 if (err)
910 return err;
911
Heiko Schocherf5895d12014-06-24 10:10:04 +0200912 /* Initialize effective LEB size used in budgeting calculations */
913 c->idx_leb_size = c->leb_size - c->max_idx_node_sz;
Stefan Roese2fc10f62009-03-19 15:35:05 +0100914 return 0;
915}
916
917/*
918 * init_constants_master - initialize UBIFS constants.
919 * @c: UBIFS file-system description object
920 *
921 * This is a helper function which initializes various UBIFS constants after
922 * the master node has been read. It also checks various UBIFS parameters and
923 * makes sure they are all right.
924 */
925static void init_constants_master(struct ubifs_info *c)
926{
927 long long tmp64;
928
Heiko Schocherf5895d12014-06-24 10:10:04 +0200929 c->bi.min_idx_lebs = ubifs_calc_min_idx_lebs(c);
930 c->report_rp_size = ubifs_reported_space(c, c->rp_size);
Stefan Roese2fc10f62009-03-19 15:35:05 +0100931
932 /*
933 * Calculate total amount of FS blocks. This number is not used
934 * internally because it does not make much sense for UBIFS, but it is
935 * necessary to report something for the 'statfs()' call.
936 *
937 * Subtract the LEB reserved for GC, the LEB which is reserved for
938 * deletions, minimum LEBs for the index, and assume only one journal
939 * head is available.
940 */
941 tmp64 = c->main_lebs - 1 - 1 - MIN_INDEX_LEBS - c->jhead_cnt + 1;
942 tmp64 *= (long long)c->leb_size - c->leb_overhead;
943 tmp64 = ubifs_reported_space(c, tmp64);
944 c->block_cnt = tmp64 >> UBIFS_BLOCK_SHIFT;
945}
946
947/**
Heiko Schocherf5895d12014-06-24 10:10:04 +0200948 * take_gc_lnum - reserve GC LEB.
949 * @c: UBIFS file-system description object
950 *
951 * This function ensures that the LEB reserved for garbage collection is marked
952 * as "taken" in lprops. We also have to set free space to LEB size and dirty
953 * space to zero, because lprops may contain out-of-date information if the
954 * file-system was un-mounted before it has been committed. This function
955 * returns zero in case of success and a negative error code in case of
956 * failure.
957 */
958static int take_gc_lnum(struct ubifs_info *c)
959{
960 int err;
961
962 if (c->gc_lnum == -1) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200963 ubifs_err(c, "no LEB for GC");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200964 return -EINVAL;
965 }
966
967 /* And we have to tell lprops that this LEB is taken */
968 err = ubifs_change_one_lp(c, c->gc_lnum, c->leb_size, 0,
969 LPROPS_TAKEN, 0, 0);
970 return err;
971}
972
973/**
974 * alloc_wbufs - allocate write-buffers.
975 * @c: UBIFS file-system description object
976 *
977 * This helper function allocates and initializes UBIFS write-buffers. Returns
978 * zero in case of success and %-ENOMEM in case of failure.
979 */
980static int alloc_wbufs(struct ubifs_info *c)
981{
982 int i, err;
983
Heiko Schocher94b66de2015-10-22 06:19:21 +0200984 c->jheads = kcalloc(c->jhead_cnt, sizeof(struct ubifs_jhead),
985 GFP_KERNEL);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200986 if (!c->jheads)
987 return -ENOMEM;
988
989 /* Initialize journal heads */
990 for (i = 0; i < c->jhead_cnt; i++) {
991 INIT_LIST_HEAD(&c->jheads[i].buds_list);
992 err = ubifs_wbuf_init(c, &c->jheads[i].wbuf);
993 if (err)
994 return err;
995
996 c->jheads[i].wbuf.sync_callback = &bud_wbuf_callback;
997 c->jheads[i].wbuf.jhead = i;
998 c->jheads[i].grouped = 1;
999 }
1000
1001 /*
1002 * Garbage Collector head does not need to be synchronized by timer.
1003 * Also GC head nodes are not grouped.
1004 */
1005 c->jheads[GCHD].wbuf.no_timer = 1;
1006 c->jheads[GCHD].grouped = 0;
1007
1008 return 0;
1009}
1010
1011/**
1012 * free_wbufs - free write-buffers.
1013 * @c: UBIFS file-system description object
1014 */
1015static void free_wbufs(struct ubifs_info *c)
1016{
1017 int i;
1018
1019 if (c->jheads) {
1020 for (i = 0; i < c->jhead_cnt; i++) {
1021 kfree(c->jheads[i].wbuf.buf);
1022 kfree(c->jheads[i].wbuf.inodes);
1023 }
1024 kfree(c->jheads);
1025 c->jheads = NULL;
1026 }
1027}
1028
1029/**
Stefan Roese2fc10f62009-03-19 15:35:05 +01001030 * free_orphans - free orphans.
1031 * @c: UBIFS file-system description object
1032 */
1033static void free_orphans(struct ubifs_info *c)
1034{
1035 struct ubifs_orphan *orph;
1036
1037 while (c->orph_dnext) {
1038 orph = c->orph_dnext;
1039 c->orph_dnext = orph->dnext;
1040 list_del(&orph->list);
1041 kfree(orph);
1042 }
1043
1044 while (!list_empty(&c->orph_list)) {
1045 orph = list_entry(c->orph_list.next, struct ubifs_orphan, list);
1046 list_del(&orph->list);
1047 kfree(orph);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001048 ubifs_err(c, "orphan list not empty at unmount");
Stefan Roese2fc10f62009-03-19 15:35:05 +01001049 }
1050
1051 vfree(c->orph_buf);
1052 c->orph_buf = NULL;
1053}
Heiko Schocherf5895d12014-06-24 10:10:04 +02001054
Heiko Schocherf5895d12014-06-24 10:10:04 +02001055/**
1056 * free_buds - free per-bud objects.
1057 * @c: UBIFS file-system description object
1058 */
1059static void free_buds(struct ubifs_info *c)
1060{
1061 struct ubifs_bud *bud, *n;
1062
1063 rbtree_postorder_for_each_entry_safe(bud, n, &c->buds, rb)
1064 kfree(bud);
1065}
Stefan Roese2fc10f62009-03-19 15:35:05 +01001066
1067/**
1068 * check_volume_empty - check if the UBI volume is empty.
1069 * @c: UBIFS file-system description object
1070 *
1071 * This function checks if the UBIFS volume is empty by looking if its LEBs are
1072 * mapped or not. The result of checking is stored in the @c->empty variable.
1073 * Returns zero in case of success and a negative error code in case of
1074 * failure.
1075 */
1076static int check_volume_empty(struct ubifs_info *c)
1077{
1078 int lnum, err;
1079
1080 c->empty = 1;
1081 for (lnum = 0; lnum < c->leb_cnt; lnum++) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001082 err = ubifs_is_mapped(c, lnum);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001083 if (unlikely(err < 0))
1084 return err;
1085 if (err == 1) {
1086 c->empty = 0;
1087 break;
1088 }
1089
1090 cond_resched();
1091 }
1092
1093 return 0;
1094}
1095
Heiko Schocherf5895d12014-06-24 10:10:04 +02001096/*
1097 * UBIFS mount options.
1098 *
1099 * Opt_fast_unmount: do not run a journal commit before un-mounting
1100 * Opt_norm_unmount: run a journal commit before un-mounting
1101 * Opt_bulk_read: enable bulk-reads
1102 * Opt_no_bulk_read: disable bulk-reads
1103 * Opt_chk_data_crc: check CRCs when reading data nodes
1104 * Opt_no_chk_data_crc: do not check CRCs when reading data nodes
1105 * Opt_override_compr: override default compressor
1106 * Opt_err: just end of array marker
1107 */
1108enum {
1109 Opt_fast_unmount,
1110 Opt_norm_unmount,
1111 Opt_bulk_read,
1112 Opt_no_bulk_read,
1113 Opt_chk_data_crc,
1114 Opt_no_chk_data_crc,
1115 Opt_override_compr,
1116 Opt_err,
1117};
1118
1119#ifndef __UBOOT__
1120static const match_table_t tokens = {
1121 {Opt_fast_unmount, "fast_unmount"},
1122 {Opt_norm_unmount, "norm_unmount"},
1123 {Opt_bulk_read, "bulk_read"},
1124 {Opt_no_bulk_read, "no_bulk_read"},
1125 {Opt_chk_data_crc, "chk_data_crc"},
1126 {Opt_no_chk_data_crc, "no_chk_data_crc"},
1127 {Opt_override_compr, "compr=%s"},
1128 {Opt_err, NULL},
1129};
1130
1131/**
1132 * parse_standard_option - parse a standard mount option.
1133 * @option: the option to parse
1134 *
1135 * Normally, standard mount options like "sync" are passed to file-systems as
1136 * flags. However, when a "rootflags=" kernel boot parameter is used, they may
1137 * be present in the options string. This function tries to deal with this
1138 * situation and parse standard options. Returns 0 if the option was not
1139 * recognized, and the corresponding integer flag if it was.
1140 *
1141 * UBIFS is only interested in the "sync" option, so do not check for anything
1142 * else.
1143 */
1144static int parse_standard_option(const char *option)
1145{
Heiko Schocher94b66de2015-10-22 06:19:21 +02001146
1147 pr_notice("UBIFS: parse %s\n", option);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001148 if (!strcmp(option, "sync"))
1149 return MS_SYNCHRONOUS;
1150 return 0;
1151}
1152
1153/**
1154 * ubifs_parse_options - parse mount parameters.
1155 * @c: UBIFS file-system description object
1156 * @options: parameters to parse
1157 * @is_remount: non-zero if this is FS re-mount
1158 *
1159 * This function parses UBIFS mount options and returns zero in case success
1160 * and a negative error code in case of failure.
1161 */
1162static int ubifs_parse_options(struct ubifs_info *c, char *options,
1163 int is_remount)
1164{
1165 char *p;
1166 substring_t args[MAX_OPT_ARGS];
1167
1168 if (!options)
1169 return 0;
1170
1171 while ((p = strsep(&options, ","))) {
1172 int token;
1173
1174 if (!*p)
1175 continue;
1176
1177 token = match_token(p, tokens, args);
1178 switch (token) {
1179 /*
1180 * %Opt_fast_unmount and %Opt_norm_unmount options are ignored.
1181 * We accept them in order to be backward-compatible. But this
1182 * should be removed at some point.
1183 */
1184 case Opt_fast_unmount:
1185 c->mount_opts.unmount_mode = 2;
1186 break;
1187 case Opt_norm_unmount:
1188 c->mount_opts.unmount_mode = 1;
1189 break;
1190 case Opt_bulk_read:
1191 c->mount_opts.bulk_read = 2;
1192 c->bulk_read = 1;
1193 break;
1194 case Opt_no_bulk_read:
1195 c->mount_opts.bulk_read = 1;
1196 c->bulk_read = 0;
1197 break;
1198 case Opt_chk_data_crc:
1199 c->mount_opts.chk_data_crc = 2;
1200 c->no_chk_data_crc = 0;
1201 break;
1202 case Opt_no_chk_data_crc:
1203 c->mount_opts.chk_data_crc = 1;
1204 c->no_chk_data_crc = 1;
1205 break;
1206 case Opt_override_compr:
1207 {
1208 char *name = match_strdup(&args[0]);
1209
1210 if (!name)
1211 return -ENOMEM;
1212 if (!strcmp(name, "none"))
1213 c->mount_opts.compr_type = UBIFS_COMPR_NONE;
1214 else if (!strcmp(name, "lzo"))
1215 c->mount_opts.compr_type = UBIFS_COMPR_LZO;
1216 else if (!strcmp(name, "zlib"))
1217 c->mount_opts.compr_type = UBIFS_COMPR_ZLIB;
1218 else {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001219 ubifs_err(c, "unknown compressor \"%s\"", name); //FIXME: is c ready?
Heiko Schocherf5895d12014-06-24 10:10:04 +02001220 kfree(name);
1221 return -EINVAL;
1222 }
1223 kfree(name);
1224 c->mount_opts.override_compr = 1;
1225 c->default_compr = c->mount_opts.compr_type;
1226 break;
1227 }
1228 default:
1229 {
1230 unsigned long flag;
1231 struct super_block *sb = c->vfs_sb;
1232
1233 flag = parse_standard_option(p);
1234 if (!flag) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001235 ubifs_err(c, "unrecognized mount option \"%s\" or missing value",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001236 p);
1237 return -EINVAL;
1238 }
1239 sb->s_flags |= flag;
1240 break;
1241 }
1242 }
1243 }
1244
1245 return 0;
1246}
Anton Habegger7c470312015-01-22 22:29:11 +01001247#endif
Heiko Schocherf5895d12014-06-24 10:10:04 +02001248
Stefan Roese2fc10f62009-03-19 15:35:05 +01001249/**
Heiko Schocherf5895d12014-06-24 10:10:04 +02001250 * destroy_journal - destroy journal data structures.
1251 * @c: UBIFS file-system description object
1252 *
1253 * This function destroys journal data structures including those that may have
1254 * been created by recovery functions.
1255 */
1256static void destroy_journal(struct ubifs_info *c)
1257{
1258 while (!list_empty(&c->unclean_leb_list)) {
1259 struct ubifs_unclean_leb *ucleb;
1260
1261 ucleb = list_entry(c->unclean_leb_list.next,
1262 struct ubifs_unclean_leb, list);
1263 list_del(&ucleb->list);
1264 kfree(ucleb);
1265 }
1266 while (!list_empty(&c->old_buds)) {
1267 struct ubifs_bud *bud;
1268
1269 bud = list_entry(c->old_buds.next, struct ubifs_bud, list);
1270 list_del(&bud->list);
1271 kfree(bud);
1272 }
1273 ubifs_destroy_idx_gc(c);
1274 ubifs_destroy_size_tree(c);
1275 ubifs_tnc_close(c);
1276 free_buds(c);
1277}
Heiko Schocherf5895d12014-06-24 10:10:04 +02001278
1279/**
1280 * bu_init - initialize bulk-read information.
1281 * @c: UBIFS file-system description object
1282 */
1283static void bu_init(struct ubifs_info *c)
1284{
1285 ubifs_assert(c->bulk_read == 1);
1286
1287 if (c->bu.buf)
1288 return; /* Already initialized */
1289
1290again:
1291 c->bu.buf = kmalloc(c->max_bu_buf_len, GFP_KERNEL | __GFP_NOWARN);
1292 if (!c->bu.buf) {
1293 if (c->max_bu_buf_len > UBIFS_KMALLOC_OK) {
1294 c->max_bu_buf_len = UBIFS_KMALLOC_OK;
1295 goto again;
1296 }
1297
1298 /* Just disable bulk-read */
Heiko Schocher94b66de2015-10-22 06:19:21 +02001299 ubifs_warn(c, "cannot allocate %d bytes of memory for bulk-read, disabling it",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001300 c->max_bu_buf_len);
1301 c->mount_opts.bulk_read = 1;
1302 c->bulk_read = 0;
1303 return;
1304 }
1305}
1306
1307#ifndef __UBOOT__
1308/**
1309 * check_free_space - check if there is enough free space to mount.
1310 * @c: UBIFS file-system description object
1311 *
1312 * This function makes sure UBIFS has enough free space to be mounted in
1313 * read/write mode. UBIFS must always have some free space to allow deletions.
1314 */
1315static int check_free_space(struct ubifs_info *c)
1316{
1317 ubifs_assert(c->dark_wm > 0);
1318 if (c->lst.total_free + c->lst.total_dirty < c->dark_wm) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001319 ubifs_err(c, "insufficient free space to mount in R/W mode");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001320 ubifs_dump_budg(c, &c->bi);
1321 ubifs_dump_lprops(c);
1322 return -ENOSPC;
1323 }
1324 return 0;
1325}
1326#endif
1327
1328/**
Stefan Roese2fc10f62009-03-19 15:35:05 +01001329 * mount_ubifs - mount UBIFS file-system.
1330 * @c: UBIFS file-system description object
1331 *
1332 * This function mounts UBIFS file system. Returns zero in case of success and
1333 * a negative error code in case of failure.
Stefan Roese2fc10f62009-03-19 15:35:05 +01001334 */
1335static int mount_ubifs(struct ubifs_info *c)
1336{
Heiko Schocherf5895d12014-06-24 10:10:04 +02001337 int err;
Petr Vorel05239e82018-03-24 01:49:23 +01001338 long long x;
1339#ifndef CONFIG_UBIFS_SILENCE_MSG
1340 long long y;
1341#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01001342 size_t sz;
1343
Heiko Schocherf5895d12014-06-24 10:10:04 +02001344 c->ro_mount = !!(c->vfs_sb->s_flags & MS_RDONLY);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001345 /* Suppress error messages while probing if MS_SILENT is set */
1346 c->probing = !!(c->vfs_sb->s_flags & MS_SILENT);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001347#ifdef __UBOOT__
1348 if (!c->ro_mount) {
1349 printf("UBIFS: only ro mode in U-Boot allowed.\n");
1350 return -EACCES;
1351 }
1352#endif
1353
Stefan Roese2fc10f62009-03-19 15:35:05 +01001354 err = init_constants_early(c);
1355 if (err)
1356 return err;
1357
1358 err = ubifs_debugging_init(c);
1359 if (err)
1360 return err;
1361
1362 err = check_volume_empty(c);
1363 if (err)
1364 goto out_free;
1365
Heiko Schocherf5895d12014-06-24 10:10:04 +02001366 if (c->empty && (c->ro_mount || c->ro_media)) {
Stefan Roese2fc10f62009-03-19 15:35:05 +01001367 /*
1368 * This UBI volume is empty, and read-only, or the file system
1369 * is mounted read-only - we cannot format it.
1370 */
Heiko Schocher94b66de2015-10-22 06:19:21 +02001371 ubifs_err(c, "can't format empty UBI volume: read-only %s",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001372 c->ro_media ? "UBI volume" : "mount");
1373 err = -EROFS;
1374 goto out_free;
1375 }
1376
Heiko Schocherf5895d12014-06-24 10:10:04 +02001377 if (c->ro_media && !c->ro_mount) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001378 ubifs_err(c, "cannot mount read-write - read-only media");
Stefan Roese2fc10f62009-03-19 15:35:05 +01001379 err = -EROFS;
1380 goto out_free;
1381 }
1382
1383 /*
1384 * The requirement for the buffer is that it should fit indexing B-tree
1385 * height amount of integers. We assume the height if the TNC tree will
1386 * never exceed 64.
1387 */
1388 err = -ENOMEM;
1389 c->bottom_up_buf = kmalloc(BOTTOM_UP_HEIGHT * sizeof(int), GFP_KERNEL);
1390 if (!c->bottom_up_buf)
1391 goto out_free;
1392
1393 c->sbuf = vmalloc(c->leb_size);
1394 if (!c->sbuf)
1395 goto out_free;
1396
Heiko Schocherf5895d12014-06-24 10:10:04 +02001397#ifndef __UBOOT__
1398 if (!c->ro_mount) {
1399 c->ileb_buf = vmalloc(c->leb_size);
1400 if (!c->ileb_buf)
1401 goto out_free;
1402 }
1403#endif
1404
1405 if (c->bulk_read == 1)
1406 bu_init(c);
1407
1408#ifndef __UBOOT__
1409 if (!c->ro_mount) {
1410 c->write_reserve_buf = kmalloc(COMPRESSED_DATA_NODE_BUF_SZ,
1411 GFP_KERNEL);
1412 if (!c->write_reserve_buf)
1413 goto out_free;
1414 }
1415#endif
1416
1417 c->mounting = 1;
Stefan Roese2fc10f62009-03-19 15:35:05 +01001418
1419 err = ubifs_read_superblock(c);
1420 if (err)
1421 goto out_free;
1422
Heiko Schocher94b66de2015-10-22 06:19:21 +02001423 c->probing = 0;
1424
Stefan Roese2fc10f62009-03-19 15:35:05 +01001425 /*
1426 * Make sure the compressor which is set as default in the superblock
1427 * or overridden by mount options is actually compiled in.
1428 */
1429 if (!ubifs_compr_present(c->default_compr)) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001430 ubifs_err(c, "'compressor \"%s\" is not compiled in",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001431 ubifs_compr_name(c->default_compr));
Heiko Schocherf5895d12014-06-24 10:10:04 +02001432 err = -ENOTSUPP;
Stefan Roese2fc10f62009-03-19 15:35:05 +01001433 goto out_free;
1434 }
1435
Stefan Roese2fc10f62009-03-19 15:35:05 +01001436 err = init_constants_sb(c);
1437 if (err)
1438 goto out_free;
1439
1440 sz = ALIGN(c->max_idx_node_sz, c->min_io_size);
1441 sz = ALIGN(sz + c->max_idx_node_sz, c->min_io_size);
1442 c->cbuf = kmalloc(sz, GFP_NOFS);
1443 if (!c->cbuf) {
1444 err = -ENOMEM;
1445 goto out_free;
1446 }
1447
Heiko Schocherf5895d12014-06-24 10:10:04 +02001448 err = alloc_wbufs(c);
1449 if (err)
1450 goto out_cbuf;
1451
Stefan Roese2fc10f62009-03-19 15:35:05 +01001452 sprintf(c->bgt_name, BGT_NAME_PATTERN, c->vi.ubi_num, c->vi.vol_id);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001453#ifndef __UBOOT__
1454 if (!c->ro_mount) {
1455 /* Create background thread */
1456 c->bgt = kthread_create(ubifs_bg_thread, c, "%s", c->bgt_name);
1457 if (IS_ERR(c->bgt)) {
1458 err = PTR_ERR(c->bgt);
1459 c->bgt = NULL;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001460 ubifs_err(c, "cannot spawn \"%s\", error %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001461 c->bgt_name, err);
1462 goto out_wbufs;
1463 }
1464 wake_up_process(c->bgt);
1465 }
1466#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01001467
1468 err = ubifs_read_master(c);
1469 if (err)
1470 goto out_master;
1471
1472 init_constants_master(c);
1473
1474 if ((c->mst_node->flags & cpu_to_le32(UBIFS_MST_DIRTY)) != 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001475 ubifs_msg(c, "recovery needed");
Stefan Roese2fc10f62009-03-19 15:35:05 +01001476 c->need_recovery = 1;
1477 }
1478
Heiko Schocherf5895d12014-06-24 10:10:04 +02001479#ifndef __UBOOT__
1480 if (c->need_recovery && !c->ro_mount) {
1481 err = ubifs_recover_inl_heads(c, c->sbuf);
1482 if (err)
1483 goto out_master;
1484 }
1485#endif
1486
1487 err = ubifs_lpt_init(c, 1, !c->ro_mount);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001488 if (err)
Heiko Schocherf5895d12014-06-24 10:10:04 +02001489 goto out_master;
1490
1491#ifndef __UBOOT__
1492 if (!c->ro_mount && c->space_fixup) {
1493 err = ubifs_fixup_free_space(c);
1494 if (err)
1495 goto out_lpt;
1496 }
1497
Heiko Schocher94b66de2015-10-22 06:19:21 +02001498 if (!c->ro_mount && !c->need_recovery) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001499 /*
1500 * Set the "dirty" flag so that if we reboot uncleanly we
1501 * will notice this immediately on the next mount.
1502 */
1503 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY);
1504 err = ubifs_write_master(c);
1505 if (err)
1506 goto out_lpt;
1507 }
1508#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01001509
Heiko Schocherf5895d12014-06-24 10:10:04 +02001510 err = dbg_check_idx_size(c, c->bi.old_idx_sz);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001511 if (err)
1512 goto out_lpt;
1513
1514 err = ubifs_replay_journal(c);
1515 if (err)
1516 goto out_journal;
1517
Heiko Schocherf5895d12014-06-24 10:10:04 +02001518 /* Calculate 'min_idx_lebs' after journal replay */
1519 c->bi.min_idx_lebs = ubifs_calc_min_idx_lebs(c);
1520
1521 err = ubifs_mount_orphans(c, c->need_recovery, c->ro_mount);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001522 if (err)
1523 goto out_orphans;
1524
Heiko Schocherf5895d12014-06-24 10:10:04 +02001525 if (!c->ro_mount) {
1526#ifndef __UBOOT__
1527 int lnum;
1528
1529 err = check_free_space(c);
1530 if (err)
1531 goto out_orphans;
1532
1533 /* Check for enough log space */
1534 lnum = c->lhead_lnum + 1;
1535 if (lnum >= UBIFS_LOG_LNUM + c->log_lebs)
1536 lnum = UBIFS_LOG_LNUM;
1537 if (lnum == c->ltail_lnum) {
1538 err = ubifs_consolidate_log(c);
1539 if (err)
1540 goto out_orphans;
1541 }
1542
1543 if (c->need_recovery) {
1544 err = ubifs_recover_size(c);
1545 if (err)
1546 goto out_orphans;
1547 err = ubifs_rcvry_gc_commit(c);
1548 if (err)
1549 goto out_orphans;
1550 } else {
1551 err = take_gc_lnum(c);
1552 if (err)
1553 goto out_orphans;
1554
1555 /*
1556 * GC LEB may contain garbage if there was an unclean
1557 * reboot, and it should be un-mapped.
1558 */
1559 err = ubifs_leb_unmap(c, c->gc_lnum);
1560 if (err)
1561 goto out_orphans;
1562 }
1563
1564 err = dbg_check_lprops(c);
1565 if (err)
1566 goto out_orphans;
1567#endif
1568 } else if (c->need_recovery) {
Stefan Roese2fc10f62009-03-19 15:35:05 +01001569 err = ubifs_recover_size(c);
1570 if (err)
1571 goto out_orphans;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001572 } else {
1573 /*
1574 * Even if we mount read-only, we have to set space in GC LEB
1575 * to proper value because this affects UBIFS free space
1576 * reporting. We do not want to have a situation when
1577 * re-mounting from R/O to R/W changes amount of free space.
1578 */
1579 err = take_gc_lnum(c);
1580 if (err)
1581 goto out_orphans;
Stefan Roese2fc10f62009-03-19 15:35:05 +01001582 }
1583
Heiko Schocherf5895d12014-06-24 10:10:04 +02001584#ifndef __UBOOT__
Stefan Roese2fc10f62009-03-19 15:35:05 +01001585 spin_lock(&ubifs_infos_lock);
1586 list_add_tail(&c->infos_list, &ubifs_infos);
1587 spin_unlock(&ubifs_infos_lock);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001588#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01001589
1590 if (c->need_recovery) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001591 if (c->ro_mount)
Heiko Schocher94b66de2015-10-22 06:19:21 +02001592 ubifs_msg(c, "recovery deferred");
Stefan Roese2fc10f62009-03-19 15:35:05 +01001593 else {
1594 c->need_recovery = 0;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001595 ubifs_msg(c, "recovery completed");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001596 /*
1597 * GC LEB has to be empty and taken at this point. But
1598 * the journal head LEBs may also be accounted as
1599 * "empty taken" if they are empty.
1600 */
1601 ubifs_assert(c->lst.taken_empty_lebs > 0);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001602 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001603 } else
1604 ubifs_assert(c->lst.taken_empty_lebs > 0);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001605
1606 err = dbg_check_filesystem(c);
1607 if (err)
1608 goto out_infos;
1609
Heiko Schocherf5895d12014-06-24 10:10:04 +02001610 err = dbg_debugfs_init_fs(c);
1611 if (err)
1612 goto out_infos;
1613
1614 c->mounting = 0;
Stefan Roese2fc10f62009-03-19 15:35:05 +01001615
Heiko Schocher94b66de2015-10-22 06:19:21 +02001616 ubifs_msg(c, "UBIFS: mounted UBI device %d, volume %d, name \"%s\"%s",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001617 c->vi.ubi_num, c->vi.vol_id, c->vi.name,
1618 c->ro_mount ? ", R/O mode" : "");
Stefan Roese2fc10f62009-03-19 15:35:05 +01001619 x = (long long)c->main_lebs * c->leb_size;
Petr Vorel05239e82018-03-24 01:49:23 +01001620#ifndef CONFIG_UBIFS_SILENCE_MSG
Heiko Schocherf5895d12014-06-24 10:10:04 +02001621 y = (long long)c->log_lebs * c->leb_size + c->max_bud_bytes;
Petr Vorel05239e82018-03-24 01:49:23 +01001622#endif
Heiko Schocher94b66de2015-10-22 06:19:21 +02001623 ubifs_msg(c, "LEB size: %d bytes (%d KiB), min./max. I/O unit sizes: %d bytes/%d bytes",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001624 c->leb_size, c->leb_size >> 10, c->min_io_size,
1625 c->max_write_size);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001626 ubifs_msg(c, "FS size: %lld bytes (%lld MiB, %d LEBs), journal size %lld bytes (%lld MiB, %d LEBs)",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001627 x, x >> 20, c->main_lebs,
1628 y, y >> 20, c->log_lebs + c->max_bud_cnt);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001629 ubifs_msg(c, "reserved for root: %llu bytes (%llu KiB)",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001630 c->report_rp_size, c->report_rp_size >> 10);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001631 ubifs_msg(c, "media format: w%d/r%d (latest is w%d/r%d), UUID %pUB%s",
Artem Bityutskiy619697a2009-03-27 10:21:14 +01001632 c->fmt_version, c->ro_compat_version,
Heiko Schocherf5895d12014-06-24 10:10:04 +02001633 UBIFS_FORMAT_VERSION, UBIFS_RO_COMPAT_VERSION, c->uuid,
1634 c->big_lpt ? ", big LPT model" : ", small LPT model");
Stefan Roese2fc10f62009-03-19 15:35:05 +01001635
Heiko Schocherf5895d12014-06-24 10:10:04 +02001636 dbg_gen("default compressor: %s", ubifs_compr_name(c->default_compr));
1637 dbg_gen("data journal heads: %d",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001638 c->jhead_cnt - NONDATA_JHEADS_CNT);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001639 dbg_gen("log LEBs: %d (%d - %d)",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001640 c->log_lebs, UBIFS_LOG_LNUM, c->log_last);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001641 dbg_gen("LPT area LEBs: %d (%d - %d)",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001642 c->lpt_lebs, c->lpt_first, c->lpt_last);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001643 dbg_gen("orphan area LEBs: %d (%d - %d)",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001644 c->orph_lebs, c->orph_first, c->orph_last);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001645 dbg_gen("main area LEBs: %d (%d - %d)",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001646 c->main_lebs, c->main_first, c->leb_cnt - 1);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001647 dbg_gen("index LEBs: %d", c->lst.idx_lebs);
1648 dbg_gen("total index bytes: %lld (%lld KiB, %lld MiB)",
1649 c->bi.old_idx_sz, c->bi.old_idx_sz >> 10,
1650 c->bi.old_idx_sz >> 20);
1651 dbg_gen("key hash type: %d", c->key_hash_type);
1652 dbg_gen("tree fanout: %d", c->fanout);
1653 dbg_gen("reserved GC LEB: %d", c->gc_lnum);
1654 dbg_gen("max. znode size %d", c->max_znode_sz);
1655 dbg_gen("max. index node size %d", c->max_idx_node_sz);
1656 dbg_gen("node sizes: data %zu, inode %zu, dentry %zu",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001657 UBIFS_DATA_NODE_SZ, UBIFS_INO_NODE_SZ, UBIFS_DENT_NODE_SZ);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001658 dbg_gen("node sizes: trun %zu, sb %zu, master %zu",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001659 UBIFS_TRUN_NODE_SZ, UBIFS_SB_NODE_SZ, UBIFS_MST_NODE_SZ);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001660 dbg_gen("node sizes: ref %zu, cmt. start %zu, orph %zu",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001661 UBIFS_REF_NODE_SZ, UBIFS_CS_NODE_SZ, UBIFS_ORPH_NODE_SZ);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001662 dbg_gen("max. node sizes: data %zu, inode %zu dentry %zu, idx %d",
Wolfgang Denkec7fbf52013-10-04 17:43:24 +02001663 UBIFS_MAX_DATA_NODE_SZ, UBIFS_MAX_INO_NODE_SZ,
Heiko Schocherf5895d12014-06-24 10:10:04 +02001664 UBIFS_MAX_DENT_NODE_SZ, ubifs_idx_node_sz(c, c->fanout));
1665 dbg_gen("dead watermark: %d", c->dead_wm);
1666 dbg_gen("dark watermark: %d", c->dark_wm);
1667 dbg_gen("LEB overhead: %d", c->leb_overhead);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001668 x = (long long)c->main_lebs * c->dark_wm;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001669 dbg_gen("max. dark space: %lld (%lld KiB, %lld MiB)",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001670 x, x >> 10, x >> 20);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001671 dbg_gen("maximum bud bytes: %lld (%lld KiB, %lld MiB)",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001672 c->max_bud_bytes, c->max_bud_bytes >> 10,
1673 c->max_bud_bytes >> 20);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001674 dbg_gen("BG commit bud bytes: %lld (%lld KiB, %lld MiB)",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001675 c->bg_bud_bytes, c->bg_bud_bytes >> 10,
1676 c->bg_bud_bytes >> 20);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001677 dbg_gen("current bud bytes %lld (%lld KiB, %lld MiB)",
Stefan Roese2fc10f62009-03-19 15:35:05 +01001678 c->bud_bytes, c->bud_bytes >> 10, c->bud_bytes >> 20);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001679 dbg_gen("max. seq. number: %llu", c->max_sqnum);
1680 dbg_gen("commit number: %llu", c->cmt_no);
1681
1682 return 0;
1683
1684out_infos:
1685 spin_lock(&ubifs_infos_lock);
1686 list_del(&c->infos_list);
1687 spin_unlock(&ubifs_infos_lock);
1688out_orphans:
1689 free_orphans(c);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001690out_journal:
1691 destroy_journal(c);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001692out_lpt:
1693 ubifs_lpt_free(c, 0);
1694out_master:
1695 kfree(c->mst_node);
1696 kfree(c->rcvrd_mst_node);
1697 if (c->bgt)
1698 kthread_stop(c->bgt);
1699#ifndef __UBOOT__
1700out_wbufs:
1701#endif
1702 free_wbufs(c);
1703out_cbuf:
1704 kfree(c->cbuf);
1705out_free:
1706 kfree(c->write_reserve_buf);
1707 kfree(c->bu.buf);
1708 vfree(c->ileb_buf);
1709 vfree(c->sbuf);
1710 kfree(c->bottom_up_buf);
1711 ubifs_debugging_exit(c);
1712 return err;
1713}
1714
1715/**
1716 * ubifs_umount - un-mount UBIFS file-system.
1717 * @c: UBIFS file-system description object
1718 *
1719 * Note, this function is called to free allocated resourced when un-mounting,
1720 * as well as free resources when an error occurred while we were half way
1721 * through mounting (error path cleanup function). So it has to make sure the
1722 * resource was actually allocated before freeing it.
1723 */
1724#ifndef __UBOOT__
1725static void ubifs_umount(struct ubifs_info *c)
1726#else
1727void ubifs_umount(struct ubifs_info *c)
1728#endif
1729{
1730 dbg_gen("un-mounting UBI device %d, volume %d", c->vi.ubi_num,
1731 c->vi.vol_id);
1732
1733 dbg_debugfs_exit_fs(c);
1734 spin_lock(&ubifs_infos_lock);
1735 list_del(&c->infos_list);
1736 spin_unlock(&ubifs_infos_lock);
1737
1738#ifndef __UBOOT__
1739 if (c->bgt)
1740 kthread_stop(c->bgt);
1741
1742 destroy_journal(c);
1743#endif
1744 free_wbufs(c);
1745 free_orphans(c);
1746 ubifs_lpt_free(c, 0);
1747
1748 kfree(c->cbuf);
1749 kfree(c->rcvrd_mst_node);
1750 kfree(c->mst_node);
1751 kfree(c->write_reserve_buf);
1752 kfree(c->bu.buf);
1753 vfree(c->ileb_buf);
1754 vfree(c->sbuf);
1755 kfree(c->bottom_up_buf);
1756 ubifs_debugging_exit(c);
1757#ifdef __UBOOT__
1758 /* Finally free U-Boot's global copy of superblock */
1759 if (ubifs_sb != NULL) {
1760 free(ubifs_sb->s_fs_info);
1761 free(ubifs_sb);
1762 }
1763#endif
1764}
1765
1766#ifndef __UBOOT__
1767/**
1768 * ubifs_remount_rw - re-mount in read-write mode.
1769 * @c: UBIFS file-system description object
1770 *
1771 * UBIFS avoids allocating many unnecessary resources when mounted in read-only
1772 * mode. This function allocates the needed resources and re-mounts UBIFS in
1773 * read-write mode.
1774 */
1775static int ubifs_remount_rw(struct ubifs_info *c)
1776{
1777 int err, lnum;
1778
1779 if (c->rw_incompat) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001780 ubifs_err(c, "the file-system is not R/W-compatible");
1781 ubifs_msg(c, "on-flash format version is w%d/r%d, but software only supports up to version w%d/r%d",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001782 c->fmt_version, c->ro_compat_version,
1783 UBIFS_FORMAT_VERSION, UBIFS_RO_COMPAT_VERSION);
1784 return -EROFS;
1785 }
1786
1787 mutex_lock(&c->umount_mutex);
1788 dbg_save_space_info(c);
1789 c->remounting_rw = 1;
1790 c->ro_mount = 0;
1791
1792 if (c->space_fixup) {
1793 err = ubifs_fixup_free_space(c);
1794 if (err)
Heiko Schocher081fe9e2014-07-15 16:08:43 +02001795 goto out;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001796 }
1797
1798 err = check_free_space(c);
1799 if (err)
1800 goto out;
1801
1802 if (c->old_leb_cnt != c->leb_cnt) {
1803 struct ubifs_sb_node *sup;
1804
1805 sup = ubifs_read_sb_node(c);
1806 if (IS_ERR(sup)) {
1807 err = PTR_ERR(sup);
1808 goto out;
1809 }
1810 sup->leb_cnt = cpu_to_le32(c->leb_cnt);
1811 err = ubifs_write_sb_node(c, sup);
1812 kfree(sup);
1813 if (err)
1814 goto out;
1815 }
1816
1817 if (c->need_recovery) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001818 ubifs_msg(c, "completing deferred recovery");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001819 err = ubifs_write_rcvrd_mst_node(c);
1820 if (err)
1821 goto out;
1822 err = ubifs_recover_size(c);
1823 if (err)
1824 goto out;
1825 err = ubifs_clean_lebs(c, c->sbuf);
1826 if (err)
1827 goto out;
1828 err = ubifs_recover_inl_heads(c, c->sbuf);
1829 if (err)
1830 goto out;
1831 } else {
1832 /* A readonly mount is not allowed to have orphans */
1833 ubifs_assert(c->tot_orphans == 0);
1834 err = ubifs_clear_orphans(c);
1835 if (err)
1836 goto out;
1837 }
1838
1839 if (!(c->mst_node->flags & cpu_to_le32(UBIFS_MST_DIRTY))) {
1840 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY);
1841 err = ubifs_write_master(c);
1842 if (err)
1843 goto out;
1844 }
1845
1846 c->ileb_buf = vmalloc(c->leb_size);
1847 if (!c->ileb_buf) {
1848 err = -ENOMEM;
1849 goto out;
1850 }
1851
1852 c->write_reserve_buf = kmalloc(COMPRESSED_DATA_NODE_BUF_SZ, GFP_KERNEL);
1853 if (!c->write_reserve_buf) {
1854 err = -ENOMEM;
1855 goto out;
1856 }
1857
1858 err = ubifs_lpt_init(c, 0, 1);
1859 if (err)
1860 goto out;
1861
1862 /* Create background thread */
1863 c->bgt = kthread_create(ubifs_bg_thread, c, "%s", c->bgt_name);
1864 if (IS_ERR(c->bgt)) {
1865 err = PTR_ERR(c->bgt);
1866 c->bgt = NULL;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001867 ubifs_err(c, "cannot spawn \"%s\", error %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001868 c->bgt_name, err);
1869 goto out;
1870 }
1871 wake_up_process(c->bgt);
1872
1873 c->orph_buf = vmalloc(c->leb_size);
1874 if (!c->orph_buf) {
1875 err = -ENOMEM;
1876 goto out;
1877 }
1878
1879 /* Check for enough log space */
1880 lnum = c->lhead_lnum + 1;
1881 if (lnum >= UBIFS_LOG_LNUM + c->log_lebs)
1882 lnum = UBIFS_LOG_LNUM;
1883 if (lnum == c->ltail_lnum) {
1884 err = ubifs_consolidate_log(c);
1885 if (err)
1886 goto out;
1887 }
Stefan Roese2fc10f62009-03-19 15:35:05 +01001888
Heiko Schocherf5895d12014-06-24 10:10:04 +02001889 if (c->need_recovery)
1890 err = ubifs_rcvry_gc_commit(c);
1891 else
1892 err = ubifs_leb_unmap(c, c->gc_lnum);
1893 if (err)
1894 goto out;
Stefan Roese2fc10f62009-03-19 15:35:05 +01001895
Heiko Schocherf5895d12014-06-24 10:10:04 +02001896 dbg_gen("re-mounted read-write");
1897 c->remounting_rw = 0;
1898
1899 if (c->need_recovery) {
1900 c->need_recovery = 0;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001901 ubifs_msg(c, "deferred recovery completed");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001902 } else {
1903 /*
1904 * Do not run the debugging space check if the were doing
1905 * recovery, because when we saved the information we had the
1906 * file-system in a state where the TNC and lprops has been
1907 * modified in memory, but all the I/O operations (including a
1908 * commit) were deferred. So the file-system was in
1909 * "non-committed" state. Now the file-system is in committed
1910 * state, and of course the amount of free space will change
1911 * because, for example, the old index size was imprecise.
1912 */
1913 err = dbg_check_space_info(c);
1914 }
1915
1916 mutex_unlock(&c->umount_mutex);
1917 return err;
1918
1919out:
1920 c->ro_mount = 1;
1921 vfree(c->orph_buf);
1922 c->orph_buf = NULL;
1923 if (c->bgt) {
Stefan Roese2fc10f62009-03-19 15:35:05 +01001924 kthread_stop(c->bgt);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001925 c->bgt = NULL;
1926 }
1927 free_wbufs(c);
1928 kfree(c->write_reserve_buf);
1929 c->write_reserve_buf = NULL;
Stefan Roese2fc10f62009-03-19 15:35:05 +01001930 vfree(c->ileb_buf);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001931 c->ileb_buf = NULL;
1932 ubifs_lpt_free(c, 1);
1933 c->remounting_rw = 0;
1934 mutex_unlock(&c->umount_mutex);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001935 return err;
1936}
1937
1938/**
Heiko Schocherf5895d12014-06-24 10:10:04 +02001939 * ubifs_remount_ro - re-mount in read-only mode.
Stefan Roese2fc10f62009-03-19 15:35:05 +01001940 * @c: UBIFS file-system description object
1941 *
Heiko Schocherf5895d12014-06-24 10:10:04 +02001942 * We assume VFS has stopped writing. Possibly the background thread could be
1943 * running a commit, however kthread_stop will wait in that case.
Stefan Roese2fc10f62009-03-19 15:35:05 +01001944 */
Heiko Schocherf5895d12014-06-24 10:10:04 +02001945static void ubifs_remount_ro(struct ubifs_info *c)
Stefan Roese2fc10f62009-03-19 15:35:05 +01001946{
Heiko Schocherf5895d12014-06-24 10:10:04 +02001947 int i, err;
Stefan Roese2fc10f62009-03-19 15:35:05 +01001948
Heiko Schocherf5895d12014-06-24 10:10:04 +02001949 ubifs_assert(!c->need_recovery);
1950 ubifs_assert(!c->ro_mount);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001951
Heiko Schocherf5895d12014-06-24 10:10:04 +02001952 mutex_lock(&c->umount_mutex);
1953 if (c->bgt) {
Stefan Roese2fc10f62009-03-19 15:35:05 +01001954 kthread_stop(c->bgt);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001955 c->bgt = NULL;
1956 }
Stefan Roese2fc10f62009-03-19 15:35:05 +01001957
Heiko Schocherf5895d12014-06-24 10:10:04 +02001958 dbg_save_space_info(c);
Stefan Roese2fc10f62009-03-19 15:35:05 +01001959
Heiko Schocherf5895d12014-06-24 10:10:04 +02001960 for (i = 0; i < c->jhead_cnt; i++)
1961 ubifs_wbuf_sync(&c->jheads[i].wbuf);
1962
1963 c->mst_node->flags &= ~cpu_to_le32(UBIFS_MST_DIRTY);
1964 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_NO_ORPHS);
1965 c->mst_node->gc_lnum = cpu_to_le32(c->gc_lnum);
1966 err = ubifs_write_master(c);
1967 if (err)
1968 ubifs_ro_mode(c, err);
1969
1970 vfree(c->orph_buf);
1971 c->orph_buf = NULL;
1972 kfree(c->write_reserve_buf);
1973 c->write_reserve_buf = NULL;
Stefan Roese2fc10f62009-03-19 15:35:05 +01001974 vfree(c->ileb_buf);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001975 c->ileb_buf = NULL;
1976 ubifs_lpt_free(c, 1);
1977 c->ro_mount = 1;
1978 err = dbg_check_space_info(c);
1979 if (err)
1980 ubifs_ro_mode(c, err);
1981 mutex_unlock(&c->umount_mutex);
1982}
Stefan Roese2fc10f62009-03-19 15:35:05 +01001983
Heiko Schocherf5895d12014-06-24 10:10:04 +02001984static void ubifs_put_super(struct super_block *sb)
1985{
1986 int i;
1987 struct ubifs_info *c = sb->s_fs_info;
1988
Heiko Schocher94b66de2015-10-22 06:19:21 +02001989 ubifs_msg(c, "un-mount UBI device %d", c->vi.ubi_num);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001990
1991 /*
1992 * The following asserts are only valid if there has not been a failure
1993 * of the media. For example, there will be dirty inodes if we failed
1994 * to write them back because of I/O errors.
1995 */
1996 if (!c->ro_error) {
1997 ubifs_assert(c->bi.idx_growth == 0);
1998 ubifs_assert(c->bi.dd_growth == 0);
1999 ubifs_assert(c->bi.data_growth == 0);
2000 }
2001
2002 /*
2003 * The 'c->umount_lock' prevents races between UBIFS memory shrinker
2004 * and file system un-mount. Namely, it prevents the shrinker from
2005 * picking this superblock for shrinking - it will be just skipped if
2006 * the mutex is locked.
2007 */
2008 mutex_lock(&c->umount_mutex);
2009 if (!c->ro_mount) {
2010 /*
2011 * First of all kill the background thread to make sure it does
2012 * not interfere with un-mounting and freeing resources.
2013 */
2014 if (c->bgt) {
2015 kthread_stop(c->bgt);
2016 c->bgt = NULL;
2017 }
2018
2019 /*
2020 * On fatal errors c->ro_error is set to 1, in which case we do
2021 * not write the master node.
2022 */
2023 if (!c->ro_error) {
2024 int err;
2025
2026 /* Synchronize write-buffers */
2027 for (i = 0; i < c->jhead_cnt; i++)
2028 ubifs_wbuf_sync(&c->jheads[i].wbuf);
2029
2030 /*
2031 * We are being cleanly unmounted which means the
2032 * orphans were killed - indicate this in the master
2033 * node. Also save the reserved GC LEB number.
2034 */
2035 c->mst_node->flags &= ~cpu_to_le32(UBIFS_MST_DIRTY);
2036 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_NO_ORPHS);
2037 c->mst_node->gc_lnum = cpu_to_le32(c->gc_lnum);
2038 err = ubifs_write_master(c);
2039 if (err)
2040 /*
2041 * Recovery will attempt to fix the master area
2042 * next mount, so we just print a message and
2043 * continue to unmount normally.
2044 */
Heiko Schocher94b66de2015-10-22 06:19:21 +02002045 ubifs_err(c, "failed to write master node, error %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +02002046 err);
2047 } else {
2048#ifndef __UBOOT__
2049 for (i = 0; i < c->jhead_cnt; i++)
2050 /* Make sure write-buffer timers are canceled */
2051 hrtimer_cancel(&c->jheads[i].wbuf.timer);
2052#endif
2053 }
2054 }
2055
2056 ubifs_umount(c);
2057#ifndef __UBOOT__
2058 bdi_destroy(&c->bdi);
2059#endif
2060 ubi_close_volume(c->ubi);
2061 mutex_unlock(&c->umount_mutex);
2062}
2063#endif
2064
2065#ifndef __UBOOT__
2066static int ubifs_remount_fs(struct super_block *sb, int *flags, char *data)
2067{
2068 int err;
2069 struct ubifs_info *c = sb->s_fs_info;
2070
Heiko Schocher081fe9e2014-07-15 16:08:43 +02002071 sync_filesystem(sb);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002072 dbg_gen("old flags %#lx, new flags %#x", sb->s_flags, *flags);
2073
2074 err = ubifs_parse_options(c, data, 1);
2075 if (err) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02002076 ubifs_err(c, "invalid or unknown remount parameter");
Heiko Schocherf5895d12014-06-24 10:10:04 +02002077 return err;
2078 }
2079
2080 if (c->ro_mount && !(*flags & MS_RDONLY)) {
2081 if (c->ro_error) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02002082 ubifs_msg(c, "cannot re-mount R/W due to prior errors");
Heiko Schocherf5895d12014-06-24 10:10:04 +02002083 return -EROFS;
2084 }
2085 if (c->ro_media) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02002086 ubifs_msg(c, "cannot re-mount R/W - UBI volume is R/O");
Heiko Schocherf5895d12014-06-24 10:10:04 +02002087 return -EROFS;
2088 }
2089 err = ubifs_remount_rw(c);
2090 if (err)
2091 return err;
2092 } else if (!c->ro_mount && (*flags & MS_RDONLY)) {
2093 if (c->ro_error) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02002094 ubifs_msg(c, "cannot re-mount R/O due to prior errors");
Heiko Schocherf5895d12014-06-24 10:10:04 +02002095 return -EROFS;
2096 }
2097 ubifs_remount_ro(c);
Lars Poeschel384b1fb2011-10-12 11:31:19 +02002098 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02002099
2100 if (c->bulk_read == 1)
2101 bu_init(c);
2102 else {
2103 dbg_gen("disable bulk-read");
2104 kfree(c->bu.buf);
2105 c->bu.buf = NULL;
2106 }
2107
2108 ubifs_assert(c->lst.taken_empty_lebs > 0);
2109 return 0;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002110}
Heiko Schocherf5895d12014-06-24 10:10:04 +02002111#endif
2112
2113const struct super_operations ubifs_super_operations = {
2114 .alloc_inode = ubifs_alloc_inode,
2115#ifndef __UBOOT__
2116 .destroy_inode = ubifs_destroy_inode,
2117 .put_super = ubifs_put_super,
2118 .write_inode = ubifs_write_inode,
2119 .evict_inode = ubifs_evict_inode,
2120 .statfs = ubifs_statfs,
2121#endif
2122 .dirty_inode = ubifs_dirty_inode,
2123#ifndef __UBOOT__
2124 .remount_fs = ubifs_remount_fs,
2125 .show_options = ubifs_show_options,
2126 .sync_fs = ubifs_sync_fs,
2127#endif
2128};
Stefan Roese2fc10f62009-03-19 15:35:05 +01002129
2130/**
2131 * open_ubi - parse UBI device name string and open the UBI device.
2132 * @name: UBI volume name
2133 * @mode: UBI volume open mode
2134 *
Heiko Schocherf5895d12014-06-24 10:10:04 +02002135 * The primary method of mounting UBIFS is by specifying the UBI volume
2136 * character device node path. However, UBIFS may also be mounted withoug any
2137 * character device node using one of the following methods:
2138 *
2139 * o ubiX_Y - mount UBI device number X, volume Y;
2140 * o ubiY - mount UBI device number 0, volume Y;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002141 * o ubiX:NAME - mount UBI device X, volume with name NAME;
2142 * o ubi:NAME - mount UBI device 0, volume with name NAME.
2143 *
2144 * Alternative '!' separator may be used instead of ':' (because some shells
2145 * like busybox may interpret ':' as an NFS host name separator). This function
Heiko Schocherf5895d12014-06-24 10:10:04 +02002146 * returns UBI volume description object in case of success and a negative
2147 * error code in case of failure.
Stefan Roese2fc10f62009-03-19 15:35:05 +01002148 */
2149static struct ubi_volume_desc *open_ubi(const char *name, int mode)
2150{
Heiko Schocherf5895d12014-06-24 10:10:04 +02002151#ifndef __UBOOT__
2152 struct ubi_volume_desc *ubi;
2153#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002154 int dev, vol;
2155 char *endptr;
2156
Heiko Schocherf5895d12014-06-24 10:10:04 +02002157#ifndef __UBOOT__
2158 /* First, try to open using the device node path method */
2159 ubi = ubi_open_volume_path(name, mode);
2160 if (!IS_ERR(ubi))
2161 return ubi;
2162#endif
2163
2164 /* Try the "nodev" method */
Stefan Roese2fc10f62009-03-19 15:35:05 +01002165 if (name[0] != 'u' || name[1] != 'b' || name[2] != 'i')
2166 return ERR_PTR(-EINVAL);
2167
2168 /* ubi:NAME method */
2169 if ((name[3] == ':' || name[3] == '!') && name[4] != '\0')
2170 return ubi_open_volume_nm(0, name + 4, mode);
2171
2172 if (!isdigit(name[3]))
2173 return ERR_PTR(-EINVAL);
2174
2175 dev = simple_strtoul(name + 3, &endptr, 0);
2176
2177 /* ubiY method */
2178 if (*endptr == '\0')
2179 return ubi_open_volume(0, dev, mode);
2180
2181 /* ubiX_Y method */
2182 if (*endptr == '_' && isdigit(endptr[1])) {
2183 vol = simple_strtoul(endptr + 1, &endptr, 0);
2184 if (*endptr != '\0')
2185 return ERR_PTR(-EINVAL);
2186 return ubi_open_volume(dev, vol, mode);
2187 }
2188
2189 /* ubiX:NAME method */
2190 if ((*endptr == ':' || *endptr == '!') && endptr[1] != '\0')
2191 return ubi_open_volume_nm(dev, ++endptr, mode);
2192
2193 return ERR_PTR(-EINVAL);
2194}
2195
Heiko Schocherf5895d12014-06-24 10:10:04 +02002196static struct ubifs_info *alloc_ubifs_info(struct ubi_volume_desc *ubi)
Stefan Roese2fc10f62009-03-19 15:35:05 +01002197{
Stefan Roese2fc10f62009-03-19 15:35:05 +01002198 struct ubifs_info *c;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002199
2200 c = kzalloc(sizeof(struct ubifs_info), GFP_KERNEL);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002201 if (c) {
2202 spin_lock_init(&c->cnt_lock);
2203 spin_lock_init(&c->cs_lock);
2204 spin_lock_init(&c->buds_lock);
2205 spin_lock_init(&c->space_lock);
2206 spin_lock_init(&c->orphan_lock);
2207 init_rwsem(&c->commit_sem);
2208 mutex_init(&c->lp_mutex);
2209 mutex_init(&c->tnc_mutex);
2210 mutex_init(&c->log_mutex);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002211 mutex_init(&c->umount_mutex);
2212 mutex_init(&c->bu_mutex);
2213 mutex_init(&c->write_reserve_mutex);
2214 init_waitqueue_head(&c->cmt_wq);
2215 c->buds = RB_ROOT;
2216 c->old_idx = RB_ROOT;
2217 c->size_tree = RB_ROOT;
2218 c->orph_tree = RB_ROOT;
2219 INIT_LIST_HEAD(&c->infos_list);
2220 INIT_LIST_HEAD(&c->idx_gc);
2221 INIT_LIST_HEAD(&c->replay_list);
2222 INIT_LIST_HEAD(&c->replay_buds);
2223 INIT_LIST_HEAD(&c->uncat_list);
2224 INIT_LIST_HEAD(&c->empty_list);
2225 INIT_LIST_HEAD(&c->freeable_list);
2226 INIT_LIST_HEAD(&c->frdi_idx_list);
2227 INIT_LIST_HEAD(&c->unclean_leb_list);
2228 INIT_LIST_HEAD(&c->old_buds);
2229 INIT_LIST_HEAD(&c->orph_list);
2230 INIT_LIST_HEAD(&c->orph_new);
2231 c->no_chk_data_crc = 1;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002232
Heiko Schocherf5895d12014-06-24 10:10:04 +02002233 c->highest_inum = UBIFS_FIRST_INO;
2234 c->lhead_lnum = c->ltail_lnum = UBIFS_LOG_LNUM;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002235
Heiko Schocherf5895d12014-06-24 10:10:04 +02002236 ubi_get_volume_info(ubi, &c->vi);
2237 ubi_get_device_info(c->vi.ubi_num, &c->di);
2238 }
2239 return c;
2240}
Stefan Roese2fc10f62009-03-19 15:35:05 +01002241
Heiko Schocherf5895d12014-06-24 10:10:04 +02002242static int ubifs_fill_super(struct super_block *sb, void *data, int silent)
2243{
2244 struct ubifs_info *c = sb->s_fs_info;
2245 struct inode *root;
2246 int err;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002247
Heiko Schocherf5895d12014-06-24 10:10:04 +02002248 c->vfs_sb = sb;
Heiko Schocherb24c4272014-07-15 16:08:42 +02002249#ifndef __UBOOT__
Stefan Roese2fc10f62009-03-19 15:35:05 +01002250 /* Re-open the UBI device in read-write mode */
Heiko Schocherf5895d12014-06-24 10:10:04 +02002251 c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READWRITE);
Heiko Schocherb24c4272014-07-15 16:08:42 +02002252#else
2253 /* U-Boot read only mode */
2254 c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READONLY);
2255#endif
2256
Stefan Roese2fc10f62009-03-19 15:35:05 +01002257 if (IS_ERR(c->ubi)) {
2258 err = PTR_ERR(c->ubi);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002259 goto out;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002260 }
2261
Heiko Schocherf5895d12014-06-24 10:10:04 +02002262#ifndef __UBOOT__
2263 /*
2264 * UBIFS provides 'backing_dev_info' in order to disable read-ahead. For
2265 * UBIFS, I/O is not deferred, it is done immediately in readpage,
2266 * which means the user would have to wait not just for their own I/O
2267 * but the read-ahead I/O as well i.e. completely pointless.
2268 *
2269 * Read-ahead will be disabled because @c->bdi.ra_pages is 0.
2270 */
Heiko Schocher94b66de2015-10-22 06:19:21 +02002271 c->bdi.name = "ubifs",
2272 c->bdi.capabilities = 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +02002273 err = bdi_init(&c->bdi);
2274 if (err)
2275 goto out_close;
2276 err = bdi_register(&c->bdi, NULL, "ubifs_%d_%d",
2277 c->vi.ubi_num, c->vi.vol_id);
2278 if (err)
2279 goto out_bdi;
2280
2281 err = ubifs_parse_options(c, data, 0);
2282 if (err)
2283 goto out_bdi;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002284
Heiko Schocherf5895d12014-06-24 10:10:04 +02002285 sb->s_bdi = &c->bdi;
2286#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002287 sb->s_fs_info = c;
2288 sb->s_magic = UBIFS_SUPER_MAGIC;
2289 sb->s_blocksize = UBIFS_BLOCK_SIZE;
2290 sb->s_blocksize_bits = UBIFS_BLOCK_SHIFT;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002291 sb->s_maxbytes = c->max_inode_sz = key_max_inode_size(c);
2292 if (c->max_inode_sz > MAX_LFS_FILESIZE)
2293 sb->s_maxbytes = c->max_inode_sz = MAX_LFS_FILESIZE;
Heiko Schocherf5895d12014-06-24 10:10:04 +02002294 sb->s_op = &ubifs_super_operations;
Heiko Schocher94b66de2015-10-22 06:19:21 +02002295#ifndef __UBOOT__
2296 sb->s_xattr = ubifs_xattr_handlers;
2297#endif
Artem Bityutskiy619697a2009-03-27 10:21:14 +01002298
Stefan Roese2fc10f62009-03-19 15:35:05 +01002299 mutex_lock(&c->umount_mutex);
2300 err = mount_ubifs(c);
2301 if (err) {
2302 ubifs_assert(err < 0);
2303 goto out_unlock;
2304 }
2305
2306 /* Read the root inode */
2307 root = ubifs_iget(sb, UBIFS_ROOT_INO);
2308 if (IS_ERR(root)) {
2309 err = PTR_ERR(root);
2310 goto out_umount;
2311 }
2312
Heiko Schocherf5895d12014-06-24 10:10:04 +02002313#ifndef __UBOOT__
2314 sb->s_root = d_make_root(root);
2315 if (!sb->s_root) {
2316 err = -ENOMEM;
2317 goto out_umount;
2318 }
2319#else
Stefan Roese2fc10f62009-03-19 15:35:05 +01002320 sb->s_root = NULL;
Heiko Schocherf5895d12014-06-24 10:10:04 +02002321#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002322
2323 mutex_unlock(&c->umount_mutex);
2324 return 0;
2325
2326out_umount:
2327 ubifs_umount(c);
2328out_unlock:
2329 mutex_unlock(&c->umount_mutex);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002330#ifndef __UBOOT__
2331out_bdi:
2332 bdi_destroy(&c->bdi);
2333out_close:
2334#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002335 ubi_close_volume(c->ubi);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002336out:
Stefan Roese2fc10f62009-03-19 15:35:05 +01002337 return err;
2338}
2339
2340static int sb_test(struct super_block *sb, void *data)
2341{
Heiko Schocherf5895d12014-06-24 10:10:04 +02002342 struct ubifs_info *c1 = data;
2343 struct ubifs_info *c = sb->s_fs_info;
2344
2345 return c->vi.cdev == c1->vi.cdev;
2346}
2347
2348static int sb_set(struct super_block *sb, void *data)
2349{
2350 sb->s_fs_info = data;
2351 return set_anon_super(sb, NULL);
2352}
2353
2354static struct super_block *alloc_super(struct file_system_type *type, int flags)
2355{
2356 struct super_block *s;
2357 int err;
2358
2359 s = kzalloc(sizeof(struct super_block), GFP_USER);
2360 if (!s) {
2361 err = -ENOMEM;
2362 return ERR_PTR(err);
2363 }
2364
Christophe Kerellod700a2b2018-06-27 10:06:59 +02002365#ifndef __UBOOT__
Heiko Schocherf5895d12014-06-24 10:10:04 +02002366 INIT_HLIST_NODE(&s->s_instances);
Christophe Kerellod700a2b2018-06-27 10:06:59 +02002367#endif
Heiko Schocherf5895d12014-06-24 10:10:04 +02002368 INIT_LIST_HEAD(&s->s_inodes);
2369 s->s_time_gran = 1000000000;
2370 s->s_flags = flags;
2371
2372 return s;
2373}
2374
2375/**
2376 * sget - find or create a superblock
2377 * @type: filesystem type superblock should belong to
2378 * @test: comparison callback
2379 * @set: setup callback
2380 * @flags: mount flags
2381 * @data: argument to each of them
2382 */
2383struct super_block *sget(struct file_system_type *type,
2384 int (*test)(struct super_block *,void *),
2385 int (*set)(struct super_block *,void *),
2386 int flags,
2387 void *data)
2388{
2389 struct super_block *s = NULL;
2390#ifndef __UBOOT__
2391 struct super_block *old;
2392#endif
2393 int err;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002394
Heiko Schocherf5895d12014-06-24 10:10:04 +02002395#ifndef __UBOOT__
2396retry:
2397 spin_lock(&sb_lock);
2398 if (test) {
2399 hlist_for_each_entry(old, &type->fs_supers, s_instances) {
2400 if (!test(old, data))
2401 continue;
2402 if (!grab_super(old))
2403 goto retry;
2404 if (s) {
2405 up_write(&s->s_umount);
2406 destroy_super(s);
2407 s = NULL;
2408 }
2409 return old;
2410 }
2411 }
2412#endif
2413 if (!s) {
2414 spin_unlock(&sb_lock);
2415 s = alloc_super(type, flags);
2416 if (!s)
2417 return ERR_PTR(-ENOMEM);
2418#ifndef __UBOOT__
2419 goto retry;
2420#endif
2421 }
2422
2423 err = set(s, data);
2424 if (err) {
2425#ifndef __UBOOT__
2426 spin_unlock(&sb_lock);
2427 up_write(&s->s_umount);
2428 destroy_super(s);
2429#endif
2430 return ERR_PTR(err);
2431 }
2432 s->s_type = type;
2433#ifndef __UBOOT__
2434 strlcpy(s->s_id, type->name, sizeof(s->s_id));
Heiko Schochera79e3c82016-04-21 12:16:58 +02002435 list_add_tail(&s->s_list, &super_blocks);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002436 hlist_add_head(&s->s_instances, &type->fs_supers);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002437 spin_unlock(&sb_lock);
2438 get_filesystem(type);
2439 register_shrinker(&s->s_shrink);
Christophe Kerellod700a2b2018-06-27 10:06:59 +02002440#else
2441 strncpy(s->s_id, type->name, sizeof(s->s_id));
Heiko Schocherf5895d12014-06-24 10:10:04 +02002442#endif
2443 return s;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002444}
2445
Heiko Schocherf5895d12014-06-24 10:10:04 +02002446EXPORT_SYMBOL(sget);
2447
2448
2449static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags,
2450 const char *name, void *data)
Stefan Roese2fc10f62009-03-19 15:35:05 +01002451{
2452 struct ubi_volume_desc *ubi;
Heiko Schocherf5895d12014-06-24 10:10:04 +02002453 struct ubifs_info *c;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002454 struct super_block *sb;
2455 int err;
2456
2457 dbg_gen("name %s, flags %#x", name, flags);
2458
2459 /*
2460 * Get UBI device number and volume ID. Mount it read-only so far
2461 * because this might be a new mount point, and UBI allows only one
2462 * read-write user at a time.
2463 */
2464 ubi = open_ubi(name, UBI_READONLY);
2465 if (IS_ERR(ubi)) {
Stefan Roesef49f8722018-08-09 09:09:20 +02002466 pr_err("UBIFS error (pid: %d): cannot open \"%s\", error %d\n",
Heiko Schocher94b66de2015-10-22 06:19:21 +02002467 current->pid, name, (int)PTR_ERR(ubi));
Heiko Schocherf5895d12014-06-24 10:10:04 +02002468 return ERR_CAST(ubi);
2469 }
2470
2471 c = alloc_ubifs_info(ubi);
2472 if (!c) {
2473 err = -ENOMEM;
2474 goto out_close;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002475 }
Stefan Roese2fc10f62009-03-19 15:35:05 +01002476
Heiko Schocherf5895d12014-06-24 10:10:04 +02002477 dbg_gen("opened ubi%d_%d", c->vi.ubi_num, c->vi.vol_id);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002478
Heiko Schocherf5895d12014-06-24 10:10:04 +02002479 sb = sget(fs_type, sb_test, sb_set, flags, c);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002480 if (IS_ERR(sb)) {
2481 err = PTR_ERR(sb);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002482 kfree(c);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002483 goto out_close;
2484 }
2485
2486 if (sb->s_root) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02002487 struct ubifs_info *c1 = sb->s_fs_info;
2488 kfree(c);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002489 /* A new mount point for already mounted UBIFS */
2490 dbg_gen("this ubi volume is already mounted");
Heiko Schocherf5895d12014-06-24 10:10:04 +02002491 if (!!(flags & MS_RDONLY) != c1->ro_mount) {
Stefan Roese2fc10f62009-03-19 15:35:05 +01002492 err = -EBUSY;
2493 goto out_deact;
2494 }
2495 } else {
Stefan Roese2fc10f62009-03-19 15:35:05 +01002496 err = ubifs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
2497 if (err)
2498 goto out_deact;
2499 /* We do not support atime */
2500 sb->s_flags |= MS_ACTIVE | MS_NOATIME;
2501 }
2502
2503 /* 'fill_super()' opens ubi again so we must close it here */
2504 ubi_close_volume(ubi);
2505
Heiko Schocherf5895d12014-06-24 10:10:04 +02002506#ifdef __UBOOT__
Stefan Roese2fc10f62009-03-19 15:35:05 +01002507 ubifs_sb = sb;
2508 return 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +02002509#else
2510 return dget(sb->s_root);
2511#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002512
2513out_deact:
Heiko Schocherf5895d12014-06-24 10:10:04 +02002514#ifndef __UBOOT__
2515 deactivate_locked_super(sb);
2516#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002517out_close:
2518 ubi_close_volume(ubi);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002519 return ERR_PTR(err);
2520}
2521
2522static void kill_ubifs_super(struct super_block *s)
2523{
2524 struct ubifs_info *c = s->s_fs_info;
2525#ifndef __UBOOT__
2526 kill_anon_super(s);
2527#endif
2528 kfree(c);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002529}
2530
Heiko Schocherf5895d12014-06-24 10:10:04 +02002531static struct file_system_type ubifs_fs_type = {
2532 .name = "ubifs",
2533 .owner = THIS_MODULE,
2534 .mount = ubifs_mount,
2535 .kill_sb = kill_ubifs_super,
2536};
2537#ifndef __UBOOT__
2538MODULE_ALIAS_FS("ubifs");
2539
2540/*
2541 * Inode slab cache constructor.
2542 */
2543static void inode_slab_ctor(void *obj)
2544{
2545 struct ubifs_inode *ui = obj;
2546 inode_init_once(&ui->vfs_inode);
2547}
2548
2549static int __init ubifs_init(void)
2550#else
2551int ubifs_init(void)
2552#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002553{
2554 int err;
2555
2556 BUILD_BUG_ON(sizeof(struct ubifs_ch) != 24);
2557
2558 /* Make sure node sizes are 8-byte aligned */
2559 BUILD_BUG_ON(UBIFS_CH_SZ & 7);
2560 BUILD_BUG_ON(UBIFS_INO_NODE_SZ & 7);
2561 BUILD_BUG_ON(UBIFS_DENT_NODE_SZ & 7);
2562 BUILD_BUG_ON(UBIFS_XENT_NODE_SZ & 7);
2563 BUILD_BUG_ON(UBIFS_DATA_NODE_SZ & 7);
2564 BUILD_BUG_ON(UBIFS_TRUN_NODE_SZ & 7);
2565 BUILD_BUG_ON(UBIFS_SB_NODE_SZ & 7);
2566 BUILD_BUG_ON(UBIFS_MST_NODE_SZ & 7);
2567 BUILD_BUG_ON(UBIFS_REF_NODE_SZ & 7);
2568 BUILD_BUG_ON(UBIFS_CS_NODE_SZ & 7);
2569 BUILD_BUG_ON(UBIFS_ORPH_NODE_SZ & 7);
2570
2571 BUILD_BUG_ON(UBIFS_MAX_DENT_NODE_SZ & 7);
2572 BUILD_BUG_ON(UBIFS_MAX_XENT_NODE_SZ & 7);
2573 BUILD_BUG_ON(UBIFS_MAX_DATA_NODE_SZ & 7);
2574 BUILD_BUG_ON(UBIFS_MAX_INO_NODE_SZ & 7);
2575 BUILD_BUG_ON(UBIFS_MAX_NODE_SZ & 7);
2576 BUILD_BUG_ON(MIN_WRITE_SZ & 7);
2577
2578 /* Check min. node size */
2579 BUILD_BUG_ON(UBIFS_INO_NODE_SZ < MIN_WRITE_SZ);
2580 BUILD_BUG_ON(UBIFS_DENT_NODE_SZ < MIN_WRITE_SZ);
2581 BUILD_BUG_ON(UBIFS_XENT_NODE_SZ < MIN_WRITE_SZ);
2582 BUILD_BUG_ON(UBIFS_TRUN_NODE_SZ < MIN_WRITE_SZ);
2583
2584 BUILD_BUG_ON(UBIFS_MAX_DENT_NODE_SZ > UBIFS_MAX_NODE_SZ);
2585 BUILD_BUG_ON(UBIFS_MAX_XENT_NODE_SZ > UBIFS_MAX_NODE_SZ);
2586 BUILD_BUG_ON(UBIFS_MAX_DATA_NODE_SZ > UBIFS_MAX_NODE_SZ);
2587 BUILD_BUG_ON(UBIFS_MAX_INO_NODE_SZ > UBIFS_MAX_NODE_SZ);
2588
2589 /* Defined node sizes */
2590 BUILD_BUG_ON(UBIFS_SB_NODE_SZ != 4096);
2591 BUILD_BUG_ON(UBIFS_MST_NODE_SZ != 512);
2592 BUILD_BUG_ON(UBIFS_INO_NODE_SZ != 160);
2593 BUILD_BUG_ON(UBIFS_REF_NODE_SZ != 64);
2594
2595 /*
2596 * We use 2 bit wide bit-fields to store compression type, which should
2597 * be amended if more compressors are added. The bit-fields are:
2598 * @compr_type in 'struct ubifs_inode', @default_compr in
2599 * 'struct ubifs_info' and @compr_type in 'struct ubifs_mount_opts'.
2600 */
2601 BUILD_BUG_ON(UBIFS_COMPR_TYPES_CNT > 4);
2602
2603 /*
2604 * We require that PAGE_CACHE_SIZE is greater-than-or-equal-to
2605 * UBIFS_BLOCK_SIZE. It is assumed that both are powers of 2.
2606 */
2607 if (PAGE_CACHE_SIZE < UBIFS_BLOCK_SIZE) {
Stefan Roesef49f8722018-08-09 09:09:20 +02002608 pr_err("UBIFS error (pid %d): VFS page cache size is %u bytes, but UBIFS requires at least 4096 bytes\n",
Heiko Schocher94b66de2015-10-22 06:19:21 +02002609 current->pid, (unsigned int)PAGE_CACHE_SIZE);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002610 return -EINVAL;
2611 }
2612
Heiko Schocherf5895d12014-06-24 10:10:04 +02002613#ifndef __UBOOT__
2614 ubifs_inode_slab = kmem_cache_create("ubifs_inode_slab",
2615 sizeof(struct ubifs_inode), 0,
2616 SLAB_MEM_SPREAD | SLAB_RECLAIM_ACCOUNT,
2617 &inode_slab_ctor);
2618 if (!ubifs_inode_slab)
2619 return -ENOMEM;
2620
Heiko Schocher94b66de2015-10-22 06:19:21 +02002621 err = register_shrinker(&ubifs_shrinker_info);
2622 if (err)
2623 goto out_slab;
Heiko Schocherf5895d12014-06-24 10:10:04 +02002624#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002625
2626 err = ubifs_compressors_init();
2627 if (err)
2628 goto out_shrinker;
2629
Heiko Schocherf5895d12014-06-24 10:10:04 +02002630#ifndef __UBOOT__
2631 err = dbg_debugfs_init();
2632 if (err)
2633 goto out_compr;
2634
2635 err = register_filesystem(&ubifs_fs_type);
2636 if (err) {
Stefan Roesef49f8722018-08-09 09:09:20 +02002637 pr_err("UBIFS error (pid %d): cannot register file system, error %d\n",
Heiko Schocher94b66de2015-10-22 06:19:21 +02002638 current->pid, err);
Heiko Schocherf5895d12014-06-24 10:10:04 +02002639 goto out_dbg;
2640 }
2641#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002642 return 0;
2643
Heiko Schocherf5895d12014-06-24 10:10:04 +02002644#ifndef __UBOOT__
2645out_dbg:
2646 dbg_debugfs_exit();
2647out_compr:
2648 ubifs_compressors_exit();
2649#endif
Stefan Roese2fc10f62009-03-19 15:35:05 +01002650out_shrinker:
Heiko Schocherf5895d12014-06-24 10:10:04 +02002651#ifndef __UBOOT__
2652 unregister_shrinker(&ubifs_shrinker_info);
Heiko Schocher94b66de2015-10-22 06:19:21 +02002653out_slab:
Heiko Schocherf5895d12014-06-24 10:10:04 +02002654#endif
2655 kmem_cache_destroy(ubifs_inode_slab);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002656 return err;
2657}
Heiko Schocherf5895d12014-06-24 10:10:04 +02002658/* late_initcall to let compressors initialize first */
2659late_initcall(ubifs_init);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002660
Heiko Schocherf5895d12014-06-24 10:10:04 +02002661#ifndef __UBOOT__
2662static void __exit ubifs_exit(void)
2663{
2664 ubifs_assert(list_empty(&ubifs_infos));
2665 ubifs_assert(atomic_long_read(&ubifs_clean_zn_cnt) == 0);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002666
Heiko Schocherf5895d12014-06-24 10:10:04 +02002667 dbg_debugfs_exit();
2668 ubifs_compressors_exit();
2669 unregister_shrinker(&ubifs_shrinker_info);
Stefan Roese2fc10f62009-03-19 15:35:05 +01002670
Heiko Schocherf5895d12014-06-24 10:10:04 +02002671 /*
2672 * Make sure all delayed rcu free inodes are flushed before we
2673 * destroy cache.
2674 */
2675 rcu_barrier();
2676 kmem_cache_destroy(ubifs_inode_slab);
2677 unregister_filesystem(&ubifs_fs_type);
2678}
2679module_exit(ubifs_exit);
2680
2681MODULE_LICENSE("GPL");
2682MODULE_VERSION(__stringify(UBIFS_VERSION));
2683MODULE_AUTHOR("Artem Bityutskiy, Adrian Hunter");
2684MODULE_DESCRIPTION("UBIFS - UBI File System");
2685#else
2686int uboot_ubifs_mount(char *vol_name)
Stefan Roese2fc10f62009-03-19 15:35:05 +01002687{
Heiko Schocherf5895d12014-06-24 10:10:04 +02002688 struct dentry *ret;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002689 int flags;
Stefan Roese2fc10f62009-03-19 15:35:05 +01002690
2691 /*
2692 * First unmount if allready mounted
2693 */
2694 if (ubifs_sb)
2695 ubifs_umount(ubifs_sb->s_fs_info);
2696
Stefan Roese2fc10f62009-03-19 15:35:05 +01002697 /*
2698 * Mount in read-only mode
2699 */
2700 flags = MS_RDONLY;
Heiko Schocherf5895d12014-06-24 10:10:04 +02002701 ret = ubifs_mount(&ubifs_fs_type, flags, vol_name, NULL);
2702 if (IS_ERR(ret)) {
2703 printf("Error reading superblock on volume '%s' " \
2704 "errno=%d!\n", vol_name, (int)PTR_ERR(ret));
Stefan Roese2fc10f62009-03-19 15:35:05 +01002705 return -1;
2706 }
2707
Stefan Roese2fc10f62009-03-19 15:35:05 +01002708 return 0;
2709}
Heiko Schocherf5895d12014-06-24 10:10:04 +02002710#endif