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