ckrm-E13
[linux-2.6.git] / include / linux / sched.h
1 #ifndef _LINUX_SCHED_H
2 #define _LINUX_SCHED_H
3
4 #include <asm/param.h>  /* for HZ */
5
6 #include <linux/config.h>
7 #include <linux/capability.h>
8 #include <linux/threads.h>
9 #include <linux/kernel.h>
10 #include <linux/types.h>
11 #include <linux/timex.h>
12 #include <linux/jiffies.h>
13 #include <linux/rbtree.h>
14 #include <linux/thread_info.h>
15 #include <linux/cpumask.h>
16
17 #include <asm/system.h>
18 #include <asm/semaphore.h>
19 #include <asm/page.h>
20 #include <asm/ptrace.h>
21 #include <asm/mmu.h>
22
23 #include <linux/smp.h>
24 #include <linux/sem.h>
25 #include <linux/signal.h>
26 #include <linux/securebits.h>
27 #include <linux/fs_struct.h>
28 #include <linux/compiler.h>
29 #include <linux/completion.h>
30 #include <linux/pid.h>
31 #include <linux/percpu.h>
32
33 struct exec_domain;
34
35 /*
36  * cloning flags:
37  */
38 #define CSIGNAL         0x000000ff      /* signal mask to be sent at exit */
39 #define CLONE_VM        0x00000100      /* set if VM shared between processes */
40 #define CLONE_FS        0x00000200      /* set if fs info shared between processes */
41 #define CLONE_FILES     0x00000400      /* set if open files shared between processes */
42 #define CLONE_SIGHAND   0x00000800      /* set if signal handlers and blocked signals shared */
43 #define CLONE_IDLETASK  0x00001000      /* set if new pid should be 0 (kernel only)*/
44 #define CLONE_PTRACE    0x00002000      /* set if we want to let tracing continue on the child too */
45 #define CLONE_VFORK     0x00004000      /* set if the parent wants the child to wake it up on mm_release */
46 #define CLONE_PARENT    0x00008000      /* set if we want to have the same parent as the cloner */
47 #define CLONE_THREAD    0x00010000      /* Same thread group? */
48 #define CLONE_NEWNS     0x00020000      /* New namespace group? */
49 #define CLONE_SYSVSEM   0x00040000      /* share system V SEM_UNDO semantics */
50 #define CLONE_SETTLS    0x00080000      /* create a new TLS for the child */
51 #define CLONE_PARENT_SETTID     0x00100000      /* set the TID in the parent */
52 #define CLONE_CHILD_CLEARTID    0x00200000      /* clear the TID in the child */
53 #define CLONE_DETACHED          0x00400000      /* Unused, ignored */
54 #define CLONE_UNTRACED          0x00800000      /* set if the tracing process can't force CLONE_PTRACE on this clone */
55 #define CLONE_CHILD_SETTID      0x01000000      /* set the TID in the child */
56 #define CLONE_STOPPED           0x02000000      /* Start in stopped state */
57
58 /*
59  * List of flags we want to share for kernel threads,
60  * if only because they are not used by them anyway.
61  */
62 #define CLONE_KERNEL    (CLONE_FS | CLONE_FILES | CLONE_SIGHAND)
63
64 /*
65  * These are the constant used to fake the fixed-point load-average
66  * counting. Some notes:
67  *  - 11 bit fractions expand to 22 bits by the multiplies: this gives
68  *    a load-average precision of 10 bits integer + 11 bits fractional
69  *  - if you want to count load-averages more often, you need more
70  *    precision, or rounding will get you. With 2-second counting freq,
71  *    the EXP_n values would be 1981, 2034 and 2043 if still using only
72  *    11 bit fractions.
73  */
74 extern unsigned long avenrun[];         /* Load averages */
75
76 #define FSHIFT          11              /* nr of bits of precision */
77 #define FIXED_1         (1<<FSHIFT)     /* 1.0 as fixed-point */
78 #define LOAD_FREQ       (5*HZ)          /* 5 sec intervals */
79 #define EXP_1           1884            /* 1/exp(5sec/1min) as fixed-point */
80 #define EXP_5           2014            /* 1/exp(5sec/5min) */
81 #define EXP_15          2037            /* 1/exp(5sec/15min) */
82
83 #define CALC_LOAD(load,exp,n) \
84         load *= exp; \
85         load += n*(FIXED_1-exp); \
86         load >>= FSHIFT;
87
88 #define CT_TO_SECS(x)   ((x) / HZ)
89 #define CT_TO_USECS(x)  (((x) % HZ) * 1000000/HZ)
90
91 extern int nr_threads;
92 extern int last_pid;
93 DECLARE_PER_CPU(unsigned long, process_counts);
94 extern int nr_processes(void);
95 extern unsigned long nr_running(void);
96 extern unsigned long nr_uninterruptible(void);
97 extern unsigned long nr_iowait(void);
98
99 #include <linux/time.h>
100 #include <linux/param.h>
101 #include <linux/resource.h>
102 #include <linux/timer.h>
103
104 #include <asm/processor.h>
105
106 #define TASK_RUNNING            0
107 #define TASK_INTERRUPTIBLE      1
108 #define TASK_UNINTERRUPTIBLE    2
109 #define TASK_STOPPED            4
110 #define TASK_ZOMBIE             8
111 #define TASK_DEAD               16
112
113 #define __set_task_state(tsk, state_value)              \
114         do { (tsk)->state = (state_value); } while (0)
115 #define set_task_state(tsk, state_value)                \
116         set_mb((tsk)->state, (state_value))
117
118 #define __set_current_state(state_value)                        \
119         do { current->state = (state_value); } while (0)
120 #define set_current_state(state_value)          \
121         set_mb(current->state, (state_value))
122
123 /*
124  * Scheduling policies
125  */
126 #define SCHED_NORMAL            0
127 #define SCHED_FIFO              1
128 #define SCHED_RR                2
129
130 struct sched_param {
131         int sched_priority;
132 };
133
134 #ifdef __KERNEL__
135
136 #include <linux/taskdelays.h>
137 #include <linux/spinlock.h>
138
139 /*
140  * This serializes "schedule()" and also protects
141  * the run-queue from deletions/modifications (but
142  * _adding_ to the beginning of the run-queue has
143  * a separate lock).
144  */
145 extern rwlock_t tasklist_lock;
146 extern spinlock_t mmlist_lock;
147
148 typedef struct task_struct task_t;
149
150 extern void sched_init(void);
151 extern void init_idle(task_t *idle, int cpu);
152
153 extern cpumask_t idle_cpu_mask;
154
155 extern void show_state(void);
156 extern void show_regs(struct pt_regs *);
157
158 /*
159  * TASK is a pointer to the task whose backtrace we want to see (or NULL for current
160  * task), SP is the stack pointer of the first frame that should be shown in the back
161  * trace (or NULL if the entire call-chain of the task should be shown).
162  */
163 extern void show_stack(struct task_struct *task, unsigned long *sp);
164
165 void io_schedule(void);
166 long io_schedule_timeout(long timeout);
167
168 extern void cpu_init (void);
169 extern void trap_init(void);
170 extern void update_process_times(int user);
171 extern void update_one_process(struct task_struct *p, unsigned long user,
172                                unsigned long system, int cpu);
173 extern void scheduler_tick(int user_tick, int system);
174 extern unsigned long cache_decay_ticks;
175 extern const unsigned long scheduling_functions_start_here;
176 extern const unsigned long scheduling_functions_end_here;
177
178
179 #define MAX_SCHEDULE_TIMEOUT    LONG_MAX
180 extern signed long FASTCALL(schedule_timeout(signed long timeout));
181 asmlinkage void schedule(void);
182
183 struct namespace;
184
185 /* Maximum number of active map areas.. This is a random (large) number */
186 #define DEFAULT_MAX_MAP_COUNT   65536
187
188 extern int sysctl_max_map_count;
189
190 #include <linux/aio.h>
191
192 struct mm_struct {
193         struct vm_area_struct * mmap;           /* list of VMAs */
194         struct rb_root mm_rb;
195         struct vm_area_struct * mmap_cache;     /* last find_vma result */
196         unsigned long free_area_cache;          /* first hole */
197         pgd_t * pgd;
198         atomic_t mm_users;                      /* How many users with user space? */
199         atomic_t mm_count;                      /* How many references to "struct mm_struct" (users count as 1) */
200         int map_count;                          /* number of VMAs */
201         struct rw_semaphore mmap_sem;
202         spinlock_t page_table_lock;             /* Protects task page tables and mm->rss */
203
204         struct list_head mmlist;                /* List of all active mm's.  These are globally strung
205                                                  * together off init_mm.mmlist, and are protected
206                                                  * by mmlist_lock
207                                                  */
208
209         unsigned long start_code, end_code, start_data, end_data;
210         unsigned long start_brk, brk, start_stack;
211         unsigned long arg_start, arg_end, env_start, env_end;
212         unsigned long rss, total_vm, locked_vm;
213         unsigned long def_flags;
214
215         unsigned long saved_auxv[40]; /* for /proc/PID/auxv */
216
217         unsigned dumpable:1;
218 #ifdef CONFIG_HUGETLB_PAGE
219         int used_hugetlb;
220 #endif
221         cpumask_t cpu_vm_mask;
222
223         /* Architecture-specific MM context */
224         mm_context_t context;
225
226         /* coredumping support */
227         int core_waiters;
228         struct completion *core_startup_done, core_done;
229
230         /* aio bits */
231         rwlock_t                ioctx_list_lock;
232         struct kioctx           *ioctx_list;
233
234         struct kioctx           default_kioctx;
235 };
236
237 extern int mmlist_nr;
238
239 struct sighand_struct {
240         atomic_t                count;
241         struct k_sigaction      action[_NSIG];
242         spinlock_t              siglock;
243 };
244
245 /*
246  * NOTE! "signal_struct" does not have it's own
247  * locking, because a shared signal_struct always
248  * implies a shared sighand_struct, so locking
249  * sighand_struct is always a proper superset of
250  * the locking of signal_struct.
251  */
252 struct signal_struct {
253         atomic_t                count;
254
255         /* current thread group signal load-balancing target: */
256         task_t                  *curr_target;
257
258         /* shared signal handling: */
259         struct sigpending       shared_pending;
260
261         /* thread group exit support */
262         int                     group_exit;
263         int                     group_exit_code;
264         /* overloaded:
265          * - notify group_exit_task when ->count is equal to notify_count
266          * - everyone except group_exit_task is stopped during signal delivery
267          *   of fatal signals, group_exit_task processes the signal.
268          */
269         struct task_struct      *group_exit_task;
270         int                     notify_count;
271
272         /* thread group stop support, overloads group_exit_code too */
273         int                     group_stop_count;
274
275         /* POSIX.1b Interval Timers */
276         struct list_head posix_timers;
277
278         /* job control IDs */
279         pid_t pgrp;
280         pid_t tty_old_pgrp;
281         pid_t session;
282         /* boolean value for session group leader */
283         int leader;
284
285         struct tty_struct *tty; /* NULL if no tty */
286 };
287
288 /*
289  * Priority of a process goes from 0..MAX_PRIO-1, valid RT
290  * priority is 0..MAX_RT_PRIO-1, and SCHED_NORMAL tasks are
291  * in the range MAX_RT_PRIO..MAX_PRIO-1. Priority values
292  * are inverted: lower p->prio value means higher priority.
293  *
294  * The MAX_RT_USER_PRIO value allows the actual maximum
295  * RT priority to be separate from the value exported to
296  * user-space.  This allows kernel threads to set their
297  * priority to a value higher than any user task. Note:
298  * MAX_RT_PRIO must not be smaller than MAX_USER_RT_PRIO.
299  */
300
301 #define MAX_USER_RT_PRIO        100
302 #define MAX_RT_PRIO             MAX_USER_RT_PRIO
303
304 #define MAX_PRIO                (MAX_RT_PRIO + 40)
305
306 #define rt_task(p)              ((p)->prio < MAX_RT_PRIO)
307
308 /*
309  * Some day this will be a full-fledged user tracking system..
310  */
311 struct user_struct {
312         atomic_t __count;       /* reference count */
313         atomic_t processes;     /* How many processes does this user have? */
314         atomic_t files;         /* How many open files does this user have? */
315
316         /* Hash table maintenance information */
317         struct list_head uidhash_list;
318         uid_t uid;
319 };
320
321 extern struct user_struct *find_user(uid_t);
322
323 extern struct user_struct root_user;
324 #define INIT_USER (&root_user)
325
326 typedef struct prio_array prio_array_t;
327 struct backing_dev_info;
328 struct reclaim_state;
329
330 /* POSIX.1b interval timer structure. */
331 struct k_itimer {
332         struct list_head list;           /* free/ allocate list */
333         spinlock_t it_lock;
334         clockid_t it_clock;             /* which timer type */
335         timer_t it_id;                  /* timer id */
336         int it_overrun;                 /* overrun on pending signal  */
337         int it_overrun_last;             /* overrun on last delivered signal */
338         int it_requeue_pending;          /* waiting to requeue this timer */
339         int it_sigev_notify;             /* notify word of sigevent struct */
340         int it_sigev_signo;              /* signo word of sigevent struct */
341         sigval_t it_sigev_value;         /* value word of sigevent struct */
342         unsigned long it_incr;          /* interval specified in jiffies */
343         struct task_struct *it_process; /* process to send signal to */
344         struct timer_list it_timer;
345         struct sigqueue *sigq;          /* signal queue entry. */
346 };
347
348
349 struct io_context;                      /* See blkdev.h */
350 void exit_io_context(void);
351
352 #define NGROUPS_SMALL           32
353 #define NGROUPS_PER_BLOCK       ((int)(EXEC_PAGESIZE / sizeof(gid_t)))
354 struct group_info {
355         int ngroups;
356         atomic_t usage;
357         gid_t small_block[NGROUPS_SMALL];
358         int nblocks;
359         gid_t *blocks[0];
360 };
361
362 #define get_group_info(group_info) do { \
363         atomic_inc(&(group_info)->usage); \
364 } while (0)
365
366 #define put_group_info(group_info) do { \
367         if (atomic_dec_and_test(&(group_info)->usage)) \
368                 groups_free(group_info); \
369 } while (0)
370
371 struct group_info *groups_alloc(int gidsetsize);
372 void groups_free(struct group_info *group_info);
373 int set_current_groups(struct group_info *group_info);
374 /* access the groups "array" with this macro */
375 #define GROUP_AT(gi, i) \
376     ((gi)->blocks[(i)/NGROUPS_PER_BLOCK][(i)%NGROUPS_PER_BLOCK])
377
378
379 struct audit_context;           /* See audit.c */
380
381 struct task_struct {
382         volatile long state;    /* -1 unrunnable, 0 runnable, >0 stopped */
383         struct thread_info *thread_info;
384         atomic_t usage;
385         unsigned long flags;    /* per process flags, defined below */
386         unsigned long ptrace;
387
388         int lock_depth;         /* Lock depth */
389
390         int prio, static_prio;
391         struct list_head run_list;
392         prio_array_t *array;
393
394         unsigned long sleep_avg;
395         long interactive_credit;
396         unsigned long long timestamp;
397         int activated;
398
399         unsigned long policy;
400         cpumask_t cpus_allowed;
401         unsigned int time_slice, first_time_slice;
402
403         struct list_head tasks;
404         struct list_head ptrace_children;
405         struct list_head ptrace_list;
406
407         struct mm_struct *mm, *active_mm;
408
409 /* task state */
410         struct linux_binfmt *binfmt;
411         int exit_code, exit_signal;
412         int pdeath_signal;  /*  The signal sent when the parent dies  */
413         /* ??? */
414         unsigned long personality;
415         int did_exec:1;
416         pid_t pid;
417         pid_t tgid;
418         /* 
419          * pointers to (original) parent process, youngest child, younger sibling,
420          * older sibling, respectively.  (p->father can be replaced with 
421          * p->parent->pid)
422          */
423         struct task_struct *real_parent; /* real parent process (when being debugged) */
424         struct task_struct *parent;     /* parent process */
425         struct list_head children;      /* list of my children */
426         struct list_head sibling;       /* linkage in my parent's children list */
427         struct task_struct *group_leader;       /* threadgroup leader */
428
429         /* PID/PID hash table linkage. */
430         struct pid_link pids[PIDTYPE_MAX];
431
432         wait_queue_head_t wait_chldexit;        /* for wait4() */
433         struct completion *vfork_done;          /* for vfork() */
434         int __user *set_child_tid;              /* CLONE_CHILD_SETTID */
435         int __user *clear_child_tid;            /* CLONE_CHILD_CLEARTID */
436
437         unsigned long rt_priority;
438         unsigned long it_real_value, it_prof_value, it_virt_value;
439         unsigned long it_real_incr, it_prof_incr, it_virt_incr;
440         struct timer_list real_timer;
441         unsigned long utime, stime, cutime, cstime;
442         unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw; /* context switch counts */
443         u64 start_time;
444 /* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */
445         unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt;
446 /* process credentials */
447         uid_t uid,euid,suid,fsuid;
448         gid_t gid,egid,sgid,fsgid;
449         struct group_info *group_info;
450         kernel_cap_t   cap_effective, cap_inheritable, cap_permitted;
451         int keep_capabilities:1;
452         struct user_struct *user;
453 /* limits */
454         struct rlimit rlim[RLIM_NLIMITS];
455         unsigned short used_math;
456         char comm[16];
457 /* file system info */
458         int link_count, total_link_count;
459 /* ipc stuff */
460         struct sysv_sem sysvsem;
461 /* CPU-specific state of this task */
462         struct thread_struct thread;
463 /* filesystem information */
464         struct fs_struct *fs;
465 /* open file information */
466         struct files_struct *files;
467 /* namespace */
468         struct namespace *namespace;
469 /* signal handlers */
470         struct signal_struct *signal;
471         struct sighand_struct *sighand;
472
473         sigset_t blocked, real_blocked;
474         struct sigpending pending;
475
476         unsigned long sas_ss_sp;
477         size_t sas_ss_size;
478         int (*notifier)(void *priv);
479         void *notifier_data;
480         sigset_t *notifier_mask;
481         
482         void *security;
483         struct audit_context *audit_context;
484
485 /* Thread group tracking */
486         u32 parent_exec_id;
487         u32 self_exec_id;
488 /* Protection of (de-)allocation: mm, files, fs, tty */
489         spinlock_t alloc_lock;
490 /* Protection of proc_dentry: nesting proc_lock, dcache_lock, write_lock_irq(&tasklist_lock); */
491         spinlock_t proc_lock;
492 /* context-switch lock */
493         spinlock_t switch_lock;
494
495 /* journalling filesystem info */
496         void *journal_info;
497
498 /* VM state */
499         struct reclaim_state *reclaim_state;
500
501         struct dentry *proc_dentry;
502         struct backing_dev_info *backing_dev_info;
503
504         struct io_context *io_context;
505
506         unsigned long ptrace_message;
507         siginfo_t *last_siginfo; /* For ptrace use.  */
508
509 #ifdef CONFIG_CKRM
510         spinlock_t  ckrm_tsklock; 
511         void       *ce_data;
512 #ifdef CONFIG_CKRM_TYPE_TASKCLASS
513         // .. Hubertus should change to CONFIG_CKRM_TYPE_TASKCLASS 
514         struct ckrm_task_class *taskclass;
515         struct list_head        taskclass_link;
516 #endif // CONFIG_CKRM_TYPE_TASKCLASS
517 #endif // CONFIG_CKRM
518
519         struct task_delay_info  delays;
520 };
521
522 static inline pid_t process_group(struct task_struct *tsk)
523 {
524         return tsk->signal->pgrp;
525 }
526
527 extern void __put_task_struct(struct task_struct *tsk);
528 #define get_task_struct(tsk) do { atomic_inc(&(tsk)->usage); } while(0)
529 #define put_task_struct(tsk) \
530 do { if (atomic_dec_and_test(&(tsk)->usage)) __put_task_struct(tsk); } while(0)
531
532 /*
533  * Per process flags
534  */
535 #define PF_ALIGNWARN    0x00000001      /* Print alignment warning msgs */
536                                         /* Not implemented yet, only for 486*/
537 #define PF_STARTING     0x00000002      /* being created */
538 #define PF_EXITING      0x00000004      /* getting shut down */
539 #define PF_DEAD         0x00000008      /* Dead */
540 #define PF_FORKNOEXEC   0x00000040      /* forked but didn't exec */
541 #define PF_SUPERPRIV    0x00000100      /* used super-user privileges */
542 #define PF_DUMPCORE     0x00000200      /* dumped core */
543 #define PF_SIGNALED     0x00000400      /* killed by a signal */
544 #define PF_MEMALLOC     0x00000800      /* Allocating memory */
545 #define PF_MEMDIE       0x00001000      /* Killed for out-of-memory */
546 #define PF_FLUSHER      0x00002000      /* responsible for disk writeback */
547
548 #define PF_FREEZE       0x00004000      /* this task should be frozen for suspend */
549 #define PF_NOFREEZE     0x00008000      /* this thread should not be frozen */
550 #define PF_FROZEN       0x00010000      /* frozen for system suspend */
551 #define PF_FSTRANS      0x00020000      /* inside a filesystem transaction */
552 #define PF_KSWAPD       0x00040000      /* I am kswapd */
553 #define PF_SWAPOFF      0x00080000      /* I am in swapoff */
554 #define PF_LESS_THROTTLE 0x00100000     /* Throttle me less: I clean memory */
555 #define PF_SYNCWRITE    0x00200000      /* I am doing a sync write */
556
557 #define PF_MEMIO        0x00400000      /* I am  potentially doing I/O for mem */
558 #define PF_IOWAIT       0x00800000      /* I am waiting on disk I/O */
559
560 #ifdef CONFIG_SMP
561 extern int set_cpus_allowed(task_t *p, cpumask_t new_mask);
562 #else
563 static inline int set_cpus_allowed(task_t *p, cpumask_t new_mask)
564 {
565         return 0;
566 }
567 #endif
568
569 extern unsigned long long sched_clock(void);
570
571 #ifdef CONFIG_NUMA
572 extern void sched_balance_exec(void);
573 extern void node_nr_running_init(void);
574 #else
575 #define sched_balance_exec()   {}
576 #define node_nr_running_init() {}
577 #endif
578
579 /* Move tasks off this (offline) CPU onto another. */
580 extern void migrate_all_tasks(void);
581 extern void set_user_nice(task_t *p, long nice);
582 extern int task_prio(task_t *p);
583 extern int task_nice(task_t *p);
584 extern int task_curr(task_t *p);
585 extern int idle_cpu(int cpu);
586
587 void yield(void);
588
589 /*
590  * The default (Linux) execution domain.
591  */
592 extern struct exec_domain       default_exec_domain;
593
594 union thread_union {
595         struct thread_info thread_info;
596         unsigned long stack[THREAD_SIZE/sizeof(long)];
597 };
598
599 #ifndef __HAVE_ARCH_KSTACK_END
600 static inline int kstack_end(void *addr)
601 {
602         /* Reliable end of stack detection:
603          * Some APM bios versions misalign the stack
604          */
605         return !(((unsigned long)addr+sizeof(void*)-1) & (THREAD_SIZE-sizeof(void*)));
606 }
607 #endif
608
609 extern union thread_union init_thread_union;
610 extern struct task_struct init_task;
611
612 extern struct   mm_struct init_mm;
613
614 extern struct task_struct *find_task_by_pid(int pid);
615 extern void set_special_pids(pid_t session, pid_t pgrp);
616 extern void __set_special_pids(pid_t session, pid_t pgrp);
617
618 /* per-UID process charging. */
619 extern struct user_struct * alloc_uid(uid_t);
620 extern void free_uid(struct user_struct *);
621 extern void switch_uid(struct user_struct *);
622
623 #include <asm/current.h>
624
625 extern unsigned long itimer_ticks;
626 extern unsigned long itimer_next;
627 extern void do_timer(struct pt_regs *);
628
629 extern int FASTCALL(wake_up_state(struct task_struct * tsk, unsigned int state));
630 extern int FASTCALL(wake_up_process(struct task_struct * tsk));
631 #ifdef CONFIG_SMP
632  extern void kick_process(struct task_struct *tsk);
633 #else
634  static inline void kick_process(struct task_struct *tsk) { }
635 #endif
636 extern void FASTCALL(wake_up_forked_process(struct task_struct * tsk));
637 extern void FASTCALL(sched_fork(task_t * p));
638 extern void FASTCALL(sched_exit(task_t * p));
639
640 extern int in_group_p(gid_t);
641 extern int in_egroup_p(gid_t);
642
643 extern void proc_caches_init(void);
644 extern void flush_signals(struct task_struct *);
645 extern void flush_signal_handlers(struct task_struct *, int force_default);
646 extern int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info);
647
648 static inline int dequeue_signal_lock(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
649 {
650         unsigned long flags;
651         int ret;
652
653         spin_lock_irqsave(&tsk->sighand->siglock, flags);
654         ret = dequeue_signal(tsk, mask, info);
655         spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
656
657         return ret;
658 }       
659
660 extern void block_all_signals(int (*notifier)(void *priv), void *priv,
661                               sigset_t *mask);
662 extern void unblock_all_signals(void);
663 extern void release_task(struct task_struct * p);
664 extern int send_sig_info(int, struct siginfo *, struct task_struct *);
665 extern int send_group_sig_info(int, struct siginfo *, struct task_struct *);
666 extern int force_sig_info(int, struct siginfo *, struct task_struct *);
667 extern int __kill_pg_info(int sig, struct siginfo *info, pid_t pgrp);
668 extern int kill_pg_info(int, struct siginfo *, pid_t);
669 extern int kill_sl_info(int, struct siginfo *, pid_t);
670 extern int kill_proc_info(int, struct siginfo *, pid_t);
671 extern void notify_parent(struct task_struct *, int);
672 extern void do_notify_parent(struct task_struct *, int);
673 extern void force_sig(int, struct task_struct *);
674 extern void force_sig_specific(int, struct task_struct *);
675 extern int send_sig(int, struct task_struct *, int);
676 extern void zap_other_threads(struct task_struct *p);
677 extern int kill_pg(pid_t, int, int);
678 extern int kill_sl(pid_t, int, int);
679 extern int kill_proc(pid_t, int, int);
680 extern struct sigqueue *sigqueue_alloc(void);
681 extern void sigqueue_free(struct sigqueue *);
682 extern int send_sigqueue(int, struct sigqueue *,  struct task_struct *);
683 extern int send_group_sigqueue(int, struct sigqueue *,  struct task_struct *);
684 extern int do_sigaction(int, const struct k_sigaction *, struct k_sigaction *);
685 extern int do_sigaltstack(const stack_t __user *, stack_t __user *, unsigned long);
686
687 /* These can be the second arg to send_sig_info/send_group_sig_info.  */
688 #define SEND_SIG_NOINFO ((struct siginfo *) 0)
689 #define SEND_SIG_PRIV   ((struct siginfo *) 1)
690 #define SEND_SIG_FORCED ((struct siginfo *) 2)
691
692 /* True if we are on the alternate signal stack.  */
693
694 static inline int on_sig_stack(unsigned long sp)
695 {
696         return (sp - current->sas_ss_sp < current->sas_ss_size);
697 }
698
699 static inline int sas_ss_flags(unsigned long sp)
700 {
701         return (current->sas_ss_size == 0 ? SS_DISABLE
702                 : on_sig_stack(sp) ? SS_ONSTACK : 0);
703 }
704
705
706 #ifdef CONFIG_SECURITY
707 /* code is in security.c */
708 extern int capable(int cap);
709 #else
710 static inline int capable(int cap)
711 {
712         if (cap_raised(current->cap_effective, cap)) {
713                 current->flags |= PF_SUPERPRIV;
714                 return 1;
715         }
716         return 0;
717 }
718 #endif
719
720 /*
721  * Routines for handling mm_structs
722  */
723 extern struct mm_struct * mm_alloc(void);
724
725 /* mmdrop drops the mm and the page tables */
726 extern void FASTCALL(__mmdrop(struct mm_struct *));
727 static inline void mmdrop(struct mm_struct * mm)
728 {
729         if (atomic_dec_and_test(&mm->mm_count))
730                 __mmdrop(mm);
731 }
732
733 /* mmput gets rid of the mappings and all user-space */
734 extern void mmput(struct mm_struct *);
735 /* Grab a reference to the mm if its not already going away */
736 extern struct mm_struct *mmgrab(struct mm_struct *);
737 /* Remove the current tasks stale references to the old mm_struct */
738 extern void mm_release(struct task_struct *, struct mm_struct *);
739
740 extern int  copy_thread(int, unsigned long, unsigned long, unsigned long, struct task_struct *, struct pt_regs *);
741 extern void flush_thread(void);
742 extern void exit_thread(void);
743
744 extern void exit_mm(struct task_struct *);
745 extern void exit_files(struct task_struct *);
746 extern void exit_signal(struct task_struct *);
747 extern void __exit_signal(struct task_struct *);
748 extern void exit_sighand(struct task_struct *);
749 extern void __exit_sighand(struct task_struct *);
750 extern void exit_itimers(struct signal_struct *);
751
752 extern NORET_TYPE void do_group_exit(int);
753
754 extern void reparent_to_init(void);
755 extern void daemonize(const char *, ...);
756 extern int allow_signal(int);
757 extern int disallow_signal(int);
758 extern task_t *child_reaper;
759
760 extern int do_execve(char *, char __user * __user *, char __user * __user *, struct pt_regs *);
761 extern long do_fork(unsigned long, unsigned long, struct pt_regs *, unsigned long, int __user *, int __user *);
762 extern struct task_struct * copy_process(unsigned long, unsigned long, struct pt_regs *, unsigned long, int __user *, int __user *);
763
764 #ifdef CONFIG_SMP
765 extern void wait_task_inactive(task_t * p);
766 #else
767 #define wait_task_inactive(p)   do { } while (0)
768 #endif
769
770 #define remove_parent(p)        list_del_init(&(p)->sibling)
771 #define add_parent(p, parent)   list_add_tail(&(p)->sibling,&(parent)->children)
772
773 #define REMOVE_LINKS(p) do {                                    \
774         if (thread_group_leader(p))                             \
775                 list_del_init(&(p)->tasks);                     \
776         remove_parent(p);                                       \
777         } while (0)
778
779 #define SET_LINKS(p) do {                                       \
780         if (thread_group_leader(p))                             \
781                 list_add_tail(&(p)->tasks,&init_task.tasks);    \
782         add_parent(p, (p)->parent);                             \
783         } while (0)
784
785 #define next_task(p)    list_entry((p)->tasks.next, struct task_struct, tasks)
786 #define prev_task(p)    list_entry((p)->tasks.prev, struct task_struct, tasks)
787
788 #define for_each_process(p) \
789         for (p = &init_task ; (p = next_task(p)) != &init_task ; )
790
791 /*
792  * Careful: do_each_thread/while_each_thread is a double loop so
793  *          'break' will not work as expected - use goto instead.
794  */
795 #define do_each_thread(g, t) \
796         for (g = t = &init_task ; (g = t = next_task(g)) != &init_task ; ) do
797
798 #define while_each_thread(g, t) \
799         while ((t = next_thread(t)) != g)
800
801 extern task_t * FASTCALL(next_thread(task_t *p));
802
803 #define thread_group_leader(p)  (p->pid == p->tgid)
804
805 static inline int thread_group_empty(task_t *p)
806 {
807         struct pid *pid = p->pids[PIDTYPE_TGID].pidptr;
808
809         return pid->task_list.next->next == &pid->task_list;
810 }
811
812 #define delay_group_leader(p) \
813                 (thread_group_leader(p) && !thread_group_empty(p))
814
815 extern void unhash_process(struct task_struct *p);
816
817 /*
818  * Protects ->fs, ->files, ->mm, ->ptrace and synchronises with wait4().
819  * Nests both inside and outside of read_lock(&tasklist_lock).
820  * It must not be nested with write_lock_irq(&tasklist_lock),
821  * neither inside nor outside.
822  */
823 static inline void task_lock(struct task_struct *p)
824 {
825         spin_lock(&p->alloc_lock);
826 }
827
828 static inline void task_unlock(struct task_struct *p)
829 {
830         spin_unlock(&p->alloc_lock);
831 }
832  
833 /**
834  * get_task_mm - acquire a reference to the task's mm
835  *
836  * Returns %NULL if the task has no mm. User must release
837  * the mm via mmput() after use.
838  */
839 static inline struct mm_struct * get_task_mm(struct task_struct * task)
840 {
841         struct mm_struct * mm;
842  
843         task_lock(task);
844         mm = task->mm;
845         if (mm)
846                 mm = mmgrab(mm);
847         task_unlock(task);
848
849         return mm;
850 }
851  
852  
853 /* set thread flags in other task's structures
854  * - see asm/thread_info.h for TIF_xxxx flags available
855  */
856 static inline void set_tsk_thread_flag(struct task_struct *tsk, int flag)
857 {
858         set_ti_thread_flag(tsk->thread_info,flag);
859 }
860
861 static inline void clear_tsk_thread_flag(struct task_struct *tsk, int flag)
862 {
863         clear_ti_thread_flag(tsk->thread_info,flag);
864 }
865
866 static inline int test_and_set_tsk_thread_flag(struct task_struct *tsk, int flag)
867 {
868         return test_and_set_ti_thread_flag(tsk->thread_info,flag);
869 }
870
871 static inline int test_and_clear_tsk_thread_flag(struct task_struct *tsk, int flag)
872 {
873         return test_and_clear_ti_thread_flag(tsk->thread_info,flag);
874 }
875
876 static inline int test_tsk_thread_flag(struct task_struct *tsk, int flag)
877 {
878         return test_ti_thread_flag(tsk->thread_info,flag);
879 }
880
881 static inline void set_tsk_need_resched(struct task_struct *tsk)
882 {
883         set_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
884 }
885
886 static inline void clear_tsk_need_resched(struct task_struct *tsk)
887 {
888         clear_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
889 }
890
891 static inline int signal_pending(struct task_struct *p)
892 {
893         return unlikely(test_tsk_thread_flag(p,TIF_SIGPENDING));
894 }
895   
896 static inline int need_resched(void)
897 {
898         return unlikely(test_thread_flag(TIF_NEED_RESCHED));
899 }
900
901 extern void __cond_resched(void);
902 static inline void cond_resched(void)
903 {
904         if (need_resched())
905                 __cond_resched();
906 }
907
908 /*
909  * cond_resched_lock() - if a reschedule is pending, drop the given lock,
910  * call schedule, and on return reacquire the lock.
911  *
912  * This works OK both with and without CONFIG_PREEMPT.  We do strange low-level
913  * operations here to prevent schedule() from being called twice (once via
914  * spin_unlock(), once by hand).
915  */
916 static inline void cond_resched_lock(spinlock_t * lock)
917 {
918         if (need_resched()) {
919                 _raw_spin_unlock(lock);
920                 preempt_enable_no_resched();
921                 __cond_resched();
922                 spin_lock(lock);
923         }
924 }
925
926 /* Reevaluate whether the task has signals pending delivery.
927    This is required every time the blocked sigset_t changes.
928    callers must hold sighand->siglock.  */
929
930 extern FASTCALL(void recalc_sigpending_tsk(struct task_struct *t));
931 extern void recalc_sigpending(void);
932
933 extern void signal_wake_up(struct task_struct *t, int resume_stopped);
934
935 /*
936  * Wrappers for p->thread_info->cpu access. No-op on UP.
937  */
938 #ifdef CONFIG_SMP
939
940 static inline unsigned int task_cpu(struct task_struct *p)
941 {
942         return p->thread_info->cpu;
943 }
944
945 static inline void set_task_cpu(struct task_struct *p, unsigned int cpu)
946 {
947         p->thread_info->cpu = cpu;
948 }
949
950 #else
951
952 static inline unsigned int task_cpu(struct task_struct *p)
953 {
954         return 0;
955 }
956
957 static inline void set_task_cpu(struct task_struct *p, unsigned int cpu)
958 {
959 }
960
961 #endif /* CONFIG_SMP */
962
963
964 /* API for registering delay info */
965 #ifdef CONFIG_DELAY_ACCT
966
967 #define test_delay_flag(tsk,flg)                ((tsk)->flags & (flg))
968 #define set_delay_flag(tsk,flg)                 ((tsk)->flags |= (flg))
969 #define clear_delay_flag(tsk,flg)               ((tsk)->flags &= ~(flg))
970
971 #define def_delay_var(var)                      unsigned long long var
972 #define get_delay(tsk,field)                    ((tsk)->delays.field)
973 #define delay_value(x)                          (((unsigned long)(x))/1000)
974
975 #define start_delay(var)                        ((var) = sched_clock())
976 #define start_delay_set(var,flg)                (set_delay_flag(current,flg),(var) = sched_clock())
977
978 #define inc_delay(tsk,field) (((tsk)->delays.field)++)
979 #define add_delay_ts(tsk,field,start_ts,end_ts) ((tsk)->delays.field += delay_value((end_ts)-(start_ts)))
980 #define add_delay_clear(tsk,field,start_ts,flg) (add_delay_ts(tsk,field,start_ts,sched_clock()),clear_delay_flag(tsk,flg))
981
982 static inline void add_io_delay(unsigned long dstart) 
983 {
984         struct task_struct * tsk = current;
985         unsigned long val = delay_value(sched_clock()-dstart);
986         if (test_delay_flag(tsk,PF_MEMIO)) {
987                 tsk->delays.mem_iowait_total += val;
988                 tsk->delays.num_memwaits++;
989         } else {
990                 tsk->delays.iowait_total += val;
991                 tsk->delays.num_iowaits++;
992         }
993         clear_delay_flag(tsk,PF_IOWAIT);
994 }
995
996
997 #else
998
999 #define test_delay_flag(tsk,flg)                (0)
1000 #define set_delay_flag(tsk,flg)                 do { } while (0)
1001 #define clear_delay_flag(tsk,flg)               do { } while (0)
1002
1003 #define def_delay_var(var)                            
1004 #define get_delay(tsk,field)                    (0)
1005
1006 #define start_delay(var)                        do { } while (0)
1007 #define start_delay_set(var,flg)                do { } while (0)
1008
1009 #define inc_delay(tsk,field)                    do { } while (0)
1010 #define add_delay_ts(tsk,field,start_ts,now)    do { } while (0)
1011 #define add_delay_clear(tsk,field,start_ts,flg) do { } while (0)
1012 #define add_io_delay(dstart)                    do { } while (0) 
1013 #endif
1014
1015
1016
1017 #endif /* __KERNEL__ */
1018
1019 #endif