Merge from vendor branch FILE:
[dragonfly.git] / sys / sys / thread.h
1 /*
2  * SYS/THREAD.H
3  *
4  *      Implements the architecture independant portion of the LWKT 
5  *      subsystem.
6  *
7  * Types which must already be defined when this header is included by
8  * userland:    struct md_thread
9  * 
10  * $DragonFly: src/sys/sys/thread.h,v 1.63 2005/06/19 22:07:17 dillon Exp $
11  */
12
13 #ifndef _SYS_THREAD_H_
14 #define _SYS_THREAD_H_
15
16 #ifndef _SYS_STDINT_H_
17 #include <sys/stdint.h>         /* __int types */
18 #endif
19 #ifndef _SYS_PARAM_H_
20 #include <sys/param.h>          /* MAXCOMLEN */
21 #endif
22 #ifndef _SYS_QUEUE_H_
23 #include <sys/queue.h>          /* TAILQ_* macros */
24 #endif
25 #ifndef _SYS_MSGPORT_H_
26 #include <sys/msgport.h>        /* lwkt_port */
27 #endif
28 #ifndef _SYS_TIME_H_
29 #include <sys/time.h>           /* struct timeval */
30 #endif
31
32 struct globaldata;
33 struct proc;
34 struct thread;
35 struct lwkt_queue;
36 struct lwkt_token;
37 struct lwkt_tokref;
38 struct lwkt_wait;
39 struct lwkt_ipiq;
40 struct lwkt_cpu_msg;
41 struct lwkt_cpu_port;
42 struct lwkt_rwlock;
43 struct lwkt_msg;
44 struct lwkt_port;
45 struct lwkt_cpusync;
46 union sysunion;
47
48 typedef struct lwkt_queue       *lwkt_queue_t;
49 typedef struct lwkt_token       *lwkt_token_t;
50 typedef struct lwkt_tokref      *lwkt_tokref_t;
51 typedef struct lwkt_wait        *lwkt_wait_t;
52 typedef struct lwkt_cpu_msg     *lwkt_cpu_msg_t;
53 typedef struct lwkt_cpu_port    *lwkt_cpu_port_t;
54 typedef struct lwkt_rwlock      *lwkt_rwlock_t;
55 typedef struct lwkt_ipiq        *lwkt_ipiq_t;
56 typedef struct lwkt_cpusync     *lwkt_cpusync_t;
57 typedef struct thread           *thread_t;
58
59 typedef TAILQ_HEAD(lwkt_queue, thread) lwkt_queue;
60
61 /*
62  * Differentiation between kernel threads and user threads.  Userland
63  * programs which want to access to kernel structures have to define
64  * _KERNEL_STRUCTURES.  This is a kinda safety valve to prevent badly
65  * written user programs from getting an LWKT thread that is neither the
66  * kernel nor the user version.
67  */
68 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
69 #ifndef _MACHINE_THREAD_H_
70 #include <machine/thread.h>             /* md_thread */
71 #endif
72 #ifndef _MACHINE_FRAME_H_
73 #include <machine/frame.h>
74 #endif
75 #else
76 struct intrframe;
77 #endif
78
79 /*
80  * Tokens are used to serialize access to information.  They are 'soft'
81  * serialization entities that only stay in effect while the thread is
82  * running.  If the thread blocks, other threads can run holding the same
83  * tokens.  The tokens are reacquired when the original thread resumes.
84  *
85  * A thread can depend on its serialization remaining intact through a
86  * preemption.  An interrupt which attempts to use the same token as the
87  * thread being preempted will reschedule itself for non-preemptive
88  * operation, so the new token code is capable of interlocking against
89  * interrupts as well as other cpus.
90  *
91  * Tokens are managed through a helper reference structure, lwkt_tokref,
92  * which is typically declared on the caller's stack.  Multiple tokref's
93  * may reference the same token.
94  */
95 typedef struct lwkt_token {
96     struct globaldata   *t_cpu;         /* the current owner of the token */
97     struct globaldata   *t_reqcpu;      /* requesting cpu */
98     int                 t_unused01;     /* (used to be generation number) */
99 } lwkt_token;
100
101 typedef struct lwkt_tokref {
102     lwkt_token_t        tr_tok;         /* token in question */
103     __uint32_t          tr_magic;       /* sanity check */
104     lwkt_tokref_t       tr_next;        /* linked list */
105     lwkt_tokref_t       tr_gdreqnext;   /* based at gd_tokreqbase */
106     struct globaldata   *tr_reqgd;      /* requesting cpu */
107 } lwkt_tokref;
108
109 /*
110  * The magic number indicates the trans-cpu state of a token reference.
111  *
112  * MAGIC1 - token reference is not in transit to another cpu
113  * MAGIC2 - token reference is in transit to another cpu
114  * MAGIC3 - token reference is in a state where it should not be
115  *          checked by lwkt_chktoken().
116  */
117 #define LWKT_TOKREF_MAGIC1              \
118                         ((__uint32_t)0x544f4b52)        /* normal */
119 #define LWKT_TOKREF_MAGIC2              \
120                         ((__uint32_t)0x544f4b53)        /* pending req */
121 #define LWKT_TOKREF_MAGIC3              \
122                         ((__uint32_t)0x544f4b54)        /* indeterminant */
123 #define LWKT_TOKREF_INIT(tok)           \
124                         { tok, LWKT_TOKREF_MAGIC1 }
125 #define LWKT_TOKREF_DECLARE(name, tok)  \
126                         lwkt_tokref name = LWKT_TOKREF_INIT(tok)
127
128 /*
129  * Wait structures deal with blocked threads.  Due to the way remote cpus
130  * interact with these structures stable storage must be used.
131  */
132 typedef struct lwkt_wait {
133     lwkt_queue  wa_waitq;       /* list of waiting threads */
134     lwkt_token  wa_token;       /* who currently owns the list */
135     int         wa_gen;
136     int         wa_count;
137 } lwkt_wait;
138
139 #define MAXCPUFIFO      16      /* power of 2 */
140 #define MAXCPUFIFO_MASK (MAXCPUFIFO - 1)
141 #define LWKT_MAXTOKENS  16      /* max tokens beneficially held by thread */
142
143 /*
144  * Always cast to ipifunc_t when registering an ipi.  The actual ipi function
145  * is called with both the data and an interrupt frame, but the ipi function
146  * that is registered might only declare a data argument.
147  */
148 typedef void (*ipifunc_t)(void *arg);
149 typedef void (*ipifunc2_t)(void *arg, struct intrframe *frame);
150
151 typedef struct lwkt_ipiq {
152     int         ip_rindex;      /* only written by target cpu */
153     int         ip_xindex;      /* written by target, indicates completion */
154     int         ip_windex;      /* only written by source cpu */
155     ipifunc2_t  ip_func[MAXCPUFIFO];
156     void        *ip_arg[MAXCPUFIFO];
157     u_int       ip_npoll;       /* synchronization to avoid excess IPIs */
158 } lwkt_ipiq;
159
160 /*
161  * CPU Synchronization structure.  See lwkt_cpusync_start() and
162  * lwkt_cpusync_finish() for more information.
163  */
164 typedef void (*cpusync_func_t)(lwkt_cpusync_t poll);
165 typedef void (*cpusync_func2_t)(void *data);
166
167 struct lwkt_cpusync {
168     cpusync_func_t cs_run_func;         /* run (tandem w/ acquire) */
169     cpusync_func_t cs_fin1_func;        /* fin1 (synchronized) */
170     cpusync_func2_t cs_fin2_func;       /* fin2 (tandem w/ release) */
171     void        *cs_data;
172     int         cs_maxcount;
173     volatile int cs_count;
174     cpumask_t   cs_mask;
175 };
176
177 /*
178  * The standard message and queue structure used for communications between
179  * cpus.  Messages are typically queued via a machine-specific non-linked
180  * FIFO matrix allowing any cpu to send a message to any other cpu without
181  * blocking.
182  */
183 typedef struct lwkt_cpu_msg {
184     void        (*cm_func)(lwkt_cpu_msg_t msg); /* primary dispatch function */
185     int         cm_code;                /* request code if applicable */
186     int         cm_cpu;                 /* reply to cpu */
187     thread_t    cm_originator;          /* originating thread for wakeup */
188 } lwkt_cpu_msg;
189
190 /*
191  * reader/writer lock
192  */
193 typedef struct lwkt_rwlock {
194     lwkt_wait   rw_wait;
195     thread_t    rw_owner;
196     int         rw_count;
197     int         rw_requests;
198 } lwkt_rwlock;
199
200 #define rw_token        rw_wait.wa_token
201
202 /*
203  * Thread structure.  Note that ownership of a thread structure is special
204  * cased and there is no 'token'.  A thread is always owned by the cpu
205  * represented by td_gd, any manipulation of the thread by some other cpu
206  * must be done through cpu_*msg() functions.  e.g. you could request
207  * ownership of a thread that way, or hand a thread off to another cpu.
208  *
209  * NOTE: td_pri is bumped by TDPRI_CRIT when entering a critical section,
210  * but this does not effect how the thread is scheduled by LWKT.
211  */
212 struct md_intr_info;
213 struct caps_kinfo;
214
215 struct thread {
216     TAILQ_ENTRY(thread) td_threadq;
217     TAILQ_ENTRY(thread) td_allq;
218     lwkt_port   td_msgport;     /* built-in message port for replies */
219     struct proc *td_proc;       /* (optional) associated process */
220     struct pcb  *td_pcb;        /* points to pcb and top of kstack */
221     struct globaldata *td_gd;   /* associated with this cpu */
222     const char  *td_wmesg;      /* string name for blockage */
223     void        *td_wchan;      /* waiting on channel */
224     int         td_pri;         /* 0-31, 31=highest priority (note 1) */
225     int         td_flags;       /* TDF flags */
226     int         td_wdomain;     /* domain for wchan address (typ 0) */
227     void        (*td_preemptable)(struct thread *td, int critpri);
228     void        (*td_release)(struct thread *td);
229     union {
230         struct md_intr_info *intdata;
231     } td_info;
232     char        *td_kstack;     /* kernel stack */
233     int         td_kstack_size; /* size of kernel stack */
234     char        *td_sp;         /* kernel stack pointer for LWKT restore */
235     void        (*td_switch)(struct thread *ntd);
236     lwkt_wait_t td_wait;        /* thread sitting on wait structure */
237     __uint64_t  td_uticks;      /* Statclock hits in user mode (uS) */
238     __uint64_t  td_sticks;      /* Statclock hits in system mode (uS) */
239     __uint64_t  td_iticks;      /* Statclock hits processing intr (uS) */
240     int         td_locks;       /* lockmgr lock debugging YYY */
241     int         td_refs;        /* hold position in gd_tdallq / hold free */
242     int         td_nest_count;  /* prevent splz nesting */
243 #ifdef SMP
244     int         td_mpcount;     /* MP lock held (count) */
245     int         td_cscount;     /* cpu synchronization master */
246 #else
247     int         td_mpcount_unused;      /* filler so size matches */
248     int         td_cscount_unused;
249 #endif
250     struct timeval td_start;    /* start time for a thread/process */
251     char        td_comm[MAXCOMLEN+1]; /* typ 16+1 bytes */
252     struct thread *td_preempted; /* we preempted this thread */
253     struct caps_kinfo *td_caps; /* list of client and server registrations */
254     lwkt_tokref_t td_toks;      /* tokens beneficially held */
255     struct md_thread td_mach;
256 };
257
258 /*
259  * Thread flags.  Note that TDF_RUNNING is cleared on the old thread after
260  * we switch to the new one, which is necessary because LWKTs don't need
261  * to hold the BGL.  This flag is used by the exit code and the managed
262  * thread migration code.
263  *
264  * LWKT threads stay on their (per-cpu) run queue while running, not to
265  * be confused with user processes which are removed from the user scheduling
266  * run queue while actually running.
267  */
268 #define TDF_RUNNING             0x0001  /* thread still active */
269 #define TDF_RUNQ                0x0002  /* on an LWKT run queue */
270 #define TDF_PREEMPT_LOCK        0x0004  /* I have been preempted */
271 #define TDF_PREEMPT_DONE        0x0008  /* acknowledge preemption complete */
272 #define TDF_IDLE_NOHLT          0x0010  /* we need to spin */
273 #define TDF_MIGRATING           0x0020  /* thread is being migrated */
274 #define TDF_SINTR               0x0040  /* interruptability hint for 'ps' */
275
276 #define TDF_SYSTHREAD           0x0100  /* system thread */
277 #define TDF_ALLOCATED_THREAD    0x0200  /* zalloc allocated thread */
278 #define TDF_ALLOCATED_STACK     0x0400  /* zalloc allocated stack */
279 #define TDF_VERBOSE             0x0800  /* verbose on exit */
280 #define TDF_DEADLKTREAT         0x1000  /* special lockmgr deadlock treatment */
281 #define TDF_STOPREQ             0x2000  /* suspend_kproc */
282 #define TDF_WAKEREQ             0x4000  /* resume_kproc */
283 #define TDF_TIMEOUT             0x8000  /* tsleep timeout */
284 #define TDF_INTTHREAD           0x00010000      /* interrupt thread */
285 #define TDF_NORESCHED           0x00020000      /* Do not reschedule on wake */
286 #define TDF_BLOCKED             0x00040000      /* Thread is blocked */
287
288 /*
289  * Thread priorities.  Typically only one thread from any given
290  * user process scheduling queue is on the LWKT run queue at a time.
291  * Remember that there is one LWKT run queue per cpu.
292  *
293  * Critical sections are handled by bumping td_pri above TDPRI_MAX, which
294  * causes interrupts to be masked as they occur.  When this occurs a
295  * rollup flag will be set in mycpu->gd_reqflags.
296  */
297 #define TDPRI_IDLE_THREAD       0       /* the idle thread */
298 #define TDPRI_USER_IDLE         4       /* user scheduler idle */
299 #define TDPRI_USER_NORM         6       /* user scheduler normal */
300 #define TDPRI_USER_REAL         8       /* user scheduler real time */
301 #define TDPRI_KERN_LPSCHED      9       /* scheduler helper for userland sch */
302 #define TDPRI_KERN_USER         10      /* kernel / block in syscall */
303 #define TDPRI_KERN_DAEMON       12      /* kernel daemon (pageout, etc) */
304 #define TDPRI_SOFT_NORM         14      /* kernel / normal */
305 #define TDPRI_SOFT_TIMER        16      /* kernel / timer */
306 #define TDPRI_EXITING           19      /* exiting thread */
307 #define TDPRI_INT_SUPPORT       20      /* kernel / high priority support */
308 #define TDPRI_INT_LOW           27      /* low priority interrupt */
309 #define TDPRI_INT_MED           28      /* medium priority interrupt */
310 #define TDPRI_INT_HIGH          29      /* high priority interrupt */
311 #define TDPRI_MAX               31
312
313 #define TDPRI_MASK              31
314 #define TDPRI_CRIT              32      /* high bits of td_pri used for crit */
315
316 #ifdef _KERNEL
317 #define LWKT_THREAD_STACK       (UPAGES * PAGE_SIZE)
318 #endif
319
320 #define CACHE_NTHREADS          6
321
322 #define IN_CRITICAL_SECT(td)    ((td)->td_pri >= TDPRI_CRIT)
323
324 #ifdef _KERNEL
325
326 extern struct vm_zone   *thread_zone;
327
328 #endif
329
330 /*
331  * Applies both to the kernel and to liblwkt.
332  */
333 extern struct thread *lwkt_alloc_thread(struct thread *template, int stksize,
334         int cpu);
335 extern void lwkt_init_thread(struct thread *td, void *stack, int stksize,
336         int flags, struct globaldata *gd);
337 extern void lwkt_set_comm(thread_t td, const char *ctl, ...);
338 extern void lwkt_wait_free(struct thread *td);
339 extern void lwkt_free_thread(struct thread *td);
340 extern void lwkt_wait_init(struct lwkt_wait *w);
341 extern void lwkt_gdinit(struct globaldata *gd);
342 extern void lwkt_switch(void);
343 extern void lwkt_preempt(thread_t ntd, int critpri);
344 extern void lwkt_schedule(thread_t td);
345 extern void lwkt_schedule_self(thread_t td);
346 extern void lwkt_deschedule(thread_t td);
347 extern void lwkt_deschedule_self(thread_t td);
348 extern void lwkt_acquire(thread_t td);
349 extern void lwkt_yield(void);
350 extern void lwkt_yield_quick(void);
351 extern void lwkt_token_wait(void);
352 extern void lwkt_hold(thread_t td);
353 extern void lwkt_rele(thread_t td);
354
355 extern void lwkt_block(lwkt_wait_t w, const char *wmesg, int *gen);
356 extern void lwkt_signal(lwkt_wait_t w, int count);
357
358 extern int lwkt_havetoken(lwkt_token_t tok);
359 extern int lwkt_havetokref(lwkt_tokref_t xref);
360 extern void lwkt_gettoken(lwkt_tokref_t ref, lwkt_token_t tok);
361 extern int lwkt_trytoken(lwkt_tokref_t ref, lwkt_token_t tok);
362 extern void lwkt_gettokref(lwkt_tokref_t ref);
363 extern int  lwkt_trytokref(lwkt_tokref_t ref);
364 extern void lwkt_reltoken(lwkt_tokref_t ref);
365 extern int  lwkt_chktokens(thread_t td);
366 extern void lwkt_drain_token_requests(void);
367 extern void lwkt_token_init(lwkt_token_t tok);
368 extern void lwkt_token_uninit(lwkt_token_t tok);
369
370 extern void lwkt_token_pool_init(void);
371 extern lwkt_token_t lwkt_token_pool_get(void *ptraddr);
372
373 extern void lwkt_rwlock_init(lwkt_rwlock_t lock);
374 extern void lwkt_rwlock_uninit(lwkt_rwlock_t lock);
375 extern void lwkt_exlock(lwkt_rwlock_t lock, const char *wmesg);
376 extern void lwkt_shlock(lwkt_rwlock_t lock, const char *wmesg);
377 extern void lwkt_exunlock(lwkt_rwlock_t lock);
378 extern void lwkt_shunlock(lwkt_rwlock_t lock);
379
380 extern void lwkt_setpri(thread_t td, int pri);
381 extern void lwkt_setpri_self(int pri);
382 extern int  lwkt_checkpri_self(void);
383 extern void lwkt_setcpu_self(struct globaldata *rgd);
384 extern int  lwkt_send_ipiq(struct globaldata *targ, ipifunc_t func, void *arg);
385 extern int  lwkt_send_ipiq_passive(struct globaldata *targ, ipifunc_t func, void *arg);
386 extern int  lwkt_send_ipiq_nowait(struct globaldata *targ, ipifunc_t func, void *arg);
387 extern int  lwkt_send_ipiq_bycpu(int dcpu, ipifunc_t func, void *arg);
388 extern int  lwkt_send_ipiq_mask(cpumask_t mask, ipifunc_t func, void *arg);
389 extern void lwkt_wait_ipiq(struct globaldata *targ, int seq);
390 extern int  lwkt_seq_ipiq(struct globaldata *targ);
391 extern void lwkt_process_ipiq(void);
392 #ifdef _KERNEL
393 extern void lwkt_process_ipiq_frame(struct intrframe frame);
394 #endif
395 extern void lwkt_cpusync_simple(cpumask_t mask, cpusync_func_t func, void *data);
396 extern void lwkt_cpusync_fastdata(cpumask_t mask, cpusync_func2_t func, void *data);
397 extern void lwkt_cpusync_start(cpumask_t mask, lwkt_cpusync_t poll);
398 extern void lwkt_cpusync_add(cpumask_t mask, lwkt_cpusync_t poll);
399 extern void lwkt_cpusync_finish(lwkt_cpusync_t poll);
400 extern void crit_panic(void);
401 extern struct proc *lwkt_preempted_proc(void);
402
403 extern int  lwkt_create (void (*func)(void *), void *arg, struct thread **ptd,
404                             struct thread *template, int tdflags, int cpu,
405                             const char *ctl, ...);
406 extern void lwkt_exit (void) __dead2;
407
408 #endif
409