]> git.sesse.net Git - ffmpeg/blob - libavformat/tcp.c
MinGW returns EAGAIN instead of EINPROGRESS
[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 <unistd.h>
23 #include "network.h"
24 #include <sys/time.h>
25
26 typedef struct TCPContext {
27     int fd;
28 } TCPContext;
29
30 /* return non zero if error */
31 static int tcp_open(URLContext *h, const char *uri, int flags)
32 {
33     struct sockaddr_in dest_addr;
34     char hostname[1024], *q;
35     int port, fd = -1;
36     TCPContext *s = NULL;
37     fd_set wfds;
38     int fd_max, ret;
39     struct timeval tv;
40     socklen_t optlen;
41     char proto[1024],path[1024],tmp[1024];  // PETR: protocol and path strings
42
43     url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
44       &port, path, sizeof(path), uri);  // PETR: use url_split
45     if (strcmp(proto,"tcp")) goto fail; // PETR: check protocol
46     if ((q = strchr(hostname,'@'))) { strcpy(tmp,q+1); strcpy(hostname,tmp); } // PETR: take only the part after '@' for tcp protocol
47
48     s = av_malloc(sizeof(TCPContext));
49     if (!s)
50         return AVERROR(ENOMEM);
51     h->priv_data = s;
52
53     if (port <= 0 || port >= 65536)
54         goto fail;
55
56     dest_addr.sin_family = AF_INET;
57     dest_addr.sin_port = htons(port);
58     if (resolve_host(&dest_addr.sin_addr, hostname) < 0)
59         goto fail;
60
61     fd = socket(AF_INET, SOCK_STREAM, 0);
62     if (fd < 0)
63         goto fail;
64     ff_socket_nonblock(fd, 1);
65
66  redo:
67     ret = connect(fd, (struct sockaddr *)&dest_addr,
68                   sizeof(dest_addr));
69     if (ret < 0) {
70         if (ff_neterrno() == FF_NETERROR(EINTR))
71             goto redo;
72         if (ff_neterrno() != FF_NETERROR(EINPROGRESS) &&
73             ff_neterrno() != FF_NETERROR(EAGAIN))
74             goto fail;
75
76         /* wait until we are connected or until abort */
77         for(;;) {
78             if (url_interrupt_cb()) {
79                 ret = AVERROR(EINTR);
80                 goto fail1;
81             }
82             fd_max = fd;
83             FD_ZERO(&wfds);
84             FD_SET(fd, &wfds);
85             tv.tv_sec = 0;
86             tv.tv_usec = 100 * 1000;
87             ret = select(fd_max + 1, NULL, &wfds, NULL, &tv);
88             if (ret > 0 && FD_ISSET(fd, &wfds))
89                 break;
90         }
91
92         /* test error */
93         optlen = sizeof(ret);
94         getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen);
95         if (ret != 0)
96             goto fail;
97     }
98     s->fd = fd;
99     return 0;
100
101  fail:
102     ret = AVERROR(EIO);
103  fail1:
104     if (fd >= 0)
105         closesocket(fd);
106     av_free(s);
107     return ret;
108 }
109
110 static int tcp_read(URLContext *h, uint8_t *buf, int size)
111 {
112     TCPContext *s = h->priv_data;
113     int len, fd_max, ret;
114     fd_set rfds;
115     struct timeval tv;
116
117     for (;;) {
118         if (url_interrupt_cb())
119             return AVERROR(EINTR);
120         fd_max = s->fd;
121         FD_ZERO(&rfds);
122         FD_SET(s->fd, &rfds);
123         tv.tv_sec = 0;
124         tv.tv_usec = 100 * 1000;
125         ret = select(fd_max + 1, &rfds, NULL, NULL, &tv);
126         if (ret > 0 && FD_ISSET(s->fd, &rfds)) {
127             len = recv(s->fd, buf, size, 0);
128             if (len < 0) {
129                 if (ff_neterrno() != FF_NETERROR(EINTR) &&
130                     ff_neterrno() != FF_NETERROR(EAGAIN))
131                     return AVERROR(errno);
132             } else return len;
133         } else if (ret < 0) {
134             return -1;
135         }
136     }
137 }
138
139 static int tcp_write(URLContext *h, uint8_t *buf, int size)
140 {
141     TCPContext *s = h->priv_data;
142     int ret, size1, fd_max, len;
143     fd_set wfds;
144     struct timeval tv;
145
146     size1 = size;
147     while (size > 0) {
148         if (url_interrupt_cb())
149             return AVERROR(EINTR);
150         fd_max = s->fd;
151         FD_ZERO(&wfds);
152         FD_SET(s->fd, &wfds);
153         tv.tv_sec = 0;
154         tv.tv_usec = 100 * 1000;
155         ret = select(fd_max + 1, NULL, &wfds, NULL, &tv);
156         if (ret > 0 && FD_ISSET(s->fd, &wfds)) {
157             len = send(s->fd, buf, size, 0);
158             if (len < 0) {
159                 if (ff_neterrno() != FF_NETERROR(EINTR) &&
160                     ff_neterrno() != FF_NETERROR(EAGAIN))
161                     return AVERROR(errno);
162                 continue;
163             }
164             size -= len;
165             buf += len;
166         } else if (ret < 0) {
167             return -1;
168         }
169     }
170     return size1 - size;
171 }
172
173 static int tcp_close(URLContext *h)
174 {
175     TCPContext *s = h->priv_data;
176     closesocket(s->fd);
177     av_free(s);
178     return 0;
179 }
180
181 URLProtocol tcp_protocol = {
182     "tcp",
183     tcp_open,
184     tcp_read,
185     tcp_write,
186     NULL, /* seek */
187     tcp_close,
188 };