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