Thomas Gleixner | 2b27bdc | 2019-05-29 16:57:50 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 2 | /* |
| 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 Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 8 | * 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 Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 20 | * similar to the mechanism is used by JFFS2. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 21 | * |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 22 | * 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 Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 42 | * 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 Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 57 | * All UBIFS nodes are protected by CRC checksums and UBIFS checks CRC when |
| 58 | * they are read from the flash media. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 59 | */ |
| 60 | |
| 61 | #include <linux/crc32.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 62 | #include <linux/slab.h> |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 63 | #include "ubifs.h" |
| 64 | |
| 65 | /** |
Adrian Hunter | ff46d7b | 2008-07-21 15:39:05 +0300 | [diff] [blame] | 66 | * 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 | */ |
| 70 | void ubifs_ro_mode(struct ubifs_info *c, int err) |
| 71 | { |
Artem Bityutskiy | 2680d72 | 2010-09-17 16:44:28 +0300 | [diff] [blame] | 72 | if (!c->ro_error) { |
| 73 | c->ro_error = 1; |
Artem Bityutskiy | ccb3eba | 2008-09-08 16:07:01 +0300 | [diff] [blame] | 74 | c->no_chk_data_crc = 0; |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 75 | c->vfs_sb->s_flags |= SB_RDONLY; |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 76 | ubifs_warn(c, "switched to read-only mode, error %d", err); |
Artem Bityutskiy | d033c98 | 2011-06-03 13:16:08 +0300 | [diff] [blame] | 77 | dump_stack(); |
Adrian Hunter | ff46d7b | 2008-07-21 15:39:05 +0300 | [diff] [blame] | 78 | } |
| 79 | } |
| 80 | |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 81 | /* |
| 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 | |
| 87 | int 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 Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 98 | ubifs_err(c, "reading %d bytes from LEB %d:%d failed, error %d", |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 99 | len, lnum, offs, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 100 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 101 | } |
| 102 | return err; |
| 103 | } |
| 104 | |
| 105 | int ubifs_leb_write(struct ubifs_info *c, int lnum, const void *buf, int offs, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 106 | int len) |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 107 | { |
| 108 | int err; |
| 109 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 110 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 111 | if (c->ro_error) |
| 112 | return -EROFS; |
| 113 | if (!dbg_is_tst_rcvry(c)) |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 114 | err = ubi_leb_write(c->ubi, lnum, buf, offs, len); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 115 | else |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 116 | err = dbg_leb_write(c, lnum, buf, offs, len); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 117 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 118 | ubifs_err(c, "writing %d bytes to LEB %d:%d failed, error %d", |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 119 | len, lnum, offs, err); |
| 120 | ubifs_ro_mode(c, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 121 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 122 | } |
| 123 | return err; |
| 124 | } |
| 125 | |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 126 | int ubifs_leb_change(struct ubifs_info *c, int lnum, const void *buf, int len) |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 127 | { |
| 128 | int err; |
| 129 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 130 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 131 | if (c->ro_error) |
| 132 | return -EROFS; |
| 133 | if (!dbg_is_tst_rcvry(c)) |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 134 | err = ubi_leb_change(c->ubi, lnum, buf, len); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 135 | else |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 136 | err = dbg_leb_change(c, lnum, buf, len); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 137 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 138 | ubifs_err(c, "changing %d bytes in LEB %d failed, error %d", |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 139 | len, lnum, err); |
| 140 | ubifs_ro_mode(c, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 141 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 142 | } |
| 143 | return err; |
| 144 | } |
| 145 | |
| 146 | int ubifs_leb_unmap(struct ubifs_info *c, int lnum) |
| 147 | { |
| 148 | int err; |
| 149 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 150 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 151 | 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 Bityutskiy | f57cb18 | 2011-06-03 14:51:41 +0300 | [diff] [blame] | 156 | err = dbg_leb_unmap(c, lnum); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 157 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 158 | ubifs_err(c, "unmap LEB %d failed, error %d", lnum, err); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 159 | ubifs_ro_mode(c, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 160 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 161 | } |
| 162 | return err; |
| 163 | } |
| 164 | |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 165 | int ubifs_leb_map(struct ubifs_info *c, int lnum) |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 166 | { |
| 167 | int err; |
| 168 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 169 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 170 | if (c->ro_error) |
| 171 | return -EROFS; |
| 172 | if (!dbg_is_tst_rcvry(c)) |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 173 | err = ubi_leb_map(c->ubi, lnum); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 174 | else |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 175 | err = dbg_leb_map(c, lnum); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 176 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 177 | ubifs_err(c, "mapping LEB %d failed, error %d", lnum, err); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 178 | ubifs_ro_mode(c, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 179 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 180 | } |
| 181 | return err; |
| 182 | } |
| 183 | |
| 184 | int 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 Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 190 | ubifs_err(c, "ubi_is_mapped failed for LEB %d, error %d", |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 191 | lnum, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 192 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 193 | } |
| 194 | return err; |
| 195 | } |
| 196 | |
Adrian Hunter | ff46d7b | 2008-07-21 15:39:05 +0300 | [diff] [blame] | 197 | /** |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 198 | * ubifs_check_node - check node. |
| 199 | * @c: UBIFS file-system description object |
| 200 | * @buf: node to check |
| 201 | * @lnum: logical eraseblock number |
| 202 | * @offs: offset within the logical eraseblock |
| 203 | * @quiet: print no messages |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 204 | * @must_chk_crc: indicates whether to always check the CRC |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 205 | * |
| 206 | * This function checks node magic number and CRC checksum. This function also |
| 207 | * validates node length to prevent UBIFS from becoming crazy when an attacker |
| 208 | * feeds it a file-system image with incorrect nodes. For example, too large |
| 209 | * node length in the common header could cause UBIFS to read memory outside of |
| 210 | * allocated buffer when checking the CRC checksum. |
| 211 | * |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 212 | * This function may skip data nodes CRC checking if @c->no_chk_data_crc is |
| 213 | * true, which is controlled by corresponding UBIFS mount option. However, if |
| 214 | * @must_chk_crc is true, then @c->no_chk_data_crc is ignored and CRC is |
Artem Bityutskiy | 18d1d7f | 2011-01-17 22:27:56 +0200 | [diff] [blame] | 215 | * checked. Similarly, if @c->mounting or @c->remounting_rw is true (we are |
| 216 | * mounting or re-mounting to R/W mode), @c->no_chk_data_crc is ignored and CRC |
| 217 | * is checked. This is because during mounting or re-mounting from R/O mode to |
| 218 | * R/W mode we may read journal nodes (when replying the journal or doing the |
| 219 | * recovery) and the journal nodes may potentially be corrupted, so checking is |
| 220 | * required. |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 221 | * |
| 222 | * This function returns zero in case of success and %-EUCLEAN in case of bad |
| 223 | * CRC or magic. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 224 | */ |
| 225 | int ubifs_check_node(const struct ubifs_info *c, const void *buf, int lnum, |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 226 | int offs, int quiet, int must_chk_crc) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 227 | { |
Liu Song | acc5af3 | 2020-01-16 23:36:07 +0800 | [diff] [blame] | 228 | int err = -EINVAL, type, node_len, dump_node = 1; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 229 | uint32_t crc, node_crc, magic; |
| 230 | const struct ubifs_ch *ch = buf; |
| 231 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 232 | ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt && offs >= 0); |
| 233 | ubifs_assert(c, !(offs & 7) && offs < c->leb_size); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 234 | |
| 235 | magic = le32_to_cpu(ch->magic); |
| 236 | if (magic != UBIFS_NODE_MAGIC) { |
| 237 | if (!quiet) |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 238 | ubifs_err(c, "bad magic %#08x, expected %#08x", |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 239 | magic, UBIFS_NODE_MAGIC); |
| 240 | err = -EUCLEAN; |
| 241 | goto out; |
| 242 | } |
| 243 | |
| 244 | type = ch->node_type; |
| 245 | if (type < 0 || type >= UBIFS_NODE_TYPES_CNT) { |
| 246 | if (!quiet) |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 247 | ubifs_err(c, "bad node type %d", type); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 248 | goto out; |
| 249 | } |
| 250 | |
| 251 | node_len = le32_to_cpu(ch->len); |
| 252 | if (node_len + offs > c->leb_size) |
| 253 | goto out_len; |
| 254 | |
| 255 | if (c->ranges[type].max_len == 0) { |
| 256 | if (node_len != c->ranges[type].len) |
| 257 | goto out_len; |
| 258 | } else if (node_len < c->ranges[type].min_len || |
| 259 | node_len > c->ranges[type].max_len) |
| 260 | goto out_len; |
| 261 | |
Artem Bityutskiy | 18d1d7f | 2011-01-17 22:27:56 +0200 | [diff] [blame] | 262 | if (!must_chk_crc && type == UBIFS_DATA_NODE && !c->mounting && |
| 263 | !c->remounting_rw && c->no_chk_data_crc) |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 264 | return 0; |
Adrian Hunter | 2953e73 | 2008-09-04 16:26:00 +0300 | [diff] [blame] | 265 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 266 | crc = crc32(UBIFS_CRC32_INIT, buf + 8, node_len - 8); |
| 267 | node_crc = le32_to_cpu(ch->crc); |
| 268 | if (crc != node_crc) { |
| 269 | if (!quiet) |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 270 | ubifs_err(c, "bad CRC: calculated %#08x, read %#08x", |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 271 | crc, node_crc); |
| 272 | err = -EUCLEAN; |
| 273 | goto out; |
| 274 | } |
| 275 | |
| 276 | return 0; |
| 277 | |
| 278 | out_len: |
| 279 | if (!quiet) |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 280 | ubifs_err(c, "bad node length %d", node_len); |
Liu Song | acc5af3 | 2020-01-16 23:36:07 +0800 | [diff] [blame] | 281 | if (type == UBIFS_DATA_NODE && node_len > UBIFS_DATA_NODE_SZ) |
| 282 | dump_node = 0; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 283 | out: |
| 284 | if (!quiet) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 285 | ubifs_err(c, "bad node at LEB %d:%d", lnum, offs); |
Liu Song | acc5af3 | 2020-01-16 23:36:07 +0800 | [diff] [blame] | 286 | if (dump_node) { |
| 287 | ubifs_dump_node(c, buf); |
| 288 | } else { |
| 289 | int safe_len = min3(node_len, c->leb_size - offs, |
| 290 | (int)UBIFS_MAX_DATA_NODE_SZ); |
| 291 | pr_err("\tprevent out-of-bounds memory access\n"); |
| 292 | pr_err("\ttruncated data node length %d\n", safe_len); |
| 293 | pr_err("\tcorrupted data node:\n"); |
| 294 | print_hex_dump(KERN_ERR, "\t", DUMP_PREFIX_OFFSET, 32, 1, |
| 295 | buf, safe_len, 0); |
| 296 | } |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 297 | dump_stack(); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 298 | } |
| 299 | return err; |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * ubifs_pad - pad flash space. |
| 304 | * @c: UBIFS file-system description object |
| 305 | * @buf: buffer to put padding to |
| 306 | * @pad: how many bytes to pad |
| 307 | * |
| 308 | * The flash media obliges us to write only in chunks of %c->min_io_size and |
| 309 | * when we have to write less data we add padding node to the write-buffer and |
| 310 | * pad it to the next minimal I/O unit's boundary. Padding nodes help when the |
| 311 | * media is being scanned. If the amount of wasted space is not enough to fit a |
| 312 | * padding node which takes %UBIFS_PAD_NODE_SZ bytes, we write padding bytes |
| 313 | * pattern (%UBIFS_PADDING_BYTE). |
| 314 | * |
| 315 | * Padding nodes are also used to fill gaps when the "commit-in-gaps" method is |
| 316 | * used. |
| 317 | */ |
| 318 | void ubifs_pad(const struct ubifs_info *c, void *buf, int pad) |
| 319 | { |
| 320 | uint32_t crc; |
| 321 | |
Richard Weinberger | 20f1431 | 2020-11-16 22:05:30 +0100 | [diff] [blame^] | 322 | ubifs_assert(c, pad >= 0); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 323 | |
| 324 | if (pad >= UBIFS_PAD_NODE_SZ) { |
| 325 | struct ubifs_ch *ch = buf; |
| 326 | struct ubifs_pad_node *pad_node = buf; |
| 327 | |
| 328 | ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC); |
| 329 | ch->node_type = UBIFS_PAD_NODE; |
| 330 | ch->group_type = UBIFS_NO_NODE_GROUP; |
| 331 | ch->padding[0] = ch->padding[1] = 0; |
| 332 | ch->sqnum = 0; |
| 333 | ch->len = cpu_to_le32(UBIFS_PAD_NODE_SZ); |
| 334 | pad -= UBIFS_PAD_NODE_SZ; |
| 335 | pad_node->pad_len = cpu_to_le32(pad); |
| 336 | crc = crc32(UBIFS_CRC32_INIT, buf + 8, UBIFS_PAD_NODE_SZ - 8); |
| 337 | ch->crc = cpu_to_le32(crc); |
| 338 | memset(buf + UBIFS_PAD_NODE_SZ, 0, pad); |
| 339 | } else if (pad > 0) |
| 340 | /* Too little space, padding node won't fit */ |
| 341 | memset(buf, UBIFS_PADDING_BYTE, pad); |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * next_sqnum - get next sequence number. |
| 346 | * @c: UBIFS file-system description object |
| 347 | */ |
| 348 | static unsigned long long next_sqnum(struct ubifs_info *c) |
| 349 | { |
| 350 | unsigned long long sqnum; |
| 351 | |
| 352 | spin_lock(&c->cnt_lock); |
| 353 | sqnum = ++c->max_sqnum; |
| 354 | spin_unlock(&c->cnt_lock); |
| 355 | |
| 356 | if (unlikely(sqnum >= SQNUM_WARN_WATERMARK)) { |
| 357 | if (sqnum >= SQNUM_WATERMARK) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 358 | ubifs_err(c, "sequence number overflow %llu, end of life", |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 359 | sqnum); |
| 360 | ubifs_ro_mode(c, -EINVAL); |
| 361 | } |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 362 | ubifs_warn(c, "running out of sequence numbers, end of life soon"); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | return sqnum; |
| 366 | } |
| 367 | |
Sascha Hauer | dead972 | 2018-09-07 14:36:31 +0200 | [diff] [blame] | 368 | void ubifs_init_node(struct ubifs_info *c, void *node, int len, int pad) |
| 369 | { |
| 370 | struct ubifs_ch *ch = node; |
| 371 | unsigned long long sqnum = next_sqnum(c); |
| 372 | |
| 373 | ubifs_assert(c, len >= UBIFS_CH_SZ); |
| 374 | |
| 375 | ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC); |
| 376 | ch->len = cpu_to_le32(len); |
| 377 | ch->group_type = UBIFS_NO_NODE_GROUP; |
| 378 | ch->sqnum = cpu_to_le64(sqnum); |
| 379 | ch->padding[0] = ch->padding[1] = 0; |
| 380 | |
| 381 | if (pad) { |
| 382 | len = ALIGN(len, 8); |
| 383 | pad = ALIGN(len, c->min_io_size) - len; |
| 384 | ubifs_pad(c, node + len, pad); |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | void ubifs_crc_node(struct ubifs_info *c, void *node, int len) |
| 389 | { |
| 390 | struct ubifs_ch *ch = node; |
| 391 | uint32_t crc; |
| 392 | |
| 393 | crc = crc32(UBIFS_CRC32_INIT, node + 8, len - 8); |
| 394 | ch->crc = cpu_to_le32(crc); |
| 395 | } |
| 396 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 397 | /** |
Sascha Hauer | a384b47 | 2018-09-07 14:36:33 +0200 | [diff] [blame] | 398 | * ubifs_prepare_node_hmac - prepare node to be written to flash. |
| 399 | * @c: UBIFS file-system description object |
| 400 | * @node: the node to pad |
| 401 | * @len: node length |
| 402 | * @hmac_offs: offset of the HMAC in the node |
| 403 | * @pad: if the buffer has to be padded |
| 404 | * |
| 405 | * This function prepares node at @node to be written to the media - it |
| 406 | * calculates node CRC, fills the common header, and adds proper padding up to |
| 407 | * the next minimum I/O unit if @pad is not zero. if @hmac_offs is positive then |
| 408 | * a HMAC is inserted into the node at the given offset. |
| 409 | * |
| 410 | * This function returns 0 for success or a negative error code otherwise. |
| 411 | */ |
| 412 | int ubifs_prepare_node_hmac(struct ubifs_info *c, void *node, int len, |
| 413 | int hmac_offs, int pad) |
| 414 | { |
| 415 | int err; |
| 416 | |
| 417 | ubifs_init_node(c, node, len, pad); |
| 418 | |
| 419 | if (hmac_offs > 0) { |
| 420 | err = ubifs_node_insert_hmac(c, node, len, hmac_offs); |
| 421 | if (err) |
| 422 | return err; |
| 423 | } |
| 424 | |
| 425 | ubifs_crc_node(c, node, len); |
| 426 | |
| 427 | return 0; |
| 428 | } |
| 429 | |
| 430 | /** |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 431 | * ubifs_prepare_node - prepare node to be written to flash. |
| 432 | * @c: UBIFS file-system description object |
| 433 | * @node: the node to pad |
| 434 | * @len: node length |
| 435 | * @pad: if the buffer has to be padded |
| 436 | * |
| 437 | * This function prepares node at @node to be written to the media - it |
| 438 | * calculates node CRC, fills the common header, and adds proper padding up to |
| 439 | * the next minimum I/O unit if @pad is not zero. |
| 440 | */ |
| 441 | void ubifs_prepare_node(struct ubifs_info *c, void *node, int len, int pad) |
| 442 | { |
Sascha Hauer | a384b47 | 2018-09-07 14:36:33 +0200 | [diff] [blame] | 443 | /* |
| 444 | * Deliberately ignore return value since this function can only fail |
| 445 | * when a hmac offset is given. |
| 446 | */ |
| 447 | ubifs_prepare_node_hmac(c, node, len, 0, pad); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | /** |
| 451 | * ubifs_prep_grp_node - prepare node of a group to be written to flash. |
| 452 | * @c: UBIFS file-system description object |
| 453 | * @node: the node to pad |
| 454 | * @len: node length |
| 455 | * @last: indicates the last node of the group |
| 456 | * |
| 457 | * This function prepares node at @node to be written to the media - it |
| 458 | * calculates node CRC and fills the common header. |
| 459 | */ |
| 460 | void ubifs_prep_grp_node(struct ubifs_info *c, void *node, int len, int last) |
| 461 | { |
| 462 | uint32_t crc; |
| 463 | struct ubifs_ch *ch = node; |
| 464 | unsigned long long sqnum = next_sqnum(c); |
| 465 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 466 | ubifs_assert(c, len >= UBIFS_CH_SZ); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 467 | |
| 468 | ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC); |
| 469 | ch->len = cpu_to_le32(len); |
| 470 | if (last) |
| 471 | ch->group_type = UBIFS_LAST_OF_NODE_GROUP; |
| 472 | else |
| 473 | ch->group_type = UBIFS_IN_NODE_GROUP; |
| 474 | ch->sqnum = cpu_to_le64(sqnum); |
| 475 | ch->padding[0] = ch->padding[1] = 0; |
| 476 | crc = crc32(UBIFS_CRC32_INIT, node + 8, len - 8); |
| 477 | ch->crc = cpu_to_le32(crc); |
| 478 | } |
| 479 | |
| 480 | /** |
| 481 | * wbuf_timer_callback - write-buffer timer callback function. |
Fabian Frederick | 39274a1 | 2014-07-15 21:33:51 +0200 | [diff] [blame] | 482 | * @timer: timer data (write-buffer descriptor) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 483 | * |
| 484 | * This function is called when the write-buffer timer expires. |
| 485 | */ |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 486 | static enum hrtimer_restart wbuf_timer_callback_nolock(struct hrtimer *timer) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 487 | { |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 488 | struct ubifs_wbuf *wbuf = container_of(timer, struct ubifs_wbuf, timer); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 489 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 490 | dbg_io("jhead %s", dbg_jhead(wbuf->jhead)); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 491 | wbuf->need_sync = 1; |
| 492 | wbuf->c->need_wbuf_sync = 1; |
| 493 | ubifs_wake_up_bgt(wbuf->c); |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 494 | return HRTIMER_NORESTART; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | /** |
| 498 | * new_wbuf_timer - start new write-buffer timer. |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 499 | * @c: UBIFS file-system description object |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 500 | * @wbuf: write-buffer descriptor |
| 501 | */ |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 502 | static void new_wbuf_timer_nolock(struct ubifs_info *c, struct ubifs_wbuf *wbuf) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 503 | { |
Rafał Miłecki | 1b7fc2c | 2016-09-20 10:36:15 +0200 | [diff] [blame] | 504 | ktime_t softlimit = ms_to_ktime(dirty_writeback_interval * 10); |
| 505 | unsigned long long delta = dirty_writeback_interval; |
Rafał Miłecki | 854826c | 2016-09-20 10:36:14 +0200 | [diff] [blame] | 506 | |
Rafał Miłecki | 1b7fc2c | 2016-09-20 10:36:15 +0200 | [diff] [blame] | 507 | /* centi to milli, milli to nano, then 10% */ |
| 508 | delta *= 10ULL * NSEC_PER_MSEC / 10ULL; |
Rafał Miłecki | 854826c | 2016-09-20 10:36:14 +0200 | [diff] [blame] | 509 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 510 | ubifs_assert(c, !hrtimer_active(&wbuf->timer)); |
| 511 | ubifs_assert(c, delta <= ULONG_MAX); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 512 | |
Artem Bityutskiy | 0b335b9 | 2009-06-23 12:30:43 +0300 | [diff] [blame] | 513 | if (wbuf->no_timer) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 514 | return; |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 515 | dbg_io("set timer for jhead %s, %llu-%llu millisecs", |
| 516 | dbg_jhead(wbuf->jhead), |
Rafał Miłecki | 854826c | 2016-09-20 10:36:14 +0200 | [diff] [blame] | 517 | div_u64(ktime_to_ns(softlimit), USEC_PER_SEC), |
| 518 | div_u64(ktime_to_ns(softlimit) + delta, USEC_PER_SEC)); |
| 519 | hrtimer_start_range_ns(&wbuf->timer, softlimit, delta, |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 520 | HRTIMER_MODE_REL); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | /** |
| 524 | * cancel_wbuf_timer - cancel write-buffer timer. |
| 525 | * @wbuf: write-buffer descriptor |
| 526 | */ |
| 527 | static void cancel_wbuf_timer_nolock(struct ubifs_wbuf *wbuf) |
| 528 | { |
Artem Bityutskiy | 0b335b9 | 2009-06-23 12:30:43 +0300 | [diff] [blame] | 529 | if (wbuf->no_timer) |
| 530 | return; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 531 | wbuf->need_sync = 0; |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 532 | hrtimer_cancel(&wbuf->timer); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | /** |
| 536 | * ubifs_wbuf_sync_nolock - synchronize write-buffer. |
| 537 | * @wbuf: write-buffer to synchronize |
| 538 | * |
| 539 | * This function synchronizes write-buffer @buf and returns zero in case of |
| 540 | * success or a negative error code in case of failure. |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 541 | * |
| 542 | * Note, although write-buffers are of @c->max_write_size, this function does |
| 543 | * not necessarily writes all @c->max_write_size bytes to the flash. Instead, |
| 544 | * if the write-buffer is only partially filled with data, only the used part |
| 545 | * of the write-buffer (aligned on @c->min_io_size boundary) is synchronized. |
| 546 | * This way we waste less space. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 547 | */ |
| 548 | int ubifs_wbuf_sync_nolock(struct ubifs_wbuf *wbuf) |
| 549 | { |
| 550 | struct ubifs_info *c = wbuf->c; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 551 | int err, dirt, sync_len; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 552 | |
| 553 | cancel_wbuf_timer_nolock(wbuf); |
| 554 | if (!wbuf->used || wbuf->lnum == -1) |
| 555 | /* Write-buffer is empty or not seeked */ |
| 556 | return 0; |
| 557 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 558 | dbg_io("LEB %d:%d, %d bytes, jhead %s", |
| 559 | wbuf->lnum, wbuf->offs, wbuf->used, dbg_jhead(wbuf->jhead)); |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 560 | ubifs_assert(c, !(wbuf->avail & 7)); |
| 561 | ubifs_assert(c, wbuf->offs + wbuf->size <= c->leb_size); |
| 562 | ubifs_assert(c, wbuf->size >= c->min_io_size); |
| 563 | ubifs_assert(c, wbuf->size <= c->max_write_size); |
| 564 | ubifs_assert(c, wbuf->size % c->min_io_size == 0); |
| 565 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 566 | if (c->leb_size - wbuf->offs >= c->max_write_size) |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 567 | ubifs_assert(c, !((wbuf->offs + wbuf->size) % c->max_write_size)); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 568 | |
Artem Bityutskiy | 2680d72 | 2010-09-17 16:44:28 +0300 | [diff] [blame] | 569 | if (c->ro_error) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 570 | return -EROFS; |
| 571 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 572 | /* |
| 573 | * Do not write whole write buffer but write only the minimum necessary |
| 574 | * amount of min. I/O units. |
| 575 | */ |
| 576 | sync_len = ALIGN(wbuf->used, c->min_io_size); |
| 577 | dirt = sync_len - wbuf->used; |
| 578 | if (dirt) |
| 579 | ubifs_pad(c, wbuf->buf + wbuf->used, dirt); |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 580 | err = ubifs_leb_write(c, wbuf->lnum, wbuf->buf, wbuf->offs, sync_len); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 581 | if (err) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 582 | return err; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 583 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 584 | spin_lock(&wbuf->lock); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 585 | wbuf->offs += sync_len; |
| 586 | /* |
| 587 | * Now @wbuf->offs is not necessarily aligned to @c->max_write_size. |
| 588 | * But our goal is to optimize writes and make sure we write in |
| 589 | * @c->max_write_size chunks and to @c->max_write_size-aligned offset. |
| 590 | * Thus, if @wbuf->offs is not aligned to @c->max_write_size now, make |
| 591 | * sure that @wbuf->offs + @wbuf->size is aligned to |
| 592 | * @c->max_write_size. This way we make sure that after next |
| 593 | * write-buffer flush we are again at the optimal offset (aligned to |
| 594 | * @c->max_write_size). |
| 595 | */ |
| 596 | if (c->leb_size - wbuf->offs < c->max_write_size) |
| 597 | wbuf->size = c->leb_size - wbuf->offs; |
| 598 | else if (wbuf->offs & (c->max_write_size - 1)) |
| 599 | wbuf->size = ALIGN(wbuf->offs, c->max_write_size) - wbuf->offs; |
| 600 | else |
| 601 | wbuf->size = c->max_write_size; |
| 602 | wbuf->avail = wbuf->size; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 603 | wbuf->used = 0; |
| 604 | wbuf->next_ino = 0; |
| 605 | spin_unlock(&wbuf->lock); |
| 606 | |
| 607 | if (wbuf->sync_callback) |
| 608 | err = wbuf->sync_callback(c, wbuf->lnum, |
| 609 | c->leb_size - wbuf->offs, dirt); |
| 610 | return err; |
| 611 | } |
| 612 | |
| 613 | /** |
| 614 | * ubifs_wbuf_seek_nolock - seek write-buffer. |
| 615 | * @wbuf: write-buffer |
| 616 | * @lnum: logical eraseblock number to seek to |
| 617 | * @offs: logical eraseblock offset to seek to |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 618 | * |
Artem Bityutskiy | cb54ef8 | 2009-06-23 20:30:32 +0300 | [diff] [blame] | 619 | * This function targets the write-buffer to logical eraseblock @lnum:@offs. |
Artem Bityutskiy | cb14a18 | 2011-05-15 14:51:54 +0300 | [diff] [blame] | 620 | * The write-buffer has to be empty. Returns zero in case of success and a |
| 621 | * negative error code in case of failure. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 622 | */ |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 623 | int ubifs_wbuf_seek_nolock(struct ubifs_wbuf *wbuf, int lnum, int offs) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 624 | { |
| 625 | const struct ubifs_info *c = wbuf->c; |
| 626 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 627 | dbg_io("LEB %d:%d, jhead %s", lnum, offs, dbg_jhead(wbuf->jhead)); |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 628 | ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt); |
| 629 | ubifs_assert(c, offs >= 0 && offs <= c->leb_size); |
| 630 | ubifs_assert(c, offs % c->min_io_size == 0 && !(offs & 7)); |
| 631 | ubifs_assert(c, lnum != wbuf->lnum); |
| 632 | ubifs_assert(c, wbuf->used == 0); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 633 | |
| 634 | spin_lock(&wbuf->lock); |
| 635 | wbuf->lnum = lnum; |
| 636 | wbuf->offs = offs; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 637 | if (c->leb_size - wbuf->offs < c->max_write_size) |
| 638 | wbuf->size = c->leb_size - wbuf->offs; |
| 639 | else if (wbuf->offs & (c->max_write_size - 1)) |
| 640 | wbuf->size = ALIGN(wbuf->offs, c->max_write_size) - wbuf->offs; |
| 641 | else |
| 642 | wbuf->size = c->max_write_size; |
| 643 | wbuf->avail = wbuf->size; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 644 | wbuf->used = 0; |
| 645 | spin_unlock(&wbuf->lock); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 646 | |
| 647 | return 0; |
| 648 | } |
| 649 | |
| 650 | /** |
| 651 | * ubifs_bg_wbufs_sync - synchronize write-buffers. |
| 652 | * @c: UBIFS file-system description object |
| 653 | * |
| 654 | * This function is called by background thread to synchronize write-buffers. |
| 655 | * Returns zero in case of success and a negative error code in case of |
| 656 | * failure. |
| 657 | */ |
| 658 | int ubifs_bg_wbufs_sync(struct ubifs_info *c) |
| 659 | { |
| 660 | int err, i; |
| 661 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 662 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 663 | if (!c->need_wbuf_sync) |
| 664 | return 0; |
| 665 | c->need_wbuf_sync = 0; |
| 666 | |
Artem Bityutskiy | 2680d72 | 2010-09-17 16:44:28 +0300 | [diff] [blame] | 667 | if (c->ro_error) { |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 668 | err = -EROFS; |
| 669 | goto out_timers; |
| 670 | } |
| 671 | |
| 672 | dbg_io("synchronize"); |
| 673 | for (i = 0; i < c->jhead_cnt; i++) { |
| 674 | struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf; |
| 675 | |
| 676 | cond_resched(); |
| 677 | |
| 678 | /* |
| 679 | * If the mutex is locked then wbuf is being changed, so |
| 680 | * synchronization is not necessary. |
| 681 | */ |
| 682 | if (mutex_is_locked(&wbuf->io_mutex)) |
| 683 | continue; |
| 684 | |
| 685 | mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead); |
| 686 | if (!wbuf->need_sync) { |
| 687 | mutex_unlock(&wbuf->io_mutex); |
| 688 | continue; |
| 689 | } |
| 690 | |
| 691 | err = ubifs_wbuf_sync_nolock(wbuf); |
| 692 | mutex_unlock(&wbuf->io_mutex); |
| 693 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 694 | ubifs_err(c, "cannot sync write-buffer, error %d", err); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 695 | ubifs_ro_mode(c, err); |
| 696 | goto out_timers; |
| 697 | } |
| 698 | } |
| 699 | |
| 700 | return 0; |
| 701 | |
| 702 | out_timers: |
| 703 | /* Cancel all timers to prevent repeated errors */ |
| 704 | for (i = 0; i < c->jhead_cnt; i++) { |
| 705 | struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf; |
| 706 | |
| 707 | mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead); |
| 708 | cancel_wbuf_timer_nolock(wbuf); |
| 709 | mutex_unlock(&wbuf->io_mutex); |
| 710 | } |
| 711 | return err; |
| 712 | } |
| 713 | |
| 714 | /** |
| 715 | * ubifs_wbuf_write_nolock - write data to flash via write-buffer. |
| 716 | * @wbuf: write-buffer |
| 717 | * @buf: node to write |
| 718 | * @len: node length |
| 719 | * |
| 720 | * This function writes data to flash via write-buffer @wbuf. This means that |
| 721 | * the last piece of the node won't reach the flash media immediately if it |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 722 | * does not take whole max. write unit (@c->max_write_size). Instead, the node |
| 723 | * will sit in RAM until the write-buffer is synchronized (e.g., by timer, or |
| 724 | * because more data are appended to the write-buffer). |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 725 | * |
| 726 | * This function returns zero in case of success and a negative error code in |
| 727 | * case of failure. If the node cannot be written because there is no more |
| 728 | * space in this logical eraseblock, %-ENOSPC is returned. |
| 729 | */ |
| 730 | int ubifs_wbuf_write_nolock(struct ubifs_wbuf *wbuf, void *buf, int len) |
| 731 | { |
| 732 | struct ubifs_info *c = wbuf->c; |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 733 | int err, written, n, aligned_len = ALIGN(len, 8); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 734 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 735 | dbg_io("%d bytes (%s) to jhead %s wbuf at LEB %d:%d", len, |
| 736 | dbg_ntype(((struct ubifs_ch *)buf)->node_type), |
| 737 | dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs + wbuf->used); |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 738 | ubifs_assert(c, len > 0 && wbuf->lnum >= 0 && wbuf->lnum < c->leb_cnt); |
| 739 | ubifs_assert(c, wbuf->offs >= 0 && wbuf->offs % c->min_io_size == 0); |
| 740 | ubifs_assert(c, !(wbuf->offs & 7) && wbuf->offs <= c->leb_size); |
| 741 | ubifs_assert(c, wbuf->avail > 0 && wbuf->avail <= wbuf->size); |
| 742 | ubifs_assert(c, wbuf->size >= c->min_io_size); |
| 743 | ubifs_assert(c, wbuf->size <= c->max_write_size); |
| 744 | ubifs_assert(c, wbuf->size % c->min_io_size == 0); |
| 745 | ubifs_assert(c, mutex_is_locked(&wbuf->io_mutex)); |
| 746 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
| 747 | ubifs_assert(c, !c->space_fixup); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 748 | if (c->leb_size - wbuf->offs >= c->max_write_size) |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 749 | ubifs_assert(c, !((wbuf->offs + wbuf->size) % c->max_write_size)); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 750 | |
| 751 | if (c->leb_size - wbuf->offs - wbuf->used < aligned_len) { |
| 752 | err = -ENOSPC; |
| 753 | goto out; |
| 754 | } |
| 755 | |
| 756 | cancel_wbuf_timer_nolock(wbuf); |
| 757 | |
Artem Bityutskiy | 2680d72 | 2010-09-17 16:44:28 +0300 | [diff] [blame] | 758 | if (c->ro_error) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 759 | return -EROFS; |
| 760 | |
| 761 | if (aligned_len <= wbuf->avail) { |
| 762 | /* |
| 763 | * The node is not very large and fits entirely within |
| 764 | * write-buffer. |
| 765 | */ |
| 766 | memcpy(wbuf->buf + wbuf->used, buf, len); |
Richard Weinberger | 20f1431 | 2020-11-16 22:05:30 +0100 | [diff] [blame^] | 767 | if (aligned_len > len) { |
| 768 | ubifs_assert(c, aligned_len - len < 8); |
| 769 | ubifs_pad(c, wbuf->buf + wbuf->used + len, aligned_len - len); |
| 770 | } |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 771 | |
| 772 | if (aligned_len == wbuf->avail) { |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 773 | dbg_io("flush jhead %s wbuf to LEB %d:%d", |
| 774 | dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 775 | err = ubifs_leb_write(c, wbuf->lnum, wbuf->buf, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 776 | wbuf->offs, wbuf->size); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 777 | if (err) |
| 778 | goto out; |
| 779 | |
| 780 | spin_lock(&wbuf->lock); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 781 | wbuf->offs += wbuf->size; |
| 782 | if (c->leb_size - wbuf->offs >= c->max_write_size) |
| 783 | wbuf->size = c->max_write_size; |
| 784 | else |
| 785 | wbuf->size = c->leb_size - wbuf->offs; |
| 786 | wbuf->avail = wbuf->size; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 787 | wbuf->used = 0; |
| 788 | wbuf->next_ino = 0; |
| 789 | spin_unlock(&wbuf->lock); |
| 790 | } else { |
| 791 | spin_lock(&wbuf->lock); |
| 792 | wbuf->avail -= aligned_len; |
| 793 | wbuf->used += aligned_len; |
| 794 | spin_unlock(&wbuf->lock); |
| 795 | } |
| 796 | |
| 797 | goto exit; |
| 798 | } |
| 799 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 800 | written = 0; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 801 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 802 | if (wbuf->used) { |
| 803 | /* |
| 804 | * The node is large enough and does not fit entirely within |
| 805 | * current available space. We have to fill and flush |
| 806 | * write-buffer and switch to the next max. write unit. |
| 807 | */ |
| 808 | dbg_io("flush jhead %s wbuf to LEB %d:%d", |
| 809 | dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs); |
| 810 | memcpy(wbuf->buf + wbuf->used, buf, wbuf->avail); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 811 | err = ubifs_leb_write(c, wbuf->lnum, wbuf->buf, wbuf->offs, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 812 | wbuf->size); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 813 | if (err) |
| 814 | goto out; |
| 815 | |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 816 | wbuf->offs += wbuf->size; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 817 | len -= wbuf->avail; |
| 818 | aligned_len -= wbuf->avail; |
| 819 | written += wbuf->avail; |
| 820 | } else if (wbuf->offs & (c->max_write_size - 1)) { |
| 821 | /* |
| 822 | * The write-buffer offset is not aligned to |
| 823 | * @c->max_write_size and @wbuf->size is less than |
| 824 | * @c->max_write_size. Write @wbuf->size bytes to make sure the |
| 825 | * following writes are done in optimal @c->max_write_size |
| 826 | * chunks. |
| 827 | */ |
| 828 | dbg_io("write %d bytes to LEB %d:%d", |
| 829 | wbuf->size, wbuf->lnum, wbuf->offs); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 830 | err = ubifs_leb_write(c, wbuf->lnum, buf, wbuf->offs, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 831 | wbuf->size); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 832 | if (err) |
| 833 | goto out; |
| 834 | |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 835 | wbuf->offs += wbuf->size; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 836 | len -= wbuf->size; |
| 837 | aligned_len -= wbuf->size; |
| 838 | written += wbuf->size; |
| 839 | } |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 840 | |
| 841 | /* |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 842 | * The remaining data may take more whole max. write units, so write the |
| 843 | * remains multiple to max. write unit size directly to the flash media. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 844 | * We align node length to 8-byte boundary because we anyway flash wbuf |
| 845 | * if the remaining space is less than 8 bytes. |
| 846 | */ |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 847 | n = aligned_len >> c->max_write_shift; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 848 | if (n) { |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 849 | n <<= c->max_write_shift; |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 850 | dbg_io("write %d bytes to LEB %d:%d", n, wbuf->lnum, |
| 851 | wbuf->offs); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 852 | err = ubifs_leb_write(c, wbuf->lnum, buf + written, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 853 | wbuf->offs, n); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 854 | if (err) |
| 855 | goto out; |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 856 | wbuf->offs += n; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 857 | aligned_len -= n; |
| 858 | len -= n; |
| 859 | written += n; |
| 860 | } |
| 861 | |
| 862 | spin_lock(&wbuf->lock); |
Richard Weinberger | 20f1431 | 2020-11-16 22:05:30 +0100 | [diff] [blame^] | 863 | if (aligned_len) { |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 864 | /* |
| 865 | * And now we have what's left and what does not take whole |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 866 | * max. write unit, so write it to the write-buffer and we are |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 867 | * done. |
| 868 | */ |
| 869 | memcpy(wbuf->buf, buf + written, len); |
Richard Weinberger | 20f1431 | 2020-11-16 22:05:30 +0100 | [diff] [blame^] | 870 | if (aligned_len > len) { |
| 871 | ubifs_assert(c, aligned_len - len < 8); |
| 872 | ubifs_pad(c, wbuf->buf + len, aligned_len - len); |
| 873 | } |
| 874 | } |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 875 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 876 | if (c->leb_size - wbuf->offs >= c->max_write_size) |
| 877 | wbuf->size = c->max_write_size; |
| 878 | else |
| 879 | wbuf->size = c->leb_size - wbuf->offs; |
| 880 | wbuf->avail = wbuf->size - aligned_len; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 881 | wbuf->used = aligned_len; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 882 | wbuf->next_ino = 0; |
| 883 | spin_unlock(&wbuf->lock); |
| 884 | |
| 885 | exit: |
| 886 | if (wbuf->sync_callback) { |
| 887 | int free = c->leb_size - wbuf->offs - wbuf->used; |
| 888 | |
| 889 | err = wbuf->sync_callback(c, wbuf->lnum, free, 0); |
| 890 | if (err) |
| 891 | goto out; |
| 892 | } |
| 893 | |
| 894 | if (wbuf->used) |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 895 | new_wbuf_timer_nolock(c, wbuf); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 896 | |
| 897 | return 0; |
| 898 | |
| 899 | out: |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 900 | ubifs_err(c, "cannot write %d bytes to LEB %d:%d, error %d", |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 901 | len, wbuf->lnum, wbuf->offs, err); |
Artem Bityutskiy | edf6be2 | 2012-05-16 19:15:56 +0300 | [diff] [blame] | 902 | ubifs_dump_node(c, buf); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 903 | dump_stack(); |
Artem Bityutskiy | edf6be2 | 2012-05-16 19:15:56 +0300 | [diff] [blame] | 904 | ubifs_dump_leb(c, wbuf->lnum); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 905 | return err; |
| 906 | } |
| 907 | |
| 908 | /** |
Sascha Hauer | a384b47 | 2018-09-07 14:36:33 +0200 | [diff] [blame] | 909 | * ubifs_write_node_hmac - write node to the media. |
| 910 | * @c: UBIFS file-system description object |
| 911 | * @buf: the node to write |
| 912 | * @len: node length |
| 913 | * @lnum: logical eraseblock number |
| 914 | * @offs: offset within the logical eraseblock |
| 915 | * @hmac_offs: offset of the HMAC within the node |
| 916 | * |
| 917 | * This function automatically fills node magic number, assigns sequence |
| 918 | * number, and calculates node CRC checksum. The length of the @buf buffer has |
| 919 | * to be aligned to the minimal I/O unit size. This function automatically |
| 920 | * appends padding node and padding bytes if needed. Returns zero in case of |
| 921 | * success and a negative error code in case of failure. |
| 922 | */ |
| 923 | int ubifs_write_node_hmac(struct ubifs_info *c, void *buf, int len, int lnum, |
| 924 | int offs, int hmac_offs) |
| 925 | { |
| 926 | int err, buf_len = ALIGN(len, c->min_io_size); |
| 927 | |
| 928 | dbg_io("LEB %d:%d, %s, length %d (aligned %d)", |
| 929 | lnum, offs, dbg_ntype(((struct ubifs_ch *)buf)->node_type), len, |
| 930 | buf_len); |
| 931 | ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt && offs >= 0); |
| 932 | ubifs_assert(c, offs % c->min_io_size == 0 && offs < c->leb_size); |
| 933 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
| 934 | ubifs_assert(c, !c->space_fixup); |
| 935 | |
| 936 | if (c->ro_error) |
| 937 | return -EROFS; |
| 938 | |
| 939 | err = ubifs_prepare_node_hmac(c, buf, len, hmac_offs, 1); |
| 940 | if (err) |
| 941 | return err; |
| 942 | |
| 943 | err = ubifs_leb_write(c, lnum, buf, offs, buf_len); |
| 944 | if (err) |
| 945 | ubifs_dump_node(c, buf); |
| 946 | |
| 947 | return err; |
| 948 | } |
| 949 | |
| 950 | /** |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 951 | * ubifs_write_node - write node to the media. |
| 952 | * @c: UBIFS file-system description object |
| 953 | * @buf: the node to write |
| 954 | * @len: node length |
| 955 | * @lnum: logical eraseblock number |
| 956 | * @offs: offset within the logical eraseblock |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 957 | * |
| 958 | * This function automatically fills node magic number, assigns sequence |
| 959 | * number, and calculates node CRC checksum. The length of the @buf buffer has |
| 960 | * to be aligned to the minimal I/O unit size. This function automatically |
| 961 | * appends padding node and padding bytes if needed. Returns zero in case of |
| 962 | * success and a negative error code in case of failure. |
| 963 | */ |
| 964 | int ubifs_write_node(struct ubifs_info *c, void *buf, int len, int lnum, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 965 | int offs) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 966 | { |
Sascha Hauer | a384b47 | 2018-09-07 14:36:33 +0200 | [diff] [blame] | 967 | return ubifs_write_node_hmac(c, buf, len, lnum, offs, -1); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | /** |
| 971 | * ubifs_read_node_wbuf - read node from the media or write-buffer. |
| 972 | * @wbuf: wbuf to check for un-written data |
| 973 | * @buf: buffer to read to |
| 974 | * @type: node type |
| 975 | * @len: node length |
| 976 | * @lnum: logical eraseblock number |
| 977 | * @offs: offset within the logical eraseblock |
| 978 | * |
| 979 | * This function reads a node of known type and length, checks it and stores |
| 980 | * in @buf. If the node partially or fully sits in the write-buffer, this |
| 981 | * function takes data from the buffer, otherwise it reads the flash media. |
| 982 | * Returns zero in case of success, %-EUCLEAN if CRC mismatched and a negative |
| 983 | * error code in case of failure. |
| 984 | */ |
| 985 | int ubifs_read_node_wbuf(struct ubifs_wbuf *wbuf, void *buf, int type, int len, |
| 986 | int lnum, int offs) |
| 987 | { |
| 988 | const struct ubifs_info *c = wbuf->c; |
| 989 | int err, rlen, overlap; |
| 990 | struct ubifs_ch *ch = buf; |
| 991 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 992 | dbg_io("LEB %d:%d, %s, length %d, jhead %s", lnum, offs, |
| 993 | dbg_ntype(type), len, dbg_jhead(wbuf->jhead)); |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 994 | ubifs_assert(c, wbuf && lnum >= 0 && lnum < c->leb_cnt && offs >= 0); |
| 995 | ubifs_assert(c, !(offs & 7) && offs < c->leb_size); |
| 996 | ubifs_assert(c, type >= 0 && type < UBIFS_NODE_TYPES_CNT); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 997 | |
| 998 | spin_lock(&wbuf->lock); |
| 999 | overlap = (lnum == wbuf->lnum && offs + len > wbuf->offs); |
| 1000 | if (!overlap) { |
| 1001 | /* We may safely unlock the write-buffer and read the data */ |
| 1002 | spin_unlock(&wbuf->lock); |
| 1003 | return ubifs_read_node(c, buf, type, len, lnum, offs); |
| 1004 | } |
| 1005 | |
| 1006 | /* Don't read under wbuf */ |
| 1007 | rlen = wbuf->offs - offs; |
| 1008 | if (rlen < 0) |
| 1009 | rlen = 0; |
| 1010 | |
| 1011 | /* Copy the rest from the write-buffer */ |
| 1012 | memcpy(buf + rlen, wbuf->buf + offs + rlen - wbuf->offs, len - rlen); |
| 1013 | spin_unlock(&wbuf->lock); |
| 1014 | |
| 1015 | if (rlen > 0) { |
| 1016 | /* Read everything that goes before write-buffer */ |
Artem Bityutskiy | d304820 | 2011-06-03 14:03:25 +0300 | [diff] [blame] | 1017 | err = ubifs_leb_read(c, lnum, buf, offs, rlen, 0); |
| 1018 | if (err && err != -EBADMSG) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1019 | return err; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1020 | } |
| 1021 | |
| 1022 | if (type != ch->node_type) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 1023 | ubifs_err(c, "bad node type (%d but expected %d)", |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1024 | ch->node_type, type); |
| 1025 | goto out; |
| 1026 | } |
| 1027 | |
Adrian Hunter | 2953e73 | 2008-09-04 16:26:00 +0300 | [diff] [blame] | 1028 | err = ubifs_check_node(c, buf, lnum, offs, 0, 0); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1029 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 1030 | ubifs_err(c, "expected node type %d", type); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1031 | return err; |
| 1032 | } |
| 1033 | |
| 1034 | rlen = le32_to_cpu(ch->len); |
| 1035 | if (rlen != len) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 1036 | ubifs_err(c, "bad node length %d, expected %d", rlen, len); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1037 | goto out; |
| 1038 | } |
| 1039 | |
| 1040 | return 0; |
| 1041 | |
| 1042 | out: |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 1043 | ubifs_err(c, "bad node at LEB %d:%d", lnum, offs); |
Artem Bityutskiy | edf6be2 | 2012-05-16 19:15:56 +0300 | [diff] [blame] | 1044 | ubifs_dump_node(c, buf); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 1045 | dump_stack(); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1046 | return -EINVAL; |
| 1047 | } |
| 1048 | |
| 1049 | /** |
| 1050 | * ubifs_read_node - read node. |
| 1051 | * @c: UBIFS file-system description object |
| 1052 | * @buf: buffer to read to |
| 1053 | * @type: node type |
| 1054 | * @len: node length (not aligned) |
| 1055 | * @lnum: logical eraseblock number |
| 1056 | * @offs: offset within the logical eraseblock |
| 1057 | * |
Randy Dunlap | b8f1da9 | 2020-08-04 19:49:35 -0700 | [diff] [blame] | 1058 | * This function reads a node of known type and length, checks it and |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1059 | * stores in @buf. Returns zero in case of success, %-EUCLEAN if CRC mismatched |
| 1060 | * and a negative error code in case of failure. |
| 1061 | */ |
| 1062 | int ubifs_read_node(const struct ubifs_info *c, void *buf, int type, int len, |
| 1063 | int lnum, int offs) |
| 1064 | { |
| 1065 | int err, l; |
| 1066 | struct ubifs_ch *ch = buf; |
| 1067 | |
| 1068 | dbg_io("LEB %d:%d, %s, length %d", lnum, offs, dbg_ntype(type), len); |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 1069 | ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt && offs >= 0); |
| 1070 | ubifs_assert(c, len >= UBIFS_CH_SZ && offs + len <= c->leb_size); |
| 1071 | ubifs_assert(c, !(offs & 7) && offs < c->leb_size); |
| 1072 | ubifs_assert(c, type >= 0 && type < UBIFS_NODE_TYPES_CNT); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1073 | |
Artem Bityutskiy | d304820 | 2011-06-03 14:03:25 +0300 | [diff] [blame] | 1074 | err = ubifs_leb_read(c, lnum, buf, offs, len, 0); |
| 1075 | if (err && err != -EBADMSG) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1076 | return err; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1077 | |
| 1078 | if (type != ch->node_type) { |
Daniel Golle | 90bea5a3 | 2014-06-02 15:51:10 +0200 | [diff] [blame] | 1079 | ubifs_errc(c, "bad node type (%d but expected %d)", |
| 1080 | ch->node_type, type); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1081 | goto out; |
| 1082 | } |
| 1083 | |
Adrian Hunter | 2953e73 | 2008-09-04 16:26:00 +0300 | [diff] [blame] | 1084 | err = ubifs_check_node(c, buf, lnum, offs, 0, 0); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1085 | if (err) { |
Daniel Golle | 90bea5a3 | 2014-06-02 15:51:10 +0200 | [diff] [blame] | 1086 | ubifs_errc(c, "expected node type %d", type); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1087 | return err; |
| 1088 | } |
| 1089 | |
| 1090 | l = le32_to_cpu(ch->len); |
| 1091 | if (l != len) { |
Daniel Golle | 90bea5a3 | 2014-06-02 15:51:10 +0200 | [diff] [blame] | 1092 | ubifs_errc(c, "bad node length %d, expected %d", l, len); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1093 | goto out; |
| 1094 | } |
| 1095 | |
| 1096 | return 0; |
| 1097 | |
| 1098 | out: |
Daniel Golle | 90bea5a3 | 2014-06-02 15:51:10 +0200 | [diff] [blame] | 1099 | ubifs_errc(c, "bad node at LEB %d:%d, LEB mapping status %d", lnum, |
| 1100 | offs, ubi_is_mapped(c->ubi, lnum)); |
| 1101 | if (!c->probing) { |
| 1102 | ubifs_dump_node(c, buf); |
| 1103 | dump_stack(); |
| 1104 | } |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1105 | return -EINVAL; |
| 1106 | } |
| 1107 | |
| 1108 | /** |
| 1109 | * ubifs_wbuf_init - initialize write-buffer. |
| 1110 | * @c: UBIFS file-system description object |
| 1111 | * @wbuf: write-buffer to initialize |
| 1112 | * |
Artem Bityutskiy | cb54ef8 | 2009-06-23 20:30:32 +0300 | [diff] [blame] | 1113 | * This function initializes write-buffer. Returns zero in case of success |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1114 | * %-ENOMEM in case of failure. |
| 1115 | */ |
| 1116 | int ubifs_wbuf_init(struct ubifs_info *c, struct ubifs_wbuf *wbuf) |
| 1117 | { |
| 1118 | size_t size; |
| 1119 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 1120 | wbuf->buf = kmalloc(c->max_write_size, GFP_KERNEL); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1121 | if (!wbuf->buf) |
| 1122 | return -ENOMEM; |
| 1123 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 1124 | size = (c->max_write_size / UBIFS_CH_SZ + 1) * sizeof(ino_t); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1125 | wbuf->inodes = kmalloc(size, GFP_KERNEL); |
| 1126 | if (!wbuf->inodes) { |
| 1127 | kfree(wbuf->buf); |
| 1128 | wbuf->buf = NULL; |
| 1129 | return -ENOMEM; |
| 1130 | } |
| 1131 | |
| 1132 | wbuf->used = 0; |
| 1133 | wbuf->lnum = wbuf->offs = -1; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 1134 | /* |
| 1135 | * If the LEB starts at the max. write size aligned address, then |
| 1136 | * write-buffer size has to be set to @c->max_write_size. Otherwise, |
| 1137 | * set it to something smaller so that it ends at the closest max. |
| 1138 | * write size boundary. |
| 1139 | */ |
| 1140 | size = c->max_write_size - (c->leb_start % c->max_write_size); |
| 1141 | wbuf->avail = wbuf->size = size; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1142 | wbuf->sync_callback = NULL; |
| 1143 | mutex_init(&wbuf->io_mutex); |
| 1144 | spin_lock_init(&wbuf->lock); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1145 | wbuf->c = c; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1146 | wbuf->next_ino = 0; |
| 1147 | |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 1148 | hrtimer_init(&wbuf->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 1149 | wbuf->timer.function = wbuf_timer_callback_nolock; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1150 | return 0; |
| 1151 | } |
| 1152 | |
| 1153 | /** |
| 1154 | * ubifs_wbuf_add_ino_nolock - add an inode number into the wbuf inode array. |
Artem Bityutskiy | cb54ef8 | 2009-06-23 20:30:32 +0300 | [diff] [blame] | 1155 | * @wbuf: the write-buffer where to add |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1156 | * @inum: the inode number |
| 1157 | * |
| 1158 | * This function adds an inode number to the inode array of the write-buffer. |
| 1159 | */ |
| 1160 | void ubifs_wbuf_add_ino_nolock(struct ubifs_wbuf *wbuf, ino_t inum) |
| 1161 | { |
| 1162 | if (!wbuf->buf) |
| 1163 | /* NOR flash or something similar */ |
| 1164 | return; |
| 1165 | |
| 1166 | spin_lock(&wbuf->lock); |
| 1167 | if (wbuf->used) |
| 1168 | wbuf->inodes[wbuf->next_ino++] = inum; |
| 1169 | spin_unlock(&wbuf->lock); |
| 1170 | } |
| 1171 | |
| 1172 | /** |
| 1173 | * wbuf_has_ino - returns if the wbuf contains data from the inode. |
| 1174 | * @wbuf: the write-buffer |
| 1175 | * @inum: the inode number |
| 1176 | * |
| 1177 | * This function returns with %1 if the write-buffer contains some data from the |
| 1178 | * given inode otherwise it returns with %0. |
| 1179 | */ |
| 1180 | static int wbuf_has_ino(struct ubifs_wbuf *wbuf, ino_t inum) |
| 1181 | { |
| 1182 | int i, ret = 0; |
| 1183 | |
| 1184 | spin_lock(&wbuf->lock); |
| 1185 | for (i = 0; i < wbuf->next_ino; i++) |
| 1186 | if (inum == wbuf->inodes[i]) { |
| 1187 | ret = 1; |
| 1188 | break; |
| 1189 | } |
| 1190 | spin_unlock(&wbuf->lock); |
| 1191 | |
| 1192 | return ret; |
| 1193 | } |
| 1194 | |
| 1195 | /** |
| 1196 | * ubifs_sync_wbufs_by_inode - synchronize write-buffers for an inode. |
| 1197 | * @c: UBIFS file-system description object |
| 1198 | * @inode: inode to synchronize |
| 1199 | * |
| 1200 | * This function synchronizes write-buffers which contain nodes belonging to |
| 1201 | * @inode. Returns zero in case of success and a negative error code in case of |
| 1202 | * failure. |
| 1203 | */ |
| 1204 | int ubifs_sync_wbufs_by_inode(struct ubifs_info *c, struct inode *inode) |
| 1205 | { |
| 1206 | int i, err = 0; |
| 1207 | |
| 1208 | for (i = 0; i < c->jhead_cnt; i++) { |
| 1209 | struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf; |
| 1210 | |
| 1211 | if (i == GCHD) |
| 1212 | /* |
| 1213 | * GC head is special, do not look at it. Even if the |
| 1214 | * head contains something related to this inode, it is |
| 1215 | * a _copy_ of corresponding on-flash node which sits |
| 1216 | * somewhere else. |
| 1217 | */ |
| 1218 | continue; |
| 1219 | |
| 1220 | if (!wbuf_has_ino(wbuf, inode->i_ino)) |
| 1221 | continue; |
| 1222 | |
| 1223 | mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead); |
| 1224 | if (wbuf_has_ino(wbuf, inode->i_ino)) |
| 1225 | err = ubifs_wbuf_sync_nolock(wbuf); |
| 1226 | mutex_unlock(&wbuf->io_mutex); |
| 1227 | |
| 1228 | if (err) { |
| 1229 | ubifs_ro_mode(c, err); |
| 1230 | return err; |
| 1231 | } |
| 1232 | } |
| 1233 | return 0; |
| 1234 | } |