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