]> git.sesse.net Git - vlc/blob - src/network/tcp.c
- Use poll in net_Accept
[vlc] / src / network / tcp.c
1 /*****************************************************************************
2  * tcp.c:
3  *****************************************************************************
4  * Copyright (C) 2004-2005 the VideoLAN team
5  * Copyright (C) 2005-2006 Rémi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Laurent Aimar <fenrir@videolan.org>
9  *          Rémi Denis-Courmont <rem # videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 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 General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdlib.h>
30 #include <vlc/vlc.h>
31
32 #include <errno.h>
33
34 #ifdef HAVE_FCNTL_H
35 #   include <fcntl.h>
36 #endif
37 #ifdef HAVE_SYS_TIME_H
38 #    include <sys/time.h>
39 #endif
40 #ifdef HAVE_UNISTD_H
41 #   include <unistd.h>
42 #endif
43 #ifdef HAVE_POLL
44 # include <poll.h>
45 #endif
46
47 #include <vlc_network.h>
48 #if defined (WIN32) || defined (UNDER_CE)
49 #   undef EINPROGRESS
50 #   define EINPROGRESS WSAEWOULDBLOCK
51 #   undef EINTR
52 #   define EINTR WSAEINTR
53 #   undef ETIMEDOUT
54 #   define ETIMEDOUT WSAETIMEDOUT
55 #endif
56
57 static int SocksNegociate( vlc_object_t *, int fd, int i_socks_version,
58                            char *psz_socks_user, char *psz_socks_passwd );
59 static int SocksHandshakeTCP( vlc_object_t *,
60                               int fd, int i_socks_version,
61                               char *psz_socks_user, char *psz_socks_passwd,
62                               const char *psz_host, int i_port );
63 extern int net_Socket( vlc_object_t *p_this, int i_family, int i_socktype,
64                        int i_protocol );
65
66 /*****************************************************************************
67  * __net_Connect:
68  *****************************************************************************
69  * Open a network connection.
70  * @return socket handler or -1 on error.
71  *****************************************************************************/
72 int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port,
73                    int type, int proto )
74 {
75     struct addrinfo hints, *res, *ptr;
76     const char      *psz_realhost;
77     char            *psz_socks;
78     int             i_realport, i_val, i_handle = -1, i_saved_errno = 0;
79     unsigned        u_errstep = 0;
80
81     if( i_port == 0 )
82         i_port = 80; /* historical VLC thing */
83
84     memset( &hints, 0, sizeof( hints ) );
85     hints.ai_socktype = SOCK_STREAM;
86
87     psz_socks = var_CreateGetString( p_this, "socks" );
88     if( *psz_socks && *psz_socks != ':' )
89     {
90         char *psz = strchr( psz_socks, ':' );
91
92         if( psz )
93             *psz++ = '\0';
94
95         psz_realhost = psz_socks;
96         i_realport = ( psz != NULL ) ? atoi( psz ) : 1080;
97
98         msg_Dbg( p_this, "net: connecting to %s port %d for %s port %d",
99                  psz_realhost, i_realport, psz_host, i_port );
100     }
101     else
102     {
103         psz_realhost = psz_host;
104         i_realport = i_port;
105
106         msg_Dbg( p_this, "net: connecting to %s port %d", psz_realhost,
107                  i_realport );
108     }
109
110     i_val = vlc_getaddrinfo( p_this, psz_realhost, i_realport, &hints, &res );
111     if( i_val )
112     {
113         msg_Err( p_this, "cannot resolve %s port %d : %s", psz_realhost,
114                  i_realport, vlc_gai_strerror( i_val ) );
115         free( psz_socks );
116         return -1;
117     }
118
119     for( ptr = res; ptr != NULL; ptr = ptr->ai_next )
120     {
121         int fd = net_Socket( p_this, ptr->ai_family, type ?: ptr->ai_socktype,
122                              proto ?: ptr->ai_protocol );
123         if( fd == -1 )
124         {
125             if( u_errstep <= 0 )
126             {
127                 u_errstep = 1;
128                 i_saved_errno = net_errno;
129             }
130             msg_Dbg( p_this, "socket error: %s", strerror( net_errno ) );
131             continue;
132         }
133
134         if( connect( fd, ptr->ai_addr, ptr->ai_addrlen ) )
135         {
136             socklen_t i_val_size = sizeof( i_val );
137             div_t d;
138             struct timeval tv;
139             vlc_value_t timeout;
140
141             if( net_errno != EINPROGRESS )
142             {
143                 if( u_errstep <= 1 )
144                 {
145                     u_errstep = 2;
146                     i_saved_errno = net_errno;
147                 }
148                 msg_Dbg( p_this, "connect error: %s", strerror( net_errno ) );
149                 goto next_ai;
150             }
151
152             var_Create( p_this, "ipv4-timeout",
153                         VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
154             var_Get( p_this, "ipv4-timeout", &timeout );
155             if( timeout.i_int < 0 )
156             {
157                 msg_Err( p_this, "invalid negative value for ipv4-timeout" );
158                 timeout.i_int = 0;
159             }
160             d = div( timeout.i_int, 100 );
161
162             msg_Dbg( p_this, "connection in progress" );
163             for (;;)
164             {
165                 fd_set fds;
166                 int i_ret;
167
168                 if( p_this->b_die )
169                 {
170                     msg_Dbg( p_this, "connection aborted" );
171                     net_Close( fd );
172                     vlc_freeaddrinfo( res );
173                     free( psz_socks );
174                     return -1;
175                 }
176
177                 /* Initialize file descriptor set */
178                 FD_ZERO( &fds );
179                 FD_SET( fd, &fds );
180
181                 /*
182                  * We'll wait 0.1 second if nothing happens
183                  * NOTE:
184                  * time out will be shortened if we catch a signal (EINTR)
185                  */
186                 tv.tv_sec = 0;
187                 tv.tv_usec = (d.quot > 0) ? 100000 : (1000 * d.rem);
188
189                 i_ret = select( fd + 1, NULL, &fds, NULL, &tv );
190                 if( i_ret == 1 )
191                     break;
192
193                 if( ( i_ret == -1 ) && ( net_errno != EINTR ) )
194                 {
195                     msg_Warn( p_this, "select error: %s",
196                               strerror( net_errno ) );
197                     goto next_ai;
198                 }
199
200                 if( d.quot <= 0 )
201                 {
202                     msg_Dbg( p_this, "select timed out" );
203                     if( u_errstep <= 2 )
204                     {
205                         u_errstep = 3;
206                         i_saved_errno = ETIMEDOUT;
207                     }
208                     goto next_ai;
209                 }
210
211                 d.quot--;
212             }
213
214 #if !defined( SYS_BEOS ) && !defined( UNDER_CE )
215             if( getsockopt( fd, SOL_SOCKET, SO_ERROR, (void*)&i_val,
216                             &i_val_size ) == -1 || i_val != 0 )
217             {
218                 u_errstep = 4;
219                 i_saved_errno = i_val;
220                 msg_Dbg( p_this, "connect error (via getsockopt): %s",
221                          net_strerror( i_val ) );
222                 goto next_ai;
223             }
224 #endif
225         }
226
227         i_handle = fd; /* success! */
228         break;
229
230 next_ai: /* failure */
231         net_Close( fd );
232         continue;
233     }
234
235     vlc_freeaddrinfo( res );
236
237     if( i_handle == -1 )
238     {
239         msg_Err( p_this, "Connection to %s port %d failed: %s", psz_host,
240                  i_port, net_strerror( i_saved_errno ) );
241         free( psz_socks );
242         return -1;
243     }
244
245     if( *psz_socks && *psz_socks != ':' )
246     {
247         char *psz_user = var_CreateGetString( p_this, "socks-user" );
248         char *psz_pwd  = var_CreateGetString( p_this, "socks-pwd" );
249
250         if( SocksHandshakeTCP( p_this, i_handle, 5, psz_user, psz_pwd,
251                                psz_host, i_port ) )
252         {
253             msg_Err( p_this, "Failed to use the SOCKS server" );
254             net_Close( i_handle );
255             i_handle = -1;
256         }
257
258         free( psz_user );
259         free( psz_pwd );
260     }
261     free( psz_socks );
262
263     return i_handle;
264 }
265
266
267 /*****************************************************************************
268  * __net_Accept:
269  *****************************************************************************
270  * Accept a connection on a set of listening sockets and return it
271  *****************************************************************************/
272 int __net_Accept( vlc_object_t *p_this, int pi_fd[], mtime_t i_wait )
273 {
274     vlc_bool_t b_block = (i_wait < 0);
275
276     while( !p_this->b_die )
277     {
278         unsigned n = 0;
279         while (pi_fd[n] != -1)
280             n++;
281         struct pollfd ufd[n];
282
283         /* Initialize file descriptor set */
284         for (unsigned i = 0; i < n; i++)
285         {
286             ufd[i].fd = pi_fd[i];
287             ufd[i].events = POLLIN;
288             ufd[i].revents = 0;
289         }
290
291         switch (poll (ufd, n, b_block ? 500 : i_wait))
292         {
293             case -1:
294                 if (net_errno != EINTR)
295                 {
296                     msg_Err (p_this, "poll error: %s",
297                              net_strerror (net_errno));
298                 }
299                 return -1;
300
301             case 0:
302                 if (b_block)
303                     continue;
304                 return -1;
305         }
306
307         for (unsigned i = 0; i < n; i++)
308         {
309             if (ufd[i].revents == 0)
310                 continue;
311
312             int sfd = ufd[i].fd;
313             int fd = accept (sfd, NULL, NULL);
314             if (fd == -1)
315             {
316                 msg_Err (p_this, "accept failed (%s)",
317                          net_strerror (net_errno));
318                 continue;
319             }
320             net_SetupSocket (fd);
321
322             /*
323              * Move listening socket to the end to let the others in the
324              * set a chance next time.
325              */
326             memmove (pi_fd + i, pi_fd + i + 1, n - (i + 1));
327             pi_fd[n - 1] = sfd;
328             msg_Dbg (p_this, "accepted socket %d (from socket %d)", fd, sfd);
329             return fd;
330         }
331     }
332
333     return -1;
334 }
335
336
337 /*****************************************************************************
338  * SocksNegociate:
339  *****************************************************************************
340  * Negociate authentication with a SOCKS server.
341  *****************************************************************************/
342 static int SocksNegociate( vlc_object_t *p_obj,
343                            int fd, int i_socks_version,
344                            char *psz_socks_user,
345                            char *psz_socks_passwd )
346 {
347     uint8_t buffer[128+2*256];
348     int i_len;
349     vlc_bool_t b_auth = VLC_FALSE;
350
351     if( i_socks_version != 5 )
352         return VLC_SUCCESS;
353
354     /* We negociate authentication */
355
356     if( psz_socks_user && psz_socks_passwd &&
357         *psz_socks_user && *psz_socks_passwd )
358         b_auth = VLC_TRUE;
359
360     buffer[0] = i_socks_version;    /* SOCKS version */
361     if( b_auth )
362     {
363         buffer[1] = 2;                  /* Number of methods */
364         buffer[2] = 0x00;               /* - No auth required */
365         buffer[3] = 0x02;               /* - USer/Password */
366         i_len = 4;
367     }
368     else
369     {
370         buffer[1] = 1;                  /* Number of methods */
371         buffer[2] = 0x00;               /* - No auth required */
372         i_len = 3;
373     }
374
375     if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
376         return VLC_EGENERIC;
377     if( net_Read( p_obj, fd, NULL, buffer, 2, VLC_TRUE ) != 2 )
378         return VLC_EGENERIC;
379
380     msg_Dbg( p_obj, "socks: v=%d method=%x", buffer[0], buffer[1] );
381
382     if( buffer[1] == 0x00 )
383     {
384         msg_Dbg( p_obj, "socks: no authentication required" );
385     }
386     else if( buffer[1] == 0x02 )
387     {
388         int i_len1 = __MIN( strlen(psz_socks_user), 255 );
389         int i_len2 = __MIN( strlen(psz_socks_passwd), 255 );
390         msg_Dbg( p_obj, "socks: username/password authentication" );
391
392         /* XXX: we don't support user/pwd > 255 (truncated)*/
393         buffer[0] = i_socks_version;        /* Version */
394         buffer[1] = i_len1;                 /* User length */
395         memcpy( &buffer[2], psz_socks_user, i_len1 );
396         buffer[2+i_len1] = i_len2;          /* Password length */
397         memcpy( &buffer[2+i_len1+1], psz_socks_passwd, i_len2 );
398
399         i_len = 3 + i_len1 + i_len2;
400
401         if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
402             return VLC_EGENERIC;
403
404         if( net_Read( p_obj, fd, NULL, buffer, 2, VLC_TRUE ) != 2 )
405             return VLC_EGENERIC;
406
407         msg_Dbg( p_obj, "socks: v=%d status=%x", buffer[0], buffer[1] );
408         if( buffer[1] != 0x00 )
409         {
410             msg_Err( p_obj, "socks: authentication rejected" );
411             return VLC_EGENERIC;
412         }
413     }
414     else
415     {
416         if( b_auth )
417             msg_Err( p_obj, "socks: unsupported authentication method %x",
418                      buffer[0] );
419         else
420             msg_Err( p_obj, "socks: authentification needed" );
421         return VLC_EGENERIC;
422     }
423
424     return VLC_SUCCESS;
425 }
426
427 /*****************************************************************************
428  * SocksHandshakeTCP:
429  *****************************************************************************
430  * Open a TCP connection using a SOCKS server and return a handle (RFC 1928)
431  *****************************************************************************/
432 static int SocksHandshakeTCP( vlc_object_t *p_obj,
433                               int fd,
434                               int i_socks_version,
435                               char *psz_socks_user, char *psz_socks_passwd,
436                               const char *psz_host, int i_port )
437 {
438     uint8_t buffer[128+2*256];
439
440     if( i_socks_version != 4 && i_socks_version != 5 )
441     {
442         msg_Warn( p_obj, "invalid socks protocol version %d", i_socks_version );
443         i_socks_version = 5;
444     }
445
446     if( i_socks_version == 5 && 
447         SocksNegociate( p_obj, fd, i_socks_version,
448                         psz_socks_user, psz_socks_passwd ) )
449         return VLC_EGENERIC;
450
451     if( i_socks_version == 4 )
452     {
453         struct addrinfo hints, *p_res;
454
455         /* v4 only support ipv4 */
456         memset (&hints, 0, sizeof (hints));
457         hints.ai_family = AF_INET;
458         if( vlc_getaddrinfo( p_obj, psz_host, 0, &hints, &p_res ) )
459             return VLC_EGENERIC;
460
461         buffer[0] = i_socks_version;
462         buffer[1] = 0x01;               /* CONNECT */
463         SetWBE( &buffer[2], i_port );   /* Port */
464         memcpy( &buffer[4],             /* Address */
465                 &((struct sockaddr_in *)(p_res->ai_addr))->sin_addr, 4 );
466         vlc_freeaddrinfo( p_res );
467
468         buffer[8] = 0;                  /* Empty user id */
469
470         if( net_Write( p_obj, fd, NULL, buffer, 9 ) != 9 )
471             return VLC_EGENERIC;
472         if( net_Read( p_obj, fd, NULL, buffer, 8, VLC_TRUE ) != 8 )
473             return VLC_EGENERIC;
474
475         msg_Dbg( p_obj, "socks: v=%d cd=%d",
476                  buffer[0], buffer[1] );
477
478         if( buffer[1] != 90 )
479             return VLC_EGENERIC;
480     }
481     else if( i_socks_version == 5 )
482     {
483         int i_hlen = __MIN(strlen( psz_host ), 255);
484         int i_len;
485
486         buffer[0] = i_socks_version;    /* Version */
487         buffer[1] = 0x01;               /* Cmd: connect */
488         buffer[2] = 0x00;               /* Reserved */
489         buffer[3] = 3;                  /* ATYP: for now domainname */
490
491         buffer[4] = i_hlen;
492         memcpy( &buffer[5], psz_host, i_hlen );
493         SetWBE( &buffer[5+i_hlen], i_port );
494
495         i_len = 5 + i_hlen + 2;
496
497
498         if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
499             return VLC_EGENERIC;
500
501         /* Read the header */
502         if( net_Read( p_obj, fd, NULL, buffer, 5, VLC_TRUE ) != 5 )
503             return VLC_EGENERIC;
504
505         msg_Dbg( p_obj, "socks: v=%d rep=%d atyp=%d",
506                  buffer[0], buffer[1], buffer[3] );
507
508         if( buffer[1] != 0x00 )
509         {
510             msg_Err( p_obj, "socks: CONNECT request failed\n" );
511             return VLC_EGENERIC;
512         }
513
514         /* Read the remaining bytes */
515         if( buffer[3] == 0x01 )
516             i_len = 4-1 + 2;
517         else if( buffer[3] == 0x03 )
518             i_len = buffer[4] + 2;
519         else if( buffer[3] == 0x04 )
520             i_len = 16-1+2;
521         else 
522             return VLC_EGENERIC;
523
524         if( net_Read( p_obj, fd, NULL, buffer, i_len, VLC_TRUE ) != i_len )
525             return VLC_EGENERIC;
526     }
527
528     return VLC_SUCCESS;
529 }
530
531 void net_ListenClose( int *pi_fd )
532 {
533     if( pi_fd != NULL )
534     {
535         int *pi;
536
537         for( pi = pi_fd; *pi != -1; pi++ )
538             net_Close( *pi );
539         free( pi_fd );
540     }
541 }