Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cln.c « tcp « others « test - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6275d372820d53abed32041cffae862445c50387 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#include <sys/socket.h>
#include <linux/types.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>

#define BUF_SIZE	(1024)

static char rbuf[BUF_SIZE];
static char buf[BUF_SIZE];

static int check_buf(int sk, char *buf, int count)
{
	int rd, i;

	printf("Checking for %d bytes\n", count);

	rd = 0;
	while (rd < count) {
		int r;

		r = read(sk, rbuf + rd, count - rd);
		if (r == 0) {
			printf("Unexpected EOF\n");
			return 1;
		}

		if (r < 0) {
			perror("Can't read buf");
			return 1;
		}

		rd += r;
	}

	for (i = 0; i < count; i++)
		if (buf[i] != rbuf[i]) {
			printf("Mismatch on %d byte %d != %d\n",
					i, (int)buf[i], (int)rbuf[i]);
			return 1;
		}

	return 0;
}

static int serve_new_conn(int in_fd, int sk)
{
	printf("New connection\n");

	while (1) {
		int rd, wr;

		rd = read(in_fd, buf, sizeof(buf));
		if (rd == 0)
			break;
		if (rd < 0) {
			perror("Can't read from infd");
			return 1;
		}

		printf("Read %d bytes, sending to sock\n", rd);

		wr = 0;
		while (wr < rd) {
			int w;

			w = write(sk, buf + wr, rd - wr);
			if (w <= 0) {
				perror("Can't write to socket");
				return 1;
			}

			if (check_buf(sk, buf + wr, w))
				return 1;

			wr += w;
		}
	}

	printf("Done\n");
	return 0;
}

int main(int argc, char **argv)
{
	int sk, port, ret;
	struct sockaddr_in addr;

	if (argc < 3) {
		printf("Need addr, port and iters\n");
		return -1;
	}

	sk = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
	if (sk < 0) {
		perror("Can't create socket");
		return -1;
	}

	port = atoi(argv[2]);
	printf("Connecting to %s:%d\n", argv[1], port);
	memset(&addr, 0, sizeof(addr));
	addr.sin_family = AF_INET;
	ret = inet_aton(argv[1], &addr.sin_addr);
	if (ret < 0) {
		perror("Can't convert addr");
		return -1;
	}
	addr.sin_port = htons(port);

	ret = connect(sk, (struct sockaddr *)&addr, sizeof(addr));
	if (ret < 0) {
		perror("Can't connect");
		return -1;
	}

	return serve_new_conn(0, sk);
}