generic: test writev with page fault when it processes iov
authorZorro Lang <zlang@redhat.com>
Thu, 22 Jun 2017 05:55:33 +0000 (13:55 +0800)
committerEryu Guan <eguan@redhat.com>
Thu, 22 Jun 2017 06:30:41 +0000 (14:30 +0800)
We met a kernel assertion failure recently as below:

  XFS: Assertion failed: tp->t_blk_res_used <= tp->t_blk_res, file: fs/xfs/xfs_trans.c, line: 309

Eric Sandeen digged into it and find a good reproducer.

The problem comes when the several IO vectors are copied in, and
it runs into page faults, which stops the copy before all vectors
are copied. XFS sees this as a failed/short write, and so tries
to unmap the blocks & truncate away the pages in xfs_vm_write_end.

generic_perform_write is looping, and comes back around for the
other iovecs, but the page is still there, the buffer head is still
mapped, and so a new delalloc block isn't allocated - and ends up
being allocated at writeback time, despite the fact that we "should"
have accounted for it all at delalloc write time, and trips the
assert.

Signed-off-by: Zorro Lang <zlang@redhat.com>
Reviewed-by: Eryu Guan <eguan@redhat.com>
Signed-off-by: Eryu Guan <eguan@redhat.com>
.gitignore
src/Makefile
src/writev_on_pagefault.c [new file with mode: 0644]
tests/generic/443 [new file with mode: 0755]
tests/generic/443.out [new file with mode: 0644]
tests/generic/group

index 56e863b2c8dc07488285e98f6415fef7ae93fffb..1e9948899c345371a4005d606b9d268f3b646078 100644 (file)
 /src/unwritten_sync
 /src/usemem
 /src/writemod
+/src/writev_on_pagefault
 /src/xfsctl
 /src/aio-dio-regress/aio-dio-extend-stat
 /src/aio-dio-regress/aio-dio-fcntl-race
index 2c1b898cebe17a761511aa91101773b67fb500cd..cb608ad488e64a7221e30a47c46487e8edfed808 100644 (file)
@@ -9,7 +9,7 @@ TARGETS = dirstress fill fill2 getpagesize holes lstat64 \
        nametest permname randholes runas truncfile usemem \
        mmapcat append_reader append_writer dirperf metaperf \
        devzero feature alloc fault fstest t_access_root \
-       godown resvtest writemod makeextents itrash rename \
+       godown resvtest writemod writev_on_pagefault makeextents itrash rename \
        multi_open_unlink dmiperf unwritten_sync genhashnames t_holes \
        t_mmap_writev t_truncate_cmtime dirhash_collide t_rename_overwrite \
        holetest t_truncate_self t_mmap_dio af_unix t_mmap_stale_pmd \
diff --git a/src/writev_on_pagefault.c b/src/writev_on_pagefault.c
new file mode 100644 (file)
index 0000000..17dbfb7
--- /dev/null
@@ -0,0 +1,114 @@
+/*
+ * Takes page fault while writev is iterating over the vectors in the IOV
+ *
+ * Copyright (C) 2017 Red Hat, Inc. All Rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <string.h>
+#include <unistd.h>
+#include <sys/uio.h>
+#include <limits.h>
+
+#ifndef IOV_MAX
+#define IOV_MAX 1024
+#endif
+#define DEF_IOV_CNT 3
+
+
+void usage(char *progname)
+{
+       fprintf(stderr, "usage: %s [-i iovcnt] filename\n", progname);
+       fprintf(stderr, "\t-i iovcnt: the count of io vectors (max is 1024), 3 by default\n");
+       exit(1);
+}
+
+int main(int argc, char *argv[])
+{
+       int fd, i, c;
+       size_t ret;
+       struct iovec *iov;
+       int pagesz = 4096;
+       char *data = NULL;
+       char *filename = NULL;
+       int iov_cnt = DEF_IOV_CNT;
+
+
+       while ((c = getopt(argc, argv, "i:")) != -1) {
+               char *endp;
+
+               switch (c) {
+               case 'i':
+                       iov_cnt = strtol(optarg, &endp, 0);
+                       if (*endp) {
+                               fprintf(stderr, "Invalid iov count %s\n", optarg);
+                               usage(argv[0]);
+                       }
+                       break;
+               default:
+                       usage(argv[0]);
+               }
+       }
+
+       if (iov_cnt > IOV_MAX || iov_cnt <= 0)
+               usage(argv[0]);
+
+       if (optind == argc - 1)
+               filename = argv[optind];
+       else
+               usage(argv[0]);
+
+       pagesz = getpagesize();
+       data = malloc(pagesz * iov_cnt);
+       if (!data) {
+               perror("malloc failed");
+               return 1;
+       }
+
+       /*
+        * NOTE: no pre-writing/reading on the buffer before writev, to prevent
+        * page prefault from happening, we need it happen at writev time.
+        */
+
+       iov = calloc(iov_cnt, sizeof(struct iovec));
+       if (!iov) {
+               perror("calloc failed");
+               return 1;
+       }
+
+       for (i = 0; i < iov_cnt; i++) {
+               (iov + i)->iov_base = (data + pagesz * i);
+               (iov + i)->iov_len  = 1;
+       }
+
+       if ((fd = open(filename, O_TRUNC|O_CREAT|O_RDWR, 0644)) < 0) {
+               perror("open failed");
+               return 1;
+       }
+
+       ret = writev(fd, iov, iov_cnt);
+       if (ret < 0)
+               perror("writev failed");
+       else
+               printf("wrote %d bytes\n", (int)ret);
+
+       close(fd);
+       return 0;
+}
diff --git a/tests/generic/443 b/tests/generic/443
new file mode 100755 (executable)
index 0000000..2a3e917
--- /dev/null
@@ -0,0 +1,61 @@
+#! /bin/bash
+# FS QA Test 443
+#
+# Takes page fault while writev is iterating over the vectors in the IOV
+#
+#-----------------------------------------------------------------------
+# Copyright (c) 2017 Red Hat, Inc.  All Rights Reserved.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it would be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write the Free Software Foundation,
+# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+#-----------------------------------------------------------------------
+#
+
+seq=`basename $0`
+seqres=$RESULT_DIR/$seq
+echo "QA output created by $seq"
+
+here=`pwd`
+tmp=/tmp/$$
+status=1       # failure is the default!
+trap "_cleanup; exit \$status" 0 1 2 3 15
+
+_cleanup()
+{
+       cd /
+       rm -f $tmp.*
+}
+
+# get standard environment, filters and checks
+. ./common/rc
+. ./common/filter
+
+# remove previous $seqres.full before test
+rm -f $seqres.full
+
+# real QA test starts here
+_supported_fs generic
+_supported_os Linux
+_require_test
+_require_test_program "writev_on_pagefault"
+
+# This program use several vectors for writev(), the kernel goes over them
+# one at a time, copying them from userspace, getting the user data ready
+# for IO. If it takes a page fault while iterating over the vectors in the
+# IOV, it stops, and sends what it got so far. We try to find a bug at this
+# moment.
+$here/src/writev_on_pagefault $TEST_DIR/testfile.$seq
+
+# success, all done
+status=0
+exit
diff --git a/tests/generic/443.out b/tests/generic/443.out
new file mode 100644 (file)
index 0000000..c0288d3
--- /dev/null
@@ -0,0 +1,2 @@
+QA output created by 443
+wrote 3 bytes
index 03446bb0db8bf76c0ffb68b8826965b4606c339a..d414cbd30a7b60089e4002dfb39a05b0d8597f47 100644 (file)
 440 auto quick encrypt
 441 auto quick
 442 blockdev
+443 auto quick rw