]> git.sesse.net Git - ffmpeg/blob - libavformat/tcp.c
Merge remote-tracking branch 'cus/stable'
[ffmpeg] / libavformat / tcp.c
1 /*
2  * TCP protocol
3  * Copyright (c) 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 #include "avformat.h"
22 #include "libavutil/parseutils.h"
23 #include <unistd.h>
24 #include "internal.h"
25 #include "network.h"
26 #include "os_support.h"
27 #include "url.h"
28 #if HAVE_POLL_H
29 #include <poll.h>
30 #endif
31 #include <sys/time.h>
32
33 typedef struct TCPContext {
34     int fd;
35 } TCPContext;
36
37 /* return non zero if error */
38 static int tcp_open(URLContext *h, const char *uri, int flags)
39 {
40     struct addrinfo hints = { 0 }, *ai, *cur_ai;
41     int port, fd = -1;
42     TCPContext *s = h->priv_data;
43     int listen_socket = 0;
44     const char *p;
45     char buf[256];
46     int ret;
47     socklen_t optlen;
48     int timeout = 50;
49     char hostname[1024],proto[1024],path[1024];
50     char portstr[10];
51
52     av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
53         &port, path, sizeof(path), uri);
54     if (strcmp(proto,"tcp") || port <= 0 || port >= 65536)
55         return AVERROR(EINVAL);
56
57     p = strchr(uri, '?');
58     if (p) {
59         if (av_find_info_tag(buf, sizeof(buf), "listen", p))
60             listen_socket = 1;
61         if (av_find_info_tag(buf, sizeof(buf), "timeout", p)) {
62             timeout = strtol(buf, NULL, 10);
63         }
64     }
65     hints.ai_family = AF_UNSPEC;
66     hints.ai_socktype = SOCK_STREAM;
67     snprintf(portstr, sizeof(portstr), "%d", port);
68     ret = getaddrinfo(hostname, portstr, &hints, &ai);
69     if (ret) {
70         av_log(h, AV_LOG_ERROR,
71                "Failed to resolve hostname %s: %s\n",
72                hostname, gai_strerror(ret));
73         return AVERROR(EIO);
74     }
75
76     cur_ai = ai;
77
78  restart:
79     ret = AVERROR(EIO);
80     fd = socket(cur_ai->ai_family, cur_ai->ai_socktype, cur_ai->ai_protocol);
81     if (fd < 0)
82         goto fail;
83
84     if (listen_socket) {
85         int fd1;
86         int reuse = 1;
87         setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
88         ret = bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
89         if (ret) {
90             ret = ff_neterrno();
91             goto fail1;
92         }
93         ret = listen(fd, 1);
94         if (ret) {
95             ret = ff_neterrno();
96             goto fail1;
97         }
98         fd1 = accept(fd, NULL, NULL);
99         if (fd1 < 0) {
100             ret = ff_neterrno();
101             goto fail1;
102         }
103         closesocket(fd);
104         fd = fd1;
105         ff_socket_nonblock(fd, 1);
106     } else {
107  redo:
108         ff_socket_nonblock(fd, 1);
109         ret = connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
110     }
111
112     if (ret < 0) {
113         struct pollfd p = {fd, POLLOUT, 0};
114         ret = ff_neterrno();
115         if (ret == AVERROR(EINTR)) {
116             if (ff_check_interrupt(&h->interrupt_callback)) {
117                 ret = AVERROR_EXIT;
118                 goto fail1;
119             }
120             goto redo;
121         }
122         if (ret != AVERROR(EINPROGRESS) &&
123             ret != AVERROR(EAGAIN))
124             goto fail;
125
126         /* wait until we are connected or until abort */
127         while(timeout--) {
128             if (ff_check_interrupt(&h->interrupt_callback)) {
129                 ret = AVERROR_EXIT;
130                 goto fail1;
131             }
132             ret = poll(&p, 1, 100);
133             if (ret > 0)
134                 break;
135         }
136         if (ret <= 0) {
137             ret = AVERROR(ETIMEDOUT);
138             goto fail;
139         }
140         /* test error */
141         optlen = sizeof(ret);
142         getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen);
143         if (ret != 0) {
144             av_log(h, AV_LOG_ERROR,
145                    "TCP connection to %s:%d failed: %s\n",
146                    hostname, port, strerror(ret));
147             ret = AVERROR(ret);
148             goto fail;
149         }
150     }
151     h->is_streamed = 1;
152     s->fd = fd;
153     freeaddrinfo(ai);
154     return 0;
155
156  fail:
157     if (cur_ai->ai_next) {
158         /* Retry with the next sockaddr */
159         cur_ai = cur_ai->ai_next;
160         if (fd >= 0)
161             closesocket(fd);
162         goto restart;
163     }
164  fail1:
165     if (fd >= 0)
166         closesocket(fd);
167     freeaddrinfo(ai);
168     return ret;
169 }
170
171 static int tcp_read(URLContext *h, uint8_t *buf, int size)
172 {
173     TCPContext *s = h->priv_data;
174     int ret;
175
176     if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
177         ret = ff_network_wait_fd(s->fd, 0);
178         if (ret < 0)
179             return ret;
180     }
181     ret = recv(s->fd, buf, size, 0);
182     return ret < 0 ? ff_neterrno() : ret;
183 }
184
185 static int tcp_write(URLContext *h, const uint8_t *buf, int size)
186 {
187     TCPContext *s = h->priv_data;
188     int ret;
189
190     if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
191         ret = ff_network_wait_fd(s->fd, 1);
192         if (ret < 0)
193             return ret;
194     }
195     ret = send(s->fd, buf, size, 0);
196     return ret < 0 ? ff_neterrno() : ret;
197 }
198
199 static int tcp_shutdown(URLContext *h, int flags)
200 {
201     TCPContext *s = h->priv_data;
202     int how;
203
204     if (flags & AVIO_FLAG_WRITE && flags & AVIO_FLAG_READ) {
205         how = SHUT_RDWR;
206     } else if (flags & AVIO_FLAG_WRITE) {
207         how = SHUT_WR;
208     } else {
209         how = SHUT_RD;
210     }
211
212     return shutdown(s->fd, how);
213 }
214
215 static int tcp_close(URLContext *h)
216 {
217     TCPContext *s = h->priv_data;
218     closesocket(s->fd);
219     return 0;
220 }
221
222 static int tcp_get_file_handle(URLContext *h)
223 {
224     TCPContext *s = h->priv_data;
225     return s->fd;
226 }
227
228 URLProtocol ff_tcp_protocol = {
229     .name                = "tcp",
230     .url_open            = tcp_open,
231     .url_read            = tcp_read,
232     .url_write           = tcp_write,
233     .url_close           = tcp_close,
234     .url_get_file_handle = tcp_get_file_handle,
235     .url_shutdown        = tcp_shutdown,
236     .priv_data_size      = sizeof(TCPContext),
237     .flags               = URL_PROTOCOL_FLAG_NETWORK,
238 };