aboutgitcodelistschat:MatrixIRC
path: root/tests-utils/test-server.c
blob: 38ada4217536c6007367a9e3e2bb366c1239aa8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2023 Red Hat GmbH
 * Author: Alice Frosi <afrosi@redhat.com>
 */

#include <sys/un.h>
#include <sys/socket.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main(int argc, char *argv[])
{
	struct sockaddr_un addr;
	int fd, connfd, n, addrlen;
	char sock_path[] = "/tmp/test.sock";
	char buffer[256];
	unlink(sock_path);
	addrlen = sizeof(addr);
	if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
		perror("creating socket");
		return 1;
	}
	memset(&addr, 0, sizeof(addr));
	strcpy(addr.sun_path, sock_path);
	addr.sun_family = AF_UNIX;
	if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
		perror("binding");
		exit(EXIT_FAILURE);
	}

	listen(fd, 5);
	if ((connfd = accept(fd, (struct sockaddr *)&addr,
			     (socklen_t *)&addrlen)) < 0) {
		perror("ERROR on accept");
		exit(EXIT_FAILURE);
	}

	bzero(buffer, 256);
	n = read(connfd, buffer, 255);

	if (n < 0) {
		perror("ERROR reading from socket");
		exit(EXIT_FAILURE);
	}

	printf("%s\n", buffer);
	unlink(sock_path);
	close(fd);
	return 0;
}