public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob a07381386b62da0a094a7798abd06b73e584549d 9497 bytes (raw)

  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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
 
// SPDX-License-Identifier: GPL-2.0-or-later

/* PASST - Plug A Simple Socket Transport
 *  for qemu/UNIX domain socket mode
 *
 * PASTA - Pack A Subtle Tap Abstraction
 *  for network namespace/tap device mode
 *
 * icmp.c - ICMP/ICMPv6 echo proxy
 *
 * Copyright (c) 2021 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#include <errno.h>
#include <net/ethernet.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h>
#include <stdio.h>
#include <limits.h>
#include <stdint.h>
#include <stddef.h>
#include <string.h>
#include <sys/epoll.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#include <time.h>

#include <linux/icmpv6.h>

#include "packet.h"
#include "util.h"
#include "passt.h"
#include "tap.h"
#include "log.h"
#include "icmp.h"
#include "flow_table.h"

#define ICMP_ECHO_TIMEOUT	60 /* s, timeout for ICMP socket activity */
#define ICMP_NUM_IDS		(1U << 16)

/* Sides of a flow as we use them for ping streams */
#define	SOCKSIDE	0
#define	TAPSIDE		1

#define PINGF(idx)		(&(FLOW(idx)->ping))

#define TAPFSIDE(pingf)		(&(pingf)->f.side[TAPSIDE])
#define SOCKFSIDE(pingf)	(&(pingf)->f.side[SOCKSIDE])

/* Indexed by ICMP echo identifier */
static struct icmp_ping_flow *icmp_id_map[IP_VERSIONS][ICMP_NUM_IDS];

/**
 * icmp_sock_handler() - Handle new data from ICMP or ICMPv6 socket
 * @c:		Execution context
 * @af:		Address family (AF_INET or AF_INET6)
 * @ref:	epoll reference
 */
void icmp_sock_handler(const struct ctx *c, int af, union epoll_ref ref)
{
	const char *const pname = af == AF_INET ? "ICMP" : "ICMPv6";
	struct icmp_ping_flow *pingf = PINGF(ref.flowside.flow);
	char buf[USHRT_MAX];
	union {
		struct sockaddr sa;
		struct sockaddr_in sa4;
		struct sockaddr_in6 sa6;
	} sr;
	uint16_t id = TAPFSIDE(pingf)->eport, seq;
	socklen_t sl = sizeof(sr);
	ssize_t n;

	if (c->no_icmp)
		return;

	ASSERT(pingf);

	n = recvfrom(ref.fd, buf, sizeof(buf), 0, &sr.sa, &sl);
	if (n < 0) {
		warn("%s: recvfrom() error on ping socket: %s",
		     pname, strerror(errno));
		return;
	}
	if (sr.sa.sa_family != af)
		goto unexpected;

	if (af == AF_INET) {
		struct icmphdr *ih4 = (struct icmphdr *)buf;

		if ((size_t)n < sizeof(*ih4) || ih4->type != ICMP_ECHOREPLY)
			goto unexpected;

		/* Adjust packet back to guest-side ID */
		ih4->un.echo.id = htons(id);
		seq = ntohs(ih4->un.echo.sequence);
	} else if (af == AF_INET6) {
		struct icmp6hdr *ih6 = (struct icmp6hdr *)buf;

		if ((size_t)n < sizeof(*ih6) ||
		    ih6->icmp6_type != ICMPV6_ECHO_REPLY)
			goto unexpected;

		/* Adjust packet back to guest-side ID */
		ih6->icmp6_identifier = htons(id);
		seq = ntohs(ih6->icmp6_sequence);
	} else {
		ASSERT(0);
	}

	if (c->mode == MODE_PASTA) {
		if (pingf->seq == seq)
			return;

		pingf->seq = seq;
	}

	debug("%s: echo reply to tap, ID: %"PRIu16", seq: %"PRIu16, pname,
	      id, seq);
	if (af == AF_INET) {
		const struct in_addr *saddr = inany_v4(&TAPFSIDE(pingf)->faddr);
		const struct in_addr *daddr = inany_v4(&TAPFSIDE(pingf)->eaddr);

		ASSERT(saddr && daddr); /* Must have IPv4 addresses */
		tap_icmp4_send(c, *saddr, *daddr, buf, n);
	} else if (af == AF_INET6) {
		const struct in6_addr *saddr = &TAPFSIDE(pingf)->faddr.a6;
		const struct in6_addr *daddr = &TAPFSIDE(pingf)->eaddr.a6;
		tap_icmp6_send(c, saddr, daddr, buf, n);
	}
	return;

unexpected:
	warn("%s: Unexpected packet on ping socket", pname);
}

/**
 * icmp_ping_close() - Close out and cleanup a ping flow
 * @c:		Execution context
 * @pingf:	ping flow entry to close
 */
static void icmp_ping_close(const struct ctx *c, struct icmp_ping_flow *pingf)
{
	epoll_ctl(c->epollfd, EPOLL_CTL_DEL, pingf->sock, NULL);
	close(pingf->sock);
	flow_hash_remove(c, FLOW_SIDX(pingf, TAPSIDE));

	if (pingf->f.type == FLOW_PING4)
		icmp_id_map[V4][pingf->id] = NULL;
	else
		icmp_id_map[V6][pingf->id] = NULL;
}

/**
 * icmp_ping_new() - Prepare a new ping socket for a new id
 * @c:		Execution context
 * @id_map:	id map entry of the sequence to open
 * @af:		Address family, AF_INET or AF_INET6
 * @id:		ICMP id for the new sequence
 * @saddr:	Source address
 * @daddr:	Destination address
 *
 * Return: Newly opened ping flow, or NULL on failure
 */
static struct icmp_ping_flow *icmp_ping_new(const struct ctx *c,
					    struct icmp_ping_flow **id_map,
					    int af, uint16_t id,
					    const void *saddr, const void *daddr)
{
	const char *const pname = af == AF_INET ? "ICMP" : "ICMPv6";
	uint8_t flowtype = af == AF_INET ? FLOW_PING4 : FLOW_PING6;
	union flow *flow = flow_alloc();
	struct icmp_ping_flow *pingf;
	const void *bind_addr;
	const char *bind_if;
	union epoll_ref ref;
	int s;

	if (!flow)
		return NULL;

	if (af == AF_INET) {
		ref.type = EPOLL_TYPE_ICMP;
		bind_addr = &c->ip4.addr_out;
		bind_if = c->ip4.ifname_out;
	} else {
		ref.type = EPOLL_TYPE_ICMPV6;
		bind_addr = &c->ip6.addr_out;
		bind_if = c->ip6.ifname_out;
	}

	ref.flowside = FLOW_SIDX(flow, SOCKSIDE);
	s = sock_l4(c, af, flow_proto[flowtype], bind_addr, bind_if, 0, ref.data);

	if (s < 0) {
		warn("Cannot open \"ping\" socket. You might need to:");
		warn("  sysctl -w net.ipv4.ping_group_range=\"0 2147483647\"");
		warn("...echo requests/replies will fail.");
		goto cancel;
	}

	if (s > FD_REF_MAX)
		goto cancel;

	pingf = &flow->ping;
	pingf->f.type = flowtype;
	pingf->seq = -1;
	pingf->sock = s;
	pingf->id = id;

	*id_map = pingf;

	debug("%s: new socket %i for echo ID %"PRIu16, pname, s, id);

	flowside_from_af(TAPFSIDE(pingf), PIF_TAP, af, daddr, id, saddr, id);
	FLOW_NEW_DBG(pingf, TAPSIDE);
	flow_hash_insert(c, FLOW_SIDX(pingf, TAPSIDE));

	return pingf;

cancel:
	if (s >= 0)
		close(s);
	flow_alloc_cancel(flow);
	return NULL;
}

/**
 * icmp_tap_handler() - Handle packets from tap
 * @c:		Execution context
 * @pif:	pif on which the packet is arriving
 * @af:		Address family, AF_INET or AF_INET6
 * @saddr:	Source address
 * @daddr:	Destination address
 * @p:		Packet pool, single packet with ICMP/ICMPv6 header
 * @now:	Current timestamp
 *
 * Return: count of consumed packets (always 1, even if malformed)
 */
int icmp_tap_handler(const struct ctx *c, uint8_t pif, int af,
		     const void *saddr, const void *daddr,
		     const struct pool *p, const struct timespec *now)
{
	const char *const pname = af == AF_INET ? "ICMP" : "ICMPv6";
	union {
		struct sockaddr sa;
		struct sockaddr_in sa4;
		struct sockaddr_in6 sa6;
	} sa = { .sa.sa_family = af };
	const socklen_t sl = af == AF_INET ? sizeof(sa.sa4) : sizeof(sa.sa6);
	struct icmp_ping_flow *pingf, **id_map;
	union flow *flow;
	uint16_t id, seq;
	uint8_t proto;
	size_t plen;
	void *pkt;

	(void)saddr;
	(void)pif;

	pkt = packet_get(p, 0, 0, 0, &plen);
	if (!pkt)
		return 1;

	if (af == AF_INET) {
		struct icmphdr *ih = (struct icmphdr *)pkt;

		if (plen < sizeof(*ih))
			return 1;

		if (ih->type != ICMP_ECHO)
			return 1;

		proto = IPPROTO_ICMP;
		id = ntohs(ih->un.echo.id);
		id_map = &icmp_id_map[V4][id];
		seq = ntohs(ih->un.echo.sequence);
		sa.sa4.sin_addr = *(struct in_addr *)daddr;
	} else if (af == AF_INET6) {
		struct icmp6hdr *ih = (struct icmp6hdr *)pkt;

		if (plen < sizeof(*ih))
			return 1;

		if (ih->icmp6_type != ICMPV6_ECHO_REQUEST)
			return 1;

		proto = IPPROTO_ICMPV6;
		id = ntohs(ih->icmp6_identifier);
		id_map = &icmp_id_map[V6][id];
		seq = ntohs(ih->icmp6_sequence);
		sa.sa6.sin6_addr = *(struct in6_addr *)daddr;
		sa.sa6.sin6_scope_id = c->ifi6;
	} else {
		ASSERT(0);
	}

	flow = flow_at_sidx(flow_hash_lookup(c, proto, PIF_TAP,
					     af, saddr, daddr, id, id));

	if (flow)
		pingf = &flow->ping;
	else if (!(pingf = icmp_ping_new(c, id_map, af, id, saddr, daddr)))
		return 1;

	ASSERT(flow_proto[pingf->f.type] == proto);
	pingf->ts = now->tv_sec;

	if (sendto(pingf->sock, pkt, plen, MSG_NOSIGNAL, &sa.sa, sl) < 0) {
		debug("%s: failed to relay request to socket: %s",
		      pname, strerror(errno));
		if (flow)
			goto cancel;
	}

	debug("%s: echo request to socket, ID: %"PRIu16", seq: %"PRIu16,
	      pname, id, seq);

	if (!flow)
		/* Nothing more to do for an existing flow */
		return 1;

	/* We need to wait until after the sendto() to fill in the SOCKSIDE
	 * information, so that we can find out the host side id the kernel
	 * assigned.  If there's no bind address specified, this will still have
	 * 0.0.0.0 or :: as the host side forwarding address.  There's not
	 * really anything we can do to fill that in, which means we can never
	 * insert the SOCKSIDE of a ping flow into the hash table.
	 */
	if (flowside_from_sock(SOCKFSIDE(pingf), PIF_HOST, pingf->sock,
			       NULL, &sa) < 0) {
		err("%s: Failed to get local name for outgoing ping socket",
		    pname);
		goto cancel;
	}
	/* We want the id as the "port" on both sides */
	SOCKFSIDE(pingf)->eport = SOCKFSIDE(pingf)->fport;

	FLOW_FWD_DBG(pingf, SOCKSIDE);

	return 1;

cancel:
	/* Something went wrong, back out creation of the flow */
	icmp_ping_close(c, pingf);
	flow_alloc_cancel(flow);
	return 1;
}

/**
 * icmp_ping_timer() - Handler for timed events related to a given flow
 * @c:		Execution context
 * @flow:	flow table entry to check for timeout
 * @now:	Current timestamp
 *
 * Return: true if the flow is ready to free, false otherwise
 */
bool icmp_ping_timer(const struct ctx *c, union flow *flow,
		     const struct timespec *now)
{
	struct icmp_ping_flow *pingf = &flow->ping;

	if (now->tv_sec - pingf->ts <= ICMP_ECHO_TIMEOUT)
		return false;

	icmp_ping_close(c, pingf);
	return true;
}

debug log:

solving a073813 ...
found a073813 in https://archives.passt.top/passt-dev/20231221070237.1422557-14-david@gibson.dropbear.id.au/
found 917c810 in https://archives.passt.top/passt-dev/20231221070237.1422557-13-david@gibson.dropbear.id.au/
found 53ad087 in https://archives.passt.top/passt-dev/20231221070237.1422557-12-david@gibson.dropbear.id.au/
found 27b150d in https://archives.passt.top/passt-dev/20231221070237.1422557-11-david@gibson.dropbear.id.au/
found d669351 in https://archives.passt.top/passt-dev/20231221065327.1307827-13-david@gibson.dropbear.id.au/
found 129a7f1 in https://archives.passt.top/passt-dev/20231218074017.985092-12-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231221065327.1307827-12-david@gibson.dropbear.id.au/
found 7e698f3 in https://archives.passt.top/passt-dev/20231221065327.1307827-11-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231218074017.985092-11-david@gibson.dropbear.id.au/
found b26c61f in https://archives.passt.top/passt-dev/20231218074017.985092-10-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231221065327.1307827-10-david@gibson.dropbear.id.au/
found f6c744a in https://archives.passt.top/passt-dev/20231218074017.985092-9-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231221065327.1307827-9-david@gibson.dropbear.id.au/
found 02739b9 in https://archives.passt.top/passt-dev/20231218074017.985092-8-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231221065327.1307827-8-david@gibson.dropbear.id.au/
found dd98c7f in https://archives.passt.top/passt-dev/20231218074017.985092-7-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231221065327.1307827-7-david@gibson.dropbear.id.au/
found 7a505b4 in https://archives.passt.top/passt-dev/20231218074017.985092-6-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231221065327.1307827-6-david@gibson.dropbear.id.au/
found 1f41440 in https://archives.passt.top/passt-dev/20231218074017.985092-5-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231221065327.1307827-5-david@gibson.dropbear.id.au/
found c745b7b in https://archives.passt.top/passt-dev/20231221065327.1307827-4-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231218074017.985092-4-david@gibson.dropbear.id.au/
found d3e5bc6 in https://archives.passt.top/passt-dev/20231221065327.1307827-3-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231218074017.985092-3-david@gibson.dropbear.id.au/
found 325dfb0 in https://passt.top/passt
preparing index
index prepared:
100644 325dfb035e4942303cb284f17bcf607ee23f35d5	icmp.c

applying [1/15] https://archives.passt.top/passt-dev/20231221065327.1307827-3-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index 325dfb0..d3e5bc6 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231218074017.985092-3-david@gibson.dropbear.id.au/ for d3e5bc6
index at:
100644 d3e5bc6eb80d47511d18baef366c84d0950c6f4c	icmp.c

applying [2/15] https://archives.passt.top/passt-dev/20231221065327.1307827-4-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index d3e5bc6..c745b7b 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231218074017.985092-4-david@gibson.dropbear.id.au/ for c745b7b
index at:
100644 c745b7b450218ccf5afae92dfb065118b73f08d6	icmp.c

applying [3/15] https://archives.passt.top/passt-dev/20231218074017.985092-5-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index c745b7b..1f41440 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231221065327.1307827-5-david@gibson.dropbear.id.au/ for 1f41440
index at:
100644 1f414400d0e4695c363a14696f3a84a2d90e1ae2	icmp.c

applying [4/15] https://archives.passt.top/passt-dev/20231218074017.985092-6-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index 1f41440..7a505b4 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231221065327.1307827-6-david@gibson.dropbear.id.au/ for 7a505b4
index at:
100644 7a505b4e0386794d6cca03591dbeaa8b818bbc94	icmp.c

applying [5/15] https://archives.passt.top/passt-dev/20231218074017.985092-7-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index 7a505b4..dd98c7f 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231221065327.1307827-7-david@gibson.dropbear.id.au/ for dd98c7f
index at:
100644 dd98c7ffa2fb41c5393aab95ca8bcdae6b10588e	icmp.c

applying [6/15] https://archives.passt.top/passt-dev/20231218074017.985092-8-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index dd98c7f..02739b9 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231221065327.1307827-8-david@gibson.dropbear.id.au/ for 02739b9
index at:
100644 02739b9ad725eb8798e3aa92fdc7ed0a31767083	icmp.c

applying [7/15] https://archives.passt.top/passt-dev/20231218074017.985092-9-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index 02739b9..f6c744a 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231221065327.1307827-9-david@gibson.dropbear.id.au/ for f6c744a
index at:
100644 f6c744ab0aa8c7c684d37756cc3f7d678705d52e	icmp.c

applying [8/15] https://archives.passt.top/passt-dev/20231218074017.985092-10-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index f6c744a..b26c61f 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231221065327.1307827-10-david@gibson.dropbear.id.au/ for b26c61f
index at:
100644 b26c61fb2eefb56252d8091c2274ac0bfc45cf8c	icmp.c

applying [9/15] https://archives.passt.top/passt-dev/20231221065327.1307827-11-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index b26c61f..7e698f3 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231218074017.985092-11-david@gibson.dropbear.id.au/ for 7e698f3
index at:
100644 7e698f3d27256850070739a229fdb8baa7677cba	icmp.c

applying [10/15] https://archives.passt.top/passt-dev/20231218074017.985092-12-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index 7e698f3..129a7f1 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.

skipping https://archives.passt.top/passt-dev/20231221065327.1307827-12-david@gibson.dropbear.id.au/ for 129a7f1
index at:
100644 129a7f1cbbed89062a7502f2f0777f292539cddc	icmp.c

applying [11/15] https://archives.passt.top/passt-dev/20231221065327.1307827-13-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index 129a7f1..d669351 100644


applying [12/15] https://archives.passt.top/passt-dev/20231221070237.1422557-11-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index d669351..27b150d 100644


applying [13/15] https://archives.passt.top/passt-dev/20231221070237.1422557-12-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index 27b150d..53ad087 100644


applying [14/15] https://archives.passt.top/passt-dev/20231221070237.1422557-13-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index 53ad087..917c810 100644


applying [15/15] https://archives.passt.top/passt-dev/20231221070237.1422557-14-david@gibson.dropbear.id.au/
diff --git a/icmp.c b/icmp.c
index 917c810..a073813 100644

Checking patch icmp.c...
Applied patch icmp.c cleanly.
Checking patch icmp.c...
Applied patch icmp.c cleanly.
Checking patch icmp.c...
Applied patch icmp.c cleanly.
Checking patch icmp.c...
Applied patch icmp.c cleanly.
Checking patch icmp.c...
Applied patch icmp.c cleanly.

index at:
100644 a07381386b62da0a094a7798abd06b73e584549d	icmp.c

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).