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