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