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

#ifndef UDP_H
#define UDP_H

#define UDP_TIMER_INTERVAL		1000 /* ms */

void udp_portmap_clear(void);
void udp_listen_sock_handler(const struct ctx *c, union epoll_ref ref,
			     uint32_t events, const struct timespec *now);
void udp_reply_sock_handler(const struct ctx *c, union epoll_ref ref,
			    uint32_t events, const struct timespec *now);
int udp_tap_handler(const struct ctx *c, uint8_t pif,
		    sa_family_t af, const void *saddr, const void *daddr,
		    const struct pool *p, int idx, const struct timespec *now);
int udp_sock_init(const struct ctx *c, int ns, sa_family_t af,
		  const void *addr, const char *ifname, in_port_t port);
int udp_init(struct ctx *c);
void udp_timer(struct ctx *c, const struct timespec *now);
void udp_update_l2_buf(const unsigned char *eth_d, const unsigned char *eth_s);

/**
 * union udp_listen_epoll_ref - epoll reference for "listening" UDP sockets
 * @port:		Source port for connected sockets, bound port otherwise
 * @pif:		pif for this socket
 * @bound:		Set if this file descriptor is a bound socket
 * @splice:		Set if descriptor packets to be "spliced"
 * @v6:			Set for IPv6 sockets or connections
 * @u32:		Opaque u32 value of reference
 */
union udp_listen_epoll_ref {
	struct {
		in_port_t	port;
		uint8_t		pif;
		bool		v6:1;
	};
	uint32_t u32;
};


/**
 * struct udp_ctx - Execution context for UDP
 * @fwd_in:		Port forwarding configuration for inbound packets
 * @fwd_out:		Port forwarding configuration for outbound packets
 * @timer_run:		Timestamp of most recent timer run
 */
struct udp_ctx {
	struct fwd_ports fwd_in;
	struct fwd_ports fwd_out;
	struct timespec timer_run;
};

#endif /* UDP_H */

debug log:

solving 18a86892 ...
found 18a86892 in https://archives.passt.top/passt-dev/20240705020724.3447719-28-david@gibson.dropbear.id.au/
found ba803d51 in https://archives.passt.top/passt-dev/20240705020724.3447719-27-david@gibson.dropbear.id.au/
found 88417fb0 in https://archives.passt.top/passt-dev/20240705020724.3447719-24-david@gibson.dropbear.id.au/
found 310f42fd in https://archives.passt.top/passt-dev/20240705020724.3447719-23-david@gibson.dropbear.id.au/
found db5e546e in https://passt.top/passt
preparing index
index prepared:
100644 db5e546eeeb5c2d501f75d9611c2d20404af58b2	udp.h

applying [1/4] https://archives.passt.top/passt-dev/20240705020724.3447719-23-david@gibson.dropbear.id.au/
diff --git a/udp.h b/udp.h
index db5e546e..310f42fd 100644


applying [2/4] https://archives.passt.top/passt-dev/20240705020724.3447719-24-david@gibson.dropbear.id.au/
diff --git a/udp.h b/udp.h
index 310f42fd..88417fb0 100644


applying [3/4] https://archives.passt.top/passt-dev/20240705020724.3447719-27-david@gibson.dropbear.id.au/
diff --git a/udp.h b/udp.h
index 88417fb0..ba803d51 100644


applying [4/4] https://archives.passt.top/passt-dev/20240705020724.3447719-28-david@gibson.dropbear.id.au/
diff --git a/udp.h b/udp.h
index ba803d51..18a86892 100644

Checking patch udp.h...
Applied patch udp.h cleanly.
Checking patch udp.h...
Applied patch udp.h cleanly.
Checking patch udp.h...
Applied patch udp.h cleanly.
Checking patch udp.h...
Applied patch udp.h cleanly.

index at:
100644 18a8689206abcebb9a2a73ebaf91a44fdd93bdaf	udp.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).