aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/net.c
blob: 856b120b04499f279500c49d0b3887f7f4ec8756 (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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#include "net.h"
#include "log.h"

#include <netdb.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>

#define gai_print_errno(ec) print_error("getaddrinfo: %s\n", gai_strerror(ec))

static int ignore_signal(int signum)
{
	int ret = 0;
	struct sigaction act;
	memset(&act, 0, sizeof(act));
	act.sa_handler = SIG_IGN;

	ret = sigaction(signum, &act, NULL);
	if (ret < 0) {
		print_errno("sigaction");
		return ret;
	}

	return ret;
}

static int ignore_sigchld()
{
	return ignore_signal(SIGCHLD);
}

int bind_to_port(const char *port)
{
	struct addrinfo *result, *it = NULL;
	struct addrinfo hints;
	int socket_fd, ret = 0;

	memset(&hints, 0, sizeof(hints));
	hints.ai_family = AF_UNSPEC;
	hints.ai_socktype = SOCK_STREAM;
	hints.ai_flags = AI_PASSIVE;

	ret = getaddrinfo(NULL, port, &hints, &result);
	if (ret) {
		gai_print_errno(ret);
		return -1;
	}

	for (it = result; it; it = it->ai_next) {
		socket_fd = socket(it->ai_family, it->ai_socktype, it->ai_protocol);
		if (socket_fd < 0) {
			print_errno("socket");
			continue;
		}

		static const int yes = 1;

		if (setsockopt(socket_fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) == -1) {
			print_errno("setsockopt");
			goto close_socket;
		}

		if (bind(socket_fd, it->ai_addr, it->ai_addrlen) < 0) {
			print_errno("bind");
			goto close_socket;
		}

		break;

	close_socket:
		close(socket_fd);
	}

	freeaddrinfo(result);

	if (!it) {
		print_error("Couldn't bind to port %s\n", port);
		return -1;
	}

	ret = listen(socket_fd, 4096);
	if (ret < 0) {
		print_errno("listen");
		goto fail;
	}

	/* Don't make zombies. The alternative is wait()ing for the child in
	 * the signal handler. */
	ret = ignore_sigchld();
	if (ret < 0)
		goto fail;

	return socket_fd;

fail:
	close(socket_fd);

	return ret;
}

int accept_connection(int fd, connection_handler handler, void *arg)
{
	int conn_fd, ret = 0;

	ret = accept(fd, NULL, NULL);
	if (ret < 0) {
		print_errno("accept");
		return ret;
	}
	conn_fd = ret;

	pid_t child_pid = fork();
	if (child_pid < 0) {
		print_errno("fork");
		ret = -1;
		goto close_conn;
	}

	if (!child_pid) {
		close(fd);
		ret = handler(conn_fd, arg);
		close(conn_fd);
		exit(ret);
	}

close_conn:
	close(conn_fd);

	return ret;
}

int connect_to_host(const char *host, const char *port)
{
	struct addrinfo *result, *it = NULL;
	struct addrinfo hints;
	int socket_fd, ret = 0;

	memset(&hints, 0, sizeof(hints));
	hints.ai_family = AF_UNSPEC;
	hints.ai_socktype = SOCK_STREAM;

	ret = getaddrinfo(host, port, &hints, &result);
	if (ret) {
		gai_print_errno(ret);
		return -1;
	}

	for (it = result; it; it = it->ai_next) {
		socket_fd = socket(it->ai_family, it->ai_socktype, it->ai_protocol);
		if (socket_fd < 0) {
			print_errno("socket");
			continue;
		}

		if (connect(socket_fd, it->ai_addr, it->ai_addrlen) < 0) {
			print_errno("connect");
			goto close_socket;
		}

		break;

	close_socket:
		close(socket_fd);
	}

	freeaddrinfo(result);

	if (!it) {
		print_error("Couldn't connect to host %s, port %s\n", host, port);
		return -1;
	}

	return socket_fd;
}

int send_all(int fd, const void *buf, size_t len)
{
	size_t sent_total = 0;

	while (sent_total < len) {
		ssize_t sent_now = write(fd, (const char *)buf + sent_total, len - sent_total);

		if (sent_now < 0) {
			print_errno("write");
			return -1;
		}

		sent_total += sent_now;
	}

	return 0;
}

int recv_all(int fd, void *buf, size_t len)
{
	size_t read_total = 0;

	while (read_total < len) {
		ssize_t read_now = read(fd, buf, len);

		if (read_now < 0) {
			print_errno("read");
			return -1;
		}

		read_total += read_now;
	}

	return read_total;
}

int send_buf(int fd, const void *buf, size_t len)
{
	int ret = 0;

	ret = send_all(fd, &len, sizeof(len));
	if (ret < 0)
		return ret;

	ret = send_all(fd, buf, len);
	if (ret < 0)
		return ret;

	return ret;
}

int recv_buf(int fd, void **buf, size_t *len)
{
	int ret = 0;

	ret = recv_all(fd, len, sizeof(*len));
	if (ret < 0)
		return ret;

	*buf = malloc(*len);
	if (!*buf) {
		print_errno("malloc");
		return -1;
	}

	ret = recv_all(fd, *buf, *len);
	if (ret < 0)
		goto free_buf;

	return ret;

free_buf:
	free(*buf);

	return ret;
}

int recv_static(int fd, void *buf, size_t len)
{
	void *actual_buf;
	size_t actual_len;
	int ret = 0;

	ret = recv_buf(fd, &actual_buf, &actual_len);
	if (ret < 0)
		return ret;

	if (actual_len != len) {
		print_error("Expected message length: %lu, actual: %lu\n", len, actual_len);
		ret = -1;
		goto free_buf;
	}

	memcpy(buf, actual_buf, len);

free_buf:
	free(actual_buf);

	return ret;
}