]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/udp.c
variable UDP packet size patch by Max Krasnyansky
[frescor/ffmpeg.git] / libavformat / udp.c
1 /*
2  * UDP prototype streaming system
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 #include "avformat.h"
20 #include <unistd.h>
21 #include <sys/types.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #ifndef __BEOS__
25 # include <arpa/inet.h>
26 #else
27 # include "barpainet.h"
28 #endif
29 #include <netdb.h>
30
31 typedef struct {
32     int udp_fd;
33     int ttl;
34     int is_multicast;
35     int local_port;
36     struct ip_mreq mreq;
37     struct sockaddr_in dest_addr;
38 } UDPContext;
39
40 #define UDP_TX_BUF_SIZE 32768
41
42 /**
43  * If no filename is given to av_open_input_file because you want to
44  * get the local port first, then you must call this function to set
45  * the remote server address.
46  *
47  * url syntax: udp://host:port[?option=val...]
48  * option: 'multicast=1' : enable multicast 
49  *         'ttl=n'       : set the ttl value (for multicast only)
50  *         'localport=n' : set the local port
51  *         'pkt_size=n'  : set max packet size
52  *
53  * @param s1 media file context
54  * @param uri of the remote server
55  * @return zero if no error.
56  */
57 int udp_set_remote_url(URLContext *h, const char *uri)
58 {
59     UDPContext *s = h->priv_data;
60     char hostname[256];
61     int port;
62     
63     url_split(NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
64
65     /* set the destination address */
66     if (resolve_host(&s->dest_addr.sin_addr, hostname) < 0)
67         return -EIO;
68     s->dest_addr.sin_family = AF_INET;
69     s->dest_addr.sin_port = htons(port);
70     return 0;
71 }
72
73 /**
74  * Return the local port used by the UDP connexion
75  * @param s1 media file context
76  * @return the local port number
77  */
78 int udp_get_local_port(URLContext *h)
79 {
80     UDPContext *s = h->priv_data;
81     return s->local_port;
82 }
83
84 /**
85  * Return the udp file handle for select() usage to wait for several RTP
86  * streams at the same time.
87  * @param h media file context
88  */
89 int udp_get_file_handle(URLContext *h)
90 {
91     UDPContext *s = h->priv_data;
92     return s->udp_fd;
93 }
94
95 /* put it in UDP context */
96 /* return non zero if error */
97 static int udp_open(URLContext *h, const char *uri, int flags)
98 {
99     struct sockaddr_in my_addr, my_addr1;
100     char hostname[1024];
101     int port, udp_fd = -1, tmp;
102     UDPContext *s = NULL;
103     int is_output, len;
104     const char *p;
105     char buf[256];
106
107     h->is_streamed = 1;
108     h->max_packet_size = 1472;
109
110     is_output = (flags & URL_WRONLY);
111     
112     s = av_malloc(sizeof(UDPContext));
113     if (!s)
114         return -ENOMEM;
115
116     h->priv_data = s;
117     s->ttl = 16;
118     s->is_multicast = 0;
119     p = strchr(uri, '?');
120     if (p) {
121         s->is_multicast = find_info_tag(buf, sizeof(buf), "multicast", p);
122         if (find_info_tag(buf, sizeof(buf), "ttl", p)) {
123             s->ttl = strtol(buf, NULL, 10);
124         }
125         if (find_info_tag(buf, sizeof(buf), "localport", p)) {
126             s->local_port = strtol(buf, NULL, 10);
127         }
128         if (find_info_tag(buf, sizeof(buf), "pkt_size", p)) {
129             h->max_packet_size = strtol(buf, NULL, 10);
130         }
131     }
132
133     /* fill the dest addr */
134     url_split(NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
135     
136     /* XXX: fix url_split */
137     if (hostname[0] == '\0' || hostname[0] == '?') {
138         /* only accepts null hostname if input */
139         if (s->is_multicast || (flags & URL_WRONLY))
140             goto fail;
141     } else {
142         udp_set_remote_url(h, uri);
143     }
144
145     udp_fd = socket(PF_INET, SOCK_DGRAM, 0);
146     if (udp_fd < 0)
147         goto fail;
148
149     my_addr.sin_family = AF_INET;
150     my_addr.sin_addr.s_addr = htonl (INADDR_ANY);
151     if (s->is_multicast && !(h->flags & URL_WRONLY)) {
152         /* special case: the bind must be done on the multicast address port */
153         my_addr.sin_port = s->dest_addr.sin_port;
154     } else {
155         my_addr.sin_port = htons(s->local_port);
156     }
157
158     /* the bind is needed to give a port to the socket now */
159     if (bind(udp_fd,(struct sockaddr *)&my_addr, sizeof(my_addr)) < 0) 
160         goto fail;
161
162     len = sizeof(my_addr1);
163     getsockname(udp_fd, (struct sockaddr *)&my_addr1, &len);
164     s->local_port = ntohs(my_addr1.sin_port);
165
166 #ifndef CONFIG_BEOS_NETSERVER
167     if (s->is_multicast) {
168         if (h->flags & URL_WRONLY) {
169             /* output */
170             if (setsockopt(udp_fd, IPPROTO_IP, IP_MULTICAST_TTL, 
171                            &s->ttl, sizeof(s->ttl)) < 0) {
172                 perror("IP_MULTICAST_TTL");
173                 goto fail;
174             }
175         } else {
176             /* input */
177             memset(&s->mreq, 0, sizeof(s->mreq));
178             s->mreq.imr_multiaddr = s->dest_addr.sin_addr;
179             s->mreq.imr_interface.s_addr = htonl (INADDR_ANY);
180             if (setsockopt(udp_fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, 
181                            &s->mreq, sizeof(s->mreq)) < 0) {
182                 perror("rtp: IP_ADD_MEMBERSHIP");
183                 goto fail;
184             }
185         }
186     }
187 #endif
188
189     if (is_output) {
190         /* limit the tx buf size to limit latency */
191         tmp = UDP_TX_BUF_SIZE;
192         if (setsockopt(udp_fd, SOL_SOCKET, SO_SNDBUF, &tmp, sizeof(tmp)) < 0) {
193             perror("setsockopt sndbuf");
194             goto fail;
195         }
196     }
197
198     s->udp_fd = udp_fd;
199     return 0;
200  fail:
201     if (udp_fd >= 0)
202 #ifdef CONFIG_BEOS_NETSERVER
203         closesocket(udp_fd);
204 #else
205         close(udp_fd);
206 #endif
207     av_free(s);
208     return -EIO;
209 }
210
211 static int udp_read(URLContext *h, UINT8 *buf, int size)
212 {
213     UDPContext *s = h->priv_data;
214     struct sockaddr_in from;
215     int from_len, len;
216
217     for(;;) {
218         from_len = sizeof(from);
219         len = recvfrom (s->udp_fd, buf, size, 0,
220                         (struct sockaddr *)&from, &from_len);
221         if (len < 0) {
222             if (errno != EAGAIN && errno != EINTR)
223                 return -EIO;
224         } else {
225             break;
226         }
227     }
228     return len;
229 }
230
231 static int udp_write(URLContext *h, UINT8 *buf, int size)
232 {
233     UDPContext *s = h->priv_data;
234     int ret;
235
236     for(;;) {
237         ret = sendto (s->udp_fd, buf, size, 0, 
238                       (struct sockaddr *) &s->dest_addr,
239                       sizeof (s->dest_addr));
240         if (ret < 0) {
241             if (errno != EINTR && errno != EAGAIN)
242                 return -EIO;
243         } else {
244             break;
245         }
246     }
247     return size;
248 }
249
250 static int udp_close(URLContext *h)
251 {
252     UDPContext *s = h->priv_data;
253
254 #ifndef CONFIG_BEOS_NETSERVER
255     if (s->is_multicast && !(h->flags & URL_WRONLY)) {
256         if (setsockopt(s->udp_fd, IPPROTO_IP, IP_DROP_MEMBERSHIP, 
257                        &s->mreq, sizeof(s->mreq)) < 0) {
258             perror("IP_DROP_MEMBERSHIP");
259         }
260     }
261     close(s->udp_fd);
262 #else
263     closesocket(s->udp_fd);
264 #endif
265     av_free(s);
266     return 0;
267 }
268
269 URLProtocol udp_protocol = {
270     "udp",
271     udp_open,
272     udp_read,
273     udp_write,
274     NULL, /* seek */
275     udp_close,
276 };