public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 37da21ddc472163bdd8b26df85f03001fc2a51cf 2951 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
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright (c) 2021 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#ifndef TAP_H
#define TAP_H

struct udphdr;

/**
 * struct tap_hdr - tap backend specific headers
 * @vnet_len:	Frame length (for qemu socket transport)
 */
struct tap_hdr {
	uint32_t vnet_len;
} __attribute__((packed));

/**
 * tap_hdr_iov() - struct iovec for a tap header
 * @c:		Execution context
 * @taph:	Pointer to tap specific header buffer
 *
 * Returns: A struct iovec covering the correct portion of @taph to use as the
 *          tap specific header in the current configuration.
 */
static inline struct iovec tap_hdr_iov(const struct ctx *c,
				       struct tap_hdr *thdr)
{
	return (struct iovec){
		.iov_base = thdr,
		.iov_len = c->mode == MODE_PASST ? sizeof(*thdr) : 0,
	};
}

/**
 * tap_hdr_update() - Update the tap specific header for a frame
 * @taph:	Tap specific header buffer to update
 * @l2len:	Frame length (including L2 headers)
 */
static inline void tap_hdr_update(struct tap_hdr *thdr, size_t l2len)
{
	if (thdr)
		thdr->vnet_len = htonl(l2len);
}

void *tap_push_uh4(struct udphdr *uh, struct in_addr src, in_port_t sport,
		   struct in_addr dst, in_port_t dport,
		   const void *in, size_t dlen);
void *tap_push_ip4h(struct iphdr *ip4h, struct in_addr src,
		    struct in_addr dst, size_t l4len, uint8_t proto);
void tap_udp4_send(const struct ctx *c, struct in_addr src, in_port_t sport,
		   struct in_addr dst, in_port_t dport,
		   const void *in, size_t dlen);
void tap_icmp4_send(const struct ctx *c, struct in_addr src, struct in_addr dst,
		    const void *in, size_t l4len);
const struct in6_addr *tap_ip6_daddr(const struct ctx *c,
				     const struct in6_addr *src);
void tap_udp6_send(const struct ctx *c,
		   const struct in6_addr *src, in_port_t sport,
		   const struct in6_addr *dst, in_port_t dport,
		   uint32_t flow, void *in, size_t dlen);
void tap_icmp6_send(const struct ctx *c,
		    const struct in6_addr *src, const struct in6_addr *dst,
		    const void *in, size_t l4len);
void tap_send_single(const struct ctx *c, const void *data, size_t l2len);
size_t tap_send_frames(const struct ctx *c, const struct iovec *iov,
		       size_t bufs_per_frame, size_t nframes);
void eth_update_mac(struct ethhdr *eh,
		    const unsigned char *eth_d, const unsigned char *eth_s);
void tap_listen_handler(struct ctx *c, uint32_t events);
void tap_handler_pasta(struct ctx *c, uint32_t events,
		       const struct timespec *now);
void tap_handler_passt(struct ctx *c, uint32_t events,
		       const struct timespec *now);
int tap_sock_unix_open(char *sock_path);
void tap_sock_reset(struct ctx *c);
void tap_sock_update_pool(void *base, size_t size);
void tap_backend_init(struct ctx *c);
void tap_flush_pools(void);
void tap_handler(struct ctx *c, const struct timespec *now);
void tap_add_packet(struct ctx *c, ssize_t l2len, char *p);

#endif /* TAP_H */

debug log:

solving 37da21d ...
found 37da21d in https://archives.passt.top/passt-dev/20250223225951.3534010-3-jmaloy@redhat.com/ ||
	https://archives.passt.top/passt-dev/20250224192447.3758771-3-jmaloy@redhat.com/ ||
	https://archives.passt.top/passt-dev/20250228224121.815201-3-jmaloy@redhat.com/ ||
	https://archives.passt.top/passt-dev/20250227213518.506955-3-jmaloy@redhat.com/
found 0b3eb93 in https://archives.passt.top/passt-dev/20250228224121.815201-2-jmaloy@redhat.com/ ||
	https://archives.passt.top/passt-dev/20250223225951.3534010-2-jmaloy@redhat.com/ ||
	https://archives.passt.top/passt-dev/20250227213518.506955-2-jmaloy@redhat.com/ ||
	https://archives.passt.top/passt-dev/20250224192447.3758771-2-jmaloy@redhat.com/
found a476a12 in https://passt.top/passt
preparing index
index prepared:
100644 a476a12546b496721a0c533ae426302d15f10346	tap.h

applying [1/2] https://archives.passt.top/passt-dev/20250228224121.815201-2-jmaloy@redhat.com/
diff --git a/tap.h b/tap.h
index a476a12..0b3eb93 100644

Checking patch tap.h...
Applied patch tap.h cleanly.

skipping https://archives.passt.top/passt-dev/20250223225951.3534010-2-jmaloy@redhat.com/ for 0b3eb93
skipping https://archives.passt.top/passt-dev/20250227213518.506955-2-jmaloy@redhat.com/ for 0b3eb93
skipping https://archives.passt.top/passt-dev/20250224192447.3758771-2-jmaloy@redhat.com/ for 0b3eb93
index at:
100644 0b3eb93a1d10562440ee110da31a2bfc2e1c6bc8	tap.h

applying [2/2] https://archives.passt.top/passt-dev/20250223225951.3534010-3-jmaloy@redhat.com/
diff --git a/tap.h b/tap.h
index 0b3eb93..37da21d 100644

Checking patch tap.h...
Applied patch tap.h cleanly.

skipping https://archives.passt.top/passt-dev/20250224192447.3758771-3-jmaloy@redhat.com/ for 37da21d
skipping https://archives.passt.top/passt-dev/20250228224121.815201-3-jmaloy@redhat.com/ for 37da21d
skipping https://archives.passt.top/passt-dev/20250227213518.506955-3-jmaloy@redhat.com/ for 37da21d
index at:
100644 37da21ddc472163bdd8b26df85f03001fc2a51cf	tap.h

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).