]> git.tuebingen.mpg.de Git - paraslash.git/blob - udp_send.c
udp_send: Add/remove the udp socket fd only once.
[paraslash.git] / udp_send.c
1 /*
2  * Copyright (C) 2005-2010 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file udp_send.c Para_server's udp sender. */
8
9
10 #include <regex.h>
11 #include <sys/time.h>
12 #include <dirent.h>
13 #include <sys/socket.h>
14 #include <netinet/udp.h>
15 #include <net/if.h>
16 #include <osl.h>
17
18 #include "server.cmdline.h"
19 #include "para.h"
20 #include "error.h"
21 #include "string.h"
22 #include "afh.h"
23 #include "afs.h"
24 #include "server.h"
25 #include "list.h"
26 #include "send.h"
27 #include "vss.h"
28 #include "portable_io.h"
29 #include "net.h"
30 #include "fd.h"
31 #include "sched.h"
32 #include "close_on_fork.h"
33 #include "chunk_queue.h"
34
35 /**
36  * Time window during which ICMP Destination/Port Unreachable messages are
37  * ignored, covering transient receiver problems such as restarting the
38  * client, rebooting, reconfiguration, or handover.
39  */
40 #define UDP_MAX_UNREACHABLE_TIME 30
41
42 /** Describes one entry in the list of targets for the udp sender. */
43 struct udp_target {
44         /** Track time (seconds) of last ICMP Port Unreachable error */
45         time_t last_unreachable;
46         /** Common sender client data */
47         struct sender_client *sc;
48         /** The opaque structure returned by vss_add_fec_client(). */
49         struct fec_client *fc;
50         /** The FEC parameters for this target. */
51         struct fec_client_parms fcp;
52 };
53
54 static struct list_head targets;
55 static int sender_status;
56
57 static void udp_close_target(struct sender_client *sc)
58 {
59         if (sc->cq != NULL) {
60                 cq_destroy(sc->cq);
61                 sc->cq = NULL;
62         }
63 }
64
65 static void udp_delete_target(struct sender_client *sc, const char *msg)
66 {
67         struct udp_target *ut = sc->private_data;
68
69         PARA_NOTICE_LOG("deleting %s (%s) from list\n", sc->name, msg);
70         udp_close_target(sc);
71         close(sc->fd);
72         del_close_on_fork_list(sc->fd);
73         vss_del_fec_client(ut->fc);
74         list_del(&sc->node);
75         free(sc->name);
76         free(sc);
77         free(ut);
78 }
79
80 /**
81  * Perform AF-independent multicast sender setup.
82  *
83  * \param sc    The connected sender client.
84  *
85  * \return Zero if okay, negative on error.
86  */
87 static int mcast_sender_setup(struct sender_client *sc)
88 {
89         struct sockaddr_storage ss;
90         socklen_t sslen = sizeof(ss);
91         int ttl = conf.udp_ttl_arg, id = 0;
92         const int on = 1;
93
94         if (conf.udp_mcast_iface_given) {
95                 char *iface = conf.udp_mcast_iface_arg;
96
97                 id = if_nametoindex(iface);
98                 if (id == 0)
99                         PARA_WARNING_LOG("could not resolve interface '%s', "
100                                         "using default", iface);
101         }
102
103         if (getpeername(sc->fd, (struct sockaddr *)&ss, &sslen) < 0)
104                 goto err;
105         assert(ss.ss_family == AF_INET || ss.ss_family == AF_INET6);
106
107         /* RFC 3493, 5.2: -1 means 'use kernel default' */
108         if (ttl < 0 || ttl > 255)
109                 ttl = -1;
110
111         switch (ss.ss_family) {
112         case AF_INET:
113                 if (!IN_MULTICAST(htonl(((struct sockaddr_in *)&ss)->sin_addr.s_addr)))
114                         return 0;
115                 if (id != 0) {
116 #ifdef HAVE_IP_MREQN
117                         struct ip_mreqn mn;
118
119                         memset(&mn, 0, sizeof(mn));
120                         mn.imr_ifindex = id;
121                         if (setsockopt(sc->fd, IPPROTO_IP, IP_MULTICAST_IF, &mn, sizeof(mn)) < 0)
122                                 goto err;
123 #else
124                         PARA_ERROR_LOG("No support for setting outgoing IPv4 mcast interface.");
125 #endif
126                 }
127                 /*
128                  * Enable receiving multicast messages generated on the local host
129                  * At least on Linux, this is enabled by default.
130                  */
131                 if (setsockopt(sc->fd, IPPROTO_IP, IP_MULTICAST_LOOP, &on, sizeof(on)) < 0)
132                         break;
133
134                 /* Default: use local subnet (do not flood out into the WAN) */
135                 if (ttl == -1)
136                         ttl = 1;
137                 if (setsockopt(sc->fd, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl)) < 0)
138                         break;
139                 return 0;
140         case AF_INET6:
141                 if (!IN6_IS_ADDR_MULTICAST(&((struct sockaddr_in6 *)&ss)->sin6_addr))
142                         return 0;
143                 if (id != 0 &&
144                     setsockopt(sc->fd, IPPROTO_IPV6, IPV6_MULTICAST_IF, &id, sizeof(id)) < 0)
145                         break;
146                 if (setsockopt(sc->fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &on, sizeof(on)) < 0)
147                         break;
148                 if (setsockopt(sc->fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &ttl, sizeof(ttl)) < 0)
149                         break;
150                 return 0;
151         }
152 err:
153         return -ERRNO_TO_PARA_ERROR(errno);
154 }
155
156 /** The maximal size of the per-target chunk queue. */
157 #define UDP_CQ_BYTES 40000
158
159 static void udp_init_session(struct sender_client *sc)
160 {
161         if (sc->cq == NULL) {
162                 sc->cq = cq_new(UDP_CQ_BYTES);
163                 PARA_NOTICE_LOG("sending to udp %s\n", sc->name);
164         }
165 }
166
167 static void udp_shutdown_targets(void)
168 {
169         struct sender_client *sc, *tmp;
170         const char *buf;
171         size_t len = vss_get_fec_eof_packet(&buf);
172
173         list_for_each_entry_safe(sc, tmp, &targets, node)
174                 if (sc->cq != NULL) {
175                         /* ignore return value, closing the target anyway. */
176                         (void)write(sc->fd, buf, len);
177                         udp_close_target(sc);
178                 }
179 }
180
181 static int udp_resolve_target(const char *url, struct sender_command_data *scd)
182 {
183         const char *result;
184         int ret, port;
185
186         ret = parse_fec_url(url, scd);
187         if (ret)
188                 return ret;
189         port = scd->port > 0 ? scd->port : conf.udp_default_port_arg;
190
191         ret = para_connect_simple(IPPROTO_UDP, scd->host, port);
192         if (ret < 0)
193                 return ret;
194
195         result = remote_name(ret);
196         close(ret);
197
198         if (!parse_url(result, scd->host, sizeof(scd->host), &scd->port))
199                 return -E_ADDRESS_LOOKUP;
200         return 1;
201 }
202
203 static int udp_com_on(__a_unused struct sender_command_data *scd)
204 {
205         sender_status = SENDER_ON;
206         return 1;
207 }
208
209 static int udp_com_off(__a_unused struct sender_command_data *scd)
210 {
211         udp_shutdown_targets();
212         sender_status = SENDER_OFF;
213         return 1;
214 }
215
216 static struct sender_client *udp_lookup_target(struct sender_command_data *scd)
217 {
218         struct sender_client *sc, *tmp;
219         char host[MAX_HOSTLEN];
220         int32_t port;
221
222         list_for_each_entry_safe(sc, tmp, &targets, node) {
223                 parse_url(sc->name, host, sizeof(host), &port);
224
225                 /* Unspecified port means wildcard port match */
226                 if (scd->port > 0 && scd->port != port)
227                         continue;
228                 if (strcmp(host, scd->host))
229                         continue;
230                 return sc;
231         }
232         return NULL;
233 }
234
235 static int udp_com_delete(struct sender_command_data *scd)
236 {
237         struct sender_client *sc = udp_lookup_target(scd);
238
239         if (sc) {
240                 udp_delete_target(sc, "com_delete");
241                 return 1;
242         }
243         PARA_NOTICE_LOG("not deleting non-existing target '%s'\n", scd->host);
244         return -E_TARGET_NOT_FOUND;
245 }
246
247 /** Initialize UDP session and set maximum payload size. */
248 static int udp_init_fec(struct sender_client *sc)
249 {
250         int mps;
251
252         udp_init_session(sc);
253         mps = generic_max_transport_msg_size(sc->fd) - sizeof(struct udphdr);
254         PARA_INFO_LOG("current MPS = %d bytes\n", mps);
255         return mps;
256 }
257
258 /** Check and clear socket error if any. */
259 static int udp_check_socket_state(struct sender_client *sc)
260 {
261         struct udp_target *ut = sc->private_data;
262         int ret;
263         socklen_t errlen = sizeof(ret);
264
265         if (getsockopt(sc->fd, SOL_SOCKET, SO_ERROR, &ret, &errlen) < 0) {
266                 PARA_ERROR_LOG("SO_ERROR failed: %s\n", strerror(ret));
267                 return 0;
268         } else if (ret == 0) {
269                 return 0;
270         } else if (ret == ECONNREFUSED) {
271                 time_t dist = now->tv_sec - ut->last_unreachable;
272
273                 if (dist <= UDP_MAX_UNREACHABLE_TIME) {
274                         return 0;
275                 } else if (dist > 2 * UDP_MAX_UNREACHABLE_TIME) {
276                         ut->last_unreachable = now->tv_sec;
277                         return 0;
278                 } else {
279                         /*
280                          * unreachable_time < dist <= 2 * unreachable_time
281                          * No errors are allowed during this time window.
282                          */
283                         PARA_NOTICE_LOG("Evicting %s after %d seconds "
284                                         "of connection errors.\n",
285                                         sc->name, (int)dist);
286                 }
287         }
288         return -ERRNO_TO_PARA_ERROR(ret);
289 }
290
291 static int udp_send_fec(struct sender_client *sc, char *buf, size_t len)
292 {
293         int ret;
294
295         if (sender_status == SENDER_OFF)
296                 return 0;
297         if (len == 0 && !cq_peek(sc->cq))
298                 return 0;
299         ret = udp_check_socket_state(sc);
300         if (ret < 0)
301                 goto fail;
302         ret = send_queued_chunks(sc->fd, sc->cq);
303         if (ret < 0)
304                 goto fail;
305         if (!ret) { /* still data left in the queue */
306                 ret = cq_force_enqueue(sc->cq, buf, len);
307                 assert(ret >= 0);
308                 return 0;
309         }
310         ret = write_nonblock(sc->fd, buf, len);
311         if (ret == -ERRNO_TO_PARA_ERROR(ECONNREFUSED)) {
312                 /*
313                  * Happens if meanwhile an ICMP Destination / Port Unreachable
314                  * has arrived. Ignore, persistent errors will be caught above.
315                  */
316                 ret = 0;
317         }
318         if (ret < 0)
319                 goto fail;
320         if (ret != len) {
321                 ret = cq_force_enqueue(sc->cq, buf + ret, len - ret);
322                 assert(ret >= 0);
323         }
324         return 1;
325 fail:
326         udp_delete_target(sc, para_strerror(-ret));
327         return ret;
328 }
329
330 static int udp_com_add(struct sender_command_data *scd)
331 {
332         int ret;
333         struct udp_target *ut;
334         struct sender_client *sc = udp_lookup_target(scd);
335
336         if (sc) {
337                 PARA_NOTICE_LOG("target %s already exists - not adding it\n",
338                                 sc->name);
339                 return -E_TARGET_EXISTS;
340         }
341         ut = para_calloc(sizeof(*ut));
342         sc = ut->sc = para_calloc(sizeof(*sc));
343         ut->fcp.slices_per_group      = scd->slices_per_group;
344         ut->fcp.data_slices_per_group = scd->data_slices_per_group;
345         ut->fcp.init_fec              = udp_init_fec;
346         ut->fcp.send_fec              = udp_send_fec;
347
348         sc->private_data = ut;
349         sc->fd = -1;
350         ret = para_connect_simple(IPPROTO_UDP, scd->host, scd->port);
351         if (ret < 0)
352                 goto err;
353         sc->fd = ret;
354
355         ret = mcast_sender_setup(sc);
356         if (ret < 0)
357                 goto err;
358         ret = mark_fd_nonblocking(sc->fd);
359         if (ret < 0)
360                 goto err;
361         sc->name = para_strdup(remote_name(sc->fd));
362         PARA_INFO_LOG("adding to target list (%s)\n", sc->name);
363         ut->fc = vss_add_fec_client(sc, &ut->fcp);
364         para_list_add(&sc->node, &targets);
365         add_close_on_fork_list(sc->fd);
366         return 1;
367 err:
368         if (sc->fd >= 0)
369                 close(sc->fd);
370         PARA_NOTICE_LOG("failed to set up %s:%d (%s)- not adding it\n",
371                         scd->host, scd->port, para_strerror(-ret));
372         free(sc);
373         free(ut);
374         return ret;
375 }
376
377 static char *udp_info(void)
378 {
379         struct sender_client *sc;
380         char *ret, *tgts = NULL;
381
382         list_for_each_entry(sc, &targets, node) {
383                 struct udp_target *ut = sc->private_data;
384                 char *tmp = make_message("%s%s/%u:%u ",
385                         tgts ? : "", sc->name,
386                         ut->fcp.data_slices_per_group,
387                         ut->fcp.slices_per_group
388                 );
389                 free(tgts);
390                 tgts = tmp;
391         }
392         ret = make_message(
393                 "udp sender:\n"
394                 "\tstatus: %s\n"
395                 "\tport: %s\n"
396                 "\ttargets: %s\n",
397                 (sender_status == SENDER_ON)? "on" : "off",
398                 stringify_port(conf.udp_default_port_arg, "udp"),
399                 tgts? tgts : "(none)"
400         );
401         free(tgts);
402         return ret;
403 }
404
405 static void udp_init_target_list(void)
406 {
407         struct sender_command_data scd;
408         int i;
409
410         INIT_LIST_HEAD(&targets);
411         for (i = 0; i < conf.udp_target_given; i++) {
412                 if (udp_resolve_target(conf.udp_target_arg[i], &scd) < 0)
413                         PARA_CRIT_LOG("not adding requested target '%s'\n",
414                                         conf.udp_target_arg[i]);
415                 else
416                         udp_com_add(&scd);
417         }
418 }
419
420 static char *udp_help(void)
421 {
422         return make_message(
423                 "usage: {on|off}\n"
424                 "usage: {add|delete} ip_address[:port][/[packet_size:]k:n]\n"
425                 "       - k is the number of data slices per FEC group\n"
426                 "       - n is the total number of slices in a FEC group\n"
427                 "       - packet_size reduces the slice size below path MTU\n\n"
428                 "examples: add 224.0.1.38:1500  (IPv4 multicast)\n"
429                 "          add 224.0.1.38:8080/14:16 (explicit FEC)\n"
430                 "          add 10.10.1.42       (using default port)\n"
431                 "          add [FF05::42]:1500  (IPv6 multicast)\n"
432                 "          add [::1]            (IPv6 localhost/default port)\n"
433                 "          delete myhost.net    (host with port wildcard)\n"
434                 "          delete 10.1.2.3:456  (IPv4 with explicit port)\n"
435                 "          delete [badc0de::1]  (IPv6 with port wildcard)\n"
436         );
437 }
438
439 /**
440  * The init function of para_server's udp sender.
441  *
442  * \param s Pointer to the udp sender struct.
443  *
444  * It initializes all function pointers of \a s and the list of udp targets.
445  */
446 void udp_send_init(struct sender *s)
447 {
448         INIT_LIST_HEAD(&targets);
449         s->info = udp_info;
450         s->help = udp_help;
451         s->send = NULL;
452         s->pre_select = NULL;
453         s->post_select = NULL;
454         s->shutdown_clients = udp_shutdown_targets;
455         s->resolve_target = udp_resolve_target;
456         s->client_cmds[SENDER_ON] = udp_com_on;
457         s->client_cmds[SENDER_OFF] = udp_com_off;
458         s->client_cmds[SENDER_DENY] = NULL;
459         s->client_cmds[SENDER_ALLOW] = NULL;
460         s->client_cmds[SENDER_ADD] = udp_com_add;
461         s->client_cmds[SENDER_DELETE] = udp_com_delete;
462         sender_status = SENDER_OFF;
463         udp_init_target_list();
464         if (!conf.udp_no_autostart_given)
465                 sender_status = SENDER_ON;
466         PARA_DEBUG_LOG("udp sender init complete\n");
467 }