thr_init.c revision 68726
1/*
2 * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *	This product includes software developed by John Birrell.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 *    may be used to endorse or promote products derived from this software
18 *    without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: head/lib/libkse/thread/thr_init.c 68726 2000-11-14 20:00:19Z deischen $
33 */
34
35/* Allocate space for global thread variables here: */
36#define GLOBAL_PTHREAD_PRIVATE
37
38#include <errno.h>
39#include <stdlib.h>
40#include <string.h>
41#include <fcntl.h>
42#include <paths.h>
43#include <poll.h>
44#include <unistd.h>
45#include <sys/ioctl.h>
46#include <sys/sysctl.h>
47#include <sys/time.h>
48#include <sys/ttycom.h>
49#include <sys/param.h>
50#include <sys/user.h>
51#include <sys/mman.h>
52#ifdef _THREAD_SAFE
53#include <machine/reg.h>
54#include <pthread.h>
55#include "pthread_private.h"
56
57#ifdef GCC_2_8_MADE_THREAD_AWARE
58typedef void *** (*dynamic_handler_allocator)();
59extern void __set_dynamic_handler_allocator(dynamic_handler_allocator);
60
61static pthread_key_t except_head_key;
62
63typedef struct {
64	void **__dynamic_handler_chain;
65	void *top_elt[2];
66} except_struct;
67
68static void ***dynamic_allocator_handler_fn()
69{
70	except_struct *dh = (except_struct *)pthread_getspecific(except_head_key);
71
72	if(dh == NULL) {
73		dh = (except_struct *)malloc( sizeof(except_struct) );
74		memset(dh, '\0', sizeof(except_struct));
75		dh->__dynamic_handler_chain= dh->top_elt;
76		pthread_setspecific(except_head_key, (void *)dh);
77	}
78	return &dh->__dynamic_handler_chain;
79}
80#endif /* GCC_2_8_MADE_THREAD_AWARE */
81
82/*
83 * Threaded process initialization
84 */
85void
86_thread_init(void)
87{
88	int		fd;
89	int             flags;
90	int             i;
91	size_t		len;
92	int		mib[2];
93	struct clockinfo clockinfo;
94	struct sigaction act;
95
96	/* Check if this function has already been called: */
97	if (_thread_initial)
98		/* Only initialise the threaded application once. */
99		return;
100
101	/*
102	 * Check for the special case of this process running as
103	 * or in place of init as pid = 1:
104	 */
105	if (getpid() == 1) {
106		/*
107		 * Setup a new session for this process which is
108		 * assumed to be running as root.
109		 */
110		if (setsid() == -1)
111			PANIC("Can't set session ID");
112		if (revoke(_PATH_CONSOLE) != 0)
113			PANIC("Can't revoke console");
114		if ((fd = _thread_sys_open(_PATH_CONSOLE, O_RDWR)) < 0)
115			PANIC("Can't open console");
116		if (setlogin("root") == -1)
117			PANIC("Can't set login to root");
118		if (_thread_sys_ioctl(fd,TIOCSCTTY, (char *) NULL) == -1)
119			PANIC("Can't set controlling terminal");
120		if (_thread_sys_dup2(fd,0) == -1 ||
121		    _thread_sys_dup2(fd,1) == -1 ||
122		    _thread_sys_dup2(fd,2) == -1)
123			PANIC("Can't dup2");
124	}
125
126	/* Get the standard I/O flags before messing with them : */
127	for (i = 0; i < 3; i++)
128		if (((_pthread_stdio_flags[i] =
129		    _thread_sys_fcntl(i,F_GETFL, NULL)) == -1) &&
130		    (errno != EBADF))
131			PANIC("Cannot get stdio flags");
132
133	/*
134	 * Create a pipe that is written to by the signal handler to prevent
135	 * signals being missed in calls to _select:
136	 */
137	if (_thread_sys_pipe(_thread_kern_pipe) != 0) {
138		/* Cannot create pipe, so abort: */
139		PANIC("Cannot create kernel pipe");
140	}
141	/* Get the flags for the read pipe: */
142	else if ((flags = _thread_sys_fcntl(_thread_kern_pipe[0], F_GETFL, NULL)) == -1) {
143		/* Abort this application: */
144		PANIC("Cannot get kernel read pipe flags");
145	}
146	/* Make the read pipe non-blocking: */
147	else if (_thread_sys_fcntl(_thread_kern_pipe[0], F_SETFL, flags | O_NONBLOCK) == -1) {
148		/* Abort this application: */
149		PANIC("Cannot make kernel read pipe non-blocking");
150	}
151	/* Get the flags for the write pipe: */
152	else if ((flags = _thread_sys_fcntl(_thread_kern_pipe[1], F_GETFL, NULL)) == -1) {
153		/* Abort this application: */
154		PANIC("Cannot get kernel write pipe flags");
155	}
156	/* Make the write pipe non-blocking: */
157	else if (_thread_sys_fcntl(_thread_kern_pipe[1], F_SETFL, flags | O_NONBLOCK) == -1) {
158		/* Abort this application: */
159		PANIC("Cannot get kernel write pipe flags");
160	}
161	/* Allocate and initialize the ready queue: */
162	else if (_pq_alloc(&_readyq, PTHREAD_MIN_PRIORITY, PTHREAD_LAST_PRIORITY) != 0) {
163		/* Abort this application: */
164		PANIC("Cannot allocate priority ready queue.");
165	}
166	/* Allocate memory for the thread structure of the initial thread: */
167	else if ((_thread_initial = (pthread_t) malloc(sizeof(struct pthread))) == NULL) {
168		/*
169		 * Insufficient memory to initialise this application, so
170		 * abort:
171		 */
172		PANIC("Cannot allocate memory for initial thread");
173	}
174	/* Allocate memory for the scheduler stack: */
175	else if ((_thread_kern_sched_stack = malloc(SCHED_STACK_SIZE)) == NULL)
176		PANIC("Failed to allocate stack for scheduler");
177	else {
178		/* Zero the global kernel thread structure: */
179		memset(&_thread_kern_thread, 0, sizeof(struct pthread));
180		_thread_kern_thread.flags = PTHREAD_FLAGS_PRIVATE;
181		memset(_thread_initial, 0, sizeof(struct pthread));
182
183		/* Initialize the waiting and work queues: */
184		TAILQ_INIT(&_waitingq);
185		TAILQ_INIT(&_workq);
186
187		/* Initialize the scheduling switch hook routine: */
188		_sched_switch_hook = NULL;
189
190		/* Give this thread default attributes: */
191		memcpy((void *) &_thread_initial->attr, &pthread_attr_default,
192		    sizeof(struct pthread_attr));
193
194		/* Initialize the thread stack cache: */
195		SLIST_INIT(&_stackq);
196
197		/*
198		 * Create a red zone below the main stack.  All other stacks are
199		 * constrained to a maximum size by the paramters passed to
200		 * mmap(), but this stack is only limited by resource limits, so
201		 * this stack needs an explicitly mapped red zone to protect the
202		 * thread stack that is just beyond.
203		 */
204		if (mmap((void *) USRSTACK - PTHREAD_STACK_INITIAL -
205		    PTHREAD_STACK_GUARD, PTHREAD_STACK_GUARD, 0, MAP_ANON,
206		    -1, 0) == MAP_FAILED)
207			PANIC("Cannot allocate red zone for initial thread");
208
209		/* Set the main thread stack pointer. */
210		_thread_initial->stack = (void *) USRSTACK -
211		    PTHREAD_STACK_INITIAL;
212
213		/* Set the stack attributes: */
214		_thread_initial->attr.stackaddr_attr = _thread_initial->stack;
215		_thread_initial->attr.stacksize_attr = PTHREAD_STACK_INITIAL;
216
217		/* Setup the context for the scheduler: */
218		_setjmp(_thread_kern_sched_jb);
219		SET_STACK_JB(_thread_kern_sched_jb, _thread_kern_sched_stack +
220		    SCHED_STACK_SIZE - sizeof(double));
221		SET_RETURN_ADDR_JB(_thread_kern_sched_jb, _thread_kern_scheduler);
222
223		/*
224		 * Write a magic value to the thread structure
225		 * to help identify valid ones:
226		 */
227		_thread_initial->magic = PTHREAD_MAGIC;
228
229		/* Set the initial cancel state */
230		_thread_initial->cancelflags = PTHREAD_CANCEL_ENABLE |
231		    PTHREAD_CANCEL_DEFERRED;
232
233		/* Default the priority of the initial thread: */
234		_thread_initial->base_priority = PTHREAD_DEFAULT_PRIORITY;
235		_thread_initial->active_priority = PTHREAD_DEFAULT_PRIORITY;
236		_thread_initial->inherited_priority = 0;
237
238		/* Initialise the state of the initial thread: */
239		_thread_initial->state = PS_RUNNING;
240
241		/* Initialise the queue: */
242		TAILQ_INIT(&(_thread_initial->join_queue));
243
244		/* Initialize the owned mutex queue and count: */
245		TAILQ_INIT(&(_thread_initial->mutexq));
246		_thread_initial->priority_mutex_count = 0;
247
248		/* Initialize the global scheduling time: */
249		_sched_ticks = 0;
250		gettimeofday((struct timeval *) &_sched_tod, NULL);
251
252		/* Initialize last active: */
253		_thread_initial->last_active = (long) _sched_ticks;
254
255		/* Initialize the initial context: */
256		_thread_initial->curframe = NULL;
257		_thread_initial->ctxtype = CTX_JB_NOSIG;
258
259		/* Initialise the rest of the fields: */
260		_thread_initial->poll_data.nfds = 0;
261		_thread_initial->poll_data.fds = NULL;
262		_thread_initial->sig_defer_count = 0;
263		_thread_initial->yield_on_sig_undefer = 0;
264		_thread_initial->specific_data = NULL;
265		_thread_initial->cleanup = NULL;
266		_thread_initial->flags = 0;
267		_thread_initial->error = 0;
268		TAILQ_INIT(&_thread_list);
269		TAILQ_INSERT_HEAD(&_thread_list, _thread_initial, tle);
270		_thread_run = _thread_initial;
271
272		/* Initialise the global signal action structure: */
273		sigfillset(&act.sa_mask);
274		act.sa_handler = (void (*) ()) _thread_sig_handler;
275		act.sa_flags = SA_SIGINFO | SA_ONSTACK;
276
277		/* Clear pending signals for the process: */
278		sigemptyset(&_process_sigpending);
279
280		/* Clear the signal queue: */
281		memset(_thread_sigq, 0, sizeof(_thread_sigq));
282
283		/*
284		 * Create and install an alternate signal stack of
285		 * the recommended size:
286		 */
287		_thread_sigstack.ss_sp = malloc(SIGSTKSZ);
288		_thread_sigstack.ss_size = SIGSTKSZ;
289		_thread_sigstack.ss_flags = 0;
290		if ((_thread_sigstack.ss_sp == NULL) ||
291		    (_thread_sys_sigaltstack(&_thread_sigstack, NULL) != 0))
292			PANIC("Unable to install alternate signal stack");
293
294		/* Enter a loop to get the existing signal status: */
295		for (i = 1; i < NSIG; i++) {
296			/* Check for signals which cannot be trapped: */
297			if (i == SIGKILL || i == SIGSTOP) {
298			}
299
300			/* Get the signal handler details: */
301			else if (_thread_sys_sigaction(i, NULL,
302			    &_thread_sigact[i - 1]) != 0) {
303				/*
304				 * Abort this process if signal
305				 * initialisation fails:
306				 */
307				PANIC("Cannot read signal handler info");
308			}
309
310			/* Initialize the SIG_DFL dummy handler count. */
311			_thread_dfl_count[i] = 0;
312		}
313
314		/*
315		 * Install the signal handler for the most important
316		 * signals that the user-thread kernel needs. Actually
317		 * SIGINFO isn't really needed, but it is nice to have.
318		 */
319		if (_thread_sys_sigaction(_SCHED_SIGNAL, &act, NULL) != 0 ||
320		    _thread_sys_sigaction(SIGINFO,       &act, NULL) != 0 ||
321		    _thread_sys_sigaction(SIGCHLD,       &act, NULL) != 0) {
322			/*
323			 * Abort this process if signal initialisation fails:
324			 */
325			PANIC("Cannot initialise signal handler");
326		}
327		_thread_sigact[_SCHED_SIGNAL - 1].sa_flags = SA_SIGINFO;
328		_thread_sigact[SIGINFO - 1].sa_flags = SA_SIGINFO;
329		_thread_sigact[SIGCHLD - 1].sa_flags = SA_SIGINFO;
330
331		/* Get the process signal mask: */
332		_thread_sys_sigprocmask(SIG_SETMASK, NULL, &_process_sigmask);
333
334		/* Get the kernel clockrate: */
335		mib[0] = CTL_KERN;
336		mib[1] = KERN_CLOCKRATE;
337		len = sizeof (struct clockinfo);
338		if (sysctl(mib, 2, &clockinfo, &len, NULL, 0) == 0)
339			_clock_res_usec = clockinfo.tick;
340
341		/* Get the table size: */
342		if ((_thread_dtablesize = getdtablesize()) < 0) {
343			/*
344			 * Cannot get the system defined table size, so abort
345			 * this process.
346			 */
347			PANIC("Cannot get dtablesize");
348		}
349		/* Allocate memory for the file descriptor table: */
350		if ((_thread_fd_table = (struct fd_table_entry **) malloc(sizeof(struct fd_table_entry *) * _thread_dtablesize)) == NULL) {
351			/* Avoid accesses to file descriptor table on exit: */
352			_thread_dtablesize = 0;
353
354			/*
355			 * Cannot allocate memory for the file descriptor
356			 * table, so abort this process.
357			 */
358			PANIC("Cannot allocate memory for file descriptor table");
359		}
360		/* Allocate memory for the pollfd table: */
361		if ((_thread_pfd_table = (struct pollfd *) malloc(sizeof(struct pollfd) * _thread_dtablesize)) == NULL) {
362			/*
363			 * Cannot allocate memory for the file descriptor
364			 * table, so abort this process.
365			 */
366			PANIC("Cannot allocate memory for pollfd table");
367		} else {
368			/*
369			 * Enter a loop to initialise the file descriptor
370			 * table:
371			 */
372			for (i = 0; i < _thread_dtablesize; i++) {
373				/* Initialise the file descriptor table: */
374				_thread_fd_table[i] = NULL;
375			}
376
377			/* Initialize stdio file descriptor table entries: */
378			for (i = 0; i < 3; i++) {
379				if ((_thread_fd_table_init(i) != 0) &&
380				    (errno != EBADF))
381					PANIC("Cannot initialize stdio file "
382					    "descriptor table entry");
383			}
384		}
385	}
386
387#ifdef GCC_2_8_MADE_THREAD_AWARE
388	/* Create the thread-specific data for the exception linked list. */
389	if(pthread_key_create(&except_head_key, NULL) != 0)
390		PANIC("Failed to create thread specific execption head");
391
392	/* Setup the gcc exception handler per thread. */
393	__set_dynamic_handler_allocator( dynamic_allocator_handler_fn );
394#endif /* GCC_2_8_MADE_THREAD_AWARE */
395
396	/* Initialise the garbage collector mutex and condition variable. */
397	if (pthread_mutex_init(&_gc_mutex,NULL) != 0 ||
398	    pthread_cond_init(&_gc_cond,NULL) != 0)
399		PANIC("Failed to initialise garbage collector mutex or condvar");
400}
401
402/*
403 * Special start up code for NetBSD/Alpha
404 */
405#if	defined(__NetBSD__) && defined(__alpha__)
406int
407main(int argc, char *argv[], char *env);
408
409int
410_thread_main(int argc, char *argv[], char *env)
411{
412	_thread_init();
413	return (main(argc, argv, env));
414}
415#endif
416#else
417/*
418 * A stub for non-threaded programs.
419 */
420void
421_thread_init(void)
422{
423}
424#endif
425