xref: /openbmc/linux/tools/testing/selftests/net/socket.c (revision 03ab8e6297acd1bc0eedaa050e2a1635c576fd11)
1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
2a6f68034SDavid S. Miller #include <stdio.h>
3a6f68034SDavid S. Miller #include <errno.h>
4a6f68034SDavid S. Miller #include <unistd.h>
5a6f68034SDavid S. Miller #include <string.h>
6a6f68034SDavid S. Miller #include <sys/types.h>
7a6f68034SDavid S. Miller #include <sys/socket.h>
8a6f68034SDavid S. Miller #include <netinet/in.h>
9a6f68034SDavid S. Miller 
10*1329e40eSShuah Khan #include "../kselftest.h"
11*1329e40eSShuah Khan 
12a6f68034SDavid S. Miller struct socket_testcase {
13a6f68034SDavid S. Miller 	int	domain;
14a6f68034SDavid S. Miller 	int	type;
15a6f68034SDavid S. Miller 	int	protocol;
16a6f68034SDavid S. Miller 
17a6f68034SDavid S. Miller 	/* 0    = valid file descriptor
18a6f68034SDavid S. Miller 	 * -foo = error foo
19a6f68034SDavid S. Miller 	 */
20a6f68034SDavid S. Miller 	int	expect;
21a6f68034SDavid S. Miller 
22a6f68034SDavid S. Miller 	/* If non-zero, accept EAFNOSUPPORT to handle the case
23a6f68034SDavid S. Miller 	 * of the protocol not being configured into the kernel.
24a6f68034SDavid S. Miller 	 */
25a6f68034SDavid S. Miller 	int	nosupport_ok;
26a6f68034SDavid S. Miller };
27a6f68034SDavid S. Miller 
28a6f68034SDavid S. Miller static struct socket_testcase tests[] = {
29a6f68034SDavid S. Miller 	{ AF_MAX,  0,           0,           -EAFNOSUPPORT,    0 },
30a6f68034SDavid S. Miller 	{ AF_INET, SOCK_STREAM, IPPROTO_TCP, 0,                1  },
31a6f68034SDavid S. Miller 	{ AF_INET, SOCK_DGRAM,  IPPROTO_TCP, -EPROTONOSUPPORT, 1  },
32a6f68034SDavid S. Miller 	{ AF_INET, SOCK_DGRAM,  IPPROTO_UDP, 0,                1  },
33a6f68034SDavid S. Miller 	{ AF_INET, SOCK_STREAM, IPPROTO_UDP, -EPROTONOSUPPORT, 1  },
34a6f68034SDavid S. Miller };
35a6f68034SDavid S. Miller 
36a6f68034SDavid S. Miller #define ERR_STRING_SZ	64
37a6f68034SDavid S. Miller 
run_tests(void)38a6f68034SDavid S. Miller static int run_tests(void)
39a6f68034SDavid S. Miller {
40a6f68034SDavid S. Miller 	char err_string1[ERR_STRING_SZ];
41a6f68034SDavid S. Miller 	char err_string2[ERR_STRING_SZ];
42a6f68034SDavid S. Miller 	int i, err;
43a6f68034SDavid S. Miller 
44a6f68034SDavid S. Miller 	err = 0;
45a6f68034SDavid S. Miller 	for (i = 0; i < ARRAY_SIZE(tests); i++) {
46a6f68034SDavid S. Miller 		struct socket_testcase *s = &tests[i];
47a6f68034SDavid S. Miller 		int fd;
48a6f68034SDavid S. Miller 
49a6f68034SDavid S. Miller 		fd = socket(s->domain, s->type, s->protocol);
50a6f68034SDavid S. Miller 		if (fd < 0) {
51a6f68034SDavid S. Miller 			if (s->nosupport_ok &&
52a6f68034SDavid S. Miller 			    errno == EAFNOSUPPORT)
53a6f68034SDavid S. Miller 				continue;
54a6f68034SDavid S. Miller 
55a6f68034SDavid S. Miller 			if (s->expect < 0 &&
56a6f68034SDavid S. Miller 			    errno == -s->expect)
57a6f68034SDavid S. Miller 				continue;
58a6f68034SDavid S. Miller 
59a6f68034SDavid S. Miller 			strerror_r(-s->expect, err_string1, ERR_STRING_SZ);
60a6f68034SDavid S. Miller 			strerror_r(errno, err_string2, ERR_STRING_SZ);
61a6f68034SDavid S. Miller 
62a6f68034SDavid S. Miller 			fprintf(stderr, "socket(%d, %d, %d) expected "
63a6f68034SDavid S. Miller 				"err (%s) got (%s)\n",
64a6f68034SDavid S. Miller 				s->domain, s->type, s->protocol,
65a6f68034SDavid S. Miller 				err_string1, err_string2);
66a6f68034SDavid S. Miller 
67a6f68034SDavid S. Miller 			err = -1;
68a6f68034SDavid S. Miller 			break;
69a6f68034SDavid S. Miller 		} else {
70a6f68034SDavid S. Miller 			close(fd);
71a6f68034SDavid S. Miller 
72a6f68034SDavid S. Miller 			if (s->expect < 0) {
73a6f68034SDavid S. Miller 				strerror_r(errno, err_string1, ERR_STRING_SZ);
74a6f68034SDavid S. Miller 
75a6f68034SDavid S. Miller 				fprintf(stderr, "socket(%d, %d, %d) expected "
76a6f68034SDavid S. Miller 					"success got err (%s)\n",
77a6f68034SDavid S. Miller 					s->domain, s->type, s->protocol,
78a6f68034SDavid S. Miller 					err_string1);
79a6f68034SDavid S. Miller 
80a6f68034SDavid S. Miller 				err = -1;
81a6f68034SDavid S. Miller 				break;
82a6f68034SDavid S. Miller 			}
83a6f68034SDavid S. Miller 		}
84a6f68034SDavid S. Miller 	}
85a6f68034SDavid S. Miller 
86a6f68034SDavid S. Miller 	return err;
87a6f68034SDavid S. Miller }
88a6f68034SDavid S. Miller 
main(void)89a6f68034SDavid S. Miller int main(void)
90a6f68034SDavid S. Miller {
91a6f68034SDavid S. Miller 	int err = run_tests();
92a6f68034SDavid S. Miller 
93a6f68034SDavid S. Miller 	return err;
94a6f68034SDavid S. Miller }
95