binfmt: exec_spawn as internal function shouldn't modify errno
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
4c680bfadc
commit
8d1a0c2761
@ -79,9 +79,8 @@
|
|||||||
* attr - The spawn attributes.
|
* attr - The spawn attributes.
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* This is an end-user function, so it follows the normal convention:
|
|
||||||
* It returns the PID of the exec'ed module. On failure, it returns
|
* It returns the PID of the exec'ed module. On failure, it returns
|
||||||
* -1 (ERROR) and sets errno appropriately.
|
* the negative errno value appropriately.
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
@ -91,7 +90,6 @@ int exec_spawn(FAR const char *filename, FAR char * const *argv,
|
|||||||
{
|
{
|
||||||
FAR struct binary_s *bin;
|
FAR struct binary_s *bin;
|
||||||
int pid;
|
int pid;
|
||||||
int errcode;
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/* Allocate the load information */
|
/* Allocate the load information */
|
||||||
@ -100,7 +98,7 @@ int exec_spawn(FAR const char *filename, FAR char * const *argv,
|
|||||||
if (!bin)
|
if (!bin)
|
||||||
{
|
{
|
||||||
berr("ERROR: Failed to allocate binary_s\n");
|
berr("ERROR: Failed to allocate binary_s\n");
|
||||||
errcode = ENOMEM;
|
ret = -ENOMEM;
|
||||||
goto errout;
|
goto errout;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -115,8 +113,7 @@ int exec_spawn(FAR const char *filename, FAR char * const *argv,
|
|||||||
ret = binfmt_copyargv(bin, argv);
|
ret = binfmt_copyargv(bin, argv);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
errcode = -ret;
|
berr("ERROR: Failed to copy argv[]: %d\n", ret);
|
||||||
berr("ERROR: Failed to copy argv[]: %d\n", errcode);
|
|
||||||
goto errout_with_bin;
|
goto errout_with_bin;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -125,8 +122,7 @@ int exec_spawn(FAR const char *filename, FAR char * const *argv,
|
|||||||
ret = load_module(bin);
|
ret = load_module(bin);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
errcode = -ret;
|
berr("ERROR: Failed to load program '%s': %d\n", filename, ret);
|
||||||
berr("ERROR: Failed to load program '%s': %d\n", filename, errcode);
|
|
||||||
goto errout_with_argv;
|
goto errout_with_argv;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -159,9 +155,9 @@ int exec_spawn(FAR const char *filename, FAR char * const *argv,
|
|||||||
pid = exec_module(bin);
|
pid = exec_module(bin);
|
||||||
if (pid < 0)
|
if (pid < 0)
|
||||||
{
|
{
|
||||||
errcode = -pid;
|
ret = pid;
|
||||||
berr("ERROR: Failed to execute program '%s': %d\n",
|
berr("ERROR: Failed to execute program '%s': %d\n",
|
||||||
filename, errcode);
|
filename, ret);
|
||||||
goto errout_with_lock;
|
goto errout_with_lock;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -197,8 +193,7 @@ errout_with_argv:
|
|||||||
errout_with_bin:
|
errout_with_bin:
|
||||||
kmm_free(bin);
|
kmm_free(bin);
|
||||||
errout:
|
errout:
|
||||||
set_errno(errcode);
|
return ret;
|
||||||
return ERROR;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
@ -265,7 +260,16 @@ errout:
|
|||||||
int exec(FAR const char *filename, FAR char * const *argv,
|
int exec(FAR const char *filename, FAR char * const *argv,
|
||||||
FAR const struct symtab_s *exports, int nexports)
|
FAR const struct symtab_s *exports, int nexports)
|
||||||
{
|
{
|
||||||
return exec_spawn(filename, argv, exports, nexports, NULL);
|
int ret;
|
||||||
|
|
||||||
|
ret = exec_spawn(filename, argv, exports, nexports, NULL);
|
||||||
|
if (ret < 0)
|
||||||
|
{
|
||||||
|
set_errno(-ret);
|
||||||
|
ret = ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* !CONFIG_BINFMT_DISABLE */
|
#endif /* !CONFIG_BINFMT_DISABLE */
|
||||||
|
@ -306,9 +306,8 @@ int exec_module(FAR const struct binary_s *bin);
|
|||||||
* nexports - The number of symbols in the exports table.
|
* nexports - The number of symbols in the exports table.
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* This is an end-user function, so it follows the normal convention:
|
|
||||||
* It returns the PID of the exec'ed module. On failure, it returns
|
* It returns the PID of the exec'ed module. On failure, it returns
|
||||||
* -1 (ERROR) and sets errno appropriately.
|
* the negative errno value appropriately.
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
@ -108,7 +108,7 @@ static int nxposix_spawn_exec(FAR pid_t *pidp, FAR const char *path,
|
|||||||
pid = exec_spawn(path, (FAR char * const *)argv, symtab, nsymbols, attr);
|
pid = exec_spawn(path, (FAR char * const *)argv, symtab, nsymbols, attr);
|
||||||
if (pid < 0)
|
if (pid < 0)
|
||||||
{
|
{
|
||||||
ret = get_errno();
|
ret = -pid;
|
||||||
serr("ERROR: exec failed: %d\n", ret);
|
serr("ERROR: exec failed: %d\n", ret);
|
||||||
goto errout;
|
goto errout;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user