]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/ubifs/sb.c
ubifs: Implement UBIFS_FLG_ENCRYPTION
[mirror_ubuntu-zesty-kernel.git] / fs / ubifs / sb.c
CommitLineData
1e51764a
AB
1/*
2 * This file is part of UBIFS.
3 *
4 * Copyright (C) 2006-2008 Nokia Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * Authors: Artem Bityutskiy (Битюцкий Артём)
20 * Adrian Hunter
21 */
22
23/*
24 * This file implements UBIFS superblock. The superblock is stored at the first
25 * LEB of the volume and is never changed by UBIFS. Only user-space tools may
26 * change it. The superblock node mostly contains geometry information.
27 */
28
29#include "ubifs.h"
5a0e3ad6 30#include <linux/slab.h>
4d61db4f 31#include <linux/math64.h>
8da4b8c4 32#include <linux/uuid.h>
1e51764a
AB
33
34/*
35 * Default journal size in logical eraseblocks as a percent of total
36 * flash size.
37 */
38#define DEFAULT_JNL_PERCENT 5
39
40/* Default maximum journal size in bytes */
41#define DEFAULT_MAX_JNL (32*1024*1024)
42
43/* Default indexing tree fanout */
44#define DEFAULT_FANOUT 8
45
46/* Default number of data journal heads */
47#define DEFAULT_JHEADS_CNT 1
48
49/* Default positions of different LEBs in the main area */
50#define DEFAULT_IDX_LEB 0
51#define DEFAULT_DATA_LEB 1
52#define DEFAULT_GC_LEB 2
53
54/* Default number of LEB numbers in LPT's save table */
55#define DEFAULT_LSAVE_CNT 256
56
57/* Default reserved pool size as a percent of maximum free space */
58#define DEFAULT_RP_PERCENT 5
59
60/* The default maximum size of reserved pool in bytes */
61#define DEFAULT_MAX_RP_SIZE (5*1024*1024)
62
63/* Default time granularity in nanoseconds */
64#define DEFAULT_TIME_GRAN 1000000000
65
66/**
67 * create_default_filesystem - format empty UBI volume.
68 * @c: UBIFS file-system description object
69 *
70 * This function creates default empty file-system. Returns zero in case of
71 * success and a negative error code in case of failure.
72 */
73static int create_default_filesystem(struct ubifs_info *c)
74{
75 struct ubifs_sb_node *sup;
76 struct ubifs_mst_node *mst;
77 struct ubifs_idx_node *idx;
78 struct ubifs_branch *br;
79 struct ubifs_ino_node *ino;
80 struct ubifs_cs_node *cs;
81 union ubifs_key key;
82 int err, tmp, jnl_lebs, log_lebs, max_buds, main_lebs, main_first;
83 int lpt_lebs, lpt_first, orph_lebs, big_lpt, ino_waste, sup_flags = 0;
84 int min_leb_cnt = UBIFS_MIN_LEB_CNT;
4d61db4f 85 long long tmp64, main_bytes;
0ecb9529 86 __le64 tmp_le64;
1e51764a
AB
87
88 /* Some functions called from here depend on the @c->key_len filed */
89 c->key_len = UBIFS_SK_LEN;
90
91 /*
92 * First of all, we have to calculate default file-system geometry -
93 * log size, journal size, etc.
94 */
95 if (c->leb_cnt < 0x7FFFFFFF / DEFAULT_JNL_PERCENT)
96 /* We can first multiply then divide and have no overflow */
97 jnl_lebs = c->leb_cnt * DEFAULT_JNL_PERCENT / 100;
98 else
99 jnl_lebs = (c->leb_cnt / 100) * DEFAULT_JNL_PERCENT;
100
101 if (jnl_lebs < UBIFS_MIN_JNL_LEBS)
102 jnl_lebs = UBIFS_MIN_JNL_LEBS;
103 if (jnl_lebs * c->leb_size > DEFAULT_MAX_JNL)
104 jnl_lebs = DEFAULT_MAX_JNL / c->leb_size;
105
106 /*
107 * The log should be large enough to fit reference nodes for all bud
108 * LEBs. Because buds do not have to start from the beginning of LEBs
109 * (half of the LEB may contain committed data), the log should
110 * generally be larger, make it twice as large.
111 */
112 tmp = 2 * (c->ref_node_alsz * jnl_lebs) + c->leb_size - 1;
113 log_lebs = tmp / c->leb_size;
114 /* Plus one LEB reserved for commit */
115 log_lebs += 1;
116 if (c->leb_cnt - min_leb_cnt > 8) {
117 /* And some extra space to allow writes while committing */
118 log_lebs += 1;
119 min_leb_cnt += 1;
120 }
121
122 max_buds = jnl_lebs - log_lebs;
123 if (max_buds < UBIFS_MIN_BUD_LEBS)
124 max_buds = UBIFS_MIN_BUD_LEBS;
125
126 /*
127 * Orphan nodes are stored in a separate area. One node can store a lot
128 * of orphan inode numbers, but when new orphan comes we just add a new
129 * orphan node. At some point the nodes are consolidated into one
130 * orphan node.
131 */
132 orph_lebs = UBIFS_MIN_ORPH_LEBS;
1e51764a
AB
133 if (c->leb_cnt - min_leb_cnt > 1)
134 /*
135 * For debugging purposes it is better to have at least 2
136 * orphan LEBs, because the orphan subsystem would need to do
137 * consolidations and would be stressed more.
138 */
139 orph_lebs += 1;
1e51764a
AB
140
141 main_lebs = c->leb_cnt - UBIFS_SB_LEBS - UBIFS_MST_LEBS - log_lebs;
142 main_lebs -= orph_lebs;
143
144 lpt_first = UBIFS_LOG_LNUM + log_lebs;
145 c->lsave_cnt = DEFAULT_LSAVE_CNT;
146 c->max_leb_cnt = c->leb_cnt;
147 err = ubifs_create_dflt_lpt(c, &main_lebs, lpt_first, &lpt_lebs,
148 &big_lpt);
149 if (err)
150 return err;
151
152 dbg_gen("LEB Properties Tree created (LEBs %d-%d)", lpt_first,
153 lpt_first + lpt_lebs - 1);
154
155 main_first = c->leb_cnt - main_lebs;
156
157 /* Create default superblock */
158 tmp = ALIGN(UBIFS_SB_NODE_SZ, c->min_io_size);
159 sup = kzalloc(tmp, GFP_KERNEL);
160 if (!sup)
161 return -ENOMEM;
162
4d61db4f 163 tmp64 = (long long)max_buds * c->leb_size;
1e51764a
AB
164 if (big_lpt)
165 sup_flags |= UBIFS_FLG_BIGLPT;
d63d61c1 166 sup_flags |= UBIFS_FLG_DOUBLE_HASH;
1e51764a
AB
167
168 sup->ch.node_type = UBIFS_SB_NODE;
169 sup->key_hash = UBIFS_KEY_HASH_R5;
170 sup->flags = cpu_to_le32(sup_flags);
171 sup->min_io_size = cpu_to_le32(c->min_io_size);
172 sup->leb_size = cpu_to_le32(c->leb_size);
173 sup->leb_cnt = cpu_to_le32(c->leb_cnt);
174 sup->max_leb_cnt = cpu_to_le32(c->max_leb_cnt);
175 sup->max_bud_bytes = cpu_to_le64(tmp64);
176 sup->log_lebs = cpu_to_le32(log_lebs);
177 sup->lpt_lebs = cpu_to_le32(lpt_lebs);
178 sup->orph_lebs = cpu_to_le32(orph_lebs);
179 sup->jhead_cnt = cpu_to_le32(DEFAULT_JHEADS_CNT);
180 sup->fanout = cpu_to_le32(DEFAULT_FANOUT);
181 sup->lsave_cnt = cpu_to_le32(c->lsave_cnt);
182 sup->fmt_version = cpu_to_le32(UBIFS_FORMAT_VERSION);
1e51764a 183 sup->time_gran = cpu_to_le32(DEFAULT_TIME_GRAN);
553dea4d
AB
184 if (c->mount_opts.override_compr)
185 sup->default_compr = cpu_to_le16(c->mount_opts.compr_type);
186 else
187 sup->default_compr = cpu_to_le16(UBIFS_COMPR_LZO);
1e51764a
AB
188
189 generate_random_uuid(sup->uuid);
190
4d61db4f
AB
191 main_bytes = (long long)main_lebs * c->leb_size;
192 tmp64 = div_u64(main_bytes * DEFAULT_RP_PERCENT, 100);
1e51764a
AB
193 if (tmp64 > DEFAULT_MAX_RP_SIZE)
194 tmp64 = DEFAULT_MAX_RP_SIZE;
195 sup->rp_size = cpu_to_le64(tmp64);
963f0cf6 196 sup->ro_compat_version = cpu_to_le32(UBIFS_RO_COMPAT_VERSION);
1e51764a 197
b36a261e 198 err = ubifs_write_node(c, sup, UBIFS_SB_NODE_SZ, 0, 0);
1e51764a
AB
199 kfree(sup);
200 if (err)
201 return err;
202
203 dbg_gen("default superblock created at LEB 0:0");
204
205 /* Create default master node */
206 mst = kzalloc(c->mst_node_alsz, GFP_KERNEL);
207 if (!mst)
208 return -ENOMEM;
209
210 mst->ch.node_type = UBIFS_MST_NODE;
211 mst->log_lnum = cpu_to_le32(UBIFS_LOG_LNUM);
212 mst->highest_inum = cpu_to_le64(UBIFS_FIRST_INO);
213 mst->cmt_no = 0;
214 mst->root_lnum = cpu_to_le32(main_first + DEFAULT_IDX_LEB);
215 mst->root_offs = 0;
216 tmp = ubifs_idx_node_sz(c, 1);
217 mst->root_len = cpu_to_le32(tmp);
218 mst->gc_lnum = cpu_to_le32(main_first + DEFAULT_GC_LEB);
219 mst->ihead_lnum = cpu_to_le32(main_first + DEFAULT_IDX_LEB);
220 mst->ihead_offs = cpu_to_le32(ALIGN(tmp, c->min_io_size));
221 mst->index_size = cpu_to_le64(ALIGN(tmp, 8));
222 mst->lpt_lnum = cpu_to_le32(c->lpt_lnum);
223 mst->lpt_offs = cpu_to_le32(c->lpt_offs);
224 mst->nhead_lnum = cpu_to_le32(c->nhead_lnum);
225 mst->nhead_offs = cpu_to_le32(c->nhead_offs);
226 mst->ltab_lnum = cpu_to_le32(c->ltab_lnum);
227 mst->ltab_offs = cpu_to_le32(c->ltab_offs);
228 mst->lsave_lnum = cpu_to_le32(c->lsave_lnum);
229 mst->lsave_offs = cpu_to_le32(c->lsave_offs);
230 mst->lscan_lnum = cpu_to_le32(main_first);
231 mst->empty_lebs = cpu_to_le32(main_lebs - 2);
232 mst->idx_lebs = cpu_to_le32(1);
233 mst->leb_cnt = cpu_to_le32(c->leb_cnt);
234
235 /* Calculate lprops statistics */
236 tmp64 = main_bytes;
237 tmp64 -= ALIGN(ubifs_idx_node_sz(c, 1), c->min_io_size);
238 tmp64 -= ALIGN(UBIFS_INO_NODE_SZ, c->min_io_size);
239 mst->total_free = cpu_to_le64(tmp64);
240
241 tmp64 = ALIGN(ubifs_idx_node_sz(c, 1), c->min_io_size);
242 ino_waste = ALIGN(UBIFS_INO_NODE_SZ, c->min_io_size) -
243 UBIFS_INO_NODE_SZ;
244 tmp64 += ino_waste;
245 tmp64 -= ALIGN(ubifs_idx_node_sz(c, 1), 8);
246 mst->total_dirty = cpu_to_le64(tmp64);
247
248 /* The indexing LEB does not contribute to dark space */
7606f85a 249 tmp64 = ((long long)(c->main_lebs - 1) * c->dark_wm);
1e51764a
AB
250 mst->total_dark = cpu_to_le64(tmp64);
251
252 mst->total_used = cpu_to_le64(UBIFS_INO_NODE_SZ);
253
b36a261e 254 err = ubifs_write_node(c, mst, UBIFS_MST_NODE_SZ, UBIFS_MST_LNUM, 0);
1e51764a
AB
255 if (err) {
256 kfree(mst);
257 return err;
258 }
b36a261e
RW
259 err = ubifs_write_node(c, mst, UBIFS_MST_NODE_SZ, UBIFS_MST_LNUM + 1,
260 0);
1e51764a
AB
261 kfree(mst);
262 if (err)
263 return err;
264
265 dbg_gen("default master node created at LEB %d:0", UBIFS_MST_LNUM);
266
267 /* Create the root indexing node */
268 tmp = ubifs_idx_node_sz(c, 1);
269 idx = kzalloc(ALIGN(tmp, c->min_io_size), GFP_KERNEL);
270 if (!idx)
271 return -ENOMEM;
272
273 c->key_fmt = UBIFS_SIMPLE_KEY_FMT;
274 c->key_hash = key_r5_hash;
275
276 idx->ch.node_type = UBIFS_IDX_NODE;
277 idx->child_cnt = cpu_to_le16(1);
278 ino_key_init(c, &key, UBIFS_ROOT_INO);
279 br = ubifs_idx_branch(c, idx, 0);
280 key_write_idx(c, &key, &br->key);
281 br->lnum = cpu_to_le32(main_first + DEFAULT_DATA_LEB);
282 br->len = cpu_to_le32(UBIFS_INO_NODE_SZ);
b36a261e 283 err = ubifs_write_node(c, idx, tmp, main_first + DEFAULT_IDX_LEB, 0);
1e51764a
AB
284 kfree(idx);
285 if (err)
286 return err;
287
288 dbg_gen("default root indexing node created LEB %d:0",
289 main_first + DEFAULT_IDX_LEB);
290
291 /* Create default root inode */
292 tmp = ALIGN(UBIFS_INO_NODE_SZ, c->min_io_size);
293 ino = kzalloc(tmp, GFP_KERNEL);
294 if (!ino)
295 return -ENOMEM;
296
297 ino_key_init_flash(c, &ino->key, UBIFS_ROOT_INO);
298 ino->ch.node_type = UBIFS_INO_NODE;
299 ino->creat_sqnum = cpu_to_le64(++c->max_sqnum);
300 ino->nlink = cpu_to_le32(2);
0ecb9529
HH
301 tmp_le64 = cpu_to_le64(CURRENT_TIME_SEC.tv_sec);
302 ino->atime_sec = tmp_le64;
303 ino->ctime_sec = tmp_le64;
304 ino->mtime_sec = tmp_le64;
1e51764a
AB
305 ino->atime_nsec = 0;
306 ino->ctime_nsec = 0;
307 ino->mtime_nsec = 0;
308 ino->mode = cpu_to_le32(S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO);
309 ino->size = cpu_to_le64(UBIFS_INO_NODE_SZ);
310
311 /* Set compression enabled by default */
312 ino->flags = cpu_to_le32(UBIFS_COMPR_FL);
313
314 err = ubifs_write_node(c, ino, UBIFS_INO_NODE_SZ,
b36a261e 315 main_first + DEFAULT_DATA_LEB, 0);
1e51764a
AB
316 kfree(ino);
317 if (err)
318 return err;
319
320 dbg_gen("root inode created at LEB %d:0",
321 main_first + DEFAULT_DATA_LEB);
322
323 /*
324 * The first node in the log has to be the commit start node. This is
325 * always the case during normal file-system operation. Write a fake
326 * commit start node to the log.
327 */
328 tmp = ALIGN(UBIFS_CS_NODE_SZ, c->min_io_size);
329 cs = kzalloc(tmp, GFP_KERNEL);
330 if (!cs)
331 return -ENOMEM;
332
333 cs->ch.node_type = UBIFS_CS_NODE;
b36a261e 334 err = ubifs_write_node(c, cs, UBIFS_CS_NODE_SZ, UBIFS_LOG_LNUM, 0);
1e51764a 335 kfree(cs);
6dcfb802 336 if (err)
337 return err;
1e51764a 338
235c362b 339 ubifs_msg(c, "default file-system created");
1e51764a
AB
340 return 0;
341}
342
343/**
344 * validate_sb - validate superblock node.
345 * @c: UBIFS file-system description object
346 * @sup: superblock node
347 *
348 * This function validates superblock node @sup. Since most of data was read
349 * from the superblock and stored in @c, the function validates fields in @c
350 * instead. Returns zero in case of success and %-EINVAL in case of validation
351 * failure.
352 */
353static int validate_sb(struct ubifs_info *c, struct ubifs_sb_node *sup)
354{
355 long long max_bytes;
356 int err = 1, min_leb_cnt;
357
358 if (!c->key_hash) {
359 err = 2;
360 goto failed;
361 }
362
363 if (sup->key_fmt != UBIFS_SIMPLE_KEY_FMT) {
364 err = 3;
365 goto failed;
366 }
367
368 if (le32_to_cpu(sup->min_io_size) != c->min_io_size) {
235c362b 369 ubifs_err(c, "min. I/O unit mismatch: %d in superblock, %d real",
1e51764a
AB
370 le32_to_cpu(sup->min_io_size), c->min_io_size);
371 goto failed;
372 }
373
374 if (le32_to_cpu(sup->leb_size) != c->leb_size) {
235c362b 375 ubifs_err(c, "LEB size mismatch: %d in superblock, %d real",
1e51764a
AB
376 le32_to_cpu(sup->leb_size), c->leb_size);
377 goto failed;
378 }
379
380 if (c->log_lebs < UBIFS_MIN_LOG_LEBS ||
381 c->lpt_lebs < UBIFS_MIN_LPT_LEBS ||
382 c->orph_lebs < UBIFS_MIN_ORPH_LEBS ||
383 c->main_lebs < UBIFS_MIN_MAIN_LEBS) {
384 err = 4;
385 goto failed;
386 }
387
388 /*
389 * Calculate minimum allowed amount of main area LEBs. This is very
390 * similar to %UBIFS_MIN_LEB_CNT, but we take into account real what we
391 * have just read from the superblock.
392 */
393 min_leb_cnt = UBIFS_SB_LEBS + UBIFS_MST_LEBS + c->log_lebs;
394 min_leb_cnt += c->lpt_lebs + c->orph_lebs + c->jhead_cnt + 6;
395
396 if (c->leb_cnt < min_leb_cnt || c->leb_cnt > c->vi.size) {
235c362b 397 ubifs_err(c, "bad LEB count: %d in superblock, %d on UBI volume, %d minimum required",
79fda517 398 c->leb_cnt, c->vi.size, min_leb_cnt);
1e51764a
AB
399 goto failed;
400 }
401
402 if (c->max_leb_cnt < c->leb_cnt) {
235c362b 403 ubifs_err(c, "max. LEB count %d less than LEB count %d",
1e51764a
AB
404 c->max_leb_cnt, c->leb_cnt);
405 goto failed;
406 }
407
408 if (c->main_lebs < UBIFS_MIN_MAIN_LEBS) {
235c362b 409 ubifs_err(c, "too few main LEBs count %d, must be at least %d",
5a1f36c9 410 c->main_lebs, UBIFS_MIN_MAIN_LEBS);
1e51764a
AB
411 goto failed;
412 }
413
5a1f36c9
AB
414 max_bytes = (long long)c->leb_size * UBIFS_MIN_BUD_LEBS;
415 if (c->max_bud_bytes < max_bytes) {
235c362b 416 ubifs_err(c, "too small journal (%lld bytes), must be at least %lld bytes",
79fda517 417 c->max_bud_bytes, max_bytes);
5a1f36c9
AB
418 goto failed;
419 }
420
421 max_bytes = (long long)c->leb_size * c->main_lebs;
422 if (c->max_bud_bytes > max_bytes) {
235c362b 423 ubifs_err(c, "too large journal size (%lld bytes), only %lld bytes available in the main area",
5a1f36c9 424 c->max_bud_bytes, max_bytes);
1e51764a
AB
425 goto failed;
426 }
427
428 if (c->jhead_cnt < NONDATA_JHEADS_CNT + 1 ||
429 c->jhead_cnt > NONDATA_JHEADS_CNT + UBIFS_MAX_JHEADS) {
430 err = 9;
431 goto failed;
432 }
433
434 if (c->fanout < UBIFS_MIN_FANOUT ||
435 ubifs_idx_node_sz(c, c->fanout) > c->leb_size) {
436 err = 10;
437 goto failed;
438 }
439
440 if (c->lsave_cnt < 0 || (c->lsave_cnt > DEFAULT_LSAVE_CNT &&
441 c->lsave_cnt > c->max_leb_cnt - UBIFS_SB_LEBS - UBIFS_MST_LEBS -
442 c->log_lebs - c->lpt_lebs - c->orph_lebs)) {
443 err = 11;
444 goto failed;
445 }
446
447 if (UBIFS_SB_LEBS + UBIFS_MST_LEBS + c->log_lebs + c->lpt_lebs +
448 c->orph_lebs + c->main_lebs != c->leb_cnt) {
449 err = 12;
450 goto failed;
451 }
452
b793a8c8 453 if (c->default_compr >= UBIFS_COMPR_TYPES_CNT) {
1e51764a
AB
454 err = 13;
455 goto failed;
456 }
457
1e51764a
AB
458 if (c->rp_size < 0 || max_bytes < c->rp_size) {
459 err = 14;
460 goto failed;
461 }
462
463 if (le32_to_cpu(sup->time_gran) > 1000000000 ||
464 le32_to_cpu(sup->time_gran) < 1) {
465 err = 15;
466 goto failed;
467 }
468
469 return 0;
470
471failed:
235c362b 472 ubifs_err(c, "bad superblock, error %d", err);
edf6be24 473 ubifs_dump_node(c, sup);
1e51764a
AB
474 return -EINVAL;
475}
476
477/**
478 * ubifs_read_sb_node - read superblock node.
479 * @c: UBIFS file-system description object
480 *
481 * This function returns a pointer to the superblock node or a negative error
eaeee242
AB
482 * code. Note, the user of this function is responsible of kfree()'ing the
483 * returned superblock buffer.
1e51764a
AB
484 */
485struct ubifs_sb_node *ubifs_read_sb_node(struct ubifs_info *c)
486{
487 struct ubifs_sb_node *sup;
488 int err;
489
490 sup = kmalloc(ALIGN(UBIFS_SB_NODE_SZ, c->min_io_size), GFP_NOFS);
491 if (!sup)
492 return ERR_PTR(-ENOMEM);
493
494 err = ubifs_read_node(c, sup, UBIFS_SB_NODE, UBIFS_SB_NODE_SZ,
495 UBIFS_SB_LNUM, 0);
496 if (err) {
497 kfree(sup);
498 return ERR_PTR(err);
499 }
500
501 return sup;
502}
503
504/**
505 * ubifs_write_sb_node - write superblock node.
506 * @c: UBIFS file-system description object
507 * @sup: superblock node read with 'ubifs_read_sb_node()'
508 *
509 * This function returns %0 on success and a negative error code on failure.
510 */
511int ubifs_write_sb_node(struct ubifs_info *c, struct ubifs_sb_node *sup)
512{
513 int len = ALIGN(UBIFS_SB_NODE_SZ, c->min_io_size);
514
515 ubifs_prepare_node(c, sup, UBIFS_SB_NODE_SZ, 1);
b36a261e 516 return ubifs_leb_change(c, UBIFS_SB_LNUM, sup, len);
1e51764a
AB
517}
518
519/**
520 * ubifs_read_superblock - read superblock.
521 * @c: UBIFS file-system description object
522 *
523 * This function finds, reads and checks the superblock. If an empty UBI volume
524 * is being mounted, this function creates default superblock. Returns zero in
525 * case of success, and a negative error code in case of failure.
526 */
527int ubifs_read_superblock(struct ubifs_info *c)
528{
529 int err, sup_flags;
530 struct ubifs_sb_node *sup;
531
532 if (c->empty) {
533 err = create_default_filesystem(c);
534 if (err)
535 return err;
536 }
537
538 sup = ubifs_read_sb_node(c);
539 if (IS_ERR(sup))
540 return PTR_ERR(sup);
541
963f0cf6
AB
542 c->fmt_version = le32_to_cpu(sup->fmt_version);
543 c->ro_compat_version = le32_to_cpu(sup->ro_compat_version);
544
1e51764a
AB
545 /*
546 * The software supports all previous versions but not future versions,
547 * due to the unavailability of time-travelling equipment.
548 */
1e51764a 549 if (c->fmt_version > UBIFS_FORMAT_VERSION) {
2ef13294
AB
550 ubifs_assert(!c->ro_media || c->ro_mount);
551 if (!c->ro_mount ||
963f0cf6 552 c->ro_compat_version > UBIFS_RO_COMPAT_VERSION) {
235c362b 553 ubifs_err(c, "on-flash format version is w%d/r%d, but software only supports up to version w%d/r%d",
79fda517
AB
554 c->fmt_version, c->ro_compat_version,
555 UBIFS_FORMAT_VERSION,
963f0cf6
AB
556 UBIFS_RO_COMPAT_VERSION);
557 if (c->ro_compat_version <= UBIFS_RO_COMPAT_VERSION) {
235c362b 558 ubifs_msg(c, "only R/O mounting is possible");
963f0cf6
AB
559 err = -EROFS;
560 } else
561 err = -EINVAL;
562 goto out;
563 }
564
565 /*
566 * The FS is mounted R/O, and the media format is
567 * R/O-compatible with the UBIFS implementation, so we can
568 * mount.
569 */
570 c->rw_incompat = 1;
1e51764a
AB
571 }
572
573 if (c->fmt_version < 3) {
235c362b 574 ubifs_err(c, "on-flash format version %d is not supported",
1e51764a
AB
575 c->fmt_version);
576 err = -EINVAL;
577 goto out;
578 }
579
580 switch (sup->key_hash) {
581 case UBIFS_KEY_HASH_R5:
582 c->key_hash = key_r5_hash;
583 c->key_hash_type = UBIFS_KEY_HASH_R5;
584 break;
585
586 case UBIFS_KEY_HASH_TEST:
587 c->key_hash = key_test_hash;
588 c->key_hash_type = UBIFS_KEY_HASH_TEST;
589 break;
590 };
591
592 c->key_fmt = sup->key_fmt;
593
594 switch (c->key_fmt) {
595 case UBIFS_SIMPLE_KEY_FMT:
596 c->key_len = UBIFS_SK_LEN;
597 break;
598 default:
235c362b 599 ubifs_err(c, "unsupported key format");
1e51764a
AB
600 err = -EINVAL;
601 goto out;
602 }
603
604 c->leb_cnt = le32_to_cpu(sup->leb_cnt);
605 c->max_leb_cnt = le32_to_cpu(sup->max_leb_cnt);
606 c->max_bud_bytes = le64_to_cpu(sup->max_bud_bytes);
607 c->log_lebs = le32_to_cpu(sup->log_lebs);
608 c->lpt_lebs = le32_to_cpu(sup->lpt_lebs);
609 c->orph_lebs = le32_to_cpu(sup->orph_lebs);
610 c->jhead_cnt = le32_to_cpu(sup->jhead_cnt) + NONDATA_JHEADS_CNT;
611 c->fanout = le32_to_cpu(sup->fanout);
612 c->lsave_cnt = le32_to_cpu(sup->lsave_cnt);
1e51764a 613 c->rp_size = le64_to_cpu(sup->rp_size);
39241beb
EB
614 c->rp_uid = make_kuid(&init_user_ns, le32_to_cpu(sup->rp_uid));
615 c->rp_gid = make_kgid(&init_user_ns, le32_to_cpu(sup->rp_gid));
1e51764a 616 sup_flags = le32_to_cpu(sup->flags);
553dea4d
AB
617 if (!c->mount_opts.override_compr)
618 c->default_compr = le16_to_cpu(sup->default_compr);
1e51764a
AB
619
620 c->vfs_sb->s_time_gran = le32_to_cpu(sup->time_gran);
1e51764a 621 memcpy(&c->uuid, &sup->uuid, 16);
1e51764a 622 c->big_lpt = !!(sup_flags & UBIFS_FLG_BIGLPT);
9f58d350 623 c->space_fixup = !!(sup_flags & UBIFS_FLG_SPACE_FIXUP);
d63d61c1 624 c->double_hash = !!(sup_flags & UBIFS_FLG_DOUBLE_HASH);
e021986e
RW
625 c->encrypted = !!(sup_flags & UBIFS_FLG_ENCRYPTION);
626
627#ifndef CONFIG_UBIFS_FS_ENCRYPTION
628 if (c->encrypted) {
629 ubifs_err(c, "file system contains encrypted files but UBIFS"
630 " was built without crypto support.");
631 err = -EINVAL;
632 goto out;
633 }
634#endif
1e51764a
AB
635
636 /* Automatically increase file system size to the maximum size */
637 c->old_leb_cnt = c->leb_cnt;
638 if (c->leb_cnt < c->vi.size && c->leb_cnt < c->max_leb_cnt) {
639 c->leb_cnt = min_t(int, c->max_leb_cnt, c->vi.size);
2ef13294 640 if (c->ro_mount)
1e51764a
AB
641 dbg_mnt("Auto resizing (ro) from %d LEBs to %d LEBs",
642 c->old_leb_cnt, c->leb_cnt);
643 else {
644 dbg_mnt("Auto resizing (sb) from %d LEBs to %d LEBs",
645 c->old_leb_cnt, c->leb_cnt);
646 sup->leb_cnt = cpu_to_le32(c->leb_cnt);
647 err = ubifs_write_sb_node(c, sup);
648 if (err)
649 goto out;
650 c->old_leb_cnt = c->leb_cnt;
651 }
652 }
653
654 c->log_bytes = (long long)c->log_lebs * c->leb_size;
655 c->log_last = UBIFS_LOG_LNUM + c->log_lebs - 1;
656 c->lpt_first = UBIFS_LOG_LNUM + c->log_lebs;
657 c->lpt_last = c->lpt_first + c->lpt_lebs - 1;
658 c->orph_first = c->lpt_last + 1;
659 c->orph_last = c->orph_first + c->orph_lebs - 1;
660 c->main_lebs = c->leb_cnt - UBIFS_SB_LEBS - UBIFS_MST_LEBS;
661 c->main_lebs -= c->log_lebs + c->lpt_lebs + c->orph_lebs;
662 c->main_first = c->leb_cnt - c->main_lebs;
1e51764a
AB
663
664 err = validate_sb(c, sup);
665out:
666 kfree(sup);
667 return err;
668}
6554a657
MC
669
670/**
671 * fixup_leb - fixup/unmap an LEB containing free space.
672 * @c: UBIFS file-system description object
673 * @lnum: the LEB number to fix up
674 * @len: number of used bytes in LEB (starting at offset 0)
675 *
676 * This function reads the contents of the given LEB number @lnum, then fixes
677 * it up, so that empty min. I/O units in the end of LEB are actually erased on
678 * flash (rather than being just all-0xff real data). If the LEB is completely
679 * empty, it is simply unmapped.
680 */
681static int fixup_leb(struct ubifs_info *c, int lnum, int len)
682{
683 int err;
684
685 ubifs_assert(len >= 0);
686 ubifs_assert(len % c->min_io_size == 0);
687 ubifs_assert(len < c->leb_size);
688
689 if (len == 0) {
690 dbg_mnt("unmap empty LEB %d", lnum);
d3b2578f 691 return ubifs_leb_unmap(c, lnum);
6554a657
MC
692 }
693
694 dbg_mnt("fixup LEB %d, data len %d", lnum, len);
d304820a 695 err = ubifs_leb_read(c, lnum, c->sbuf, 0, len, 1);
6554a657
MC
696 if (err)
697 return err;
698
b36a261e 699 return ubifs_leb_change(c, lnum, c->sbuf, len);
6554a657
MC
700}
701
702/**
703 * fixup_free_space - find & remap all LEBs containing free space.
704 * @c: UBIFS file-system description object
705 *
706 * This function walks through all LEBs in the filesystem and fiexes up those
707 * containing free/empty space.
708 */
709static int fixup_free_space(struct ubifs_info *c)
710{
711 int lnum, err = 0;
712 struct ubifs_lprops *lprops;
713
714 ubifs_get_lprops(c);
715
716 /* Fixup LEBs in the master area */
717 for (lnum = UBIFS_MST_LNUM; lnum < UBIFS_LOG_LNUM; lnum++) {
718 err = fixup_leb(c, lnum, c->mst_offs + c->mst_node_alsz);
719 if (err)
720 goto out;
721 }
722
723 /* Unmap unused log LEBs */
724 lnum = ubifs_next_log_lnum(c, c->lhead_lnum);
725 while (lnum != c->ltail_lnum) {
726 err = fixup_leb(c, lnum, 0);
727 if (err)
728 goto out;
729 lnum = ubifs_next_log_lnum(c, lnum);
730 }
731
c6727932
AB
732 /*
733 * Fixup the log head which contains the only a CS node at the
734 * beginning.
735 */
736 err = fixup_leb(c, c->lhead_lnum,
737 ALIGN(UBIFS_CS_NODE_SZ, c->min_io_size));
6554a657
MC
738 if (err)
739 goto out;
740
741 /* Fixup LEBs in the LPT area */
742 for (lnum = c->lpt_first; lnum <= c->lpt_last; lnum++) {
743 int free = c->ltab[lnum - c->lpt_first].free;
744
745 if (free > 0) {
746 err = fixup_leb(c, lnum, c->leb_size - free);
747 if (err)
748 goto out;
749 }
750 }
751
752 /* Unmap LEBs in the orphans area */
753 for (lnum = c->orph_first; lnum <= c->orph_last; lnum++) {
754 err = fixup_leb(c, lnum, 0);
755 if (err)
756 goto out;
757 }
758
759 /* Fixup LEBs in the main area */
760 for (lnum = c->main_first; lnum < c->leb_cnt; lnum++) {
761 lprops = ubifs_lpt_lookup(c, lnum);
762 if (IS_ERR(lprops)) {
763 err = PTR_ERR(lprops);
764 goto out;
765 }
766
767 if (lprops->free > 0) {
768 err = fixup_leb(c, lnum, c->leb_size - lprops->free);
769 if (err)
770 goto out;
771 }
772 }
773
774out:
775 ubifs_release_lprops(c);
776 return err;
777}
778
779/**
780 * ubifs_fixup_free_space - find & fix all LEBs with free space.
781 * @c: UBIFS file-system description object
782 *
783 * This function fixes up LEBs containing free space on first mount, if the
784 * appropriate flag was set when the FS was created. Each LEB with one or more
785 * empty min. I/O unit (i.e. free-space-count > 0) is re-written, to make sure
786 * the free space is actually erased. E.g., this is necessary for some NAND
787 * chips, since the free space may have been programmed like real "0xff" data
788 * (generating a non-0xff ECC), causing future writes to the not-really-erased
789 * NAND pages to behave badly. After the space is fixed up, the superblock flag
790 * is cleared, so that this is skipped for all future mounts.
791 */
792int ubifs_fixup_free_space(struct ubifs_info *c)
793{
794 int err;
795 struct ubifs_sb_node *sup;
796
797 ubifs_assert(c->space_fixup);
798 ubifs_assert(!c->ro_mount);
799
235c362b 800 ubifs_msg(c, "start fixing up free space");
6554a657
MC
801
802 err = fixup_free_space(c);
803 if (err)
804 return err;
805
806 sup = ubifs_read_sb_node(c);
807 if (IS_ERR(sup))
808 return PTR_ERR(sup);
809
810 /* Free-space fixup is no longer required */
811 c->space_fixup = 0;
812 sup->flags &= cpu_to_le32(~UBIFS_FLG_SPACE_FIXUP);
813
814 err = ubifs_write_sb_node(c, sup);
815 kfree(sup);
816 if (err)
817 return err;
818
235c362b 819 ubifs_msg(c, "free space fixup complete");
6554a657
MC
820 return err;
821}
e021986e
RW
822
823int ubifs_enable_encryption(struct ubifs_info *c)
824{
825 int err;
826 struct ubifs_sb_node *sup;
827
828 if (c->encrypted)
829 return 0;
830
831 if (c->ro_mount || c->ro_media)
832 return -EROFS;
833
834 if (c->fmt_version < 5) {
835 ubifs_err(c, "on-flash format version 5 is needed for encryption");
836 return -EINVAL;
837 }
838
839 sup = ubifs_read_sb_node(c);
840 if (IS_ERR(sup))
841 return PTR_ERR(sup);
842
843 sup->flags |= cpu_to_le32(UBIFS_FLG_ENCRYPTION);
844
845 err = ubifs_write_sb_node(c, sup);
846 if (!err)
847 c->encrypted = 1;
848 kfree(sup);
849
850 return err;
851}