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