VLC 4.0.0-dev
vlc_network.h
Go to the documentation of this file.
1/*****************************************************************************
2 * vlc_network.h: interface to communicate with network plug-ins
3 *****************************************************************************
4 * Copyright (C) 2002-2005 VLC authors and VideoLAN
5 * Copyright © 2006-2007 Rémi Denis-Courmont
6 *
7 * Authors: Christophe Massiot <massiot@via.ecp.fr>
8 * Laurent Aimar <fenrir@via.ecp.fr>
9 * Rémi Denis-Courmont
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation; either version 2.1 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * along with this program; if not, write to the Free Software Foundation,
23 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24 *****************************************************************************/
25
26#ifndef VLC_NETWORK_H
27# define VLC_NETWORK_H
28
29/**
30 * \ingroup os
31 * \defgroup net Networking
32 * @{
33 * \file
34 * Definitions for sockets and low-level networking
35 * \defgroup sockets Internet sockets
36 * @{
37 */
38
39#include <sys/types.h>
40#include <unistd.h>
41
42#if defined( _WIN32 )
43# define _NO_OLDNAMES 1
44# include <winsock2.h>
45# include <ws2tcpip.h>
46# define net_errno (WSAGetLastError())
47# define net_Close(fd) ((void)closesocket((SOCKET)fd))
48# ifndef IPV6_V6ONLY
49# define IPV6_V6ONLY 27
50# endif
51# if !defined(SHUT_RDWR)
52# define SHUT_RDWR (SD_BOTH)
53# define SHUT_WR (SD_SEND)
54# define SHUT_RD (SD_RECEIVE)
55# endif
56#else
57# include <sys/socket.h>
58# include <netinet/in.h>
59# include <netdb.h>
60# define net_errno errno
61# define net_Close(fd) ((void)vlc_close(fd))
62#endif
63
64/**
65 * Creates a socket file descriptor.
66 *
67 * This function creates a socket, similar to the standard socket() function.
68 * However, the new file descriptor has the close-on-exec flag set atomically,
69 * so as to avoid leaking the descriptor to child processes.
70 *
71 * The non-blocking flag can also optionally be set.
72 *
73 * @param pf protocol family
74 * @param type socket type
75 * @param proto network protocol
76 * @param nonblock true to create a non-blocking socket
77 * @return a new file descriptor or -1 on error
78 */
79VLC_API int vlc_socket(int pf, int type, int proto, bool nonblock) VLC_USED;
80
81/**
82 * Creates a pair of socket file descriptors.
83 *
84 * This function creates a pair of sockets that are mutually connected,
85 * much like the standard socketpair() function. However, the new file
86 * descriptors have the close-on-exec flag set atomically.
87 * See also vlc_socket().
88 *
89 * @param pf protocol family
90 * @param type socket type
91 * @param proto network protocol
92 * @param nonblock true to create non-blocking sockets
93 * @retval 0 on success
94 * @retval -1 on failure
95 */
96VLC_API int vlc_socketpair(int pf, int type, int proto, int fds[2],
97 bool nonblock);
98
99struct sockaddr;
100
101/**
102 * Accepts an inbound connection request on a listening socket.
103 *
104 * This function creates a connected socket from a listening socket, much like
105 * the standard accept() function. However, the new file descriptor has the
106 * close-on-exec flag set atomically. See also vlc_socket().
107 *
108 * @param lfd listening socket file descriptor
109 * @param addr pointer to the peer address or NULL [OUT]
110 * @param alen pointer to the length of the peer address or NULL [OUT]
111 * @param nonblock whether to put the new socket in non-blocking mode
112 * @return a new file descriptor or -1 on error
113 */
114VLC_API int vlc_accept(int lfd, struct sockaddr *addr, socklen_t *alen,
115 bool nonblock) VLC_USED;
116
117/**
118 * Sends data.
119 *
120 * Like @c send(), this function sends raw data to the peer of a
121 * connection-mode socket, or to the predefined peer of a connection-less
122 * socket.
123 * Unlike @c send(), this function never triggers a signal; if the peer hung
124 * up, it returns an error.
125 *
126 * @param fd socket to send data through
127 * @param buf start address of data
128 * @param buflen byte size of data
129 * @param flags socket send flags (see @c send() documentation)
130 * @return number of bytes actually sent, or -1 on error (@c errno is set)
131 */
132VLC_API ssize_t vlc_send(int fd, const void *buf, size_t buflen, int flags);
133
134/**
135 * Sends data to a peer.
136 *
137 * This function operates like @c sendto() with the exception that it never
138 * triggers a signal.
139 *
140 * This function mainly exists for the sakes of completeness and consistency:
141 * - To send data on a connection-mode socket, using \ref vlc_send() is
142 * simpler.
143 * - To send data on a connection-less socket, @c sendto() and/or @c send() can
144 * be used directly.
145 *
146 * @param fd socket to send data through
147 * @param buf start address of data
148 * @param buflen byte size of data
149 * @param flags socket send flags (see @c send() documentation)
150 * @param dst destination address (ignored for connection-mode sockets)
151 * @param dstlen byte size of destination address
152 * @return number of bytes actually sent, or -1 on error (@c errno is set)
153 */
154VLC_API ssize_t vlc_sendto(int fd, const void *buf, size_t buflen, int flags,
155 const struct sockaddr *dst, socklen_t dstlen);
156
157/**
158 * Sends a socket message.
159 *
160 * Like @c sendmsg(), this function sends a message through a socket.
161 * Unlike @c sendmsg(), this function never triggers a signal; if the peer hung
162 * up, it returns an error.
163 *
164 * @param fd socket to send data through
165 * @param msg message to send (see @c sendmsg() documentation)
166 * @param flags socket send flags (see @c sendmsg() documentation)
167 * @return number of bytes actually sent, or -1 on error (@c errno is set)
168 */
169VLC_API ssize_t vlc_sendmsg(int fd, const struct msghdr *msg, int flags);
170
171# ifdef __cplusplus
172extern "C" {
173# endif
174
175/* Portable networking layer communication */
176int net_Socket (vlc_object_t *obj, int family, int socktype, int proto);
177
178VLC_API int net_Connect(vlc_object_t *p_this, const char *psz_host, int i_port, int socktype, int protocol);
179#define net_Connect(a, b, c, d, e) net_Connect(VLC_OBJECT(a), b, c, d, e)
181VLC_API int * net_Listen(vlc_object_t *p_this, const char *psz_host, unsigned i_port, int socktype, int protocol);
182
183#define net_ListenTCP(a, b, c) net_Listen(VLC_OBJECT(a), b, c, \
184 SOCK_STREAM, IPPROTO_TCP)
185
186VLC_API int net_ConnectTCP (vlc_object_t *obj, const char *host, int port);
187#define net_ConnectTCP(a, b, c) net_ConnectTCP(VLC_OBJECT(a), b, c)
189/**
190 * Accepts an new connection on a set of listening sockets.
191 *
192 * If there are no pending connections, this function will wait.
193 *
194 * @note If the thread needs to handle events other than incoming connections,
195 * you need to use poll() and net_AcceptSingle() instead.
196 *
197 * @deprecated This function exists for backward compatibility.
198 * Use vlc_accept() or vlc_accept_i11e() in new code.
199 *
200 * @param obj VLC object for logging and object kill signal
201 * @param fds listening socket set
202 * @return -1 on error (may be transient error due to network issues),
203 * a new socket descriptor on success.
204 */
205VLC_API int net_Accept(vlc_object_t *obj, int *fds);
206#define net_Accept(a, b) \
207 net_Accept(VLC_OBJECT(a), b)
208
209VLC_API int net_ConnectDgram( vlc_object_t *p_this, const char *psz_host, unsigned i_port, int hlim, int proto );
210#define net_ConnectDgram(a, b, c, d, e ) \
211 net_ConnectDgram(VLC_OBJECT(a), b, c, d, e)
212
213static inline int net_ConnectUDP (vlc_object_t *obj, const char *host, unsigned port, int hlim)
215 return net_ConnectDgram (obj, host, port, hlim, IPPROTO_UDP);
216}
217
218VLC_API int net_OpenDgram( vlc_object_t *p_this, const char *psz_bind, unsigned i_bind, const char *psz_server, unsigned i_server, int proto );
219#define net_OpenDgram( a, b, c, d, e, g ) \
220 net_OpenDgram(VLC_OBJECT(a), b, c, d, e, g)
221
222static inline int net_ListenUDP1 (vlc_object_t *obj, const char *host, unsigned port)
224 return net_OpenDgram (obj, host, port, NULL, 0, IPPROTO_UDP);
225}
226
227VLC_API void net_ListenClose( int *fd );
228
229VLC_API int net_SetCSCov( int fd, int sendcov, int recvcov );
230
231/**
232 * Reads data from a socket.
233 *
234 * This blocks until all requested data is received
235 * or the end of the stream is reached.
236 *
237 * This function is a cancellation point.
238 * @return -1 on error, or the number of bytes of read.
239 */
240VLC_API ssize_t net_Read( vlc_object_t *p_this, int fd, void *p_data, size_t i_data );
241#define net_Read(a,b,c,d) net_Read(VLC_OBJECT(a),b,c,d)
243/**
244 * Writes data to a socket.
245 *
246 * This blocks until all data is written or an error occurs.
247 *
248 * This function is a cancellation point.
249 *
250 * @return the total number of bytes written, or -1 if an error occurs
251 * before any data is written.
252 */
253VLC_API ssize_t net_Write( vlc_object_t *p_this, int fd, const void *p_data, size_t i_data );
254#define net_Write(a,b,c,d) net_Write(VLC_OBJECT(a),b,c,d)
256VLC_API int vlc_close(int);
257
258/** @} */
259
260#ifdef _WIN32
261static inline int vlc_getsockopt(int s, int level, int name,
262 void *val, socklen_t *len)
263{
264 return getsockopt(s, level, name, (char *)val, len);
265}
266#define getsockopt vlc_getsockopt
267
268static inline int vlc_setsockopt(int s, int level, int name,
269 const void *val, socklen_t len)
270{
271 return setsockopt(s, level, name, (const char *)val, len);
272}
273#define setsockopt vlc_setsockopt
274#endif
275
276/* Portable network names/addresses resolution layer */
277
278#define NI_MAXNUMERICHOST 64
280#ifndef AI_NUMERICSERV
281# define AI_NUMERICSERV 0
282#endif
283#ifndef AI_IDN
284# define AI_IDN 0 /* GNU/libc extension */
285#endif
286
287#ifdef _WIN32
288# if !defined(WINAPI_FAMILY) || WINAPI_FAMILY != WINAPI_FAMILY_APP
289# undef gai_strerror
290# define gai_strerror gai_strerrorA
291# endif
292#endif
293
294VLC_API int vlc_getnameinfo( const struct sockaddr *, int, char *, int, int *, int );
295VLC_API int vlc_getaddrinfo (const char *, unsigned,
296 const struct addrinfo *, struct addrinfo **);
297VLC_API int vlc_getaddrinfo_i11e(const char *, unsigned,
298 const struct addrinfo *, struct addrinfo **);
299
300static inline bool
301net_SockAddrIsMulticast (const struct sockaddr *addr, socklen_t len)
303 switch (addr->sa_family)
304 {
305#ifdef IN_MULTICAST
306 case AF_INET:
307 {
308 const struct sockaddr_in *v4 = (const struct sockaddr_in *)addr;
309 if ((size_t)len < sizeof (*v4))
310 return false;
311 return IN_MULTICAST (ntohl (v4->sin_addr.s_addr)) != 0;
312 }
313#endif
314
315#ifdef IN6_IS_ADDR_MULTICAST
316 case AF_INET6:
317 {
318 const struct sockaddr_in6 *v6 = (const struct sockaddr_in6 *)addr;
319 if ((size_t)len < sizeof (*v6))
320 return false;
321 return IN6_IS_ADDR_MULTICAST (&v6->sin6_addr) != 0;
322 }
323#endif
324 }
325
326 return false;
327}
328
329
330static inline int net_GetSockAddress( int fd, char *address, int *port )
332 struct sockaddr_storage addr;
333 socklen_t addrlen = sizeof( addr );
334
335 return getsockname( fd, (struct sockaddr *)&addr, &addrlen )
336 || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
337 NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
338 ? VLC_EGENERIC : 0;
339}
340
341static inline int net_GetPeerAddress( int fd, char *address, int *port )
343 struct sockaddr_storage addr;
344 socklen_t addrlen = sizeof( addr );
345
346 return getpeername( fd, (struct sockaddr *)&addr, &addrlen )
347 || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
348 NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
349 ? VLC_EGENERIC : 0;
350}
351
352VLC_API char *vlc_getProxyUrl(const char *);
353
354# ifdef __cplusplus
355}
356# endif
357
358/** @} */
359
360#endif
#define VLC_USED
Definition: fourcc_gen.c:32
#define VLC_API
Definition: fourcc_gen.c:31
#define VLC_EGENERIC
Unspecified error.
Definition: vlc_common.h:505
static bool net_SockAddrIsMulticast(const struct sockaddr *addr, socklen_t len)
Definition: vlc_network.h:302
static int net_GetPeerAddress(int fd, char *address, int *port)
Definition: vlc_network.h:342
int vlc_getaddrinfo(const char *, unsigned, const struct addrinfo *, struct addrinfo **)
Resolves a host name to a list of socket addresses (like getaddrinfo()).
Definition: getaddrinfo.c:77
char * vlc_getProxyUrl(const char *)
Determines the network proxy server to use (if any).
Definition: specific.c:342
#define NI_MAXNUMERICHOST
Definition: vlc_network.h:279
int vlc_getaddrinfo_i11e(const char *, unsigned, const struct addrinfo *, struct addrinfo **)
Definition: getaddrinfo.c:39
static int net_GetSockAddress(int fd, char *address, int *port)
Definition: vlc_network.h:331
int vlc_getnameinfo(const struct sockaddr *, int, char *, int, int *, int)
Definition: getaddrinfo.c:39
#define net_OpenDgram(a, b, c, d, e, g)
Definition: vlc_network.h:220
static int net_ListenUDP1(vlc_object_t *obj, const char *host, unsigned port)
Definition: vlc_network.h:223
#define net_Write(a, b, c, d)
Definition: vlc_network.h:255
ssize_t vlc_sendmsg(int fd, const struct msghdr *msg, int flags)
Sends a socket message.
Definition: filesystem.c:384
#define net_Accept(a, b)
Definition: vlc_network.h:207
ssize_t vlc_sendto(int fd, const void *buf, size_t buflen, int flags, const struct sockaddr *dst, socklen_t dstlen)
Sends data to a peer.
Definition: filesystem.c:378
ssize_t vlc_send(int fd, const void *buf, size_t buflen, int flags)
Sends data.
Definition: filesystem.c:373
static int net_ConnectUDP(vlc_object_t *obj, const char *host, unsigned port, int hlim)
Definition: vlc_network.h:214
int vlc_socket(int pf, int type, int proto, bool nonblock)
Creates a socket file descriptor.
Definition: filesystem.c:337
#define net_Read(a, b, c, d)
Definition: vlc_network.h:242
int * net_Listen(vlc_object_t *p_this, const char *psz_host, unsigned i_port, int socktype, int protocol)
Definition: io.c:213
int vlc_accept(int lfd, struct sockaddr *addr, socklen_t *alen, bool nonblock)
Accepts an inbound connection request on a listening socket.
Definition: filesystem.c:355
int vlc_close(int)
Closes a file descriptor.
Definition: filesystem.c:91
#define net_Connect(a, b, c, d, e)
Definition: vlc_network.h:180
void net_ListenClose(int *fd)
Definition: io.c:295
int net_SetCSCov(int fd, int sendcov, int recvcov)
net_SetCSCov: Sets the send and receive checksum coverage of a socket:
Definition: udp.c:720
int vlc_socketpair(int pf, int type, int proto, int fds[2], bool nonblock)
Creates a pair of socket file descriptors.
Definition: filesystem.c:345
#define net_ConnectDgram(a, b, c, d, e)
Definition: vlc_network.h:211
#define net_ConnectTCP(a, b, c)
Definition: vlc_network.h:188
int net_Socket(vlc_object_t *obj, int family, int socktype, int proto)
Definition: io.c:65
const char name[16]
Definition: httpd.c:1281
uint16_t i_port
Definition: keystore.c:217
VLC object common members.
Definition: vlc_objects.h:45
This file is a collection of common definitions and types.