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