/* * Copyright (c) International Business Machines Corp., 2006 * Author Yi Yang * * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /* * DESCRIPTION * This test case will verify basic function of splice * added by kernel 2.6.17 or up. * */ #define _GNU_SOURCE #include #include #include #include #include #include #include "test.h" #include "safe_macros.h" #include "lapi/splice.h" #define TEST_BLOCK_SIZE 1024 #define TESTFILE1 "splice_testfile_1" #define TESTFILE2 "splice_testfile_2" static void splice_test(void); static void setup(void); static void cleanup(void); static char buffer[TEST_BLOCK_SIZE]; static int fd_in, fd_out; char *TCID = "splice01"; int TST_TOTAL = 1; int main(int ac, char **av) { int lc; tst_parse_opts(ac, av, NULL, NULL); setup(); for (lc = 0; TEST_LOOPING(lc); lc++) splice_test(); cleanup(); tst_exit(); } static void check_file(void) { int i; char splicebuffer[TEST_BLOCK_SIZE]; fd_out = SAFE_OPEN(cleanup, TESTFILE2, O_RDONLY); SAFE_READ(cleanup, 1, fd_out, splicebuffer, TEST_BLOCK_SIZE); for (i = 0; i < TEST_BLOCK_SIZE; i++) { if (buffer[i] != splicebuffer[i]) break; } if (i < TEST_BLOCK_SIZE) tst_resm(TFAIL, "Wrong data read from the buffer at %i", i); else tst_resm(TPASS, "Written data has been read back correctly"); close(fd_out); fd_out = 0; } static void splice_test(void) { int pipes[2]; int ret; fd_in = SAFE_OPEN(cleanup, TESTFILE1, O_RDONLY); SAFE_PIPE(cleanup, pipes); fd_out = SAFE_OPEN(cleanup, TESTFILE2, O_WRONLY | O_CREAT | O_TRUNC, 0666); ret = splice(fd_in, NULL, pipes[1], NULL, TEST_BLOCK_SIZE, 0); if (ret < 0) tst_brkm(TBROK | TERRNO, cleanup, "splice(fd_in, pipe) failed"); ret = splice(pipes[0], NULL, fd_out, NULL, TEST_BLOCK_SIZE, 0); if (ret < 0) tst_brkm(TBROK | TERRNO, cleanup, "splice(pipe, fd_out) failed"); close(fd_in); close(fd_out); close(pipes[0]); close(pipes[1]); fd_out = 0; fd_in = 0; check_file(); } static void setup(void) { int i; if ((tst_kvercmp(2, 6, 17)) < 0) { tst_brkm(TCONF, NULL, "The splice is supported 2.6.17 and newer"); } tst_sig(NOFORK, DEF_HANDLER, cleanup); TEST_PAUSE; tst_tmpdir(); if (tst_fs_type(cleanup, ".") == TST_NFS_MAGIC) { if (tst_kvercmp(2, 6, 32) < 0) tst_brkm(TCONF, cleanup, "Cannot do splice on a file" " on NFS filesystem before 2.6.32"); } for (i = 0; i < TEST_BLOCK_SIZE; i++) buffer[i] = i & 0xff; fd_in = SAFE_OPEN(cleanup, TESTFILE1, O_WRONLY | O_CREAT | O_TRUNC, 0777); SAFE_WRITE(cleanup, 1, fd_in, buffer, TEST_BLOCK_SIZE); SAFE_CLOSE(cleanup, fd_in); fd_in = 0; } static void cleanup(void) { if (fd_in > 0 && close(fd_in)) tst_resm(TWARN, "Failed to close fd_in"); if (fd_out > 0 && close(fd_out)) tst_resm(TWARN, "Failed to close fd_out"); tst_rmdir(); }