2017-05-21 20:25:02 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
* Mes --- Maxwell Equations of Software
|
|
|
|
* Copyright © 2016,2017 Jan Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2017-07-25 18:55:45 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2017-05-21 20:25:02 +00:00
|
|
|
int g_stdin = 0;
|
2017-06-11 11:01:46 +00:00
|
|
|
char **g_environment;
|
|
|
|
int _env ();
|
|
|
|
int exit ();
|
|
|
|
int main(int,char*[]);
|
|
|
|
|
|
|
|
int
|
|
|
|
_start ()
|
|
|
|
{
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____%ebp,%eax"); // mov %ebp,%eax
|
|
|
|
asm ("add____$i8,%eax !8"); // add $0x8,%eax
|
|
|
|
asm ("push___%eax"); // push %eax
|
|
|
|
|
|
|
|
asm ("mov____%ebp,%eax"); // mov %ebp,%eax
|
|
|
|
asm ("add____$i8,%eax !4"); // add $0x4,%eax
|
|
|
|
asm ("movzbl_(%eax),%eax"); // movzbl (%eax),%eax
|
|
|
|
asm ("push___%eax"); // push %eax
|
|
|
|
|
|
|
|
asm ("mov____%ebp,%eax"); // mov %ebp,%eax
|
|
|
|
asm ("add____$i8,%eax !4"); // add $0x4,%eax
|
|
|
|
|
|
|
|
asm ("movzbl_(%eax),%eax"); // movzbl (%eax),%eax
|
|
|
|
asm ("add____$i8,%eax !3"); // add $0x3,%eax
|
|
|
|
|
|
|
|
asm ("shl____$i8,%eax !0x02"); // shl $0x2,%eax
|
|
|
|
asm ("add____%ebp,%eax"); // add %ebp,%eax
|
|
|
|
asm ("push___%eax"); // push %eax
|
2017-06-11 11:01:46 +00:00
|
|
|
|
|
|
|
g_environment = _env ();
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("pop____%eax"); // pop %eax
|
2017-06-11 11:01:46 +00:00
|
|
|
int r = main ();
|
|
|
|
exit (r);
|
|
|
|
}
|
|
|
|
|
|
|
|
char **
|
|
|
|
_env (char **e)
|
|
|
|
{
|
|
|
|
return e;
|
|
|
|
}
|
2017-05-21 20:25:02 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
exit ()
|
|
|
|
{
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____0x8(%ebp),%ebx !8"); // mov 0x8(%ebp),%ebx
|
|
|
|
|
|
|
|
asm ("mov____$i32,%eax SYS_exit"); // mov $0x1,%eax
|
|
|
|
asm ("int____$0x80"); // int $0x80
|
2017-05-21 20:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
read ()
|
|
|
|
{
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____0x8(%ebp),%ebx !8"); // mov 0x8(%ebp),%ebx
|
|
|
|
asm ("mov____0x8(%ebp),%ecx !12"); // mov 0x8(%ebp),%ecx
|
|
|
|
asm ("mov____0x8(%ebp),%edx !16"); // mov 0x8(%ebp),%edx
|
2017-05-21 20:25:02 +00:00
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____$i32,%eax SYS_read"); // mov $0x3,%eax
|
|
|
|
asm ("int____$0x80"); // int $0x80
|
2017-05-21 20:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
write ()
|
|
|
|
{
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____0x8(%ebp),%ebx !8"); // mov 0x8(%ebp),%ebx
|
|
|
|
asm ("mov____0x8(%ebp),%ecx !12"); // mov 0x8(%ebp),%ecx
|
|
|
|
asm ("mov____0x8(%ebp),%edx !16"); // mov 0x8(%ebp),%edx
|
2017-06-04 20:44:21 +00:00
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____$i32,%eax SYS_write"); // mov $0x4,%eax
|
|
|
|
asm ("int____$0x80"); // int $0x80
|
2017-05-21 20:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
open ()
|
|
|
|
{
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____0x8(%ebp),%ebx !8"); // mov 0x8(%ebp),%ebx
|
|
|
|
asm ("mov____0x8(%ebp),%ecx !12"); // mov 0x8(%ebp),%ecx
|
|
|
|
asm ("mov____0x8(%ebp),%edx !16"); // mov 0x8(%ebp),%edx
|
2017-05-21 20:25:02 +00:00
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____$i32,%eax SYS_open"); // mov $0x5,%eax
|
|
|
|
asm ("int____$0x80"); // int $0x80
|
2017-05-21 20:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
access ()
|
|
|
|
{
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____0x8(%ebp),%ebx !8"); // mov 0x8(%ebp),%ebx
|
|
|
|
asm ("mov____0x8(%ebp),%ecx !12"); // mov 0x8(%ebp),%ecx
|
2017-05-21 20:25:02 +00:00
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____$i32,%eax SYS_access"); // mov $0x21,%eax
|
|
|
|
asm ("int____$0x80"); // int $0x80
|
2017-05-21 20:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
brk ()
|
|
|
|
{
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____0x8(%ebp),%ebx !8"); // mov 0x8(%ebp),%ebx
|
|
|
|
|
|
|
|
asm ("mov____$i32,%eax SYS_brk"); // mov $0x2d,%eax
|
|
|
|
asm ("int____$0x80"); // int $0x80
|
2017-05-21 20:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fsync ()
|
|
|
|
{
|
2017-07-02 14:25:14 +00:00
|
|
|
asm ("mov____0x8(%ebp),%ebx !8"); // mov 0x8(%ebp),%ebx
|
|
|
|
|
|
|
|
asm ("mov____$i32,%eax SYS_fsync"); // mov $0x7c,%eax
|
|
|
|
asm ("int____$0x80"); // int $0x80
|
2017-05-21 20:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
strlen (char const* s)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
while (s[i]) i++;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
eputs (char const* s)
|
|
|
|
{
|
|
|
|
int i = strlen (s);
|
|
|
|
write (2, s, i);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fputs (char const* s, int fd)
|
|
|
|
{
|
|
|
|
int i = strlen (s);
|
|
|
|
write (fd, s, i);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
puts (char const* s)
|
|
|
|
{
|
|
|
|
int i = strlen (s);
|
|
|
|
write (1, s, i);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
putchar (int c)
|
|
|
|
{
|
|
|
|
write (1, (char*)&c, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fputc (int c, int fd)
|
|
|
|
{
|
|
|
|
write (fd, (char*)&c, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
assert_fail (char* s)
|
|
|
|
{
|
|
|
|
eputs ("assert fail: ");
|
|
|
|
eputs (s);
|
|
|
|
eputs ("\n");
|
|
|
|
//*((int*)0) = 0;
|
|
|
|
char *fail = s;
|
|
|
|
fail = 0;
|
|
|
|
*fail = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ungetc_char = -1;
|
|
|
|
char ungetc_buf[2];
|
2017-07-02 14:25:14 +00:00
|
|
|
|
2017-05-21 20:25:02 +00:00
|
|
|
int
|
|
|
|
getchar ()
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
int i;
|
|
|
|
if (ungetc_char == -1)
|
|
|
|
{
|
|
|
|
int r = read (g_stdin, &c, 1);
|
|
|
|
if (r < 1) return -1;
|
|
|
|
i = c;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//FIXME
|
|
|
|
//i = ungetc_buf[ungetc_char--];
|
|
|
|
i = ungetc_buf[ungetc_char];
|
|
|
|
//ungetc_char--;
|
|
|
|
ungetc_char = ungetc_char - 1;
|
|
|
|
}
|
|
|
|
if (i < 0) i += 256;
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2017-07-30 12:28:19 +00:00
|
|
|
int
|
|
|
|
fgetc (int fd)
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
int r = read (fd, &c, 1);
|
|
|
|
return c == 1 ? c : (-1);
|
|
|
|
}
|
|
|
|
|
2017-05-21 20:25:02 +00:00
|
|
|
//#define assert(x) ((x) ? (void)0 : assert_fail (#x))
|
|
|
|
int
|
|
|
|
ungetc (int c, int fd)
|
|
|
|
{
|
|
|
|
//FIXME
|
|
|
|
//assert (ungetc_char < 2);
|
|
|
|
//assert (ungetc_char == -1 || ungetc_char < 2);
|
|
|
|
//FIXME
|
|
|
|
//ungetc_buf[++ungetc_char] = c;
|
|
|
|
ungetc_char++;
|
|
|
|
ungetc_buf[ungetc_char] = c;
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
strcmp (char const* a, char const* b)
|
|
|
|
{
|
|
|
|
while (*a && *b && *a == *b)
|
|
|
|
{
|
|
|
|
a++;b++;
|
|
|
|
}
|
|
|
|
return *a - *b;
|
|
|
|
}
|
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
|
2017-05-21 20:25:02 +00:00
|
|
|
char *
|
|
|
|
strcpy (char *dest, char const *src)
|
|
|
|
{
|
|
|
|
char *p = dest;
|
|
|
|
while (*src) *p++ = *src++;
|
|
|
|
*p = 0;
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
char itoa_buf[10];
|
|
|
|
|
|
|
|
char const*
|
|
|
|
itoa (int x)
|
|
|
|
{
|
|
|
|
//static char itoa_buf[10];
|
|
|
|
//char *p = buf+9;
|
|
|
|
char *p = itoa_buf;
|
|
|
|
p += 9;
|
|
|
|
*p-- = 0;
|
|
|
|
|
|
|
|
//int sign = x < 0; // FIXME
|
|
|
|
int sign = 0;
|
|
|
|
if (x < 0) sign = 1;
|
|
|
|
if (sign)
|
|
|
|
x = -x;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
*p-- = '0' + (x % 10);
|
|
|
|
x = x / 10;
|
|
|
|
} while (x);
|
|
|
|
|
|
|
|
if (sign && *(p + 1) != '0')
|
|
|
|
*p-- = '-';
|
|
|
|
|
|
|
|
return p+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
isdigit (char c)
|
|
|
|
{
|
|
|
|
//return (c>='0') && (c<='9');
|
|
|
|
if (c>='0' && c<='9') return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
atoi (char const *s)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
int sign = 1;
|
|
|
|
if (*s && *s == '-')
|
|
|
|
{
|
|
|
|
sign = -1;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
while (isdigit (*s))
|
|
|
|
{
|
|
|
|
i *= 10;
|
|
|
|
i += (*s - '0');
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
return i * sign;
|
|
|
|
}
|
|
|
|
|
2017-07-25 18:55:45 +00:00
|
|
|
char *g_brk = 0;
|
2017-05-21 20:25:02 +00:00
|
|
|
|
2017-07-25 18:55:45 +00:00
|
|
|
void *
|
|
|
|
malloc (size_t size)
|
2017-05-21 20:25:02 +00:00
|
|
|
{
|
2017-07-27 16:51:58 +00:00
|
|
|
if (!g_brk)
|
|
|
|
g_brk = brk (0);
|
|
|
|
if (brk (g_brk + size) == -1)
|
|
|
|
return 0;
|
2017-07-25 18:55:45 +00:00
|
|
|
char *p = g_brk;
|
|
|
|
g_brk += size;
|
2017-05-21 20:25:02 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2017-07-26 22:13:39 +00:00
|
|
|
#if !FULL_MALLOC
|
2017-07-25 18:55:45 +00:00
|
|
|
void *
|
2017-07-27 21:44:22 +00:00
|
|
|
realloc (void *p, size_t size)
|
2017-05-21 20:25:02 +00:00
|
|
|
{
|
2017-07-25 18:55:45 +00:00
|
|
|
brk (g_brk + size);
|
2017-07-26 22:13:39 +00:00
|
|
|
return g_brk;
|
2017-05-21 20:25:02 +00:00
|
|
|
}
|
2017-07-26 22:13:39 +00:00
|
|
|
#endif
|
2017-05-21 20:25:02 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
strncmp (char const* a, char const* b, int length)
|
|
|
|
{
|
|
|
|
while (*a && *b && *a == *b && --length) {a++;b++;}
|
|
|
|
return *a - *b;
|
|
|
|
}
|
|
|
|
|
2017-05-23 05:16:08 +00:00
|
|
|
char *
|
2017-05-21 20:25:02 +00:00
|
|
|
getenv (char const* s)
|
|
|
|
{
|
2017-07-25 09:11:26 +00:00
|
|
|
char **p = g_environment;
|
2017-05-21 20:25:02 +00:00
|
|
|
int length = strlen (s);
|
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
if (!strncmp (s, *p, length) && *(*p + length) == '=') return (*p + length + 1);
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2017-07-05 16:48:08 +00:00
|
|
|
vprintf (char const* format, va_list ap)
|
2017-05-21 20:25:02 +00:00
|
|
|
{
|
2017-07-09 07:24:07 +00:00
|
|
|
char const *p = format;
|
2017-05-21 20:25:02 +00:00
|
|
|
while (*p)
|
|
|
|
if (*p != '%')
|
|
|
|
putchar (*p++);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p++;
|
|
|
|
char c = *p;
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '%': {putchar (*p); break;}
|
2017-07-05 16:48:08 +00:00
|
|
|
case 'c': {char c; c = va_arg (ap, char); putchar (c); break;}
|
|
|
|
case 'd': {int d; d = va_arg (ap, int); puts (itoa (d)); break;}
|
|
|
|
case 's': {char *s; s = va_arg (ap, char *); puts (s); break;}
|
2017-07-09 07:24:07 +00:00
|
|
|
default: {putchar (*p); break;}
|
2017-05-21 20:25:02 +00:00
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
2017-07-09 07:24:07 +00:00
|
|
|
va_end (ap);
|
2017-05-21 20:25:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-07-02 14:25:14 +00:00
|
|
|
|
2017-07-05 16:48:08 +00:00
|
|
|
int
|
|
|
|
printf (char const* format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, format);
|
|
|
|
int r = vprintf (format, ap);
|
|
|
|
va_end (ap);
|
|
|
|
return r;
|
|
|
|
}
|
2017-07-09 07:24:07 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
sprintf (char *str, char const* format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, format);
|
|
|
|
char const *p = format;
|
|
|
|
while (*p)
|
|
|
|
if (*p != '%')
|
|
|
|
*str++ = *p++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p++;
|
|
|
|
char c = *p;
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '%': {*str++ = *p; break;}
|
|
|
|
case 'c': {char c; c = va_arg (ap, char); *str++ = c; break;}
|
|
|
|
case 'd': {int d; d = va_arg (ap, int); char const *s; s = itoa (d); while (*s) *str++ = *s++; break;}
|
|
|
|
case 's': {char *s; s = va_arg (ap, char *); while (*s) *str++ = *s++; break;}
|
|
|
|
default: {*str++ = *p; break;}
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
va_end (ap);
|
|
|
|
return 0;
|
|
|
|
}
|