]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/udp.c
Added global params udp_period and udp_budget used as paramters for
[frescor/ffmpeg.git] / libavformat / udp.c
1 /*
2  * UDP prototype streaming system
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file libavformat/udp.c
24  * UDP protocol
25  */
26
27 #define _BSD_SOURCE     /* Needed for using struct ip_mreq with recent glibc */
28 #include "avformat.h"
29 #include <unistd.h>
30 #include "network.h"
31 #include "os_support.h"
32 #if HAVE_SYS_SELECT_H
33 #include <sys/select.h>
34 #endif
35 #include <sys/time.h>
36
37 #include <frsh.h>
38 long int udp_budget, udp_period;
39
40 typedef struct {
41     int udp_fd;
42     int ttl;
43     int buffer_size;
44     int is_multicast;
45     int local_port;
46     int reuse_socket;
47     struct sockaddr_in dest_addr;
48     int dest_addr_len;
49         
50         frsh_send_endpoint_t sepoint;
51         frsh_send_endpoint_t repoint;
52         frsh_vres_id_t vres;
53         frsh_send_endpoint_protocol_info_t send_pinfo;
54         frsh_contract_t contract;
55         frsh_rel_time_t budget, period;
56 } UDPContext;
57
58 #define UDP_TX_BUF_SIZE 32768
59 #define UDP_MAX_PKT_SIZE 65536
60
61 static int udp_set_multicast_ttl(int sockfd, int mcastTTL, struct sockaddr *addr) 
62 {
63     return 0;
64 }
65
66 static int udp_join_multicast_group(int sockfd, struct sockaddr *addr) 
67 {
68     return 0;
69 }
70
71 static int udp_leave_multicast_group(int sockfd, struct sockaddr *addr) 
72 {
73     return 0;
74 }
75
76 static int udp_set_url(struct sockaddr_in *addr, const char *hostname, int port)
77 {
78     /* set the destination address */
79     if (resolve_host(&addr->sin_addr, hostname) < 0)
80         return AVERROR(EIO);
81     addr->sin_family = AF_INET;
82     addr->sin_port = htons(port);
83
84     return sizeof(struct sockaddr_in);
85 }
86
87 static int is_multicast_address(struct sockaddr_in *addr)
88 {
89     return 0;
90 }
91
92 static int 
93 udp_socket_create(UDPContext *s, struct sockaddr_in *addr, int *addr_len)
94 {
95         int ret,udp_fd;
96
97     addr->sin_family = AF_INET;
98     addr->sin_addr.s_addr = htonl (INADDR_ANY);
99     addr->sin_port = htons(s->local_port);
100     *addr_len = sizeof(struct sockaddr_in);
101
102         /* set params for contract */
103         frsh_network_bytes_to_budget(FRSH_NETPF_FWP, udp_budget, &s->budget);
104         s->period = fosa_msec_to_rel_time(udp_period);
105         s->send_pinfo.body = NULL;              
106         
107         udp_fd = frsh_send_endpoint_create(FRSH_NETPF_FWP, 
108                                         s->dest_addr.sin_addr.s_addr,
109                                         ntohs(s->dest_addr.sin_port), s->send_pinfo, 
110                                         &s->sepoint);
111         if (udp_fd < 0) {
112                         
113                         return -1;
114         }
115         
116         /* Contract negotiation */
117         ret = frsh_contract_init(&s->contract);
118         //if (ret) PERROR_AND_EXIT(ret, "frsh_contract_init");
119         if (ret) return -1;
120                 
121         ret = frsh_contract_set_basic_params(&s->contract,
122                                              &s->budget,
123                                              &s->period,
124                                              FRSH_WT_BOUNDED,
125                                              FRSH_CT_REGULAR);
126         //if (ret) PERROR_AND_EXIT(ret, "frsh_contract_set_basic_params");
127         if (ret) return -1;
128         ret = frsh_contract_set_resource_and_label(&s->contract,FRSH_RT_NETWORK,
129                                                 FRSH_NETPF_FWP, "net_cont1");
130         //if (ret) PERROR_AND_EXIT(ret, "frsh_contract_set_resource_and_label");
131         if (ret) return -1;
132
133         ret = frsh_contract_negotiate(&s->contract, &s->vres);
134         //if (ret) PERROR_AND_EXIT(ret, "frsh_contract_negotiate");
135         if (ret) return -1;
136         
137         printf("Send endpoint created\n");
138         frsh_send_endpoint_bind(s->vres, s->sepoint);
139         printf("Send endpoint bounded\n");
140         
141         //fwp_endpoint_get_params(s->sepoint->protocol_info.body, &node,
142         //              &port, &attr, &fd);
143
144         return udp_fd;
145 }
146
147 static int udp_port(struct sockaddr_in *addr, int len)
148 {
149     return ntohs(addr->sin_port);
150 }
151
152 /**
153  * If no filename is given to av_open_input_file because you want to
154  * get the local port first, then you must call this function to set
155  * the remote server address.
156  *
157  * url syntax: udp://host:port[?option=val...]
158  * option: 'ttl=n'       : set the ttl value (for multicast only)
159  *         'localport=n' : set the local port
160  *         'pkt_size=n'  : set max packet size
161  *         'reuse=1'     : enable reusing the socket
162  *
163  * @param s1 media file context
164  * @param uri of the remote server
165  * @return zero if no error.
166  */
167 int udp_set_remote_url(URLContext *h, const char *uri)
168 {
169     UDPContext *s = h->priv_data;
170     char hostname[256];
171     int port;
172
173     url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
174
175     /* set the destination address */
176     s->dest_addr_len = udp_set_url(&s->dest_addr, hostname, port);
177     if (s->dest_addr_len < 0) {
178         return AVERROR(EIO);
179     }
180     s->is_multicast = is_multicast_address(&s->dest_addr);
181
182     return 0;
183 }
184
185 /**
186  * Return the local port used by the UDP connexion
187  * @param s1 media file context
188  * @return the local port number
189  */
190 int udp_get_local_port(URLContext *h)
191 {
192     UDPContext *s = h->priv_data;
193     return s->local_port;
194 }
195
196 /**
197  * Return the udp file handle for select() usage to wait for several RTP
198  * streams at the same time.
199  * @param h media file context
200  */
201 #if (LIBAVFORMAT_VERSION_MAJOR >= 53)
202 static
203 #endif
204 int udp_get_file_handle(URLContext *h)
205 {
206     UDPContext *s = h->priv_data;
207     return s->udp_fd;
208 }
209
210 /* put it in UDP context */
211 /* return non zero if error */
212 static int udp_open(URLContext *h, const char *uri, int flags)
213 {
214     char hostname[1024];
215     int port, udp_fd = -1, tmp;
216     UDPContext *s = NULL;
217     int is_output;
218     const char *p;
219     char buf[256];
220     struct sockaddr_in my_addr;
221     int len;
222
223     h->is_streamed = 1;
224     h->max_packet_size = 1472;
225
226     is_output = (flags & URL_WRONLY);
227
228     if(!ff_network_init())
229         return AVERROR(EIO);
230
231     s = av_mallocz(sizeof(UDPContext));
232     if (!s)
233         return AVERROR(ENOMEM);
234
235     h->priv_data = s;
236     s->ttl = 16;
237     s->buffer_size = is_output ? UDP_TX_BUF_SIZE : UDP_MAX_PKT_SIZE;
238
239     p = strchr(uri, '?');
240     if (p) {
241         s->reuse_socket = find_info_tag(buf, sizeof(buf), "reuse", p);
242         if (find_info_tag(buf, sizeof(buf), "ttl", p)) {
243             s->ttl = strtol(buf, NULL, 10);
244         }
245         if (find_info_tag(buf, sizeof(buf), "localport", p)) {
246             s->local_port = strtol(buf, NULL, 10);
247         }
248         if (find_info_tag(buf, sizeof(buf), "pkt_size", p)) {
249             h->max_packet_size = strtol(buf, NULL, 10);
250         }
251         if (find_info_tag(buf, sizeof(buf), "buffer_size", p)) {
252             s->buffer_size = strtol(buf, NULL, 10);
253         }
254     }
255
256     /* fill the dest addr */
257     url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
258
259     /* XXX: fix url_split */
260     if (hostname[0] == '\0' || hostname[0] == '?') {
261         /* only accepts null hostname if input */
262         if (flags & URL_WRONLY)
263             goto fail;
264     } else {
265         udp_set_remote_url(h, uri);
266     }
267
268     udp_fd = udp_socket_create(s, &my_addr, &len);
269     if (udp_fd < 0)
270         goto fail;
271 #if 0
272     if (s->reuse_socket)
273         if (setsockopt (udp_fd, SOL_SOCKET, SO_REUSEADDR, &(s->reuse_socket), sizeof(s->reuse_socket)) != 0)
274             goto fail;
275
276     /* bind to the local address if not multicast or if the multicast
277      * bind failed */
278     /*if (bind_ret < 0 && bind(udp_fd,(struct sockaddr *)&my_addr, len) < 0)
279         goto fail;*/
280 #endif
281
282     len = sizeof(my_addr);
283     getsockname(udp_fd, (struct sockaddr *)&my_addr, &len);
284     s->local_port = udp_port(&my_addr, len);
285
286     if (is_output) {
287         /* limit the tx buf size to limit latency */
288         tmp = s->buffer_size;
289         if (setsockopt(udp_fd, SOL_SOCKET, SO_SNDBUF, &tmp, sizeof(tmp)) < 0) {
290             av_log(NULL, AV_LOG_ERROR, "setsockopt(SO_SNDBUF): %s\n", strerror(errno));
291             goto fail;
292         }
293     } else {
294         /* set udp recv buffer size to the largest possible udp packet size to
295          * avoid losing data on OSes that set this too low by default. */
296         tmp = s->buffer_size;
297         if (setsockopt(udp_fd, SOL_SOCKET, SO_RCVBUF, &tmp, sizeof(tmp)) < 0) {
298             av_log(NULL, AV_LOG_WARNING, "setsockopt(SO_RECVBUF): %s\n", strerror(errno));
299         }
300         /* make the socket non-blocking */
301         ff_socket_nonblock(udp_fd, 1);
302     }
303     s->udp_fd = udp_fd;
304     return 0;
305  
306  fail:
307     if (udp_fd >= 0)
308         closesocket(udp_fd);
309     av_free(s);
310     return AVERROR(EIO);
311 }
312
313 static int udp_read(URLContext *h, uint8_t *buf, int size)
314 {
315     UDPContext *s = h->priv_data;
316     unsigned int from;
317         int len;
318
319     return frsh_receive_sync(s->repoint, buf, size, &len, &from);
320 }
321
322 static int udp_write(URLContext *h, uint8_t *buf, int size)
323 {
324     UDPContext *s = h->priv_data;
325     int ret;
326         
327         ret = frsh_send_async(s->sepoint, buf, size);
328         return ret;
329 }
330
331 static int udp_close(URLContext *h)
332 {
333     UDPContext *s = h->priv_data;
334     int ret1, ret2;
335         
336         ret1 = frsh_send_endpoint_destroy(s->sepoint);
337         ret2 = frsh_receive_endpoint_destroy(s->repoint);
338         return (ret1 || ret2);
339 }
340
341 URLProtocol udp_protocol = {
342     "udp",
343     udp_open,
344     udp_read,
345     udp_write,
346     NULL, /* seek */
347     udp_close,
348     .url_get_file_handle = udp_get_file_handle,
349 };