#include "u.h" #include "../port/lib.h" #include "mem.h" #include "dat.h" #include "fns.h" #include "io.h" #include "init.h" extern void crapoptions(void); /* XXX - must go */ extern void confsetenv(void); /* XXX - must go */ static uintptr sp; /* XXX - must go - user stack of init proc */ uintptr kseg0 = KZERO; Sys* sys = nil; usize sizeofSys = sizeof(Sys); /* * Option arguments from the command line. * oargv[0] is the boot file. * Optionsinit() is called from multiboot() to * set it all up. */ static int oargc; static char* oargv[20]; static char oargb[128]; static int oargblen; char dbgflg[256]; static int vflag = 0; void optionsinit(char* s) { oargblen = strecpy(oargb, oargb+sizeof(oargb), s) - oargb; oargc = tokenize(oargb, oargv, nelem(oargv)-1); oargv[oargc] = nil; } static void options(int argc, char* argv[]) { char *p; int n, o; /* * Process flags. * Flags [A-Za-z] may be optionally followed by * an integer level between 1 and 127 inclusive * (no space between flag and level). * '--' ends flag processing. */ while(--argc > 0 && (*++argv)[0] == '-' && (*argv)[1] != '-'){ while(o = *++argv[0]){ if(!(o >= 'A' && o <= 'Z') && !(o >= 'a' && o <= 'z')) continue; n = strtol(argv[0]+1, &p, 0); if(p == argv[0]+1 || n < 1 || n > 127) n = 1; argv[0] = p-1; dbgflg[o] = n; } } vflag = dbgflg['v']; } void squidboy(int apicno) { vlong hz; sys->machptr[m->machno] = m; /* * Need something for initial delays * until a timebase is worked out. */ m->cpuhz = 2000000000ll; m->cpumhz = 2000; m->perf.period = 1; DBG("Hello Squidboy %d %d\n", apicno, m->machno); vsvminit(MACHSTKSZ); /* * Beware the Curse of The Non-Interruptable Were-Temporary. */ hz = archhz(); if(hz == 0) ndnr(); m->cpuhz = hz; m->cpumhz = hz/1000000ll; mmuinit(); if(!apiconline()) ndnr(); fpuinit(); /* * Handshake with sipi to let it * know the Startup IPI succeeded. */ m->splpc = 0; /* * Handshake with main to proceed with initialisation. */ while(sys->epoch == 0) ; wrmsr(0x10, sys->epoch); m->rdtsc = rdtsc(); setsched(); DBG("mach %d is go %#p %#p %#p\n", m->machno, m, m->pml4->va, &apicno); switch(m->mode){ default: // vsvminit(MACHSTKSZ); timersinit(); /* * Cannot allow interrupts while waiting for online, * if this were a real O/S, it would perhaps allow a clock * interrupt to call the scheduler, and that would * be a mistake. * Could perhaps use MONITOR/MWAIT here to drop the energy * used by the spinning core. */ while(!m->online) ; apictimerenable(); apictprput(0); DBG("mach%d: online color %d\n", m->machno, m->color); schedinit(); break; } panic("squidboy returns (type %d)", m->mode); } void main(u32int ax, u32int bx) { int i; vlong hz; memset(edata, 0, end - edata); /* * ilock via i8250enable via i8250console * needs m->machno, sys->machptr[] set, and * also 'up' set to nil. */ cgapost(sizeof(uintptr)*8); memset(m, 0, sizeof(Mach)); m->machno = 0; m->online = 1; sys->machptr[m->machno] = &sys->mach; m->stack = PTR2UINT(sys->machstk); m->vsvm = sys->vsvmpage; sys->nmach = 1; sys->nonline = 1; up = nil; asminit(); multiboot(ax, bx, 0); options(oargc, oargv); crapoptions(); /* * Need something for initial delays * until a timebase is worked out. */ m->cpuhz = 2000000000ll; m->cpumhz = 2000; cgainit(); i8250console("0"); consputs = cgaconsputs; vsvminit(MACHSTKSZ); active.machs = 1; active.exiting = 0; setsched(); fmtinit(); print("\nNix Mk IV\n"); if(vflag){ print("&ax = %#p, ax = %#ux, bx = %#ux\n", &ax, ax, bx); multiboot(ax, bx, vflag); } m->perf.period = 1; if((hz = archhz()) != 0ll){ m->cpuhz = hz; m->cpumhz = hz/1000000ll; } /* * Mmuinit before meminit because it * makes mappings and * flushes the TLB via m->pml4->pa. */ mmuinit(); ioinit(); kbdinit(); meminit(); archinit(); mallocinit(); trapinit(); /* * Printinit will cause the first malloc * call to happen (printinit->qopen->malloc). * If the system dies here it's probably due * to malloc not being initialised * correctly, or the data segment is misaligned * (it's amazing how far you can get with * things like that completely broken). */ printinit(); /* * This is necessary with GRUB and QEMU. * Without it an interrupt can occur at a weird vector, * because the vector base is likely different, causing * havoc. Do it before any APIC initialisation. */ i8259init(IdtPIC); chaninit(); acpiinit(); pageinit(); mpsinit(); apiconline(); intrenable(IdtTIMER, apictimerintr, 0, -1, "APIC timer"); apictimerenable(); apictprput(0); timersinit(); kbdenable(); fpuinit(); psinit(); initseg(); links(); devtabreset(); userinit(); if(!dbgflg['S']) sipi(); sys->epoch = rdtsc(); wrmsr(0x10, sys->epoch); m->rdtsc = rdtsc(); /* * Release the hounds. */ for(i = 1; i < MACHMAX; i++){ if(sys->machptr[i] == nil) continue; sys->nonline++; lock(&active); /* GAK */ active.machs |= 1<machptr[i]->color = corecolor(i); if(sys->machptr[i]->color < 0) sys->machptr[i]->color = 0; sys->machptr[i]->online = 1; } schedinit(); } void init0(void) { char buf[2*KNAMELEN]; up->nerrlab = 0; // if(consuart == nil) // i8250console("0"); spllo(); /* * These are o.k. because rootinit is null. * Then early kproc's will have a root and dot. */ up->slash = namec("#/", Atodir, 0, 0); up->dot = cclone(up->slash); up->pgrp->mnt = setslash(up->pgrp->mnt, up->slash); devtabinit(); if(!waserror()){ snprint(buf, sizeof(buf), "%s %s", "AMD64", conffile); ksetenv("terminal", buf, 0); ksetenv("cputype", "amd64", 0); if(cpuserver) ksetenv("service", "cpu", 0); else ksetenv("service", "terminal", 0); confsetenv(); poperror(); } kproc("alarm", alarmkproc, 0); touser(sp); } void bootargs(uintptr base) { int i; ulong ssize; char **av, *p; /* * Push the boot args onto the stack. * Make sure the validaddr check in syscall won't fail * because there are fewer than the maximum number of * args by subtracting sizeof(up->arg). */ i = oargblen+1; p = UINT2PTR(STACKALIGN(base + PGSZ - sizeof(up->arg) - i)); memmove(p, oargb, i); /* * Now push argc and the argv pointers. * This isn't strictly correct as the code jumped to by * touser in init9.[cs] calls startboot (port/initcode.c) which * expects arguments * startboot(char* argv0, char* argv[]) * not the usual (int argc, char* argv[]), but argv0 is * unused so it doesn't matter (at the moment...). */ av = (char**)(p - (oargc+2)*sizeof(char*)); ssize = base + PGSZ - PTR2UINT(av); *av++ = (char*)oargc; for(i = 0; i < oargc; i++) *av++ = (oargv[i] - oargb) + (p - base) + (USTKTOP - PGSZ); *av = nil; sp = USTKTOP - ssize; } void userinit(void) { Proc *p; Segment *s; KMap *k; Page *pg; p = newproc(); p->pgrp = duppgrp(nil, nil); p->egrp = smalloc(sizeof(Egrp)); p->egrp->ref = 1; p->fgrp = dupfgrp(nil); p->rgrp = newrgrp(); p->procmode = 0640; kstrdup(&eve, ""); kstrdup(&p->text, "*init*"); kstrdup(&p->user, eve); /* * Kernel Stack * * N.B. make sure there's enough space for syscall to check * for valid args and * space for gotolabel's return PC * AMD64 stack must be quad-aligned. */ p->sched.pc = PTR2UINT(init0); p->sched.sp = PTR2UINT(p->kstack+KSTACK-sizeof(up->arg)-sizeof(uintptr)); p->sched.sp = STACKALIGN(p->sched.sp); /* * User Stack * * Technically, newpage can't be called here because it * should only be called when in a user context as it may * try to sleep if there are no pages available, but that * shouldn't be the case here. */ s = newseg(SG_STACK, USTKTOP-USTKSIZE, USTKTOP, nil, UPGSHFT); p->seg[SSEG] = s; pg = newpage(UPGSZ, s->color, 1, USTKTOP-UPGSZ); segpage(s, pg); k = kmap(pg); bootargs(VA(k)); kunmap(k); /* * Text */ s = newseg(SG_TEXT, UTZERO, UTZERO+UPGSZ, nil, UPGSHFT); s->flushme++; p->seg[TSEG] = s; pg = newpage(UPGSZ, s->color, 1, UTZERO); /* might have to PG_TXTFLUSH pg */ segpage(s, pg); k = kmap(s->map[0]->pages[0]); memmove(UINT2PTR(VA(k)), initcode, sizeof initcode); kunmap(k); ready(p); } static void shutdown(int ispanic) { int ms, once; lock(&active); if(ispanic) active.ispanic = ispanic; else if(m->machno == 0 && (active.machs & (1<machno)) == 0) active.ispanic = 0; once = active.machs & (1<machno); active.machs &= ~(1<machno); active.exiting = 1; unlock(&active); if(once) iprint("cpu%d: exiting\n", m->machno); /* wait for any other processors to shutdown */ spllo(); for(ms = 5*1000; ms > 0; ms -= TK2MS(2)){ delay(TK2MS(2)); if(active.machs == 0 && consactive() == 0) break; } if(active.ispanic){ if(!cpuserver || getconf("*debug")) for(;;) halt(); delay(10000); }else delay(1000); } void reboot(void*, void*, long) { panic("reboot\n"); } void exit(int ispanic) { shutdown(ispanic); archreset(); }