]> git.sesse.net Git - vlc/blob - src/network/tcp.c
Fix the most common strerror() usages (threads, network, input) - refs #1297
[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 #include <vlc/vlc.h>
30
31 #include <errno.h>
32
33 #ifdef HAVE_FCNTL_H
34 #   include <fcntl.h>
35 #endif
36 #ifdef HAVE_SYS_TIME_H
37 #    include <sys/time.h>
38 #endif
39 #ifdef HAVE_UNISTD_H
40 #   include <unistd.h>
41 #endif
42 #ifdef HAVE_POLL
43 # include <poll.h>
44 #endif
45
46 #include <vlc_network.h>
47 #if defined (WIN32) || defined (UNDER_CE)
48 #   undef EINPROGRESS
49 #   define EINPROGRESS WSAEWOULDBLOCK
50 #   undef EINTR
51 #   define EINTR WSAEINTR
52 #   undef ETIMEDOUT
53 #   define ETIMEDOUT WSAETIMEDOUT
54 #endif
55
56 static int SocksNegociate( 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 /*****************************************************************************
66  * __net_Connect:
67  *****************************************************************************
68  * Open a network connection.
69  * @return socket handler or -1 on error.
70  *****************************************************************************/
71 int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port,
72                    int type, int proto )
73 {
74     struct addrinfo hints, *res, *ptr;
75     const char      *psz_realhost;
76     char            *psz_socks;
77     int             i_realport, i_val, i_handle = -1;
78
79     if( i_port == 0 )
80         i_port = 80; /* historical VLC thing */
81
82     memset( &hints, 0, sizeof( hints ) );
83     hints.ai_socktype = SOCK_STREAM;
84
85     psz_socks = var_CreateGetNonEmptyString( p_this, "socks" );
86     if( psz_socks != NULL )
87     {
88         char *psz = strchr( psz_socks, ':' );
89
90         if( psz )
91             *psz++ = '\0';
92
93         psz_realhost = psz_socks;
94         i_realport = ( psz != NULL ) ? atoi( psz ) : 1080;
95         hints.ai_flags &= ~AI_NUMERICHOST;
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     i_val = vlc_getaddrinfo( p_this, psz_realhost, i_realport, &hints, &res );
135     free( psz_socks );
136
137     if( i_val )
138     {
139         msg_Err( p_this, "cannot resolve %s port %d : %s", psz_realhost,
140                  i_realport, vlc_gai_strerror( i_val ) );
141         return -1;
142     }
143
144     for( ptr = res; ptr != NULL; ptr = ptr->ai_next )
145     {
146         int fd = net_Socket( p_this, ptr->ai_family, type ?: ptr->ai_socktype,
147                              proto ?: ptr->ai_protocol );
148         if( fd == -1 )
149         {
150             msg_Dbg( p_this, "socket error: %m" );
151             continue;
152         }
153
154         if( connect( fd, ptr->ai_addr, ptr->ai_addrlen ) )
155         {
156             socklen_t i_val_size = sizeof( i_val );
157             div_t d;
158             vlc_value_t timeout;
159
160             if( net_errno != EINPROGRESS )
161             {
162                 msg_Err( p_this, "connection failed: %m" );
163                 goto next_ai;
164             }
165
166             var_Create( p_this, "ipv4-timeout",
167                         VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
168             var_Get( p_this, "ipv4-timeout", &timeout );
169             if( timeout.i_int < 0 )
170             {
171                 msg_Err( p_this, "invalid negative value for ipv4-timeout" );
172                 timeout.i_int = 0;
173             }
174             d = div( timeout.i_int, 100 );
175
176             msg_Dbg( p_this, "connection in progress" );
177             for (;;)
178             {
179                 struct pollfd ufd = { .fd = fd, .events = POLLOUT };
180                 int i_ret;
181
182                 if( p_this->b_die )
183                 {
184                     msg_Dbg( p_this, "connection aborted" );
185                     net_Close( fd );
186                     vlc_freeaddrinfo( res );
187                     return -1;
188                 }
189
190                 /*
191                  * We'll wait 0.1 second if nothing happens
192                  * NOTE:
193                  * time out will be shortened if we catch a signal (EINTR)
194                  */
195                 i_ret = poll (&ufd, 1, (d.quot > 0) ? 100 : d.rem);
196                 if( i_ret == 1 )
197                     break;
198
199                 if( ( i_ret == -1 ) && ( net_errno != EINTR ) )
200                 {
201                     msg_Err( p_this, "connection polling error: %m" );
202                     goto next_ai;
203                 }
204
205                 if( d.quot <= 0 )
206                 {
207                     msg_Warn( p_this, "connection timed out" );
208                     goto next_ai;
209                 }
210
211                 d.quot--;
212             }
213
214 #if !defined( SYS_BEOS ) && !defined( UNDER_CE )
215             if( getsockopt( fd, SOL_SOCKET, SO_ERROR, (void*)&i_val,
216                             &i_val_size ) == -1 || i_val != 0 )
217             {
218                 msg_Err( p_this, "connection failed: %m" );
219                 goto next_ai;
220             }
221 #endif
222         }
223
224         i_handle = fd; /* success! */
225         break;
226
227 next_ai: /* failure */
228         net_Close( fd );
229         continue;
230     }
231
232     vlc_freeaddrinfo( res );
233
234     if( i_handle == -1 )
235         return -1;
236
237     if( psz_socks != NULL )
238     {
239         /* NOTE: psz_socks already free'd! */
240         char *psz_user = var_CreateGetNonEmptyString( p_this, "socks-user" );
241         char *psz_pwd  = var_CreateGetNonEmptyString( p_this, "socks-pwd" );
242
243         if( SocksHandshakeTCP( p_this, i_handle, 5, psz_user, psz_pwd,
244                                psz_host, i_port ) )
245         {
246             msg_Err( p_this, "SOCKS handshake failed" );
247             net_Close( i_handle );
248             i_handle = -1;
249         }
250
251         free( psz_user );
252         free( psz_pwd );
253     }
254
255     return i_handle;
256 }
257
258
259 /*****************************************************************************
260  * __net_Accept:
261  *****************************************************************************
262  * Accept a connection on a set of listening sockets and return it
263  *****************************************************************************/
264 int __net_Accept( vlc_object_t *p_this, int pi_fd[], mtime_t i_wait )
265 {
266     vlc_bool_t b_block = (i_wait < 0);
267
268     while( !p_this->b_die )
269     {
270         unsigned n = 0;
271         while (pi_fd[n] != -1)
272             n++;
273         struct pollfd ufd[n];
274
275         /* Initialize file descriptor set */
276         for (unsigned i = 0; i < n; i++)
277         {
278             ufd[i].fd = pi_fd[i];
279             ufd[i].events = POLLIN;
280             ufd[i].revents = 0;
281         }
282
283         switch (poll (ufd, n, b_block ? 500 : i_wait))
284         {
285             case -1:
286                 if (net_errno != EINTR)
287                 {
288                     msg_Err (p_this, "poll error: %m");
289                 }
290                 return -1;
291
292             case 0:
293                 if (b_block)
294                     continue;
295                 return -1;
296         }
297
298         for (unsigned i = 0; i < n; i++)
299         {
300             if (ufd[i].revents == 0)
301                 continue;
302
303             int sfd = ufd[i].fd;
304             int fd = accept (sfd, NULL, NULL);
305             if (fd == -1)
306             {
307                 msg_Err (p_this, "accept failed (%m)");
308                 continue;
309             }
310             net_SetupSocket (fd);
311
312             /*
313              * Move listening socket to the end to let the others in the
314              * set a chance next time.
315              */
316             memmove (pi_fd + i, pi_fd + i + 1, n - (i + 1));
317             pi_fd[n - 1] = sfd;
318             msg_Dbg (p_this, "accepted socket %d (from socket %d)", fd, sfd);
319             return fd;
320         }
321     }
322
323     return -1;
324 }
325
326
327 /*****************************************************************************
328  * SocksNegociate:
329  *****************************************************************************
330  * Negociate authentication with a SOCKS server.
331  *****************************************************************************/
332 static int SocksNegociate( vlc_object_t *p_obj,
333                            int fd, int i_socks_version,
334                            const char *psz_socks_user,
335                            const char *psz_socks_passwd )
336 {
337     uint8_t buffer[128+2*256];
338     int i_len;
339     vlc_bool_t b_auth = VLC_FALSE;
340
341     if( i_socks_version != 5 )
342         return VLC_SUCCESS;
343
344     /* We negociate authentication */
345
346     if( ( psz_socks_user == NULL ) && ( psz_socks_passwd == NULL ) )
347         b_auth = VLC_TRUE;
348
349     buffer[0] = i_socks_version;    /* SOCKS version */
350     if( b_auth )
351     {
352         buffer[1] = 2;                  /* Number of methods */
353         buffer[2] = 0x00;               /* - No auth required */
354         buffer[3] = 0x02;               /* - USer/Password */
355         i_len = 4;
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, VLC_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, VLC_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: authentification 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         SocksNegociate( p_obj, fd, i_socks_version,
437                         psz_user, psz_passwd ) )
438         return VLC_EGENERIC;
439
440     if( i_socks_version == 4 )
441     {
442         struct addrinfo hints, *p_res;
443
444         /* v4 only support ipv4 */
445         memset (&hints, 0, sizeof (hints));
446         hints.ai_family = AF_INET;
447         if( vlc_getaddrinfo( p_obj, psz_host, 0, &hints, &p_res ) )
448             return VLC_EGENERIC;
449
450         buffer[0] = i_socks_version;
451         buffer[1] = 0x01;               /* CONNECT */
452         SetWBE( &buffer[2], i_port );   /* Port */
453         memcpy( &buffer[4],             /* Address */
454                 &((struct sockaddr_in *)(p_res->ai_addr))->sin_addr, 4 );
455         vlc_freeaddrinfo( p_res );
456
457         buffer[8] = 0;                  /* Empty user id */
458
459         if( net_Write( p_obj, fd, NULL, buffer, 9 ) != 9 )
460             return VLC_EGENERIC;
461         if( net_Read( p_obj, fd, NULL, buffer, 8, VLC_TRUE ) != 8 )
462             return VLC_EGENERIC;
463
464         msg_Dbg( p_obj, "socks: v=%d cd=%d",
465                  buffer[0], buffer[1] );
466
467         if( buffer[1] != 90 )
468             return VLC_EGENERIC;
469     }
470     else if( i_socks_version == 5 )
471     {
472         int i_hlen = __MIN(strlen( psz_host ), 255);
473         int i_len;
474
475         buffer[0] = i_socks_version;    /* Version */
476         buffer[1] = 0x01;               /* Cmd: connect */
477         buffer[2] = 0x00;               /* Reserved */
478         buffer[3] = 3;                  /* ATYP: for now domainname */
479
480         buffer[4] = i_hlen;
481         memcpy( &buffer[5], psz_host, i_hlen );
482         SetWBE( &buffer[5+i_hlen], i_port );
483
484         i_len = 5 + i_hlen + 2;
485
486
487         if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
488             return VLC_EGENERIC;
489
490         /* Read the header */
491         if( net_Read( p_obj, fd, NULL, buffer, 5, VLC_TRUE ) != 5 )
492             return VLC_EGENERIC;
493
494         msg_Dbg( p_obj, "socks: v=%d rep=%d atyp=%d",
495                  buffer[0], buffer[1], buffer[3] );
496
497         if( buffer[1] != 0x00 )
498         {
499             msg_Err( p_obj, "socks: CONNECT request failed\n" );
500             return VLC_EGENERIC;
501         }
502
503         /* Read the remaining bytes */
504         if( buffer[3] == 0x01 )
505             i_len = 4-1 + 2;
506         else if( buffer[3] == 0x03 )
507             i_len = buffer[4] + 2;
508         else if( buffer[3] == 0x04 )
509             i_len = 16-1+2;
510         else
511             return VLC_EGENERIC;
512
513         if( net_Read( p_obj, fd, NULL, buffer, i_len, VLC_TRUE ) != i_len )
514             return VLC_EGENERIC;
515     }
516
517     return VLC_SUCCESS;
518 }
519
520 void net_ListenClose( int *pi_fd )
521 {
522     if( pi_fd != NULL )
523     {
524         int *pi;
525
526         for( pi = pi_fd; *pi != -1; pi++ )
527             net_Close( *pi );
528         free( pi_fd );
529     }
530 }