]> git.sesse.net Git - vlc/blob - src/network/tcp.c
Remove confusing debug message (fixes #3319), fetch timeout once
[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 #undef net_Connect
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     int evfd = vlc_object_waitpipe (p_this);
84     if (evfd == -1)
85         return -1;
86
87     memset( &hints, 0, sizeof( hints ) );
88     hints.ai_protocol = proto;
89
90     psz_socks = var_CreateGetNonEmptyString( p_this, "socks" );
91     if( psz_socks != NULL )
92     {
93         char *psz = strchr( psz_socks, ':' );
94
95         if( psz )
96             *psz++ = '\0';
97
98         psz_realhost = psz_socks;
99         i_realport = ( psz != NULL ) ? atoi( psz ) : 1080;
100         hints.ai_flags &= ~AI_NUMERICHOST;
101
102         msg_Dbg( p_this, "net: connecting to %s port %d (SOCKS) "
103                  "for %s port %d", psz_realhost, i_realport,
104                  psz_host, i_port );
105
106         /* We only implement TCP with SOCKS */
107         switch( type )
108         {
109             case 0:
110                 type = SOCK_STREAM;
111             case SOCK_STREAM:
112                 break;
113             default:
114                 msg_Err( p_this, "Socket type not supported through SOCKS" );
115                 free( psz_socks );
116                 return -1;
117         }
118         switch( proto )
119         {
120             case 0:
121                 proto = IPPROTO_TCP;
122             case IPPROTO_TCP:
123                 break;
124             default:
125                 msg_Err( p_this, "Transport not supported through SOCKS" );
126                 free( psz_socks );
127                 return -1;
128         }
129     }
130     else
131     {
132         psz_realhost = psz_host;
133         i_realport = i_port;
134
135         msg_Dbg( p_this, "net: connecting to %s port %d", psz_realhost,
136                  i_realport );
137     }
138
139     i_val = vlc_getaddrinfo( p_this, psz_realhost, i_realport, &hints, &res );
140     free( psz_socks );
141
142     if( i_val )
143     {
144         msg_Err( p_this, "cannot resolve %s port %d : %s", psz_realhost,
145                  i_realport, vlc_gai_strerror( i_val ) );
146         return -1;
147     }
148
149     int timeout = var_InheritInteger (p_this, "ipv4-timeout");
150     if (timeout < 0)
151         timeout = -1;
152
153     for( ptr = res; ptr != NULL; ptr = ptr->ai_next )
154     {
155         int fd = net_Socket( p_this, ptr->ai_family,
156                              ptr->ai_socktype, ptr->ai_protocol );
157         if( fd == -1 )
158         {
159             msg_Dbg( p_this, "socket error: %m" );
160             continue;
161         }
162
163         if( connect( fd, ptr->ai_addr, ptr->ai_addrlen ) )
164         {
165             int val;
166
167             if( net_errno != EINPROGRESS && net_errno != EINTR )
168             {
169                 msg_Err( p_this, "connection failed: %m" );
170                 goto next_ai;
171             }
172
173             struct pollfd ufd[2] = {
174                 { .fd = fd,   .events = POLLOUT },
175                 { .fd = evfd, .events = POLLIN },
176             };
177
178             do
179                 /* NOTE: timeout screwed up if we catch a signal (EINTR) */
180                 val = poll (ufd, sizeof (ufd) / sizeof (ufd[0]), timeout);
181             while ((val == -1) && (net_errno == EINTR));
182
183             switch (val)
184             {
185                  case -1: /* error */
186                      msg_Err (p_this, "connection polling error: %m");
187                      goto next_ai;
188
189                  case 0: /* timeout */
190                      msg_Warn (p_this, "connection timed out");
191                      goto next_ai;
192
193                  default: /* something happended */
194                      if (ufd[1].revents)
195                          goto next_ai; /* LibVLC object killed */
196             }
197
198             /* There is NO WAY around checking SO_ERROR.
199              * Don't ifdef it out!!! */
200             if (getsockopt (fd, SOL_SOCKET, SO_ERROR, &val,
201                             &(socklen_t){ sizeof (val) }) || val)
202             {
203                 errno = val;
204                 msg_Err (p_this, "connection failed: %m");
205                 goto next_ai;
206             }
207         }
208
209         msg_Dbg( p_this, "connection succeeded (socket = %d)", fd );
210         i_handle = fd; /* success! */
211         break;
212
213 next_ai: /* failure */
214         net_Close( fd );
215         continue;
216     }
217
218     vlc_freeaddrinfo( res );
219
220     if( i_handle == -1 )
221         return -1;
222
223     if( psz_socks != NULL )
224     {
225         /* NOTE: psz_socks already free'd! */
226         char *psz_user = var_CreateGetNonEmptyString( p_this, "socks-user" );
227         char *psz_pwd  = var_CreateGetNonEmptyString( p_this, "socks-pwd" );
228
229         if( SocksHandshakeTCP( p_this, i_handle, 5, psz_user, psz_pwd,
230                                psz_host, i_port ) )
231         {
232             msg_Err( p_this, "SOCKS handshake failed" );
233             net_Close( i_handle );
234             i_handle = -1;
235         }
236
237         free( psz_user );
238         free( psz_pwd );
239     }
240
241     return i_handle;
242 }
243
244
245 int net_AcceptSingle (vlc_object_t *obj, int lfd)
246 {
247     int fd;
248
249     do
250     {
251 #ifdef HAVE_ACCEPT4
252         fd = accept4 (lfd, NULL, NULL, SOCK_CLOEXEC);
253         if (fd == -1 && errno == ENOSYS)
254 #endif
255         fd = accept (lfd, NULL, NULL);
256     }
257     while (fd == -1 && errno == EINTR);
258
259     if (fd == -1)
260     {
261         if (net_errno != EAGAIN && net_errno != EWOULDBLOCK)
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 #undef net_Accept
273 /**
274  * Accepts an new connection on a set of listening sockets.
275  * If there are no pending connections, this function will wait.
276  * @note If the thread needs to handle events other than incoming connections,
277  * you need to use poll() and net_AcceptSingle() instead.
278  *
279  * @param p_this VLC object for logging and object kill signal
280  * @param pi_fd listening socket set
281  * @return -1 on error (may be transient error due to network issues),
282  * a new socket descriptor on success.
283  */
284 int net_Accept (vlc_object_t *p_this, int *pi_fd)
285 {
286     int evfd = vlc_object_waitpipe (p_this);
287
288     assert (pi_fd != NULL);
289
290     unsigned n = 0;
291     while (pi_fd[n] != -1)
292         n++;
293     struct pollfd ufd[n + 1];
294
295     /* Initialize file descriptor set */
296     for (unsigned i = 0; i <= n; i++)
297     {
298         ufd[i].fd = (i < n) ? pi_fd[i] : evfd;
299         ufd[i].events = POLLIN;
300     }
301     ufd[n].revents = 0;
302
303     for (;;)
304     {
305         while (poll (ufd, n + (evfd != -1), -1) == -1)
306         {
307             if (net_errno != EINTR)
308             {
309                 msg_Err (p_this, "poll error: %m");
310                 return -1;
311             }
312         }
313
314         for (unsigned i = 0; i < n; i++)
315         {
316             if (ufd[i].revents == 0)
317                 continue;
318
319             int sfd = ufd[i].fd;
320             int fd = net_AcceptSingle (p_this, sfd);
321             if (fd == -1)
322                 continue;
323
324             /*
325              * Move listening socket to the end to let the others in the
326              * set a chance next time.
327              */
328             memmove (pi_fd + i, pi_fd + i + 1, n - (i + 1));
329             pi_fd[n - 1] = sfd;
330             return fd;
331         }
332
333         if (ufd[n].revents)
334         {
335             errno = EINTR;
336             break;
337         }
338     }
339     return -1;
340 }
341
342
343 /*****************************************************************************
344  * SocksNegotiate:
345  *****************************************************************************
346  * Negotiate authentication with a SOCKS server.
347  *****************************************************************************/
348 static int SocksNegotiate( vlc_object_t *p_obj,
349                            int fd, int i_socks_version,
350                            const char *psz_socks_user,
351                            const char *psz_socks_passwd )
352 {
353     uint8_t buffer[128+2*256];
354     int i_len;
355     bool b_auth = false;
356
357     if( i_socks_version != 5 )
358         return VLC_SUCCESS;
359
360     /* We negotiate authentication */
361
362     if( ( psz_socks_user == NULL ) && ( psz_socks_passwd == NULL ) )
363         b_auth = true;
364
365     buffer[0] = i_socks_version;    /* SOCKS version */
366     if( b_auth )
367     {
368         buffer[1] = 2;                  /* Number of methods */
369         buffer[2] = 0x00;               /* - No auth required */
370         buffer[3] = 0x02;               /* - USer/Password */
371         i_len = 4;
372     }
373     else
374     {
375         buffer[1] = 1;                  /* Number of methods */
376         buffer[2] = 0x00;               /* - No auth required */
377         i_len = 3;
378     }
379
380     if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
381         return VLC_EGENERIC;
382     if( net_Read( p_obj, fd, NULL, buffer, 2, true ) != 2 )
383         return VLC_EGENERIC;
384
385     msg_Dbg( p_obj, "socks: v=%d method=%x", buffer[0], buffer[1] );
386
387     if( buffer[1] == 0x00 )
388     {
389         msg_Dbg( p_obj, "socks: no authentication required" );
390     }
391     else if( buffer[1] == 0x02 )
392     {
393         int i_len1 = __MIN( strlen(psz_socks_user), 255 );
394         int i_len2 = __MIN( strlen(psz_socks_passwd), 255 );
395         msg_Dbg( p_obj, "socks: username/password authentication" );
396
397         /* XXX: we don't support user/pwd > 255 (truncated)*/
398         buffer[0] = i_socks_version;        /* Version */
399         buffer[1] = i_len1;                 /* User length */
400         memcpy( &buffer[2], psz_socks_user, i_len1 );
401         buffer[2+i_len1] = i_len2;          /* Password length */
402         memcpy( &buffer[2+i_len1+1], psz_socks_passwd, i_len2 );
403
404         i_len = 3 + i_len1 + i_len2;
405
406         if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
407             return VLC_EGENERIC;
408
409         if( net_Read( p_obj, fd, NULL, buffer, 2, true ) != 2 )
410             return VLC_EGENERIC;
411
412         msg_Dbg( p_obj, "socks: v=%d status=%x", buffer[0], buffer[1] );
413         if( buffer[1] != 0x00 )
414         {
415             msg_Err( p_obj, "socks: authentication rejected" );
416             return VLC_EGENERIC;
417         }
418     }
419     else
420     {
421         if( b_auth )
422             msg_Err( p_obj, "socks: unsupported authentication method %x",
423                      buffer[0] );
424         else
425             msg_Err( p_obj, "socks: authentication needed" );
426         return VLC_EGENERIC;
427     }
428
429     return VLC_SUCCESS;
430 }
431
432 /*****************************************************************************
433  * SocksHandshakeTCP:
434  *****************************************************************************
435  * Open a TCP connection using a SOCKS server and return a handle (RFC 1928)
436  *****************************************************************************/
437 static int SocksHandshakeTCP( vlc_object_t *p_obj,
438                               int fd,
439                               int i_socks_version,
440                               const char *psz_user, const char *psz_passwd,
441                               const char *psz_host, int i_port )
442 {
443     uint8_t buffer[128+2*256];
444
445     if( i_socks_version != 4 && i_socks_version != 5 )
446     {
447         msg_Warn( p_obj, "invalid socks protocol version %d", i_socks_version );
448         i_socks_version = 5;
449     }
450
451     if( i_socks_version == 5 &&
452         SocksNegotiate( p_obj, fd, i_socks_version,
453                         psz_user, psz_passwd ) )
454         return VLC_EGENERIC;
455
456     if( i_socks_version == 4 )
457     {
458         struct addrinfo hints, *p_res;
459
460         /* v4 only support ipv4 */
461         memset (&hints, 0, sizeof (hints));
462         hints.ai_family = AF_INET;
463         hints.ai_socktype = SOCK_STREAM;
464         hints.ai_protocol = IPPROTO_TCP;
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" );
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 }