Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
5c2c0b8b
Commit
5c2c0b8b
authored
Mar 24, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fix various error handling bugs in vlc_execve.
- Use a single pipe rather two pairs
parent
7e784b4d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
99 additions
and
98 deletions
+99
-98
src/extras/libc.c
src/extras/libc.c
+99
-98
No files found.
src/extras/libc.c
View file @
5c2c0b8b
...
@@ -25,11 +25,12 @@
...
@@ -25,11 +25,12 @@
* along with this program; if not, write to the Free Software
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <string.h>
/* strdup() */
#include <string.h>
/* strdup() */
#include <stdlib.h>
#include <stdlib.h>
#include <ctype.h>
#include <ctype.h>
#include <vlc/vlc.h>
#undef iconv_t
#undef iconv_t
#undef iconv_open
#undef iconv_open
...
@@ -49,6 +50,9 @@
...
@@ -49,6 +50,9 @@
# include <unistd.h>
# include <unistd.h>
# include <errno.h>
# include <errno.h>
# include <sys/wait.h>
# include <sys/wait.h>
# include <fcntl.h>
# include <sys/socket.h>
# include <sys/poll.h>
#endif
#endif
#if defined(WIN32) || defined(UNDER_CE)
#if defined(WIN32) || defined(UNDER_CE)
...
@@ -914,128 +918,122 @@ char **vlc_parse_cmdline( const char *psz_cmdline, int *i_args )
...
@@ -914,128 +918,122 @@ char **vlc_parse_cmdline( const char *psz_cmdline, int *i_args )
* vlc_execve: Execute an external program with a given environment,
* vlc_execve: Execute an external program with a given environment,
* wait until it finishes and return its standard output
* wait until it finishes and return its standard output
*************************************************************************/
*************************************************************************/
int
__vlc_execve
(
vlc_object_t
*
p_object
,
int
i_argc
,
char
**
ppsz_argv
,
int
__vlc_execve
(
vlc_object_t
*
p_object
,
int
i_argc
,
char
*
const
*
ppsz_argv
,
char
**
ppsz_env
,
char
*
psz_cwd
,
char
*
p_in
,
int
i_in
,
char
*
const
*
ppsz_env
,
const
char
*
psz_cwd
,
char
**
pp_data
,
int
*
pi_data
)
const
char
*
p_in
,
size_t
i_in
,
char
**
pp_data
,
size_t
*
pi_data
)
{
{
#ifdef HAVE_FORK
#ifdef HAVE_FORK
int
pi_stdin
[
2
];
# define BUFSIZE 1024
int
pi_stdout
[
2
];
int
fds
[
2
],
i_status
;
pid_t
i_child_pid
;
pipe
(
pi_stdin
);
if
(
socketpair
(
AF_LOCAL
,
SOCK_STREAM
,
0
,
fds
))
pipe
(
pi_stdout
);
if
(
(
i_child_pid
=
fork
())
==
-
1
)
{
msg_Err
(
p_object
,
"unable to fork (%s)"
,
strerror
(
errno
)
);
return
-
1
;
return
-
1
;
}
if
(
i_child_pid
==
0
)
pid_t
pid
=
-
1
;
{
if
((
fds
[
0
]
>
2
)
&&
(
fds
[
1
]
>
2
))
close
(
0
);
pid
=
fork
();
dup
(
pi_stdin
[
1
]);
close
(
pi_stdin
[
0
]);
close
(
1
);
switch
(
pid
)
dup
(
pi_stdout
[
1
]);
{
close
(
pi_stdout
[
0
]);
case
-
1
:
msg_Err
(
p_object
,
"unable to fork (%s)"
,
strerror
(
errno
));
close
(
fds
[
0
]);
close
(
fds
[
1
]);
return
-
1
;
close
(
2
);
case
0
:
/* NOTE:
* Like it or not, close can fail (and not only with EBADF)
*/
if
((
close
(
0
)
==
0
)
&&
(
close
(
1
)
==
0
)
&&
(
close
(
2
)
==
0
)
&&
(
dup
(
fds
[
1
])
==
0
)
&&
(
dup
(
fds
[
1
])
==
1
)
&&
(
open
(
"/dev/null"
,
O_RDONLY
)
==
2
)
&&
((
psz_cwd
==
NULL
)
||
(
chdir
(
psz_cwd
)
==
0
)))
execve
(
ppsz_argv
[
0
],
ppsz_argv
,
ppsz_env
);
if
(
psz_cwd
!=
NULL
)
exit
(
1
);
chdir
(
psz_cwd
);
execve
(
ppsz_argv
[
0
],
ppsz_argv
,
ppsz_env
);
exit
(
1
);
}
}
close
(
pi_stdin
[
1
]);
close
(
fds
[
1
]);
close
(
pi_stdout
[
1
]);
if
(
!
i_in
)
close
(
pi_stdin
[
0
]
);
*
pi_data
=
0
;
*
pi_data
=
0
;
if
(
*
pp_data
)
if
(
*
pp_data
)
free
(
*
pp_data
);
free
(
*
pp_data
);
*
pp_data
=
NULL
;
*
pp_data
=
NULL
;
*
pp_data
=
malloc
(
1025
);
/* +1 for \0 */
if
(
!*
pp_data
)
return
-
1
;
while
(
!
p_object
->
b_die
)
if
(
i_in
==
0
)
shutdown
(
fds
[
0
],
SHUT_WR
);
while
(
!
p_object
->
b_die
)
{
{
int
i_ret
,
i_status
;
struct
pollfd
ufd
[
1
];
fd_set
readfds
,
writefds
;
memset
(
ufd
,
0
,
sizeof
(
ufd
));
struct
timeval
tv
;
ufd
[
0
].
fd
=
fds
[
0
];
ufd
[
0
].
events
=
POLLIN
;
FD_ZERO
(
&
readfds
);
if
(
i_in
>
0
)
FD_ZERO
(
&
writefds
);
ufd
[
0
].
events
|=
POLLOUT
;
FD_SET
(
pi_stdout
[
0
],
&
readfds
);
if
(
i_in
)
FD_SET
(
pi_stdin
[
0
],
&
writefds
);
tv
.
tv_sec
=
0
;
if
(
poll
(
ufd
,
1
,
10
)
<=
0
)
tv
.
tv_usec
=
10000
;
continue
;
i_ret
=
select
(
pi_stdin
[
0
]
>
pi_stdout
[
0
]
?
pi_stdin
[
0
]
+
1
:
if
(
ufd
[
0
].
revents
&
~
POLLOUT
)
pi_stdout
[
0
]
+
1
,
&
readfds
,
&
writefds
,
NULL
,
&
tv
);
if
(
i_ret
>
0
)
{
if
(
FD_ISSET
(
pi_stdout
[
0
],
&
readfds
)
)
{
ssize_t
i_read
=
read
(
pi_stdout
[
0
],
&
(
*
pp_data
)[
*
pi_data
],
1024
);
if
(
i_read
>
0
)
{
*
pi_data
+=
i_read
;
*
pp_data
=
realloc
(
*
pp_data
,
*
pi_data
+
1025
);
}
}
if
(
FD_ISSET
(
pi_stdin
[
0
],
&
writefds
)
)
{
{
ssize_t
i_write
=
write
(
pi_stdin
[
0
],
p_in
,
__MIN
(
i_in
,
1024
)
);
char
*
ptr
=
realloc
(
*
pp_data
,
*
pi_data
+
BUFSIZE
+
1
);
if
(
ptr
==
NULL
)
break
;
/* safely abort */
if
(
i_write
>
0
)
*
pp_data
=
ptr
;
{
p_in
+=
i_write
;
i_in
-=
i_write
;
}
if
(
!
i_in
)
close
(
pi_stdin
[
0
]
);
}
}
if
(
waitpid
(
i_child_pid
,
&
i_status
,
WNOHANG
)
==
i_child_pid
)
ssize_t
val
=
read
(
fds
[
0
],
ptr
+
*
pi_data
,
BUFSIZE
);
{
switch
(
val
)
if
(
WIFEXITED
(
i_status
)
)
{
if
(
WEXITSTATUS
(
i_status
)
)
{
{
msg_Warn
(
p_object
,
case
-
1
:
"child %s returned with error code %d"
,
case
0
:
ppsz_argv
[
0
],
WEXITSTATUS
(
i_status
)
);
shutdown
(
fds
[
0
],
SHUT_RD
);
break
;
default:
*
pi_data
+=
val
;
}
}
}
}
else
if
(
ufd
[
0
].
revents
&
POLLOUT
)
{
{
if
(
WIFSIGNALED
(
i_status
)
)
ssize_t
val
=
write
(
fds
[
0
],
p_in
,
i_in
);
switch
(
val
)
{
{
msg_Warn
(
p_object
,
case
-
1
:
"child %s quit on signal %d"
,
ppsz_argv
[
0
],
case
0
:
WTERMSIG
(
i_status
)
);
i_in
=
0
;
shutdown
(
fds
[
0
],
SHUT_WR
);
break
;
default:
i_in
-=
val
;
p_in
+=
val
;
}
}
}
}
if
(
i_in
)
close
(
pi_stdin
[
0
]
);
close
(
pi_stdout
[
0
]
);
break
;
}
}
if
(
i_ret
<
0
&&
errno
!=
EINTR
)
close
(
fds
[
0
]);
while
(
waitpid
(
pid
,
&
i_status
,
0
)
==
-
1
);
if
(
WIFEXITED
(
i_status
))
{
{
msg_Warn
(
p_object
,
"select failed (%s)"
,
strerror
(
errno
)
);
i_status
=
WEXITSTATUS
(
i_status
);
if
(
i_status
)
msg_Warn
(
p_object
,
"child %s (PID %d) exited with error code %d"
,
ppsz_argv
[
0
],
(
int
)
pid
,
i_status
);
}
}
else
if
(
WIFSIGNALED
(
i_status
))
// <-- this should be redumdant a check
{
i_status
=
WTERMSIG
(
i_status
);
msg_Warn
(
p_object
,
"child %s (PID %d) exited on signal %d (%s)"
,
ppsz_argv
[
0
],
(
int
)
pid
,
i_status
,
strsignal
(
i_status
));
}
}
#elif defined( WIN32 ) && !defined( UNDER_CE )
#elif defined( WIN32 ) && !defined( UNDER_CE )
...
@@ -1210,6 +1208,9 @@ int __vlc_execve( vlc_object_t *p_object, int i_argc, char **ppsz_argv,
...
@@ -1210,6 +1208,9 @@ int __vlc_execve( vlc_object_t *p_object, int i_argc, char **ppsz_argv,
#endif
#endif
if
(
*
pp_data
==
NULL
)
return
-
1
;
(
*
pp_data
)[
*
pi_data
]
=
'\0'
;
(
*
pp_data
)[
*
pi_data
]
=
'\0'
;
return
0
;
return
0
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment