2017-12-03 12:56:21 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
* Mes --- Maxwell Equations of Software
|
core: Support fork, waitpid, execve.
* stage0/x86.M1 (SYS_fork, SYS_waitpid, SYS_execve): New define.
* lib/linux-gcc.c (fork, waitpid, execve): New function.
* lib/linux-mes.c (fork, waitpid, execve): New function.
* lib/libc.c (wait): New function.
* include/unistd.h (fork, execve): Declare.
* include/sys/wait.h (waitpid, wait): Declare.
* module/mes/posix.mes (search-path, execlp, system*, waitpid): New function.
* src/posix.c (primitive_fork, execl): New function.
2018-05-24 17:54:42 +00:00
|
|
|
* Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2017-12-03 12:56:21 +00:00
|
|
|
*
|
|
|
|
* This file is part of Mes.
|
|
|
|
*
|
|
|
|
* Mes is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* Mes is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-06-02 09:41:06 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
int
|
2018-06-03 16:54:26 +00:00
|
|
|
_sys_call (int sys_call)
|
2018-06-02 09:41:06 +00:00
|
|
|
{
|
|
|
|
#if !__TINYC__
|
|
|
|
int r;
|
|
|
|
asm (
|
|
|
|
"mov %1,%%eax\n\t"
|
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
|
|
|
: "=r" (r)
|
2018-06-03 16:54:26 +00:00
|
|
|
: "" (sys_call)
|
|
|
|
: "eax"
|
2018-06-02 09:41:06 +00:00
|
|
|
);
|
|
|
|
if (r < 0)
|
2018-06-08 05:17:51 +00:00
|
|
|
{
|
|
|
|
errno = -r;
|
|
|
|
r = -1;
|
|
|
|
}
|
2018-06-07 05:16:43 +00:00
|
|
|
else
|
2018-06-07 05:19:01 +00:00
|
|
|
errno = 0;
|
2018-06-02 09:41:06 +00:00
|
|
|
return r;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2018-06-03 16:54:26 +00:00
|
|
|
_sys_call1 (int sys_call, int one)
|
2018-06-02 09:41:06 +00:00
|
|
|
{
|
|
|
|
#if !__TINYC__
|
|
|
|
int r;
|
|
|
|
asm (
|
|
|
|
"mov %1,%%eax\n\t"
|
2018-06-03 16:54:26 +00:00
|
|
|
"mov %2,%%ebx\n\t"
|
2017-12-03 12:56:21 +00:00
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
|
|
|
: "=r" (r)
|
2018-06-03 16:54:26 +00:00
|
|
|
: "" (sys_call), "" (one)
|
|
|
|
: "eax", "ebx"
|
2017-12-03 12:56:21 +00:00
|
|
|
);
|
2018-06-03 16:54:26 +00:00
|
|
|
if (r < 0)
|
2018-06-08 05:17:51 +00:00
|
|
|
{
|
|
|
|
errno = -r;
|
|
|
|
r = -1;
|
|
|
|
}
|
2018-06-07 05:16:43 +00:00
|
|
|
else
|
2018-06-07 05:19:01 +00:00
|
|
|
errno = 0;
|
2017-12-03 12:56:21 +00:00
|
|
|
return r;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2018-06-03 16:54:26 +00:00
|
|
|
_sys_call2 (int sys_call, int one, int two)
|
2017-12-03 12:56:21 +00:00
|
|
|
{
|
|
|
|
#if !__TINYC__
|
|
|
|
int r;
|
|
|
|
asm (
|
2018-06-03 16:54:26 +00:00
|
|
|
"mov %1,%%eax\n\t"
|
|
|
|
"mov %2,%%ebx\n\t"
|
|
|
|
"mov %3,%%ecx\n\t"
|
2017-12-03 12:56:21 +00:00
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
|
|
|
: "=r" (r)
|
2018-06-03 16:54:26 +00:00
|
|
|
: "" (sys_call), "" (one), "" (two)
|
2017-12-03 12:56:21 +00:00
|
|
|
: "eax", "ebx", "ecx"
|
|
|
|
);
|
2018-06-03 16:54:26 +00:00
|
|
|
if (r < 0)
|
2018-06-08 05:17:51 +00:00
|
|
|
{
|
|
|
|
errno = -r;
|
|
|
|
r = -1;
|
|
|
|
}
|
2018-06-07 05:16:43 +00:00
|
|
|
else
|
2018-06-07 05:19:01 +00:00
|
|
|
errno = 0;
|
2017-12-03 12:56:21 +00:00
|
|
|
return r;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-04-22 09:42:47 +00:00
|
|
|
int
|
2018-06-03 16:54:26 +00:00
|
|
|
_sys_call3 (int sys_call, int one, int two, int three)
|
2018-04-22 09:42:47 +00:00
|
|
|
{
|
|
|
|
#if !__TINYC__
|
|
|
|
int r;
|
|
|
|
asm (
|
2018-06-03 16:54:26 +00:00
|
|
|
"mov %2,%%ebx\n\t"
|
|
|
|
"mov %3,%%ecx\n\t"
|
|
|
|
"mov %4,%%edx\n\t"
|
|
|
|
"mov %1,%%eax\n\t"
|
2018-04-22 09:42:47 +00:00
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
|
|
|
: "=r" (r)
|
2018-06-03 16:54:26 +00:00
|
|
|
: "" (sys_call), "" (one), "" (two), "" (three)
|
2018-04-22 09:42:47 +00:00
|
|
|
: "eax", "ebx", "ecx", "edx"
|
|
|
|
);
|
2018-06-08 05:17:51 +00:00
|
|
|
if (r < 0)
|
|
|
|
{
|
2018-06-03 16:54:26 +00:00
|
|
|
errno = -r;
|
2018-06-08 05:17:51 +00:00
|
|
|
r = -1;
|
|
|
|
}
|
2018-06-07 05:16:43 +00:00
|
|
|
else
|
2018-06-07 05:19:01 +00:00
|
|
|
errno = 0;
|
2017-12-03 12:56:21 +00:00
|
|
|
return r;
|
|
|
|
#endif
|
|
|
|
}
|