Mercurial > libavformat.hg
annotate tcp.c @ 3937:c0667b2aa3ab libavformat
include sys/select.h to get select, according to posix 2001,
fix compilation on freebsd 5.5
| author | bcoudurier |
|---|---|
| date | Wed, 24 Sep 2008 22:11:53 +0000 |
| parents | d55fb12134d1 |
| children | 53c5b89b8dff |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * TCP protocol | |
| 3 * Copyright (c) 2002 Fabrice Bellard. | |
| 4 * | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
5 * This file is part of FFmpeg. |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
6 * |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
| 0 | 8 * modify it under the terms of the GNU Lesser General Public |
| 9 * License as published by the Free Software Foundation; either | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
| 0 | 11 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
| 0 | 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 | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
|
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 0 | 20 */ |
| 21 #include "avformat.h" | |
| 22 #include <unistd.h> | |
| 1754 | 23 #include "network.h" |
| 2773 | 24 #include "os_support.h" |
|
3937
c0667b2aa3ab
include sys/select.h to get select, according to posix 2001,
bcoudurier
parents:
3765
diff
changeset
|
25 #include <sys/select.h> |
| 180 | 26 #include <sys/time.h> |
| 0 | 27 |
| 28 typedef struct TCPContext { | |
| 29 int fd; | |
| 30 } TCPContext; | |
| 31 | |
| 32 /* return non zero if error */ | |
| 33 static int tcp_open(URLContext *h, const char *uri, int flags) | |
| 34 { | |
| 35 struct sockaddr_in dest_addr; | |
| 36 int port, fd = -1; | |
|
683
095009fc2f35
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
511
diff
changeset
|
37 TCPContext *s = NULL; |
| 180 | 38 fd_set wfds; |
| 39 int fd_max, ret; | |
| 40 struct timeval tv; | |
| 41 socklen_t optlen; | |
|
3765
d55fb12134d1
Remove check for @ in tcp.c which removes the authorization data from the
rbultje
parents:
3756
diff
changeset
|
42 char hostname[1024],proto[1024],path[1024]; |
|
511
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
482
diff
changeset
|
43 |
|
3753
42ed3629601d
Fix memleak on some OSes in case network initialization fails. See
rbultje
parents:
3752
diff
changeset
|
44 if(!ff_network_init()) |
|
42ed3629601d
Fix memleak on some OSes in case network initialization fails. See
rbultje
parents:
3752
diff
changeset
|
45 return AVERROR(EIO); |
|
42ed3629601d
Fix memleak on some OSes in case network initialization fails. See
rbultje
parents:
3752
diff
changeset
|
46 |
|
511
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
482
diff
changeset
|
47 url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname), |
| 3756 | 48 &port, path, sizeof(path), uri); |
| 49 if (strcmp(proto,"tcp") || port <= 0 || port >= 65536) | |
|
3755
b9c1bcc6c1ca
On failure, return directly because the fail: case does nothing. This also
rbultje
parents:
3754
diff
changeset
|
50 return AVERROR(EINVAL); |
| 885 | 51 |
| 0 | 52 dest_addr.sin_family = AF_INET; |
| 53 dest_addr.sin_port = htons(port); | |
| 54 if (resolve_host(&dest_addr.sin_addr, hostname) < 0) | |
|
3755
b9c1bcc6c1ca
On failure, return directly because the fail: case does nothing. This also
rbultje
parents:
3754
diff
changeset
|
55 return AVERROR(EIO); |
| 0 | 56 |
|
1810
d85795da84ab
change PF_INET to AF_INET to be consistent in the whole project. PF_INET is deprecated, while AF_INET is referred by the POSIX standards
alex
parents:
1787
diff
changeset
|
57 fd = socket(AF_INET, SOCK_STREAM, 0); |
| 0 | 58 if (fd < 0) |
|
3755
b9c1bcc6c1ca
On failure, return directly because the fail: case does nothing. This also
rbultje
parents:
3754
diff
changeset
|
59 return AVERROR(EIO); |
|
2057
857fbfeb2fa0
implement ff_socket_nonblock and use it in networking code
alex
parents:
2056
diff
changeset
|
60 ff_socket_nonblock(fd, 1); |
| 885 | 61 |
| 180 | 62 redo: |
| 885 | 63 ret = connect(fd, (struct sockaddr *)&dest_addr, |
| 180 | 64 sizeof(dest_addr)); |
| 65 if (ret < 0) { | |
|
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
66 if (ff_neterrno() == FF_NETERROR(EINTR)) |
| 180 | 67 goto redo; |
| 2321 | 68 if (ff_neterrno() != FF_NETERROR(EINPROGRESS) && |
| 69 ff_neterrno() != FF_NETERROR(EAGAIN)) | |
| 180 | 70 goto fail; |
| 0 | 71 |
| 180 | 72 /* wait until we are connected or until abort */ |
| 73 for(;;) { | |
| 74 if (url_interrupt_cb()) { | |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
75 ret = AVERROR(EINTR); |
| 180 | 76 goto fail1; |
| 77 } | |
| 78 fd_max = fd; | |
| 79 FD_ZERO(&wfds); | |
| 80 FD_SET(fd, &wfds); | |
| 81 tv.tv_sec = 0; | |
| 82 tv.tv_usec = 100 * 1000; | |
| 83 ret = select(fd_max + 1, NULL, &wfds, NULL, &tv); | |
| 84 if (ret > 0 && FD_ISSET(fd, &wfds)) | |
| 85 break; | |
| 86 } | |
| 885 | 87 |
| 180 | 88 /* test error */ |
| 89 optlen = sizeof(ret); | |
| 90 getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen); | |
| 91 if (ret != 0) | |
| 92 goto fail; | |
| 93 } | |
|
3754
8d267b43eaba
Move malloc() down until after all initializations, so that the resource is
rbultje
parents:
3753
diff
changeset
|
94 s = av_malloc(sizeof(TCPContext)); |
|
8d267b43eaba
Move malloc() down until after all initializations, so that the resource is
rbultje
parents:
3753
diff
changeset
|
95 if (!s) |
|
8d267b43eaba
Move malloc() down until after all initializations, so that the resource is
rbultje
parents:
3753
diff
changeset
|
96 return AVERROR(ENOMEM); |
|
8d267b43eaba
Move malloc() down until after all initializations, so that the resource is
rbultje
parents:
3753
diff
changeset
|
97 h->priv_data = s; |
|
8d267b43eaba
Move malloc() down until after all initializations, so that the resource is
rbultje
parents:
3753
diff
changeset
|
98 h->is_streamed = 1; |
| 0 | 99 s->fd = fd; |
| 100 return 0; | |
| 101 | |
| 102 fail: | |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2057
diff
changeset
|
103 ret = AVERROR(EIO); |
| 180 | 104 fail1: |
| 0 | 105 if (fd >= 0) |
| 1670 | 106 closesocket(fd); |
| 180 | 107 return ret; |
| 0 | 108 } |
| 109 | |
| 65 | 110 static int tcp_read(URLContext *h, uint8_t *buf, int size) |
| 0 | 111 { |
| 112 TCPContext *s = h->priv_data; | |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
113 int len, fd_max, ret; |
| 180 | 114 fd_set rfds; |
| 115 struct timeval tv; | |
| 0 | 116 |
|
385
2f56d366a787
no read loop tcp/http and http CRLF fix by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
261
diff
changeset
|
117 for (;;) { |
| 180 | 118 if (url_interrupt_cb()) |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
119 return AVERROR(EINTR); |
| 180 | 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; | |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
125 ret = select(fd_max + 1, &rfds, NULL, NULL, &tv); |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
126 if (ret > 0 && FD_ISSET(s->fd, &rfds)) { |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
127 len = recv(s->fd, buf, size, 0); |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
128 if (len < 0) { |
|
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
129 if (ff_neterrno() != FF_NETERROR(EINTR) && |
|
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
130 ff_neterrno() != FF_NETERROR(EAGAIN)) |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
131 return AVERROR(errno); |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
132 } else return len; |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
133 } else if (ret < 0) { |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
134 return -1; |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
135 } |
| 0 | 136 } |
| 137 } | |
| 138 | |
| 65 | 139 static int tcp_write(URLContext *h, uint8_t *buf, int size) |
| 0 | 140 { |
| 141 TCPContext *s = h->priv_data; | |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
142 int ret, size1, fd_max, len; |
| 180 | 143 fd_set wfds; |
| 144 struct timeval tv; | |
| 0 | 145 |
| 146 size1 = size; | |
| 147 while (size > 0) { | |
| 180 | 148 if (url_interrupt_cb()) |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
149 return AVERROR(EINTR); |
| 180 | 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; | |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
155 ret = select(fd_max + 1, NULL, &wfds, NULL, &tv); |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
156 if (ret > 0 && FD_ISSET(s->fd, &wfds)) { |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
157 len = send(s->fd, buf, size, 0); |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
158 if (len < 0) { |
|
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
159 if (ff_neterrno() != FF_NETERROR(EINTR) && |
|
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
160 ff_neterrno() != FF_NETERROR(EAGAIN)) |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
161 return AVERROR(errno); |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
162 continue; |
|
261
5f27f90ed496
Fix a very nasty problem with extra bytes appearing in TCP data streams.
philipjsg
parents:
229
diff
changeset
|
163 } |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
164 size -= len; |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
165 buf += len; |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
166 } else if (ret < 0) { |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
167 return -1; |
|
261
5f27f90ed496
Fix a very nasty problem with extra bytes appearing in TCP data streams.
philipjsg
parents:
229
diff
changeset
|
168 } |
| 0 | 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); | |
|
2351
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2321
diff
changeset
|
177 ff_network_close(); |
| 0 | 178 av_free(s); |
| 179 return 0; | |
| 180 } | |
| 181 | |
| 182 URLProtocol tcp_protocol = { | |
| 183 "tcp", | |
| 184 tcp_open, | |
| 185 tcp_read, | |
| 186 tcp_write, | |
| 187 NULL, /* seek */ | |
| 188 tcp_close, | |
| 189 }; |
