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