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