FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
tcp.c
Go to the documentation of this file.
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/avassert.h"
23 #include "libavutil/parseutils.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/time.h"
26 
27 #include "internal.h"
28 #include "network.h"
29 #include "os_support.h"
30 #include "url.h"
31 #if HAVE_POLL_H
32 #include <poll.h>
33 #endif
34 
35 typedef struct TCPContext {
36  const AVClass *class;
37  int fd;
38  int listen;
42 } TCPContext;
43 
44 #define OFFSET(x) offsetof(TCPContext, x)
45 #define D AV_OPT_FLAG_DECODING_PARAM
46 #define E AV_OPT_FLAG_ENCODING_PARAM
47 static const AVOption options[] = {
48  { "listen", "Listen for incoming connections", OFFSET(listen), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 2, .flags = D|E },
49  { "timeout", "set timeout (in microseconds) of socket I/O operations", OFFSET(rw_timeout), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
50  { "listen_timeout", "Connection awaiting timeout (in milliseconds)", OFFSET(listen_timeout), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
51  { NULL }
52 };
53 
54 static const AVClass tcp_class = {
55  .class_name = "tcp",
56  .item_name = av_default_item_name,
57  .option = options,
58  .version = LIBAVUTIL_VERSION_INT,
59 };
60 
61 /* return non zero if error */
62 static int tcp_open(URLContext *h, const char *uri, int flags)
63 {
64  struct addrinfo hints = { 0 }, *ai, *cur_ai;
65  int port, fd = -1;
66  TCPContext *s = h->priv_data;
67  const char *p;
68  char buf[256];
69  int ret;
70  char hostname[1024],proto[1024],path[1024];
71  char portstr[10];
72  s->open_timeout = 5000000;
73 
74  av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
75  &port, path, sizeof(path), uri);
76  if (strcmp(proto, "tcp"))
77  return AVERROR(EINVAL);
78  if (port <= 0 || port >= 65536) {
79  av_log(h, AV_LOG_ERROR, "Port missing in uri\n");
80  return AVERROR(EINVAL);
81  }
82  p = strchr(uri, '?');
83  if (p) {
84  if (av_find_info_tag(buf, sizeof(buf), "listen", p)) {
85  char *endptr = NULL;
86  s->listen = strtol(buf, &endptr, 10);
87  /* assume if no digits were found it is a request to enable it */
88  if (buf == endptr)
89  s->listen = 1;
90  }
91  if (av_find_info_tag(buf, sizeof(buf), "timeout", p)) {
92  s->rw_timeout = strtol(buf, NULL, 10);
93  }
94  if (av_find_info_tag(buf, sizeof(buf), "listen_timeout", p)) {
95  s->listen_timeout = strtol(buf, NULL, 10);
96  }
97  }
98  if (s->rw_timeout >= 0) {
99  s->open_timeout =
100  h->rw_timeout = s->rw_timeout;
101  }
102  hints.ai_family = AF_UNSPEC;
103  hints.ai_socktype = SOCK_STREAM;
104  snprintf(portstr, sizeof(portstr), "%d", port);
105  if (s->listen)
106  hints.ai_flags |= AI_PASSIVE;
107  if (!hostname[0])
108  ret = getaddrinfo(NULL, portstr, &hints, &ai);
109  else
110  ret = getaddrinfo(hostname, portstr, &hints, &ai);
111  if (ret) {
112  av_log(h, AV_LOG_ERROR,
113  "Failed to resolve hostname %s: %s\n",
114  hostname, gai_strerror(ret));
115  return AVERROR(EIO);
116  }
117 
118  cur_ai = ai;
119 
120  restart:
121  fd = ff_socket(cur_ai->ai_family,
122  cur_ai->ai_socktype,
123  cur_ai->ai_protocol);
124  if (fd < 0) {
125  ret = ff_neterrno();
126  goto fail;
127  }
128 
129  if (s->listen == 2) {
130  // multi-client
131  if ((ret = ff_listen(fd, cur_ai->ai_addr, cur_ai->ai_addrlen)) < 0)
132  goto fail1;
133  } else if (s->listen == 1) {
134  // single client
135  if ((fd = ff_listen_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
136  s->listen_timeout, h)) < 0) {
137  ret = fd;
138  goto fail1;
139  }
140  } else {
141  if ((ret = ff_listen_connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
142  s->open_timeout / 1000, h, !!cur_ai->ai_next)) < 0) {
143 
144  if (ret == AVERROR_EXIT)
145  goto fail1;
146  else
147  goto fail;
148  }
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  ret = 0;
163  goto restart;
164  }
165  fail1:
166  if (fd >= 0)
167  closesocket(fd);
168  freeaddrinfo(ai);
169  return ret;
170 }
171 
173 {
174  TCPContext *sc = s->priv_data;
175  TCPContext *cc;
176  int ret;
177  av_assert0(sc->listen);
178  if ((ret = ffurl_alloc(c, s->filename, s->flags, &s->interrupt_callback)) < 0)
179  return ret;
180  cc = (*c)->priv_data;
181  ret = ff_accept(sc->fd, sc->listen_timeout, s);
182  if (ret < 0)
183  return ff_neterrno();
184  cc->fd = ret;
185  return 0;
186 }
187 
188 static int tcp_read(URLContext *h, uint8_t *buf, int size)
189 {
190  TCPContext *s = h->priv_data;
191  int ret;
192 
193  if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
195  if (ret)
196  return ret;
197  }
198  ret = recv(s->fd, buf, size, 0);
199  return ret < 0 ? ff_neterrno() : ret;
200 }
201 
202 static int tcp_write(URLContext *h, const uint8_t *buf, int size)
203 {
204  TCPContext *s = h->priv_data;
205  int ret;
206 
207  if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
209  if (ret)
210  return ret;
211  }
212  ret = send(s->fd, buf, size, MSG_NOSIGNAL);
213  return ret < 0 ? ff_neterrno() : ret;
214 }
215 
216 static int tcp_shutdown(URLContext *h, int flags)
217 {
218  TCPContext *s = h->priv_data;
219  int how;
220 
221  if (flags & AVIO_FLAG_WRITE && flags & AVIO_FLAG_READ) {
222  how = SHUT_RDWR;
223  } else if (flags & AVIO_FLAG_WRITE) {
224  how = SHUT_WR;
225  } else {
226  how = SHUT_RD;
227  }
228 
229  return shutdown(s->fd, how);
230 }
231 
232 static int tcp_close(URLContext *h)
233 {
234  TCPContext *s = h->priv_data;
235  closesocket(s->fd);
236  return 0;
237 }
238 
240 {
241  TCPContext *s = h->priv_data;
242  return s->fd;
243 }
244 
246  .name = "tcp",
247  .url_open = tcp_open,
248  .url_accept = tcp_accept,
249  .url_read = tcp_read,
250  .url_write = tcp_write,
251  .url_close = tcp_close,
252  .url_get_file_handle = tcp_get_file_handle,
253  .url_shutdown = tcp_shutdown,
254  .priv_data_size = sizeof(TCPContext),
256  .priv_data_class = &tcp_class,
257 };
void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url)
Split a URL string into components.
Definition: utils.c:3963
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
#define URL_PROTOCOL_FLAG_NETWORK
Definition: url.h:35
static const AVClass tcp_class
Definition: tcp.c:54
static int tcp_open(URLContext *h, const char *uri, int flags)
Definition: tcp.c:62
AVOption.
Definition: opt.h:255
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
int is_streamed
true if streamed (no seek possible), default = false
Definition: url.h:46
AVIOInterruptCB interrupt_callback
Definition: url.h:48
int rw_timeout
Definition: tcp.c:40
#define AVIO_FLAG_READ
read-only
Definition: avio.h:485
int64_t rw_timeout
maximum time to wait for (network) read/write operation completion, in mcs
Definition: url.h:49
#define AVIO_FLAG_WRITE
write-only
Definition: avio.h:486
#define AI_PASSIVE
Definition: network.h:169
int listen_timeout
Definition: tcp.c:41
int flags
Definition: url.h:44
#define freeaddrinfo
Definition: network.h:208
URLProtocol ff_tcp_protocol
Definition: tcp.c:245
int ff_socket(int af, int type, int proto)
Definition: network.c:166
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
int ff_listen_bind(int fd, const struct sockaddr *addr, socklen_t addrlen, int timeout, URLContext *h)
Bind to a file descriptor and poll for a connection.
Definition: network.c:226
uint8_t
AVOptions.
miscellaneous OS support macros and functions.
int ff_listen(int fd, const struct sockaddr *addr, socklen_t addrlen)
Bind to a file descriptor to an address without accepting connections.
Definition: network.c:190
int ff_listen_connect(int fd, const struct sockaddr *addr, socklen_t addrlen, int timeout, URLContext *h, int will_try_next)
Connect to a file descriptor and poll for result.
Definition: network.c:238
int av_find_info_tag(char *arg, int arg_size, const char *tag1, const char *info)
Attempt to find a specific tag in a URL.
Definition: parseutils.c:677
ptrdiff_t size
Definition: opengl_enc.c:101
#define av_log(a,...)
int ffurl_alloc(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb)
Create a URLContext for accessing to the resource indicated by url, but do not initiate the connectio...
Definition: avio.c:270
static int tcp_read(URLContext *h, uint8_t *buf, int size)
Definition: tcp.c:188
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int ff_accept(int fd, int timeout, URLContext *h)
Poll for a single connection on the passed file descriptor.
Definition: network.c:208
#define E
Definition: tcp.c:46
av_default_item_name
#define closesocket
Definition: ffserver.c:28
#define AVERROR(e)
Definition: error.h:43
#define D
Definition: tcp.c:45
simple assert() macros that are a bit more flexible than ISO C assert().
#define OFFSET(x)
Definition: tcp.c:44
int listen
Definition: tcp.c:38
int ff_network_wait_fd_timeout(int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb)
This works similarly to ff_network_wait_fd, but waits up to 'timeout' microseconds Uses ff_network_wa...
Definition: network.c:82
#define fail()
Definition: checkasm.h:57
static const AVOption options[]
Definition: tcp.c:47
static int tcp_close(URLContext *h)
Definition: tcp.c:232
static int tcp_shutdown(URLContext *h, int flags)
Definition: tcp.c:216
#define ff_neterrno()
Definition: network.h:64
Definition: tcp.c:35
#define AVERROR_EXIT
Immediate exit was requested; the called function should not be restarted.
Definition: error.h:56
#define AVIO_FLAG_NONBLOCK
Use non-blocking mode.
Definition: avio.h:504
void * buf
Definition: avisynth_c.h:553
Definition: url.h:39
Describe the class of an AVClass context structure.
Definition: log.h:67
void * priv_data
Definition: url.h:42
#define gai_strerror
Definition: network.h:215
#define snprintf
Definition: snprintf.h:34
int fd
Definition: tcp.c:37
misc parsing utilities
const char * name
Definition: url.h:53
int ai_socktype
Definition: network.h:130
static int flags
Definition: cpu.c:47
int open_timeout
Definition: tcp.c:39
#define getaddrinfo
Definition: network.h:207
Main libavformat public API header.
static double c[64]
char * filename
specified URL
Definition: url.h:43
static int tcp_write(URLContext *h, const uint8_t *buf, int size)
Definition: tcp.c:202
#define MSG_NOSIGNAL
Definition: network.h:123
int ai_flags
Definition: network.h:128
unbuffered private I/O API
static int tcp_get_file_handle(URLContext *h)
Definition: tcp.c:239
static int tcp_accept(URLContext *s, URLContext **c)
Definition: tcp.c:172
int ai_family
Definition: network.h:129