@@ -612,6 +612,7 @@ pwrite04_64 pwrite04_64
pwritev01 pwritev01
pwritev02 pwritev02
+pwritev03 pwritev03
read01 read01
read02 read02
@@ -517,6 +517,7 @@ pwrite04_64 pwrite04_64
pwritev01 pwritev01
pwritev02 pwritev02
+pwritev03 pwritev03
read01 read01
read02 read02
@@ -865,6 +865,8 @@ pwritev01 pwritev01
pwritev01_64 pwritev01_64
pwritev02 pwritev02
pwritev02_64 pwritev02_64
+pwritev03 pwritev03
+pwritev03_64 pwritev03_64
quotactl01 quotactl01
quotactl02 quotactl02
@@ -726,6 +726,8 @@
/pwritev/pwritev01_64
/pwritev/pwritev02
/pwritev/pwritev02_64
+/pwritev/pwritev03
+/pwritev/pwritev03_64
/quotactl/quotactl01
/quotactl/quotactl02
/quotactl/quotactl03
new file mode 100644
@@ -0,0 +1,137 @@
+/*
+ * Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
+ * Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of version 2 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * alone with this program.
+ */
+
+/*
+ * Test Name: pwritev03
+ *
+ * Test Description:
+ * Check the basic functionality of the pwritev(2) for the file
+ * opened with O_DIRECT in all filesystem.
+ * pwritev(2) should succeed to write the expected content of data
+ * and after writing the file, the file offset is not changed.
+ */
+
+#define _GNU_SOURCE
+#include <unistd.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/uio.h>
+#include "tst_test.h"
+#include "pwritev.h"
+#include "tst_safe_prw.h"
+
+#define MNTPOINT "mntpoint"
+#define FNAME MNTPOINT"/file"
+
+static char *initbuf;
+static char *preadbuf;
+static struct iovec *wr_iovec;
+static int fd, pgsz;
+static off_t org_off, tst_off;
+static ssize_t exp_sz;
+
+static struct tcase {
+ int count;
+ off_t *offset;
+ ssize_t *size;
+} tcases[] = {
+ {1, &org_off, &exp_sz},
+ {2, &org_off, &exp_sz},
+ {1, &tst_off, &exp_sz},
+};
+
+static void verify_direct_pwritev(unsigned int n)
+{
+ int i;
+ struct tcase *tc = &tcases[n];
+
+ SAFE_PWRITE(1, fd, initbuf, pgsz, 0);
+
+ TEST(pwritev(fd, wr_iovec, tc->count, *tc->offset));
+ if (TEST_RETURN < 0) {
+ tst_res(TFAIL | TTERRNO, "Pwritev(O_DIRECT) fails");
+ return;
+ }
+
+ if (TEST_RETURN != *tc->size) {
+ tst_res(TFAIL, "Pwritev(O_DIRECT) wrote %li bytes, expected %zi",
+ TEST_RETURN, *tc->size);
+ return;
+ }
+
+ if (SAFE_LSEEK(fd, 0, SEEK_CUR) != 0) {
+ tst_res(TFAIL, "Pwritev(O_DIRECT) had changed file offset");
+ return;
+ }
+
+ memset(preadbuf, 0x00, pgsz);
+ SAFE_PREAD(1, fd, preadbuf, *tc->size, *tc->offset);
+
+ for (i = 0; i < *tc->size; i++) {
+ if (preadbuf[i] != 0x61)
+ break;
+ }
+
+ if (i != *tc->size) {
+ tst_res(TFAIL, "Buffer wrong at %i have %02x expected 0x61",
+ i, preadbuf[i]);
+ return;
+ }
+
+ tst_res(TPASS, "Pwritev(O_DIRECT) wrote %zi bytes successfully "
+ "with content 'a' expectedly ", *tc->size);
+}
+
+static void setup(void)
+{
+ pgsz = getpagesize();
+ tst_off = pgsz / 2;
+ exp_sz = pgsz;
+
+ fd = SAFE_OPEN(FNAME, O_RDWR | O_CREAT | O_DIRECT, 0644);
+
+ initbuf = SAFE_MEMALIGN(pgsz, pgsz);
+ memset(initbuf, 0x00, pgsz);
+
+ preadbuf = SAFE_MEMALIGN(pgsz, pgsz);
+
+ wr_iovec = SAFE_MEMALIGN(pgsz, pgsz + sizeof(size_t));
+ wr_iovec->iov_base = SAFE_MEMALIGN(pgsz, pgsz);
+ wr_iovec->iov_len = pgsz;
+ memset(wr_iovec->iov_base, 0x61, pgsz);
+}
+
+static void cleanup(void)
+{
+ free(initbuf);
+ free(preadbuf);
+ free(wr_iovec->iov_base);
+ free(wr_iovec);
+
+ if (fd > 0)
+ SAFE_CLOSE(fd);
+}
+
+static struct tst_test test = {
+ .tcnt = ARRAY_SIZE(tcases),
+ .setup = setup,
+ .cleanup = cleanup,
+ .test = verify_direct_pwritev,
+ .min_kver = "2.6.30",
+ .mntpoint = MNTPOINT,
+ .mount_device = 1,
+ .all_filesystems = 1,
+};
Check the basic functionality of the pwritev(2) for the file opened with O_DIRECT in all filesystem. Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com> --- runtest/ltplite | 1 + runtest/stress.part3 | 1 + runtest/syscalls | 2 + testcases/kernel/syscalls/.gitignore | 2 + testcases/kernel/syscalls/pwritev/pwritev03.c | 137 ++++++++++++++++++++++++++ 5 files changed, 143 insertions(+) create mode 100644 testcases/kernel/syscalls/pwritev/pwritev03.c