blob: 789a7813f3fa29d9e48ee35029261538879e5797 [file] [log] [blame]
Thomas Gleixner2b27bdc2019-05-29 16:57:50 -07001// SPDX-License-Identifier: GPL-2.0-only
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002/*
3 * This file is part of UBIFS.
4 *
5 * Copyright (C) 2006-2008 Nokia Corporation.
6 * Copyright (C) 2006, 2007 University of Szeged, Hungary
7 *
Artem Bityutskiy1e517642008-07-14 19:08:37 +03008 * Authors: Artem Bityutskiy (Битюцкий Артём)
9 * Adrian Hunter
10 * Zoltan Sogor
11 */
12
13/*
14 * This file implements UBIFS I/O subsystem which provides various I/O-related
15 * helper functions (reading/writing/checking/validating nodes) and implements
16 * write-buffering support. Write buffers help to save space which otherwise
17 * would have been wasted for padding to the nearest minimal I/O unit boundary.
18 * Instead, data first goes to the write-buffer and is flushed when the
19 * buffer is full or when it is not used for some time (by timer). This is
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +020020 * similar to the mechanism is used by JFFS2.
Artem Bityutskiy1e517642008-07-14 19:08:37 +030021 *
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +020022 * UBIFS distinguishes between minimum write size (@c->min_io_size) and maximum
23 * write size (@c->max_write_size). The latter is the maximum amount of bytes
24 * the underlying flash is able to program at a time, and writing in
25 * @c->max_write_size units should presumably be faster. Obviously,
26 * @c->min_io_size <= @c->max_write_size. Write-buffers are of
27 * @c->max_write_size bytes in size for maximum performance. However, when a
28 * write-buffer is flushed, only the portion of it (aligned to @c->min_io_size
29 * boundary) which contains data is written, not the whole write-buffer,
30 * because this is more space-efficient.
31 *
32 * This optimization adds few complications to the code. Indeed, on the one
33 * hand, we want to write in optimal @c->max_write_size bytes chunks, which
34 * also means aligning writes at the @c->max_write_size bytes offsets. On the
35 * other hand, we do not want to waste space when synchronizing the write
36 * buffer, so during synchronization we writes in smaller chunks. And this makes
37 * the next write offset to be not aligned to @c->max_write_size bytes. So the
38 * have to make sure that the write-buffer offset (@wbuf->offs) becomes aligned
39 * to @c->max_write_size bytes again. We do this by temporarily shrinking
40 * write-buffer size (@wbuf->size).
41 *
Artem Bityutskiy1e517642008-07-14 19:08:37 +030042 * Write-buffers are defined by 'struct ubifs_wbuf' objects and protected by
43 * mutexes defined inside these objects. Since sometimes upper-level code
44 * has to lock the write-buffer (e.g. journal space reservation code), many
45 * functions related to write-buffers have "nolock" suffix which means that the
46 * caller has to lock the write-buffer before calling this function.
47 *
48 * UBIFS stores nodes at 64 bit-aligned addresses. If the node length is not
49 * aligned, UBIFS starts the next node from the aligned address, and the padded
50 * bytes may contain any rubbish. In other words, UBIFS does not put padding
51 * bytes in those small gaps. Common headers of nodes store real node lengths,
52 * not aligned lengths. Indexing nodes also store real lengths in branches.
53 *
54 * UBIFS uses padding when it pads to the next min. I/O unit. In this case it
55 * uses padding nodes or padding bytes, if the padding node does not fit.
56 *
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +020057 * All UBIFS nodes are protected by CRC checksums and UBIFS checks CRC when
58 * they are read from the flash media.
Artem Bityutskiy1e517642008-07-14 19:08:37 +030059 */
60
61#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090062#include <linux/slab.h>
Artem Bityutskiy1e517642008-07-14 19:08:37 +030063#include "ubifs.h"
64
65/**
Adrian Hunterff46d7b2008-07-21 15:39:05 +030066 * ubifs_ro_mode - switch UBIFS to read read-only mode.
67 * @c: UBIFS file-system description object
68 * @err: error code which is the reason of switching to R/O mode
69 */
70void ubifs_ro_mode(struct ubifs_info *c, int err)
71{
Artem Bityutskiy2680d722010-09-17 16:44:28 +030072 if (!c->ro_error) {
73 c->ro_error = 1;
Artem Bityutskiyccb3eba2008-09-08 16:07:01 +030074 c->no_chk_data_crc = 0;
Linus Torvalds1751e8a2017-11-27 13:05:09 -080075 c->vfs_sb->s_flags |= SB_RDONLY;
Sheng Yong235c3622015-03-20 10:39:42 +000076 ubifs_warn(c, "switched to read-only mode, error %d", err);
Artem Bityutskiyd033c982011-06-03 13:16:08 +030077 dump_stack();
Adrian Hunterff46d7b2008-07-21 15:39:05 +030078 }
79}
80
Artem Bityutskiy83cef702011-06-03 13:45:09 +030081/*
82 * Below are simple wrappers over UBI I/O functions which include some
83 * additional checks and UBIFS debugging stuff. See corresponding UBI function
84 * for more information.
85 */
86
87int ubifs_leb_read(const struct ubifs_info *c, int lnum, void *buf, int offs,
88 int len, int even_ebadmsg)
89{
90 int err;
91
92 err = ubi_read(c->ubi, lnum, buf, offs, len);
93 /*
94 * In case of %-EBADMSG print the error message only if the
95 * @even_ebadmsg is true.
96 */
97 if (err && (err != -EBADMSG || even_ebadmsg)) {
Sheng Yong235c3622015-03-20 10:39:42 +000098 ubifs_err(c, "reading %d bytes from LEB %d:%d failed, error %d",
Artem Bityutskiy83cef702011-06-03 13:45:09 +030099 len, lnum, offs, err);
Artem Bityutskiy7c46d0a2012-05-16 19:04:54 +0300100 dump_stack();
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300101 }
102 return err;
103}
104
105int ubifs_leb_write(struct ubifs_info *c, int lnum, const void *buf, int offs,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200106 int len)
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300107{
108 int err;
109
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200110 ubifs_assert(c, !c->ro_media && !c->ro_mount);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300111 if (c->ro_error)
112 return -EROFS;
113 if (!dbg_is_tst_rcvry(c))
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200114 err = ubi_leb_write(c->ubi, lnum, buf, offs, len);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300115 else
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200116 err = dbg_leb_write(c, lnum, buf, offs, len);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300117 if (err) {
Sheng Yong235c3622015-03-20 10:39:42 +0000118 ubifs_err(c, "writing %d bytes to LEB %d:%d failed, error %d",
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300119 len, lnum, offs, err);
120 ubifs_ro_mode(c, err);
Artem Bityutskiy7c46d0a2012-05-16 19:04:54 +0300121 dump_stack();
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300122 }
123 return err;
124}
125
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200126int ubifs_leb_change(struct ubifs_info *c, int lnum, const void *buf, int len)
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300127{
128 int err;
129
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200130 ubifs_assert(c, !c->ro_media && !c->ro_mount);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300131 if (c->ro_error)
132 return -EROFS;
133 if (!dbg_is_tst_rcvry(c))
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200134 err = ubi_leb_change(c->ubi, lnum, buf, len);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300135 else
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200136 err = dbg_leb_change(c, lnum, buf, len);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300137 if (err) {
Sheng Yong235c3622015-03-20 10:39:42 +0000138 ubifs_err(c, "changing %d bytes in LEB %d failed, error %d",
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300139 len, lnum, err);
140 ubifs_ro_mode(c, err);
Artem Bityutskiy7c46d0a2012-05-16 19:04:54 +0300141 dump_stack();
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300142 }
143 return err;
144}
145
146int ubifs_leb_unmap(struct ubifs_info *c, int lnum)
147{
148 int err;
149
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200150 ubifs_assert(c, !c->ro_media && !c->ro_mount);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300151 if (c->ro_error)
152 return -EROFS;
153 if (!dbg_is_tst_rcvry(c))
154 err = ubi_leb_unmap(c->ubi, lnum);
155 else
Artem Bityutskiyf57cb182011-06-03 14:51:41 +0300156 err = dbg_leb_unmap(c, lnum);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300157 if (err) {
Sheng Yong235c3622015-03-20 10:39:42 +0000158 ubifs_err(c, "unmap LEB %d failed, error %d", lnum, err);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300159 ubifs_ro_mode(c, err);
Artem Bityutskiy7c46d0a2012-05-16 19:04:54 +0300160 dump_stack();
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300161 }
162 return err;
163}
164
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200165int ubifs_leb_map(struct ubifs_info *c, int lnum)
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300166{
167 int err;
168
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200169 ubifs_assert(c, !c->ro_media && !c->ro_mount);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300170 if (c->ro_error)
171 return -EROFS;
172 if (!dbg_is_tst_rcvry(c))
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200173 err = ubi_leb_map(c->ubi, lnum);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300174 else
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200175 err = dbg_leb_map(c, lnum);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300176 if (err) {
Sheng Yong235c3622015-03-20 10:39:42 +0000177 ubifs_err(c, "mapping LEB %d failed, error %d", lnum, err);
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300178 ubifs_ro_mode(c, err);
Artem Bityutskiy7c46d0a2012-05-16 19:04:54 +0300179 dump_stack();
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300180 }
181 return err;
182}
183
184int ubifs_is_mapped(const struct ubifs_info *c, int lnum)
185{
186 int err;
187
188 err = ubi_is_mapped(c->ubi, lnum);
189 if (err < 0) {
Sheng Yong235c3622015-03-20 10:39:42 +0000190 ubifs_err(c, "ubi_is_mapped failed for LEB %d, error %d",
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300191 lnum, err);
Artem Bityutskiy7c46d0a2012-05-16 19:04:54 +0300192 dump_stack();
Artem Bityutskiy83cef702011-06-03 13:45:09 +0300193 }
194 return err;
195}
196
Stefan Schaeckeler2e3cbf42021-10-09 21:22:39 -0700197static void record_magic_error(struct ubifs_stats_info *stats)
198{
199 if (stats)
200 stats->magic_errors++;
201}
202
203static void record_node_error(struct ubifs_stats_info *stats)
204{
205 if (stats)
206 stats->node_errors++;
207}
208
209static void record_crc_error(struct ubifs_stats_info *stats)
210{
211 if (stats)
212 stats->crc_errors++;
213}
214
Adrian Hunterff46d7b2008-07-21 15:39:05 +0300215/**
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300216 * ubifs_check_node - check node.
217 * @c: UBIFS file-system description object
218 * @buf: node to check
Zhihao Chenga33e30a2020-06-16 15:11:44 +0800219 * @len: node length
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300220 * @lnum: logical eraseblock number
221 * @offs: offset within the logical eraseblock
222 * @quiet: print no messages
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +0200223 * @must_chk_crc: indicates whether to always check the CRC
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300224 *
225 * This function checks node magic number and CRC checksum. This function also
226 * validates node length to prevent UBIFS from becoming crazy when an attacker
227 * feeds it a file-system image with incorrect nodes. For example, too large
228 * node length in the common header could cause UBIFS to read memory outside of
229 * allocated buffer when checking the CRC checksum.
230 *
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +0200231 * This function may skip data nodes CRC checking if @c->no_chk_data_crc is
232 * true, which is controlled by corresponding UBIFS mount option. However, if
233 * @must_chk_crc is true, then @c->no_chk_data_crc is ignored and CRC is
Artem Bityutskiy18d1d7f2011-01-17 22:27:56 +0200234 * checked. Similarly, if @c->mounting or @c->remounting_rw is true (we are
235 * mounting or re-mounting to R/W mode), @c->no_chk_data_crc is ignored and CRC
236 * is checked. This is because during mounting or re-mounting from R/O mode to
237 * R/W mode we may read journal nodes (when replying the journal or doing the
238 * recovery) and the journal nodes may potentially be corrupted, so checking is
239 * required.
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +0200240 *
241 * This function returns zero in case of success and %-EUCLEAN in case of bad
242 * CRC or magic.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300243 */
Zhihao Chenga33e30a2020-06-16 15:11:44 +0800244int ubifs_check_node(const struct ubifs_info *c, const void *buf, int len,
245 int lnum, int offs, int quiet, int must_chk_crc)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300246{
Zhihao Chengc8be0972020-06-16 15:11:43 +0800247 int err = -EINVAL, type, node_len;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300248 uint32_t crc, node_crc, magic;
249 const struct ubifs_ch *ch = buf;
250
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200251 ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt && offs >= 0);
252 ubifs_assert(c, !(offs & 7) && offs < c->leb_size);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300253
254 magic = le32_to_cpu(ch->magic);
255 if (magic != UBIFS_NODE_MAGIC) {
256 if (!quiet)
Sheng Yong235c3622015-03-20 10:39:42 +0000257 ubifs_err(c, "bad magic %#08x, expected %#08x",
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300258 magic, UBIFS_NODE_MAGIC);
Stefan Schaeckeler2e3cbf42021-10-09 21:22:39 -0700259 record_magic_error(c->stats);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300260 err = -EUCLEAN;
261 goto out;
262 }
263
264 type = ch->node_type;
265 if (type < 0 || type >= UBIFS_NODE_TYPES_CNT) {
266 if (!quiet)
Sheng Yong235c3622015-03-20 10:39:42 +0000267 ubifs_err(c, "bad node type %d", type);
Stefan Schaeckeler2e3cbf42021-10-09 21:22:39 -0700268 record_node_error(c->stats);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300269 goto out;
270 }
271
272 node_len = le32_to_cpu(ch->len);
273 if (node_len + offs > c->leb_size)
274 goto out_len;
275
276 if (c->ranges[type].max_len == 0) {
277 if (node_len != c->ranges[type].len)
278 goto out_len;
279 } else if (node_len < c->ranges[type].min_len ||
280 node_len > c->ranges[type].max_len)
281 goto out_len;
282
Artem Bityutskiy18d1d7f2011-01-17 22:27:56 +0200283 if (!must_chk_crc && type == UBIFS_DATA_NODE && !c->mounting &&
284 !c->remounting_rw && c->no_chk_data_crc)
Artem Bityutskiy6f7ab6d2009-01-27 16:12:31 +0200285 return 0;
Adrian Hunter2953e732008-09-04 16:26:00 +0300286
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300287 crc = crc32(UBIFS_CRC32_INIT, buf + 8, node_len - 8);
288 node_crc = le32_to_cpu(ch->crc);
289 if (crc != node_crc) {
290 if (!quiet)
Sheng Yong235c3622015-03-20 10:39:42 +0000291 ubifs_err(c, "bad CRC: calculated %#08x, read %#08x",
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300292 crc, node_crc);
Stefan Schaeckeler2e3cbf42021-10-09 21:22:39 -0700293 record_crc_error(c->stats);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300294 err = -EUCLEAN;
295 goto out;
296 }
297
298 return 0;
299
300out_len:
301 if (!quiet)
Sheng Yong235c3622015-03-20 10:39:42 +0000302 ubifs_err(c, "bad node length %d", node_len);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300303out:
304 if (!quiet) {
Sheng Yong235c3622015-03-20 10:39:42 +0000305 ubifs_err(c, "bad node at LEB %d:%d", lnum, offs);
Zhihao Chenga33e30a2020-06-16 15:11:44 +0800306 ubifs_dump_node(c, buf, len);
Artem Bityutskiy7c46d0a2012-05-16 19:04:54 +0300307 dump_stack();
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300308 }
309 return err;
310}
311
312/**
313 * ubifs_pad - pad flash space.
314 * @c: UBIFS file-system description object
315 * @buf: buffer to put padding to
316 * @pad: how many bytes to pad
317 *
318 * The flash media obliges us to write only in chunks of %c->min_io_size and
319 * when we have to write less data we add padding node to the write-buffer and
320 * pad it to the next minimal I/O unit's boundary. Padding nodes help when the
321 * media is being scanned. If the amount of wasted space is not enough to fit a
322 * padding node which takes %UBIFS_PAD_NODE_SZ bytes, we write padding bytes
323 * pattern (%UBIFS_PADDING_BYTE).
324 *
325 * Padding nodes are also used to fill gaps when the "commit-in-gaps" method is
326 * used.
327 */
328void ubifs_pad(const struct ubifs_info *c, void *buf, int pad)
329{
330 uint32_t crc;
331
Richard Weinberger20f14312020-11-16 22:05:30 +0100332 ubifs_assert(c, pad >= 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300333
334 if (pad >= UBIFS_PAD_NODE_SZ) {
335 struct ubifs_ch *ch = buf;
336 struct ubifs_pad_node *pad_node = buf;
337
338 ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC);
339 ch->node_type = UBIFS_PAD_NODE;
340 ch->group_type = UBIFS_NO_NODE_GROUP;
341 ch->padding[0] = ch->padding[1] = 0;
342 ch->sqnum = 0;
343 ch->len = cpu_to_le32(UBIFS_PAD_NODE_SZ);
344 pad -= UBIFS_PAD_NODE_SZ;
345 pad_node->pad_len = cpu_to_le32(pad);
346 crc = crc32(UBIFS_CRC32_INIT, buf + 8, UBIFS_PAD_NODE_SZ - 8);
347 ch->crc = cpu_to_le32(crc);
348 memset(buf + UBIFS_PAD_NODE_SZ, 0, pad);
349 } else if (pad > 0)
350 /* Too little space, padding node won't fit */
351 memset(buf, UBIFS_PADDING_BYTE, pad);
352}
353
354/**
355 * next_sqnum - get next sequence number.
356 * @c: UBIFS file-system description object
357 */
358static unsigned long long next_sqnum(struct ubifs_info *c)
359{
360 unsigned long long sqnum;
361
362 spin_lock(&c->cnt_lock);
363 sqnum = ++c->max_sqnum;
364 spin_unlock(&c->cnt_lock);
365
366 if (unlikely(sqnum >= SQNUM_WARN_WATERMARK)) {
367 if (sqnum >= SQNUM_WATERMARK) {
Sheng Yong235c3622015-03-20 10:39:42 +0000368 ubifs_err(c, "sequence number overflow %llu, end of life",
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300369 sqnum);
370 ubifs_ro_mode(c, -EINVAL);
371 }
Sheng Yong235c3622015-03-20 10:39:42 +0000372 ubifs_warn(c, "running out of sequence numbers, end of life soon");
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300373 }
374
375 return sqnum;
376}
377
Sascha Hauerdead9722018-09-07 14:36:31 +0200378void ubifs_init_node(struct ubifs_info *c, void *node, int len, int pad)
379{
380 struct ubifs_ch *ch = node;
381 unsigned long long sqnum = next_sqnum(c);
382
383 ubifs_assert(c, len >= UBIFS_CH_SZ);
384
385 ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC);
386 ch->len = cpu_to_le32(len);
387 ch->group_type = UBIFS_NO_NODE_GROUP;
388 ch->sqnum = cpu_to_le64(sqnum);
389 ch->padding[0] = ch->padding[1] = 0;
390
391 if (pad) {
392 len = ALIGN(len, 8);
393 pad = ALIGN(len, c->min_io_size) - len;
394 ubifs_pad(c, node + len, pad);
395 }
396}
397
398void ubifs_crc_node(struct ubifs_info *c, void *node, int len)
399{
400 struct ubifs_ch *ch = node;
401 uint32_t crc;
402
403 crc = crc32(UBIFS_CRC32_INIT, node + 8, len - 8);
404 ch->crc = cpu_to_le32(crc);
405}
406
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300407/**
Sascha Hauera384b472018-09-07 14:36:33 +0200408 * ubifs_prepare_node_hmac - prepare node to be written to flash.
409 * @c: UBIFS file-system description object
410 * @node: the node to pad
411 * @len: node length
412 * @hmac_offs: offset of the HMAC in the node
413 * @pad: if the buffer has to be padded
414 *
415 * This function prepares node at @node to be written to the media - it
416 * calculates node CRC, fills the common header, and adds proper padding up to
417 * the next minimum I/O unit if @pad is not zero. if @hmac_offs is positive then
418 * a HMAC is inserted into the node at the given offset.
419 *
420 * This function returns 0 for success or a negative error code otherwise.
421 */
422int ubifs_prepare_node_hmac(struct ubifs_info *c, void *node, int len,
423 int hmac_offs, int pad)
424{
425 int err;
426
427 ubifs_init_node(c, node, len, pad);
428
429 if (hmac_offs > 0) {
430 err = ubifs_node_insert_hmac(c, node, len, hmac_offs);
431 if (err)
432 return err;
433 }
434
435 ubifs_crc_node(c, node, len);
436
437 return 0;
438}
439
440/**
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300441 * ubifs_prepare_node - prepare node to be written to flash.
442 * @c: UBIFS file-system description object
443 * @node: the node to pad
444 * @len: node length
445 * @pad: if the buffer has to be padded
446 *
447 * This function prepares node at @node to be written to the media - it
448 * calculates node CRC, fills the common header, and adds proper padding up to
449 * the next minimum I/O unit if @pad is not zero.
450 */
451void ubifs_prepare_node(struct ubifs_info *c, void *node, int len, int pad)
452{
Sascha Hauera384b472018-09-07 14:36:33 +0200453 /*
454 * Deliberately ignore return value since this function can only fail
455 * when a hmac offset is given.
456 */
457 ubifs_prepare_node_hmac(c, node, len, 0, pad);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300458}
459
460/**
461 * ubifs_prep_grp_node - prepare node of a group to be written to flash.
462 * @c: UBIFS file-system description object
463 * @node: the node to pad
464 * @len: node length
465 * @last: indicates the last node of the group
466 *
467 * This function prepares node at @node to be written to the media - it
468 * calculates node CRC and fills the common header.
469 */
470void ubifs_prep_grp_node(struct ubifs_info *c, void *node, int len, int last)
471{
472 uint32_t crc;
473 struct ubifs_ch *ch = node;
474 unsigned long long sqnum = next_sqnum(c);
475
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200476 ubifs_assert(c, len >= UBIFS_CH_SZ);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300477
478 ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC);
479 ch->len = cpu_to_le32(len);
480 if (last)
481 ch->group_type = UBIFS_LAST_OF_NODE_GROUP;
482 else
483 ch->group_type = UBIFS_IN_NODE_GROUP;
484 ch->sqnum = cpu_to_le64(sqnum);
485 ch->padding[0] = ch->padding[1] = 0;
486 crc = crc32(UBIFS_CRC32_INIT, node + 8, len - 8);
487 ch->crc = cpu_to_le32(crc);
488}
489
490/**
491 * wbuf_timer_callback - write-buffer timer callback function.
Fabian Frederick39274a12014-07-15 21:33:51 +0200492 * @timer: timer data (write-buffer descriptor)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300493 *
494 * This function is called when the write-buffer timer expires.
495 */
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300496static enum hrtimer_restart wbuf_timer_callback_nolock(struct hrtimer *timer)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300497{
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300498 struct ubifs_wbuf *wbuf = container_of(timer, struct ubifs_wbuf, timer);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300499
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300500 dbg_io("jhead %s", dbg_jhead(wbuf->jhead));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300501 wbuf->need_sync = 1;
502 wbuf->c->need_wbuf_sync = 1;
503 ubifs_wake_up_bgt(wbuf->c);
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300504 return HRTIMER_NORESTART;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300505}
506
507/**
508 * new_wbuf_timer - start new write-buffer timer.
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200509 * @c: UBIFS file-system description object
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300510 * @wbuf: write-buffer descriptor
511 */
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200512static void new_wbuf_timer_nolock(struct ubifs_info *c, struct ubifs_wbuf *wbuf)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300513{
Rafał Miłecki1b7fc2c2016-09-20 10:36:15 +0200514 ktime_t softlimit = ms_to_ktime(dirty_writeback_interval * 10);
515 unsigned long long delta = dirty_writeback_interval;
Rafał Miłecki854826c2016-09-20 10:36:14 +0200516
Rafał Miłecki1b7fc2c2016-09-20 10:36:15 +0200517 /* centi to milli, milli to nano, then 10% */
518 delta *= 10ULL * NSEC_PER_MSEC / 10ULL;
Rafał Miłecki854826c2016-09-20 10:36:14 +0200519
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200520 ubifs_assert(c, !hrtimer_active(&wbuf->timer));
521 ubifs_assert(c, delta <= ULONG_MAX);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300522
Artem Bityutskiy0b335b92009-06-23 12:30:43 +0300523 if (wbuf->no_timer)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300524 return;
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300525 dbg_io("set timer for jhead %s, %llu-%llu millisecs",
526 dbg_jhead(wbuf->jhead),
Rafał Miłecki854826c2016-09-20 10:36:14 +0200527 div_u64(ktime_to_ns(softlimit), USEC_PER_SEC),
528 div_u64(ktime_to_ns(softlimit) + delta, USEC_PER_SEC));
529 hrtimer_start_range_ns(&wbuf->timer, softlimit, delta,
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300530 HRTIMER_MODE_REL);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300531}
532
533/**
534 * cancel_wbuf_timer - cancel write-buffer timer.
535 * @wbuf: write-buffer descriptor
536 */
537static void cancel_wbuf_timer_nolock(struct ubifs_wbuf *wbuf)
538{
Artem Bityutskiy0b335b92009-06-23 12:30:43 +0300539 if (wbuf->no_timer)
540 return;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300541 wbuf->need_sync = 0;
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +0300542 hrtimer_cancel(&wbuf->timer);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300543}
544
545/**
546 * ubifs_wbuf_sync_nolock - synchronize write-buffer.
547 * @wbuf: write-buffer to synchronize
548 *
549 * This function synchronizes write-buffer @buf and returns zero in case of
550 * success or a negative error code in case of failure.
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200551 *
552 * Note, although write-buffers are of @c->max_write_size, this function does
553 * not necessarily writes all @c->max_write_size bytes to the flash. Instead,
554 * if the write-buffer is only partially filled with data, only the used part
555 * of the write-buffer (aligned on @c->min_io_size boundary) is synchronized.
556 * This way we waste less space.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300557 */
558int ubifs_wbuf_sync_nolock(struct ubifs_wbuf *wbuf)
559{
560 struct ubifs_info *c = wbuf->c;
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200561 int err, dirt, sync_len;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300562
563 cancel_wbuf_timer_nolock(wbuf);
564 if (!wbuf->used || wbuf->lnum == -1)
565 /* Write-buffer is empty or not seeked */
566 return 0;
567
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300568 dbg_io("LEB %d:%d, %d bytes, jhead %s",
569 wbuf->lnum, wbuf->offs, wbuf->used, dbg_jhead(wbuf->jhead));
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200570 ubifs_assert(c, !(wbuf->avail & 7));
571 ubifs_assert(c, wbuf->offs + wbuf->size <= c->leb_size);
572 ubifs_assert(c, wbuf->size >= c->min_io_size);
573 ubifs_assert(c, wbuf->size <= c->max_write_size);
574 ubifs_assert(c, wbuf->size % c->min_io_size == 0);
575 ubifs_assert(c, !c->ro_media && !c->ro_mount);
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200576 if (c->leb_size - wbuf->offs >= c->max_write_size)
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200577 ubifs_assert(c, !((wbuf->offs + wbuf->size) % c->max_write_size));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300578
Artem Bityutskiy2680d722010-09-17 16:44:28 +0300579 if (c->ro_error)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300580 return -EROFS;
581
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200582 /*
583 * Do not write whole write buffer but write only the minimum necessary
584 * amount of min. I/O units.
585 */
586 sync_len = ALIGN(wbuf->used, c->min_io_size);
587 dirt = sync_len - wbuf->used;
588 if (dirt)
589 ubifs_pad(c, wbuf->buf + wbuf->used, dirt);
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200590 err = ubifs_leb_write(c, wbuf->lnum, wbuf->buf, wbuf->offs, sync_len);
Artem Bityutskiy987226a2011-06-03 14:12:10 +0300591 if (err)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300592 return err;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300593
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300594 spin_lock(&wbuf->lock);
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200595 wbuf->offs += sync_len;
596 /*
597 * Now @wbuf->offs is not necessarily aligned to @c->max_write_size.
598 * But our goal is to optimize writes and make sure we write in
599 * @c->max_write_size chunks and to @c->max_write_size-aligned offset.
600 * Thus, if @wbuf->offs is not aligned to @c->max_write_size now, make
601 * sure that @wbuf->offs + @wbuf->size is aligned to
602 * @c->max_write_size. This way we make sure that after next
603 * write-buffer flush we are again at the optimal offset (aligned to
604 * @c->max_write_size).
605 */
606 if (c->leb_size - wbuf->offs < c->max_write_size)
607 wbuf->size = c->leb_size - wbuf->offs;
608 else if (wbuf->offs & (c->max_write_size - 1))
609 wbuf->size = ALIGN(wbuf->offs, c->max_write_size) - wbuf->offs;
610 else
611 wbuf->size = c->max_write_size;
612 wbuf->avail = wbuf->size;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300613 wbuf->used = 0;
614 wbuf->next_ino = 0;
615 spin_unlock(&wbuf->lock);
616
617 if (wbuf->sync_callback)
618 err = wbuf->sync_callback(c, wbuf->lnum,
619 c->leb_size - wbuf->offs, dirt);
620 return err;
621}
622
623/**
624 * ubifs_wbuf_seek_nolock - seek write-buffer.
625 * @wbuf: write-buffer
626 * @lnum: logical eraseblock number to seek to
627 * @offs: logical eraseblock offset to seek to
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300628 *
Artem Bityutskiycb54ef82009-06-23 20:30:32 +0300629 * This function targets the write-buffer to logical eraseblock @lnum:@offs.
Artem Bityutskiycb14a182011-05-15 14:51:54 +0300630 * The write-buffer has to be empty. Returns zero in case of success and a
631 * negative error code in case of failure.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300632 */
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200633int ubifs_wbuf_seek_nolock(struct ubifs_wbuf *wbuf, int lnum, int offs)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300634{
635 const struct ubifs_info *c = wbuf->c;
636
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300637 dbg_io("LEB %d:%d, jhead %s", lnum, offs, dbg_jhead(wbuf->jhead));
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200638 ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt);
639 ubifs_assert(c, offs >= 0 && offs <= c->leb_size);
640 ubifs_assert(c, offs % c->min_io_size == 0 && !(offs & 7));
641 ubifs_assert(c, lnum != wbuf->lnum);
642 ubifs_assert(c, wbuf->used == 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300643
644 spin_lock(&wbuf->lock);
645 wbuf->lnum = lnum;
646 wbuf->offs = offs;
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200647 if (c->leb_size - wbuf->offs < c->max_write_size)
648 wbuf->size = c->leb_size - wbuf->offs;
649 else if (wbuf->offs & (c->max_write_size - 1))
650 wbuf->size = ALIGN(wbuf->offs, c->max_write_size) - wbuf->offs;
651 else
652 wbuf->size = c->max_write_size;
653 wbuf->avail = wbuf->size;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300654 wbuf->used = 0;
655 spin_unlock(&wbuf->lock);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300656
657 return 0;
658}
659
660/**
661 * ubifs_bg_wbufs_sync - synchronize write-buffers.
662 * @c: UBIFS file-system description object
663 *
664 * This function is called by background thread to synchronize write-buffers.
665 * Returns zero in case of success and a negative error code in case of
666 * failure.
667 */
668int ubifs_bg_wbufs_sync(struct ubifs_info *c)
669{
670 int err, i;
671
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200672 ubifs_assert(c, !c->ro_media && !c->ro_mount);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300673 if (!c->need_wbuf_sync)
674 return 0;
675 c->need_wbuf_sync = 0;
676
Artem Bityutskiy2680d722010-09-17 16:44:28 +0300677 if (c->ro_error) {
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300678 err = -EROFS;
679 goto out_timers;
680 }
681
682 dbg_io("synchronize");
683 for (i = 0; i < c->jhead_cnt; i++) {
684 struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf;
685
686 cond_resched();
687
688 /*
689 * If the mutex is locked then wbuf is being changed, so
690 * synchronization is not necessary.
691 */
692 if (mutex_is_locked(&wbuf->io_mutex))
693 continue;
694
695 mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
696 if (!wbuf->need_sync) {
697 mutex_unlock(&wbuf->io_mutex);
698 continue;
699 }
700
701 err = ubifs_wbuf_sync_nolock(wbuf);
702 mutex_unlock(&wbuf->io_mutex);
703 if (err) {
Sheng Yong235c3622015-03-20 10:39:42 +0000704 ubifs_err(c, "cannot sync write-buffer, error %d", err);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300705 ubifs_ro_mode(c, err);
706 goto out_timers;
707 }
708 }
709
710 return 0;
711
712out_timers:
713 /* Cancel all timers to prevent repeated errors */
714 for (i = 0; i < c->jhead_cnt; i++) {
715 struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf;
716
717 mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
718 cancel_wbuf_timer_nolock(wbuf);
719 mutex_unlock(&wbuf->io_mutex);
720 }
721 return err;
722}
723
724/**
725 * ubifs_wbuf_write_nolock - write data to flash via write-buffer.
726 * @wbuf: write-buffer
727 * @buf: node to write
728 * @len: node length
729 *
730 * This function writes data to flash via write-buffer @wbuf. This means that
731 * the last piece of the node won't reach the flash media immediately if it
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200732 * does not take whole max. write unit (@c->max_write_size). Instead, the node
733 * will sit in RAM until the write-buffer is synchronized (e.g., by timer, or
734 * because more data are appended to the write-buffer).
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300735 *
736 * This function returns zero in case of success and a negative error code in
737 * case of failure. If the node cannot be written because there is no more
738 * space in this logical eraseblock, %-ENOSPC is returned.
739 */
740int ubifs_wbuf_write_nolock(struct ubifs_wbuf *wbuf, void *buf, int len)
741{
742 struct ubifs_info *c = wbuf->c;
Zhihao Chenga33e30a2020-06-16 15:11:44 +0800743 int err, n, written = 0, aligned_len = ALIGN(len, 8);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300744
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300745 dbg_io("%d bytes (%s) to jhead %s wbuf at LEB %d:%d", len,
746 dbg_ntype(((struct ubifs_ch *)buf)->node_type),
747 dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs + wbuf->used);
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200748 ubifs_assert(c, len > 0 && wbuf->lnum >= 0 && wbuf->lnum < c->leb_cnt);
749 ubifs_assert(c, wbuf->offs >= 0 && wbuf->offs % c->min_io_size == 0);
750 ubifs_assert(c, !(wbuf->offs & 7) && wbuf->offs <= c->leb_size);
751 ubifs_assert(c, wbuf->avail > 0 && wbuf->avail <= wbuf->size);
752 ubifs_assert(c, wbuf->size >= c->min_io_size);
753 ubifs_assert(c, wbuf->size <= c->max_write_size);
754 ubifs_assert(c, wbuf->size % c->min_io_size == 0);
755 ubifs_assert(c, mutex_is_locked(&wbuf->io_mutex));
756 ubifs_assert(c, !c->ro_media && !c->ro_mount);
757 ubifs_assert(c, !c->space_fixup);
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200758 if (c->leb_size - wbuf->offs >= c->max_write_size)
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200759 ubifs_assert(c, !((wbuf->offs + wbuf->size) % c->max_write_size));
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300760
761 if (c->leb_size - wbuf->offs - wbuf->used < aligned_len) {
762 err = -ENOSPC;
763 goto out;
764 }
765
766 cancel_wbuf_timer_nolock(wbuf);
767
Artem Bityutskiy2680d722010-09-17 16:44:28 +0300768 if (c->ro_error)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300769 return -EROFS;
770
771 if (aligned_len <= wbuf->avail) {
772 /*
773 * The node is not very large and fits entirely within
774 * write-buffer.
775 */
776 memcpy(wbuf->buf + wbuf->used, buf, len);
Richard Weinberger20f14312020-11-16 22:05:30 +0100777 if (aligned_len > len) {
778 ubifs_assert(c, aligned_len - len < 8);
779 ubifs_pad(c, wbuf->buf + wbuf->used + len, aligned_len - len);
780 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300781
782 if (aligned_len == wbuf->avail) {
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300783 dbg_io("flush jhead %s wbuf to LEB %d:%d",
784 dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs);
Artem Bityutskiy987226a2011-06-03 14:12:10 +0300785 err = ubifs_leb_write(c, wbuf->lnum, wbuf->buf,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200786 wbuf->offs, wbuf->size);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300787 if (err)
788 goto out;
789
790 spin_lock(&wbuf->lock);
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200791 wbuf->offs += wbuf->size;
792 if (c->leb_size - wbuf->offs >= c->max_write_size)
793 wbuf->size = c->max_write_size;
794 else
795 wbuf->size = c->leb_size - wbuf->offs;
796 wbuf->avail = wbuf->size;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300797 wbuf->used = 0;
798 wbuf->next_ino = 0;
799 spin_unlock(&wbuf->lock);
800 } else {
801 spin_lock(&wbuf->lock);
802 wbuf->avail -= aligned_len;
803 wbuf->used += aligned_len;
804 spin_unlock(&wbuf->lock);
805 }
806
807 goto exit;
808 }
809
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200810 if (wbuf->used) {
811 /*
812 * The node is large enough and does not fit entirely within
813 * current available space. We have to fill and flush
814 * write-buffer and switch to the next max. write unit.
815 */
816 dbg_io("flush jhead %s wbuf to LEB %d:%d",
817 dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs);
818 memcpy(wbuf->buf + wbuf->used, buf, wbuf->avail);
Artem Bityutskiy987226a2011-06-03 14:12:10 +0300819 err = ubifs_leb_write(c, wbuf->lnum, wbuf->buf, wbuf->offs,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200820 wbuf->size);
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200821 if (err)
822 goto out;
823
Artem Bityutskiy12f33892011-05-14 17:37:47 +0300824 wbuf->offs += wbuf->size;
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200825 len -= wbuf->avail;
826 aligned_len -= wbuf->avail;
827 written += wbuf->avail;
828 } else if (wbuf->offs & (c->max_write_size - 1)) {
829 /*
830 * The write-buffer offset is not aligned to
831 * @c->max_write_size and @wbuf->size is less than
832 * @c->max_write_size. Write @wbuf->size bytes to make sure the
833 * following writes are done in optimal @c->max_write_size
834 * chunks.
835 */
836 dbg_io("write %d bytes to LEB %d:%d",
837 wbuf->size, wbuf->lnum, wbuf->offs);
Artem Bityutskiy987226a2011-06-03 14:12:10 +0300838 err = ubifs_leb_write(c, wbuf->lnum, buf, wbuf->offs,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200839 wbuf->size);
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200840 if (err)
841 goto out;
842
Artem Bityutskiy12f33892011-05-14 17:37:47 +0300843 wbuf->offs += wbuf->size;
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200844 len -= wbuf->size;
845 aligned_len -= wbuf->size;
846 written += wbuf->size;
847 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300848
849 /*
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200850 * The remaining data may take more whole max. write units, so write the
851 * remains multiple to max. write unit size directly to the flash media.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300852 * We align node length to 8-byte boundary because we anyway flash wbuf
853 * if the remaining space is less than 8 bytes.
854 */
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200855 n = aligned_len >> c->max_write_shift;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300856 if (n) {
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200857 n <<= c->max_write_shift;
Artem Bityutskiy12f33892011-05-14 17:37:47 +0300858 dbg_io("write %d bytes to LEB %d:%d", n, wbuf->lnum,
859 wbuf->offs);
Artem Bityutskiy987226a2011-06-03 14:12:10 +0300860 err = ubifs_leb_write(c, wbuf->lnum, buf + written,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200861 wbuf->offs, n);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300862 if (err)
863 goto out;
Artem Bityutskiy12f33892011-05-14 17:37:47 +0300864 wbuf->offs += n;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300865 aligned_len -= n;
866 len -= n;
867 written += n;
868 }
869
870 spin_lock(&wbuf->lock);
Richard Weinberger20f14312020-11-16 22:05:30 +0100871 if (aligned_len) {
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300872 /*
873 * And now we have what's left and what does not take whole
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200874 * max. write unit, so write it to the write-buffer and we are
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300875 * done.
876 */
877 memcpy(wbuf->buf, buf + written, len);
Richard Weinberger20f14312020-11-16 22:05:30 +0100878 if (aligned_len > len) {
879 ubifs_assert(c, aligned_len - len < 8);
880 ubifs_pad(c, wbuf->buf + len, aligned_len - len);
881 }
882 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300883
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +0200884 if (c->leb_size - wbuf->offs >= c->max_write_size)
885 wbuf->size = c->max_write_size;
886 else
887 wbuf->size = c->leb_size - wbuf->offs;
888 wbuf->avail = wbuf->size - aligned_len;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300889 wbuf->used = aligned_len;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300890 wbuf->next_ino = 0;
891 spin_unlock(&wbuf->lock);
892
893exit:
894 if (wbuf->sync_callback) {
895 int free = c->leb_size - wbuf->offs - wbuf->used;
896
897 err = wbuf->sync_callback(c, wbuf->lnum, free, 0);
898 if (err)
899 goto out;
900 }
901
902 if (wbuf->used)
Richard Weinberger6eb61d52018-07-12 13:01:57 +0200903 new_wbuf_timer_nolock(c, wbuf);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300904
905 return 0;
906
907out:
Sheng Yong235c3622015-03-20 10:39:42 +0000908 ubifs_err(c, "cannot write %d bytes to LEB %d:%d, error %d",
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300909 len, wbuf->lnum, wbuf->offs, err);
Zhihao Chenga33e30a2020-06-16 15:11:44 +0800910 ubifs_dump_node(c, buf, written + len);
Artem Bityutskiy7c46d0a2012-05-16 19:04:54 +0300911 dump_stack();
Artem Bityutskiyedf6be22012-05-16 19:15:56 +0300912 ubifs_dump_leb(c, wbuf->lnum);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300913 return err;
914}
915
916/**
Sascha Hauera384b472018-09-07 14:36:33 +0200917 * ubifs_write_node_hmac - write node to the media.
918 * @c: UBIFS file-system description object
919 * @buf: the node to write
920 * @len: node length
921 * @lnum: logical eraseblock number
922 * @offs: offset within the logical eraseblock
923 * @hmac_offs: offset of the HMAC within the node
924 *
925 * This function automatically fills node magic number, assigns sequence
926 * number, and calculates node CRC checksum. The length of the @buf buffer has
927 * to be aligned to the minimal I/O unit size. This function automatically
928 * appends padding node and padding bytes if needed. Returns zero in case of
929 * success and a negative error code in case of failure.
930 */
931int ubifs_write_node_hmac(struct ubifs_info *c, void *buf, int len, int lnum,
932 int offs, int hmac_offs)
933{
934 int err, buf_len = ALIGN(len, c->min_io_size);
935
936 dbg_io("LEB %d:%d, %s, length %d (aligned %d)",
937 lnum, offs, dbg_ntype(((struct ubifs_ch *)buf)->node_type), len,
938 buf_len);
939 ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt && offs >= 0);
940 ubifs_assert(c, offs % c->min_io_size == 0 && offs < c->leb_size);
941 ubifs_assert(c, !c->ro_media && !c->ro_mount);
942 ubifs_assert(c, !c->space_fixup);
943
944 if (c->ro_error)
945 return -EROFS;
946
947 err = ubifs_prepare_node_hmac(c, buf, len, hmac_offs, 1);
948 if (err)
949 return err;
950
951 err = ubifs_leb_write(c, lnum, buf, offs, buf_len);
952 if (err)
Zhihao Chenga33e30a2020-06-16 15:11:44 +0800953 ubifs_dump_node(c, buf, len);
Sascha Hauera384b472018-09-07 14:36:33 +0200954
955 return err;
956}
957
958/**
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300959 * ubifs_write_node - write node to the media.
960 * @c: UBIFS file-system description object
961 * @buf: the node to write
962 * @len: node length
963 * @lnum: logical eraseblock number
964 * @offs: offset within the logical eraseblock
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300965 *
966 * This function automatically fills node magic number, assigns sequence
967 * number, and calculates node CRC checksum. The length of the @buf buffer has
968 * to be aligned to the minimal I/O unit size. This function automatically
969 * appends padding node and padding bytes if needed. Returns zero in case of
970 * success and a negative error code in case of failure.
971 */
972int ubifs_write_node(struct ubifs_info *c, void *buf, int len, int lnum,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200973 int offs)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300974{
Sascha Hauera384b472018-09-07 14:36:33 +0200975 return ubifs_write_node_hmac(c, buf, len, lnum, offs, -1);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300976}
977
978/**
979 * ubifs_read_node_wbuf - read node from the media or write-buffer.
980 * @wbuf: wbuf to check for un-written data
981 * @buf: buffer to read to
982 * @type: node type
983 * @len: node length
984 * @lnum: logical eraseblock number
985 * @offs: offset within the logical eraseblock
986 *
987 * This function reads a node of known type and length, checks it and stores
988 * in @buf. If the node partially or fully sits in the write-buffer, this
989 * function takes data from the buffer, otherwise it reads the flash media.
990 * Returns zero in case of success, %-EUCLEAN if CRC mismatched and a negative
991 * error code in case of failure.
992 */
993int ubifs_read_node_wbuf(struct ubifs_wbuf *wbuf, void *buf, int type, int len,
994 int lnum, int offs)
995{
996 const struct ubifs_info *c = wbuf->c;
997 int err, rlen, overlap;
998 struct ubifs_ch *ch = buf;
999
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +03001000 dbg_io("LEB %d:%d, %s, length %d, jhead %s", lnum, offs,
1001 dbg_ntype(type), len, dbg_jhead(wbuf->jhead));
Richard Weinberger6eb61d52018-07-12 13:01:57 +02001002 ubifs_assert(c, wbuf && lnum >= 0 && lnum < c->leb_cnt && offs >= 0);
1003 ubifs_assert(c, !(offs & 7) && offs < c->leb_size);
1004 ubifs_assert(c, type >= 0 && type < UBIFS_NODE_TYPES_CNT);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001005
1006 spin_lock(&wbuf->lock);
1007 overlap = (lnum == wbuf->lnum && offs + len > wbuf->offs);
1008 if (!overlap) {
1009 /* We may safely unlock the write-buffer and read the data */
1010 spin_unlock(&wbuf->lock);
1011 return ubifs_read_node(c, buf, type, len, lnum, offs);
1012 }
1013
1014 /* Don't read under wbuf */
1015 rlen = wbuf->offs - offs;
1016 if (rlen < 0)
1017 rlen = 0;
1018
1019 /* Copy the rest from the write-buffer */
1020 memcpy(buf + rlen, wbuf->buf + offs + rlen - wbuf->offs, len - rlen);
1021 spin_unlock(&wbuf->lock);
1022
1023 if (rlen > 0) {
1024 /* Read everything that goes before write-buffer */
Artem Bityutskiyd3048202011-06-03 14:03:25 +03001025 err = ubifs_leb_read(c, lnum, buf, offs, rlen, 0);
1026 if (err && err != -EBADMSG)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001027 return err;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001028 }
1029
1030 if (type != ch->node_type) {
Sheng Yong235c3622015-03-20 10:39:42 +00001031 ubifs_err(c, "bad node type (%d but expected %d)",
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001032 ch->node_type, type);
1033 goto out;
1034 }
1035
Zhihao Chenga33e30a2020-06-16 15:11:44 +08001036 err = ubifs_check_node(c, buf, len, lnum, offs, 0, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001037 if (err) {
Sheng Yong235c3622015-03-20 10:39:42 +00001038 ubifs_err(c, "expected node type %d", type);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001039 return err;
1040 }
1041
1042 rlen = le32_to_cpu(ch->len);
1043 if (rlen != len) {
Sheng Yong235c3622015-03-20 10:39:42 +00001044 ubifs_err(c, "bad node length %d, expected %d", rlen, len);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001045 goto out;
1046 }
1047
1048 return 0;
1049
1050out:
Sheng Yong235c3622015-03-20 10:39:42 +00001051 ubifs_err(c, "bad node at LEB %d:%d", lnum, offs);
Zhihao Chenga33e30a2020-06-16 15:11:44 +08001052 ubifs_dump_node(c, buf, len);
Artem Bityutskiy7c46d0a2012-05-16 19:04:54 +03001053 dump_stack();
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001054 return -EINVAL;
1055}
1056
1057/**
1058 * ubifs_read_node - read node.
1059 * @c: UBIFS file-system description object
1060 * @buf: buffer to read to
1061 * @type: node type
1062 * @len: node length (not aligned)
1063 * @lnum: logical eraseblock number
1064 * @offs: offset within the logical eraseblock
1065 *
Randy Dunlapb8f1da92020-08-04 19:49:35 -07001066 * This function reads a node of known type and length, checks it and
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001067 * stores in @buf. Returns zero in case of success, %-EUCLEAN if CRC mismatched
1068 * and a negative error code in case of failure.
1069 */
1070int ubifs_read_node(const struct ubifs_info *c, void *buf, int type, int len,
1071 int lnum, int offs)
1072{
1073 int err, l;
1074 struct ubifs_ch *ch = buf;
1075
1076 dbg_io("LEB %d:%d, %s, length %d", lnum, offs, dbg_ntype(type), len);
Richard Weinberger6eb61d52018-07-12 13:01:57 +02001077 ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt && offs >= 0);
1078 ubifs_assert(c, len >= UBIFS_CH_SZ && offs + len <= c->leb_size);
1079 ubifs_assert(c, !(offs & 7) && offs < c->leb_size);
1080 ubifs_assert(c, type >= 0 && type < UBIFS_NODE_TYPES_CNT);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001081
Artem Bityutskiyd3048202011-06-03 14:03:25 +03001082 err = ubifs_leb_read(c, lnum, buf, offs, len, 0);
1083 if (err && err != -EBADMSG)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001084 return err;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001085
1086 if (type != ch->node_type) {
Daniel Golle90bea5a32014-06-02 15:51:10 +02001087 ubifs_errc(c, "bad node type (%d but expected %d)",
1088 ch->node_type, type);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001089 goto out;
1090 }
1091
Zhihao Chenga33e30a2020-06-16 15:11:44 +08001092 err = ubifs_check_node(c, buf, len, lnum, offs, 0, 0);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001093 if (err) {
Daniel Golle90bea5a32014-06-02 15:51:10 +02001094 ubifs_errc(c, "expected node type %d", type);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001095 return err;
1096 }
1097
1098 l = le32_to_cpu(ch->len);
1099 if (l != len) {
Daniel Golle90bea5a32014-06-02 15:51:10 +02001100 ubifs_errc(c, "bad node length %d, expected %d", l, len);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001101 goto out;
1102 }
1103
1104 return 0;
1105
1106out:
Daniel Golle90bea5a32014-06-02 15:51:10 +02001107 ubifs_errc(c, "bad node at LEB %d:%d, LEB mapping status %d", lnum,
1108 offs, ubi_is_mapped(c->ubi, lnum));
1109 if (!c->probing) {
Zhihao Chenga33e30a2020-06-16 15:11:44 +08001110 ubifs_dump_node(c, buf, len);
Daniel Golle90bea5a32014-06-02 15:51:10 +02001111 dump_stack();
1112 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001113 return -EINVAL;
1114}
1115
1116/**
1117 * ubifs_wbuf_init - initialize write-buffer.
1118 * @c: UBIFS file-system description object
1119 * @wbuf: write-buffer to initialize
1120 *
Artem Bityutskiycb54ef82009-06-23 20:30:32 +03001121 * This function initializes write-buffer. Returns zero in case of success
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001122 * %-ENOMEM in case of failure.
1123 */
1124int ubifs_wbuf_init(struct ubifs_info *c, struct ubifs_wbuf *wbuf)
1125{
1126 size_t size;
1127
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +02001128 wbuf->buf = kmalloc(c->max_write_size, GFP_KERNEL);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001129 if (!wbuf->buf)
1130 return -ENOMEM;
1131
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +02001132 size = (c->max_write_size / UBIFS_CH_SZ + 1) * sizeof(ino_t);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001133 wbuf->inodes = kmalloc(size, GFP_KERNEL);
1134 if (!wbuf->inodes) {
1135 kfree(wbuf->buf);
1136 wbuf->buf = NULL;
1137 return -ENOMEM;
1138 }
1139
1140 wbuf->used = 0;
1141 wbuf->lnum = wbuf->offs = -1;
Artem Bityutskiy6c7f74f2011-02-06 14:45:26 +02001142 /*
1143 * If the LEB starts at the max. write size aligned address, then
1144 * write-buffer size has to be set to @c->max_write_size. Otherwise,
1145 * set it to something smaller so that it ends at the closest max.
1146 * write size boundary.
1147 */
1148 size = c->max_write_size - (c->leb_start % c->max_write_size);
1149 wbuf->avail = wbuf->size = size;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001150 wbuf->sync_callback = NULL;
1151 mutex_init(&wbuf->io_mutex);
1152 spin_lock_init(&wbuf->lock);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001153 wbuf->c = c;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001154 wbuf->next_ino = 0;
1155
Artem Bityutskiyf2c5dbd2009-05-28 16:24:15 +03001156 hrtimer_init(&wbuf->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1157 wbuf->timer.function = wbuf_timer_callback_nolock;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001158 return 0;
1159}
1160
1161/**
1162 * ubifs_wbuf_add_ino_nolock - add an inode number into the wbuf inode array.
Artem Bityutskiycb54ef82009-06-23 20:30:32 +03001163 * @wbuf: the write-buffer where to add
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001164 * @inum: the inode number
1165 *
1166 * This function adds an inode number to the inode array of the write-buffer.
1167 */
1168void ubifs_wbuf_add_ino_nolock(struct ubifs_wbuf *wbuf, ino_t inum)
1169{
1170 if (!wbuf->buf)
1171 /* NOR flash or something similar */
1172 return;
1173
1174 spin_lock(&wbuf->lock);
1175 if (wbuf->used)
1176 wbuf->inodes[wbuf->next_ino++] = inum;
1177 spin_unlock(&wbuf->lock);
1178}
1179
1180/**
1181 * wbuf_has_ino - returns if the wbuf contains data from the inode.
1182 * @wbuf: the write-buffer
1183 * @inum: the inode number
1184 *
1185 * This function returns with %1 if the write-buffer contains some data from the
1186 * given inode otherwise it returns with %0.
1187 */
1188static int wbuf_has_ino(struct ubifs_wbuf *wbuf, ino_t inum)
1189{
1190 int i, ret = 0;
1191
1192 spin_lock(&wbuf->lock);
1193 for (i = 0; i < wbuf->next_ino; i++)
1194 if (inum == wbuf->inodes[i]) {
1195 ret = 1;
1196 break;
1197 }
1198 spin_unlock(&wbuf->lock);
1199
1200 return ret;
1201}
1202
1203/**
1204 * ubifs_sync_wbufs_by_inode - synchronize write-buffers for an inode.
1205 * @c: UBIFS file-system description object
1206 * @inode: inode to synchronize
1207 *
1208 * This function synchronizes write-buffers which contain nodes belonging to
1209 * @inode. Returns zero in case of success and a negative error code in case of
1210 * failure.
1211 */
1212int ubifs_sync_wbufs_by_inode(struct ubifs_info *c, struct inode *inode)
1213{
1214 int i, err = 0;
1215
1216 for (i = 0; i < c->jhead_cnt; i++) {
1217 struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf;
1218
1219 if (i == GCHD)
1220 /*
1221 * GC head is special, do not look at it. Even if the
1222 * head contains something related to this inode, it is
1223 * a _copy_ of corresponding on-flash node which sits
1224 * somewhere else.
1225 */
1226 continue;
1227
1228 if (!wbuf_has_ino(wbuf, inode->i_ino))
1229 continue;
1230
1231 mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
1232 if (wbuf_has_ino(wbuf, inode->i_ino))
1233 err = ubifs_wbuf_sync_nolock(wbuf);
1234 mutex_unlock(&wbuf->io_mutex);
1235
1236 if (err) {
1237 ubifs_ro_mode(c, err);
1238 return err;
1239 }
1240 }
1241 return 0;
1242}