blob: 331e945f3ae6afa6a524b3332690e62494958fb5 [file] [log] [blame]
Stefan Hajnoczidf7e0e02019-12-18 19:07:00 +01001/* SPDX-License-Identifier: GPL-2.0-only */
2#ifndef UTIL_H
3#define UTIL_H
4
Stefan Hajnoczi9bb8a292019-12-18 19:07:01 +01005#include <sys/socket.h>
6#include <linux/vm_sockets.h>
7
Stefan Hajnoczidf7e0e02019-12-18 19:07:00 +01008/* Tests can either run as the client or the server */
9enum test_mode {
10 TEST_MODE_UNSET,
11 TEST_MODE_CLIENT,
12 TEST_MODE_SERVER
13};
14
15/* Test runner options */
16struct test_opts {
17 enum test_mode mode;
18 unsigned int peer_cid;
19};
20
21/* A test case definition. Test functions must print failures to stderr and
22 * terminate with exit(EXIT_FAILURE).
23 */
24struct test_case {
25 const char *name; /* human-readable name */
26
27 /* Called when test mode is TEST_MODE_CLIENT */
28 void (*run_client)(const struct test_opts *opts);
29
30 /* Called when test mode is TEST_MODE_SERVER */
31 void (*run_server)(const struct test_opts *opts);
32};
33
34void init_signals(void);
35unsigned int parse_cid(const char *str);
Stefan Hajnoczi9bb8a292019-12-18 19:07:01 +010036int vsock_stream_connect(unsigned int cid, unsigned int port);
37int vsock_stream_accept(unsigned int cid, unsigned int port,
38 struct sockaddr_vm *clientaddrp);
Stefano Garzarella770ce002019-12-18 19:07:05 +010039void vsock_wait_remote_close(int fd);
Stefan Hajnoczi092f32a2019-12-18 19:07:03 +010040void send_byte(int fd, int expected_ret, int flags);
41void recv_byte(int fd, int expected_ret, int flags);
Stefan Hajnoczidf7e0e02019-12-18 19:07:00 +010042void run_tests(const struct test_case *test_cases,
43 const struct test_opts *opts);
44
45#endif /* UTIL_H */