/* * * Copyright (c) International Business Machines Corp., 2001 * * 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 */ /* * Test Name: socketpair01 * * Test Description: * Verify that socketpair() returns the proper errno for various failure cases * * Usage: * socketpair01 [-c n] [-e] [-i n] [-I x] [-p x] [-t] * where, -c n : Run n copies concurrently. * -e : Turn on errno logging. * -i n : Execute test n times. * -I x : Execute test for x seconds. * -P x : Pause for x seconds between iterations. * -t : Turn on syscall timing. * * History * 07/2001 John George * -Ported * * Restrictions: * None. * */ #include #include #include #include #include #include #include #include "test.h" char *TCID = "socketpair01"; int testno; int sv[2]; void setup(void), cleanup(void); struct test_case_t { /* test case structure */ int domain; /* PF_INET, PF_UNIX, ... */ int type; /* SOCK_STREAM, SOCK_DGRAM ... */ int proto; /* protocol number (usually 0 = default) */ int *sv; /* socket descriptor vector */ int retval; /* syscall return value */ int experrno; /* expected errno */ char *desc; } tdat[] = { { 0, SOCK_STREAM, 0, sv, -1, EAFNOSUPPORT, "invalid domain"}, { PF_INET, 75, 0, sv, -1, EINVAL, "invalid type"}, { PF_UNIX, SOCK_DGRAM, 0, sv, 0, 0, "UNIX domain dgram"}, { PF_INET, SOCK_RAW, 0, sv, -1, ESOCKTNOSUPPORT, "raw open as non-root"}, #ifndef UCLINUX /* Skip since uClinux does not implement memory protection */ { PF_UNIX, SOCK_STREAM, 0, 0, -1, EFAULT, "bad aligned pointer"}, { PF_UNIX, SOCK_STREAM, 0, (int *)7, -1, EFAULT, "bad unaligned pointer"}, #endif { PF_INET, SOCK_DGRAM, 17, sv, -1, EOPNOTSUPP, "UDP socket"}, { PF_INET, SOCK_DGRAM, 6, sv, -1, ESOCKTNOSUPPORT, "TCP dgram"}, { PF_INET, SOCK_STREAM, 6, sv, -1, EOPNOTSUPP, "TCP socket"}, { PF_INET, SOCK_STREAM, 1, sv, -1, ESOCKTNOSUPPORT, "ICMP stream"},}; int TST_TOTAL = sizeof(tdat) / sizeof(tdat[0]); int main(int argc, char *argv[]) { int lc; int s; tst_parse_opts(argc, argv, NULL, NULL); setup(); for (lc = 0; TEST_LOOPING(lc); ++lc) { tst_count = 0; for (testno = 0; testno < TST_TOTAL; ++testno) { TEST((s = socketpair(tdat[testno].domain, tdat[testno].type, tdat[testno].proto, tdat[testno].sv))); if (TEST_RETURN >= 0) { TEST_RETURN = 0; /* > 0 equivalent */ } else { } if (TEST_RETURN != tdat[testno].retval || (TEST_RETURN && (TEST_ERRNO != tdat[testno].experrno && TEST_ERRNO != EPROTONOSUPPORT))) { tst_resm(TFAIL, "%s ; returned" " %d (expected %d), errno %d (expected" " %d)", tdat[testno].desc, s, tdat[testno].retval, TEST_ERRNO, tdat[testno].experrno); } else { tst_resm(TPASS, "%s successful", tdat[testno].desc); } (void)close(s); } } cleanup(); tst_exit(); } void setup(void) { TEST_PAUSE; } void cleanup(void) { }