Optimize lwkt_rwlock.c a bit
[dragonfly.git] / sys / kern / init_main.c
1 /*
2  * Copyright (c) 1995 Terrence R. Lambert
3  * All rights reserved.
4  *
5  * Copyright (c) 1982, 1986, 1989, 1991, 1992, 1993
6  *      The Regents of the University of California.  All rights reserved.
7  * (c) UNIX System Laboratories, Inc.
8  * All or some portions of this file are derived from material licensed
9  * to the University of California by American Telephone and Telegraph
10  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
11  * the permission of UNIX System Laboratories, Inc.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. All advertising materials mentioning features or use of this software
22  *    must display the following acknowledgement:
23  *      This product includes software developed by the University of
24  *      California, Berkeley and its contributors.
25  * 4. Neither the name of the University nor the names of its contributors
26  *    may be used to endorse or promote products derived from this software
27  *    without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39  * SUCH DAMAGE.
40  *
41  *      @(#)init_main.c 8.9 (Berkeley) 1/21/94
42  * $FreeBSD: src/sys/kern/init_main.c,v 1.134.2.8 2003/06/06 20:21:32 tegge Exp $
43  * $DragonFly: src/sys/kern/init_main.c,v 1.9 2003/06/22 04:30:42 dillon Exp $
44  */
45
46 #include "opt_init_path.h"
47
48 #include <sys/param.h>
49 #include <sys/file.h>
50 #include <sys/filedesc.h>
51 #include <sys/kernel.h>
52 #include <sys/mount.h>
53 #include <sys/sysctl.h>
54 #include <sys/proc.h>
55 #include <sys/resourcevar.h>
56 #include <sys/signalvar.h>
57 #include <sys/systm.h>
58 #include <sys/vnode.h>
59 #include <sys/sysent.h>
60 #include <sys/reboot.h>
61 #include <sys/sysproto.h>
62 #include <sys/vmmeter.h>
63 #include <sys/unistd.h>
64 #include <sys/malloc.h>
65
66 #include <machine/cpu.h>
67
68 #include <vm/vm.h>
69 #include <vm/vm_param.h>
70 #include <sys/lock.h>
71 #include <vm/pmap.h>
72 #include <vm/vm_map.h>
73 #include <sys/user.h>
74 #include <sys/copyright.h>
75
76 extern struct linker_set        sysinit_set;    /* XXX */
77
78 void mi_startup(void);                          /* Should be elsewhere */
79
80 /* Components of the first process -- never freed. */
81 static struct session session0;
82 static struct pgrp pgrp0;
83 static struct pcred cred0;
84 static struct procsig procsig0;
85 static struct filedesc0 filedesc0;
86 static struct plimit limit0;
87 static struct vmspace vmspace0;
88 struct proc *initproc;
89 struct proc proc0;
90 struct thread thread0;
91
92 int cmask = CMASK;
93 extern  struct user *proc0paddr;
94 extern int fallback_elf_brand;
95
96 struct  vnode *rootvp;
97 int     boothowto = 0;          /* initialized so that it can be patched */
98 SYSCTL_INT(_debug, OID_AUTO, boothowto, CTLFLAG_RD, &boothowto, 0, "");
99
100 /*
101  * This ensures that there is at least one entry so that the sysinit_set
102  * symbol is not undefined.  A sybsystem ID of SI_SUB_DUMMY is never
103  * executed.
104  */
105 SYSINIT(placeholder, SI_SUB_DUMMY, SI_ORDER_ANY, NULL, NULL)
106
107 /*
108  * The sysinit table itself.  Items are checked off as the are run.
109  * If we want to register new sysinit types, add them to newsysinit.
110  */
111 struct sysinit **sysinit = (struct sysinit **)sysinit_set.ls_items;
112 struct sysinit **newsysinit;
113
114 /*
115  * Merge a new sysinit set into the current set, reallocating it if
116  * necessary.  This can only be called after malloc is running.
117  */
118 void
119 sysinit_add(struct sysinit **set)
120 {
121         struct sysinit **newset;
122         struct sysinit **sipp;
123         struct sysinit **xipp;
124         int count = 0;
125
126         if (newsysinit)
127                 for (sipp = newsysinit; *sipp; sipp++)
128                         count++;
129         else
130                 for (sipp = sysinit; *sipp; sipp++)
131                         count++;
132         for (sipp = set; *sipp; sipp++)
133                 count++;
134         count++;                /* Trailing NULL */
135         newset = malloc(count * sizeof(*sipp), M_TEMP, M_NOWAIT);
136         if (newset == NULL)
137                 panic("cannot malloc for sysinit");
138         xipp = newset;
139         if (newsysinit)
140                 for (sipp = newsysinit; *sipp; sipp++)
141                         *xipp++ = *sipp;
142         else
143                 for (sipp = sysinit; *sipp; sipp++)
144                         *xipp++ = *sipp;
145         for (sipp = set; *sipp; sipp++)
146                 *xipp++ = *sipp;
147         *xipp = NULL;
148         if (newsysinit)
149                 free(newsysinit, M_TEMP);
150         newsysinit = newset;
151 }
152
153 /*
154  * System startup; initialize the world, create process 0, mount root
155  * filesystem, and fork to create init and pagedaemon.  Most of the
156  * hard work is done in the lower-level initialization routines including
157  * startup(), which does memory initialization and autoconfiguration.
158  *
159  * This allows simple addition of new kernel subsystems that require
160  * boot time initialization.  It also allows substitution of subsystem
161  * (for instance, a scheduler, kernel profiler, or VM system) by object
162  * module.  Finally, it allows for optional "kernel threads".
163  */
164 void
165 mi_startup(void)
166 {
167
168         register struct sysinit **sipp;         /* system initialization*/
169         register struct sysinit **xipp;         /* interior loop of sort*/
170         register struct sysinit *save;          /* bubble*/
171
172 restart:
173         /*
174          * Perform a bubble sort of the system initialization objects by
175          * their subsystem (primary key) and order (secondary key).
176          */
177         for (sipp = sysinit; *sipp; sipp++) {
178                 for (xipp = sipp + 1; *xipp; xipp++) {
179                         if ((*sipp)->subsystem < (*xipp)->subsystem ||
180                              ((*sipp)->subsystem == (*xipp)->subsystem &&
181                               (*sipp)->order <= (*xipp)->order))
182                                 continue;       /* skip*/
183                         save = *sipp;
184                         *sipp = *xipp;
185                         *xipp = save;
186                 }
187         }
188
189         /*
190          * Traverse the (now) ordered list of system initialization tasks.
191          * Perform each task, and continue on to the next task.
192          *
193          * The last item on the list is expected to be the scheduler,
194          * which will not return.
195          */
196         for (sipp = sysinit; *sipp; sipp++) {
197
198                 if ((*sipp)->subsystem == SI_SUB_DUMMY)
199                         continue;       /* skip dummy task(s)*/
200
201                 if ((*sipp)->subsystem == SI_SUB_DONE)
202                         continue;
203
204                 /* Call function */
205                 (*((*sipp)->func))((*sipp)->udata);
206
207                 /* Check off the one we're just done */
208                 (*sipp)->subsystem = SI_SUB_DONE;
209
210                 /* Check if we've installed more sysinit items via KLD */
211                 if (newsysinit != NULL) {
212                         if (sysinit != (struct sysinit **)sysinit_set.ls_items)
213                                 free(sysinit, M_TEMP);
214                         sysinit = newsysinit;
215                         newsysinit = NULL;
216                         goto restart;
217                 }
218         }
219
220         panic("Shouldn't get here!");
221         /* NOTREACHED*/
222 }
223
224
225 /*
226  ***************************************************************************
227  ****
228  **** The following SYSINIT's belong elsewhere, but have not yet
229  **** been moved.
230  ****
231  ***************************************************************************
232  */
233 static void
234 print_caddr_t(void *data __unused)
235 {
236         printf("%s", (char *)data);
237 }
238 SYSINIT(announce, SI_SUB_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t, copyright)
239
240
241 /*
242  ***************************************************************************
243  ****
244  **** The two following SYSINT's are proc0 specific glue code.  I am not
245  **** convinced that they can not be safely combined, but their order of
246  **** operation has been maintained as the same as the original init_main.c
247  **** for right now.
248  ****
249  **** These probably belong in init_proc.c or kern_proc.c, since they
250  **** deal with proc0 (the fork template process).
251  ****
252  ***************************************************************************
253  */
254 /* ARGSUSED*/
255 static void
256 proc0_init(void *dummy __unused)
257 {
258         register struct proc            *p;
259         register struct filedesc0       *fdp;
260         register unsigned i;
261
262         p = &proc0;
263
264         /*
265          * Initialize process and pgrp structures.
266          */
267         procinit();
268
269         /*
270          * Initialize sleep queue hash table
271          */
272         sleepinit();
273
274         /*
275          * additional VM structures
276          */
277         vm_init2();
278
279         /*
280          * Create process 0 (the swapper).
281          */
282         LIST_INSERT_HEAD(&allproc, p, p_list);
283         p->p_pgrp = &pgrp0;
284         LIST_INSERT_HEAD(PGRPHASH(0), &pgrp0, pg_hash);
285         LIST_INIT(&pgrp0.pg_members);
286         LIST_INSERT_HEAD(&pgrp0.pg_members, p, p_pglist);
287
288         pgrp0.pg_session = &session0;
289         session0.s_count = 1;
290         session0.s_leader = p;
291
292         p->p_sysent = &aout_sysvec;
293
294         p->p_flag = P_INMEM | P_SYSTEM;
295         p->p_stat = SRUN;
296         p->p_nice = NZERO;
297         p->p_rtprio.type = RTP_PRIO_NORMAL;
298         p->p_rtprio.prio = 0;
299
300         p->p_peers = 0;
301         p->p_leader = p;
302
303         bcopy("swapper", p->p_comm, sizeof ("swapper"));
304
305         /* Create credentials. */
306         cred0.p_refcnt = 1;
307         cred0.p_uidinfo = uifind(0);
308         p->p_cred = &cred0;
309         p->p_ucred = crget();
310         p->p_ucred->cr_ngroups = 1;     /* group 0 */
311         p->p_ucred->cr_uidinfo = uifind(0);
312
313         /* Don't jail it */
314         p->p_prison = 0;
315
316         /* Create procsig. */
317         p->p_procsig = &procsig0;
318         p->p_procsig->ps_refcnt = 1;
319
320         /* Initialize signal state for process 0. */
321         siginit(&proc0);
322
323         /* Create the file descriptor table. */
324         fdp = &filedesc0;
325         p->p_fd = &fdp->fd_fd;
326         p->p_fdtol = NULL;
327         fdp->fd_fd.fd_refcnt = 1;
328         fdp->fd_fd.fd_cmask = cmask;
329         fdp->fd_fd.fd_ofiles = fdp->fd_dfiles;
330         fdp->fd_fd.fd_ofileflags = fdp->fd_dfileflags;
331         fdp->fd_fd.fd_nfiles = NDFILE;
332
333         /* Create the limits structures. */
334         p->p_limit = &limit0;
335         for (i = 0; i < sizeof(p->p_rlimit)/sizeof(p->p_rlimit[0]); i++)
336                 limit0.pl_rlimit[i].rlim_cur =
337                     limit0.pl_rlimit[i].rlim_max = RLIM_INFINITY;
338         limit0.pl_rlimit[RLIMIT_NOFILE].rlim_cur =
339             limit0.pl_rlimit[RLIMIT_NOFILE].rlim_max = maxfiles;
340         limit0.pl_rlimit[RLIMIT_NPROC].rlim_cur =
341             limit0.pl_rlimit[RLIMIT_NPROC].rlim_max = maxproc;
342         i = ptoa(cnt.v_free_count);
343         limit0.pl_rlimit[RLIMIT_RSS].rlim_max = i;
344         limit0.pl_rlimit[RLIMIT_MEMLOCK].rlim_max = i;
345         limit0.pl_rlimit[RLIMIT_MEMLOCK].rlim_cur = i / 3;
346         limit0.p_cpulimit = RLIM_INFINITY;
347         limit0.p_refcnt = 1;
348
349         /* Allocate a prototype map so we have something to fork. */
350         pmap_pinit0(vmspace_pmap(&vmspace0));
351         p->p_vmspace = &vmspace0;
352         vmspace0.vm_refcnt = 1;
353         vm_map_init(&vmspace0.vm_map, round_page(VM_MIN_ADDRESS),
354             trunc_page(VM_MAXUSER_ADDRESS));
355         vmspace0.vm_map.pmap = vmspace_pmap(&vmspace0);
356
357         /*
358          * We continue to place resource usage info and signal
359          * actions in the user struct so they're pageable.
360          */
361         p->p_stats = &p->p_addr->u_stats;
362         p->p_sigacts = &p->p_addr->u_sigacts;
363
364         /*
365          * Charge root for one process.
366          */
367         (void)chgproccnt(cred0.p_uidinfo, 1, 0);
368
369 }
370 SYSINIT(p0init, SI_SUB_INTRINSIC, SI_ORDER_FIRST, proc0_init, NULL)
371
372 /* ARGSUSED*/
373 static void
374 proc0_post(void *dummy __unused)
375 {
376         struct timespec ts;
377         struct proc *p;
378
379         /*
380          * Now we can look at the time, having had a chance to verify the
381          * time from the file system.  Pretend that proc0 started now.
382          */
383         LIST_FOREACH(p, &allproc, p_list) {
384                 microtime(&p->p_stats->p_start);
385                 p->p_runtime = 0;
386         }
387         microuptime(&mycpu->gd_switchtime);
388         mycpu->gd_switchticks = ticks;
389
390         /*
391          * Give the ``random'' number generator a thump.
392          * XXX: Does read_random() contain enough bits to be used here ?
393          */
394         nanotime(&ts);
395         srandom(ts.tv_sec ^ ts.tv_nsec);
396 }
397 SYSINIT(p0post, SI_SUB_INTRINSIC_POST, SI_ORDER_FIRST, proc0_post, NULL)
398
399 /*
400  ***************************************************************************
401  ****
402  **** The following SYSINIT's and glue code should be moved to the
403  **** respective files on a per subsystem basis.
404  ****
405  ***************************************************************************
406  */
407
408
409 /*
410  ***************************************************************************
411  ****
412  **** The following code probably belongs in another file, like
413  **** kern/init_init.c.
414  ****
415  ***************************************************************************
416  */
417
418 /*
419  * List of paths to try when searching for "init".
420  */
421 static char init_path[MAXPATHLEN] =
422 #ifdef  INIT_PATH
423     __XSTRING(INIT_PATH);
424 #else
425     "/sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall";
426 #endif
427 SYSCTL_STRING(_kern, OID_AUTO, init_path, CTLFLAG_RD, init_path, 0, "");
428
429 /*
430  * Start the initial user process; try exec'ing each pathname in init_path.
431  * The program is invoked with one argument containing the boot flags.
432  */
433 static void
434 start_init(void *dummy)
435 {
436         vm_offset_t addr;
437         struct execve_args args;
438         int options, error;
439         char *var, *path, *next, *s;
440         char *ucp, **uap, *arg0, *arg1;
441         struct proc *p;
442
443         p = curproc;
444
445         /* Get the vnode for '/'.  Set p->p_fd->fd_cdir to reference it. */
446         if (VFS_ROOT(TAILQ_FIRST(&mountlist), &rootvnode))
447                 panic("cannot find root vnode");
448         p->p_fd->fd_cdir = rootvnode;
449         VREF(p->p_fd->fd_cdir);
450         p->p_fd->fd_rdir = rootvnode;
451         VREF(p->p_fd->fd_rdir);
452         VOP_UNLOCK(rootvnode, 0, p);
453
454         /*
455          * Need just enough stack to hold the faked-up "execve()" arguments.
456          */
457         addr = trunc_page(USRSTACK - PAGE_SIZE);
458         if (vm_map_find(&p->p_vmspace->vm_map, NULL, 0, &addr, PAGE_SIZE,
459                         FALSE, VM_PROT_ALL, VM_PROT_ALL, 0) != 0)
460                 panic("init: couldn't allocate argument space");
461         p->p_vmspace->vm_maxsaddr = (caddr_t)addr;
462         p->p_vmspace->vm_ssize = 1;
463
464         if ((var = getenv("init_path")) != NULL) {
465                 strncpy(init_path, var, sizeof init_path);
466                 init_path[sizeof init_path - 1] = 0;
467         }
468         if ((var = getenv("kern.fallback_elf_brand")) != NULL)
469                 fallback_elf_brand = strtol(var, NULL, 0);
470         
471         for (path = init_path; *path != '\0'; path = next) {
472                 while (*path == ':')
473                         path++;
474                 if (*path == '\0')
475                         break;
476                 for (next = path; *next != '\0' && *next != ':'; next++)
477                         /* nothing */ ;
478                 if (bootverbose)
479                         printf("start_init: trying %.*s\n", (int)(next - path),
480                             path);
481                         
482                 /*
483                  * Move out the boot flag argument.
484                  */
485                 options = 0;
486                 ucp = (char *)USRSTACK;
487                 (void)subyte(--ucp, 0);         /* trailing zero */
488                 if (boothowto & RB_SINGLE) {
489                         (void)subyte(--ucp, 's');
490                         options = 1;
491                 }
492 #ifdef notyet
493                 if (boothowto & RB_FASTBOOT) {
494                         (void)subyte(--ucp, 'f');
495                         options = 1;
496                 }
497 #endif
498
499 #ifdef BOOTCDROM
500                 (void)subyte(--ucp, 'C');
501                 options = 1;
502 #endif
503                 if (options == 0)
504                         (void)subyte(--ucp, '-');
505                 (void)subyte(--ucp, '-');               /* leading hyphen */
506                 arg1 = ucp;
507
508                 /*
509                  * Move out the file name (also arg 0).
510                  */
511                 (void)subyte(--ucp, 0);
512                 for (s = next - 1; s >= path; s--)
513                         (void)subyte(--ucp, *s);
514                 arg0 = ucp;
515
516                 /*
517                  * Move out the arg pointers.
518                  */
519                 uap = (char **)((intptr_t)ucp & ~(sizeof(intptr_t)-1));
520                 (void)suword((caddr_t)--uap, (long)0);  /* terminator */
521                 (void)suword((caddr_t)--uap, (long)(intptr_t)arg1);
522                 (void)suword((caddr_t)--uap, (long)(intptr_t)arg0);
523
524                 /*
525                  * Point at the arguments.
526                  */
527                 args.fname = arg0;
528                 args.argv = uap;
529                 args.envv = NULL;
530
531                 /*
532                  * Now try to exec the program.  If can't for any reason
533                  * other than it doesn't exist, complain.
534                  *
535                  * Otherwise, return via fork_trampoline() all the way
536                  * to user mode as init!
537                  */
538                 if ((error = execve(p, &args)) == 0)
539                         return;
540                 if (error != ENOENT)
541                         printf("exec %.*s: error %d\n", (int)(next - path), 
542                             path, error);
543         }
544         printf("init: not found in path %s\n", init_path);
545         panic("no init");
546 }
547
548 /*
549  * Like kthread_create(), but runs in it's own address space.
550  * We do this early to reserve pid 1.
551  *
552  * Note special case - do not make it runnable yet.  Other work
553  * in progress will change this more.
554  */
555 static void
556 create_init(const void *udata __unused)
557 {
558         int error;
559         int s;
560
561         s = splhigh();
562         error = fork1(&proc0, RFFDG | RFPROC, &initproc);
563         if (error)
564                 panic("cannot fork init: %d\n", error);
565         initproc->p_flag |= P_INMEM | P_SYSTEM;
566         cpu_set_fork_handler(initproc, start_init, NULL);
567         splx(s);
568 }
569 SYSINIT(init,SI_SUB_CREATE_INIT, SI_ORDER_FIRST, create_init, NULL)
570
571 /*
572  * Make it runnable now.
573  */
574 static void
575 kick_init(const void *udata __unused)
576 {
577         start_forked_proc(&proc0, initproc);
578 }
579 SYSINIT(kickinit,SI_SUB_KTHREAD_INIT, SI_ORDER_FIRST, kick_init, NULL)
580
581 /*
582  * Machine independant globaldata initialization
583  */
584 void
585 mi_gdinit(struct globaldata *gd, int cpu)
586 {
587         gd->gd_cpu = cpu;
588         lwkt_gdinit(gd);
589 }
590
591