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
= 0;
56 // Converts an address family constant to a string
58 static const char *af2String(int af
) {
60 case AF_INET
: return "AF_INET";
63 case AF_INET6
: return "AF_INET6";
65 default: return "Unknown address family!";
71 // Connect to a server using a TCP connection, with specified address family
72 // return -2 for fatal error, like unable to resolve name, connection timeout...
73 // return -1 is unable to connect to a particular port
76 connect2Server_with_af(char *host
, int port
, int af
,int verb
) {
84 struct sockaddr_in four
;
86 struct sockaddr_in6 six
;
89 size_t server_address_size
;
90 void *our_s_addr
; // Pointer to sin_addr or sin6_addr
91 struct hostent
*hp
=NULL
;
101 #if HAVE_WINSOCK2_H && defined(HAVE_AF_INET6)
102 // our winsock name resolution code can not handle IPv6
103 if (af
== AF_INET6
) {
104 mp_msg(MSGT_NETWORK
, MSGL_WARN
, "IPv6 not supported for winsock2\n");
105 return TCP_ERROR_FATAL
;
109 socket_server_fd
= socket(af
, SOCK_STREAM
, 0);
112 if( socket_server_fd
==-1 ) {
113 // mp_msg(MSGT_NETWORK,MSGL_ERR,"Failed to create %s socket:\n", af2String(af));
114 return TCP_ERROR_FATAL
;
117 #if defined(SO_RCVTIMEO) && defined(SO_SNDTIMEO)
119 /* timeout in milliseconds */
125 setsockopt(socket_server_fd
, SOL_SOCKET
, SO_RCVTIMEO
, &to
, sizeof(to
));
126 setsockopt(socket_server_fd
, SOL_SOCKET
, SO_SNDTIMEO
, &to
, sizeof(to
));
130 case AF_INET
: our_s_addr
= (void *) &server_address
.four
.sin_addr
; break;
132 case AF_INET6
: our_s_addr
= (void *) &server_address
.six
.sin6_addr
; break;
135 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
, "Unknown address family %d\n", af
);
136 return TCP_ERROR_FATAL
;
140 memset(&server_address
, 0, sizeof(server_address
));
143 if (inet_pton(af
, host
, our_s_addr
)!=1)
145 if (inet_aton(host
, our_s_addr
)!=1)
146 #elif HAVE_WINSOCK2_H
147 if ( inet_addr(host
)==INADDR_NONE
)
150 if(verb
) mp_tmsg(MSGT_NETWORK
,MSGL_STATUS
,"Resolving %s for %s...\n", host
, af2String(af
));
152 #ifdef HAVE_GETHOSTBYNAME2
153 hp
=(struct hostent
*)gethostbyname2( host
, af
);
155 hp
=(struct hostent
*)gethostbyname( host
);
158 if(verb
) mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"Couldn't resolve name for %s: %s\n", af2String(af
), host
);
159 return TCP_ERROR_FATAL
;
162 memcpy( our_s_addr
, (void*)hp
->h_addr_list
[0], hp
->h_length
);
166 unsigned long addr
= inet_addr(host
);
167 memcpy( our_s_addr
, (void*)&addr
, sizeof(addr
) );
173 server_address
.four
.sin_family
=af
;
174 server_address
.four
.sin_port
=htons(port
);
175 server_address_size
= sizeof(server_address
.four
);
179 server_address
.six
.sin6_family
=af
;
180 server_address
.six
.sin6_port
=htons(port
);
181 server_address_size
= sizeof(server_address
.six
);
185 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
, "Unknown address family %d\n", af
);
186 return TCP_ERROR_FATAL
;
190 inet_ntop(af
, our_s_addr
, buf
, 255);
191 #elif HAVE_INET_ATON || defined(HAVE_WINSOCK2_H)
192 av_strlcpy( buf
, inet_ntoa( *((struct in_addr
*)our_s_addr
) ), 255);
194 if(verb
) mp_tmsg(MSGT_NETWORK
,MSGL_STATUS
,"Connecting to server %s[%s]: %d...\n", host
, buf
, port
);
196 // Turn the socket as non blocking so we can timeout on the connection
198 fcntl( socket_server_fd
, F_SETFL
, fcntl(socket_server_fd
, F_GETFL
) | O_NONBLOCK
);
201 ioctlsocket( socket_server_fd
, FIONBIO
, &val
);
203 if( connect( socket_server_fd
, (struct sockaddr
*)&server_address
, server_address_size
)==-1 ) {
205 if( errno
!=EINPROGRESS
) {
207 if( (WSAGetLastError() != WSAEINPROGRESS
) && (WSAGetLastError() != WSAEWOULDBLOCK
) ) {
209 if(verb
) mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"Failed to connect to server with %s\n", af2String(af
));
210 closesocket(socket_server_fd
);
211 return TCP_ERROR_PORT
;
217 FD_SET( socket_server_fd
, &set
);
218 // When the connection will be made, we will have a writeable fd
219 while((ret
= select(socket_server_fd
+1, NULL
, &set
, NULL
, &tv
)) == 0) {
220 if(count
> 30 || stream_check_interrupt(500)) {
222 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"connection timeout\n");
224 mp_msg(MSGT_NETWORK
,MSGL_V
,"Connection interrupted by user\n");
225 return TCP_ERROR_TIMEOUT
;
229 FD_SET( socket_server_fd
, &set
);
233 if (ret
< 0) mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"Select failed.\n");
235 // Turn back the socket as blocking
237 fcntl( socket_server_fd
, F_SETFL
, fcntl(socket_server_fd
, F_GETFL
) & ~O_NONBLOCK
);
240 ioctlsocket( socket_server_fd
, FIONBIO
, &val
);
242 // Check if there were any errors
243 err_len
= sizeof(int);
244 ret
= getsockopt(socket_server_fd
,SOL_SOCKET
,SO_ERROR
,&err
,&err_len
);
246 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"getsockopt failed: %s\n",strerror(errno
));
247 return TCP_ERROR_FATAL
;
250 mp_tmsg(MSGT_NETWORK
,MSGL_ERR
,"connect error: %s\n",strerror(err
));
251 return TCP_ERROR_PORT
;
254 return socket_server_fd
;
257 // Connect to a server using a TCP connection
258 // return -2 for fatal error, like unable to resolve name, connection timeout...
259 // return -1 is unable to connect to a particular port
263 connect2Server(char *host
, int port
, int verb
) {
266 int s
= TCP_ERROR_FATAL
;
268 r
= connect2Server_with_af(host
, port
, network_prefer_ipv4
? AF_INET
:AF_INET6
,verb
);
269 if (r
>= 0) return r
;
271 s
= connect2Server_with_af(host
, port
, network_prefer_ipv4
? AF_INET6
:AF_INET
,verb
);
272 if (s
== TCP_ERROR_FATAL
) return r
;
275 return connect2Server_with_af(host
, port
, AF_INET
,verb
);