urbit/v/main.c

343 lines
7.3 KiB
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* v/main.c
**
** This file is in the public domain.
*/
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <unistd.h>
#include <setjmp.h>
#include <signal.h>
#include <gmp.h>
#include <stdint.h>
#include <uv.h>
#include <sigsegv.h>
#include <curses.h>
#include <termios.h>
#include <term.h>
#include <dirent.h>
#define U3_GLOBAL
2013-09-29 00:21:18 +04:00
#define C3_GLOBAL
#include "all.h"
#include "v/vere.h"
/* _main_readw(): parse a word from a string.
*/
2014-11-06 06:10:22 +03:00
static u3_noun
_main_readw(const c3_c* str_c, c3_w max_w, c3_w* out_w)
{
c3_c* end_c;
c3_w par_w = strtoul(str_c, &end_c, 0);
if ( *str_c != '\0' && *end_c == '\0' && par_w < max_w ) {
*out_w = par_w;
2014-11-05 04:18:47 +03:00
return c3y;
}
2014-11-05 04:18:47 +03:00
else return c3n;
}
2014-11-08 01:54:59 +03:00
static c3_c hostbuf[2048]; // kill me
2013-09-29 00:21:18 +04:00
/* _main_getopt(): extract option map from command line.
*/
2014-11-06 06:10:22 +03:00
static u3_noun
2013-09-29 00:21:18 +04:00
_main_getopt(c3_i argc, c3_c** argv)
{
c3_i ch_i;
c3_w arg_w;
2013-09-29 00:21:18 +04:00
2014-11-05 04:18:47 +03:00
u3_Host.ops_u.abo = c3n;
u3_Host.ops_u.bat = c3n;
u3_Host.ops_u.gab = c3n;
u3_Host.ops_u.loh = c3n;
u3_Host.ops_u.dem = c3n;
u3_Host.ops_u.fog = c3n;
u3_Host.ops_u.fak = c3n;
u3_Host.ops_u.pro = c3n;
u3_Host.ops_u.veb = c3y;
u3_Host.ops_u.nuu = c3n;
u3_Host.ops_u.mem = c3n;
2014-09-11 04:01:32 +04:00
u3_Host.ops_u.kno_w = DefaultKernel;
2013-09-29 00:21:18 +04:00
2014-07-30 21:53:30 +04:00
while ( (ch_i = getopt(argc, argv, "I:X:f:k:l:n:p:r:LabcdgqvFM")) != -1 ) {
2013-09-29 00:21:18 +04:00
switch ( ch_i ) {
2014-07-30 21:53:30 +04:00
case 'M': {
2014-11-05 04:18:47 +03:00
u3_Host.ops_u.mem = c3y;
2014-07-30 21:53:30 +04:00
break;
}
2014-01-15 23:59:08 +04:00
case 'I': {
2014-09-11 04:01:32 +04:00
u3_Host.ops_u.imp_c = strdup(optarg);
2014-01-15 23:59:08 +04:00
break;
}
case 'X': {
if ( 0 != strcmp("wtf", optarg) ) {
2014-11-05 04:18:47 +03:00
return c3n;
} else u3_Host.ops_u.fog = c3y;
break;
}
2014-01-15 23:59:08 +04:00
case 'f': {
2014-11-05 04:18:47 +03:00
if ( c3n == _main_readw(optarg, 100, &u3_Host.ops_u.fuz_w) ) {
return c3n;
2013-09-29 00:21:18 +04:00
}
break;
}
2014-01-15 23:59:08 +04:00
case 'k': {
2014-11-05 04:18:47 +03:00
if ( c3n == _main_readw(optarg, 256, &u3_Host.ops_u.kno_w) ) {
return c3n;
}
break;
}
case 'l': {
2014-11-05 04:18:47 +03:00
if ( c3n == _main_readw(optarg, 65536, &arg_w) ) {
return c3n;
2014-09-11 04:01:32 +04:00
} else u3_Host.ops_u.rop_s = arg_w;
2014-01-17 22:12:42 +04:00
break;
}
2014-01-17 21:42:47 +04:00
case 'n': {
2014-09-11 04:01:32 +04:00
u3_Host.ops_u.nam_c = strdup(optarg);
2014-01-17 21:42:47 +04:00
break;
}
2014-01-15 21:16:50 +04:00
case 'p': {
2014-11-05 04:18:47 +03:00
if ( c3n == _main_readw(optarg, 65536, &arg_w) ) {
return c3n;
2014-09-11 04:01:32 +04:00
} else u3_Host.ops_u.por_s = arg_w;
2014-01-15 21:16:50 +04:00
break;
}
case 'r': {
2014-09-11 04:01:32 +04:00
u3_Host.ops_u.raf_c = strdup(optarg);
break;
}
2014-11-05 04:18:47 +03:00
case 'L': { u3_Host.ops_u.loh = c3y; break; }
case 'F': {
2014-11-05 04:18:47 +03:00
u3_Host.ops_u.loh = c3y;
u3_Host.ops_u.fak = c3y;
break;
}
2014-11-05 04:18:47 +03:00
case 'a': { u3_Host.ops_u.abo = c3y; break; }
case 'b': { u3_Host.ops_u.bat = c3y; break; }
case 'c': { u3_Host.ops_u.nuu = c3y; break; }
case 'd': { u3_Host.ops_u.dem = c3y; break; }
case 'g': { u3_Host.ops_u.gab = c3y; break; }
case 'q': { u3_Host.ops_u.veb = c3n; break; }
case 'v': { u3_Host.ops_u.veb = c3y; break; }
2013-09-29 00:21:18 +04:00
case '?': default: {
2014-11-05 04:18:47 +03:00
return c3n;
2013-09-29 00:21:18 +04:00
}
}
}
2014-09-11 04:01:32 +04:00
if ( u3_Host.ops_u.rop_s == 0 && u3_Host.ops_u.raf_c != 0 ) {
fprintf(stderr, "The -r flag requires -l.\n");
2014-11-05 04:18:47 +03:00
return c3n;
}
2014-11-05 04:18:47 +03:00
if ( c3y == u3_Host.ops_u.bat ) {
u3_Host.ops_u.dem = c3y;
u3_Host.ops_u.nuu = c3y;
2014-01-16 05:41:30 +04:00
}
2013-09-29 00:21:18 +04:00
2014-09-11 04:01:32 +04:00
if ( u3_Host.ops_u.nam_c == 0 ) {
u3_Host.ops_u.nam_c = getenv("HOSTNAME");
if ( u3_Host.ops_u.nam_c == 0 ) {
2014-01-17 21:42:47 +04:00
c3_w len_w = sysconf(_SC_HOST_NAME_MAX) + 1;
2014-11-08 01:54:59 +03:00
u3_Host.ops_u.nam_c = hostbuf;
2014-09-11 04:01:32 +04:00
if ( 0 != gethostname(u3_Host.ops_u.nam_c, len_w) ) {
2014-01-17 21:42:47 +04:00
perror("gethostname");
exit(1);
}
}
}
2014-04-16 07:28:22 +04:00
2013-09-29 00:21:18 +04:00
if ( argc != (optind + 1) ) {
2014-11-05 04:18:47 +03:00
return c3n;
} else {
2013-09-29 00:21:18 +04:00
{
c3_c* ash_c;
if ( (ash_c = strrchr(argv[optind], '/')) && (ash_c[1] == 0) ) {
*ash_c = 0;
}
}
2014-11-16 04:10:15 +03:00
u3_Host.dir_c = strdup(argv[optind]);
2014-11-05 04:18:47 +03:00
return c3y;
2013-09-29 00:21:18 +04:00
}
}
2014-09-11 04:01:32 +04:00
/* u3_ve_usage(): print usage and exit.
2013-09-29 00:21:18 +04:00
*/
static void
2014-09-11 04:01:32 +04:00
u3_ve_usage(c3_i argc, c3_c** argv)
2013-09-29 00:21:18 +04:00
{
2014-03-13 00:34:26 +04:00
fprintf(stderr, "%s: usage: [-v] [-k stage] [-p ames_port] computer\n",
argv[0]);
2013-09-29 00:21:18 +04:00
exit(1);
}
2014-09-11 04:01:32 +04:00
#if 0
/* u3_ve_panic(): panic and exit.
2013-09-29 00:21:18 +04:00
*/
static void
2014-09-11 04:01:32 +04:00
u3_ve_panic(c3_i argc, c3_c** argv)
2013-09-29 00:21:18 +04:00
{
fprintf(stderr, "%s: gross system failure\n", argv[0]);
exit(1);
}
2014-09-11 04:01:32 +04:00
#endif
2013-09-29 00:21:18 +04:00
2014-09-11 04:01:32 +04:00
/* u3_ve_sysopt(): apply option map to system state.
2013-09-29 00:21:18 +04:00
*/
static void
2014-09-11 04:01:32 +04:00
u3_ve_sysopt()
2013-09-29 00:21:18 +04:00
{
2014-11-16 04:10:15 +03:00
u3_Local = strdup(u3_Host.dir_c);
u3_System = U3_LIB;
2014-09-11 04:01:32 +04:00
u3_Flag_Abort = u3_Host.ops_u.abo;
u3_Flag_Garbage = u3_Host.ops_u.gab;
u3_Flag_Profile = u3_Host.ops_u.pro;
u3_Flag_Verbose = u3_Host.ops_u.veb;
2013-09-29 00:21:18 +04:00
}
2014-09-11 04:01:32 +04:00
#if 0
2013-09-29 00:21:18 +04:00
static jmp_buf Signal_buf;
#ifndef SIGSTKSZ
# define SIGSTKSZ 16384
#endif
static uint8_t Sigstk[SIGSTKSZ];
volatile enum { sig_none, sig_overflow, sig_interrupt } Sigcause;
static void _main_cont(void *arg1, void *arg2, void *arg3)
{
(void)(arg1);
(void)(arg2);
(void)(arg3);
siglongjmp(Signal_buf, 1);
}
2013-09-29 00:21:18 +04:00
static void
overflow_handler(int emergency, stackoverflow_context_t scp)
{
if ( 1 == emergency ) {
write(2, "stack emergency\n", strlen("stack emergency" + 2));
exit(1);
} else {
Sigcause = sig_overflow;
sigsegv_leave_handler(_main_cont, NULL, NULL, NULL);
2013-09-29 00:21:18 +04:00
}
}
2014-10-10 05:27:02 +04:00
// Install signal handlers and set buffers.
//
// Note that we use the sigmask-restoring variant. Essentially, when
// we get a signal, we force the system back into the just-booted state.
// If anything goes wrong during boot (above), it's curtains.
{
if ( 0 != sigsetjmp(Signal_buf, 1) ) {
switch ( Sigcause ) {
case sig_overflow: printf("[stack overflow]\r\n"); break;
case sig_interrupt: printf("[interrupt]\r\n"); break;
default: printf("[signal error!]\r\n"); break;
}
Sigcause = sig_none;
signal(SIGINT, SIG_DFL);
stackoverflow_deinstall_handler();
// Print the trace, do a GC, etc.
//
// This is half-assed at present, so we exit.
//
u3_lo_sway(0, u3k(u3_wire_tax(u3_Wire)));
u3_lo_bail(u3A);
exit(1);
}
if ( -1 == stackoverflow_install_handler
(overflow_handler, Sigstk, SIGSTKSZ) )
{
fprintf(stderr, "overflow_handler: install failed\n");
exit(1);
}
signal(SIGINT, interrupt_handler);
signal(SIGIO, SIG_IGN);
}
2013-09-29 00:21:18 +04:00
static void
interrupt_handler(int x)
{
Sigcause = sig_interrupt;
longjmp(Signal_buf, 1);
}
2014-09-11 04:01:32 +04:00
#endif
2013-09-29 00:21:18 +04:00
2014-10-11 09:32:58 +04:00
#define GRAB
2014-10-10 05:27:02 +04:00
2013-09-29 00:21:18 +04:00
c3_i
main(c3_i argc,
c3_c** argv)
{
// Parse options.
//
2014-11-05 04:18:47 +03:00
if ( c3n == _main_getopt(argc, argv) ) {
2014-09-11 04:01:32 +04:00
u3_ve_usage(argc, argv);
2013-09-29 00:21:18 +04:00
return 1;
}
2014-09-11 04:01:32 +04:00
u3_ve_sysopt();
2013-09-29 00:21:18 +04:00
2014-06-10 01:56:56 +04:00
printf("~\n");
printf("welcome.\n");
2014-11-16 04:10:15 +03:00
printf("vere: urbit home is %s\n", u3_Host.dir_c);
2014-09-11 04:01:32 +04:00
printf("vere: hostname is %s\n", u3_Host.ops_u.nam_c);
2014-11-05 04:18:47 +03:00
if ( c3y == u3_Host.ops_u.dem && c3n == u3_Host.ops_u.bat ) {
2014-09-24 11:38:37 +04:00
printf("vere: running as daemon\n");
2013-09-29 00:21:18 +04:00
}
2014-09-23 21:11:59 +04:00
// Seed prng. Don't panic -- just for fuzz testing.
2014-03-04 23:17:34 +04:00
//
srand(getpid());
2013-09-29 00:21:18 +04:00
// Instantiate process globals.
{
2014-09-23 21:11:59 +04:00
/* Boot the image and checkpoint.
2014-09-11 04:01:32 +04:00
*/
2014-11-16 04:10:15 +03:00
u3m_boot(u3_Host.ops_u.nuu, u3_Host.ops_u.gab, u3_Host.dir_c);
2013-09-29 00:21:18 +04:00
2014-09-24 11:38:37 +04:00
/* Start Arvo.
2014-09-11 04:01:32 +04:00
*/
2014-10-11 09:32:58 +04:00
#if 1
2013-09-29 00:21:18 +04:00
{
2014-09-11 04:01:32 +04:00
struct timeval tim_tv;
u3_noun now;
2013-09-29 00:21:18 +04:00
2014-09-11 04:01:32 +04:00
gettimeofday(&tim_tv, 0);
now = u3_time_in_tv(&tim_tv);
2013-09-29 00:21:18 +04:00
2014-11-06 03:20:01 +03:00
u3v_start(now);
2014-09-24 11:38:37 +04:00
}
2014-10-10 05:27:02 +04:00
#endif
2014-09-25 01:29:19 +04:00
#if 0
2014-09-24 11:38:37 +04:00
/* Initial checkpoint.
*/
2014-11-05 04:18:47 +03:00
if ( _(u3_Host.ops_u.nuu) ) {
2014-09-24 11:38:37 +04:00
printf("about to save.\r\n");
2014-11-06 03:20:01 +03:00
u3e_save();
2014-09-24 11:38:37 +04:00
printf("saved.\r\n");
2013-09-29 00:21:18 +04:00
}
2014-09-25 01:29:19 +04:00
#endif
2013-09-29 00:21:18 +04:00
}
2014-11-06 03:20:01 +03:00
// u3e_grab("main", u3_none);
2014-10-10 05:27:02 +04:00
u3_lo_loop();
2014-10-11 09:32:58 +04:00
2013-09-29 00:21:18 +04:00
return 0;
}