label_t now structure
[unix-history] / usr / src / sys / kern / init_main.c
index 69594d5..ab9da86 100644 (file)
@@ -1,10 +1,11 @@
-/*     init_main.c     3.2     %H%     */
+/*     init_main.c     4.37    82/09/06        */
 
 #include "../h/param.h"
 #include "../h/systm.h"
 #include "../h/dir.h"
 #include "../h/user.h"
 
 #include "../h/param.h"
 #include "../h/systm.h"
 #include "../h/dir.h"
 #include "../h/user.h"
-#include "../h/filsys.h"
+#include "../h/kernel.h"
+#include "../h/fs.h"
 #include "../h/mount.h"
 #include "../h/map.h"
 #include "../h/proc.h"
 #include "../h/mount.h"
 #include "../h/map.h"
 #include "../h/proc.h"
 #include "../h/buf.h"
 #include "../h/mtpr.h"
 #include "../h/pte.h"
 #include "../h/buf.h"
 #include "../h/mtpr.h"
 #include "../h/pte.h"
-#include "../h/clock.h"
 #include "../h/vm.h"
 #include "../h/cmap.h"
 #include "../h/vm.h"
 #include "../h/cmap.h"
+#include "../h/text.h"
+#include "../h/clist.h"
+#ifdef INET
+#include "../h/protosw.h"
+#endif
+#include "../h/quota.h"
 
 /*
  * Initialization code.
 
 /*
  * Initialization code.
  */
 main(firstaddr)
 {
  */
 main(firstaddr)
 {
+       register int i;
+       register struct proc *p;
+       struct fs *fs;
 
 
-       cpusid = mfpr(SID);             /* get system identification */
-#ifdef FASTVAX
        rqinit();
        rqinit();
-#endif
+#include "loop.h"
        startup(firstaddr);
        startup(firstaddr);
-       if (lotsfree == 0)
-               lotsfree = LOTSFREE;
 
        /*
         * set up system process 0 (swapper)
         */
 
        /*
         * set up system process 0 (swapper)
         */
-
-       proc[0].p_p0br = (struct pte *)mfpr(P0BR);
-       proc[0].p_szpt = 1;
-       proc[0].p_addr = uaddr(&proc[0]);
-       proc[0].p_stat = SRUN;
-       proc[0].p_flag |= SLOAD|SSYS;
-       proc[0].p_nice = NZERO;
-       u.u_procp = &proc[0];
+       p = &proc[0];
+       p->p_p0br = (struct pte *)mfpr(P0BR);
+       p->p_szpt = 1;
+       p->p_addr = uaddr(p);
+       p->p_stat = SRUN;
+       p->p_flag |= SLOAD|SSYS;
+       p->p_nice = NZERO;
+       setredzone(p->p_addr, (caddr_t)&u);
+       u.u_procp = p;
        u.u_cmask = CMASK;
        u.u_cmask = CMASK;
-       clkstart();
+       for (i = 1; i < NGROUPS; i++)
+               u.u_groups[i] = -1;
+       for (i = 0; i < sizeof(u.u_rlimit)/sizeof(u.u_rlimit[0]); i++)
+               u.u_rlimit[i].rlim_cur = u.u_rlimit[i].rlim_max = 
+                   RLIM_INFINITY;
+       u.u_rlimit[RLIMIT_STACK].rlim_cur = 512*1024;
+       u.u_rlimit[RLIMIT_DATA].rlim_cur = ctob(MAXDSIZ);
+       p->p_maxrss = RLIM_INFINITY/NBPG;
+#ifdef QUOTA
+       qtinit();
+       p->p_quota = u.u_quota = getquota(0, 0, Q_NDQ);
+#endif
+       clockstart();
 
        /*
 
        /*
-        * Initialize devices and
-        * set up 'known' i-nodes
+        * Initialize tables, protocols, and set up well-known inodes.
         */
         */
-
+       mbinit();
+       cinit();                        /* needed by dmc-11 driver */
+#ifdef INET
+#if NLOOP > 0
+       loattach();                     /* XXX */
+#endif
+       ifinit();
+       pfinit();                       /* must follow interfaces */
+#endif
        ihinit();
        bhinit();
        ihinit();
        bhinit();
-       cinit();
        binit();
        bswinit();
        binit();
        bswinit();
-       iinit();
-       rootdir = iget(rootdev, (ino_t)ROOTINO);
-       rootdir->i_flag &= ~ILOCK;
-       u.u_cdir = iget(rootdev, (ino_t)ROOTINO);
-       u.u_cdir->i_flag &= ~ILOCK;
+#ifdef GPROF
+       kmstartup();
+#endif
+
+       fs = mountfs(rootdev, 0, (struct inode *)0);
+       if (fs == 0)
+               panic("iinit");
+       bcopy("/", fs->fs_fsmnt, 2);
+
+/* initialize wall clock */
+       clockinit(fs->fs_time);
+       boottime = time;
+
+/* kick off timeout driven events by calling first time */
+       roundrobin();
+       schedcpu();
+       schedpaging();
+
+/* set up the root file system */
+       rootdir = iget(rootdev, fs, (ino_t)ROOTINO);
+       iunlock(rootdir);
+       u.u_cdir = iget(rootdev, fs, (ino_t)ROOTINO);
+       iunlock(u.u_cdir);
        u.u_rdir = NULL;
        u.u_rdir = NULL;
+
        u.u_dmap = zdmap;
        u.u_smap = zdmap;
 
        u.u_dmap = zdmap;
        u.u_smap = zdmap;
 
+       /*
+        * Set the scan rate and other parameters of the paging subsystem.
+        */
+       setupclock();
+
        /*
         * make page-out daemon (process 2)
        /*
         * make page-out daemon (process 2)
-        * the daemon has ctopt(NSWBUF*CLSIZE*KLMAX) pages of page
+        * the daemon has ctopt(nswbuf*CLSIZE*KLMAX) pages of page
         * table so that it can map dirty pages into
         * its address space during asychronous pushes.
         */
         * table so that it can map dirty pages into
         * its address space during asychronous pushes.
         */
-
        mpid = 1;
        mpid = 1;
-       proc[0].p_szpt = clrnd(ctopt(NSWBUF*CLSIZE*KLMAX + UPAGES));
+       proc[0].p_szpt = clrnd(ctopt(nswbuf*CLSIZE*KLMAX + UPAGES));
        proc[1].p_stat = SZOMB;         /* force it to be in proc slot 2 */
        if (newproc(0)) {
                proc[2].p_flag |= SLOAD|SSYS;
        proc[1].p_stat = SZOMB;         /* force it to be in proc slot 2 */
        if (newproc(0)) {
                proc[2].p_flag |= SLOAD|SSYS;
-               proc[2].p_dsize = u.u_dsize = NSWBUF*CLSIZE*KLMAX; 
+               proc[2].p_dsize = u.u_dsize = nswbuf*CLSIZE*KLMAX; 
                pageout();
        }
 
                pageout();
        }
 
@@ -105,73 +152,49 @@ main(firstaddr)
        proc[0].p_szpt = CLSIZE;
        if (newproc(0)) {
                expand(clrnd((int)btoc(szicode)), P0BR);
        proc[0].p_szpt = CLSIZE;
        if (newproc(0)) {
                expand(clrnd((int)btoc(szicode)), P0BR);
-               VOID copyout((caddr_t)icode, (caddr_t)0, (unsigned)szicode);
+               (void) swpexpand(u.u_dsize, 0, &u.u_dmap, &u.u_smap);
+               (void) copyout((caddr_t)icode, (caddr_t)0, (unsigned)szicode);
                /*
                 * Return goes to loc. 0 of user init
                 * code just copied out.
                 */
                return;
        }
                /*
                 * Return goes to loc. 0 of user init
                 * code just copied out.
                 */
                return;
        }
+#ifdef MUSH
+       /*
+        * start MUSH daemon
+        *                      pid == 3
+        */
+       if (newproc(0)) {
+               expand(clrnd((int)btoc(szmcode)), P0BR);
+               (void) swpexpand(u.u_dsize, 0, &u.u_dmap, &u.u_smap);
+               (void) copyout((caddr_t)mcode, (caddr_t)0, (unsigned)szmcode);
+               /*
+                * Return goes to loc. 0 of user mush
+                * code just copied out.
+                */
+               return;
+       }
+#endif
        proc[0].p_szpt = 1;
        sched();
 }
 
 /*
        proc[0].p_szpt = 1;
        sched();
 }
 
 /*
- * iinit is called once (from main)
- * very early in initialization.
- * It reads the root's super block
- * and initializes the current date
- * from the last modified date.
- *
- * panic: iinit -- cannot read the super
- * block. Usually because of an IO error.
+ * Initialize hash links for buffers.
  */
  */
-iinit()
+bhinit()
 {
 {
-       register struct buf *cp, *bp;
-       register struct filsys *fp;
-       register unsigned i, j;
-
-       (*bdevsw[major(rootdev)].d_open)(rootdev, 1);
-       bp = bread(rootdev, SUPERB);
-       cp = geteblk();
-       if(u.u_error)
-               panic("iinit");
-       bcopy(bp->b_un.b_addr, cp->b_un.b_addr, sizeof(struct filsys));
-       brelse(bp);
-       mount[0].m_bufp = cp;
-       mount[0].m_dev = rootdev;
-       fp = cp->b_un.b_filsys;
-       fp->s_flock = 0;
-       fp->s_ilock = 0;
-       fp->s_ronly = 0;
-       fp->s_lasti = 1;
-       fp->s_nbehind = 0;
-       /* on boot, read VAX TODR register (GMT 10 ms.
-       *       clicks into current year) and set software time
-       *       in 'int time' (GMT seconds since year YRREF)
-       */
-       for (i = 0 , j = YRREF ; j < YRCURR ; j++)
-               i += (SECYR + (j%4?0:SECDAY)) ;
-       time = udiv(mfpr(TODR),100) + i ;
-       bootime = time;
-}
+       register int i;
+       register struct bufhd *bp;
 
 
-/*
- * This is the set of buffers proper, whose heads
- * were declared in buf.h.  There can exist buffer
- * headers not pointing here that are used purely
- * as arguments to the I/O routines to describe
- * I/O to be done-- e.g. swap headers swbuf[] for
- * swapping.
- */
-char   buffers[NBUF][BSIZE+BSLOP];
+       for (bp = bufhash, i = 0; i < BUFHSZ; i++, bp++)
+               bp->b_forw = bp->b_back = (struct buf *)bp;
+}
 
 /*
  * Initialize the buffer I/O system by freeing
  * all buffers and setting all device buffer lists to empty.
 
 /*
  * Initialize the buffer I/O system by freeing
  * all buffers and setting all device buffer lists to empty.
- *
- * SHOULD USE MEMALL HERE!!!
  */
 binit()
 {
  */
 binit()
 {
@@ -179,28 +202,42 @@ binit()
        register struct buf *dp;
        register int i;
        struct bdevsw *bdp;
        register struct buf *dp;
        register int i;
        struct bdevsw *bdp;
+       struct swdevt *swp;
 
 
-       bfreelist.b_forw = bfreelist.b_back =
-           bfreelist.av_forw = bfreelist.av_back = &bfreelist;
-       for (i=0; i<NBUF; i++) {
+       for (dp = bfreelist; dp < &bfreelist[BQUEUES]; dp++) {
+               dp->b_forw = dp->b_back = dp->av_forw = dp->av_back = dp;
+               dp->b_flags = B_HEAD;
+       }
+       dp--;                           /* dp = &bfreelist[BQUEUES-1]; */
+       for (i = 0; i < nbuf; i++) {
                bp = &buf[i];
                bp->b_dev = NODEV;
                bp = &buf[i];
                bp->b_dev = NODEV;
-               bp->b_un.b_addr = buffers[i];
-               bp->b_back = &bfreelist;
-               bp->b_forw = bfreelist.b_forw;
-               bfreelist.b_forw->b_back = bp;
-               bfreelist.b_forw = bp;
-               bp->b_flags = B_BUSY;
+               bp->b_un.b_addr = buffers + i * MAXBSIZE;
+               bp->b_bcount = MAXBSIZE;
+               bp->b_back = dp;
+               bp->b_forw = dp->b_forw;
+               dp->b_forw->b_back = bp;
+               dp->b_forw = bp;
+               bp->b_flags = B_BUSY|B_INVAL;
                brelse(bp);
        }
                brelse(bp);
        }
-       for (bdp = bdevsw; bdp->d_open; bdp++) {
-               dp = bdp->d_tab;
-               if(dp) {
-                       dp->b_forw = dp;
-                       dp->b_back = dp;
-               }
+       for (bdp = bdevsw; bdp->d_open; bdp++)
                nblkdev++;
                nblkdev++;
-       }
+       /*
+        * Count swap devices, and adjust total swap space available.
+        * Some of this space will not be available until a vswapon()
+        * system is issued, usually when the system goes multi-user.
+        */
+       nswdev = 0;
+       for (swp = swdevt; swp->sw_dev; swp++)
+               nswdev++;
+       if (nswdev == 0)
+               panic("binit");
+       if (nswdev > 1)
+               nswap = (nswap/DMMAX)*DMMAX;
+       nswap *= nswdev;
+       maxpgio *= nswdev;
+       swfree(0);
 }
 
 /*
 }
 
 /*
@@ -212,9 +249,33 @@ binit()
 bswinit()
 {
        register int i;
 bswinit()
 {
        register int i;
+       register struct buf *sp = swbuf;
+
+       bswlist.av_forw = sp;
+       for (i=0; i<nswbuf-1; i++, sp++)
+               sp->av_forw = sp+1;
+       sp->av_forw = NULL;
+}
+
+/*
+ * Initialize clist by freeing all character blocks, then count
+ * number of character devices. (Once-only routine)
+ */
+cinit()
+{
+       register int ccp;
+       register struct cblock *cp;
+       register struct cdevsw *cdp;
 
 
-       bswlist.av_forw = &swbuf[0];
-       for (i=0; i<NSWBUF-1; i++)
-               swbuf[i].av_forw = &swbuf[i+1];
-       swbuf[NSWBUF-1].av_forw = NULL;
+       ccp = (int)cfree;
+       ccp = (ccp+CROUND) & ~CROUND;
+       for(cp=(struct cblock *)ccp; cp < &cfree[nclist-1]; cp++) {
+               cp->c_next = cfreelist;
+               cfreelist = cp;
+               cfreecount += CBSIZE;
+       }
+       ccp = 0;
+       for(cdp = cdevsw; cdp->d_open; cdp++)
+               ccp++;
+       nchrdev = ccp;
 }
 }