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