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