]> git.sesse.net Git - ffmpeg/blob - libavformat/tcp.c
Replace some commented-out debug printf() / av_log() messages with av_dlog().
[ffmpeg] / libavformat / tcp.c
1 /*
2  * TCP protocol
3  * Copyright (c) 2002 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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, *ai, *cur_ai;
41     int port, fd = -1;
42     TCPContext *s = NULL;
43     int listen_socket = 0;
44     const char *p;
45     char buf[256];
46     int ret;
47     socklen_t optlen;
48     char hostname[1024],proto[1024],path[1024];
49     char portstr[10];
50
51     av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
52         &port, path, sizeof(path), uri);
53     if (strcmp(proto,"tcp") || port <= 0 || port >= 65536)
54         return AVERROR(EINVAL);
55
56     p = strchr(uri, '?');
57     if (p) {
58         if (av_find_info_tag(buf, sizeof(buf), "listen", p))
59             listen_socket = 1;
60     }
61     memset(&hints, 0, sizeof(hints));
62     hints.ai_family = AF_UNSPEC;
63     hints.ai_socktype = SOCK_STREAM;
64     snprintf(portstr, sizeof(portstr), "%d", port);
65     ret = getaddrinfo(hostname, portstr, &hints, &ai);
66     if (ret) {
67         av_log(h, AV_LOG_ERROR,
68                "Failed to resolve hostname %s: %s\n",
69                hostname, gai_strerror(ret));
70         return AVERROR(EIO);
71     }
72
73     cur_ai = ai;
74
75  restart:
76     fd = socket(cur_ai->ai_family, cur_ai->ai_socktype, cur_ai->ai_protocol);
77     if (fd < 0)
78         goto fail;
79
80     if (listen_socket) {
81         int fd1;
82         ret = bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
83         listen(fd, 1);
84         fd1 = accept(fd, NULL, NULL);
85         closesocket(fd);
86         fd = fd1;
87     } else {
88  redo:
89         ret = connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
90     }
91
92     ff_socket_nonblock(fd, 1);
93
94     if (ret < 0) {
95         struct pollfd p = {fd, POLLOUT, 0};
96         if (ff_neterrno() == AVERROR(EINTR)) {
97             if (url_interrupt_cb()) {
98                 ret = AVERROR_EXIT;
99                 goto fail1;
100             }
101             goto redo;
102         }
103         if (ff_neterrno() != AVERROR(EINPROGRESS) &&
104             ff_neterrno() != AVERROR(EAGAIN))
105             goto fail;
106
107         /* wait until we are connected or until abort */
108         for(;;) {
109             if (url_interrupt_cb()) {
110                 ret = AVERROR_EXIT;
111                 goto fail1;
112             }
113             ret = poll(&p, 1, 100);
114             if (ret > 0)
115                 break;
116         }
117
118         /* test error */
119         optlen = sizeof(ret);
120         getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen);
121         if (ret != 0) {
122             av_log(h, AV_LOG_ERROR,
123                    "TCP connection to %s:%d failed: %s\n",
124                    hostname, port, strerror(ret));
125             goto fail;
126         }
127     }
128     s = av_malloc(sizeof(TCPContext));
129     if (!s) {
130         freeaddrinfo(ai);
131         return AVERROR(ENOMEM);
132     }
133     h->priv_data = s;
134     h->is_streamed = 1;
135     s->fd = fd;
136     freeaddrinfo(ai);
137     return 0;
138
139  fail:
140     if (cur_ai->ai_next) {
141         /* Retry with the next sockaddr */
142         cur_ai = cur_ai->ai_next;
143         if (fd >= 0)
144             closesocket(fd);
145         goto restart;
146     }
147     ret = AVERROR(EIO);
148  fail1:
149     if (fd >= 0)
150         closesocket(fd);
151     freeaddrinfo(ai);
152     return ret;
153 }
154
155 static int tcp_read(URLContext *h, uint8_t *buf, int size)
156 {
157     TCPContext *s = h->priv_data;
158     int ret;
159
160     if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
161         ret = ff_network_wait_fd(s->fd, 0);
162         if (ret < 0)
163             return ret;
164     }
165     ret = recv(s->fd, buf, size, 0);
166     return ret < 0 ? ff_neterrno() : ret;
167 }
168
169 static int tcp_write(URLContext *h, const uint8_t *buf, int size)
170 {
171     TCPContext *s = h->priv_data;
172     int ret;
173
174     if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
175         ret = ff_network_wait_fd(s->fd, 1);
176         if (ret < 0)
177             return ret;
178     }
179     ret = send(s->fd, buf, size, 0);
180     return ret < 0 ? ff_neterrno() : ret;
181 }
182
183 static int tcp_close(URLContext *h)
184 {
185     TCPContext *s = h->priv_data;
186     closesocket(s->fd);
187     av_free(s);
188     return 0;
189 }
190
191 static int tcp_get_file_handle(URLContext *h)
192 {
193     TCPContext *s = h->priv_data;
194     return s->fd;
195 }
196
197 URLProtocol ff_tcp_protocol = {
198     .name                = "tcp",
199     .url_open            = tcp_open,
200     .url_read            = tcp_read,
201     .url_write           = tcp_write,
202     .url_close           = tcp_close,
203     .url_get_file_handle = tcp_get_file_handle,
204 };