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