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