Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of UBIFS. |
| 3 | * |
| 4 | * Copyright (C) 2006-2008 Nokia Corporation. |
| 5 | * Copyright (C) 2006, 2007 University of Szeged, Hungary |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License version 2 as published by |
| 9 | * the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 14 | * more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * this program; if not, write to the Free Software Foundation, Inc., 51 |
| 18 | * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | * |
| 20 | * Authors: Artem Bityutskiy (Битюцкий Артём) |
| 21 | * Adrian Hunter |
| 22 | * Zoltan Sogor |
| 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * This file implements UBIFS I/O subsystem which provides various I/O-related |
| 27 | * helper functions (reading/writing/checking/validating nodes) and implements |
| 28 | * write-buffering support. Write buffers help to save space which otherwise |
| 29 | * would have been wasted for padding to the nearest minimal I/O unit boundary. |
| 30 | * Instead, data first goes to the write-buffer and is flushed when the |
| 31 | * buffer is full or when it is not used for some time (by timer). This is |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 32 | * similar to the mechanism is used by JFFS2. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 33 | * |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 34 | * UBIFS distinguishes between minimum write size (@c->min_io_size) and maximum |
| 35 | * write size (@c->max_write_size). The latter is the maximum amount of bytes |
| 36 | * the underlying flash is able to program at a time, and writing in |
| 37 | * @c->max_write_size units should presumably be faster. Obviously, |
| 38 | * @c->min_io_size <= @c->max_write_size. Write-buffers are of |
| 39 | * @c->max_write_size bytes in size for maximum performance. However, when a |
| 40 | * write-buffer is flushed, only the portion of it (aligned to @c->min_io_size |
| 41 | * boundary) which contains data is written, not the whole write-buffer, |
| 42 | * because this is more space-efficient. |
| 43 | * |
| 44 | * This optimization adds few complications to the code. Indeed, on the one |
| 45 | * hand, we want to write in optimal @c->max_write_size bytes chunks, which |
| 46 | * also means aligning writes at the @c->max_write_size bytes offsets. On the |
| 47 | * other hand, we do not want to waste space when synchronizing the write |
| 48 | * buffer, so during synchronization we writes in smaller chunks. And this makes |
| 49 | * the next write offset to be not aligned to @c->max_write_size bytes. So the |
| 50 | * have to make sure that the write-buffer offset (@wbuf->offs) becomes aligned |
| 51 | * to @c->max_write_size bytes again. We do this by temporarily shrinking |
| 52 | * write-buffer size (@wbuf->size). |
| 53 | * |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 54 | * Write-buffers are defined by 'struct ubifs_wbuf' objects and protected by |
| 55 | * mutexes defined inside these objects. Since sometimes upper-level code |
| 56 | * has to lock the write-buffer (e.g. journal space reservation code), many |
| 57 | * functions related to write-buffers have "nolock" suffix which means that the |
| 58 | * caller has to lock the write-buffer before calling this function. |
| 59 | * |
| 60 | * UBIFS stores nodes at 64 bit-aligned addresses. If the node length is not |
| 61 | * aligned, UBIFS starts the next node from the aligned address, and the padded |
| 62 | * bytes may contain any rubbish. In other words, UBIFS does not put padding |
| 63 | * bytes in those small gaps. Common headers of nodes store real node lengths, |
| 64 | * not aligned lengths. Indexing nodes also store real lengths in branches. |
| 65 | * |
| 66 | * UBIFS uses padding when it pads to the next min. I/O unit. In this case it |
| 67 | * uses padding nodes or padding bytes, if the padding node does not fit. |
| 68 | * |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 69 | * All UBIFS nodes are protected by CRC checksums and UBIFS checks CRC when |
| 70 | * they are read from the flash media. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 71 | */ |
| 72 | |
| 73 | #include <linux/crc32.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 74 | #include <linux/slab.h> |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 75 | #include "ubifs.h" |
| 76 | |
| 77 | /** |
Adrian Hunter | ff46d7b | 2008-07-21 15:39:05 +0300 | [diff] [blame] | 78 | * ubifs_ro_mode - switch UBIFS to read read-only mode. |
| 79 | * @c: UBIFS file-system description object |
| 80 | * @err: error code which is the reason of switching to R/O mode |
| 81 | */ |
| 82 | void ubifs_ro_mode(struct ubifs_info *c, int err) |
| 83 | { |
Artem Bityutskiy | 2680d72 | 2010-09-17 16:44:28 +0300 | [diff] [blame] | 84 | if (!c->ro_error) { |
| 85 | c->ro_error = 1; |
Artem Bityutskiy | ccb3eba | 2008-09-08 16:07:01 +0300 | [diff] [blame] | 86 | c->no_chk_data_crc = 0; |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 87 | c->vfs_sb->s_flags |= SB_RDONLY; |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 88 | ubifs_warn(c, "switched to read-only mode, error %d", err); |
Artem Bityutskiy | d033c98 | 2011-06-03 13:16:08 +0300 | [diff] [blame] | 89 | dump_stack(); |
Adrian Hunter | ff46d7b | 2008-07-21 15:39:05 +0300 | [diff] [blame] | 90 | } |
| 91 | } |
| 92 | |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 93 | /* |
| 94 | * Below are simple wrappers over UBI I/O functions which include some |
| 95 | * additional checks and UBIFS debugging stuff. See corresponding UBI function |
| 96 | * for more information. |
| 97 | */ |
| 98 | |
| 99 | int ubifs_leb_read(const struct ubifs_info *c, int lnum, void *buf, int offs, |
| 100 | int len, int even_ebadmsg) |
| 101 | { |
| 102 | int err; |
| 103 | |
| 104 | err = ubi_read(c->ubi, lnum, buf, offs, len); |
| 105 | /* |
| 106 | * In case of %-EBADMSG print the error message only if the |
| 107 | * @even_ebadmsg is true. |
| 108 | */ |
| 109 | if (err && (err != -EBADMSG || even_ebadmsg)) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 110 | 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] | 111 | len, lnum, offs, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 112 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 113 | } |
| 114 | return err; |
| 115 | } |
| 116 | |
| 117 | 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] | 118 | int len) |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 119 | { |
| 120 | int err; |
| 121 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 122 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 123 | if (c->ro_error) |
| 124 | return -EROFS; |
| 125 | if (!dbg_is_tst_rcvry(c)) |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 126 | err = ubi_leb_write(c->ubi, lnum, buf, offs, len); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 127 | else |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 128 | err = dbg_leb_write(c, lnum, buf, offs, len); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 129 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 130 | 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] | 131 | len, lnum, offs, err); |
| 132 | ubifs_ro_mode(c, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 133 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 134 | } |
| 135 | return err; |
| 136 | } |
| 137 | |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 138 | 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] | 139 | { |
| 140 | int err; |
| 141 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 142 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 143 | if (c->ro_error) |
| 144 | return -EROFS; |
| 145 | if (!dbg_is_tst_rcvry(c)) |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 146 | err = ubi_leb_change(c->ubi, lnum, buf, len); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 147 | else |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 148 | err = dbg_leb_change(c, lnum, buf, len); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 149 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 150 | ubifs_err(c, "changing %d bytes in LEB %d failed, error %d", |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 151 | len, lnum, err); |
| 152 | ubifs_ro_mode(c, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 153 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 154 | } |
| 155 | return err; |
| 156 | } |
| 157 | |
| 158 | int ubifs_leb_unmap(struct ubifs_info *c, int lnum) |
| 159 | { |
| 160 | int err; |
| 161 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 162 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 163 | if (c->ro_error) |
| 164 | return -EROFS; |
| 165 | if (!dbg_is_tst_rcvry(c)) |
| 166 | err = ubi_leb_unmap(c->ubi, lnum); |
| 167 | else |
Artem Bityutskiy | f57cb18 | 2011-06-03 14:51:41 +0300 | [diff] [blame] | 168 | err = dbg_leb_unmap(c, lnum); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 169 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 170 | ubifs_err(c, "unmap LEB %d failed, error %d", lnum, err); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 171 | ubifs_ro_mode(c, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 172 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 173 | } |
| 174 | return err; |
| 175 | } |
| 176 | |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 177 | int ubifs_leb_map(struct ubifs_info *c, int lnum) |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 178 | { |
| 179 | int err; |
| 180 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 181 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 182 | if (c->ro_error) |
| 183 | return -EROFS; |
| 184 | if (!dbg_is_tst_rcvry(c)) |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 185 | err = ubi_leb_map(c->ubi, lnum); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 186 | else |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 187 | err = dbg_leb_map(c, lnum); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 188 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 189 | ubifs_err(c, "mapping LEB %d failed, error %d", lnum, err); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 190 | ubifs_ro_mode(c, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 191 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 192 | } |
| 193 | return err; |
| 194 | } |
| 195 | |
| 196 | int ubifs_is_mapped(const struct ubifs_info *c, int lnum) |
| 197 | { |
| 198 | int err; |
| 199 | |
| 200 | err = ubi_is_mapped(c->ubi, lnum); |
| 201 | if (err < 0) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 202 | ubifs_err(c, "ubi_is_mapped failed for LEB %d, error %d", |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 203 | lnum, err); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 204 | dump_stack(); |
Artem Bityutskiy | 83cef70 | 2011-06-03 13:45:09 +0300 | [diff] [blame] | 205 | } |
| 206 | return err; |
| 207 | } |
| 208 | |
Adrian Hunter | ff46d7b | 2008-07-21 15:39:05 +0300 | [diff] [blame] | 209 | /** |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 210 | * ubifs_check_node - check node. |
| 211 | * @c: UBIFS file-system description object |
| 212 | * @buf: node to check |
| 213 | * @lnum: logical eraseblock number |
| 214 | * @offs: offset within the logical eraseblock |
| 215 | * @quiet: print no messages |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 216 | * @must_chk_crc: indicates whether to always check the CRC |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 217 | * |
| 218 | * This function checks node magic number and CRC checksum. This function also |
| 219 | * validates node length to prevent UBIFS from becoming crazy when an attacker |
| 220 | * feeds it a file-system image with incorrect nodes. For example, too large |
| 221 | * node length in the common header could cause UBIFS to read memory outside of |
| 222 | * allocated buffer when checking the CRC checksum. |
| 223 | * |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 224 | * This function may skip data nodes CRC checking if @c->no_chk_data_crc is |
| 225 | * true, which is controlled by corresponding UBIFS mount option. However, if |
| 226 | * @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] | 227 | * checked. Similarly, if @c->mounting or @c->remounting_rw is true (we are |
| 228 | * mounting or re-mounting to R/W mode), @c->no_chk_data_crc is ignored and CRC |
| 229 | * is checked. This is because during mounting or re-mounting from R/O mode to |
| 230 | * R/W mode we may read journal nodes (when replying the journal or doing the |
| 231 | * recovery) and the journal nodes may potentially be corrupted, so checking is |
| 232 | * required. |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 233 | * |
| 234 | * This function returns zero in case of success and %-EUCLEAN in case of bad |
| 235 | * CRC or magic. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 236 | */ |
| 237 | 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] | 238 | int offs, int quiet, int must_chk_crc) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 239 | { |
| 240 | int err = -EINVAL, type, node_len; |
| 241 | uint32_t crc, node_crc, magic; |
| 242 | const struct ubifs_ch *ch = buf; |
| 243 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 244 | ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt && offs >= 0); |
| 245 | ubifs_assert(c, !(offs & 7) && offs < c->leb_size); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 246 | |
| 247 | magic = le32_to_cpu(ch->magic); |
| 248 | if (magic != UBIFS_NODE_MAGIC) { |
| 249 | if (!quiet) |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 250 | ubifs_err(c, "bad magic %#08x, expected %#08x", |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 251 | magic, UBIFS_NODE_MAGIC); |
| 252 | err = -EUCLEAN; |
| 253 | goto out; |
| 254 | } |
| 255 | |
| 256 | type = ch->node_type; |
| 257 | if (type < 0 || type >= UBIFS_NODE_TYPES_CNT) { |
| 258 | if (!quiet) |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 259 | ubifs_err(c, "bad node type %d", type); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 260 | goto out; |
| 261 | } |
| 262 | |
| 263 | node_len = le32_to_cpu(ch->len); |
| 264 | if (node_len + offs > c->leb_size) |
| 265 | goto out_len; |
| 266 | |
| 267 | if (c->ranges[type].max_len == 0) { |
| 268 | if (node_len != c->ranges[type].len) |
| 269 | goto out_len; |
| 270 | } else if (node_len < c->ranges[type].min_len || |
| 271 | node_len > c->ranges[type].max_len) |
| 272 | goto out_len; |
| 273 | |
Artem Bityutskiy | 18d1d7f | 2011-01-17 22:27:56 +0200 | [diff] [blame] | 274 | if (!must_chk_crc && type == UBIFS_DATA_NODE && !c->mounting && |
| 275 | !c->remounting_rw && c->no_chk_data_crc) |
Artem Bityutskiy | 6f7ab6d | 2009-01-27 16:12:31 +0200 | [diff] [blame] | 276 | return 0; |
Adrian Hunter | 2953e73 | 2008-09-04 16:26:00 +0300 | [diff] [blame] | 277 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 278 | crc = crc32(UBIFS_CRC32_INIT, buf + 8, node_len - 8); |
| 279 | node_crc = le32_to_cpu(ch->crc); |
| 280 | if (crc != node_crc) { |
| 281 | if (!quiet) |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 282 | ubifs_err(c, "bad CRC: calculated %#08x, read %#08x", |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 283 | crc, node_crc); |
| 284 | err = -EUCLEAN; |
| 285 | goto out; |
| 286 | } |
| 287 | |
| 288 | return 0; |
| 289 | |
| 290 | out_len: |
| 291 | if (!quiet) |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 292 | ubifs_err(c, "bad node length %d", node_len); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 293 | out: |
| 294 | if (!quiet) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 295 | ubifs_err(c, "bad node at LEB %d:%d", lnum, offs); |
Artem Bityutskiy | edf6be2 | 2012-05-16 19:15:56 +0300 | [diff] [blame] | 296 | ubifs_dump_node(c, buf); |
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 | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 322 | ubifs_assert(c, pad >= 0 && !(pad & 7)); |
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 | /** |
| 398 | * ubifs_prepare_node - 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 | * @pad: if the buffer has to be padded |
| 403 | * |
| 404 | * This function prepares node at @node to be written to the media - it |
| 405 | * calculates node CRC, fills the common header, and adds proper padding up to |
| 406 | * the next minimum I/O unit if @pad is not zero. |
| 407 | */ |
| 408 | void ubifs_prepare_node(struct ubifs_info *c, void *node, int len, int pad) |
| 409 | { |
Sascha Hauer | dead972 | 2018-09-07 14:36:31 +0200 | [diff] [blame^] | 410 | ubifs_init_node(c, node, len, pad); |
| 411 | ubifs_crc_node(c, node, len); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | /** |
| 415 | * ubifs_prep_grp_node - prepare node of a group to be written to flash. |
| 416 | * @c: UBIFS file-system description object |
| 417 | * @node: the node to pad |
| 418 | * @len: node length |
| 419 | * @last: indicates the last node of the group |
| 420 | * |
| 421 | * This function prepares node at @node to be written to the media - it |
| 422 | * calculates node CRC and fills the common header. |
| 423 | */ |
| 424 | void ubifs_prep_grp_node(struct ubifs_info *c, void *node, int len, int last) |
| 425 | { |
| 426 | uint32_t crc; |
| 427 | struct ubifs_ch *ch = node; |
| 428 | unsigned long long sqnum = next_sqnum(c); |
| 429 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 430 | ubifs_assert(c, len >= UBIFS_CH_SZ); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 431 | |
| 432 | ch->magic = cpu_to_le32(UBIFS_NODE_MAGIC); |
| 433 | ch->len = cpu_to_le32(len); |
| 434 | if (last) |
| 435 | ch->group_type = UBIFS_LAST_OF_NODE_GROUP; |
| 436 | else |
| 437 | ch->group_type = UBIFS_IN_NODE_GROUP; |
| 438 | ch->sqnum = cpu_to_le64(sqnum); |
| 439 | ch->padding[0] = ch->padding[1] = 0; |
| 440 | crc = crc32(UBIFS_CRC32_INIT, node + 8, len - 8); |
| 441 | ch->crc = cpu_to_le32(crc); |
| 442 | } |
| 443 | |
| 444 | /** |
| 445 | * wbuf_timer_callback - write-buffer timer callback function. |
Fabian Frederick | 39274a1 | 2014-07-15 21:33:51 +0200 | [diff] [blame] | 446 | * @timer: timer data (write-buffer descriptor) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 447 | * |
| 448 | * This function is called when the write-buffer timer expires. |
| 449 | */ |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 450 | static enum hrtimer_restart wbuf_timer_callback_nolock(struct hrtimer *timer) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 451 | { |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 452 | struct ubifs_wbuf *wbuf = container_of(timer, struct ubifs_wbuf, timer); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 453 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 454 | dbg_io("jhead %s", dbg_jhead(wbuf->jhead)); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 455 | wbuf->need_sync = 1; |
| 456 | wbuf->c->need_wbuf_sync = 1; |
| 457 | ubifs_wake_up_bgt(wbuf->c); |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 458 | return HRTIMER_NORESTART; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | /** |
| 462 | * new_wbuf_timer - start new write-buffer timer. |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 463 | * @c: UBIFS file-system description object |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 464 | * @wbuf: write-buffer descriptor |
| 465 | */ |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 466 | 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] | 467 | { |
Rafał Miłecki | 1b7fc2c | 2016-09-20 10:36:15 +0200 | [diff] [blame] | 468 | ktime_t softlimit = ms_to_ktime(dirty_writeback_interval * 10); |
| 469 | unsigned long long delta = dirty_writeback_interval; |
Rafał Miłecki | 854826c | 2016-09-20 10:36:14 +0200 | [diff] [blame] | 470 | |
Rafał Miłecki | 1b7fc2c | 2016-09-20 10:36:15 +0200 | [diff] [blame] | 471 | /* centi to milli, milli to nano, then 10% */ |
| 472 | delta *= 10ULL * NSEC_PER_MSEC / 10ULL; |
Rafał Miłecki | 854826c | 2016-09-20 10:36:14 +0200 | [diff] [blame] | 473 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 474 | ubifs_assert(c, !hrtimer_active(&wbuf->timer)); |
| 475 | ubifs_assert(c, delta <= ULONG_MAX); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 476 | |
Artem Bityutskiy | 0b335b9 | 2009-06-23 12:30:43 +0300 | [diff] [blame] | 477 | if (wbuf->no_timer) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 478 | return; |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 479 | dbg_io("set timer for jhead %s, %llu-%llu millisecs", |
| 480 | dbg_jhead(wbuf->jhead), |
Rafał Miłecki | 854826c | 2016-09-20 10:36:14 +0200 | [diff] [blame] | 481 | div_u64(ktime_to_ns(softlimit), USEC_PER_SEC), |
| 482 | div_u64(ktime_to_ns(softlimit) + delta, USEC_PER_SEC)); |
| 483 | hrtimer_start_range_ns(&wbuf->timer, softlimit, delta, |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 484 | HRTIMER_MODE_REL); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | /** |
| 488 | * cancel_wbuf_timer - cancel write-buffer timer. |
| 489 | * @wbuf: write-buffer descriptor |
| 490 | */ |
| 491 | static void cancel_wbuf_timer_nolock(struct ubifs_wbuf *wbuf) |
| 492 | { |
Artem Bityutskiy | 0b335b9 | 2009-06-23 12:30:43 +0300 | [diff] [blame] | 493 | if (wbuf->no_timer) |
| 494 | return; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 495 | wbuf->need_sync = 0; |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 496 | hrtimer_cancel(&wbuf->timer); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | /** |
| 500 | * ubifs_wbuf_sync_nolock - synchronize write-buffer. |
| 501 | * @wbuf: write-buffer to synchronize |
| 502 | * |
| 503 | * This function synchronizes write-buffer @buf and returns zero in case of |
| 504 | * success or a negative error code in case of failure. |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 505 | * |
| 506 | * Note, although write-buffers are of @c->max_write_size, this function does |
| 507 | * not necessarily writes all @c->max_write_size bytes to the flash. Instead, |
| 508 | * if the write-buffer is only partially filled with data, only the used part |
| 509 | * of the write-buffer (aligned on @c->min_io_size boundary) is synchronized. |
| 510 | * This way we waste less space. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 511 | */ |
| 512 | int ubifs_wbuf_sync_nolock(struct ubifs_wbuf *wbuf) |
| 513 | { |
| 514 | struct ubifs_info *c = wbuf->c; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 515 | int err, dirt, sync_len; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 516 | |
| 517 | cancel_wbuf_timer_nolock(wbuf); |
| 518 | if (!wbuf->used || wbuf->lnum == -1) |
| 519 | /* Write-buffer is empty or not seeked */ |
| 520 | return 0; |
| 521 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 522 | dbg_io("LEB %d:%d, %d bytes, jhead %s", |
| 523 | wbuf->lnum, wbuf->offs, wbuf->used, dbg_jhead(wbuf->jhead)); |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 524 | ubifs_assert(c, !(wbuf->avail & 7)); |
| 525 | ubifs_assert(c, wbuf->offs + wbuf->size <= c->leb_size); |
| 526 | ubifs_assert(c, wbuf->size >= c->min_io_size); |
| 527 | ubifs_assert(c, wbuf->size <= c->max_write_size); |
| 528 | ubifs_assert(c, wbuf->size % c->min_io_size == 0); |
| 529 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 530 | if (c->leb_size - wbuf->offs >= c->max_write_size) |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 531 | ubifs_assert(c, !((wbuf->offs + wbuf->size) % c->max_write_size)); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 532 | |
Artem Bityutskiy | 2680d72 | 2010-09-17 16:44:28 +0300 | [diff] [blame] | 533 | if (c->ro_error) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 534 | return -EROFS; |
| 535 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 536 | /* |
| 537 | * Do not write whole write buffer but write only the minimum necessary |
| 538 | * amount of min. I/O units. |
| 539 | */ |
| 540 | sync_len = ALIGN(wbuf->used, c->min_io_size); |
| 541 | dirt = sync_len - wbuf->used; |
| 542 | if (dirt) |
| 543 | ubifs_pad(c, wbuf->buf + wbuf->used, dirt); |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 544 | 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] | 545 | if (err) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 546 | return err; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 547 | |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 548 | spin_lock(&wbuf->lock); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 549 | wbuf->offs += sync_len; |
| 550 | /* |
| 551 | * Now @wbuf->offs is not necessarily aligned to @c->max_write_size. |
| 552 | * But our goal is to optimize writes and make sure we write in |
| 553 | * @c->max_write_size chunks and to @c->max_write_size-aligned offset. |
| 554 | * Thus, if @wbuf->offs is not aligned to @c->max_write_size now, make |
| 555 | * sure that @wbuf->offs + @wbuf->size is aligned to |
| 556 | * @c->max_write_size. This way we make sure that after next |
| 557 | * write-buffer flush we are again at the optimal offset (aligned to |
| 558 | * @c->max_write_size). |
| 559 | */ |
| 560 | if (c->leb_size - wbuf->offs < c->max_write_size) |
| 561 | wbuf->size = c->leb_size - wbuf->offs; |
| 562 | else if (wbuf->offs & (c->max_write_size - 1)) |
| 563 | wbuf->size = ALIGN(wbuf->offs, c->max_write_size) - wbuf->offs; |
| 564 | else |
| 565 | wbuf->size = c->max_write_size; |
| 566 | wbuf->avail = wbuf->size; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 567 | wbuf->used = 0; |
| 568 | wbuf->next_ino = 0; |
| 569 | spin_unlock(&wbuf->lock); |
| 570 | |
| 571 | if (wbuf->sync_callback) |
| 572 | err = wbuf->sync_callback(c, wbuf->lnum, |
| 573 | c->leb_size - wbuf->offs, dirt); |
| 574 | return err; |
| 575 | } |
| 576 | |
| 577 | /** |
| 578 | * ubifs_wbuf_seek_nolock - seek write-buffer. |
| 579 | * @wbuf: write-buffer |
| 580 | * @lnum: logical eraseblock number to seek to |
| 581 | * @offs: logical eraseblock offset to seek to |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 582 | * |
Artem Bityutskiy | cb54ef8 | 2009-06-23 20:30:32 +0300 | [diff] [blame] | 583 | * This function targets the write-buffer to logical eraseblock @lnum:@offs. |
Artem Bityutskiy | cb14a18 | 2011-05-15 14:51:54 +0300 | [diff] [blame] | 584 | * The write-buffer has to be empty. Returns zero in case of success and a |
| 585 | * negative error code in case of failure. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 586 | */ |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 587 | 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] | 588 | { |
| 589 | const struct ubifs_info *c = wbuf->c; |
| 590 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 591 | 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] | 592 | ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt); |
| 593 | ubifs_assert(c, offs >= 0 && offs <= c->leb_size); |
| 594 | ubifs_assert(c, offs % c->min_io_size == 0 && !(offs & 7)); |
| 595 | ubifs_assert(c, lnum != wbuf->lnum); |
| 596 | ubifs_assert(c, wbuf->used == 0); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 597 | |
| 598 | spin_lock(&wbuf->lock); |
| 599 | wbuf->lnum = lnum; |
| 600 | wbuf->offs = offs; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 601 | if (c->leb_size - wbuf->offs < c->max_write_size) |
| 602 | wbuf->size = c->leb_size - wbuf->offs; |
| 603 | else if (wbuf->offs & (c->max_write_size - 1)) |
| 604 | wbuf->size = ALIGN(wbuf->offs, c->max_write_size) - wbuf->offs; |
| 605 | else |
| 606 | wbuf->size = c->max_write_size; |
| 607 | wbuf->avail = wbuf->size; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 608 | wbuf->used = 0; |
| 609 | spin_unlock(&wbuf->lock); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 610 | |
| 611 | return 0; |
| 612 | } |
| 613 | |
| 614 | /** |
| 615 | * ubifs_bg_wbufs_sync - synchronize write-buffers. |
| 616 | * @c: UBIFS file-system description object |
| 617 | * |
| 618 | * This function is called by background thread to synchronize write-buffers. |
| 619 | * Returns zero in case of success and a negative error code in case of |
| 620 | * failure. |
| 621 | */ |
| 622 | int ubifs_bg_wbufs_sync(struct ubifs_info *c) |
| 623 | { |
| 624 | int err, i; |
| 625 | |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 626 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 627 | if (!c->need_wbuf_sync) |
| 628 | return 0; |
| 629 | c->need_wbuf_sync = 0; |
| 630 | |
Artem Bityutskiy | 2680d72 | 2010-09-17 16:44:28 +0300 | [diff] [blame] | 631 | if (c->ro_error) { |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 632 | err = -EROFS; |
| 633 | goto out_timers; |
| 634 | } |
| 635 | |
| 636 | dbg_io("synchronize"); |
| 637 | for (i = 0; i < c->jhead_cnt; i++) { |
| 638 | struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf; |
| 639 | |
| 640 | cond_resched(); |
| 641 | |
| 642 | /* |
| 643 | * If the mutex is locked then wbuf is being changed, so |
| 644 | * synchronization is not necessary. |
| 645 | */ |
| 646 | if (mutex_is_locked(&wbuf->io_mutex)) |
| 647 | continue; |
| 648 | |
| 649 | mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead); |
| 650 | if (!wbuf->need_sync) { |
| 651 | mutex_unlock(&wbuf->io_mutex); |
| 652 | continue; |
| 653 | } |
| 654 | |
| 655 | err = ubifs_wbuf_sync_nolock(wbuf); |
| 656 | mutex_unlock(&wbuf->io_mutex); |
| 657 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 658 | ubifs_err(c, "cannot sync write-buffer, error %d", err); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 659 | ubifs_ro_mode(c, err); |
| 660 | goto out_timers; |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | return 0; |
| 665 | |
| 666 | out_timers: |
| 667 | /* Cancel all timers to prevent repeated errors */ |
| 668 | for (i = 0; i < c->jhead_cnt; i++) { |
| 669 | struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf; |
| 670 | |
| 671 | mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead); |
| 672 | cancel_wbuf_timer_nolock(wbuf); |
| 673 | mutex_unlock(&wbuf->io_mutex); |
| 674 | } |
| 675 | return err; |
| 676 | } |
| 677 | |
| 678 | /** |
| 679 | * ubifs_wbuf_write_nolock - write data to flash via write-buffer. |
| 680 | * @wbuf: write-buffer |
| 681 | * @buf: node to write |
| 682 | * @len: node length |
| 683 | * |
| 684 | * This function writes data to flash via write-buffer @wbuf. This means that |
| 685 | * 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] | 686 | * does not take whole max. write unit (@c->max_write_size). Instead, the node |
| 687 | * will sit in RAM until the write-buffer is synchronized (e.g., by timer, or |
| 688 | * because more data are appended to the write-buffer). |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 689 | * |
| 690 | * This function returns zero in case of success and a negative error code in |
| 691 | * case of failure. If the node cannot be written because there is no more |
| 692 | * space in this logical eraseblock, %-ENOSPC is returned. |
| 693 | */ |
| 694 | int ubifs_wbuf_write_nolock(struct ubifs_wbuf *wbuf, void *buf, int len) |
| 695 | { |
| 696 | struct ubifs_info *c = wbuf->c; |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 697 | int err, written, n, aligned_len = ALIGN(len, 8); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 698 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 699 | dbg_io("%d bytes (%s) to jhead %s wbuf at LEB %d:%d", len, |
| 700 | dbg_ntype(((struct ubifs_ch *)buf)->node_type), |
| 701 | dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs + wbuf->used); |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 702 | ubifs_assert(c, len > 0 && wbuf->lnum >= 0 && wbuf->lnum < c->leb_cnt); |
| 703 | ubifs_assert(c, wbuf->offs >= 0 && wbuf->offs % c->min_io_size == 0); |
| 704 | ubifs_assert(c, !(wbuf->offs & 7) && wbuf->offs <= c->leb_size); |
| 705 | ubifs_assert(c, wbuf->avail > 0 && wbuf->avail <= wbuf->size); |
| 706 | ubifs_assert(c, wbuf->size >= c->min_io_size); |
| 707 | ubifs_assert(c, wbuf->size <= c->max_write_size); |
| 708 | ubifs_assert(c, wbuf->size % c->min_io_size == 0); |
| 709 | ubifs_assert(c, mutex_is_locked(&wbuf->io_mutex)); |
| 710 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
| 711 | ubifs_assert(c, !c->space_fixup); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 712 | if (c->leb_size - wbuf->offs >= c->max_write_size) |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 713 | ubifs_assert(c, !((wbuf->offs + wbuf->size) % c->max_write_size)); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 714 | |
| 715 | if (c->leb_size - wbuf->offs - wbuf->used < aligned_len) { |
| 716 | err = -ENOSPC; |
| 717 | goto out; |
| 718 | } |
| 719 | |
| 720 | cancel_wbuf_timer_nolock(wbuf); |
| 721 | |
Artem Bityutskiy | 2680d72 | 2010-09-17 16:44:28 +0300 | [diff] [blame] | 722 | if (c->ro_error) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 723 | return -EROFS; |
| 724 | |
| 725 | if (aligned_len <= wbuf->avail) { |
| 726 | /* |
| 727 | * The node is not very large and fits entirely within |
| 728 | * write-buffer. |
| 729 | */ |
| 730 | memcpy(wbuf->buf + wbuf->used, buf, len); |
| 731 | |
| 732 | if (aligned_len == wbuf->avail) { |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 733 | dbg_io("flush jhead %s wbuf to LEB %d:%d", |
| 734 | dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 735 | err = ubifs_leb_write(c, wbuf->lnum, wbuf->buf, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 736 | wbuf->offs, wbuf->size); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 737 | if (err) |
| 738 | goto out; |
| 739 | |
| 740 | spin_lock(&wbuf->lock); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 741 | wbuf->offs += wbuf->size; |
| 742 | if (c->leb_size - wbuf->offs >= c->max_write_size) |
| 743 | wbuf->size = c->max_write_size; |
| 744 | else |
| 745 | wbuf->size = c->leb_size - wbuf->offs; |
| 746 | wbuf->avail = wbuf->size; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 747 | wbuf->used = 0; |
| 748 | wbuf->next_ino = 0; |
| 749 | spin_unlock(&wbuf->lock); |
| 750 | } else { |
| 751 | spin_lock(&wbuf->lock); |
| 752 | wbuf->avail -= aligned_len; |
| 753 | wbuf->used += aligned_len; |
| 754 | spin_unlock(&wbuf->lock); |
| 755 | } |
| 756 | |
| 757 | goto exit; |
| 758 | } |
| 759 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 760 | written = 0; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 761 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 762 | if (wbuf->used) { |
| 763 | /* |
| 764 | * The node is large enough and does not fit entirely within |
| 765 | * current available space. We have to fill and flush |
| 766 | * write-buffer and switch to the next max. write unit. |
| 767 | */ |
| 768 | dbg_io("flush jhead %s wbuf to LEB %d:%d", |
| 769 | dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs); |
| 770 | memcpy(wbuf->buf + wbuf->used, buf, wbuf->avail); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 771 | err = ubifs_leb_write(c, wbuf->lnum, wbuf->buf, wbuf->offs, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 772 | wbuf->size); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 773 | if (err) |
| 774 | goto out; |
| 775 | |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 776 | wbuf->offs += wbuf->size; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 777 | len -= wbuf->avail; |
| 778 | aligned_len -= wbuf->avail; |
| 779 | written += wbuf->avail; |
| 780 | } else if (wbuf->offs & (c->max_write_size - 1)) { |
| 781 | /* |
| 782 | * The write-buffer offset is not aligned to |
| 783 | * @c->max_write_size and @wbuf->size is less than |
| 784 | * @c->max_write_size. Write @wbuf->size bytes to make sure the |
| 785 | * following writes are done in optimal @c->max_write_size |
| 786 | * chunks. |
| 787 | */ |
| 788 | dbg_io("write %d bytes to LEB %d:%d", |
| 789 | wbuf->size, wbuf->lnum, wbuf->offs); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 790 | err = ubifs_leb_write(c, wbuf->lnum, buf, wbuf->offs, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 791 | wbuf->size); |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 792 | if (err) |
| 793 | goto out; |
| 794 | |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 795 | wbuf->offs += wbuf->size; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 796 | len -= wbuf->size; |
| 797 | aligned_len -= wbuf->size; |
| 798 | written += wbuf->size; |
| 799 | } |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 800 | |
| 801 | /* |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 802 | * The remaining data may take more whole max. write units, so write the |
| 803 | * remains multiple to max. write unit size directly to the flash media. |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 804 | * We align node length to 8-byte boundary because we anyway flash wbuf |
| 805 | * if the remaining space is less than 8 bytes. |
| 806 | */ |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 807 | n = aligned_len >> c->max_write_shift; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 808 | if (n) { |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 809 | n <<= c->max_write_shift; |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 810 | dbg_io("write %d bytes to LEB %d:%d", n, wbuf->lnum, |
| 811 | wbuf->offs); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 812 | err = ubifs_leb_write(c, wbuf->lnum, buf + written, |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 813 | wbuf->offs, n); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 814 | if (err) |
| 815 | goto out; |
Artem Bityutskiy | 12f3389 | 2011-05-14 17:37:47 +0300 | [diff] [blame] | 816 | wbuf->offs += n; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 817 | aligned_len -= n; |
| 818 | len -= n; |
| 819 | written += n; |
| 820 | } |
| 821 | |
| 822 | spin_lock(&wbuf->lock); |
| 823 | if (aligned_len) |
| 824 | /* |
| 825 | * 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] | 826 | * 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] | 827 | * done. |
| 828 | */ |
| 829 | memcpy(wbuf->buf, buf + written, len); |
| 830 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 831 | if (c->leb_size - wbuf->offs >= c->max_write_size) |
| 832 | wbuf->size = c->max_write_size; |
| 833 | else |
| 834 | wbuf->size = c->leb_size - wbuf->offs; |
| 835 | wbuf->avail = wbuf->size - aligned_len; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 836 | wbuf->used = aligned_len; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 837 | wbuf->next_ino = 0; |
| 838 | spin_unlock(&wbuf->lock); |
| 839 | |
| 840 | exit: |
| 841 | if (wbuf->sync_callback) { |
| 842 | int free = c->leb_size - wbuf->offs - wbuf->used; |
| 843 | |
| 844 | err = wbuf->sync_callback(c, wbuf->lnum, free, 0); |
| 845 | if (err) |
| 846 | goto out; |
| 847 | } |
| 848 | |
| 849 | if (wbuf->used) |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 850 | new_wbuf_timer_nolock(c, wbuf); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 851 | |
| 852 | return 0; |
| 853 | |
| 854 | out: |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 855 | 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] | 856 | len, wbuf->lnum, wbuf->offs, err); |
Artem Bityutskiy | edf6be2 | 2012-05-16 19:15:56 +0300 | [diff] [blame] | 857 | ubifs_dump_node(c, buf); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 858 | dump_stack(); |
Artem Bityutskiy | edf6be2 | 2012-05-16 19:15:56 +0300 | [diff] [blame] | 859 | ubifs_dump_leb(c, wbuf->lnum); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 860 | return err; |
| 861 | } |
| 862 | |
| 863 | /** |
| 864 | * ubifs_write_node - write node to the media. |
| 865 | * @c: UBIFS file-system description object |
| 866 | * @buf: the node to write |
| 867 | * @len: node length |
| 868 | * @lnum: logical eraseblock number |
| 869 | * @offs: offset within the logical eraseblock |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 870 | * |
| 871 | * This function automatically fills node magic number, assigns sequence |
| 872 | * number, and calculates node CRC checksum. The length of the @buf buffer has |
| 873 | * to be aligned to the minimal I/O unit size. This function automatically |
| 874 | * appends padding node and padding bytes if needed. Returns zero in case of |
| 875 | * success and a negative error code in case of failure. |
| 876 | */ |
| 877 | 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] | 878 | int offs) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 879 | { |
| 880 | int err, buf_len = ALIGN(len, c->min_io_size); |
| 881 | |
| 882 | dbg_io("LEB %d:%d, %s, length %d (aligned %d)", |
| 883 | lnum, offs, dbg_ntype(((struct ubifs_ch *)buf)->node_type), len, |
| 884 | buf_len); |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 885 | ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt && offs >= 0); |
| 886 | ubifs_assert(c, offs % c->min_io_size == 0 && offs < c->leb_size); |
| 887 | ubifs_assert(c, !c->ro_media && !c->ro_mount); |
| 888 | ubifs_assert(c, !c->space_fixup); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 889 | |
Artem Bityutskiy | 2680d72 | 2010-09-17 16:44:28 +0300 | [diff] [blame] | 890 | if (c->ro_error) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 891 | return -EROFS; |
| 892 | |
| 893 | ubifs_prepare_node(c, buf, len, 1); |
Richard Weinberger | b36a261 | 2012-05-14 17:55:51 +0200 | [diff] [blame] | 894 | err = ubifs_leb_write(c, lnum, buf, offs, buf_len); |
Artem Bityutskiy | 987226a | 2011-06-03 14:12:10 +0300 | [diff] [blame] | 895 | if (err) |
Artem Bityutskiy | edf6be2 | 2012-05-16 19:15:56 +0300 | [diff] [blame] | 896 | ubifs_dump_node(c, buf); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 897 | |
| 898 | return err; |
| 899 | } |
| 900 | |
| 901 | /** |
| 902 | * ubifs_read_node_wbuf - read node from the media or write-buffer. |
| 903 | * @wbuf: wbuf to check for un-written data |
| 904 | * @buf: buffer to read to |
| 905 | * @type: node type |
| 906 | * @len: node length |
| 907 | * @lnum: logical eraseblock number |
| 908 | * @offs: offset within the logical eraseblock |
| 909 | * |
| 910 | * This function reads a node of known type and length, checks it and stores |
| 911 | * in @buf. If the node partially or fully sits in the write-buffer, this |
| 912 | * function takes data from the buffer, otherwise it reads the flash media. |
| 913 | * Returns zero in case of success, %-EUCLEAN if CRC mismatched and a negative |
| 914 | * error code in case of failure. |
| 915 | */ |
| 916 | int ubifs_read_node_wbuf(struct ubifs_wbuf *wbuf, void *buf, int type, int len, |
| 917 | int lnum, int offs) |
| 918 | { |
| 919 | const struct ubifs_info *c = wbuf->c; |
| 920 | int err, rlen, overlap; |
| 921 | struct ubifs_ch *ch = buf; |
| 922 | |
Artem Bityutskiy | 77a7ae5 | 2009-09-15 15:03:51 +0300 | [diff] [blame] | 923 | dbg_io("LEB %d:%d, %s, length %d, jhead %s", lnum, offs, |
| 924 | dbg_ntype(type), len, dbg_jhead(wbuf->jhead)); |
Richard Weinberger | 6eb61d5 | 2018-07-12 13:01:57 +0200 | [diff] [blame] | 925 | ubifs_assert(c, wbuf && lnum >= 0 && lnum < c->leb_cnt && offs >= 0); |
| 926 | ubifs_assert(c, !(offs & 7) && offs < c->leb_size); |
| 927 | ubifs_assert(c, type >= 0 && type < UBIFS_NODE_TYPES_CNT); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 928 | |
| 929 | spin_lock(&wbuf->lock); |
| 930 | overlap = (lnum == wbuf->lnum && offs + len > wbuf->offs); |
| 931 | if (!overlap) { |
| 932 | /* We may safely unlock the write-buffer and read the data */ |
| 933 | spin_unlock(&wbuf->lock); |
| 934 | return ubifs_read_node(c, buf, type, len, lnum, offs); |
| 935 | } |
| 936 | |
| 937 | /* Don't read under wbuf */ |
| 938 | rlen = wbuf->offs - offs; |
| 939 | if (rlen < 0) |
| 940 | rlen = 0; |
| 941 | |
| 942 | /* Copy the rest from the write-buffer */ |
| 943 | memcpy(buf + rlen, wbuf->buf + offs + rlen - wbuf->offs, len - rlen); |
| 944 | spin_unlock(&wbuf->lock); |
| 945 | |
| 946 | if (rlen > 0) { |
| 947 | /* Read everything that goes before write-buffer */ |
Artem Bityutskiy | d304820 | 2011-06-03 14:03:25 +0300 | [diff] [blame] | 948 | err = ubifs_leb_read(c, lnum, buf, offs, rlen, 0); |
| 949 | if (err && err != -EBADMSG) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 950 | return err; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 951 | } |
| 952 | |
| 953 | if (type != ch->node_type) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 954 | ubifs_err(c, "bad node type (%d but expected %d)", |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 955 | ch->node_type, type); |
| 956 | goto out; |
| 957 | } |
| 958 | |
Adrian Hunter | 2953e73 | 2008-09-04 16:26:00 +0300 | [diff] [blame] | 959 | err = ubifs_check_node(c, buf, lnum, offs, 0, 0); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 960 | if (err) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 961 | ubifs_err(c, "expected node type %d", type); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 962 | return err; |
| 963 | } |
| 964 | |
| 965 | rlen = le32_to_cpu(ch->len); |
| 966 | if (rlen != len) { |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 967 | ubifs_err(c, "bad node length %d, expected %d", rlen, len); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 968 | goto out; |
| 969 | } |
| 970 | |
| 971 | return 0; |
| 972 | |
| 973 | out: |
Sheng Yong | 235c362 | 2015-03-20 10:39:42 +0000 | [diff] [blame] | 974 | ubifs_err(c, "bad node at LEB %d:%d", lnum, offs); |
Artem Bityutskiy | edf6be2 | 2012-05-16 19:15:56 +0300 | [diff] [blame] | 975 | ubifs_dump_node(c, buf); |
Artem Bityutskiy | 7c46d0a | 2012-05-16 19:04:54 +0300 | [diff] [blame] | 976 | dump_stack(); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 977 | return -EINVAL; |
| 978 | } |
| 979 | |
| 980 | /** |
| 981 | * ubifs_read_node - read node. |
| 982 | * @c: UBIFS file-system description object |
| 983 | * @buf: buffer to read to |
| 984 | * @type: node type |
| 985 | * @len: node length (not aligned) |
| 986 | * @lnum: logical eraseblock number |
| 987 | * @offs: offset within the logical eraseblock |
| 988 | * |
| 989 | * This function reads a node of known type and and length, checks it and |
| 990 | * stores in @buf. Returns zero in case of success, %-EUCLEAN if CRC mismatched |
| 991 | * and a negative error code in case of failure. |
| 992 | */ |
| 993 | int ubifs_read_node(const struct ubifs_info *c, void *buf, int type, int len, |
| 994 | int lnum, int offs) |
| 995 | { |
| 996 | int err, l; |
| 997 | struct ubifs_ch *ch = buf; |
| 998 | |
| 999 | 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] | 1000 | ubifs_assert(c, lnum >= 0 && lnum < c->leb_cnt && offs >= 0); |
| 1001 | ubifs_assert(c, len >= UBIFS_CH_SZ && offs + len <= c->leb_size); |
| 1002 | ubifs_assert(c, !(offs & 7) && offs < c->leb_size); |
| 1003 | ubifs_assert(c, type >= 0 && type < UBIFS_NODE_TYPES_CNT); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1004 | |
Artem Bityutskiy | d304820 | 2011-06-03 14:03:25 +0300 | [diff] [blame] | 1005 | err = ubifs_leb_read(c, lnum, buf, offs, len, 0); |
| 1006 | if (err && err != -EBADMSG) |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1007 | return err; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1008 | |
| 1009 | if (type != ch->node_type) { |
Daniel Golle | 90bea5a3 | 2014-06-02 15:51:10 +0200 | [diff] [blame] | 1010 | ubifs_errc(c, "bad node type (%d but expected %d)", |
| 1011 | ch->node_type, type); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1012 | goto out; |
| 1013 | } |
| 1014 | |
Adrian Hunter | 2953e73 | 2008-09-04 16:26:00 +0300 | [diff] [blame] | 1015 | err = ubifs_check_node(c, buf, lnum, offs, 0, 0); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1016 | if (err) { |
Daniel Golle | 90bea5a3 | 2014-06-02 15:51:10 +0200 | [diff] [blame] | 1017 | ubifs_errc(c, "expected node type %d", type); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1018 | return err; |
| 1019 | } |
| 1020 | |
| 1021 | l = le32_to_cpu(ch->len); |
| 1022 | if (l != len) { |
Daniel Golle | 90bea5a3 | 2014-06-02 15:51:10 +0200 | [diff] [blame] | 1023 | ubifs_errc(c, "bad node length %d, expected %d", l, len); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1024 | goto out; |
| 1025 | } |
| 1026 | |
| 1027 | return 0; |
| 1028 | |
| 1029 | out: |
Daniel Golle | 90bea5a3 | 2014-06-02 15:51:10 +0200 | [diff] [blame] | 1030 | ubifs_errc(c, "bad node at LEB %d:%d, LEB mapping status %d", lnum, |
| 1031 | offs, ubi_is_mapped(c->ubi, lnum)); |
| 1032 | if (!c->probing) { |
| 1033 | ubifs_dump_node(c, buf); |
| 1034 | dump_stack(); |
| 1035 | } |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1036 | return -EINVAL; |
| 1037 | } |
| 1038 | |
| 1039 | /** |
| 1040 | * ubifs_wbuf_init - initialize write-buffer. |
| 1041 | * @c: UBIFS file-system description object |
| 1042 | * @wbuf: write-buffer to initialize |
| 1043 | * |
Artem Bityutskiy | cb54ef8 | 2009-06-23 20:30:32 +0300 | [diff] [blame] | 1044 | * This function initializes write-buffer. Returns zero in case of success |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1045 | * %-ENOMEM in case of failure. |
| 1046 | */ |
| 1047 | int ubifs_wbuf_init(struct ubifs_info *c, struct ubifs_wbuf *wbuf) |
| 1048 | { |
| 1049 | size_t size; |
| 1050 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 1051 | wbuf->buf = kmalloc(c->max_write_size, GFP_KERNEL); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1052 | if (!wbuf->buf) |
| 1053 | return -ENOMEM; |
| 1054 | |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 1055 | size = (c->max_write_size / UBIFS_CH_SZ + 1) * sizeof(ino_t); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1056 | wbuf->inodes = kmalloc(size, GFP_KERNEL); |
| 1057 | if (!wbuf->inodes) { |
| 1058 | kfree(wbuf->buf); |
| 1059 | wbuf->buf = NULL; |
| 1060 | return -ENOMEM; |
| 1061 | } |
| 1062 | |
| 1063 | wbuf->used = 0; |
| 1064 | wbuf->lnum = wbuf->offs = -1; |
Artem Bityutskiy | 6c7f74f | 2011-02-06 14:45:26 +0200 | [diff] [blame] | 1065 | /* |
| 1066 | * If the LEB starts at the max. write size aligned address, then |
| 1067 | * write-buffer size has to be set to @c->max_write_size. Otherwise, |
| 1068 | * set it to something smaller so that it ends at the closest max. |
| 1069 | * write size boundary. |
| 1070 | */ |
| 1071 | size = c->max_write_size - (c->leb_start % c->max_write_size); |
| 1072 | wbuf->avail = wbuf->size = size; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1073 | wbuf->sync_callback = NULL; |
| 1074 | mutex_init(&wbuf->io_mutex); |
| 1075 | spin_lock_init(&wbuf->lock); |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1076 | wbuf->c = c; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1077 | wbuf->next_ino = 0; |
| 1078 | |
Artem Bityutskiy | f2c5dbd | 2009-05-28 16:24:15 +0300 | [diff] [blame] | 1079 | hrtimer_init(&wbuf->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 1080 | wbuf->timer.function = wbuf_timer_callback_nolock; |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1081 | return 0; |
| 1082 | } |
| 1083 | |
| 1084 | /** |
| 1085 | * 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] | 1086 | * @wbuf: the write-buffer where to add |
Artem Bityutskiy | 1e51764 | 2008-07-14 19:08:37 +0300 | [diff] [blame] | 1087 | * @inum: the inode number |
| 1088 | * |
| 1089 | * This function adds an inode number to the inode array of the write-buffer. |
| 1090 | */ |
| 1091 | void ubifs_wbuf_add_ino_nolock(struct ubifs_wbuf *wbuf, ino_t inum) |
| 1092 | { |
| 1093 | if (!wbuf->buf) |
| 1094 | /* NOR flash or something similar */ |
| 1095 | return; |
| 1096 | |
| 1097 | spin_lock(&wbuf->lock); |
| 1098 | if (wbuf->used) |
| 1099 | wbuf->inodes[wbuf->next_ino++] = inum; |
| 1100 | spin_unlock(&wbuf->lock); |
| 1101 | } |
| 1102 | |
| 1103 | /** |
| 1104 | * wbuf_has_ino - returns if the wbuf contains data from the inode. |
| 1105 | * @wbuf: the write-buffer |
| 1106 | * @inum: the inode number |
| 1107 | * |
| 1108 | * This function returns with %1 if the write-buffer contains some data from the |
| 1109 | * given inode otherwise it returns with %0. |
| 1110 | */ |
| 1111 | static int wbuf_has_ino(struct ubifs_wbuf *wbuf, ino_t inum) |
| 1112 | { |
| 1113 | int i, ret = 0; |
| 1114 | |
| 1115 | spin_lock(&wbuf->lock); |
| 1116 | for (i = 0; i < wbuf->next_ino; i++) |
| 1117 | if (inum == wbuf->inodes[i]) { |
| 1118 | ret = 1; |
| 1119 | break; |
| 1120 | } |
| 1121 | spin_unlock(&wbuf->lock); |
| 1122 | |
| 1123 | return ret; |
| 1124 | } |
| 1125 | |
| 1126 | /** |
| 1127 | * ubifs_sync_wbufs_by_inode - synchronize write-buffers for an inode. |
| 1128 | * @c: UBIFS file-system description object |
| 1129 | * @inode: inode to synchronize |
| 1130 | * |
| 1131 | * This function synchronizes write-buffers which contain nodes belonging to |
| 1132 | * @inode. Returns zero in case of success and a negative error code in case of |
| 1133 | * failure. |
| 1134 | */ |
| 1135 | int ubifs_sync_wbufs_by_inode(struct ubifs_info *c, struct inode *inode) |
| 1136 | { |
| 1137 | int i, err = 0; |
| 1138 | |
| 1139 | for (i = 0; i < c->jhead_cnt; i++) { |
| 1140 | struct ubifs_wbuf *wbuf = &c->jheads[i].wbuf; |
| 1141 | |
| 1142 | if (i == GCHD) |
| 1143 | /* |
| 1144 | * GC head is special, do not look at it. Even if the |
| 1145 | * head contains something related to this inode, it is |
| 1146 | * a _copy_ of corresponding on-flash node which sits |
| 1147 | * somewhere else. |
| 1148 | */ |
| 1149 | continue; |
| 1150 | |
| 1151 | if (!wbuf_has_ino(wbuf, inode->i_ino)) |
| 1152 | continue; |
| 1153 | |
| 1154 | mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead); |
| 1155 | if (wbuf_has_ino(wbuf, inode->i_ino)) |
| 1156 | err = ubifs_wbuf_sync_nolock(wbuf); |
| 1157 | mutex_unlock(&wbuf->io_mutex); |
| 1158 | |
| 1159 | if (err) { |
| 1160 | ubifs_ro_mode(c, err); |
| 1161 | return err; |
| 1162 | } |
| 1163 | } |
| 1164 | return 0; |
| 1165 | } |