blob: 542d287c01e414aa43e0eacfe8af5380a5632b60 [file] [log] [blame]
Emeric Brun3835c0d2020-07-07 09:46:09 +02001/*
Willy Tarreau2b5e0d82020-09-16 21:58:52 +02002 * UDP protocol layer on top of AF_INET/AF_INET6
Emeric Brun3835c0d2020-07-07 09:46:09 +02003 *
Willy Tarreau3dfb7da2022-03-02 22:33:39 +01004 * Copyright 2019 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
Emeric Brun3835c0d2020-07-07 09:46:09 +02005 *
6 * Partial merge by Emeric Brun <ebrun@haproxy.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 *
13 */
14
15#include <ctype.h>
16#include <errno.h>
Emeric Brun3835c0d2020-07-07 09:46:09 +020017#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20#include <time.h>
21
22#include <sys/param.h>
23#include <sys/socket.h>
24#include <sys/types.h>
25
26#include <netinet/udp.h>
27#include <netinet/in.h>
28
29#include <haproxy/fd.h>
30#include <haproxy/listener.h>
31#include <haproxy/log.h>
32#include <haproxy/namespace.h>
33#include <haproxy/port_range.h>
34#include <haproxy/protocol.h>
35#include <haproxy/proto_udp.h>
36#include <haproxy/proxy.h>
37#include <haproxy/server.h>
Willy Tarreau18b7df72020-08-28 12:07:22 +020038#include <haproxy/sock.h>
Willy Tarreauf1725582020-08-28 15:30:11 +020039#include <haproxy/sock_inet.h>
Emeric Brun3835c0d2020-07-07 09:46:09 +020040#include <haproxy/task.h>
Willy Tarreauce65cbe2021-05-08 13:59:56 +020041#include <haproxy/tools.h>
Emeric Brun3835c0d2020-07-07 09:46:09 +020042
Emeric Brun3835c0d2020-07-07 09:46:09 +020043static int udp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +020044static void udp_enable_listener(struct listener *listener);
45static void udp_disable_listener(struct listener *listener);
Emeric Brun3835c0d2020-07-07 09:46:09 +020046
47/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaub9b2fd72020-12-08 14:13:11 +010048struct protocol proto_udp4 = {
Willy Tarreaub366c9a2020-12-08 14:54:20 +010049 .name = "udp4",
50
51 /* connection layer */
Willy Tarreau91b47262022-05-20 16:36:46 +020052 .xprt_type = PROTO_TYPE_DGRAM,
Willy Tarreaub366c9a2020-12-08 14:54:20 +010053 .listen = udp_bind_listener,
54 .enable = udp_enable_listener,
55 .disable = udp_disable_listener,
56 .add = default_add_listener,
57 .unbind = default_unbind_listener,
58 .suspend = default_suspend_listener,
59 .resume = default_resume_listener,
60
61 /* binding layer */
62 .rx_suspend = udp_suspend_receiver,
63 .rx_resume = udp_resume_receiver,
64
65 /* address family */
66 .fam = &proto_fam_inet4,
67
68 /* socket layer */
Willy Tarreau337edfd2021-10-27 17:05:36 +020069 .proto_type = PROTO_TYPE_DGRAM,
Willy Tarreaub366c9a2020-12-08 14:54:20 +010070 .sock_type = SOCK_DGRAM,
71 .sock_prot = IPPROTO_UDP,
72 .rx_enable = sock_enable,
73 .rx_disable = sock_disable,
74 .rx_unbind = sock_unbind,
75 .receivers = LIST_HEAD_INIT(proto_udp4.receivers),
76 .nb_receivers = 0,
Emeric Brun3835c0d2020-07-07 09:46:09 +020077};
78
79INITCALL1(STG_REGISTER, protocol_register, &proto_udp4);
80
81/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaub9b2fd72020-12-08 14:13:11 +010082struct protocol proto_udp6 = {
Willy Tarreaub366c9a2020-12-08 14:54:20 +010083 .name = "udp6",
84
85 /* connection layer */
Willy Tarreau91b47262022-05-20 16:36:46 +020086 .xprt_type = PROTO_TYPE_DGRAM,
Willy Tarreaub366c9a2020-12-08 14:54:20 +010087 .listen = udp_bind_listener,
88 .enable = udp_enable_listener,
89 .disable = udp_disable_listener,
90 .add = default_add_listener,
91 .unbind = default_unbind_listener,
92 .suspend = default_suspend_listener,
93 .resume = default_resume_listener,
94
95 /* binding layer */
96 .rx_suspend = udp_suspend_receiver,
97 .rx_resume = udp_resume_receiver,
98
99 /* address family */
100 .fam = &proto_fam_inet6,
101
102 /* socket layer */
Willy Tarreau337edfd2021-10-27 17:05:36 +0200103 .proto_type = PROTO_TYPE_DGRAM,
Willy Tarreaub366c9a2020-12-08 14:54:20 +0100104 .sock_type = SOCK_DGRAM,
105 .sock_prot = IPPROTO_UDP,
106 .rx_enable = sock_enable,
107 .rx_disable = sock_disable,
108 .rx_unbind = sock_unbind,
109 .receivers = LIST_HEAD_INIT(proto_udp6.receivers),
110 .nb_receivers = 0,
Emeric Brun3835c0d2020-07-07 09:46:09 +0200111};
112
113INITCALL1(STG_REGISTER, protocol_register, &proto_udp6);
114
Emeric Brun3835c0d2020-07-07 09:46:09 +0200115/* This function tries to bind a UDPv4/v6 listener. It may return a warning or
116 * an error message in <errmsg> if the message is at most <errlen> bytes long
117 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
118 * The return value is composed from ERR_ABORT, ERR_WARN,
119 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
120 * was alright and that no message was returned. ERR_RETRYABLE means that an
121 * error occurred but that it may vanish after a retry (eg: port in use), and
122 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
123 * the meaning of the error, but just indicate that a message is present which
124 * should be displayed with the respective level. Last, ERR_ABORT indicates
125 * that it's pointless to try to start other listeners. No error message is
126 * returned if errlen is NULL.
127 */
128int udp_bind_listener(struct listener *listener, char *errmsg, int errlen)
129{
Willy Tarreau2f7687d2020-09-01 16:23:29 +0200130 int err = ERR_NONE;
Willy Tarreau2f7687d2020-09-01 16:23:29 +0200131 char *msg = NULL;
Emeric Brun3835c0d2020-07-07 09:46:09 +0200132
133 /* ensure we never return garbage */
134 if (errlen)
135 *errmsg = 0;
136
137 if (listener->state != LI_ASSIGNED)
138 return ERR_NONE; /* already bound */
139
Willy Tarreauad33acf2020-09-02 18:40:02 +0200140 if (!(listener->rx.flags & RX_F_BOUND)) {
141 msg = "receiving socket not bound";
Willy Tarreau2f7687d2020-09-01 16:23:29 +0200142 goto udp_return;
Emeric Brun3835c0d2020-07-07 09:46:09 +0200143 }
144
Willy Tarreaua37b2442020-09-24 07:23:45 +0200145 listener_set_state(listener, LI_LISTEN);
Emeric Brun3835c0d2020-07-07 09:46:09 +0200146
Emeric Brun3835c0d2020-07-07 09:46:09 +0200147 udp_return:
148 if (msg && errlen) {
149 char pn[INET6_ADDRSTRLEN];
150
Willy Tarreau2f7687d2020-09-01 16:23:29 +0200151 addr_to_str(&listener->rx.addr, pn, sizeof(pn));
Willy Tarreau6823a3a2021-10-14 11:59:15 +0200152 snprintf(errmsg, errlen, "%s for [%s:%d]", msg, pn, get_host_port(&listener->rx.addr));
Emeric Brun3835c0d2020-07-07 09:46:09 +0200153 }
154 return err;
Emeric Brun3835c0d2020-07-07 09:46:09 +0200155}
156
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200157/* Enable receipt of incoming connections for listener <l>. The receiver must
Willy Tarreaua4380b22020-11-04 13:59:04 +0100158 * still be valid.
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200159 */
160static void udp_enable_listener(struct listener *l)
161{
Willy Tarreaua4380b22020-11-04 13:59:04 +0100162 fd_want_recv_safe(l->rx.fd);
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200163}
164
165/* Disable receipt of incoming connections for listener <l>. The receiver must
Willy Tarreaua4380b22020-11-04 13:59:04 +0100166 * still be valid.
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200167 */
168static void udp_disable_listener(struct listener *l)
169{
Willy Tarreaua4380b22020-11-04 13:59:04 +0100170 fd_stop_recv(l->rx.fd);
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200171}
172
Willy Tarreaucb66ea62020-09-25 17:12:32 +0200173/* Suspend a receiver. Returns < 0 in case of failure, 0 if the receiver
174 * was totally stopped, or > 0 if correctly suspended.
Willy Tarreaue122dc52020-10-07 19:55:15 +0200175 * The principle is a bit ugly but works well, at least on Linux: in order to
176 * suspend the receiver, we want it to stop receiving traffic, which means that
177 * the socket must be unhashed from the kernel's socket table. The simple way
178 * to do this is to connect to any address that is reachable and will not be
179 * used by regular traffic, and a great one is reconnecting to self.
Emeric Brun3835c0d2020-07-07 09:46:09 +0200180 */
Willy Tarreau29885f02020-12-08 18:05:16 +0100181int udp_suspend_receiver(struct receiver *rx)
Emeric Brun3835c0d2020-07-07 09:46:09 +0200182{
Willy Tarreaue122dc52020-10-07 19:55:15 +0200183 struct sockaddr_storage ss;
184 socklen_t len = sizeof(ss);
185
186 if (rx->fd < 0)
187 return 0;
188
Willy Tarreau59b5da42020-11-04 14:14:55 +0100189 /* we never do that with a shared FD otherwise we'd break it in the
190 * parent process and any possible subsequent worker inheriting it.
191 */
192 if (rx->flags & RX_F_INHERITED)
193 return -1;
194
Willy Tarreaue122dc52020-10-07 19:55:15 +0200195 if (getsockname(rx->fd, (struct sockaddr *)&ss, &len) < 0)
196 return -1;
197
198 if (connect(rx->fd, (struct sockaddr *)&ss, len) < 0)
199 return -1;
200
201 /* not necessary but may make debugging clearer */
202 fd_stop_recv(rx->fd);
203 return 1;
204}
205
206/* Resume a receiver. Returns < 0 in case of failure, 0 if the receiver
207 * was totally stopped, or > 0 if correctly suspended.
208 * The principle is to reverse the change above, we'll break the connection by
209 * connecting to AF_UNSPEC. The association breaks and the socket starts to
210 * receive from everywhere again.
211 */
Willy Tarreau29885f02020-12-08 18:05:16 +0100212int udp_resume_receiver(struct receiver *rx)
Willy Tarreaue122dc52020-10-07 19:55:15 +0200213{
Willy Tarreau2f6f3622020-10-14 10:50:41 +0200214 const struct sockaddr sa = { .sa_family = AF_UNSPEC };
Willy Tarreaue122dc52020-10-07 19:55:15 +0200215
216 if (rx->fd < 0)
217 return 0;
218
Willy Tarreau2f6f3622020-10-14 10:50:41 +0200219 if (connect(rx->fd, &sa, sizeof(sa)) < 0)
Willy Tarreaue122dc52020-10-07 19:55:15 +0200220 return -1;
221
222 fd_want_recv(rx->fd);
223 return 1;
Emeric Brun3835c0d2020-07-07 09:46:09 +0200224}
225
226/*
227 * Local variables:
228 * c-indent-level: 8
229 * c-basic-offset: 8
230 * End:
231 */