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