network.h 9.8 KB
Newer Older
1
/*
2
 * Copyright (c) 2007 The FFmpeg Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

21 22
#ifndef AVFORMAT_NETWORK_H
#define AVFORMAT_NETWORK_H
23

24
#include <errno.h>
25
#include <stdint.h>
26

27
#include "config.h"
28
#include "libavutil/error.h"
29
#include "os_support.h"
30
#include "avio.h"
31
#include "url.h"
32

33 34 35 36
#if HAVE_UNISTD_H
#include <unistd.h>
#endif

37
#if HAVE_WINSOCK2_H
38 39 40
#include <winsock2.h>
#include <ws2tcpip.h>

41
#ifndef EPROTONOSUPPORT
42
#define EPROTONOSUPPORT WSAEPROTONOSUPPORT
43
#endif
44
#ifndef ETIMEDOUT
45
#define ETIMEDOUT       WSAETIMEDOUT
46
#endif
47
#ifndef ECONNREFUSED
48
#define ECONNREFUSED    WSAECONNREFUSED
49
#endif
50
#ifndef EINPROGRESS
51
#define EINPROGRESS     WSAEINPROGRESS
52
#endif
53 54 55
#ifndef ENOTCONN
#define ENOTCONN        WSAENOTCONN
#endif
56

57 58
#define getsockopt(a, b, c, d, e) getsockopt(a, b, c, (char*) d, e)
#define setsockopt(a, b, c, d, e) setsockopt(a, b, c, (const char*) d, e)
59

60
int ff_neterrno(void);
61
#else
62 63 64
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
65
#include <netinet/tcp.h>
66 67
#include <netdb.h>

68
#define ff_neterrno() AVERROR(errno)
69
#endif /* HAVE_WINSOCK2_H */
70

71
#if HAVE_ARPA_INET_H
72 73
#include <arpa/inet.h>
#endif
74

75 76 77 78
#if HAVE_POLL_H
#include <poll.h>
#endif

79 80
int ff_socket_nonblock(int socket, int enable);

81 82 83
int ff_network_init(void);
void ff_network_close(void);

84
int ff_tls_init(void);
85 86
void ff_tls_deinit(void);

87
int ff_network_wait_fd(int fd, int write);
88

89 90 91 92
/**
 * This works similarly to ff_network_wait_fd, but waits up to 'timeout' microseconds
 * Uses ff_network_wait_fd in a loop
 *
J
Jun Zhao 已提交
93 94 95
 * @param fd Socket descriptor
 * @param write Set 1 to wait for socket able to be read, 0 to be written
 * @param timeout Timeout interval, in microseconds. Actual precision is 100000 mcs, due to ff_network_wait_fd usage
96
 * @param int_cb Interrupt callback, is checked before each ff_network_wait_fd call
97 98 99 100
 * @return 0 if data can be read/written, AVERROR(ETIMEDOUT) if timeout expired, or negative error code
 */
int ff_network_wait_fd_timeout(int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb);

W
wm4 已提交
101 102 103
/**
 * Waits for up to 'timeout' microseconds. If the usert's int_cb is set and
 * triggered, return before that.
J
Jun Zhao 已提交
104
 * @param timeout Timeout in microseconds. Maybe have lower actual precision.
W
wm4 已提交
105 106 107 108 109
 * @param int_cb Interrupt callback, is checked regularly.
 * @return AVERROR(ETIMEDOUT) if timeout expirted, AVERROR_EXIT if interrupted by int_cb
 */
int ff_network_sleep_interruptible(int64_t timeout, AVIOInterruptCB *int_cb);

110 111
#if !HAVE_STRUCT_SOCKADDR_STORAGE
struct sockaddr_storage {
112 113 114 115 116
#if HAVE_STRUCT_SOCKADDR_SA_LEN
    uint8_t ss_len;
    uint8_t ss_family;
#else
    uint16_t ss_family;
117
#endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
118 119 120
    char ss_pad1[6];
    int64_t ss_align;
    char ss_pad2[112];
121
};
122
#endif /* !HAVE_STRUCT_SOCKADDR_STORAGE */
123

124 125 126 127 128 129 130 131
typedef union sockaddr_union {
    struct sockaddr_storage storage;
    struct sockaddr_in in;
#if HAVE_STRUCT_SOCKADDR_IN6
    struct sockaddr_in6 in6;
#endif
} sockaddr_union;

132 133 134 135
#ifndef MSG_NOSIGNAL
#define MSG_NOSIGNAL 0
#endif

136 137 138 139 140 141 142 143 144 145 146
#if !HAVE_STRUCT_ADDRINFO
struct addrinfo {
    int ai_flags;
    int ai_family;
    int ai_socktype;
    int ai_protocol;
    int ai_addrlen;
    struct sockaddr *ai_addr;
    char *ai_canonname;
    struct addrinfo *ai_next;
};
147
#endif /* !HAVE_STRUCT_ADDRINFO */
148 149

/* getaddrinfo constants */
150 151 152 153 154 155
#ifndef EAI_AGAIN
#define EAI_AGAIN 2
#endif
#ifndef EAI_BADFLAGS
#define EAI_BADFLAGS 3
#endif
156 157 158
#ifndef EAI_FAIL
#define EAI_FAIL 4
#endif
159 160 161
#ifndef EAI_FAMILY
#define EAI_FAMILY 5
#endif
162 163 164 165 166 167
#ifndef EAI_MEMORY
#define EAI_MEMORY 6
#endif
#ifndef EAI_NODATA
#define EAI_NODATA 7
#endif
168 169 170
#ifndef EAI_NONAME
#define EAI_NONAME 8
#endif
171 172 173 174 175 176
#ifndef EAI_SERVICE
#define EAI_SERVICE 9
#endif
#ifndef EAI_SOCKTYPE
#define EAI_SOCKTYPE 10
#endif
177

178 179 180 181 182 183 184 185 186 187 188 189
#ifndef AI_PASSIVE
#define AI_PASSIVE 1
#endif

#ifndef AI_CANONNAME
#define AI_CANONNAME 2
#endif

#ifndef AI_NUMERICHOST
#define AI_NUMERICHOST 4
#endif

190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
#ifndef NI_NOFQDN
#define NI_NOFQDN 1
#endif

#ifndef NI_NUMERICHOST
#define NI_NUMERICHOST 2
#endif

#ifndef NI_NAMERQD
#define NI_NAMERQD 4
#endif

#ifndef NI_NUMERICSERV
#define NI_NUMERICSERV 8
#endif

#ifndef NI_DGRAM
#define NI_DGRAM 16
#endif

210 211 212 213
#if !HAVE_GETADDRINFO
int ff_getaddrinfo(const char *node, const char *service,
                   const struct addrinfo *hints, struct addrinfo **res);
void ff_freeaddrinfo(struct addrinfo *res);
214 215 216
int ff_getnameinfo(const struct sockaddr *sa, int salen,
                   char *host, int hostlen,
                   char *serv, int servlen, int flags);
217 218
#define getaddrinfo ff_getaddrinfo
#define freeaddrinfo ff_freeaddrinfo
219
#define getnameinfo ff_getnameinfo
220 221
#endif /* !HAVE_GETADDRINFO */

222 223
#if !HAVE_GETADDRINFO || HAVE_WINSOCK2_H
const char *ff_gai_strerror(int ecode);
224
#undef gai_strerror
225
#define gai_strerror ff_gai_strerror
226
#endif /* !HAVE_GETADDRINFO || HAVE_WINSOCK2_H */
227

228 229 230 231 232 233 234 235
#ifndef INADDR_LOOPBACK
#define INADDR_LOOPBACK 0x7f000001
#endif

#ifndef INET_ADDRSTRLEN
#define INET_ADDRSTRLEN 16
#endif

236 237 238 239
#ifndef INET6_ADDRSTRLEN
#define INET6_ADDRSTRLEN INET_ADDRSTRLEN
#endif

240 241 242 243 244 245 246
#ifndef IN_MULTICAST
#define IN_MULTICAST(a) ((((uint32_t)(a)) & 0xf0000000) == 0xe0000000)
#endif
#ifndef IN6_IS_ADDR_MULTICAST
#define IN6_IS_ADDR_MULTICAST(a) (((uint8_t *) (a))[0] == 0xff)
#endif

247
int ff_is_multicast_address(struct sockaddr *addr);
248

249 250 251 252 253 254 255 256 257 258 259 260 261 262
#define POLLING_TIME 100 /// Time in milliseconds between interrupt check

/**
 * Bind to a file descriptor and poll for a connection.
 *
 * @param fd      First argument of bind().
 * @param addr    Second argument of bind().
 * @param addrlen Third argument of bind().
 * @param timeout Polling timeout in milliseconds.
 * @param h       URLContext providing interrupt check
 *                callback and logging context.
 * @return        A non-blocking file descriptor on success
 *                or an AVERROR on failure.
 */
263
int ff_listen_bind(int fd, const struct sockaddr *addr,
264 265 266
                   socklen_t addrlen, int timeout,
                   URLContext *h);

267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
/**
 * Bind to a file descriptor to an address without accepting connections.
 * @param fd      First argument of bind().
 * @param addr    Second argument of bind().
 * @param addrlen Third argument of bind().
 * @return        0 on success or an AVERROR on failure.
 */
int ff_listen(int fd, const struct sockaddr *addr, socklen_t addrlen);

/**
 * Poll for a single connection on the passed file descriptor.
 * @param fd      The listening socket file descriptor.
 * @param timeout Polling timeout in milliseconds.
 * @param h       URLContext providing interrupt check
 *                callback and logging context.
 * @return        A non-blocking file descriptor on success
 *                or an AVERROR on failure.
 */
int ff_accept(int fd, int timeout, URLContext *h);

287 288 289 290 291 292 293 294 295 296
/**
 * Connect to a file descriptor and poll for result.
 *
 * @param fd       First argument of connect(),
 *                 will be set as non-blocking.
 * @param addr     Second argument of connect().
 * @param addrlen  Third argument of connect().
 * @param timeout  Polling timeout in milliseconds.
 * @param h        URLContext providing interrupt check
 *                 callback and logging context.
297 298 299
 * @param will_try_next Whether the caller will try to connect to another
 *                 address for the same host name, affecting the form of
 *                 logged errors.
300 301
 * @return         0 on success, AVERROR on failure.
 */
302 303
int ff_listen_connect(int fd, const struct sockaddr *addr,
                      socklen_t addrlen, int timeout,
304
                      URLContext *h, int will_try_next);
305

306 307
int ff_http_match_no_proxy(const char *no_proxy, const char *hostname);

308
int ff_socket(int domain, int type, int protocol);
309

310 311
void ff_log_net_error(void *ctx, int level, const char* prefix);

312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
/**
 * Connect to any of the given addrinfo addresses, with multiple attempts
 * running in parallel.
 *
 * @param addrs    The list of addresses to try to connect to.
 *                 This list will be mutated internally, but the list head
 *                 will remain as such, so this doesn't affect the caller
 *                 freeing the list afterwards.
 * @param timeout_ms_per_address The number of milliseconds to wait for each
 *                 connection attempt. Since multiple addresses are tried,
 *                 some of them in parallel, the total run time will at most
 *                 be timeout_ms_per_address*ceil(nb_addrs/parallel) +
 *                 (parallel - 1) * NEXT_ATTEMPT_DELAY_MS.
 * @param parallel The maximum number of connections to attempt in parallel.
 *                 This is limited to an internal maximum capacity.
 * @param h        URLContext providing interrupt check
 *                 callback and logging context.
 * @param fd       If successful, the connected socket is returned here.
 * @param customize_fd Function that will be called for each socket created,
 *                 to allow the caller to set socket options before calling
 *                 connect() on it, may be NULL.
 * @param customize_ctx Context parameter passed to customize_fd.
 * @return         0 on success, AVERROR on failure.
 */
int ff_connect_parallel(struct addrinfo *addrs, int timeout_ms_per_address,
                        int parallel, URLContext *h, int *fd,
                        void (*customize_fd)(void *, int), void *customize_ctx);

340
#endif /* AVFORMAT_NETWORK_H */