2 * Copyright (C) 2005-2009 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file udp_send.c Para_server's udp sender. */
13 #include <sys/socket.h>
17 #include "server.cmdline.h"
27 #include "portable_io.h"
31 #include "close_on_fork.h"
32 #include "chunk_queue.h"
34 /** Describes one entry in the list of targets for the udp sender. */
36 /** The position of this target in the list of targets. */
37 struct list_head node
;
38 /** The hostname (DNS name or IPv4/v6 address string). */
39 char host
[MAX_HOSTLEN
];
44 /** The list of queued chunks for this fd. */
45 struct chunk_queue
*cq
;
46 /** The opaque structure returned by vss_add_fec_client(). */
47 struct fec_client
*fc
;
48 /** The FEC parameters for this target. */
49 struct fec_client_parms fcp
;
52 static struct list_head targets
;
53 static int sender_status
;
55 static void udp_close_target(struct udp_target
*ut
)
60 del_close_on_fork_list(ut
->fd
);
66 static void udp_delete_target(struct udp_target
*ut
, const char *msg
)
68 PARA_NOTICE_LOG("deleting %s#%d (%s) from list\n", ut
->host
,
71 vss_del_fec_client(ut
->fc
);
77 * Perform AF-independent multicast sender setup.
79 * \param fd The connected socket descriptor.
80 * \param ttl UDPv4 multicast TTL or UDPv6 multicast number of hops.
81 * Use -1 to mean default, 0..255 otherwise.
82 * \param iface The outgoing multicast interface, or NULL for the default.
84 * \return Zero if okay, negative on error.
86 static int mcast_sender_setup(struct udp_target
*ut
, int ttl
, char *iface
)
88 struct sockaddr_storage ss
;
89 socklen_t sslen
= sizeof(ss
);
92 int id
= iface
== NULL
? 0 : if_nametoindex(iface
);
94 if (getpeername(ut
->fd
, (struct sockaddr
*)&ss
, &sslen
) < 0)
97 if (iface
!= NULL
&& id
== 0)
98 PARA_WARNING_LOG("could not resolve interface %s, using default", iface
);
100 /* RFC 3493, 5.2: -1 means 'use kernel default' */
101 if (ttl
< 0 || ttl
> 255)
104 switch (ss
.ss_family
) {
106 if (!IN_MULTICAST(htonl(((struct sockaddr_in
*)&ss
)->sin_addr
.s_addr
)))
112 memset(&mn
, 0, sizeof(mn
));
114 if (setsockopt(ut
->fd
, IPPROTO_IP
, IP_MULTICAST_IF
, &mn
, sizeof(mn
)) < 0)
117 PARA_ERROR_LOG("No support for setting outgoing IPv4 mcast interface.");
121 * Enable receiving multicast messages generated on the local host
122 * At least on Linux, this is enabled by default.
124 if (setsockopt(ut
->fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &on
, sizeof(on
)) < 0)
127 /* Default: use local subnet (do not flood out into the WAN) */
130 if (setsockopt(ut
->fd
, IPPROTO_IP
, IP_MULTICAST_TTL
, &ttl
, sizeof(ttl
)) < 0)
134 if (!IN6_IS_ADDR_MULTICAST(&((struct sockaddr_in6
*)&ss
)->sin6_addr
))
137 setsockopt(ut
->fd
, IPPROTO_IPV6
, IPV6_MULTICAST_IF
, &id
, sizeof(id
)) < 0)
139 if (setsockopt(ut
->fd
, IPPROTO_IPV6
, IPV6_MULTICAST_LOOP
, &on
, sizeof(on
)) < 0)
141 if (setsockopt(ut
->fd
, IPPROTO_IPV6
, IPV6_MULTICAST_HOPS
, &ttl
, sizeof(ttl
)) < 0)
145 PARA_ERROR_LOG("address family %d not supported", ss
.ss_family
);
146 return -E_ADDRESS_LOOKUP
;
149 return -ERRNO_TO_PARA_ERROR(errno
);
152 /** The maximal size of the per-target chunk queue. */
153 #define UDP_CQ_BYTES 40000
155 static int udp_init_session(struct udp_target
*ut
)
160 if (ut
->fd
>= 0) /* nothing to do */
163 ret
= makesock(AF_UNSPEC
, IPPROTO_UDP
, 0, ut
->host
, ut
->port
);
168 if (conf
.udp_mcast_iface_given
)
169 iface
= conf
.udp_mcast_iface_arg
;
171 ret
= mcast_sender_setup(ut
, conf
.udp_ttl_arg
, iface
);
177 ret
= mark_fd_nonblocking(ut
->fd
);
182 add_close_on_fork_list(ut
->fd
);
183 ut
->cq
= cq_new(UDP_CQ_BYTES
);
184 PARA_NOTICE_LOG("sending to udp %s#%d\n", ut
->host
, ut
->port
);
188 static void udp_shutdown_targets(void)
190 struct udp_target
*ut
, *tmp
;
191 const char *buf
= NULL
;
192 size_t len
= 0; /* STFU, gcc */
194 list_for_each_entry_safe(ut
, tmp
, &targets
, node
) {
198 len
= vss_get_fec_eof_packet(&buf
);
199 write(ut
->fd
, buf
, len
);
200 udp_close_target(ut
);
204 static int udp_com_on(__a_unused
struct sender_command_data
*scd
)
206 sender_status
= SENDER_ON
;
210 static int udp_com_off(__a_unused
struct sender_command_data
*scd
)
212 udp_shutdown_targets();
213 sender_status
= SENDER_OFF
;
217 static int udp_com_delete(struct sender_command_data
*scd
)
219 struct udp_target
*ut
, *tmp
;
221 list_for_each_entry_safe(ut
, tmp
, &targets
, node
) {
222 /* Unspecified port means wildcard port match */
223 if (scd
->port
> 0 && scd
->port
!= ut
->port
)
225 if (strcmp(ut
->host
, scd
->host
))
227 udp_delete_target(ut
, "com_delete");
232 static int udp_send_fec(char *buf
, size_t len
, void *private_data
)
234 struct udp_target
*ut
= private_data
;
235 int ret
= udp_init_session(ut
);
239 ret
= send_queued_chunks(ut
->fd
, ut
->cq
, 0);
244 if (!ret
) { /* still data left in the queue */
245 ret
= cq_enqueue(ut
->cq
, buf
, len
);
249 ret
= write_nonblock(ut
->fd
, buf
, len
, 0);
253 ret
= cq_enqueue(ut
->cq
, buf
+ ret
, len
- ret
);
259 udp_delete_target(ut
, para_strerror(-ret
));
263 static void udp_add_target(struct sender_command_data
*scd
)
265 struct udp_target
*ut
= para_calloc(sizeof(struct udp_target
));
267 strncpy(ut
->host
, scd
->host
, sizeof(ut
->host
));
268 ut
->port
= scd
->port
> 0 ? scd
->port
: conf
.udp_default_port_arg
;
269 ut
->fd
= -1; /* not yet connected */
270 PARA_INFO_LOG("adding to target list (%s#%d)\n", ut
->host
, ut
->port
);
271 para_list_add(&ut
->node
, &targets
);
272 ut
->fcp
.slices_per_group
= scd
->slices_per_group
;
273 ut
->fcp
.data_slices_per_group
= scd
->data_slices_per_group
;
274 ut
->fcp
.max_slice_bytes
= scd
->max_slice_bytes
;
275 ut
->fcp
.send
= udp_send_fec
;
276 ut
->fcp
.private_data
= ut
;
277 vss_add_fec_client(&ut
->fcp
, &ut
->fc
);
280 static int udp_com_add(struct sender_command_data
*scd
)
286 static char *udp_info(void)
288 struct udp_target
*ut
;
289 char *ret
, *tgts
= NULL
;
291 list_for_each_entry(ut
, &targets
, node
) {
292 bool is_v6
= strchr(ut
->host
, ':') != NULL
;
293 char *tmp
= make_message("%s%s%s%s:%d/%u:%u:%u ", tgts
? : "",
294 is_v6
? "[" : "", ut
->host
,
295 is_v6
? "]" : "", ut
->port
,
296 ut
->fcp
.max_slice_bytes
,
297 ut
->fcp
.data_slices_per_group
,
298 ut
->fcp
.slices_per_group
308 (sender_status
== SENDER_ON
)? "on" : "off",
309 conf
.udp_default_port_arg
,
310 tgts
? tgts
: "(none)"
316 static void udp_init_target_list(void)
318 struct sender_command_data scd
;
321 INIT_LIST_HEAD(&targets
);
322 for (i
= 0; i
< conf
.udp_target_given
; i
++) {
323 if (parse_fec_url(conf
.udp_target_arg
[i
], &scd
) < 0) {
324 PARA_CRIT_LOG("syntax error for udp target option "
325 "#%d, ignoring\n", i
);
328 udp_add_target(&scd
);
332 static char *udp_help(void)
336 "usage: {add|delete} host[:port][/packet_size:k:n]\n"
337 "examples: add 224.0.1.38:1500 (IPv4 multicast)\n"
338 " add 224.0.1.38:1500/1400:14:16\n"
339 " (likewise, using 1400 byte packets, with 14\n"
340 " data slices per 16 slice FEC group)\n"
341 " add 10.10.1.42 (using default port)\n"
342 " add [FF05::42]:1500 (IPv6 multicast)\n"
343 " add [::1] (IPv6 localhost/default port)\n"
344 " delete myhost.net (host with port wildcard)\n"
345 " delete [badc0de::1] (IPv6 with port wildcard)\n"
350 * The init function of para_server's udp sender.
352 * \param s Pointer to the udp sender struct.
354 * It initializes all function pointers of \a s and the list of udp targets.
356 void udp_send_init(struct sender
*s
)
358 INIT_LIST_HEAD(&targets
);
362 s
->pre_select
= NULL
;
363 s
->post_select
= NULL
;
364 s
->shutdown_clients
= udp_shutdown_targets
;
365 s
->client_cmds
[SENDER_ON
] = udp_com_on
;
366 s
->client_cmds
[SENDER_OFF
] = udp_com_off
;
367 s
->client_cmds
[SENDER_DENY
] = NULL
;
368 s
->client_cmds
[SENDER_ALLOW
] = NULL
;
369 s
->client_cmds
[SENDER_ADD
] = udp_com_add
;
370 s
->client_cmds
[SENDER_DELETE
] = udp_com_delete
;
371 sender_status
= SENDER_OFF
;
372 udp_init_target_list();
373 if (!conf
.udp_no_autostart_given
)
374 sender_status
= SENDER_ON
;
375 PARA_DEBUG_LOG("udp sender init complete\n");