aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ubifs
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2014-06-29 10:00:45 -0400
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2014-09-08 08:55:02 -0400
commit052c28073ff26f771d44ef33952a41d18dadd255 (patch)
tree9b15a30e3d8db2e3f367b3587ad2bbd278ef79c0 /fs/ubifs
parent2ce7598c9a453e0acd0e07be7be3f5eb39608ebd (diff)
UBIFS: fix a race condition
Hu (hujianyang@huawei.com) discovered a race condition which may lead to a situation when UBIFS is unable to mount the file-system after an unclean reboot. The problem is theoretical, though. In UBIFS, we have the log, which basically a set of LEBs in a certain area. The log has the tail and the head. Every time user writes data to the file-system, the UBIFS journal grows, and the log grows as well, because we append new reference nodes to the head of the log. So the head moves forward all the time, while the log tail stays at the same position. At any time, the UBIFS master node points to the tail of the log. When we mount the file-system, we scan the log, and we always start from its tail, because this is where the master node points to. The only occasion when the tail of the log changes is the commit operation. The commit operation has 2 phases - "commit start" and "commit end". The former is relatively short, and does not involve much I/O. During this phase we mostly just build various in-memory lists of the things which have to be written to the flash media during "commit end" phase. During the commit start phase, what we do is we "clean" the log. Indeed, the commit operation will index all the data in the journal, so the entire journal "disappears", and therefore the data in the log become unneeded. So we just move the head of the log to the next LEB, and write the CS node there. This LEB will be the tail of the new log when the commit operation finishes. When the "commit start" phase finishes, users may write more data to the file-system, in parallel with the ongoing "commit end" operation. At this point the log tail was not changed yet, it is the same as it had been before we started the commit. The log head keeps moving forward, though. The commit operation now needs to write the new master node, and the new master node should point to the new log tail. After this the LEBs between the old log tail and the new log tail can be unmapped and re-used again. And here is the possible problem. We do 2 operations: (a) We first update the log tail position in memory (see 'ubifs_log_end_commit()'). (b) And then we write the master node (see the big lock of code in 'do_commit()'). But nothing prevents the log head from moving forward between (a) and (b), and the log head may "wrap" now to the old log tail. And when the "wrap" happens, the contends of the log tail gets erased. Now a power cut happens and we are in trouble. We end up with the old master node pointing to the old tail, which was erased. And replay fails because it expects the master node to point to the correct log tail at all times. This patch merges the abovementioned (a) and (b) operations by moving the master node change code to the 'ubifs_log_end_commit()' function, so that it runs with the log mutex locked, which will prevent the log from being changed benween operations (a) and (b). Cc: stable@vger.kernel.org # 07e19df UBIFS: remove mst_mutex Cc: stable@vger.kernel.org Reported-by: hujianyang <hujianyang@huawei.com> Tested-by: hujianyang <hujianyang@huawei.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'fs/ubifs')
-rw-r--r--fs/ubifs/commit.c8
-rw-r--r--fs/ubifs/log.c11
2 files changed, 11 insertions, 8 deletions
diff --git a/fs/ubifs/commit.c b/fs/ubifs/commit.c
index aa13ad053b14..26b69b2d4a45 100644
--- a/fs/ubifs/commit.c
+++ b/fs/ubifs/commit.c
@@ -166,10 +166,6 @@ static int do_commit(struct ubifs_info *c)
166 err = ubifs_orphan_end_commit(c); 166 err = ubifs_orphan_end_commit(c);
167 if (err) 167 if (err)
168 goto out; 168 goto out;
169 old_ltail_lnum = c->ltail_lnum;
170 err = ubifs_log_end_commit(c, new_ltail_lnum);
171 if (err)
172 goto out;
173 err = dbg_check_old_index(c, &zroot); 169 err = dbg_check_old_index(c, &zroot);
174 if (err) 170 if (err)
175 goto out; 171 goto out;
@@ -202,7 +198,9 @@ static int do_commit(struct ubifs_info *c)
202 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_NO_ORPHS); 198 c->mst_node->flags |= cpu_to_le32(UBIFS_MST_NO_ORPHS);
203 else 199 else
204 c->mst_node->flags &= ~cpu_to_le32(UBIFS_MST_NO_ORPHS); 200 c->mst_node->flags &= ~cpu_to_le32(UBIFS_MST_NO_ORPHS);
205 err = ubifs_write_master(c); 201
202 old_ltail_lnum = c->ltail_lnum;
203 err = ubifs_log_end_commit(c, new_ltail_lnum);
206 if (err) 204 if (err)
207 goto out; 205 goto out;
208 206
diff --git a/fs/ubifs/log.c b/fs/ubifs/log.c
index a47ddfc9be6b..9bd4aafd5c6f 100644
--- a/fs/ubifs/log.c
+++ b/fs/ubifs/log.c
@@ -447,9 +447,9 @@ out:
447 * @ltail_lnum: new log tail LEB number 447 * @ltail_lnum: new log tail LEB number
448 * 448 *
449 * This function is called on when the commit operation was finished. It 449 * This function is called on when the commit operation was finished. It
450 * moves log tail to new position and unmaps LEBs which contain obsolete data. 450 * moves log tail to new position and updates the master node so that it stores
451 * Returns zero in case of success and a negative error code in case of 451 * the new log tail LEB number. Returns zero in case of success and a negative
452 * failure. 452 * error code in case of failure.
453 */ 453 */
454int ubifs_log_end_commit(struct ubifs_info *c, int ltail_lnum) 454int ubifs_log_end_commit(struct ubifs_info *c, int ltail_lnum)
455{ 455{
@@ -477,7 +477,12 @@ int ubifs_log_end_commit(struct ubifs_info *c, int ltail_lnum)
477 spin_unlock(&c->buds_lock); 477 spin_unlock(&c->buds_lock);
478 478
479 err = dbg_check_bud_bytes(c); 479 err = dbg_check_bud_bytes(c);
480 if (err)
481 goto out;
480 482
483 err = ubifs_write_master(c);
484
485out:
481 mutex_unlock(&c->log_mutex); 486 mutex_unlock(&c->log_mutex);
482 return err; 487 return err;
483} 488}