2017-12-03 12:56:21 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU 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
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2017-12-03 12:56:21 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2017-12-03 12:56:21 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2017-12-03 12:56:21 +00:00
|
|
|
* 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
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2017-12-03 12:56:21 +00:00
|
|
|
*/
|
|
|
|
|
2018-06-02 09:41:06 +00:00
|
|
|
#include <errno.h>
|
2018-08-11 09:42:30 +00:00
|
|
|
#include <linux/x86/syscall.h>
|
2018-06-02 09:41:06 +00:00
|
|
|
|
2018-08-11 09:42:30 +00:00
|
|
|
long
|
|
|
|
_sys_call (long sys_call)
|
2018-06-02 09:41:06 +00:00
|
|
|
{
|
2018-08-11 09:42:30 +00:00
|
|
|
long r;
|
2018-06-02 09:41:06 +00:00
|
|
|
asm (
|
|
|
|
"mov %1,%%eax\n\t"
|
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
|
|
|
: "=r" (r)
|
2018-06-24 07:28:23 +00:00
|
|
|
: "rm" (sys_call)
|
2018-06-03 16:54:26 +00:00
|
|
|
: "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;
|
|
|
|
}
|
|
|
|
|
2018-08-11 09:42:30 +00:00
|
|
|
long
|
|
|
|
_sys_call1 (long sys_call, long one)
|
2018-06-02 09:41:06 +00:00
|
|
|
{
|
2018-08-11 09:42:30 +00:00
|
|
|
long r;
|
2018-06-02 09:41:06 +00:00
|
|
|
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-24 07:28:23 +00:00
|
|
|
: "rm" (sys_call), "rm" (one)
|
2018-06-03 16:54:26 +00:00
|
|
|
: "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;
|
|
|
|
}
|
|
|
|
|
2018-08-11 09:42:30 +00:00
|
|
|
long
|
|
|
|
_sys_call2 (long sys_call, long one, long two)
|
2017-12-03 12:56:21 +00:00
|
|
|
{
|
2018-08-11 09:42:30 +00:00
|
|
|
long r;
|
2017-12-03 12:56:21 +00:00
|
|
|
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-24 07:28:23 +00:00
|
|
|
: "rm" (sys_call), "rm" (one), "rm" (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;
|
|
|
|
}
|
|
|
|
|
2018-08-11 09:42:30 +00:00
|
|
|
long
|
|
|
|
_sys_call3 (long sys_call, long one, long two, long three)
|
2018-04-22 09:42:47 +00:00
|
|
|
{
|
2018-08-11 09:42:30 +00:00
|
|
|
long r;
|
2018-04-22 09:42:47 +00:00
|
|
|
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-24 07:28:23 +00:00
|
|
|
: "rm" (sys_call), "rm" (one), "rm" (two), "rm" (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;
|
|
|
|
}
|
2018-08-11 09:42:30 +00:00
|
|
|
|
|
|
|
long
|
|
|
|
_sys_call4 (long sys_call, long one, long two, long three, long four)
|
|
|
|
{
|
|
|
|
long r;
|
|
|
|
asm (
|
|
|
|
"mov %2,%%ebx\n\t"
|
|
|
|
"mov %3,%%ecx\n\t"
|
|
|
|
"mov %4,%%edx\n\t"
|
|
|
|
"mov %5,%%esi\n\t"
|
|
|
|
"mov %1,%%eax\n\t"
|
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
|
|
|
: "=r" (r)
|
|
|
|
: "rm" (sys_call), "rm" (one), "rm" (two), "rm" (three), "rm" (four)
|
|
|
|
: "eax", "ebx", "ecx", "edx", "esi"
|
|
|
|
);
|
|
|
|
if (r < 0)
|
|
|
|
{
|
|
|
|
errno = -r;
|
|
|
|
r = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
errno = 0;
|
|
|
|
return r;
|
|
|
|
}
|