| // SPDX-License-Identifier: GPL-2.0-or-later |
| /* |
| * Copyright (c) Wipro Technologies Ltd, 2002. All Rights Reserved. |
| * AUTHOR : sowmya adiga<[email protected]> |
| * Copyright (c) 2016 Cyril Hrubis <[email protected]> |
| */ |
| /* |
| * This is a basic test for the socketcall(2) system call. |
| */ |
| #include <unistd.h> |
| #include <errno.h> |
| #include <sys/types.h> |
| #include <sys/socket.h> |
| #include <sys/syscall.h> |
| #include <linux/net.h> |
| #include <sys/un.h> |
| #include <netinet/in.h> |
| |
| #include "tst_test.h" |
| |
| #ifdef __NR_socketcall |
| |
| #define socketcall(call, args) syscall(__NR_socketcall, call, args) |
| |
| struct test_case_t { |
| int call; |
| unsigned long args[3]; |
| char *desc; |
| } TC[] = { |
| {SYS_SOCKET, {PF_INET, SOCK_STREAM, 0}, "TCP stream"}, |
| {SYS_SOCKET, {PF_UNIX, SOCK_DGRAM, 0}, "unix domain dgram"}, |
| {SYS_SOCKET, {AF_INET, SOCK_RAW, 6}, "Raw socket"}, |
| {SYS_SOCKET, {PF_INET, SOCK_DGRAM, 17}, "UDP dgram"} |
| }; |
| |
| void verify_socketcall(unsigned int i) |
| { |
| TEST(socketcall(TC[i].call, TC[i].args)); |
| |
| if (TST_RET < 0) { |
| tst_res(TFAIL | TTERRNO, "socketcall() for %s failed with %li", |
| TC[i].desc, TST_RET); |
| return; |
| } |
| |
| tst_res(TPASS, "socketcall() for %s", TC[i].desc); |
| |
| SAFE_CLOSE(TST_RET); |
| } |
| |
| static struct tst_test test = { |
| .test = verify_socketcall, |
| .tcnt = ARRAY_SIZE(TC), |
| .needs_root = 1, |
| }; |
| |
| #else |
| |
| TST_TEST_TCONF("The socketcall() syscall is not supported"); |
| |
| #endif |