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