2 * Network layer for MPlayer
4 * Copyright (C) 2001 Bertrand BAUDET <bertrand_baudet@yahoo.com>
6 * This file is part of MPlayer.
8 * MPlayer is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * MPlayer is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 #include <sys/types.h>
40 #include <netinet/in.h>
41 #include <sys/socket.h>
42 #include <arpa/inet.h>
51 #include "libavutil/avstring.h"
54 int network_prefer_ipv4
=
62 // Converts an address family constant to a string
64 static const char *af2String(int af
) {
66 case AF_INET
: return "AF_INET";
69 case AF_INET6
: return "AF_INET6";
71 default: return "Unknown address family!";
77 // Connect to a server using a TCP connection, with specified address family
78 // return -2 for fatal error, like unable to resolve name, connection timeout...
79 // return -1 is unable to connect to a particular port
82 connect2Server_with_af(char *host
, int port
, int af
,int verb
) {
90 struct sockaddr_in four
;
92 struct sockaddr_in6 six
;
95 size_t server_address_size
;
96 void *our_s_addr
; // Pointer to sin_addr or sin6_addr
97 struct hostent
*hp
=NULL
;
107 #if HAVE_WINSOCK2_H && defined(HAVE_AF_INET6)
108 // our winsock name resolution code can not handle IPv6
109 if (af
== AF_INET6
) {
110 mp_msg(MSGT_NETWORK
, MSGL_WARN
, "IPv6 not supported for winsock2\n");
111 return TCP_ERROR_FATAL
;
115 socket_server_fd
= socket(af
, SOCK_STREAM
, 0);
118 if( socket_server_fd
==-1 ) {
119 // mp_msg(MSGT_NETWORK,MSGL_ERR,"Failed to create %s socket:\n", af2String(af));
120 return TCP_ERROR_FATAL
;
123 #if defined(SO_RCVTIMEO) && defined(SO_SNDTIMEO)
125 /* timeout in milliseconds */
131 setsockopt(socket_server_fd
, SOL_SOCKET
, SO_RCVTIMEO
, &to
, sizeof(to
));
132 setsockopt(socket_server_fd
, SOL_SOCKET
, SO_SNDTIMEO
, &to
, sizeof(to
));
136 case AF_INET
: our_s_addr
= (void *) &server_address
.four
.sin_addr
; break;
138 case AF_INET6
: our_s_addr
= (void *) &server_address
.six
.sin6_addr
; break;
141 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
, "Unknown address family %d\n", af
);
142 return TCP_ERROR_FATAL
;
146 memset(&server_address
, 0, sizeof(server_address
));
149 if (inet_pton(af
, host
, our_s_addr
)!=1)
151 if (inet_aton(host
, our_s_addr
)!=1)
152 #elif HAVE_WINSOCK2_H
153 if ( inet_addr(host
)==INADDR_NONE
)
156 if(verb
) mp_tmsg(MSGT_NETWORK
,MSGL_STATUS
,"Resolving %s for %s...\n", host
, af2String(af
));
158 #ifdef HAVE_GETHOSTBYNAME2
159 hp
=(struct hostent
*)gethostbyname2( host
, af
);
161 hp
=(struct hostent
*)gethostbyname( host
);
164 if(verb
) mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"Couldn't resolve name for %s: %s\n", af2String(af
), host
);
165 return TCP_ERROR_FATAL
;
168 memcpy( our_s_addr
, (void*)hp
->h_addr_list
[0], hp
->h_length
);
172 unsigned long addr
= inet_addr(host
);
173 memcpy( our_s_addr
, (void*)&addr
, sizeof(addr
) );
179 server_address
.four
.sin_family
=af
;
180 server_address
.four
.sin_port
=htons(port
);
181 server_address_size
= sizeof(server_address
.four
);
185 server_address
.six
.sin6_family
=af
;
186 server_address
.six
.sin6_port
=htons(port
);
187 server_address_size
= sizeof(server_address
.six
);
191 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
, "Unknown address family %d\n", af
);
192 return TCP_ERROR_FATAL
;
195 #if HAVE_INET_ATON || defined(HAVE_WINSOCK2_H)
196 av_strlcpy( buf
, inet_ntoa( *((struct in_addr
*)our_s_addr
) ), 255);
198 inet_ntop(af
, our_s_addr
, buf
, 255);
200 if(verb
) mp_tmsg(MSGT_NETWORK
,MSGL_STATUS
,"Connecting to server %s[%s]: %d...\n", host
, buf
, port
);
202 // Turn the socket as non blocking so we can timeout on the connection
204 fcntl( socket_server_fd
, F_SETFL
, fcntl(socket_server_fd
, F_GETFL
) | O_NONBLOCK
);
207 ioctlsocket( socket_server_fd
, FIONBIO
, &val
);
209 if( connect( socket_server_fd
, (struct sockaddr
*)&server_address
, server_address_size
)==-1 ) {
211 if( errno
!=EINPROGRESS
) {
213 if( (WSAGetLastError() != WSAEINPROGRESS
) && (WSAGetLastError() != WSAEWOULDBLOCK
) ) {
215 if(verb
) mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"Failed to connect to server with %s\n", af2String(af
));
216 closesocket(socket_server_fd
);
217 return TCP_ERROR_PORT
;
223 FD_SET( socket_server_fd
, &set
);
224 // When the connection will be made, we will have a writeable fd
225 while((ret
= select(socket_server_fd
+1, NULL
, &set
, NULL
, &tv
)) == 0) {
226 if(count
> 30 || stream_check_interrupt(500)) {
228 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"connection timeout\n");
230 mp_msg(MSGT_NETWORK
,MSGL_V
,"Connection interrupted by user\n");
231 return TCP_ERROR_TIMEOUT
;
235 FD_SET( socket_server_fd
, &set
);
239 if (ret
< 0) mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"Select failed.\n");
241 // Turn back the socket as blocking
243 fcntl( socket_server_fd
, F_SETFL
, fcntl(socket_server_fd
, F_GETFL
) & ~O_NONBLOCK
);
246 ioctlsocket( socket_server_fd
, FIONBIO
, &val
);
248 // Check if there were any errors
249 err_len
= sizeof(int);
250 ret
= getsockopt(socket_server_fd
,SOL_SOCKET
,SO_ERROR
,&err
,&err_len
);
252 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"getsockopt failed: %s\n",strerror(errno
));
253 return TCP_ERROR_FATAL
;
256 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"connect error: %s\n",strerror(err
));
257 return TCP_ERROR_PORT
;
260 return socket_server_fd
;
263 // Connect to a server using a TCP connection
264 // return -2 for fatal error, like unable to resolve name, connection timeout...
265 // return -1 is unable to connect to a particular port
269 connect2Server(char *host
, int port
, int verb
) {
272 int s
= TCP_ERROR_FATAL
;
274 r
= connect2Server_with_af(host
, port
, network_prefer_ipv4
? AF_INET
:AF_INET6
,verb
);
275 if (r
>= 0) return r
;
277 s
= connect2Server_with_af(host
, port
, network_prefer_ipv4
? AF_INET6
:AF_INET
,verb
);
278 if (s
== TCP_ERROR_FATAL
) return r
;
281 return connect2Server_with_af(host
, port
, AF_INET
,verb
);