blob: d1fe56203a1d11b1d7bd2c8e7338a55ea1ea6dcf [file] [log] [blame]
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001/*
2 * This file is part of UBIFS.
3 *
4 * Copyright (C) 2006-2008 Nokia Corporation.
5 * Copyright (C) 2006, 2007 University of Szeged, Hungary
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc., 51
18 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 * Authors: Artem Bityutskiy (Битюцкий Артём)
21 * Adrian Hunter
22 * Zoltan Sogor
23 */
24
25/*
26 * This file implements UBIFS I/O subsystem which provides various I/O-related
27 * helper functions (reading/writing/checking/validating nodes) and implements
28 * write-buffering support. Write buffers help to save space which otherwise
29 * would have been wasted for padding to the nearest minimal I/O unit boundary.
30 * Instead, data first goes to the write-buffer and is flushed when the
31 * buffer is full or when it is not used for some time (by timer). This is
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +020032 * similar to the mechanism is used by JFFS2.
Artem Bityutskiy1e517642008-07-14 19:08:37 +030033 *
34 * Write-buffers are defined by 'struct ubifs_wbuf' objects and protected by
35 * mutexes defined inside these objects. Since sometimes upper-level code
36 * has to lock the write-buffer (e.g. journal space reservation code), many
37 * functions related to write-buffers have "nolock" suffix which means that the
38 * caller has to lock the write-buffer before calling this function.
39 *
40 * UBIFS stores nodes at 64 bit-aligned addresses. If the node length is not
41 * aligned, UBIFS starts the next node from the aligned address, and the padded
42 * bytes may contain any rubbish. In other words, UBIFS does not put padding
43 * bytes in those small gaps. Common headers of nodes store real node lengths,
44 * not aligned lengths. Indexing nodes also store real lengths in branches.
45 *
46 * UBIFS uses padding when it pads to the next min. I/O unit. In this case it
47 * uses padding nodes or padding bytes, if the padding node does not fit.
48 *
49 * All UBIFS nodes are protected by CRC checksums and UBIFS checks all nodes
50 * every time they are read from the flash media.
51 */
52
53#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090054#include <linux/slab.h>
Artem Bityutskiy1e517642008-07-14 19:08:37 +030055#include "ubifs.h"
56
57/**
Adrian Hunterff46d7b2008-07-21 15:39:05 +030058 * ubifs_ro_mode - switch UBIFS to read read-only mode.
59 * @c: UBIFS file-system description object
60 * @err: error code which is the reason of switching to R/O mode
61 */
62void ubifs_ro_mode(struct ubifs_info *c, int err)
63{
Artem Bityutskiy2680d722010-09-17 16:44:28 +030064 if (!c->ro_error) {
65 c->ro_error = 1;
Artem Bityutskiyccb3eba2008-09-08 16:07:01 +030066 c->no_chk_data_crc = 0;
ZhangJieJing2fde99c2010-04-16 11:36:50 +080067 c->vfs_sb->s_flags |= MS_RDONLY;
Adrian Hunterff46d7b2008-07-21 15:39:05 +030068 ubifs_warn("switched to read-only mode, error %d", err);
69 dbg_dump_stack();
70 }
71}
72
73/**
Artem Bityutskiy1e517642008-07-14 19:08:37 +030074 * ubifs_check_node - check node.
75 * @c: UBIFS file-system description object
76 * @buf: node to check
77 * @lnum: logical eraseblock number
78 * @offs: offset within the logical eraseblock
79 * @quiet: print no messages
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +020080 * @must_chk_crc: indicates whether to always check the CRC
Artem Bityutskiy1e517642008-07-14 19:08:37 +030081 *
82 * This function checks node magic number and CRC checksum. This function also
83 * validates node length to prevent UBIFS from becoming crazy when an attacker
84 * feeds it a file-system image with incorrect nodes. For example, too large
85 * node length in the common header could cause UBIFS to read memory outside of
86 * allocated buffer when checking the CRC checksum.
87 *
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +020088 * This function may skip data nodes CRC checking if @c->no_chk_data_crc is
89 * true, which is controlled by corresponding UBIFS mount option. However, if
90 * @must_chk_crc is true, then @c->no_chk_data_crc is ignored and CRC is
Artem Bityutskiy18d1d7f2011-01-17 22:27:56 +020091 * checked. Similarly, if @c->mounting or @c->remounting_rw is true (we are
92 * mounting or re-mounting to R/W mode), @c->no_chk_data_crc is ignored and CRC
93 * is checked. This is because during mounting or re-mounting from R/O mode to
94 * R/W mode we may read journal nodes (when replying the journal or doing the
95 * recovery) and the journal nodes may potentially be corrupted, so checking is
96 * required.
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +020097 *
98 * This function returns zero in case of success and %-EUCLEAN in case of bad
99 * CRC or magic.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300100 */
101int ubifs_check_node(const struct ubifs_info *c, const void *buf, int lnum,
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +0200102 int offs, int quiet, int must_chk_crc)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300103{
104 int err = -EINVAL, type, node_len;
105 uint32_t crc, node_crc, magic;
106 const struct ubifs_ch *ch = buf;
107
108 ubifs_assert(lnum >= 0 && lnum < c->leb_cnt && offs >= 0);
109 ubifs_assert(!(offs & 7) && offs < c->leb_size);
110
111 magic = le32_to_cpu(ch->magic);
112 if (magic != UBIFS_NODE_MAGIC) {
113 if (!quiet)
114 ubifs_err("bad magic %#08x, expected %#08x",
115 magic, UBIFS_NODE_MAGIC);
116 err = -EUCLEAN;
117 goto out;
118 }
119
120 type = ch->node_type;
121 if (type < 0 || type >= UBIFS_NODE_TYPES_CNT) {
122 if (!quiet)
123 ubifs_err("bad node type %d", type);
124 goto out;
125 }
126
127 node_len = le32_to_cpu(ch->len);
128 if (node_len + offs > c->leb_size)
129 goto out_len;
130
131 if (c->ranges[type].max_len == 0) {
132 if (node_len != c->ranges[type].len)
133 goto out_len;
134 } else if (node_len < c->ranges[type].min_len ||
135 node_len > c->ranges[type].max_len)
136 goto out_len;
137
Artem Bityutskiy18d1d7f2011-01-17 22:27:56 +0200138 if (!must_chk_crc && type == UBIFS_DATA_NODE && !c->mounting &&
139 !c->remounting_rw && c->no_chk_data_crc)
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +0200140 return 0;
Adrian Hunter2953e732008-09-04 16:26:00 +0300141
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300142 crc = crc32(UBIFS_CRC32_INIT, buf + 8, node_len - 8);
143 node_crc = le32_to_cpu(ch->crc);
144 if (crc != node_crc) {
145 if (!quiet)
146 ubifs_err("bad CRC: calculated %#08x, read %#08x",
147 crc, node_crc);
148 err = -EUCLEAN;
149 goto out;
150 }
151
152 return 0;
153
154out_len:
155 if (!quiet)
156 ubifs_err("bad node length %d", node_len);
157out:
158 if (!quiet) {
159 ubifs_err("bad node at LEB %d:%d", lnum, offs);
160 dbg_dump_node(c, buf);
161 dbg_dump_stack();
162 }
163 return err;
164}
165
166/**
167 * ubifs_pad - pad flash space.
168 * @c: UBIFS file-system description object
169 * @buf: buffer to put padding to
170 * @pad: how many bytes to pad
171 *
172 * The flash media obliges us to write only in chunks of %c->min_io_size and
173 * when we have to write less data we add padding node to the write-buffer and
174 * pad it to the next minimal I/O unit's boundary. Padding nodes help when the
175 * media is being scanned. If the amount of wasted space is not enough to fit a
176 * padding node which takes %UBIFS_PAD_NODE_SZ bytes, we write padding bytes
177 * pattern (%UBIFS_PADDING_BYTE).
178 *
179 * Padding nodes are also used to fill gaps when the "commit-in-gaps" method is
180 * used.
181 */
182void ubifs_pad(const struct ubifs_info *c, void *buf, int pad)
183{
184 uint32_t crc;
185
186 ubifs_assert(pad >= 0 && !(pad & 7));
187
188 if (pad >= UBIFS_PAD_NODE_SZ) {
189 struct ubifs_ch *ch = buf;
190 struct ubifs_pad_node *pad_node = buf;
191
192 ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC);
193 ch->node_type = UBIFS_PAD_NODE;
194 ch->group_type = UBIFS_NO_NODE_GROUP;
195 ch->padding[0] = ch->padding[1] = 0;
196 ch->sqnum = 0;
197 ch->len = cpu_to_le32(UBIFS_PAD_NODE_SZ);
198 pad -= UBIFS_PAD_NODE_SZ;
199 pad_node->pad_len = cpu_to_le32(pad);
200 crc = crc32(UBIFS_CRC32_INIT, buf + 8, UBIFS_PAD_NODE_SZ - 8);
201 ch->crc = cpu_to_le32(crc);
202 memset(buf + UBIFS_PAD_NODE_SZ, 0, pad);
203 } else if (pad > 0)
204 /* Too little space, padding node won't fit */
205 memset(buf, UBIFS_PADDING_BYTE, pad);
206}
207
208/**
209 * next_sqnum - get next sequence number.
210 * @c: UBIFS file-system description object
211 */
212static unsigned long long next_sqnum(struct ubifs_info *c)
213{
214 unsigned long long sqnum;
215
216 spin_lock(&c->cnt_lock);
217 sqnum = ++c->max_sqnum;
218 spin_unlock(&c->cnt_lock);
219
220 if (unlikely(sqnum >= SQNUM_WARN_WATERMARK)) {
221 if (sqnum >= SQNUM_WATERMARK) {
222 ubifs_err("sequence number overflow %llu, end of life",
223 sqnum);
224 ubifs_ro_mode(c, -EINVAL);
225 }
226 ubifs_warn("running out of sequence numbers, end of life soon");
227 }
228
229 return sqnum;
230}
231
232/**
233 * ubifs_prepare_node - prepare node to be written to flash.
234 * @c: UBIFS file-system description object
235 * @node: the node to pad
236 * @len: node length
237 * @pad: if the buffer has to be padded
238 *
239 * This function prepares node at @node to be written to the media - it
240 * calculates node CRC, fills the common header, and adds proper padding up to
241 * the next minimum I/O unit if @pad is not zero.
242 */
243void ubifs_prepare_node(struct ubifs_info *c, void *node, int len, int pad)
244{
245 uint32_t crc;
246 struct ubifs_ch *ch = node;
247 unsigned long long sqnum = next_sqnum(c);
248
249 ubifs_assert(len >= UBIFS_CH_SZ);
250
251 ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC);
252 ch->len = cpu_to_le32(len);
253 ch->group_type = UBIFS_NO_NODE_GROUP;
254 ch->sqnum = cpu_to_le64(sqnum);
255 ch->padding[0] = ch->padding[1] = 0;
256 crc = crc32(UBIFS_CRC32_INIT, node + 8, len - 8);
257 ch->crc = cpu_to_le32(crc);
258
259 if (pad) {
260 len = ALIGN(len, 8);
261 pad = ALIGN(len, c->min_io_size) - len;
262 ubifs_pad(c, node + len, pad);
263 }
264}
265
266/**
267 * ubifs_prep_grp_node - prepare node of a group to be written to flash.
268 * @c: UBIFS file-system description object
269 * @node: the node to pad
270 * @len: node length
271 * @last: indicates the last node of the group
272 *
273 * This function prepares node at @node to be written to the media - it
274 * calculates node CRC and fills the common header.
275 */
276void ubifs_prep_grp_node(struct ubifs_info *c, void *node, int len, int last)
277{
278 uint32_t crc;
279 struct ubifs_ch *ch = node;
280 unsigned long long sqnum = next_sqnum(c);
281
282 ubifs_assert(len >= UBIFS_CH_SZ);
283
284 ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC);
285 ch->len = cpu_to_le32(len);
286 if (last)
287 ch->group_type = UBIFS_LAST_OF_NODE_GROUP;
288 else
289 ch->group_type = UBIFS_IN_NODE_GROUP;
290 ch->sqnum = cpu_to_le64(sqnum);
291 ch->padding[0] = ch->padding[1] = 0;
292 crc = crc32(UBIFS_CRC32_INIT, node + 8, len - 8);
293 ch->crc = cpu_to_le32(crc);
294}
295
296/**
297 * wbuf_timer_callback - write-buffer timer callback function.
298 * @data: timer data (write-buffer descriptor)
299 *
300 * This function is called when the write-buffer timer expires.
301 */
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300302static enum hrtimer_restart wbuf_timer_callback_nolock(struct hrtimer *timer)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300303{
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300304 struct ubifs_wbuf *wbuf = container_of(timer, struct ubifs_wbuf, timer);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300305
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300306 dbg_io("jhead %s", dbg_jhead(wbuf->jhead));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300307 wbuf->need_sync = 1;
308 wbuf->c->need_wbuf_sync = 1;
309 ubifs_wake_up_bgt(wbuf->c);
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300310 return HRTIMER_NORESTART;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300311}
312
313/**
314 * new_wbuf_timer - start new write-buffer timer.
315 * @wbuf: write-buffer descriptor
316 */
317static void new_wbuf_timer_nolock(struct ubifs_wbuf *wbuf)
318{
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300319 ubifs_assert(!hrtimer_active(&wbuf->timer));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300320
Artem Bityutskiy0b335b92009-06-23 12:30:43 +0300321 if (wbuf->no_timer)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300322 return;
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300323 dbg_io("set timer for jhead %s, %llu-%llu millisecs",
324 dbg_jhead(wbuf->jhead),
Adrian Hunter44737582009-06-24 10:15:12 +0300325 div_u64(ktime_to_ns(wbuf->softlimit), USEC_PER_SEC),
326 div_u64(ktime_to_ns(wbuf->softlimit) + wbuf->delta,
327 USEC_PER_SEC));
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300328 hrtimer_start_range_ns(&wbuf->timer, wbuf->softlimit, wbuf->delta,
329 HRTIMER_MODE_REL);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300330}
331
332/**
333 * cancel_wbuf_timer - cancel write-buffer timer.
334 * @wbuf: write-buffer descriptor
335 */
336static void cancel_wbuf_timer_nolock(struct ubifs_wbuf *wbuf)
337{
Artem Bityutskiy0b335b92009-06-23 12:30:43 +0300338 if (wbuf->no_timer)
339 return;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300340 wbuf->need_sync = 0;
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300341 hrtimer_cancel(&wbuf->timer);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300342}
343
344/**
345 * ubifs_wbuf_sync_nolock - synchronize write-buffer.
346 * @wbuf: write-buffer to synchronize
347 *
348 * This function synchronizes write-buffer @buf and returns zero in case of
349 * success or a negative error code in case of failure.
350 */
351int ubifs_wbuf_sync_nolock(struct ubifs_wbuf *wbuf)
352{
353 struct ubifs_info *c = wbuf->c;
354 int err, dirt;
355
356 cancel_wbuf_timer_nolock(wbuf);
357 if (!wbuf->used || wbuf->lnum == -1)
358 /* Write-buffer is empty or not seeked */
359 return 0;
360
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300361 dbg_io("LEB %d:%d, %d bytes, jhead %s",
362 wbuf->lnum, wbuf->offs, wbuf->used, dbg_jhead(wbuf->jhead));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300363 ubifs_assert(!(wbuf->avail & 7));
364 ubifs_assert(wbuf->offs + c->min_io_size <= c->leb_size);
Artem Bityutskiy2ef13292010-09-19 18:34:26 +0300365 ubifs_assert(!c->ro_media && !c->ro_mount);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300366
Artem Bityutskiy2680d722010-09-17 16:44:28 +0300367 if (c->ro_error)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300368 return -EROFS;
369
370 ubifs_pad(c, wbuf->buf + wbuf->used, wbuf->avail);
371 err = ubi_leb_write(c->ubi, wbuf->lnum, wbuf->buf, wbuf->offs,
372 c->min_io_size, wbuf->dtype);
373 if (err) {
374 ubifs_err("cannot write %d bytes to LEB %d:%d",
375 c->min_io_size, wbuf->lnum, wbuf->offs);
376 dbg_dump_stack();
377 return err;
378 }
379
380 dirt = wbuf->avail;
381
382 spin_lock(&wbuf->lock);
383 wbuf->offs += c->min_io_size;
384 wbuf->avail = c->min_io_size;
385 wbuf->used = 0;
386 wbuf->next_ino = 0;
387 spin_unlock(&wbuf->lock);
388
389 if (wbuf->sync_callback)
390 err = wbuf->sync_callback(c, wbuf->lnum,
391 c->leb_size - wbuf->offs, dirt);
392 return err;
393}
394
395/**
396 * ubifs_wbuf_seek_nolock - seek write-buffer.
397 * @wbuf: write-buffer
398 * @lnum: logical eraseblock number to seek to
399 * @offs: logical eraseblock offset to seek to
400 * @dtype: data type
401 *
Artem Bityutskiycb54ef82009-06-23 20:30:32 +0300402 * This function targets the write-buffer to logical eraseblock @lnum:@offs.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300403 * The write-buffer is synchronized if it is not empty. Returns zero in case of
404 * success and a negative error code in case of failure.
405 */
406int ubifs_wbuf_seek_nolock(struct ubifs_wbuf *wbuf, int lnum, int offs,
407 int dtype)
408{
409 const struct ubifs_info *c = wbuf->c;
410
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300411 dbg_io("LEB %d:%d, jhead %s", lnum, offs, dbg_jhead(wbuf->jhead));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300412 ubifs_assert(lnum >= 0 && lnum < c->leb_cnt);
413 ubifs_assert(offs >= 0 && offs <= c->leb_size);
414 ubifs_assert(offs % c->min_io_size == 0 && !(offs & 7));
415 ubifs_assert(lnum != wbuf->lnum);
416
417 if (wbuf->used > 0) {
418 int err = ubifs_wbuf_sync_nolock(wbuf);
419
420 if (err)
421 return err;
422 }
423
424 spin_lock(&wbuf->lock);
425 wbuf->lnum = lnum;
426 wbuf->offs = offs;
427 wbuf->avail = c->min_io_size;
428 wbuf->used = 0;
429 spin_unlock(&wbuf->lock);
430 wbuf->dtype = dtype;
431
432 return 0;
433}
434
435/**
436 * ubifs_bg_wbufs_sync - synchronize write-buffers.
437 * @c: UBIFS file-system description object
438 *
439 * This function is called by background thread to synchronize write-buffers.
440 * Returns zero in case of success and a negative error code in case of
441 * failure.
442 */
443int ubifs_bg_wbufs_sync(struct ubifs_info *c)
444{
445 int err, i;
446
Artem Bityutskiy2ef13292010-09-19 18:34:26 +0300447 ubifs_assert(!c->ro_media && !c->ro_mount);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300448 if (!c->need_wbuf_sync)
449 return 0;
450 c->need_wbuf_sync = 0;
451
Artem Bityutskiy2680d722010-09-17 16:44:28 +0300452 if (c->ro_error) {
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300453 err = -EROFS;
454 goto out_timers;
455 }
456
457 dbg_io("synchronize");
458 for (i = 0; i < c->jhead_cnt; i++) {
459 struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf;
460
461 cond_resched();
462
463 /*
464 * If the mutex is locked then wbuf is being changed, so
465 * synchronization is not necessary.
466 */
467 if (mutex_is_locked(&wbuf->io_mutex))
468 continue;
469
470 mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
471 if (!wbuf->need_sync) {
472 mutex_unlock(&wbuf->io_mutex);
473 continue;
474 }
475
476 err = ubifs_wbuf_sync_nolock(wbuf);
477 mutex_unlock(&wbuf->io_mutex);
478 if (err) {
479 ubifs_err("cannot sync write-buffer, error %d", err);
480 ubifs_ro_mode(c, err);
481 goto out_timers;
482 }
483 }
484
485 return 0;
486
487out_timers:
488 /* Cancel all timers to prevent repeated errors */
489 for (i = 0; i < c->jhead_cnt; i++) {
490 struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf;
491
492 mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
493 cancel_wbuf_timer_nolock(wbuf);
494 mutex_unlock(&wbuf->io_mutex);
495 }
496 return err;
497}
498
499/**
500 * ubifs_wbuf_write_nolock - write data to flash via write-buffer.
501 * @wbuf: write-buffer
502 * @buf: node to write
503 * @len: node length
504 *
505 * This function writes data to flash via write-buffer @wbuf. This means that
506 * the last piece of the node won't reach the flash media immediately if it
507 * does not take whole minimal I/O unit. Instead, the node will sit in RAM
508 * until the write-buffer is synchronized (e.g., by timer).
509 *
510 * This function returns zero in case of success and a negative error code in
511 * case of failure. If the node cannot be written because there is no more
512 * space in this logical eraseblock, %-ENOSPC is returned.
513 */
514int ubifs_wbuf_write_nolock(struct ubifs_wbuf *wbuf, void *buf, int len)
515{
516 struct ubifs_info *c = wbuf->c;
517 int err, written, n, aligned_len = ALIGN(len, 8), offs;
518
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300519 dbg_io("%d bytes (%s) to jhead %s wbuf at LEB %d:%d", len,
520 dbg_ntype(((struct ubifs_ch *)buf)->node_type),
521 dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs + wbuf->used);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300522 ubifs_assert(len > 0 && wbuf->lnum >= 0 && wbuf->lnum < c->leb_cnt);
523 ubifs_assert(wbuf->offs >= 0 && wbuf->offs % c->min_io_size == 0);
524 ubifs_assert(!(wbuf->offs & 7) && wbuf->offs <= c->leb_size);
525 ubifs_assert(wbuf->avail > 0 && wbuf->avail <= c->min_io_size);
526 ubifs_assert(mutex_is_locked(&wbuf->io_mutex));
Artem Bityutskiy2ef13292010-09-19 18:34:26 +0300527 ubifs_assert(!c->ro_media && !c->ro_mount);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300528
529 if (c->leb_size - wbuf->offs - wbuf->used < aligned_len) {
530 err = -ENOSPC;
531 goto out;
532 }
533
534 cancel_wbuf_timer_nolock(wbuf);
535
Artem Bityutskiy2680d722010-09-17 16:44:28 +0300536 if (c->ro_error)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300537 return -EROFS;
538
539 if (aligned_len <= wbuf->avail) {
540 /*
541 * The node is not very large and fits entirely within
542 * write-buffer.
543 */
544 memcpy(wbuf->buf + wbuf->used, buf, len);
545
546 if (aligned_len == wbuf->avail) {
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300547 dbg_io("flush jhead %s wbuf to LEB %d:%d",
548 dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300549 err = ubi_leb_write(c->ubi, wbuf->lnum, wbuf->buf,
550 wbuf->offs, c->min_io_size,
551 wbuf->dtype);
552 if (err)
553 goto out;
554
555 spin_lock(&wbuf->lock);
556 wbuf->offs += c->min_io_size;
557 wbuf->avail = c->min_io_size;
558 wbuf->used = 0;
559 wbuf->next_ino = 0;
560 spin_unlock(&wbuf->lock);
561 } else {
562 spin_lock(&wbuf->lock);
563 wbuf->avail -= aligned_len;
564 wbuf->used += aligned_len;
565 spin_unlock(&wbuf->lock);
566 }
567
568 goto exit;
569 }
570
571 /*
572 * The node is large enough and does not fit entirely within current
573 * minimal I/O unit. We have to fill and flush write-buffer and switch
574 * to the next min. I/O unit.
575 */
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300576 dbg_io("flush jhead %s wbuf to LEB %d:%d",
577 dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300578 memcpy(wbuf->buf + wbuf->used, buf, wbuf->avail);
579 err = ubi_leb_write(c->ubi, wbuf->lnum, wbuf->buf, wbuf->offs,
580 c->min_io_size, wbuf->dtype);
581 if (err)
582 goto out;
583
584 offs = wbuf->offs + c->min_io_size;
585 len -= wbuf->avail;
586 aligned_len -= wbuf->avail;
587 written = wbuf->avail;
588
589 /*
590 * The remaining data may take more whole min. I/O units, so write the
591 * remains multiple to min. I/O unit size directly to the flash media.
592 * We align node length to 8-byte boundary because we anyway flash wbuf
593 * if the remaining space is less than 8 bytes.
594 */
595 n = aligned_len >> c->min_io_shift;
596 if (n) {
597 n <<= c->min_io_shift;
598 dbg_io("write %d bytes to LEB %d:%d", n, wbuf->lnum, offs);
599 err = ubi_leb_write(c->ubi, wbuf->lnum, buf + written, offs, n,
600 wbuf->dtype);
601 if (err)
602 goto out;
603 offs += n;
604 aligned_len -= n;
605 len -= n;
606 written += n;
607 }
608
609 spin_lock(&wbuf->lock);
610 if (aligned_len)
611 /*
612 * And now we have what's left and what does not take whole
613 * min. I/O unit, so write it to the write-buffer and we are
614 * done.
615 */
616 memcpy(wbuf->buf, buf + written, len);
617
618 wbuf->offs = offs;
619 wbuf->used = aligned_len;
620 wbuf->avail = c->min_io_size - aligned_len;
621 wbuf->next_ino = 0;
622 spin_unlock(&wbuf->lock);
623
624exit:
625 if (wbuf->sync_callback) {
626 int free = c->leb_size - wbuf->offs - wbuf->used;
627
628 err = wbuf->sync_callback(c, wbuf->lnum, free, 0);
629 if (err)
630 goto out;
631 }
632
633 if (wbuf->used)
634 new_wbuf_timer_nolock(wbuf);
635
636 return 0;
637
638out:
639 ubifs_err("cannot write %d bytes to LEB %d:%d, error %d",
640 len, wbuf->lnum, wbuf->offs, err);
641 dbg_dump_node(c, buf);
642 dbg_dump_stack();
643 dbg_dump_leb(c, wbuf->lnum);
644 return err;
645}
646
647/**
648 * ubifs_write_node - write node to the media.
649 * @c: UBIFS file-system description object
650 * @buf: the node to write
651 * @len: node length
652 * @lnum: logical eraseblock number
653 * @offs: offset within the logical eraseblock
654 * @dtype: node life-time hint (%UBI_LONGTERM, %UBI_SHORTTERM, %UBI_UNKNOWN)
655 *
656 * This function automatically fills node magic number, assigns sequence
657 * number, and calculates node CRC checksum. The length of the @buf buffer has
658 * to be aligned to the minimal I/O unit size. This function automatically
659 * appends padding node and padding bytes if needed. Returns zero in case of
660 * success and a negative error code in case of failure.
661 */
662int ubifs_write_node(struct ubifs_info *c, void *buf, int len, int lnum,
663 int offs, int dtype)
664{
665 int err, buf_len = ALIGN(len, c->min_io_size);
666
667 dbg_io("LEB %d:%d, %s, length %d (aligned %d)",
668 lnum, offs, dbg_ntype(((struct ubifs_ch *)buf)->node_type), len,
669 buf_len);
670 ubifs_assert(lnum >= 0 && lnum < c->leb_cnt && offs >= 0);
671 ubifs_assert(offs % c->min_io_size == 0 && offs < c->leb_size);
Artem Bityutskiy2ef13292010-09-19 18:34:26 +0300672 ubifs_assert(!c->ro_media && !c->ro_mount);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300673
Artem Bityutskiy2680d722010-09-17 16:44:28 +0300674 if (c->ro_error)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300675 return -EROFS;
676
677 ubifs_prepare_node(c, buf, len, 1);
678 err = ubi_leb_write(c->ubi, lnum, buf, offs, buf_len, dtype);
679 if (err) {
680 ubifs_err("cannot write %d bytes to LEB %d:%d, error %d",
681 buf_len, lnum, offs, err);
682 dbg_dump_node(c, buf);
683 dbg_dump_stack();
684 }
685
686 return err;
687}
688
689/**
690 * ubifs_read_node_wbuf - read node from the media or write-buffer.
691 * @wbuf: wbuf to check for un-written data
692 * @buf: buffer to read to
693 * @type: node type
694 * @len: node length
695 * @lnum: logical eraseblock number
696 * @offs: offset within the logical eraseblock
697 *
698 * This function reads a node of known type and length, checks it and stores
699 * in @buf. If the node partially or fully sits in the write-buffer, this
700 * function takes data from the buffer, otherwise it reads the flash media.
701 * Returns zero in case of success, %-EUCLEAN if CRC mismatched and a negative
702 * error code in case of failure.
703 */
704int ubifs_read_node_wbuf(struct ubifs_wbuf *wbuf, void *buf, int type, int len,
705 int lnum, int offs)
706{
707 const struct ubifs_info *c = wbuf->c;
708 int err, rlen, overlap;
709 struct ubifs_ch *ch = buf;
710
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300711 dbg_io("LEB %d:%d, %s, length %d, jhead %s", lnum, offs,
712 dbg_ntype(type), len, dbg_jhead(wbuf->jhead));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300713 ubifs_assert(wbuf && lnum >= 0 && lnum < c->leb_cnt && offs >= 0);
714 ubifs_assert(!(offs & 7) && offs < c->leb_size);
715 ubifs_assert(type >= 0 && type < UBIFS_NODE_TYPES_CNT);
716
717 spin_lock(&wbuf->lock);
718 overlap = (lnum == wbuf->lnum && offs + len > wbuf->offs);
719 if (!overlap) {
720 /* We may safely unlock the write-buffer and read the data */
721 spin_unlock(&wbuf->lock);
722 return ubifs_read_node(c, buf, type, len, lnum, offs);
723 }
724
725 /* Don't read under wbuf */
726 rlen = wbuf->offs - offs;
727 if (rlen < 0)
728 rlen = 0;
729
730 /* Copy the rest from the write-buffer */
731 memcpy(buf + rlen, wbuf->buf + offs + rlen - wbuf->offs, len - rlen);
732 spin_unlock(&wbuf->lock);
733
734 if (rlen > 0) {
735 /* Read everything that goes before write-buffer */
736 err = ubi_read(c->ubi, lnum, buf, offs, rlen);
737 if (err && err != -EBADMSG) {
738 ubifs_err("failed to read node %d from LEB %d:%d, "
739 "error %d", type, lnum, offs, err);
740 dbg_dump_stack();
741 return err;
742 }
743 }
744
745 if (type != ch->node_type) {
746 ubifs_err("bad node type (%d but expected %d)",
747 ch->node_type, type);
748 goto out;
749 }
750
Adrian Hunter2953e732008-09-04 16:26:00 +0300751 err = ubifs_check_node(c, buf, lnum, offs, 0, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300752 if (err) {
753 ubifs_err("expected node type %d", type);
754 return err;
755 }
756
757 rlen = le32_to_cpu(ch->len);
758 if (rlen != len) {
759 ubifs_err("bad node length %d, expected %d", rlen, len);
760 goto out;
761 }
762
763 return 0;
764
765out:
766 ubifs_err("bad node at LEB %d:%d", lnum, offs);
767 dbg_dump_node(c, buf);
768 dbg_dump_stack();
769 return -EINVAL;
770}
771
772/**
773 * ubifs_read_node - read node.
774 * @c: UBIFS file-system description object
775 * @buf: buffer to read to
776 * @type: node type
777 * @len: node length (not aligned)
778 * @lnum: logical eraseblock number
779 * @offs: offset within the logical eraseblock
780 *
781 * This function reads a node of known type and and length, checks it and
782 * stores in @buf. Returns zero in case of success, %-EUCLEAN if CRC mismatched
783 * and a negative error code in case of failure.
784 */
785int ubifs_read_node(const struct ubifs_info *c, void *buf, int type, int len,
786 int lnum, int offs)
787{
788 int err, l;
789 struct ubifs_ch *ch = buf;
790
791 dbg_io("LEB %d:%d, %s, length %d", lnum, offs, dbg_ntype(type), len);
792 ubifs_assert(lnum >= 0 && lnum < c->leb_cnt && offs >= 0);
793 ubifs_assert(len >= UBIFS_CH_SZ && offs + len <= c->leb_size);
794 ubifs_assert(!(offs & 7) && offs < c->leb_size);
795 ubifs_assert(type >= 0 && type < UBIFS_NODE_TYPES_CNT);
796
797 err = ubi_read(c->ubi, lnum, buf, offs, len);
798 if (err && err != -EBADMSG) {
799 ubifs_err("cannot read node %d from LEB %d:%d, error %d",
800 type, lnum, offs, err);
801 return err;
802 }
803
804 if (type != ch->node_type) {
805 ubifs_err("bad node type (%d but expected %d)",
806 ch->node_type, type);
807 goto out;
808 }
809
Adrian Hunter2953e732008-09-04 16:26:00 +0300810 err = ubifs_check_node(c, buf, lnum, offs, 0, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300811 if (err) {
812 ubifs_err("expected node type %d", type);
813 return err;
814 }
815
816 l = le32_to_cpu(ch->len);
817 if (l != len) {
818 ubifs_err("bad node length %d, expected %d", l, len);
819 goto out;
820 }
821
822 return 0;
823
824out:
Artem Bityutskiy3a8fa0e2010-08-22 21:27:30 +0300825 ubifs_err("bad node at LEB %d:%d, LEB mapping status %d", lnum, offs,
826 ubi_is_mapped(c->ubi, lnum));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300827 dbg_dump_node(c, buf);
828 dbg_dump_stack();
829 return -EINVAL;
830}
831
832/**
833 * ubifs_wbuf_init - initialize write-buffer.
834 * @c: UBIFS file-system description object
835 * @wbuf: write-buffer to initialize
836 *
Artem Bityutskiycb54ef82009-06-23 20:30:32 +0300837 * This function initializes write-buffer. Returns zero in case of success
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300838 * %-ENOMEM in case of failure.
839 */
840int ubifs_wbuf_init(struct ubifs_info *c, struct ubifs_wbuf *wbuf)
841{
842 size_t size;
843
844 wbuf->buf = kmalloc(c->min_io_size, GFP_KERNEL);
845 if (!wbuf->buf)
846 return -ENOMEM;
847
848 size = (c->min_io_size / UBIFS_CH_SZ + 1) * sizeof(ino_t);
849 wbuf->inodes = kmalloc(size, GFP_KERNEL);
850 if (!wbuf->inodes) {
851 kfree(wbuf->buf);
852 wbuf->buf = NULL;
853 return -ENOMEM;
854 }
855
856 wbuf->used = 0;
857 wbuf->lnum = wbuf->offs = -1;
858 wbuf->avail = c->min_io_size;
859 wbuf->dtype = UBI_UNKNOWN;
860 wbuf->sync_callback = NULL;
861 mutex_init(&wbuf->io_mutex);
862 spin_lock_init(&wbuf->lock);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300863 wbuf->c = c;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300864 wbuf->next_ino = 0;
865
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300866 hrtimer_init(&wbuf->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
867 wbuf->timer.function = wbuf_timer_callback_nolock;
Artem Bityutskiy2a35a3a82009-06-23 20:26:33 +0300868 wbuf->softlimit = ktime_set(WBUF_TIMEOUT_SOFTLIMIT, 0);
869 wbuf->delta = WBUF_TIMEOUT_HARDLIMIT - WBUF_TIMEOUT_SOFTLIMIT;
870 wbuf->delta *= 1000000000ULL;
871 ubifs_assert(wbuf->delta <= ULONG_MAX);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300872 return 0;
873}
874
875/**
876 * ubifs_wbuf_add_ino_nolock - add an inode number into the wbuf inode array.
Artem Bityutskiycb54ef82009-06-23 20:30:32 +0300877 * @wbuf: the write-buffer where to add
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300878 * @inum: the inode number
879 *
880 * This function adds an inode number to the inode array of the write-buffer.
881 */
882void ubifs_wbuf_add_ino_nolock(struct ubifs_wbuf *wbuf, ino_t inum)
883{
884 if (!wbuf->buf)
885 /* NOR flash or something similar */
886 return;
887
888 spin_lock(&wbuf->lock);
889 if (wbuf->used)
890 wbuf->inodes[wbuf->next_ino++] = inum;
891 spin_unlock(&wbuf->lock);
892}
893
894/**
895 * wbuf_has_ino - returns if the wbuf contains data from the inode.
896 * @wbuf: the write-buffer
897 * @inum: the inode number
898 *
899 * This function returns with %1 if the write-buffer contains some data from the
900 * given inode otherwise it returns with %0.
901 */
902static int wbuf_has_ino(struct ubifs_wbuf *wbuf, ino_t inum)
903{
904 int i, ret = 0;
905
906 spin_lock(&wbuf->lock);
907 for (i = 0; i < wbuf->next_ino; i++)
908 if (inum == wbuf->inodes[i]) {
909 ret = 1;
910 break;
911 }
912 spin_unlock(&wbuf->lock);
913
914 return ret;
915}
916
917/**
918 * ubifs_sync_wbufs_by_inode - synchronize write-buffers for an inode.
919 * @c: UBIFS file-system description object
920 * @inode: inode to synchronize
921 *
922 * This function synchronizes write-buffers which contain nodes belonging to
923 * @inode. Returns zero in case of success and a negative error code in case of
924 * failure.
925 */
926int ubifs_sync_wbufs_by_inode(struct ubifs_info *c, struct inode *inode)
927{
928 int i, err = 0;
929
930 for (i = 0; i < c->jhead_cnt; i++) {
931 struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf;
932
933 if (i == GCHD)
934 /*
935 * GC head is special, do not look at it. Even if the
936 * head contains something related to this inode, it is
937 * a _copy_ of corresponding on-flash node which sits
938 * somewhere else.
939 */
940 continue;
941
942 if (!wbuf_has_ino(wbuf, inode->i_ino))
943 continue;
944
945 mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
946 if (wbuf_has_ino(wbuf, inode->i_ino))
947 err = ubifs_wbuf_sync_nolock(wbuf);
948 mutex_unlock(&wbuf->io_mutex);
949
950 if (err) {
951 ubifs_ro_mode(c, err);
952 return err;
953 }
954 }
955 return 0;
956}