The patch titled Subject: fault-inject: avoid unwanted data race to task->fail_nth has been added to the -mm tree. Its filename is fault-inject-simplify-access-check-for-fail-nth-fix-2.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fault-inject-simplify-access-check-for-fail-nth-fix-2.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fault-inject-simplify-access-check-for-fail-nth-fix-2.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Akinobu Mita <akinobu.mita@xxxxxxxxx> Subject: fault-inject: avoid unwanted data race to task->fail_nth The fault-inject-make-fail-nth-read-write-interface-symmetric.patch in -mm tree allows users to set task->fail_nth for non current task by procfs. On the other hand, the current task's fail_nth is decreased to zero in fault-injection path without any specific locks. So we need to prevent the task->fail_nth from being unexpected value by data races (for example, setting task->fail_nth to zero while decreasing the current->fail_nth). In this fix, we use READ_ONCE() and WRITE_ONCE() to prevent the compiler from creating unsolicited accesses. Link: http://lkml.kernel.org/r/1499962492-8931-1-git-send-email-akinobu.mita@xxxxxxxxx Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Reported-by: Dmitry Vyukov <dvyukov@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/base.c | 5 +++-- lib/fault-inject.c | 7 +++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff -puN fs/proc/base.c~fault-inject-simplify-access-check-for-fail-nth-fix-2 fs/proc/base.c --- a/fs/proc/base.c~fault-inject-simplify-access-check-for-fail-nth-fix-2 +++ a/fs/proc/base.c @@ -1370,7 +1370,7 @@ static ssize_t proc_fail_nth_write(struc task = get_proc_task(file_inode(file)); if (!task) return -ESRCH; - task->fail_nth = n; + WRITE_ONCE(task->fail_nth, n); put_task_struct(task); return count; @@ -1386,7 +1386,8 @@ static ssize_t proc_fail_nth_read(struct task = get_proc_task(file_inode(file)); if (!task) return -ESRCH; - len = snprintf(numbuf, sizeof(numbuf), "%u\n", task->fail_nth); + len = snprintf(numbuf, sizeof(numbuf), "%u\n", + READ_ONCE(task->fail_nth)); len = simple_read_from_buffer(buf, count, ppos, numbuf, len); put_task_struct(task); diff -puN lib/fault-inject.c~fault-inject-simplify-access-check-for-fail-nth-fix-2 lib/fault-inject.c --- a/lib/fault-inject.c~fault-inject-simplify-access-check-for-fail-nth-fix-2 +++ a/lib/fault-inject.c @@ -107,9 +107,12 @@ static inline bool fail_stacktrace(struc bool should_fail(struct fault_attr *attr, ssize_t size) { - if (in_task() && current->fail_nth) { - if (--current->fail_nth == 0) + if (in_task()) { + unsigned int fail_nth = READ_ONCE(current->fail_nth); + + if (fail_nth && !WRITE_ONCE(current->fail_nth, fail_nth - 1)) goto fail; + return false; } _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are fault-inject-automatically-detect-the-number-base-for-fail-nth-write-interface.patch fault-inject-parse-as-natural-1-based-value-for-fail-nth-write-interface.patch fault-inject-make-fail-nth-read-write-interface-symmetric.patch fault-inject-simplify-access-check-for-fail-nth.patch fault-inject-simplify-access-check-for-fail-nth-fix.patch fault-inject-simplify-access-check-for-fail-nth-fix-2.patch fault-inject-add-proc-pid-fail-nth.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html