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