]> git.sesse.net Git - vlc/blob - src/extras/libc.c
seekdir, telldir: unused, remove
[vlc] / src / extras / libc.c
1 /*****************************************************************************
2  * libc.c: Extra libc function for some systems.
3  *****************************************************************************
4  * Copyright (C) 2002-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          Christophe Massiot <massiot@via.ecp.fr>
12  *          Rémi Denis-Courmont <rem à videolan.org>
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33
34 #include <ctype.h>
35
36
37 #undef iconv_t
38 #undef iconv_open
39 #undef iconv
40 #undef iconv_close
41
42 #if defined(HAVE_ICONV)
43 #   include <iconv.h>
44 #endif
45
46 #ifdef HAVE_DIRENT_H
47 #   include <dirent.h>
48 #endif
49
50 #ifdef HAVE_SIGNAL_H
51 #   include <signal.h>
52 #endif
53
54 #ifdef HAVE_FORK
55 #   include <sys/time.h>
56 #   include <unistd.h>
57 #   include <errno.h>
58 #   include <sys/wait.h>
59 #   include <fcntl.h>
60 #   include <sys/socket.h>
61 #   include <sys/poll.h>
62 #endif
63
64 #if defined(WIN32) || defined(UNDER_CE)
65 #   undef _wopendir
66 #   undef _wreaddir
67 #   undef _wclosedir
68 #   undef rewinddir
69 #   define WIN32_LEAN_AND_MEAN
70 #   include <windows.h>
71 #endif
72
73 #ifdef UNDER_CE
74 #   define strcoll strcmp
75 #endif
76
77 /*****************************************************************************
78  * getenv: just in case, but it should never be called
79  *****************************************************************************/
80 #if !defined( HAVE_GETENV )
81 char *vlc_getenv( const char *name )
82 {
83     return NULL;
84 }
85 #endif
86
87 /*****************************************************************************
88  * strdup: returns a malloc'd copy of a string
89  *****************************************************************************/
90 #if !defined( HAVE_STRDUP )
91 char *vlc_strdup( const char *string )
92 {
93     return strndup( string, strlen( string ) );
94 }
95 #endif
96
97 /*****************************************************************************
98  * strndup: returns a malloc'd copy of at most n bytes of string
99  * Does anyone know whether or not it will be present in Jaguar?
100  *****************************************************************************/
101 #if !defined( HAVE_STRNDUP )
102 char *vlc_strndup( const char *string, size_t n )
103 {
104     char *psz;
105     size_t len = strlen( string );
106
107     len = __MIN( len, n );
108     psz = (char*)malloc( len + 1 );
109     if( psz != NULL )
110     {
111         memcpy( (void*)psz, (const void*)string, len );
112         psz[ len ] = 0;
113     }
114
115     return psz;
116 }
117 #endif
118
119 /*****************************************************************************
120  * strnlen:
121  *****************************************************************************/
122 #if !defined( HAVE_STRNLEN )
123 size_t vlc_strnlen( const char *psz, size_t n )
124 {
125     const char *psz_end = memchr( psz, 0, n );
126     return psz_end ? (size_t)( psz_end - psz ) : n;
127 }
128 #endif
129
130 /*****************************************************************************
131  * strcasecmp: compare two strings ignoring case
132  *****************************************************************************/
133 #if !defined( HAVE_STRCASECMP ) && !defined( HAVE_STRICMP )
134 int vlc_strcasecmp( const char *s1, const char *s2 )
135 {
136     int c1, c2;
137     if( !s1 || !s2 ) return  -1;
138
139     while( *s1 && *s2 )
140     {
141         c1 = tolower(*s1);
142         c2 = tolower(*s2);
143
144         if( c1 != c2 ) return (c1 < c2 ? -1 : 1);
145         s1++; s2++;
146     }
147
148     if( !*s1 && !*s2 ) return 0;
149     else return (*s1 ? 1 : -1);
150 }
151 #endif
152
153 /*****************************************************************************
154  * strncasecmp: compare n chars from two strings ignoring case
155  *****************************************************************************/
156 #if !defined( HAVE_STRNCASECMP ) && !defined( HAVE_STRNICMP )
157 int vlc_strncasecmp( const char *s1, const char *s2, size_t n )
158 {
159     int c1, c2;
160     if( !s1 || !s2 ) return  -1;
161
162     while( n > 0 && *s1 && *s2 )
163     {
164         c1 = tolower(*s1);
165         c2 = tolower(*s2);
166
167         if( c1 != c2 ) return (c1 < c2 ? -1 : 1);
168         s1++; s2++; n--;
169     }
170
171     if( !n || (!*s1 && !*s2) ) return 0;
172     else return (*s1 ? 1 : -1);
173 }
174 #endif
175
176 /******************************************************************************
177  * strcasestr: find a substring (little) in another substring (big)
178  * Case sensitive. Return NULL if not found, return big if little == null
179  *****************************************************************************/
180 #if !defined( HAVE_STRCASESTR ) && !defined( HAVE_STRISTR )
181 char * vlc_strcasestr( const char *psz_big, const char *psz_little )
182 {
183     char *p_pos = (char *)psz_big;
184
185     if( !psz_big || !psz_little || !*psz_little ) return p_pos;
186  
187     while( *p_pos )
188     {
189         if( toupper( *p_pos ) == toupper( *psz_little ) )
190         {
191             char * psz_cur1 = p_pos + 1;
192             char * psz_cur2 = (char *)psz_little + 1;
193             while( *psz_cur1 && *psz_cur2 &&
194                    toupper( *psz_cur1 ) == toupper( *psz_cur2 ) )
195             {
196                 psz_cur1++;
197                 psz_cur2++;
198             }
199             if( !*psz_cur2 ) return p_pos;
200         }
201         p_pos++;
202     }
203     return NULL;
204 }
205 #endif
206
207 /*****************************************************************************
208  * vasprintf:
209  *****************************************************************************/
210 #if !defined(HAVE_VASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS)
211 int vlc_vasprintf(char **strp, const char *fmt, va_list ap)
212 {
213     /* Guess we need no more than 100 bytes. */
214     int     i_size = 100;
215     char    *p = malloc( i_size );
216     int     n;
217
218     if( p == NULL )
219     {
220         *strp = NULL;
221         return -1;
222     }
223
224     for( ;; )
225     {
226         /* Try to print in the allocated space. */
227         n = vsnprintf( p, i_size, fmt, ap );
228
229         /* If that worked, return the string. */
230         if (n > -1 && n < i_size)
231         {
232             *strp = p;
233             return strlen( p );
234         }
235         /* Else try again with more space. */
236         if (n > -1)    /* glibc 2.1 */
237         {
238            i_size = n+1; /* precisely what is needed */
239         }
240         else           /* glibc 2.0 */
241         {
242            i_size *= 2;  /* twice the old size */
243         }
244         if( (p = realloc( p, i_size ) ) == NULL)
245         {
246             *strp = NULL;
247             return -1;
248         }
249     }
250 }
251 #endif
252
253 /*****************************************************************************
254  * asprintf:
255  *****************************************************************************/
256 #if !defined(HAVE_ASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS)
257 int vlc_asprintf( char **strp, const char *fmt, ... )
258 {
259     va_list args;
260     int i_ret;
261
262     va_start( args, fmt );
263     i_ret = vasprintf( strp, fmt, args );
264     va_end( args );
265
266     return i_ret;
267 }
268 #endif
269
270 /*****************************************************************************
271  * atof: convert a string to a double.
272  *****************************************************************************/
273 #if !defined( HAVE_ATOF )
274 double vlc_atof( const char *nptr )
275 {
276     double f_result;
277     wchar_t *psz_tmp = NULL;
278     int i_len = strlen( nptr ) + 1;
279
280     psz_tmp = malloc( i_len * sizeof(wchar_t) );
281     if( !psz_tmp )
282         return NULL;
283     MultiByteToWideChar( CP_ACP, 0, nptr, -1, psz_tmp, i_len );
284     f_result = wcstod( psz_tmp, NULL );
285     free( psz_tmp );
286
287     return f_result;
288 }
289 #endif
290
291 /*****************************************************************************
292  * strtoll: convert a string to a 64 bits int.
293  *****************************************************************************/
294 #if !defined( HAVE_STRTOLL )
295 int64_t vlc_strtoll( const char *nptr, char **endptr, int base )
296 {
297     int64_t i_value = 0;
298     int sign = 1, newbase = base ? base : 10;
299
300     while( isspace(*nptr) ) nptr++;
301
302     if( *nptr == '-' )
303     {
304         sign = -1;
305         nptr++;
306     }
307
308     /* Try to detect base */
309     if( *nptr == '0' )
310     {
311         newbase = 8;
312         nptr++;
313
314         if( *nptr == 'x' )
315         {
316             newbase = 16;
317             nptr++;
318         }
319     }
320
321     if( base && newbase != base )
322     {
323         if( endptr ) *endptr = (char *)nptr;
324         return i_value;
325     }
326
327     switch( newbase )
328     {
329         case 10:
330             while( *nptr >= '0' && *nptr <= '9' )
331             {
332                 i_value *= 10;
333                 i_value += ( *nptr++ - '0' );
334             }
335             if( endptr ) *endptr = (char *)nptr;
336             break;
337
338         case 16:
339             while( (*nptr >= '0' && *nptr <= '9') ||
340                    (*nptr >= 'a' && *nptr <= 'f') ||
341                    (*nptr >= 'A' && *nptr <= 'F') )
342             {
343                 int i_valc = 0;
344                 if(*nptr >= '0' && *nptr <= '9') i_valc = *nptr - '0';
345                 else if(*nptr >= 'a' && *nptr <= 'f') i_valc = *nptr - 'a' +10;
346                 else if(*nptr >= 'A' && *nptr <= 'F') i_valc = *nptr - 'A' +10;
347                 i_value *= 16;
348                 i_value += i_valc;
349                 nptr++;
350             }
351             if( endptr ) *endptr = (char *)nptr;
352             break;
353
354         default:
355             i_value = strtol( nptr, endptr, newbase );
356             break;
357     }
358
359     return i_value * sign;
360 }
361 #endif
362
363 /*****************************************************************************
364  * atoll: convert a string to a 64 bits int.
365  *****************************************************************************/
366 #if !defined( HAVE_ATOLL )
367 int64_t vlc_atoll( const char *nptr )
368 {
369     return strtoll( nptr, (char **)NULL, 10 );
370 }
371 #endif
372
373 /*****************************************************************************
374  * lldiv: returns quotient and remainder
375  *****************************************************************************/
376 #if !defined( HAVE_LLDIV )
377 lldiv_t vlc_lldiv( long long numer, long long denom )
378 {
379     lldiv_t d;
380     d.quot = numer / denom;
381     d.rem  = numer % denom;
382     return d;
383 }
384 #endif
385
386
387 /**
388  * Copy a string to a sized buffer. The result is always nul-terminated
389  * (contrary to strncpy()).
390  *
391  * @param dest destination buffer
392  * @param src string to be copied
393  * @param len maximum number of characters to be copied plus one for the
394  * terminating nul.
395  *
396  * @return strlen(src)
397  */
398 #ifndef HAVE_STRLCPY
399 extern size_t vlc_strlcpy (char *tgt, const char *src, size_t bufsize)
400 {
401     size_t length;
402
403     for (length = 1; (length < bufsize) && *src; length++)
404         *tgt++ = *src++;
405
406     if (bufsize)
407         *tgt = '\0';
408
409     while (*src++)
410         length++;
411
412     return length - 1;
413 }
414 #endif
415
416 /*****************************************************************************
417  * vlc_*dir_wrapper: wrapper under Windows to return the list of drive letters
418  * when called with an empty argument or just '\'
419  *****************************************************************************/
420 #if defined(WIN32) && !defined(UNDER_CE)
421 #   include <assert.h>
422
423 typedef struct vlc_DIR
424 {
425     _WDIR *p_real_dir;
426     int i_drives;
427     struct _wdirent dd_dir;
428     bool b_insert_back;
429 } vlc_DIR;
430
431 void *vlc_wopendir( const wchar_t *wpath )
432 {
433     vlc_DIR *p_dir = NULL;
434     _WDIR *p_real_dir = NULL;
435
436     if ( wpath == NULL || wpath[0] == '\0'
437           || (wcscmp (wpath, L"\\") == 0) )
438     {
439         /* Special mode to list drive letters */
440         p_dir = malloc( sizeof(vlc_DIR) );
441         if( !p_dir )
442             return NULL;
443         p_dir->p_real_dir = NULL;
444         p_dir->i_drives = GetLogicalDrives();
445         return (void *)p_dir;
446     }
447
448     p_real_dir = _wopendir( wpath );
449     if ( p_real_dir == NULL )
450         return NULL;
451
452     p_dir = malloc( sizeof(vlc_DIR) );
453     if( !p_dir )
454     {
455         _wclosedir( p_real_dir );
456         return NULL;
457     }
458     p_dir->p_real_dir = p_real_dir;
459
460     assert (wpath[0]); // wpath[1] is defined
461     p_dir->b_insert_back = !wcscmp (wpath + 1, L":\\");
462     return (void *)p_dir;
463 }
464
465 struct _wdirent *vlc_wreaddir( void *_p_dir )
466 {
467     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
468     unsigned int i;
469     DWORD i_drives;
470
471     if ( p_dir->p_real_dir != NULL )
472     {
473         if ( p_dir->b_insert_back )
474         {
475             /* Adds "..", gruik! */
476             p_dir->dd_dir.d_ino = 0;
477             p_dir->dd_dir.d_reclen = 0;
478             p_dir->dd_dir.d_namlen = 2;
479             wcscpy( p_dir->dd_dir.d_name, L".." );
480             p_dir->b_insert_back = false;
481             return &p_dir->dd_dir;
482         }
483
484         return _wreaddir( p_dir->p_real_dir );
485     }
486
487     /* Drive letters mode */
488     i_drives = p_dir->i_drives;
489     if ( !i_drives )
490         return NULL; /* end */
491
492     for ( i = 0; i < sizeof(DWORD)*8; i++, i_drives >>= 1 )
493         if ( i_drives & 1 ) break;
494
495     if ( i >= 26 )
496         return NULL; /* this should not happen */
497
498     swprintf( p_dir->dd_dir.d_name, L"%c:\\", 'A' + i );
499     p_dir->dd_dir.d_namlen = wcslen(p_dir->dd_dir.d_name);
500     p_dir->i_drives &= ~(1UL << i);
501     return &p_dir->dd_dir;
502 }
503
504 int vlc_wclosedir( void *_p_dir )
505 {
506     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
507     int i_ret = 0;
508
509     if ( p_dir->p_real_dir != NULL )
510         i_ret = _wclosedir( p_dir->p_real_dir );
511
512     free( p_dir );
513     return i_ret;
514 }
515
516 void vlc_rewinddir( void *_p_dir )
517 {
518     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
519
520     if ( p_dir->p_real_dir != NULL )
521         _wrewinddir( p_dir->p_real_dir );
522 }
523 #endif
524
525 /*****************************************************************************
526  * scandir: scan a directory alpha-sorted
527  *****************************************************************************/
528 #if !defined( HAVE_SCANDIR )
529 /* FIXME: I suspect this is dead code -> utf8_scandir */
530 #ifdef WIN32
531 # undef opendir
532 # undef readdir
533 # undef closedir
534 #endif
535 int vlc_alphasort( const struct dirent **a, const struct dirent **b )
536 {
537     return strcoll( (*a)->d_name, (*b)->d_name );
538 }
539
540 int vlc_scandir( const char *name, struct dirent ***namelist,
541                     int (*filter) ( const struct dirent * ),
542                     int (*compar) ( const struct dirent **,
543                                     const struct dirent ** ) )
544 {
545     DIR            * p_dir;
546     struct dirent  * p_content;
547     struct dirent ** pp_list;
548     int              ret, size;
549
550     if( !namelist || !( p_dir = opendir( name ) ) ) return -1;
551
552     ret     = 0;
553     pp_list = NULL;
554     while( ( p_content = readdir( p_dir ) ) )
555     {
556         if( filter && !filter( p_content ) )
557         {
558             continue;
559         }
560         pp_list = realloc( pp_list, ( ret + 1 ) * sizeof( struct dirent * ) );
561         size = sizeof( struct dirent ) + strlen( p_content->d_name ) + 1;
562         pp_list[ret] = malloc( size );
563         if( pp_list[ret] )
564         {
565             memcpy( pp_list[ret], p_content, size );
566             ret++;
567         }
568         else
569         {
570             /* Continuing is useless when no more memory can be allocted,
571              * so better return what we have found.
572              */
573             ret = -1;
574             break;
575         }
576     }
577
578     closedir( p_dir );
579
580     if( compar )
581     {
582         qsort( pp_list, ret, sizeof( struct dirent * ),
583                (int (*)(const void *, const void *)) compar );
584     }
585
586     *namelist = pp_list;
587     return ret;
588 }
589 #endif
590
591 #if defined (WIN32)
592 /**
593  * gettext callbacks for plugins.
594  * LibVLC links libintl statically on Windows.
595  */
596 char *vlc_dgettext( const char *package, const char *msgid )
597 {
598     return dgettext( package, msgid );
599 }
600 #endif
601
602 /**
603  * In-tree plugins share their gettext domain with LibVLC.
604  */
605 char *vlc_gettext( const char *msgid )
606 {
607     return dgettext( PACKAGE_NAME, msgid );
608 }
609
610 /*****************************************************************************
611  * count_utf8_string: returns the number of characters in the string.
612  *****************************************************************************/
613 static int count_utf8_string( const char *psz_string )
614 {
615     int i = 0, i_count = 0;
616     while( psz_string[ i ] != 0 )
617     {
618         if( ((unsigned char *)psz_string)[ i ] <  0x80UL ) i_count++;
619         i++;
620     }
621     return i_count;
622 }
623
624 /*****************************************************************************
625  * wraptext: inserts \n at convenient places to wrap the text.
626  *           Returns the modified string in a new buffer.
627  *****************************************************************************/
628 char *vlc_wraptext( const char *psz_text, int i_line )
629 {
630     int i_len;
631     char *psz_line, *psz_new_text;
632
633     psz_line = psz_new_text = strdup( psz_text );
634
635     i_len = count_utf8_string( psz_text );
636
637     while( i_len > i_line )
638     {
639         /* Look if there is a newline somewhere. */
640         char *psz_parser = psz_line;
641         int i_count = 0;
642         while( i_count <= i_line && *psz_parser != '\n' )
643         {
644             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
645             psz_parser++;
646             i_count++;
647         }
648         if( *psz_parser == '\n' )
649         {
650             i_len -= (i_count + 1);
651             psz_line = psz_parser + 1;
652             continue;
653         }
654
655         /* Find the furthest space. */
656         while( psz_parser > psz_line && *psz_parser != ' ' )
657         {
658             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser--;
659             psz_parser--;
660             i_count--;
661         }
662         if( *psz_parser == ' ' )
663         {
664             *psz_parser = '\n';
665             i_len -= (i_count + 1);
666             psz_line = psz_parser + 1;
667             continue;
668         }
669
670         /* Wrapping has failed. Find the first space or newline */
671         while( i_count < i_len && *psz_parser != ' ' && *psz_parser != '\n' )
672         {
673             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
674             psz_parser++;
675             i_count++;
676         }
677         if( i_count < i_len ) *psz_parser = '\n';
678         i_len -= (i_count + 1);
679         psz_line = psz_parser + 1;
680     }
681
682     return psz_new_text;
683 }
684
685 /*****************************************************************************
686  * iconv wrapper
687  *****************************************************************************/
688 vlc_iconv_t vlc_iconv_open( const char *tocode, const char *fromcode )
689 {
690 #if defined(HAVE_ICONV)
691     return iconv_open( tocode, fromcode );
692 #else
693     return NULL;
694 #endif
695 }
696
697 size_t vlc_iconv( vlc_iconv_t cd, const char **inbuf, size_t *inbytesleft,
698                   char **outbuf, size_t *outbytesleft )
699 {
700 #if defined(HAVE_ICONV)
701     return iconv( cd, (ICONV_CONST char **)inbuf, inbytesleft,
702                   outbuf, outbytesleft );
703 #else
704     int i_bytes;
705
706     if (inbytesleft == NULL || outbytesleft == NULL)
707     {
708         return 0;
709     }
710
711     i_bytes = __MIN(*inbytesleft, *outbytesleft);
712     if( !inbuf || !outbuf || !i_bytes ) return (size_t)(-1);
713     memcpy( *outbuf, *inbuf, i_bytes );
714     inbuf += i_bytes;
715     outbuf += i_bytes;
716     inbytesleft -= i_bytes;
717     outbytesleft -= i_bytes;
718     return i_bytes;
719 #endif
720 }
721
722 int vlc_iconv_close( vlc_iconv_t cd )
723 {
724 #if defined(HAVE_ICONV)
725     return iconv_close( cd );
726 #else
727     return 0;
728 #endif
729 }
730
731 /*****************************************************************************
732  * reduce a fraction
733  *   (adapted from libavcodec, author Michael Niedermayer <michaelni@gmx.at>)
734  *****************************************************************************/
735 bool vlc_ureduce( unsigned *pi_dst_nom, unsigned *pi_dst_den,
736                         uint64_t i_nom, uint64_t i_den, uint64_t i_max )
737 {
738     bool b_exact = 1;
739     uint64_t i_gcd;
740
741     if( i_den == 0 )
742     {
743         *pi_dst_nom = 0;
744         *pi_dst_den = 1;
745         return 1;
746     }
747
748     i_gcd = GCD( i_nom, i_den );
749     i_nom /= i_gcd;
750     i_den /= i_gcd;
751
752     if( i_max == 0 ) i_max = INT64_C(0xFFFFFFFF);
753
754     if( i_nom > i_max || i_den > i_max )
755     {
756         uint64_t i_a0_num = 0, i_a0_den = 1, i_a1_num = 1, i_a1_den = 0;
757         b_exact = 0;
758
759         for( ; ; )
760         {
761             uint64_t i_x = i_nom / i_den;
762             uint64_t i_a2n = i_x * i_a1_num + i_a0_num;
763             uint64_t i_a2d = i_x * i_a1_den + i_a0_den;
764
765             if( i_a2n > i_max || i_a2d > i_max ) break;
766
767             i_nom %= i_den;
768
769             i_a0_num = i_a1_num; i_a0_den = i_a1_den;
770             i_a1_num = i_a2n; i_a1_den = i_a2d;
771             if( i_nom == 0 ) break;
772             i_x = i_nom; i_nom = i_den; i_den = i_x;
773         }
774         i_nom = i_a1_num;
775         i_den = i_a1_den;
776     }
777
778     *pi_dst_nom = i_nom;
779     *pi_dst_den = i_den;
780
781     return b_exact;
782 }
783
784 /*************************************************************************
785  * vlc_execve: Execute an external program with a given environment,
786  * wait until it finishes and return its standard output
787  *************************************************************************/
788 int __vlc_execve( vlc_object_t *p_object, int i_argc, char *const *ppsz_argv,
789                   char *const *ppsz_env, const char *psz_cwd,
790                   const char *p_in, size_t i_in,
791                   char **pp_data, size_t *pi_data )
792 {
793     (void)i_argc; // <-- hmph
794 #ifdef HAVE_FORK
795 # define BUFSIZE 1024
796     int fds[2], i_status;
797
798     if (socketpair (AF_LOCAL, SOCK_STREAM, 0, fds))
799         return -1;
800
801     pid_t pid = -1;
802     if ((fds[0] > 2) && (fds[1] > 2))
803         pid = fork ();
804
805     switch (pid)
806     {
807         case -1:
808             msg_Err (p_object, "unable to fork (%m)");
809             close (fds[0]);
810             close (fds[1]);
811             return -1;
812
813         case 0:
814         {
815             sigset_t set;
816             sigemptyset (&set);
817             pthread_sigmask (SIG_SETMASK, &set, NULL);
818
819             /* NOTE:
820              * Like it or not, close can fail (and not only with EBADF)
821              */
822             if ((close (0) == 0) && (close (1) == 0) && (close (2) == 0)
823              && (dup (fds[1]) == 0) && (dup (fds[1]) == 1)
824              && (open ("/dev/null", O_RDONLY) == 2)
825              && ((psz_cwd == NULL) || (chdir (psz_cwd) == 0)))
826                 execve (ppsz_argv[0], ppsz_argv, ppsz_env);
827
828             exit (EXIT_FAILURE);
829         }
830     }
831
832     close (fds[1]);
833
834     *pi_data = 0;
835     if (*pp_data)
836         free (*pp_data);
837     *pp_data = NULL;
838
839     if (i_in == 0)
840         shutdown (fds[0], SHUT_WR);
841
842     while (!p_object->b_die)
843     {
844         struct pollfd ufd[1];
845         memset (ufd, 0, sizeof (ufd));
846         ufd[0].fd = fds[0];
847         ufd[0].events = POLLIN;
848
849         if (i_in > 0)
850             ufd[0].events |= POLLOUT;
851
852         if (poll (ufd, 1, 10) <= 0)
853             continue;
854
855         if (ufd[0].revents & ~POLLOUT)
856         {
857             char *ptr = realloc (*pp_data, *pi_data + BUFSIZE + 1);
858             if (ptr == NULL)
859                 break; /* safely abort */
860
861             *pp_data = ptr;
862
863             ssize_t val = read (fds[0], ptr + *pi_data, BUFSIZE);
864             switch (val)
865             {
866                 case -1:
867                 case 0:
868                     shutdown (fds[0], SHUT_RD);
869                     break;
870
871                 default:
872                     *pi_data += val;
873             }
874         }
875
876         if (ufd[0].revents & POLLOUT)
877         {
878             ssize_t val = write (fds[0], p_in, i_in);
879             switch (val)
880             {
881                 case -1:
882                 case 0:
883                     i_in = 0;
884                     shutdown (fds[0], SHUT_WR);
885                     break;
886
887                 default:
888                     i_in -= val;
889                     p_in += val;
890             }
891         }
892     }
893
894     close (fds[0]);
895
896     while (waitpid (pid, &i_status, 0) == -1);
897
898     if (WIFEXITED (i_status))
899     {
900         i_status = WEXITSTATUS (i_status);
901         if (i_status)
902             msg_Warn (p_object,  "child %s (PID %d) exited with error code %d",
903                       ppsz_argv[0], (int)pid, i_status);
904     }
905     else
906     if (WIFSIGNALED (i_status)) // <-- this should be redumdant a check
907     {
908         i_status = WTERMSIG (i_status);
909         msg_Warn (p_object, "child %s (PID %d) exited on signal %d (%s)",
910                   ppsz_argv[0], (int)pid, i_status, strsignal (i_status));
911     }
912
913 #elif defined( WIN32 ) && !defined( UNDER_CE )
914     SECURITY_ATTRIBUTES saAttr;
915     PROCESS_INFORMATION piProcInfo;
916     STARTUPINFO siStartInfo;
917     BOOL bFuncRetn = FALSE;
918     HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr;
919     DWORD i_status;
920     char *psz_cmd = NULL, *p_env = NULL, *p = NULL;
921     char **ppsz_parser;
922     int i_size;
923
924     /* Set the bInheritHandle flag so pipe handles are inherited. */
925     saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
926     saAttr.bInheritHandle = TRUE;
927     saAttr.lpSecurityDescriptor = NULL;
928
929     /* Create a pipe for the child process's STDOUT. */
930     if ( !CreatePipe( &hChildStdoutRd, &hChildStdoutWr, &saAttr, 0 ) )
931     {
932         msg_Err( p_object, "stdout pipe creation failed" );
933         return -1;
934     }
935
936     /* Ensure the read handle to the pipe for STDOUT is not inherited. */
937     SetHandleInformation( hChildStdoutRd, HANDLE_FLAG_INHERIT, 0 );
938
939     /* Create a pipe for the child process's STDIN. */
940     if ( !CreatePipe( &hChildStdinRd, &hChildStdinWr, &saAttr, 0 ) )
941     {
942         msg_Err( p_object, "stdin pipe creation failed" );
943         return -1;
944     }
945
946     /* Ensure the write handle to the pipe for STDIN is not inherited. */
947     SetHandleInformation( hChildStdinWr, HANDLE_FLAG_INHERIT, 0 );
948
949     /* Set up members of the PROCESS_INFORMATION structure. */
950     ZeroMemory( &piProcInfo, sizeof(PROCESS_INFORMATION) );
951
952     /* Set up members of the STARTUPINFO structure. */
953     ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) );
954     siStartInfo.cb = sizeof(STARTUPINFO);
955     siStartInfo.hStdError = hChildStdoutWr;
956     siStartInfo.hStdOutput = hChildStdoutWr;
957     siStartInfo.hStdInput = hChildStdinRd;
958     siStartInfo.wShowWindow = SW_HIDE;
959     siStartInfo.dwFlags |= STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
960
961     /* Set up the command line. */
962     psz_cmd = malloc(32768);
963     if( !psz_cmd )
964         return -1;
965     psz_cmd[0] = '\0';
966     i_size = 32768;
967     ppsz_parser = &ppsz_argv[0];
968     while ( ppsz_parser[0] != NULL && i_size > 0 )
969     {
970         /* Protect the last argument with quotes ; the other arguments
971          * are supposed to be already protected because they have been
972          * passed as a command-line option. */
973         if ( ppsz_parser[1] == NULL )
974         {
975             strncat( psz_cmd, "\"", i_size );
976             i_size--;
977         }
978         strncat( psz_cmd, *ppsz_parser, i_size );
979         i_size -= strlen( *ppsz_parser );
980         if ( ppsz_parser[1] == NULL )
981         {
982             strncat( psz_cmd, "\"", i_size );
983             i_size--;
984         }
985         strncat( psz_cmd, " ", i_size );
986         i_size--;
987         ppsz_parser++;
988     }
989
990     /* Set up the environment. */
991     p = p_env = malloc(32768);
992     if( !p )
993     {
994         free( psz_cmd );
995         return -1;
996     }
997
998     i_size = 32768;
999     ppsz_parser = &ppsz_env[0];
1000     while ( *ppsz_parser != NULL && i_size > 0 )
1001     {
1002         memcpy( p, *ppsz_parser,
1003                 __MIN((int)(strlen(*ppsz_parser) + 1), i_size) );
1004         p += strlen(*ppsz_parser) + 1;
1005         i_size -= strlen(*ppsz_parser) + 1;
1006         ppsz_parser++;
1007     }
1008     *p = '\0';
1009
1010     /* Create the child process. */
1011     bFuncRetn = CreateProcess( NULL,
1012           psz_cmd,       // command line
1013           NULL,          // process security attributes
1014           NULL,          // primary thread security attributes
1015           TRUE,          // handles are inherited
1016           0,             // creation flags
1017           p_env,
1018           psz_cwd,
1019           &siStartInfo,  // STARTUPINFO pointer
1020           &piProcInfo ); // receives PROCESS_INFORMATION
1021
1022     free( psz_cmd );
1023     free( p_env );
1024
1025     if ( bFuncRetn == 0 )
1026     {
1027         msg_Err( p_object, "child creation failed" );
1028         return -1;
1029     }
1030
1031     /* Read from a file and write its contents to a pipe. */
1032     while ( i_in > 0 && !p_object->b_die )
1033     {
1034         DWORD i_written;
1035         if ( !WriteFile( hChildStdinWr, p_in, i_in, &i_written, NULL ) )
1036             break;
1037         i_in -= i_written;
1038         p_in += i_written;
1039     }
1040
1041     /* Close the pipe handle so the child process stops reading. */
1042     CloseHandle(hChildStdinWr);
1043
1044     /* Close the write end of the pipe before reading from the
1045      * read end of the pipe. */
1046     CloseHandle(hChildStdoutWr);
1047
1048     /* Read output from the child process. */
1049     *pi_data = 0;
1050     if( *pp_data )
1051         free( pp_data );
1052     *pp_data = NULL;
1053     *pp_data = malloc( 1025 );  /* +1 for \0 */
1054
1055     while ( !p_object->b_die )
1056     {
1057         DWORD i_read;
1058         if ( !ReadFile( hChildStdoutRd, &(*pp_data)[*pi_data], 1024, &i_read,
1059                         NULL )
1060               || i_read == 0 )
1061             break;
1062         *pi_data += i_read;
1063         *pp_data = realloc( *pp_data, *pi_data + 1025 );
1064     }
1065
1066     while ( !p_object->b_die
1067              && !GetExitCodeProcess( piProcInfo.hProcess, &i_status )
1068              && i_status != STILL_ACTIVE )
1069         msleep( 10000 );
1070
1071     CloseHandle(piProcInfo.hProcess);
1072     CloseHandle(piProcInfo.hThread);
1073
1074     if ( i_status )
1075         msg_Warn( p_object,
1076                   "child %s returned with error code %ld",
1077                   ppsz_argv[0], i_status );
1078
1079 #else
1080     msg_Err( p_object, "vlc_execve called but no implementation is available" );
1081     return -1;
1082
1083 #endif
1084
1085     if (*pp_data == NULL)
1086         return -1;
1087
1088     (*pp_data)[*pi_data] = '\0';
1089     return 0;
1090 }