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