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