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