]> git.saurik.com Git - apple/xnu.git/blob - bsd/kern/kern_shutdown.c
xnu-344.tar.gz
[apple/xnu.git] / bsd / kern / kern_shutdown.c
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22 /*
23 * File: bsd/kern/kern_shutdown.c
24 *
25 * Copyright (C) 1989, NeXT, Inc.
26 *
27 */
28
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/kernel.h>
32 #include <sys/vm.h>
33 #include <sys/proc.h>
34 #include <sys/user.h>
35 #include <sys/buf.h>
36 #include <sys/reboot.h>
37 #include <sys/conf.h>
38 #include <sys/vnode.h>
39 #include <sys/file.h>
40 #include <sys/clist.h>
41 #include <sys/callout.h>
42 #include <sys/mbuf.h>
43 #include <sys/msgbuf.h>
44 #include <sys/ioctl.h>
45 #include <sys/signal.h>
46 #include <sys/tty.h>
47 #include <kern/task.h>
48 #include <sys/quota.h>
49 #include <ufs/ufs/inode.h>
50 #if NCPUS > 1
51 #include <kern/processor.h>
52 #include <kern/thread.h>
53 #include <sys/lock.h>
54 #endif /* NCPUS > 1 */
55 #include <vm/vm_kern.h>
56 #include <mach/vm_param.h>
57 #include <sys/filedesc.h>
58 #include <mach/host_reboot.h>
59
60 int waittime = -1;
61
62 void
63 boot(paniced, howto, command)
64 int paniced, howto;
65 char *command;
66 {
67 register int i;
68 int s;
69 struct proc *p = current_proc(); /* XXX */
70 int hostboot_option=0;
71 int funnel_state;
72
73 static void proc_shutdown();
74 extern void md_prepare_for_shutdown(int paniced, int howto, char * command);
75
76 funnel_state = thread_funnel_set(kernel_flock, TRUE);
77
78 md_prepare_for_shutdown(paniced, howto, command);
79
80 if ((howto&RB_NOSYNC)==0 && waittime < 0) {
81 int iter, nbusy;
82
83 waittime = 0;
84
85 printf("syncing disks... ");
86
87 /*
88 * Release vnodes held by texts before sync.
89 */
90
91 /* handle live procs (deallocate their root and current directories). */
92 proc_shutdown();
93
94 sync(p, (void *)NULL, (int *)NULL);
95
96 /* Release vnodes from the VM object cache */
97 ubc_unmountall();
98
99 IOSleep( 1 * 1000 );
100
101 /*
102 * Unmount filesystems
103 */
104 if (panicstr == 0)
105 vfs_unmountall();
106
107 /* Wait for the buffer cache to clean remaining dirty buffers */
108 for (iter = 0; iter < 20; iter++) {
109 nbusy = count_busy_buffers();
110 if (nbusy == 0)
111 break;
112 printf("%d ", nbusy);
113 IOSleep( 4 * nbusy );
114 }
115 if (nbusy)
116 printf("giving up\n");
117 else
118 printf("done\n");
119 }
120
121 /*
122 * Can't just use an splnet() here to disable the network
123 * because that will lock out softints which the disk
124 * drivers depend on to finish DMAs.
125 */
126 if_down_all();
127
128 if (howto & RB_POWERDOWN)
129 hostboot_option = HOST_REBOOT_HALT;
130 if (howto & RB_HALT)
131 hostboot_option = HOST_REBOOT_HALT;
132 if (paniced == RB_PANIC)
133 hostboot_option = HOST_REBOOT_HALT;
134
135 if (hostboot_option == HOST_REBOOT_HALT)
136 IOSleep( 1 * 1000 );
137
138 host_reboot(host_priv_self(), hostboot_option);
139
140 thread_funnel_set(kernel_flock, FALSE);
141 }
142
143 /*
144 * proc_shutdown()
145 *
146 * Shutdown down proc system (release references to current and root
147 * dirs for each process).
148 *
149 * POSIX modifications:
150 *
151 * For POSIX fcntl() file locking call vno_lockrelease() on
152 * the file to release all of its record locks, if any.
153 */
154
155 static void
156 proc_shutdown()
157 {
158 struct proc *p, *self;
159 struct vnode **cdirp, **rdirp, *vp;
160 int restart, i, TERM_catch;
161
162 /*
163 * Kill as many procs as we can. (Except ourself...)
164 */
165 self = (struct proc *)current_proc();
166
167 /*
168 * Suspend /etc/init
169 */
170 p = pfind(1);
171 if (p && p != self)
172 task_suspend(p->task); /* stop init */
173
174 printf("Killing all processes ");
175
176 /*
177 * send SIGTERM to those procs interested in catching one
178 */
179 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
180 if (((p->p_flag&P_SYSTEM) == 0) && (p->p_pptr->p_pid != 0) && (p != self)) {
181 if (p->p_sigcatch & sigmask(SIGTERM))
182 psignal(p, SIGTERM);
183 }
184 }
185 /*
186 * now wait for up to 30 seconds to allow those procs catching SIGTERM
187 * to digest it
188 * as soon as these procs have exited, we'll continue on to the next step
189 */
190 for (i = 0; i < 300; i++) {
191 /*
192 * sleep for a tenth of a second
193 * and then check to see if the tasks that were sent a
194 * SIGTERM have exited
195 */
196 IOSleep(100);
197 TERM_catch = 0;
198
199 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
200 if (((p->p_flag&P_SYSTEM) == 0) && (p->p_pptr->p_pid != 0) && (p != self)) {
201 if (p->p_sigcatch & sigmask(SIGTERM))
202 TERM_catch++;
203 }
204 }
205 if (TERM_catch == 0)
206 break;
207 }
208
209 /*
210 * send a SIGKILL to all the procs still hanging around
211 */
212 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
213 if (((p->p_flag&P_SYSTEM) == 0) && (p->p_pptr->p_pid != 0) && (p != self))
214 psignal(p, SIGKILL);
215 }
216 /*
217 * wait for up to 60 seconds to allow these procs to exit normally
218 */
219 for (i = 0; i < 300; i++) {
220 IOSleep(200); /* double the time from 100 to 200 for NFS requests in particular */
221
222 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
223 if (((p->p_flag&P_SYSTEM) == 0) && (p->p_pptr->p_pid != 0) && (p != self))
224 break;
225 }
226 if (!p)
227 break;
228 }
229
230 /*
231 * if we still have procs that haven't exited, then brute force 'em
232 */
233 p = allproc.lh_first;
234 while (p) {
235 if ((p->p_flag&P_SYSTEM) || (p->p_pptr->p_pid == 0) || (p == self)) {
236 p = p->p_list.le_next;
237 }
238 else {
239 /*
240 * NOTE: following code ignores sig_lock and plays
241 * with exit_thread correctly. This is OK unless we
242 * are a multiprocessor, in which case I do not
243 * understand the sig_lock. This needs to be fixed.
244 * XXX
245 */
246 if (p->exit_thread) { /* someone already doing it */
247 /* give him a chance */
248 thread_block(THREAD_CONTINUE_NULL);
249 }
250 else {
251 p->exit_thread = current_thread();
252 printf(".");
253 exit1(p, 1, (int *)NULL);
254 }
255 p = allproc.lh_first;
256 }
257 }
258 printf("\n");
259 /*
260 * Forcibly free resources of what's left.
261 */
262 p = allproc.lh_first;
263 while (p) {
264 /*
265 * Close open files and release open-file table.
266 * This may block!
267 */
268 #ifdef notyet
269 /* panics on reboot due to "zfree: non-allocated memory in collectable zone" message */
270 fdfree(p);
271 #endif /* notyet */
272 p = p->p_list.le_next;
273 }
274 /* Wait for the reaper thread to run, and clean up what we have done
275 * before we proceed with the hardcore shutdown. This reduces the race
276 * between kill_tasks and the reaper thread.
277 */
278 /* thread_wakeup(&reaper_queue); */
279 /* IOSleep( 1 * 1000); */
280 printf("continuing\n");
281 }
282