]> git.sesse.net Git - vlc/blob - src/network/tcp.c
7b1cdfa30135b9b3d16017b524ee4ee7db7a89c0
[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 = vlc_accept (lfd, NULL, NULL, true);
248     if (fd == -1)
249     {
250         if (net_errno != EAGAIN && net_errno != EWOULDBLOCK)
251             msg_Err (obj, "accept failed (from socket %d): %m", lfd);
252         return -1;
253     }
254
255     msg_Dbg (obj, "accepted socket %d (from socket %d)", fd, lfd);
256     setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof(int));
257     return fd;
258 }
259
260
261 #undef net_Accept
262 /**
263  * Accepts an new connection on a set of listening sockets.
264  * If there are no pending connections, this function will wait.
265  * @note If the thread needs to handle events other than incoming connections,
266  * you need to use poll() and net_AcceptSingle() instead.
267  *
268  * @param p_this VLC object for logging and object kill signal
269  * @param pi_fd listening socket set
270  * @return -1 on error (may be transient error due to network issues),
271  * a new socket descriptor on success.
272  */
273 int net_Accept (vlc_object_t *p_this, int *pi_fd)
274 {
275     int evfd = vlc_object_waitpipe (p_this);
276
277     assert (pi_fd != NULL);
278
279     unsigned n = 0;
280     while (pi_fd[n] != -1)
281         n++;
282     struct pollfd ufd[n + 1];
283
284     /* Initialize file descriptor set */
285     for (unsigned i = 0; i <= n; i++)
286     {
287         ufd[i].fd = (i < n) ? pi_fd[i] : evfd;
288         ufd[i].events = POLLIN;
289     }
290     ufd[n].revents = 0;
291
292     for (;;)
293     {
294         while (poll (ufd, n + (evfd != -1), -1) == -1)
295         {
296             if (net_errno != EINTR)
297             {
298                 msg_Err (p_this, "poll error: %m");
299                 return -1;
300             }
301         }
302
303         for (unsigned i = 0; i < n; i++)
304         {
305             if (ufd[i].revents == 0)
306                 continue;
307
308             int sfd = ufd[i].fd;
309             int fd = net_AcceptSingle (p_this, sfd);
310             if (fd == -1)
311                 continue;
312
313             /*
314              * Move listening socket to the end to let the others in the
315              * set a chance next time.
316              */
317             memmove (pi_fd + i, pi_fd + i + 1, n - (i + 1));
318             pi_fd[n - 1] = sfd;
319             return fd;
320         }
321
322         if (ufd[n].revents)
323         {
324             errno = EINTR;
325             break;
326         }
327     }
328     return -1;
329 }
330
331
332 /*****************************************************************************
333  * SocksNegotiate:
334  *****************************************************************************
335  * Negotiate authentication with a SOCKS server.
336  *****************************************************************************/
337 static int SocksNegotiate( vlc_object_t *p_obj,
338                            int fd, int i_socks_version,
339                            const char *psz_socks_user,
340                            const char *psz_socks_passwd )
341 {
342     uint8_t buffer[128+2*256];
343     int i_len;
344     bool b_auth = false;
345
346     if( i_socks_version != 5 )
347         return VLC_SUCCESS;
348
349     /* We negotiate authentication */
350
351     if( ( psz_socks_user == NULL ) && ( psz_socks_passwd == NULL ) )
352         b_auth = true;
353
354     buffer[0] = i_socks_version;    /* SOCKS version */
355     if( b_auth )
356     {
357         buffer[1] = 2;                  /* Number of methods */
358         buffer[2] = 0x00;               /* - No auth required */
359         buffer[3] = 0x02;               /* - USer/Password */
360         i_len = 4;
361     }
362     else
363     {
364         buffer[1] = 1;                  /* Number of methods */
365         buffer[2] = 0x00;               /* - No auth required */
366         i_len = 3;
367     }
368
369     if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
370         return VLC_EGENERIC;
371     if( net_Read( p_obj, fd, NULL, buffer, 2, true ) != 2 )
372         return VLC_EGENERIC;
373
374     msg_Dbg( p_obj, "socks: v=%d method=%x", buffer[0], buffer[1] );
375
376     if( buffer[1] == 0x00 )
377     {
378         msg_Dbg( p_obj, "socks: no authentication required" );
379     }
380     else if( buffer[1] == 0x02 )
381     {
382         int i_len1 = __MIN( strlen(psz_socks_user), 255 );
383         int i_len2 = __MIN( strlen(psz_socks_passwd), 255 );
384         msg_Dbg( p_obj, "socks: username/password authentication" );
385
386         /* XXX: we don't support user/pwd > 255 (truncated)*/
387         buffer[0] = i_socks_version;        /* Version */
388         buffer[1] = i_len1;                 /* User length */
389         memcpy( &buffer[2], psz_socks_user, i_len1 );
390         buffer[2+i_len1] = i_len2;          /* Password length */
391         memcpy( &buffer[2+i_len1+1], psz_socks_passwd, i_len2 );
392
393         i_len = 3 + i_len1 + i_len2;
394
395         if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
396             return VLC_EGENERIC;
397
398         if( net_Read( p_obj, fd, NULL, buffer, 2, true ) != 2 )
399             return VLC_EGENERIC;
400
401         msg_Dbg( p_obj, "socks: v=%d status=%x", buffer[0], buffer[1] );
402         if( buffer[1] != 0x00 )
403         {
404             msg_Err( p_obj, "socks: authentication rejected" );
405             return VLC_EGENERIC;
406         }
407     }
408     else
409     {
410         if( b_auth )
411             msg_Err( p_obj, "socks: unsupported authentication method %x",
412                      buffer[0] );
413         else
414             msg_Err( p_obj, "socks: authentication needed" );
415         return VLC_EGENERIC;
416     }
417
418     return VLC_SUCCESS;
419 }
420
421 /*****************************************************************************
422  * SocksHandshakeTCP:
423  *****************************************************************************
424  * Open a TCP connection using a SOCKS server and return a handle (RFC 1928)
425  *****************************************************************************/
426 static int SocksHandshakeTCP( vlc_object_t *p_obj,
427                               int fd,
428                               int i_socks_version,
429                               const char *psz_user, const char *psz_passwd,
430                               const char *psz_host, int i_port )
431 {
432     uint8_t buffer[128+2*256];
433
434     if( i_socks_version != 4 && i_socks_version != 5 )
435     {
436         msg_Warn( p_obj, "invalid socks protocol version %d", i_socks_version );
437         i_socks_version = 5;
438     }
439
440     if( i_socks_version == 5 &&
441         SocksNegotiate( p_obj, fd, i_socks_version,
442                         psz_user, psz_passwd ) )
443         return VLC_EGENERIC;
444
445     if( i_socks_version == 4 )
446     {
447         struct addrinfo hints, *p_res;
448
449         /* v4 only support ipv4 */
450         memset (&hints, 0, sizeof (hints));
451         hints.ai_family = AF_INET;
452         hints.ai_socktype = SOCK_STREAM;
453         hints.ai_protocol = IPPROTO_TCP;
454         if( vlc_getaddrinfo( p_obj, psz_host, 0, &hints, &p_res ) )
455             return VLC_EGENERIC;
456
457         buffer[0] = i_socks_version;
458         buffer[1] = 0x01;               /* CONNECT */
459         SetWBE( &buffer[2], i_port );   /* Port */
460         memcpy( &buffer[4],             /* Address */
461                 &((struct sockaddr_in *)(p_res->ai_addr))->sin_addr, 4 );
462         vlc_freeaddrinfo( p_res );
463
464         buffer[8] = 0;                  /* Empty user id */
465
466         if( net_Write( p_obj, fd, NULL, buffer, 9 ) != 9 )
467             return VLC_EGENERIC;
468         if( net_Read( p_obj, fd, NULL, buffer, 8, true ) != 8 )
469             return VLC_EGENERIC;
470
471         msg_Dbg( p_obj, "socks: v=%d cd=%d",
472                  buffer[0], buffer[1] );
473
474         if( buffer[1] != 90 )
475             return VLC_EGENERIC;
476     }
477     else if( i_socks_version == 5 )
478     {
479         int i_hlen = __MIN(strlen( psz_host ), 255);
480         int i_len;
481
482         buffer[0] = i_socks_version;    /* Version */
483         buffer[1] = 0x01;               /* Cmd: connect */
484         buffer[2] = 0x00;               /* Reserved */
485         buffer[3] = 3;                  /* ATYP: for now domainname */
486
487         buffer[4] = i_hlen;
488         memcpy( &buffer[5], psz_host, i_hlen );
489         SetWBE( &buffer[5+i_hlen], i_port );
490
491         i_len = 5 + i_hlen + 2;
492
493
494         if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
495             return VLC_EGENERIC;
496
497         /* Read the header */
498         if( net_Read( p_obj, fd, NULL, buffer, 5, true ) != 5 )
499             return VLC_EGENERIC;
500
501         msg_Dbg( p_obj, "socks: v=%d rep=%d atyp=%d",
502                  buffer[0], buffer[1], buffer[3] );
503
504         if( buffer[1] != 0x00 )
505         {
506             msg_Err( p_obj, "socks: CONNECT request failed" );
507             return VLC_EGENERIC;
508         }
509
510         /* Read the remaining bytes */
511         if( buffer[3] == 0x01 )
512             i_len = 4-1 + 2;
513         else if( buffer[3] == 0x03 )
514             i_len = buffer[4] + 2;
515         else if( buffer[3] == 0x04 )
516             i_len = 16-1+2;
517         else
518             return VLC_EGENERIC;
519
520         if( net_Read( p_obj, fd, NULL, buffer, i_len, true ) != i_len )
521             return VLC_EGENERIC;
522     }
523
524     return VLC_SUCCESS;
525 }
526
527 void net_ListenClose( int *pi_fd )
528 {
529     if( pi_fd != NULL )
530     {
531         int *pi;
532
533         for( pi = pi_fd; *pi != -1; pi++ )
534             net_Close( *pi );
535         free( pi_fd );
536     }
537 }